diff --git a/lua/app.meta b/lua/app.meta new file mode 100644 index 00000000..c8bd5648 --- /dev/null +++ b/lua/app.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bee5b0159cd785f40a74d5a225e5fc9e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf.meta b/lua/app/bf.meta new file mode 100644 index 00000000..5479d82f --- /dev/null +++ b/lua/app/bf.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aeccc7afe321ee046a0d31067d07f097 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/common.meta b/lua/app/bf/common.meta new file mode 100644 index 00000000..d03d0e88 --- /dev/null +++ b/lua/app/bf/common.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2e378a528486f1d4381e29cd9aa82a27 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/common/functions.lua b/lua/app/bf/common/functions.lua new file mode 100644 index 00000000..108d6a82 --- /dev/null +++ b/lua/app/bf/common/functions.lua @@ -0,0 +1,583 @@ +--[[ + +Copyright (c) 2014-2017 Chukong Technologies Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +]] + +function checknumber(value, base) + return tonumber(value, base) or 0 +end + +function checkint(value) + return math.round(checknumber(value)) +end + +function checkbool(value) + return (value ~= nil and value ~= false) +end + +function checktable(value) + if type(value) ~= "table" then value = {} end + return value +end + +function clone(object) + local lookup_table = {} + local function _copy(object) + if type(object) ~= "table" then + return object + elseif lookup_table[object] then + return lookup_table[object] + end + local newObject = {} + lookup_table[object] = newObject + for key, value in pairs(object) do + newObject[_copy(key)] = _copy(value) + end + return setmetatable(newObject, getmetatable(object)) + end + return _copy(object) +end + +local function emptyFunction() +end + +function class(classname, super) + local cls = {__cname = classname} + + if super then + local superType = type(super) + assert(superType == "table", + string.format("class() - create class \"%s\" with invalid super class type \"%s\"", + classname, superType)) + cls.super = super + setmetatable(cls, {__index = super}) + end + + cls.ctor = emptyFunction + cls.new = function(_, ...) + local instance = {} + setmetatable(instance, {__index = cls}) + instance.class = cls + if instance.super then + local _constructor + _constructor = function(c, ...) + if c.super then + _constructor(c.super, ...) + end + c.ctor(instance, ...) + end + _constructor(instance.super, ...) + end + instance:ctor(...) + return instance + end + cls.create = cls.new + return cls +end + +function iskindof(obj, classname) + local t = type(obj) + if t ~= "table" then return false end + + local mt = getmetatable(obj) + if mt then + local __index = rawget(mt, "__index") + if type(__index) == "table" and rawget(__index, "__cname") == classname then return true end + end + + if rawget(obj, "__cname") == classname then return true end + + local super = obj.super + while super do + if rawget(super, "__cname") == classname then return true end + super = super.super + end + return false +end + +function handler(obj, method) + return function(...) + return method(obj, ...) + end +end + +function math.newrandomseed() + local ok, socket = pcall(function() + return require("socket") + end) + + if ok then + math.randomseed(socket.gettime() * 1000) + else + math.randomseed(os.time()) + end + math.random() + math.random() + math.random() + math.random() +end + +function math.round(value) + value = checknumber(value) + return math.floor(value + 0.5) +end + +function math.clamp(value, min, max) + if value < min then + return min + end + if value > max then + return max + end + return value +end + +local pi_div_180 = math.pi / 180 +function math.angle2radian(angle) + return angle * pi_div_180 +end + +function math.radian2angle(radian) + return radian * 180 / math.pi +end + +function io.exists(path) + local file = io.open(path, "r") + if file then + io.close(file) + return true + end + return false +end + +function io.readfile(path) + local file = io.open(path, "r") + if file then + local content = file:read("*a") + io.close(file) + return content + end + return nil +end + +function io.writefile(path, content, mode) + mode = mode or "w+b" + local file = io.open(path, mode) + if file then + if file:write(content) == nil then return false end + io.close(file) + return true + else + return false + end +end + +function io.pathinfo(path) + local pos = string.len(path) + local extpos = pos + 1 + while pos > 0 do + local b = string.byte(path, pos) + if b == 46 then -- 46 = char "." + extpos = pos + elseif b == 47 then -- 47 = char "/" + break + end + pos = pos - 1 + end + + local dirname = string.sub(path, 1, pos) + local filename = string.sub(path, pos + 1) + extpos = extpos - pos + local basename = string.sub(filename, 1, extpos - 1) + local extname = string.sub(filename, extpos) + return { + dirname = dirname, + filename = filename, + basename = basename, + extname = extname + } +end + +function io.filesize(path) + local size = false + local file = io.open(path, "r") + if file then + local current = file:seek() + size = file:seek("end") + file:seek("set", current) + io.close(file) + end + return size +end + +function table.nums(t) + local count = 0 + for k, v in pairs(t) do + count = count + 1 + end + return count +end + +function table.keys(hashtable) + local keys = {} + for k, v in pairs(hashtable) do + keys[#keys + 1] = k + end + return keys +end + +function table.values(hashtable) + local values = {} + for k, v in pairs(hashtable) do + values[#values + 1] = v + end + return values +end + +function table.merge(dest, src) + for k, v in pairs(src) do + dest[k] = v + end +end + +function table.insertto(dest, src, begin) + begin = checkint(begin) + if begin <= 0 then + begin = #dest + 1 + end + + local len = #src + for i = 0, len - 1 do + dest[i + begin] = src[i + 1] + end +end + +function table.indexof(array, value, begin) + for i = begin or 1, #array do + if array[i] == value then return i end + end + return false +end + +function table.keyof(hashtable, value) + for k, v in pairs(hashtable) do + if v == value then return k end + end + return nil +end + +function table.removebyvalue(array, value, removeall) + local c, i, max = 0, 1, #array + while i <= max do + if array[i] == value then + table.remove(array, i) + c = c + 1 + i = i - 1 + max = max - 1 + if not removeall then break end + end + i = i + 1 + end + return c +end + +function table.map(t, fn) + for k, v in pairs(t) do + t[k] = fn(v, k) + end +end + +function table.walk(t, fn) + for k,v in pairs(t) do + fn(v, k) + end +end + +function table.filter(t, fn) + for k, v in pairs(t) do + if not fn(v, k) then t[k] = nil end + end +end + +function table.unique(t, bArray) + local check = {} + local n = {} + local idx = 1 + for k, v in pairs(t) do + if not check[v] then + if bArray then + n[idx] = v + idx = idx + 1 + else + n[k] = v + end + check[v] = true + end + end + return n +end + +function table.containValue(t, value) + for k, v in pairs(t) do + if v == value then + return true + end + end + return false +end + +function table.shuffle(t) + if type(t)~="table" then + return + end + local tab = {} + local index = 1 + while #t ~= 0 do + local n = math.random(1, #t) + if t[n] ~= nil then + tab[index] = t[n] + table.remove(t,n) + index = index + 1 + end + end + return tab +end + +---查找一个满足条件的元素 +---@param t table +---@param predict fun(item):boolean +function table.find(t, predict) + for k, v in pairs(t) do + if predict(v) then + return v, k + end + end +end + +---浅拷贝 +---@param t table +---@return table +function table.refCopy(t) + if not t then return nil end + local copy = {} + for i,v in pairs(t) do + copy[i] = v + end + return copy +end + +---将array'from' insert到to +function table.addArray(to, from) + if not to or not from then return end + for _, v in ipairs(from) do + table.insert(to, v) + end + return to +end + +---将array'from' insert到to +function table.addDic(to, from) + if not to or not from then return end + for _, v in pairs(from) do + to[_] = v + end + return to +end + +--tbl需要删除对象的表, func用于判断是否是需要删除的对象的函数, +--func返回两个参数,1、是否remove 2、是否继续 +---该函数会copy一次table +function table.removeEx(tbl, func) + if tbl == nil or func == nil then + return tbl + end + local newTbl = {} + for k, v in pairs(tbl) do + local needRemove, continue = func(k, v) + + if not needRemove and v then + newTbl[#newTbl + 1] = v + end + + if not continue then + break + end + end + return newTbl +end + +--- 反转阵列 +function table.revert(tableArray) + local length = #tableArray + local half = length / 2 + local temp + for i = 1, half do + temp = tableArray[i] + tableArray[i] = tableArray[length - i + 1] + tableArray[length - i + 1] = temp + end + return tableArray +end + +---满足任意条件 +function table.any(tbl, func) + for _, v in pairs(tbl) do + if func(v) then + return true + end + end + return false +end + +--- 遍历 +function table.foreach(tbl, func) + for k, v in pairs(tbl) do + func(k, v) + end +end + +--- 计算每一个val的满足条件的count +function table.count(tbl, func) + local result = 0 + for _, v in pairs(tbl) do + result = result + func(v) + end + return result +end + + +string._htmlspecialchars_set = {} +string._htmlspecialchars_set["&"] = "&" +string._htmlspecialchars_set["\""] = """ +string._htmlspecialchars_set["'"] = "'" +string._htmlspecialchars_set["<"] = "<" +string._htmlspecialchars_set[">"] = ">" + +function string.htmlspecialchars(input) + for k, v in pairs(string._htmlspecialchars_set) do + input = string.gsub(input, k, v) + end + return input +end + +function string.restorehtmlspecialchars(input) + for k, v in pairs(string._htmlspecialchars_set) do + input = string.gsub(input, v, k) + end + return input +end + +function string.nl2br(input) + return string.gsub(input, "\n", "
") +end + +function string.text2html(input) + input = string.gsub(input, "\t", " ") + input = string.htmlspecialchars(input) + input = string.gsub(input, " ", " ") + input = string.nl2br(input) + return input +end + +function string.split(input, delimiter) + input = tostring(input) + delimiter = tostring(delimiter) + if (delimiter=='') then return false end + local pos,arr = 0, {} + -- for each divider found + for st,sp in function() return string.find(input, delimiter, pos, true) end do + table.insert(arr, string.sub(input, pos, st - 1)) + pos = sp + 1 + end + table.insert(arr, string.sub(input, pos)) + return arr +end + +function string.ltrim(input) + return string.gsub(input, "^[ \t\n\r]+", "") +end + +function string.rtrim(input) + return string.gsub(input, "[ \t\n\r]+$", "") +end + +function string.trim(input) + input = string.gsub(input, "^[ \t\n\r]+", "") + return string.gsub(input, "[ \t\n\r]+$", "") +end + +function string.ucfirst(input) + return string.upper(string.sub(input, 1, 1)) .. string.sub(input, 2) +end + +local function urlencodechar(char) + return "%" .. string.format("%02X", string.byte(char)) +end +function string.urlencode(input) + -- convert line endings + input = string.gsub(tostring(input), "\n", "\r\n") + -- escape all characters but alphanumeric, '.' and '-' + input = string.gsub(input, "([^%w%.%- ])", urlencodechar) + -- convert spaces to "+" symbols + return string.gsub(input, " ", "+") +end + +function string.urldecode(input) + input = string.gsub (input, "+", " ") + input = string.gsub (input, "%%(%x%x)", function(h) return string.char(checknumber(h,16)) end) + input = string.gsub (input, "\r\n", "\n") + return input +end + +function string.utf8len(input) + local len = string.len(input) + local left = len + local cnt = 0 + local arr = {0, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc} + while left ~= 0 do + local tmp = string.byte(input, -left) + local i = #arr + while arr[i] do + if tmp >= arr[i] then + left = left - i + break + end + i = i - 1 + end + cnt = cnt + 1 + end + return cnt +end + +function string.formatnumberthousands(num) + local formatted = tostring(checknumber(num)) + local k + while true do + formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2') + if k == 0 then break end + end + return formatted +end + +function string.isEmptyOrNil(str) + return not str or #str == 0 +end \ No newline at end of file diff --git a/lua/app/bf/common/functions.lua.meta b/lua/app/bf/common/functions.lua.meta new file mode 100644 index 00000000..2ba4ae8b --- /dev/null +++ b/lua/app/bf/common/functions.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 36aceca3a16f9474a9e5541202a761a6 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/component.meta b/lua/app/bf/component.meta new file mode 100644 index 00000000..ec82bf37 --- /dev/null +++ b/lua/app/bf/component.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 84f8ba1d4c11fd341823cbc068b8a1e6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/component/lua_component.lua b/lua/app/bf/component/lua_component.lua new file mode 100644 index 00000000..88a20b3c --- /dev/null +++ b/lua/app/bf/component/lua_component.lua @@ -0,0 +1,85 @@ +---@class LuaComponent +local Component = class("Component") + +function Component:ctor() +end + +function Component:init() +end + +function Component:getBaseObject() + return self.baseObject +end + +function Component:getGameObject() + return self.baseObject:getGameObject() +end + +function Component:getUIMap() + return self.baseObject:genAllChildren() +end + +function Component:bind(data, fieldName, bindFunc, immediately) + self:_addOnDestroyCallback() + if not self._baseBindData then + self._baseBindData = {} + end + if not self._baseBindData[data] then + self._baseBindData[data] = {} + end + data:bind(fieldName, self, bindFunc, immediately) + table.insert(self._baseBindData[data], fieldName) +end + +function Component:unBind(data, fieldName) + if self._baseBindData and self._baseBindData[data] then + for i, field in ipairs(self._baseBindData[data]) do + if field == fieldName then + data:unBind(field, self) + table.remove(self._baseBindData[data], i) + break + end + end + end +end + +function Component:unBindAll() + if not self._baseBindData then + return + end + + for data, fields in pairs(self._baseBindData) do + for _, field in ipairs(fields) do + data:unBind(field, self) + end + end + self._baseBindData = nil +end + +function Component:isDestroyed() + return self.baseObject:isDestroyed() +end + +function Component:onDestroy() +end + +function Component:_init(baseObject) + self.baseObject = baseObject + if self.onDestroy ~= Component.onDestroy then -- 说明重写了onDestroy + self:_addOnDestroyCallback() + end + self:init() +end + +function Component:_addOnDestroyCallback() + if self._addOnDestroyFlag then + return + end + self._addOnDestroyFlag = true + self.baseObject:addOnDestroyCallback(function() + self:unBindAll() + self:onDestroy() + end) +end + +return Component \ No newline at end of file diff --git a/lua/app/bf/component/lua_component.lua.meta b/lua/app/bf/component/lua_component.lua.meta new file mode 100644 index 00000000..a7556188 --- /dev/null +++ b/lua/app/bf/component/lua_component.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 23d302132daaaaa40a2b7fec60cb1ad7 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/init.lua b/lua/app/bf/init.lua new file mode 100644 index 00000000..a3d60470 --- /dev/null +++ b/lua/app/bf/init.lua @@ -0,0 +1,29 @@ + +--禁用默认全局变量 +-- export global variable +local __g = _G +BF = BF or {} +BF.exports = BF.exports or {} +setmetatable(BF.exports, { + __newindex = function(_, name, value) + rawset(__g, name, value) + end, + + __index = function(_, name) + return rawget(__g, name) + end +}) + +-- disable create unexpected global variable +local function disableGlobal() + setmetatable(__g, { + __newindex = function(_, name, value) + print("new index, name is :", name) + error(string.format("USE \" BF.exports.%s = value \" INSTEAD OF SET GLOBAL VARIABLE", name), 0) + end + }) +end + +BF.disableGlobal = disableGlobal + +disableGlobal() \ No newline at end of file diff --git a/lua/app/bf/init.lua.meta b/lua/app/bf/init.lua.meta new file mode 100644 index 00000000..0f427e62 --- /dev/null +++ b/lua/app/bf/init.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 832f162f9b7af294a9ee5439141ff67b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/state_machine.meta b/lua/app/bf/state_machine.meta new file mode 100644 index 00000000..52ca433d --- /dev/null +++ b/lua/app/bf/state_machine.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: aab46fb223e2b23458d2061ab393b68a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/state_machine/state_interface.lua b/lua/app/bf/state_machine/state_interface.lua new file mode 100644 index 00000000..5d970380 --- /dev/null +++ b/lua/app/bf/state_machine/state_interface.lua @@ -0,0 +1,15 @@ +local StateInterface = class("StateInterface") + +function StateInterface:enter(params) +end + +function StateInterface:tick() +end + +function StateInterface:exit() +end + +function StateInterface:clear() +end + +return StateInterface \ No newline at end of file diff --git a/lua/app/bf/state_machine/state_interface.lua.meta b/lua/app/bf/state_machine/state_interface.lua.meta new file mode 100644 index 00000000..8b77c8b2 --- /dev/null +++ b/lua/app/bf/state_machine/state_interface.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7c2a24b56b316e2459d21803b1121945 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/state_machine/state_machine.lua b/lua/app/bf/state_machine/state_machine.lua new file mode 100644 index 00000000..4554ec4a --- /dev/null +++ b/lua/app/bf/state_machine/state_machine.lua @@ -0,0 +1,109 @@ +local StateMachine = class("StateMachine") + +function StateMachine:ctor() + self.stateMap = {} + self.active = false + self.curStateKey = nil + self.curState = nil +end + +---- 获取是否active +function StateMachine:getIsActive() + return self.active +end + +---- 获取当前state StateInterface +function StateMachine:getCurState() + return self.curState +end + +---- 获取当前state对应的key +function StateMachine:getCurStateKey() + return self.curStateKey +end + +---- 获取state +function StateMachine:getStateByKey(key) + return self.stateMap[key] +end + +---- 注册一个state +function StateMachine:registerState(stateKey, state) + if self.stateMap[stateKey] then + Logger.logWarning("StateMachine registerState: state machine already have state %s", stateKey) + return + end + self.stateMap[stateKey] = state +end + +---- 改变状态 +function StateMachine:changeState(stateKey, params) + if not self.active then + Logger.logWarning("StateMachine changeState: state machine not active") + return + end + local newState = self.stateMap[stateKey] + if newState then + self.curState:exit() + self.curState = newState + self.curStateKey = stateKey + self.curState:enter(params) + else + Logger.logWarning("StateMachine changeState: state machine no such state %s", stateKey) + end +end + +---- start状态机 +function StateMachine:start(stateKey, params) + if self.active then + return + end + local newState = self.stateMap[stateKey] + if newState then + self.curState = newState + self.curState:enter(params) + self.curStateKey = stateKey + self.active = true + else + Logger.logWarning("StateMachine start: state machine no such state %s", stateKey) + end +end + +---- 重新开始状态机 +function StateMachine:restart(stateKey, params) + local newState = self.stateMap[stateKey] + if newState then + if self.active then + self.curState:exit() + end + self.curState = newState + self.curStateKey = stateKey + self.curState:enter(params) + self.active = true + else + Logger.logWarning("StateMachine restart: state machine no such state %s", stateKey) + end +end + +---- 停止状态机 +function StateMachine:stop() + if not self.active then + return + end + self.curState:exit() + self.curState = nil + self.curStateKey = nil + self.active = false + for _, state in pairs(self.stateMap) do + state:clear() + end +end + +---- 每帧tick当前状态 +function StateMachine:tick() + if self.active then + self.curState:tick() + end +end + +return StateMachine \ No newline at end of file diff --git a/lua/app/bf/state_machine/state_machine.lua.meta b/lua/app/bf/state_machine/state_machine.lua.meta new file mode 100644 index 00000000..adbc9288 --- /dev/null +++ b/lua/app/bf/state_machine/state_machine.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b074e5dabbe91294fa6ea868939eb0b5 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity.meta b/lua/app/bf/unity.meta new file mode 100644 index 00000000..16729a9e --- /dev/null +++ b/lua/app/bf/unity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b4af23ba746bfe84f81559ac6e2a628c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/base_object.lua b/lua/app/bf/unity/base_object.lua new file mode 100644 index 00000000..1f393a74 --- /dev/null +++ b/lua/app/bf/unity/base_object.lua @@ -0,0 +1,574 @@ +---@class BaseObject +local BaseObject = class("GameObject") + +local Vector2 = BF.Vector2(0, 0) +local Vector3 = BF.Vector3(0, 0, 0) + +function BaseObject:ctor() + self.components = {} + self.childList = {} +end + +function BaseObject:initWithPrefab(assetPath, prefab) + self.assetPath = assetPath + self.gameObject = prefab +end + +function BaseObject:initWithGameObject(gameObject) + self.gameObject = gameObject +end + +function BaseObject:getAssetPath() + return self.assetPath +end + +function BaseObject:setCustomData(name, value) + if self.customData == nil then + self.customData = {} + end + self.customData[name] = value +end + +function BaseObject:getCustomData(name) + if self.customData == nil then + return nil + end + return self.customData[name] +end + +function BaseObject:dontDestroyOnLoad() + CS.UnityEngine.GameObject.DontDestroyOnLoad(self:getGameObject()) +end + +function BaseObject:getGameObject() + return self.gameObject +end + +function BaseObject:getTransform() + if self.transform == nil then + local gameObject = self:getGameObject() + if gameObject then + self.transform = gameObject.transform + end + end + return self.transform +end + +function BaseObject:getInstanceID() + local gameObject = self:getGameObject() + if gameObject then + return gameObject:GetInstanceID() + end + return 0 +end + +function BaseObject:addLuaComponent(componentType, params) + local comp = self.components[componentType] + if comp == nil then + comp = require(componentType):create(params) + comp:_init(self) + self.components[componentType] = comp + end + return comp +end + +function BaseObject:removeLuaComponent(componentType) + self.components[componentType] = nil +end + +function BaseObject:getLuaComponent(componentType) + if self.components[componentType] == nil then + local comp = require(componentType):create() + comp:_init(self) + self.components[componentType] = comp + end + return self.components[componentType] +end + +function BaseObject:addComponent(componentType) + if self.components[componentType] == nil then + local gameObject = self:getGameObject() + if gameObject then + self.components[componentType] = gameObject:AddComponent(componentType) + end + end + return self.components[componentType] +end + +function BaseObject:getComponent(componentType) + if self.components[componentType] == nil then + local gameObject = self:getGameObject() + if gameObject then + local com = gameObject:BFGetComponent(componentType) + self.components[componentType] = com + end + end + return self.components[componentType] +end + +function BaseObject:getAllComponents() + return self.components +end + +function BaseObject:getActiveSelf() + local gameObject = self:getGameObject() + return gameObject.activeSelf +end + +function BaseObject:setActive(active) + local gameObject = self:getGameObject() + if gameObject then + gameObject:SetActive(active) + end +end + +function BaseObject:setName(name) + self.name = name +end + +function BaseObject:getName() + return self.name or "" +end + +function BaseObject:setScrollRectCellName(nameIndex) + local gameObject = self:getGameObject() + if gameObject then + gameObject.name = tostring(nameIndex) + end +end + +function BaseObject:setTag(tag) + self.tag = tag +end + +function BaseObject:getTag() + return self.tag +end + +function BaseObject:setLayer(layer) + local trans = self:getTransform():GetComponentsInChildren(GConst.TYPEOF_UNITY_CLASS.TRANSFORM, true) + if trans then + local len = trans.Length + for i = 0, len - 1 do + trans[i].gameObject.layer = layer + end + end +end + +function BaseObject:getAnchoredPosition() + local transform = self:getTransform() + return transform.anchoredPosition +end + +function BaseObject:getAnchoredPositionX() + local transform = self:getTransform() + return transform.anchoredPosition.x +end + +function BaseObject:getAnchoredPositionY() + local transform = self:getTransform() + return transform.anchoredPosition.y +end + +function BaseObject:setAnchoredPositionX(x) + local transform = self:getTransform() + Vector2.x = x + Vector2.y = transform.anchoredPosition.y + transform.anchoredPosition = Vector2 +end + +function BaseObject:setAnchoredPositionY(y) + local transform = self:getTransform() + Vector2.x = transform.anchoredPosition.x + Vector2.y = y + transform.anchoredPosition = Vector2 +end + +function BaseObject:setAnchoredPosition(x, y) + local transform = self:getTransform() + Vector2.x = x + Vector2.y = y + transform.anchoredPosition = Vector2 +end + +function BaseObject:addAnchoredPosition(x, y) + local transform = self:getTransform() + local anchoredPosition = transform.anchoredPosition + Vector2.x = x + anchoredPosition.x + Vector2.y = y + anchoredPosition.y + transform.anchoredPosition = Vector2 +end + +function BaseObject:getRectSize() + local transform = self:getTransform() + return transform.rect +end + +function BaseObject:getSizeDeltaY() + local transform = self:getTransform() + return transform.sizeDelta.y +end + +function BaseObject:getSizeDeltaX() + local transform = self:getTransform() + return transform.sizeDelta.x +end + +function BaseObject:setSizeDeltaX(x) + local transform = self:getTransform() + Vector2.x = x + Vector2.y = transform.sizeDelta.y + transform.sizeDelta = Vector2 +end + +function BaseObject:setSizeDeltaY(y) + local transform = self:getTransform() + Vector2.x = transform.sizeDelta.x + Vector2.y = y + transform.sizeDelta = Vector2 +end + +function BaseObject:setSizeDelta(x, y) + local transform = self:getTransform() + Vector2.x = x + Vector2.y = y + transform.sizeDelta = Vector2 +end + +function BaseObject:addSizeDelta(x, y) + local transform = self:getTransform() + local sizeDelta = transform.sizeDelta + Vector2.x = x + sizeDelta.x + Vector2.y = y + sizeDelta.y + transform.sizeDelta = Vector2 +end + +function BaseObject:setPosition(x, y, z) + local transform = self:getTransform() + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.position = Vector3 +end + +function BaseObject:addPosition(x, y, z) + local transform = self:getTransform() + local position = transform.position + Vector3.x = x + position.x + Vector3.y = y + position.y + Vector3.z = z + position.z + transform.position = Vector3 +end + +function BaseObject:getLocalPosition() + local transform = self:getTransform() + return transform.localPosition +end + +function BaseObject:setLocalPosition(x, y, z) + local transform = self:getTransform() + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.localPosition = Vector3 +end + +function BaseObject:setLocalPositionX(x) + local transform = self:getTransform() + local localPosition = transform.localPosition + Vector3.x = x + Vector3.y = localPosition.y + Vector3.z = localPosition.z + transform.localPosition = Vector3 +end + +function BaseObject:setLocalPositionY(y) + local transform = self:getTransform() + local localPosition = transform.localPosition + Vector3.x = localPosition.x + Vector3.y = y + Vector3.z = localPosition.z + transform.localPosition = Vector3 +end + +function BaseObject:setLocalPositionZ(z) + local transform = self:getTransform() + local localPosition = transform.localPosition + Vector3.x = localPosition.x + Vector3.y = localPosition.y + Vector3.z = z + transform.localPosition = Vector3 +end + +function BaseObject:addLocalPosition(x, y, z) + local transform = self:getTransform() + local localPosition = transform.localPosition + Vector3.x = x + localPosition.x + Vector3.y = y + localPosition.y + Vector3.z = z + localPosition.z + transform.localPosition = Vector3 +end + +function BaseObject:setVisible(visible, scale) + local transform = self:getTransform() + if visible then + Vector3.x = scale or 1 + Vector3.y = scale or 1 + Vector3.z = scale or 1 + else + Vector3.x = 0 + Vector3.y = 0 + Vector3.z = 0 + end + transform.localScale = Vector3 +end + +function BaseObject:setLocalScale(x, y, z) + local transform = self:getTransform() + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.localScale = Vector3 +end + +function BaseObject:setLocalScaleX(x) + local transform = self:getTransform() + local currScale = transform.localScale + Vector3.x = x + Vector3.y = currScale.y + Vector3.z = currScale.z + transform.localScale = Vector3 +end + +function BaseObject:addLocalScale(x, y, z) + local transform = self:getTransform() + local localScale = transform.localScale + Vector3.x = x + localScale.x + Vector3.y = y + localScale.y + Vector3.z = z + localScale.z + transform.localScale = Vector3 +end + +function BaseObject:setLocalRotation(x, y, z) + local transform = self:getTransform() + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.localRotation = Vector3 +end + +function BaseObject:setEulerAngles(x, y, z) + local transform = self:getTransform() + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.eulerAngles = Vector3 +end + +function BaseObject:addEulerAngles(x, y, z) + local transform = self:getTransform() + local eulerAngles = transform.eulerAngles + Vector3.x = x + eulerAngles.x + Vector3.y = y + eulerAngles.y + Vector3.z = z + eulerAngles.z + transform.eulerAngles = Vector3 +end + +function BaseObject:setLocalEulerAngles(x, y, z) + local transform = self:getTransform() + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.localEulerAngles = Vector3 +end + +function BaseObject:addLocalEulerAngles(x, y, z) + local transform = self:getTransform() + local localEulerAngles = transform.localEulerAngles + Vector3.x = x + localEulerAngles.x + Vector3.y = y + localEulerAngles.y + Vector3.z = z + localEulerAngles.z + transform.localEulerAngles = Vector3 +end + +function BaseObject:getAdmin() + return self.admin +end + +-- admin可能是parent也可能不是 +function BaseObject:setAdmin(admin) + self.admin = admin +end + +function BaseObject:removeAllChildren() + if self.childList then + local count = #self.childList + for i = 1, count do + local child = table.remove(self.childList) + child:setAdmin(nil) + child:destroy() + end + end +end + +function BaseObject:removeChild(child) + if self.childList then + for k, v in ipairs(self.childList) do + if v == child then + table.remove(self.childList, k) + break + end + end + end +end + +function BaseObject:getChildList() + return self.childList +end + +function BaseObject:getFirstChild() + return self.childList[1] +end + +function BaseObject:setParent(parent, worldPositionStays) + if self.admin then + self.admin:removeChild(self) + end + local transform = self:getTransform() + local parentTransform = parent and parent:getTransform() or nil + transform:SetParent(parentTransform, worldPositionStays) + if parent then + parent:addChildList(self) + else + self.admin = nil + end +end + +function BaseObject:removeFromParent(isNeedCleanUp) + if isNeedCleanUp then + self:destroy() + else + if self.admin then + self.admin:removeChild(self) + self.admin = nil + end + self:getTransform():SetParent(nil, false) + end +end + +function BaseObject:addChildList(child) + child:setAdmin(self) + table.insert(self.childList, child) +end + +function BaseObject:addPrefab(prefab, worldPositionStays) + prefab.transform:SetParent(self:getTransform(), worldPositionStays) +end + +function BaseObject:scheduleGlobal(func, inter) + local sid = SchedulerManager:scheduleGlobal(func, inter) + if self._schedulerIds == nil then + self._schedulerIds = {} + end + table.insert(self._schedulerIds, sid) + return sid +end + +function BaseObject:performWithDelayGlobal(func, delay) + local sid = SchedulerManager:performWithDelayGlobal(func, delay) + if self._schedulerIds == nil then + self._schedulerIds = {} + end + table.insert(self._schedulerIds, sid) + return sid +end + +function BaseObject:unscheduleGlobal(sid) + if self._schedulerIds == nil then + return + end + for k, v in ipairs(self._schedulerIds) do + if v == sid then + table.remove(self._schedulerIds, k) + break + end + end + SchedulerManager:unscheduleGlobal(sid) +end + +function BaseObject:createBindTweenSequence() + local sequence = DOTweenManager:createSeqWithGameObject(self:getGameObject()) + return sequence +end + +function BaseObject:doScale(endValue, duration, onComplete) + DOTweenManager:doScale(self:getTransform(),endValue,duration,onComplete) +end + +function BaseObject:addUnloadCallback(callback) + self._unloadCallback = callback +end + +function BaseObject:addOnDestroyCallback(callback) + if not self._onDestroyCallbacks then + self._onDestroyCallbacks = {} + end + table.insert(self._onDestroyCallbacks, callback) +end + +function BaseObject:clearOnDestroyCallback() + self._onDestroyCallbacks = nil +end + +function BaseObject:isDestroyed() + return self._destroy +end + +function BaseObject:onDestroy() + if self._destroy then + return + end + self._destroy = true + for k, child in ipairs(self.childList) do + child:onDestroy() + end + if self._schedulerIds then + for k, v in ipairs(self._schedulerIds) do + SchedulerManager:unscheduleGlobal(v) + end + self._schedulerIds = nil + end + if self._unloadCallback then + self._unloadCallback(self) + self._unloadCallback = nil + end + if self._onDestroyCallbacks then + for _, callback in ipairs(self._onDestroyCallbacks) do + callback(self) + end + self._onDestroyCallbacks = nil + end + self.childList = nil + for k, v in pairs(self.components) do + self.components[k] = nil + end + self.admin = nil + self.gameObject = nil + self.transform = nil +end + +function BaseObject:destroy() + if self._destroy then + return + end + if self.admin then + self.admin:removeChild(self) + end + local gameObject = self.gameObject + if gameObject and not CS.BF.Utils.IsNull(gameObject) then + ResourceManager:destroyPrefab(gameObject) + end + self:onDestroy() +end + +return BaseObject \ No newline at end of file diff --git a/lua/app/bf/unity/base_object.lua.meta b/lua/app/bf/unity/base_object.lua.meta new file mode 100644 index 00000000..abc8662a --- /dev/null +++ b/lua/app/bf/unity/base_object.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c999a15d1097bf142a16255bc00cf2b2 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/character_object.lua b/lua/app/bf/unity/character_object.lua new file mode 100644 index 00000000..7d197e79 --- /dev/null +++ b/lua/app/bf/unity/character_object.lua @@ -0,0 +1,498 @@ +local CharacterFSMManager = require "app/module/character_fsm/character_fsm_manager" +local BaseObject = require "app/bf/unity/base_object" +local CharacterObject = class("CharacterObject", BaseObject) + +local BF_CHARACTER_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_CHARACTER_HELPER +local ANIMATOR = GConst.TYPEOF_UNITY_CLASS.ANIMATOR +local ANIMATION_FRAME_PER_SECOND = 30 + +local SUPPORT_SHADER = { + ["BF/Models/Character Battle"] = true, +} + +local hash = GFunc.hash + +local HashName = {} +local function getHashName(str) + local intName = HashName[str] + if intName == nil then + intName = hash(str) + HashName[str] = intName + end + return intName +end + +local CHILDMAP_METATABLE = { + __index = function(t, k) + if rawget(t, k) == nil then + local v = rawget(t, hash(k)) + if v then + rawset(t, k, v) + end + return v + end + return rawget(t, k) + end +} + +local Vector3 = BF.Vector3(0, 0, 0) + +local abs = math.abs + +function CharacterObject:ctor() + self.timeScale = 1 +end + +function CharacterObject:initWithPrefab(assetPath, prefab, modelId) + BaseObject.initWithPrefab(self, assetPath, prefab) + self.characterHelper = self:getComponent(BF_CHARACTER_HELPER) + if self.characterHelper == nil then + self.characterHelper = self:addComponent(BF_CHARACTER_HELPER) + end + self.mainModel = self.characterHelper:GetModelObject() + self.objectIndex = -1 + self.modelId = modelId + self:_genAllBones() +end + +function CharacterObject:initWithCharacterHelper(characterHelper, index, gameObject, name, admin) + self.characterHelper = characterHelper + self.objectIndex = index + self.gameObject = gameObject + self.name = name + self.admin = admin +end + +function CharacterObject:_genAllBones() + local childMap = {} + if self.characterHelper then + local childNum = self.characterHelper:GetListCount() + for i = 0, childNum do + local gameObject = self.characterHelper:GetGameObjectByIndex(i) + local hashName = self.characterHelper:GetHashNameByIndex(i) + local child = CharacterObject:create() + child:initWithCharacterHelper(self.characterHelper, i, gameObject, hashName, self) + if childMap[hashName] == nil then + childMap[hashName] = child + end + table.insert(self.childList, child) + end + end + setmetatable(childMap, CHILDMAP_METATABLE) + self.childMap = childMap +end + +function CharacterObject:getBoneByName(name) + return self.childMap[name] +end + +function CharacterObject:fastGetPosition() + if self.characterHelper then + self.characterHelper:CachePosition(self.objectIndex) + return self.characterHelper.PositionX, self.characterHelper.PositionY, self.characterHelper.PositionZ + else + local position = self:getTransform().position + return position.x, position.y, position.z + end +end + +function CharacterObject:getBonePositionByName(name) + return self.childMap[name]:fastGetPosition() +end + +function CharacterObject:getHashCode() + local code = -1 + if self.characterHelper then + code = self.characterHelper:GetModelHashCode() + end + return code +end + +function CharacterObject:play(name, layer, normalizedTime) + layer = layer or -1 + normalizedTime = normalizedTime or 0 + + if self.weaponObj and not self.weaponObj:isDestroyed() then + if self.weaponAniName then + -- local weaponAniName = self:getWeaponSpecialAni(name, self.weaponAniName, true) + -- if self.weaponObj:getStateTime(weaponAniName) > 0 then + -- self.weaponObj:play(weaponAniName, layer, normalizedTime) + -- end + + local newName = self:getWeaponSpecialAni(name, self.weaponAniName) or name + if self:getStateTime(newName) > 0 then + name = newName + end + end + else + self:setWeaponInfo() + end + + if self.mainAnimator == nil then + if self.mainModel then + self.mainAnimator = self.mainModel:GetComponent(ANIMATOR) + self.mainAnimator:Play(name, layer, normalizedTime) + end + else + self.mainAnimator:Play(name, layer, normalizedTime) + end +end + +function CharacterObject:playHashName(hashName, layer, normalizedTime) + layer = layer or -1 + normalizedTime = normalizedTime or 0 + + if self.weaponObj and not self.weaponObj:isDestroyed() then + if self.weaponAniName then + -- local weaponHashName = self:getWeaponSpecialAniHash(hashName, self.weaponAniName, true) + -- if self.weaponObj:getStateTimeHash(weaponHashName) > 0 then + -- self.weaponObj:playHashName(weaponHashName, layer, normalizedTime) + -- end + + local newHashName = self:getWeaponSpecialAniHash(hashName, self.weaponAniName, true) or hashName + if self:getStateTimeHash(newHashName) > 0 then + hashName = newHashName + end + end + else + self:setWeaponInfo() + end + + if self.mainAnimator == nil then + if self.mainModel then + self.mainAnimator = self.mainModel:GetComponent(ANIMATOR) + self.mainAnimator:Play(hashName, layer, normalizedTime) + end + else + self.mainAnimator:Play(hashName, layer, normalizedTime) + end +end + +function CharacterObject:getWeaponSpecialAni(name, specialAniName, isWeapon) + if not self.weaponSpecialAniMap then + self.weaponSpecialAniMap = {} + end + + if not self.weaponSpecialAniMap[name] then + self.weaponSpecialAniMap[name] = {} + end + + if not self.weaponSpecialAniMap[name][specialAniName] then + self.weaponSpecialAniMap[name][specialAniName] = {} + end + + if not isWeapon then + if not self.weaponSpecialAniMap[name][specialAniName].heroAniName then + self.weaponSpecialAniMap[name][specialAniName].heroAniName = name .. "_" .. specialAniName + end + return self.weaponSpecialAniMap[name][specialAniName].heroAniName + else + if not self.weaponSpecialAniMap[name][specialAniName].weaponAniName and self.modelId then + self.weaponSpecialAniMap[name][specialAniName].weaponAniName = self.modelId .. "_" .. name .. "_" .. specialAniName + end + return self.weaponSpecialAniMap[name][specialAniName].weaponAniName + end +end + +function CharacterObject:getWeaponSpecialAniHash(hashName, specialAniName, isWeapon) + if not self.weaponSpecialAniHashMap then + self.weaponSpecialAniHashMap = {} + end + + if not self.weaponSpecialAniHashMap[hashName] then + self.weaponSpecialAniHashMap[hashName] = {} + end + + if not self.weaponSpecialAniHashMap[hashName][specialAniName] then + self.weaponSpecialAniHashMap[hashName][specialAniName] = {} + end + + if not isWeapon then + if not self.weaponSpecialAniHashMap[hashName][specialAniName].heroAniName then + local name = GConst.HeroConst.HERO_ANI_HASH_MAP[hashName] + if name then + self.weaponSpecialAniHashMap[hashName][specialAniName].heroAniName = CS.UnityEngine.Animator.StringToHash(name .. "_" .. specialAniName) + end + end + return self.weaponSpecialAniHashMap[hashName][specialAniName].heroAniName + else + if not self.weaponSpecialAniHashMap[hashName][specialAniName].weaponAniName and self.modelId then + local name = GConst.HeroConst.HERO_ANI_HASH_MAP[hashName] + if name then + self.weaponSpecialAniHashMap[hashName][specialAniName].weaponAniName = CS.UnityEngine.Animator.StringToHash(self.modelId .. "_" .. name .. "_" .. specialAniName) + end + end + return self.weaponSpecialAniHashMap[hashName][specialAniName].weaponAniName + end +end + +function CharacterObject:setWeaponInfo(weaponAniName, weaponObj) + if not weaponObj then + self.weaponAniName = nil + self.weaponObj = nil + end + self.weaponAniName = weaponAniName + self.weaponObj = weaponObj +end + +function CharacterObject:setAnimatorBool(key, value) + if self.mainAnimator == nil then + if self.mainModel then + self.mainAnimator = self.mainModel:GetComponent(ANIMATOR) + self.mainAnimator:SetBool(key, value) + end + else + self.mainAnimator:SetBool(key, value) + end +end + +function CharacterObject:getMainAnimator() + if self.mainAnimator == nil then + if self.mainModel then + self.mainAnimator = self.mainModel:GetComponent(ANIMATOR) + end + end + return self.mainAnimator +end + +function CharacterObject:getMainModelTransform() + if self.mainModelTransform == nil then + self.mainModelTransform = self.mainModel and self.mainModel.transform or nil + end + return self.mainModelTransform +end + +function CharacterObject:getMainModel() + return self.mainModel +end + +function CharacterObject:getCurrentAnimationHash() + return CS.BF.Utils.GetCurrentAnimationHash(self:getMainAnimator()) +end + +function CharacterObject:setMainModelLocalScale(x, y, z) + local transform = self:getMainModelTransform() + if transform then + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.localScale = Vector3 + end +end + +function CharacterObject:setMainModelLocalPosition(x, y, z) + if self.characterHelper then + self.characterHelper:SetMainModelLocalPosition(x, y, z) + else + local transform = self:getMainModelTransform() + if transform then + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.localPosition = Vector3 + end + end +end + +function CharacterObject:getStateTime(name) + local hashName = getHashName(name) + return self.characterHelper:GetStateTime(hashName) +end + +function CharacterObject:getStateTimeHash(hashName) + return self.characterHelper:GetStateTime(hashName) +end + +function CharacterObject:getStateKeyTime(name, index) + local hashName = getHashName(name) + local keyTime = self.characterHelper:GetStateKeyFrame(hashName, index) or 0 + return keyTime/ANIMATION_FRAME_PER_SECOND +end + +function CharacterObject:containsState(name) + return self:getStateTime(name) > 0.00001 +end + +function CharacterObject:setTimeScale(timeScale) + if abs(self.timeScale - timeScale) < 0.00001 then + return + end + self.timeScale = timeScale + local mainAnimator = self:getMainAnimator() + mainAnimator.speed = timeScale*(self.timeScaleAddition or 1) +end + +function CharacterObject:setTimeScaleAddition(addition) + self.timeScaleAddition = addition + local timeScale = self.timeScale*addition + local mainAnimator = self:getMainAnimator() + mainAnimator.speed = timeScale +end + +function CharacterObject:setCullingMode(cullingMode) + local mainAnimator = self:getMainAnimator() + if mainAnimator then + mainAnimator.cullingMode = cullingMode + end +end + +function CharacterObject:getCharacterMaterials() + if not self.characterMaterials then + self.characterMaterials = {} + for k, prefabObj in pairs(self.childMap) do + local render = prefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.SKINNED_MESH_RENDERER) + if not CS.BF.Utils.IsNull(render) and not CS.BF.Utils.IsNull(render.material) and SUPPORT_SHADER[render.material.shader.name] then + table.insert(self.characterMaterials, render.material) + end + end + end + return self.characterMaterials +end + +function CharacterObject:getCharacterMeshRenderer() + if not self.characterMeshRenders then + self.characterMeshRenders = {} + for k, prefabObj in pairs(self.childMap) do + local render = prefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.SKINNED_MESH_RENDERER) + if not CS.BF.Utils.IsNull(render) and not CS.BF.Utils.IsNull(render.material) and SUPPORT_SHADER[render.material.shader.name] then + table.insert(self.characterMeshRenders, render) + end + end + end + return self.characterMeshRenders +end + +function CharacterObject:getMaterialPropertyBlock() + if not self.mpb then + self.mpb = CS.UnityEngine.MaterialPropertyBlock() + end + return self.mpb +end + +function CharacterObject:setCustomShadowEnable(enabled) + local materials = self:getCharacterMaterials() + for _, material in ipairs(materials) do + material:SetShaderPassEnabled("Always", enabled) + end +end + +function CharacterObject:setCharacterFSM(fsm) + self.fsm = fsm +end + +---- 默认 +function CharacterObject:setDefault() + if self.fsm:getCurStateKey() == CharacterFSMManager.STATE_TYPE.DEFAULT then + return + end + self.fsm:changeState(CharacterFSMManager.STATE_TYPE.DEFAULT) +end + +---- 石化 +function CharacterObject:setStone(callback) + if self.fsm:getCurStateKey() == CharacterFSMManager.STATE_TYPE.STONE then + return + end + self.fsm:changeState(CharacterFSMManager.STATE_TYPE.STONE, {callback = callback}) +end + +---- 石化效果2 +function CharacterObject:setStone2(callback) + if self.fsm:getCurStateKey() == CharacterFSMManager.STATE_TYPE.STONE_2 then + return + end + self.fsm:changeState(CharacterFSMManager.STATE_TYPE.STONE_2, {callback = callback}) +end + +---- 冰化 +function CharacterObject:setIce() + if self.fsm:getCurStateKey() == CharacterFSMManager.STATE_TYPE.ICE then + return + end + self.fsm:changeState(CharacterFSMManager.STATE_TYPE.ICE) +end + +---- 闪红 +function CharacterObject:setGlow(time, callback) + local state = self.fsm:getCurStateKey() + if state == CharacterFSMManager.STATE_TYPE.DISSOLVE or state == CharacterFSMManager.STATE_TYPE.GLOW then + return + end + + if state == CharacterFSMManager.STATE_TYPE.ICE then + self.fsm:changeState(CharacterFSMManager.STATE_TYPE.DEFAULT) + end + + self.fsm:changeState(CharacterFSMManager.STATE_TYPE.GLOW, {time = time or 0.7, callback = function() + if callback then + callback() + end + self.fsm:changeState(state) + end}) +end + +---- 消融 +function CharacterObject:setDissolve(time, callback, needCallback) + self.fsm:changeState(CharacterFSMManager.STATE_TYPE.DISSOLVE, {time = time, + callback = callback, + needCallback = needCallback}) +end + +function CharacterObject:setShadowColor(color) + local renderers = self:getCharacterMeshRenderer() + local mpBlock = self:getMaterialPropertyBlock() + for i, renderer in ipairs(renderers) do + renderer:GetPropertyBlock(mpBlock) + mpBlock:SetColor("_shadow_color", color) + renderer:SetPropertyBlock(mpBlock) + end +end + +function CharacterObject:setLocalEulerAngles(x, y, z) + if self.characterHelper then + self.characterHelper:SetLocalEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.setLocalEulerAngles(self, x, y, z) + end +end + +function CharacterObject:setLocalPosition(x, y, z) + if self.characterHelper then + self.characterHelper:SetLocalPosition(self.objectIndex, x, y, z) + else + BaseObject.setLocalPosition(self, x, y, z) + end +end + +function CharacterObject:setPosition(x, y, z) + if self.characterHelper then + self.characterHelper:SetPosition(self.objectIndex, x, y, z) + else + BaseObject.setPosition(self, x, y, z) + end +end + +function CharacterObject:setLocalScale(x, y, z) + if self.characterHelper then + self.characterHelper:SetLocalScale(self.objectIndex, x, y, z) + else + BaseObject.setLocalScale(self, x, y, z) + end +end + +function CharacterObject:onDestroy() + if self.fsm then + CharacterFSMManager:stopFSM(self.fsm) + self.fsm = nil + end + BaseObject.onDestroy(self) + self.characterHelper = nil + self.mainModel = nil + self.mainAnimator = nil + self.childMap = nil + self.characterMaterials = nil + self.characterMeshRenders = nil + self.mpb = nil +end + +return CharacterObject \ No newline at end of file diff --git a/lua/app/bf/unity/character_object.lua.meta b/lua/app/bf/unity/character_object.lua.meta new file mode 100644 index 00000000..dd2ccd8a --- /dev/null +++ b/lua/app/bf/unity/character_object.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ca211280dfcb404458954cb27e84cfd8 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/character_spine_object.lua b/lua/app/bf/unity/character_spine_object.lua new file mode 100644 index 00000000..0a922993 --- /dev/null +++ b/lua/app/bf/unity/character_spine_object.lua @@ -0,0 +1,232 @@ +local BaseObject = require "app/bf/unity/base_object" +local CharacterSpineObject = class("CharacterSpineObject", BaseObject) + +local BF_CHARACTER_SPINE_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_CHARACTER_SPINE_HELPER + +local hash = GFunc.hash +local CHILDMAP_METATABLE = { + __index = function(t, k) + if rawget(t, k) == nil then + local v = rawget(t, hash(k)) + if v then + rawset(t, k, v) + end + return v + end + return rawget(t, k) + end +} + +function CharacterSpineObject:ctor() +end + +function CharacterSpineObject:getCharacterSpineHelper() + return self.characterSpineHelper +end + +function CharacterSpineObject:initWithPrefab(assetPath, prefab) + BaseObject.initWithPrefab(self, assetPath, prefab) + self.characterSpineHelper = self:getComponent(BF_CHARACTER_SPINE_HELPER) + if self.characterSpineHelper == nil then + self.characterSpineHelper = self:addComponent(BF_CHARACTER_SPINE_HELPER) + end + self.mainSpine = self.characterSpineHelper:GetSpineObject() + self.objectIndex = -1 + self:_genAllChildren() +end + +function CharacterSpineObject:initWithCharacterHelper(characterSpineHelper, index, gameObject, name, admin) + self.characterSpineHelper = characterSpineHelper + self.objectIndex = index + self.gameObject = gameObject + self.name = name + self.admin = admin +end + +function CharacterSpineObject:refreshSkeletonDataAsset(dataAsset) + local skeletonAnimation = self:getSkeletonAnimation() + skeletonAnimation.skeletonDataAsset = dataAsset + skeletonAnimation:Initialize(true) + self.characterSpineHelper:Reload() +end + +function CharacterSpineObject:_genAllChildren() + local childMap = {} + if self.characterSpineHelper then + local childNum = self.characterSpineHelper:GetListCount() + for i = 0, childNum do + local gameObject = self.characterSpineHelper:GetGameObjectByIndex(i) + local hashName = self.characterSpineHelper:GetHashNameByIndex(i) + local child = CharacterSpineObject:create() + child:initWithCharacterHelper(self.characterSpineHelper, i, gameObject, hashName, self) + if childMap[hashName] == nil then + childMap[hashName] = child + end + table.insert(self.childList, child) + end + end + setmetatable(childMap, CHILDMAP_METATABLE) + self.childMap = childMap +end + +function CharacterSpineObject:getChildByName(name) + return self.childMap[name] +end + +function CharacterSpineObject:getMainSpine() + return self.mainSpine +end + +function CharacterSpineObject:fastGetBonePosition(name) + if self.characterSpineHelper then + self.characterSpineHelper:CacheBonePosition(name) + return self.characterSpineHelper.PositionX, self.characterSpineHelper.PositionY, self.characterSpineHelper.PositionZ + end +end + +function CharacterSpineObject:fastGetPosition() + if self.characterSpineHelper then + self.characterSpineHelper:CachePosition(self.objectIndex) + return self.characterSpineHelper.PositionX, self.characterSpineHelper.PositionY, self.characterSpineHelper.PositionZ + else + local position = self:getTransform().position + return position.x, position.y, position.z + end +end + +function CharacterSpineObject:setPosition(x, y, z) + if self.characterSpineHelper then + self.characterSpineHelper:SetPosition(self.objectIndex, x, y, z) + else + BaseObject.SetPosition(self, x, y, z) + end +end + +function CharacterSpineObject:setEulerAngles(x, y, z) + if self.characterSpineHelper then + self.characterSpineHelper:SetEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.setEulerAngles(self, x, y, z) + end +end + +function CharacterSpineObject:setLocalEulerAngles(x, y, z) + if self.characterSpineHelper then + self.characterSpineHelper:SetLocalEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.setLocalEulerAngles(self, x, y, z) + end +end + +function CharacterSpineObject:setLocalScale(x, y, z) + if self.characterSpineHelper then + self.characterSpineHelper:SetLocalScale(self.objectIndex, x, y, z) + else + BaseObject.setLocalScale(self, x, y, z) + end +end + +function CharacterSpineObject:setLocalScaleX(x) + if self.characterSpineHelper then + self.characterSpineHelper:SetLocalScaleX(self.objectIndex, x) + else + BaseObject.setLocalScaleX(self, x) + end +end + +function CharacterSpineObject:playAnimation(animName, loop, forceRefresh) + if self.characterSpineHelper then + self.characterSpineHelper:PlayAnimation(animName, loop, forceRefresh) + end +end + +-- 战斗里面粒子特效和spine特效混用,统一调用的stop接口,这里先放一个空方法 +function CharacterSpineObject:stop() +end + +function CharacterSpineObject:setTimeScale(timeScale) + self.timeScale = timeScale + if self.characterSpineHelper then + if self.localTimeScale then + self.characterSpineHelper:SetAnimationSpeed(self.timeScale*self.localTimeScale) + else + self.characterSpineHelper:SetAnimationSpeed(self.timeScale) + end + end +end + +function CharacterSpineObject:setLocalTimeScale(localTimeScale) + self.localTimeScale = localTimeScale + self:setTimeScale(self.timeScale or 1) +end + +function CharacterSpineObject:setLoop(isLoop) + if self.characterSpineHelper then + self.characterSpineHelper:SetLoop(isLoop) + end +end + +function CharacterSpineObject:getAnimationDuration(animationName) + if self.characterSpineHelper then + return self.characterSpineHelper:GetAnimationDuration(animationName) + end + return 0 +end + +function CharacterSpineObject:addAnimationCompleteCallback(callback) + if self._animationStateCompleteCallback then + return + end + self._animationStateCompleteCallback = function(entry) + callback(entry.Animation.Name) + end + local state = self:getAnimationState() + state:Complete("+", self._animationStateCompleteCallback) +end + +function CharacterSpineObject:removeAnimationCompleteCallback() + if self._animationStateCompleteCallback then + local state = self:getAnimationState() + state:Complete("-", self._animationStateCompleteCallback) + self._animationStateCompleteCallback = nil + end +end + +function CharacterSpineObject:getSkeletonAnimation() + if self.skeletonAnimation == nil then + self.skeletonAnimation = self.characterSpineHelper:GetSkeletonAnimation() + end + return self.skeletonAnimation +end + +function CharacterSpineObject:setSortingOrder(order) + if self.mainSpineMeshRenderer == nil then + self.mainSpineMeshRenderer = self.mainSpine:BFGetComponent(GConst.TYPEOF_UNITY_CLASS.MESH_RENDERER) + end + self.mainSpineMeshRenderer.sortingOrder = order +end + + +function CharacterSpineObject:getInstanceID() + if self.characterSpineHelper then + return self.characterSpineHelper:GetInstanceID(self.objectIndex) + end + return BaseObject.getInstanceID(self) +end + +function CharacterSpineObject:setBattleScheduleId(id) + self.battleScheduleId = id +end + +function CharacterSpineObject:getBattleScheduleId() + return self.battleScheduleId +end + +function CharacterSpineObject:onDestroy() + self:removeAnimationCompleteCallback() + BaseObject.onDestroy(self) + self.skeletonAnimation = nil + self.animationState = nil +end + +return CharacterSpineObject \ No newline at end of file diff --git a/lua/app/bf/unity/character_spine_object.lua.meta b/lua/app/bf/unity/character_spine_object.lua.meta new file mode 100644 index 00000000..b1f42593 --- /dev/null +++ b/lua/app/bf/unity/character_spine_object.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bf2cec33a8ee9894880903595af32a39 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/bf/unity/effect_object.lua b/lua/app/bf/unity/effect_object.lua new file mode 100644 index 00000000..91a7307c --- /dev/null +++ b/lua/app/bf/unity/effect_object.lua @@ -0,0 +1,224 @@ +local BaseObject = require "app/bf/unity/base_object" + +local EffectObject = class("EffectObject", BaseObject) + +local BF_EFFECT_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_EFFECT_HELPER +local abs = math.abs + +local DEFAULT_DELAY_TIME = 1 + +function EffectObject:ctor() + self.timeScale = 1 +end + +function EffectObject:initWithPrefab(assetPath, prefab) + BaseObject.initWithPrefab(self, assetPath, prefab) + self.effectHelper = self:getComponent(BF_EFFECT_HELPER) + if self.effectHelper == nil then + self.effectHelper = self:addComponent(BF_EFFECT_HELPER) + end + local animatorCount = self.effectHelper.AnimatorCount or 0 + if animatorCount > 0 then + self.animators = {} + local animators = prefab:GetComponentsInChildren(GConst.TYPEOF_UNITY_CLASS.ANIMATOR, true) + if animators then + local len = animators.Length + for i = 0, len - 1 do + table.insert(self.animators, animators[i]) + end + end + end +end + +function EffectObject:play() + self.effectHelper:Play() +end + +-- 延迟播放 +function EffectObject:playDelay(delayTime, hideBeforePlay) + if delayTime <= 0 then + self:play() + return + end + if self._effectPlayScheduleId then + self:unscheduleGlobal(self._effectPlayScheduleId) + end + + if hideBeforePlay then + self:setActive(false) + end + self._effectPlayScheduleId = self:performWithDelayGlobal(function() + self._effectPlayScheduleId = nil + if hideBeforePlay then + self:setActive(true) + end + self:play() + end, delayTime) + + return self._effectPlayScheduleId +end + +function EffectObject:clear() + if self._effectPlayScheduleId then + self:unscheduleGlobal(self._effectPlayScheduleId) + self._effectPlayScheduleId = nil + end + self.effectHelper:Clear() +end + +function EffectObject:stop() + if self._effectPlayScheduleId then + self:unscheduleGlobal(self._effectPlayScheduleId) + self._effectPlayScheduleId = nil + end + self.effectHelper:Stop() +end + +function EffectObject:stopAndClear() + if self._effectPlayScheduleId then + self:unscheduleGlobal(self._effectPlayScheduleId) + self._effectPlayScheduleId = nil + end + self.effectHelper:StopAndClear() +end + + +function EffectObject:pause() + if self._effectPlayScheduleId then + self:unscheduleGlobal(self._effectPlayScheduleId) + self._effectPlayScheduleId = nil + end + self.effectHelper:Pause() +end + +function EffectObject:setUIOrder(uiOrder) + self.effectHelper:SetUIOrder(uiOrder) +end + +function EffectObject:setSortingOrder(uiOrder, order) + self.effectHelper:SetSortingOrder(uiOrder, order) +end + +function EffectObject:changeSortingOrderToFudge(order, coefficient) + self.effectHelper:ChangeSortingOrderToFudge(order, coefficient) +end + +function EffectObject:initParticleSystemRendererList() + self.effectHelper:InitParticleSystemRendererList() +end + +function EffectObject:getDuration() + return self.effectHelper.EffectDuration +end + +function EffectObject:setTimeScale(timeScale) + if abs(self.timeScale - timeScale) < 0.00001 then + return + end + self.timeScale = timeScale + self.effectHelper:SetTimeScale(timeScale) + if self.animators then + for k, v in ipairs(self.animators) do + v.speed = timeScale + end + end +end + +function EffectObject:setIsLoop(isLoop) + self.isLoop = isLoop +end + +function EffectObject:getIsLoop() + return self.isLoop +end + +function EffectObject:performDurationDelay(callback, diffDuration) + if self.scheduleId then + self:unscheduleGlobal(self.scheduleId) + end + + local duration = self.effectHelper.EffectDuration + if duration <= 0 then + duration = DEFAULT_DELAY_TIME + end + + duration = duration + (diffDuration or 0) + duration = math.max(duration, 0) + self.scheduleId = self:performWithDelayGlobal(function() + self.scheduleId = nil + callback() + end, duration) + + return self.scheduleId +end + +function EffectObject:setEulerAngles(x, y, z) + if self.effectHelper then + self.effectHelper:SetEulerAngles(x, y, z) + else + BaseObject.setEulerAngles(self, x, y, z) + end +end + +function EffectObject:setLocalEulerAngles(x, y, z) + if self.effectHelper then + self.effectHelper:SetLocalEulerAngles(x, y, z) + else + BaseObject.setLocalEulerAngles(self, x, y, z) + end +end + +function EffectObject:setLocalPosition(x, y, z) + if self.effectHelper then + self.effectHelper:SetLocalPosition(x, y, z) + else + BaseObject.setLocalPosition(self, x, y, z) + end +end + +function EffectObject:setPosition(x, y, z) + if self.effectHelper then + self.effectHelper:SetPosition(x, y, z) + else + BaseObject.setPosition(self, x, y, z) + end +end + +function EffectObject:setLocalScale(x, y, z) + if self.effectHelper then + self.effectHelper:SetLocalScale(x, y, z) + else + BaseObject.setLocalScale(self, x, y, z) + end +end + +function EffectObject:getIsEulerAnglesFlip() + if self.effectHelper then + return self.effectHelper.EulerAnglesFlip + end + return false +end + +function EffectObject:setBattleScheduleId(id) + self.battleScheduleId = id +end + +function EffectObject:getBattleScheduleId() + return self.battleScheduleId +end + +function EffectObject:onDestroy() + if self.scheduleId then + self:unscheduleGlobal(self.scheduleId) + self.scheduleId = nil + end + if self._effectPlayScheduleId then + self:unscheduleGlobal(self._effectPlayScheduleId) + self._effectPlayScheduleId = nil + end + BaseObject.onDestroy(self) + self.effectHelper = nil + self.animators = nil +end + +return EffectObject \ No newline at end of file diff --git a/lua/app/bf/unity/effect_object.lua.meta b/lua/app/bf/unity/effect_object.lua.meta new file mode 100644 index 00000000..f719881f --- /dev/null +++ b/lua/app/bf/unity/effect_object.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d83384436f7b68045a7cfd3ce6aec70a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/mesh_spine_object.lua b/lua/app/bf/unity/mesh_spine_object.lua new file mode 100644 index 00000000..bad8fb0b --- /dev/null +++ b/lua/app/bf/unity/mesh_spine_object.lua @@ -0,0 +1,77 @@ +local BaseObject = require "app/bf/unity/base_object" +local MeshSpineObject = class("SpineObject", BaseObject) + +function MeshSpineObject:ctor() +end + +function MeshSpineObject:initSkeletonDataAsset(dataAsset) + local skeletonAnimation = self:getSkeletonAnimation() + skeletonAnimation.skeletonDataAsset = dataAsset + skeletonAnimation:Initialize(false) +end + +function MeshSpineObject:getSkeletonAnimation() + if not self.skeletonAnimation then + self.skeletonAnimation = self:getComponent(GConst.TYPEOF_UNITY_CLASS.SKELETON_ANIMATION) + end + return self.skeletonAnimation +end + +function MeshSpineObject:getAnimationState() + self:getSkeletonAnimation() + if not self.animationState then + self.animationState = self.skeletonAnimation.AnimationState + end + return self.animationState +end + +function MeshSpineObject:playAnim(animName, loop, forceRefresh) + self:getAnimationState() + if self.animationState then + local trackEntry = self.animationState:SetAnimation(0, animName, loop) + if forceRefresh then + self.skeletonAnimation:Update(0) + end + return trackEntry + end +end + +function MeshSpineObject:setTimeScale(timeScale) + if self.skeletonAnimation then + self.skeletonAnimation.timeScale = timeScale + end +end + +function MeshSpineObject:setIsLoop(isLoop) + if self.skeletonAnimation then + self.skeletonAnimation.loop = isLoop + end +end + +function MeshSpineObject:addAnimationCompleteCallback(callback) + if self._animationStateCompleteCallback then + return + end + self._animationStateCompleteCallback = function(entry) + callback(entry.Animation.Name) + end + local state = self:getAnimationState() + state:Complete("+", self._animationStateCompleteCallback) +end + +function MeshSpineObject:removeAnimationCompleteCallback() + if self._animationStateCompleteCallback then + local state = self:getAnimationState() + state:Complete("-", self._animationStateCompleteCallback) + self._animationStateCompleteCallback = nil + end +end + +function MeshSpineObject:onDestroy() + self:removeAnimationCompleteCallback() + BaseObject.onDestroy(self) + self.skeletonAnimation = nil + self.animationState = nil +end + +return MeshSpineObject \ No newline at end of file diff --git a/lua/app/bf/unity/mesh_spine_object.lua.meta b/lua/app/bf/unity/mesh_spine_object.lua.meta new file mode 100644 index 00000000..16587114 --- /dev/null +++ b/lua/app/bf/unity/mesh_spine_object.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 55e4917dee9f5d34582e422d8b28267d +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/model_object.lua b/lua/app/bf/unity/model_object.lua new file mode 100644 index 00000000..99cbc715 --- /dev/null +++ b/lua/app/bf/unity/model_object.lua @@ -0,0 +1,157 @@ +local CharacterObject = require "app/bf/unity/character_object" +local EffectObject = require "app/bf/unity/effect_object" +local BaseObject = require "app/bf/unity/base_object" +local ModelObject = class("ModelObject", BaseObject) + +local BF_NODE_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_NODE_HELPER + +local hash = GFunc.hash + +local CHILDMAP_METATABLE = { + __index = function(t, k) + if rawget(t, k) == nil then + local v = rawget(t, hash(k)) + if v then + rawset(t, k, v) + end + return v + end + return rawget(t, k) + end +} + +local function _createModelChildObject(self, index, gameObject) + local child = ModelObject:create() + child:initWithModelHelper(self.modelHelper, index, gameObject) + return child +end + +local function _createCharacterChildObject(self, index, gameObject) + local child = CharacterObject:create() + child:initWithPrefab(nil, gameObject) + return child +end + +local function _createEffectChildObject(self, index, gameObject) + local child = EffectObject:create() + child:initWithPrefab(nil, gameObject) + return child +end + +ModelObject.createChildObject = { + [GConst.GAME_OBJECT_TYPE.CHARACTER_OBJECT] = _createCharacterChildObject, + [GConst.GAME_OBJECT_TYPE.EFFECT_OBJECT] = _createEffectChildObject, +} + +function ModelObject:initWithPrefab(assetPath, prefab) + BaseObject.initWithPrefab(self, assetPath, prefab) + self.modelHelper = self:getComponent(BF_NODE_HELPER) + if self.modelHelper == nil then + self.modelHelper = self:addComponent(BF_NODE_HELPER) + end + self.objectIndex = -1 + self:_genAllChildren() +end + +function ModelObject:initWithModelHelper(modelHelper, index, gameObject, name, admin) + self.modelHelper = modelHelper + self.objectIndex = index + self.gameObject = gameObject + self.name = name + self.admin = admin +end + +function ModelObject:_genAllChildren() + local childMap = {} + if self.modelHelper then + local childNum = self.modelHelper:GetListCount() + for i = 0, childNum do + local gameObject = self.modelHelper:GetGameObjectByIndex(i) + local hashName = self.modelHelper:GetHashNameByIndex(i) + local objectType = self.modelHelper:GetObjectTypeByIndex(i) + local func = self.createChildObject[objectType] or _createModelChildObject + local child = func(self, i, gameObject) + child:setName(hashName) + child:setAdmin(self) + if childMap[hashName] == nil then + childMap[hashName] = child + end + table.insert(self.childList, child) + end + end + setmetatable(childMap, CHILDMAP_METATABLE) + self.childMap = childMap +end + +function ModelObject:getChildByName(name) + return self.childMap[name] +end + +function ModelObject:setLocalEulerAngles(x, y, z) + if self.modelHelper then + self.modelHelper:SetLocalEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.setLocalEulerAngles(self, x, y, z) + end +end + +function ModelObject:fastGetLocalEulerAngles() + if self.modelHelper then + self.modelHelper:CacheLocalEulerAngles(self.objectIndex) + return self.modelHelper.PositionX, self.modelHelper.PositionY, self.modelHelper.PositionZ + else + local localEulerAngles = self:getTransform().localEulerAngles + return localEulerAngles.x, localEulerAngles.y, localEulerAngles.z + end +end + +function ModelObject:setLocalPosition(x, y, z) + if self.modelHelper then + self.modelHelper:SetLocalPosition(self.objectIndex, x, y, z) + else + BaseObject.setLocalPosition(self, x, y, z) + end +end + +function ModelObject:fastGetPosition() + if self.modelHelper then + self.modelHelper:CachePosition(self.objectIndex) + return self.modelHelper.PositionX, self.modelHelper.PositionY, self.modelHelper.PositionZ + else + local position = self:getTransform().position + return position.x, position.y, position.z + end +end + +function ModelObject:setPosition(x, y, z) + if self.modelHelper then + self.modelHelper:SetPosition(self.objectIndex, x, y, z) + else + BaseObject.setPosition(self, x, y, z) + end +end + +function ModelObject:setLocalScale(x, y, z) + if self.modelHelper then + self.modelHelper:SetLocalScale(self.objectIndex, x, y, z) + else + BaseObject.setLocalScale(self, x, y, z) + end +end + +function ModelObject:onDestroy() + BaseObject.onDestroy(self) + self.modelHelper = nil + self.childMap = nil +end + +function ModelObject:setSpriteRenderRect(x, y) + if not self.spriteRender then + self.spriteRender = self:getComponent(GConst.TYPEOF_UNITY_CLASS.SPRITE_RENDERER) + end + if self.spriteRender then + self.spriteRender.size = BF.Vector2(x, y) + end +end + +return ModelObject \ No newline at end of file diff --git a/lua/app/bf/unity/model_object.lua.meta b/lua/app/bf/unity/model_object.lua.meta new file mode 100644 index 00000000..b302093c --- /dev/null +++ b/lua/app/bf/unity/model_object.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 72f36c38a103f8c4aa3b1d909acb4a2a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/ui_spine_object.lua b/lua/app/bf/unity/ui_spine_object.lua new file mode 100644 index 00000000..2d9e5f06 --- /dev/null +++ b/lua/app/bf/unity/ui_spine_object.lua @@ -0,0 +1,251 @@ +local BaseObject = require "app/bf/unity/base_object" +---@class UISpineObject : BaseObject +local UISpineObject = class("SpineObject", BaseObject) + +local BF_UI_TOUCH_EVENT = GConst.TYPEOF_UNITY_CLASS.BF_UI_TOUCH_EVENT +local TYPE_OF_SPINE_ASSET = GConst.TYPEOF_UNITY_CLASS.SKELETON_DATA_ASSET +local SPINE_ASSET_PATH = "assets/arts/spines/ui/%s/%s_skeletondata.asset" + +function UISpineObject:ctor() +end + +function UISpineObject:initSkeletonDataAsset(dataAsset) + local skeletonGraphic = self:getSkeletonGraphic() + skeletonGraphic.skeletonDataAsset = dataAsset + skeletonGraphic:Initialize(false) + skeletonGraphic.raycastTarget = false +end + +function UISpineObject:refreshAssets(dataAsset) + local skeletonGraphic = self:getSkeletonGraphic() + skeletonGraphic.skeletonDataAsset = dataAsset + skeletonGraphic:Initialize(true) +end + +function UISpineObject:getSkeletonGraphic() + if not self.skeletonGraphic then + self.skeletonGraphic = self:getComponent(GConst.TYPEOF_UNITY_CLASS.SKELETON_GRAPHIC) + end + if not self.skeletonGraphic then + Logger.logFatal("UISpineObject missing component CS.Spine.Unity.SkeletonGraphic!") + end + return self.skeletonGraphic +end + +function UISpineObject:getAnimationState(forceRefresh) + self:getSkeletonGraphic() + if (not self.animationState and self.skeletonGraphic) or forceRefresh then + self.animationState = self.skeletonGraphic.AnimationState + end + return self.animationState +end + +function UISpineObject:playAnim(animName, loop, forceRefresh, forceGetSG) + self:getAnimationState(forceGetSG) + if self.animationState then + local trackEntry = self.animationState:SetAnimation(0, animName, loop) + if forceRefresh then + self.skeletonGraphic:Update(0) + end + return trackEntry + end +end + +--未验证TODO +function UISpineObject:rePlayAnim(animName, loop, forceRefresh) + self:getAnimationState() + if self.animationState then + self.animationState:SetEmptyAnimation(0, 1) + local trackEntry = self.animationState:SetAnimation(0, animName, loop) + if forceRefresh then + self.skeletonGraphic:Update(0) + end + return trackEntry + end +end + +function UISpineObject:playAnimComplete(animName, loop, forceRefresh, complete) + local spineAnim = self:getAnimation(self:playAnim(animName, loop, forceRefresh)) + local duration = spineAnim.Duration + local sequence = self:createBindTweenSequence() + sequence:AppendInterval(duration) + sequence:OnComplete(complete) + return duration +end + +function UISpineObject:findAnim(animName) + self:getAnimationState() + if self.animationState then + return self.animationState.Data.SkeletonData:FindAnimation(animName) + end +end + +function UISpineObject:hasAnim(animName) + return nil ~= self:findAnim(animName) +end + +function UISpineObject:getAnimation(trackEntry) + return trackEntry and trackEntry.Animation +end + +function UISpineObject:getAnimSpeed() + if self.skeletonGraphic then + return self.skeletonGraphic.timeScale + end +end + +function UISpineObject:setTimeScale(timeScale) + if self.skeletonGraphic then + self.skeletonGraphic.timeScale = timeScale + end +end + +function UISpineObject:setIsFreeze(value) + if self.skeletonGraphic then + self.skeletonGraphic.freeze = value + end +end + +function UISpineObject:setIsUnScaledTime(value) + if self.skeletonGraphic then + self.skeletonGraphic.unscaledTime = value + end +end + +function UISpineObject:clearTrack() + if self.animationState then + self.animationState:ClearTrack(0) + end +end + +function UISpineObject:addClickListener(func) + self._addTouchFlag = true + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener == nil then + eventListener = self:addComponent(BF_UI_TOUCH_EVENT) + end + self._touchEventCallback = func + eventListener:AddTouchEventListener(function(eventType, x, y) + self:_onClickEvent(eventType, x, y) + end) +end + +function UISpineObject:_onClickEvent(eventType, x, y) + if self._touchEventCallback and eventType == GConst.TOUCH_EVENT.UP_INSIDE then + self._touchEventCallback(eventType, x, y) + end +end + +function UISpineObject:setTouchEnable(enable) + local graphic = self:getSkeletonGraphic() + graphic.raycastTarget = enable +end + +function UISpineObject:getWidth() + local graphic = self:getSkeletonGraphic() + return graphic.SkeletonData.Width +end + +function UISpineObject:getHeight() + local graphic = self:getSkeletonGraphic() + return graphic.SkeletonData.Height +end + +function UISpineObject:setGrey(isGrey) + local component = self:getSkeletonGraphic() + GFunc.setGrey(component, isGrey) +end + +function UISpineObject:loadAssetSync(assetName) + local path = string.format(SPINE_ASSET_PATH, assetName, assetName) + if self.curAssetPath == path then + return + end + self:onLoadAsset() + self.curAssetPath = path + local spineAsset = ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET) + local skeletonGraphic = self:getSkeletonGraphic() + skeletonGraphic.skeletonDataAsset = spineAsset + skeletonGraphic:Initialize(true) +end + +function UISpineObject:loadAssetAsync(assetName, callback) + local path = string.format(SPINE_ASSET_PATH, assetName, assetName) + if self.curAssetPath == path and not self.loadingAsset then + return callback and callback() + end + self:onLoadAsset() + self.curAssetPath = path + self.loadingAsset = true + ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset) + self.loadingAsset = false + if self:isDestroyed() then + ResourceManager:unload(spineAssetPath) + return + end + if self.curAssetPath ~= spineAssetPath then + ResourceManager:unload(spineAssetPath) + return + end + local skeletonGraphic = self:getSkeletonGraphic() + skeletonGraphic.skeletonDataAsset = spineAsset + skeletonGraphic:Initialize(true) + if callback then + callback() + end + end) +end + +function UISpineObject:onLoadAsset() + if self.curAssetPath then + ResourceManager:unload(self.curAssetPath) + self.curAssetPath = nil + end + self:addUnloadCallback(function() + if self.curAssetPath then + ResourceManager:unload(self.curAssetPath) + self.curAssetPath = nil + end + end) +end + +function UISpineObject:addAnimationCompleteCallback(callback) + if self._animationStateCompleteCallback then + return + end + self._animationStateCompleteCallback = function(entry) + callback(entry.Animation.Name) + end + local state = self:getAnimationState() + if state then + state:Complete("+", self._animationStateCompleteCallback) + end +end + +function UISpineObject:removeAnimationCompleteCallback() + if self._animationStateCompleteCallback then + local state = self:getAnimationState() + if state then + state:Complete("-", self._animationStateCompleteCallback) + end + self._animationStateCompleteCallback = nil + end +end + +function UISpineObject:setTimeScale(timeScale) + if self.skeletonGraphic then + self.skeletonGraphic.timeScale = timeScale + end +end + +function UISpineObject:onDestroy() + self:removeAnimationCompleteCallback() + if self._addTouchFlag then + self._touchEventCallback = nil + end + BaseObject.onDestroy(self) + self.skeletonGraphic = nil + self.animationState = nil +end + +return UISpineObject \ No newline at end of file diff --git a/lua/app/bf/unity/ui_spine_object.lua.meta b/lua/app/bf/unity/ui_spine_object.lua.meta new file mode 100644 index 00000000..beed3d12 --- /dev/null +++ b/lua/app/bf/unity/ui_spine_object.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ead73859b84f6ed4a905ffa01dc33efc +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/uiprefab_object.lua b/lua/app/bf/unity/uiprefab_object.lua new file mode 100644 index 00000000..9510e231 --- /dev/null +++ b/lua/app/bf/unity/uiprefab_object.lua @@ -0,0 +1,843 @@ +---@type BaseObject +local BaseObject = require "app/bf/unity/base_object" +local EffectObject = require "app/bf/unity/effect_object" +local CharacterObject = require "app/bf/unity/character_object" +local UISpineObject = require "app/bf/unity/ui_spine_object" +local MeshSpineObject = require "app/bf/unity/mesh_spine_object" +---@class UIPrefabObject : BaseObject +local UIPrefabObject = class("UIPrefabObject", BaseObject) + +local BF_PREFAB_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_PREFAB_HELPER +local BF_UI_TOUCH_EVENT = GConst.TYPEOF_UNITY_CLASS.BF_UI_TOUCH_EVENT +local BF_UI_DRAG_EVENT = GConst.TYPEOF_UNITY_CLASS.BF_UI_DRAG_EVENT +local BF_UI_CELL_DRAG_EVNET = GConst.TYPEOF_UNITY_CLASS.BF_UI_CELL_DRAG_EVENT +local UI_MASKABLE_GRAPHIC = GConst.TYPEOF_UNITY_CLASS.UI_MASKABLE_GRAPHIC + +local LANGUAGE_ATLAS_PATH = "assets/arts/language/%s/sprites/%s/%s.asset" +local LANGUAGE_SPRITE_PATH = "assets/arts/language/%s/sprites/%s/%s.png" +local DELAULT_LONG_PRESS_TIME = 0.5 + +local Vector2 = BF.Vector2(0, 0) + +local Color4 = BF.Color(0, 0, 0, 0) + +local hash = GFunc.hash + +local CHILDMAP_METATABLE = { + __index = function(t, k) + if rawget(t, k) == nil then + local v = rawget(t, hash(k)) + if v then + rawset(t, k, v) + end + return v + end + return rawget(t, k) + end +} + +local function _createDefaultChildObject(self, index, gameObject) + local child = UIPrefabObject:create() + child:initWithPrefabHelper(self.prefabHelper, index, gameObject) + return child +end + +local function _createUIChildObject(self, index, gameObject) + local child = UIPrefabObject:create() + child:initWithPrefab(nil, gameObject) + child:initPrefabHelper() + return child +end + +local function _createEffectChildObject(self, index, gameObject) + local child = EffectObject:create() + child:initWithPrefab(nil, gameObject) + return child +end + +local function _createSpineUIChildObject(self, index, gameObject) + local child = UISpineObject:create() + child:initWithPrefab(nil, gameObject) + child:getAnimationState() + local skeletonGraphic = child:getSkeletonGraphic() + skeletonGraphic:Initialize(false) + skeletonGraphic.raycastTarget = false + return child +end + +local function _createSpineMeshChildObject(self, index, gameObject) + local child = MeshSpineObject:create() + child:initWithPrefab(nil, gameObject) + child:getAnimationState() + local skeletonAnimation = child:getSkeletonAnimation() + skeletonAnimation:Initialize(false) + return child +end + +local function _createCharacterChildObject(self, index, gameObject) + local child = CharacterObject:create() + child:initWithPrefab(nil, gameObject) + return child +end + +UIPrefabObject.createChildObject = { + [GConst.GAME_OBJECT_TYPE.DEFAULT] = _createDefaultChildObject, + [GConst.GAME_OBJECT_TYPE.UI_OBJECT] = _createUIChildObject, + [GConst.GAME_OBJECT_TYPE.EFFECT_OBJECT] = _createEffectChildObject, + [GConst.GAME_OBJECT_TYPE.MODEL_OBJECT] = _createDefaultChildObject, + [GConst.GAME_OBJECT_TYPE.CHARACTER_OBJECT] = _createCharacterChildObject, + [GConst.GAME_OBJECT_TYPE.TIMELINE_OBJECT] = _createDefaultChildObject, + [GConst.GAME_OBJECT_TYPE.SPINE_UI_OBJECT] = _createSpineUIChildObject, + [GConst.GAME_OBJECT_TYPE.SPINE_MESH_OBJECT] = _createSpineMeshChildObject, +} + +function UIPrefabObject:initWithPrefabHelper(prefabHelper, index, gameObject) + if self.prefabHelper == nil then + self.prefabHelper = prefabHelper + self.objectIndex = index + self.gameObject = gameObject + end +end + +function UIPrefabObject:initPrefabHelper() + if self.gameObject == nil then + return + end + self.prefabHelper = self.gameObject:GetComponent(BF_PREFAB_HELPER) + if self.prefabHelper then + self.objectIndex = self.prefabHelper:GetRootPrefabIndex() + end +end + +function UIPrefabObject:getPrefabHelper() + return self.prefabHelper +end + +function UIPrefabObject:genAllChildren(isRegenerate) + local childMap + if self.isGenChildren then + if isRegenerate then + childMap = {} + for k, child in ipairs(self.childList) do + local name = child:getName() + if name ~= "" and childMap[name] == nil then + childMap[name] = child + end + end + else + return self.childMap + end + else + self.isGenChildren = true + childMap = {} + if self.prefabHelper then + local childNum = self.prefabHelper:GetListCount() + for i = 0, childNum do + if i ~= self.objectIndex then + local gameObject = self.prefabHelper:GetGameObjectByIndex(i) + local objectType = self.prefabHelper:GetObjectTypeByIndex(i) + local hashName = self.prefabHelper:GetHashNameByIndex(i) + local func = self.createChildObject[objectType] or _createDefaultChildObject + local child = func(self, i, gameObject) + child:setName(hashName) + child:setAdmin(self) + if childMap[hashName] == nil then + childMap[hashName] = child + end + table.insert(self.childList, child) + end + end + end + end + setmetatable(childMap, CHILDMAP_METATABLE) + self.childMap = childMap + return childMap +end + +function UIPrefabObject:getChildrenMap() + return self.childMap +end + +function UIPrefabObject:getGameObject() + if self.gameObject == nil and self.objectIndex then + self.gameObject = self.prefabHelper:GetGameObjectByIndex(self.objectIndex) + end + return self.gameObject +end + +function UIPrefabObject:setAnchoredPositionX(x) + if self.prefabHelper then + self.prefabHelper:SetAnchoredPositionX(self.objectIndex, x) + else + BaseObject.setAnchoredPositionX(self, x) + end +end + +function UIPrefabObject:setAnchoredPositionY(y) + if self.prefabHelper then + self.prefabHelper:SetAnchoredPositionY(self.objectIndex, y) + else + BaseObject.setAnchoredPositionY(self, y) + end +end + +function UIPrefabObject:setAnchoredPosition(x, y) + if self.prefabHelper then + self.prefabHelper:SetAnchoredPosition(self.objectIndex, x, y) + else + BaseObject.setAnchoredPosition(self, x, y) + end +end + +function UIPrefabObject:fastGetAnchoredPosition() + if self.prefabHelper then + self.prefabHelper:CacheAnchoredPosition(self.objectIndex) + return self.prefabHelper.PositionX, self.prefabHelper.PositionY + else + local anchoredPosition = self:getTransform().anchoredPosition + return anchoredPosition.x, anchoredPosition.y + end +end + +function UIPrefabObject:getAnchoredPosition() + if self.prefabHelper then + return self.prefabHelper:GetAnchoredPosition(self.objectIndex) + else + return BaseObject.getAnchoredPosition(self) + end +end + +function UIPrefabObject:addAnchoredPosition(x, y) + if self.prefabHelper then + self.prefabHelper:AddAnchoredPosition(self.objectIndex, x, y) + else + BaseObject.addAnchoredPosition(self, x, y) + end +end + +function UIPrefabObject:setAnchorMin(x, y) + if self.prefabHelper then + self.prefabHelper:SetAnchorMin(self.objectIndex, x, y) + end +end + +function UIPrefabObject:setAnchorMax(x, y) + if self.prefabHelper then + self.prefabHelper:SetAnchorMax(self.objectIndex, x, y) + end +end + +function UIPrefabObject:setSizeDelta(x, y) + if self.prefabHelper then + self.prefabHelper:SetSizeDelta(self.objectIndex, x, y) + else + BaseObject.setSizeDelta(self, x, y) + end +end + +function UIPrefabObject:setSizeDeltaX(x) + if self.prefabHelper then + self.prefabHelper:SetSizeDeltaX(self.objectIndex, x) + else + BaseObject.setSizeDeltaX(self, x) + end +end + +function UIPrefabObject:setSizeDeltaY(y) + if self.prefabHelper then + self.prefabHelper:SetSizeDeltaY(self.objectIndex, y) + else + BaseObject.setSizeDeltaY(self, y) + end +end + +function UIPrefabObject:addSizeDelta(x, y) + if self.prefabHelper then + self.prefabHelper:AddSizeDelta(self.objectIndex, x, y) + else + BaseObject.addSizeDelta(self, x, y) + end +end + +function UIPrefabObject:getSizeDelta() + if self.prefabHelper then + return self.prefabHelper:GetSizeDelta(self.objectIndex) + else + return BaseObject.getSizeDelta(self) + end +end + +function UIPrefabObject:fastGetSizeDelta() + if self.prefabHelper then + self.prefabHelper:CacheSizeDelt(self.objectIndex) + return self.prefabHelper.PositionX, self.prefabHelper.PositionY + else + local sizeDelta = self:getSizeDelta() + return sizeDelta.x, sizeDelta.y + end +end + +function UIPrefabObject:setPosition(x, y, z) + if self.prefabHelper then + self.prefabHelper:SetPosition(self.objectIndex, x, y, z) + else + BaseObject.setPosition(self, x, y, z) + end +end + +function UIPrefabObject:addPosition(x, y, z) + if self.prefabHelper then + self.prefabHelper:AddPosition(self.objectIndex, x, y, z) + else + BaseObject.addPosition(self, x, y, z) + end +end + +function UIPrefabObject:setLocalPosition(x, y, z) + if self.prefabHelper then + self.prefabHelper:SetLocalPosition(self.objectIndex, x, y, z) + else + BaseObject.setLocalPosition(self, x, y, z) + end +end + +function UIPrefabObject:setLocalPositionX(x) + if self.prefabHelper then + self.prefabHelper:SetLocalPositionX(self.objectIndex, x) + else + BaseObject.setLocalPositionX(self, x) + end +end + +function UIPrefabObject:setLocalPositionY(y) + if self.prefabHelper then + self.prefabHelper:SetLocalPositionY(self.objectIndex, y) + else + BaseObject.setLocalPositionY(self, y) + end +end + +function UIPrefabObject:addLocalPosition(x, y, z) + if self.prefabHelper then + self.prefabHelper:AddLocalPosition(self.objectIndex, x, y, z) + else + BaseObject.addLocalPosition(self, x, y, z) + end +end + +function UIPrefabObject:fastGetLocalPosition() + if self.prefabHelper then + self.prefabHelper:CacheLocalPosition(self.objectIndex) + return self.prefabHelper.PositionX, self.prefabHelper.PositionY, self.prefabHelper.PositionZ + else + local position = self:getTransform().localPosition + return position.x, position.y, position.z + end +end + +function UIPrefabObject:getlocalRotationZ() + if self.prefabHelper then + return self.prefabHelper:GetlocalRotationZ(self.objectIndex) + else + return 0 + end +end + +function UIPrefabObject:setOffsetMin(x, y) + if self.prefabHelper then + self.prefabHelper:SetOffsetMin(self.objectIndex, x, y) + else + local transform = self:getTransform() + Vector2.x = x + Vector2.y = y + transform.offsetMin = Vector2 + end +end + +function UIPrefabObject:setOffsetMax(x, y) + if self.prefabHelper then + self.prefabHelper:SetOffsetMax(self.objectIndex, x, y) + else + local transform = self:getTransform() + Vector2.x = x + Vector2.y = y + transform.offsetMax = Vector2 + end +end + +function UIPrefabObject:setVisible(visible, scale) + if visible then + scale = scale or 1 + self:setLocalScale(scale, scale, scale) + else + self:setLocalScale(0, 0, 0) + end +end + +function UIPrefabObject:setLocalScale(x, y, z) + if self.prefabHelper then + self.prefabHelper:SetLocalScale(self.objectIndex, x, y, z) + else + BaseObject.setLocalScale(self, x, y, z) + end +end + +function UIPrefabObject:fastGetLocalScale() + if self.prefabHelper then + self.prefabHelper:CacheLocalScale(self.objectIndex) + return self.prefabHelper.PositionX, self.prefabHelper.PositionY, self.prefabHelper.PositionZ + else + local localScale = self:getTransform().localScale + return localScale.x, localScale.y, localScale.z + end +end + +function UIPrefabObject:addLocalScale(x, y, z) + if self.prefabHelper then + self.prefabHelper:AddLocalScale(self.objectIndex, x, y, z) + else + BaseObject.addLocalScale(self, x, y, z) + end +end + +function UIPrefabObject:setEulerAngles(x, y, z) + if self.prefabHelper then + self.prefabHelper:SetEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.setEulerAngles(self, x, y, z) + end +end + +function UIPrefabObject:addEulerAngles(x, y, z) + if self.prefabHelper then + self.prefabHelper:AddEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.addEulerAngles(self, x, y, z) + end +end + +function UIPrefabObject:setLocalEulerAngles(x, y, z) + if self.prefabHelper then + self.prefabHelper:SetLocalEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.setLocalEulerAngles(self, x, y, z) + end +end + +function UIPrefabObject:addLocalEulerAngles(x, y, z) + if self.prefabHelper then + self.prefabHelper:AddLocalEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.addLocalEulerAngles(self, x, y, z) + end +end + +--cell配合scrollrect使用监听滑动方向 +function UIPrefabObject:addCellDragListener(func, bindSlideType) + self._addTouchFlag = true + local eventListener = self:getComponent(BF_UI_CELL_DRAG_EVNET) + if eventListener == nil then + eventListener = self:addComponent(BF_UI_CELL_DRAG_EVNET) + end + self._touchEventCallback = func + eventListener:AddTouchEventListener(function(eventType, x, y) + self:_onCellDragEvent(eventType, x, y) + end, bindSlideType) +end + +function UIPrefabObject:_onCellDragEvent(eventType, x, y) + if self._touchEventCallback then + self._touchEventCallback(eventType, x, y) + end + self:_handleLongPressEvent(eventType, x, y) +end + +function UIPrefabObject:addDragListener(func) + self._addTouchFlag = true + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener == nil then + eventListener = self:addComponent(BF_UI_DRAG_EVENT) + end + self._touchEventCallback = func + eventListener:AddTouchEventListener(function(eventType, x, y) + self:_onDragEvent(eventType, x, y) + end) +end + +function UIPrefabObject:_onDragEvent(eventType, x, y) + if self._touchEventCallback then + self._touchEventCallback(eventType, x, y) + end + self:_handleLongPressEvent(eventType, x, y) +end + +function UIPrefabObject:addTouchListener(func) + self._addTouchFlag = true + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener == nil then + eventListener = self:addComponent(BF_UI_TOUCH_EVENT) + end + self._touchEventCallback = func + eventListener:AddTouchEventListener(function(eventType, x, y) + self:_onTouchEvent(eventType, x, y) + end) +end + +function UIPrefabObject:_onTouchEvent(eventType, x, y) + if self._touchEventCallback then + self._touchEventCallback(eventType, x, y) + end + self:_handleLongPressEvent(eventType, x, y) +end + +function UIPrefabObject:addClickListener(func, clickSound) + self._addTouchFlag = true + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener == nil then + eventListener = self:addComponent(BF_UI_TOUCH_EVENT) + end + self._touchEventCallback = func + eventListener:AddTouchEventListener(function(eventType, x, y) + self:_onClickEvent(eventType, x, y, clickSound) + end) +end + +function UIPrefabObject:_onClickEvent(eventType, x, y, clickSound) + if self._touchEventCallback and eventType == GConst.TOUCH_EVENT.UP_INSIDE then + if self.isShowClickAnimation == nil then + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener then + self.isShowClickAnimation = eventListener:GetShowClickAnimation() + end + end + if self.isShowClickAnimation then + clickSound = clickSound or GConst.CLICK_SOUND.NORMAL + local audioPath = AudioManager.CLICK_ID[clickSound] + if audioPath then + AudioManager:playEffect(audioPath) + end + end + self._touchEventCallback(eventType, x, y) + end + self:_handleLongPressEvent(eventType, x, y) +end + +function UIPrefabObject:addLongPressListener(func, time) + self._addTouchFlag = true + self._longPressTime = time or DELAULT_LONG_PRESS_TIME + self._longPressCallback = func + if self._touchEventCallback == nil then + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener == nil then + eventListener = self:addComponent(BF_UI_TOUCH_EVENT) + end + eventListener:AddTouchEventListener(function(eventType, x, y) + self:_onTouchEvent(eventType, x, y) + end) + end +end + +function UIPrefabObject:_handleLongPressEvent(eventType, x, y) + if self._longPressCallback then + if eventType == GConst.TOUCH_EVENT.DOWN then + if self._longPressSchedulerId then + self:unscheduleGlobal(self._longPressSchedulerId) + end + self._longPressSchedulerId = self:performWithDelayGlobal(function() + self._longPressSchedulerId = nil + if self._longPressCallback then + self._longPressCallback() + end + end, self._longPressTime) + elseif eventType ~= GConst.TOUCH_EVENT.DRAG then + if self._longPressSchedulerId then + self:unscheduleGlobal(self._longPressSchedulerId) + self._longPressSchedulerId = nil + end + end + end +end + +function UIPrefabObject:removeTouchListener() + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener then + eventListener:RemoveEventListener() + end + self._addTouchFlag = false + + self._longPressTime = nil + self._longPressCallback = nil +end + +function UIPrefabObject:removeClickListener() + self:removeTouchListener() +end + +function UIPrefabObject:checkHrefLink(x, y) + local uiCamera = UIManager:getUICameraComponent() + local textCom = self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + local hrefId = CS.TMPro.TMP_TextUtilities.FindIntersectingLink(textCom, CS.UnityEngine.Vector3(x, y, 0), uiCamera) + return hrefId +end + +function UIPrefabObject:setClickAnimation(enable) + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener then + self.isShowClickAnimation = enable + eventListener:SetShowClickAnimation(enable) + end +end + +function UIPrefabObject:setTouchEnable(enable) + local maskableGraphic = self:getComponent(UI_MASKABLE_GRAPHIC) + if maskableGraphic then + maskableGraphic.raycastTarget = enable + end + local eventListener = self:getComponent(BF_UI_TOUCH_EVENT) + if eventListener then + eventListener:SetTouchEnable(enable) + end +end + +function UIPrefabObject:setLanguageSprite(atlasName, spriteName, callback, com) + if string.isEmptyOrNil(atlasName) then + Logger.logError("atlasName 为空!!") + return + end + local languageName = I18N:getCurLanguage() + local name = spriteName .. "_" .. languageName + local path, _ = string.gsub(atlasName, "/atlas/", "/textures/") + local spritePath = string.sub(path, 1, -7) .. "/" .. name .. ".png" + if not ResourceManager:containsAsset(spritePath) then + languageName = I18N:getFallbackLanguage() + name = spriteName .. "_" .. languageName + spritePath = string.sub(path, 1, -7) .. "/" .. name .. ".png" + if not ResourceManager:containsAsset(spritePath) then + Logger.logError("fallback language " .. languageName .. " 不包含 " .. spritePath) + return + end + end + self:setSprite(atlasName, name, callback, com) +end + +function UIPrefabObject:setSprite(atlasPath, spriteName, callback, com) + self:setSpriteHash(atlasPath, hash(spriteName), callback, com) +end + +function UIPrefabObject:setSpriteHash(atlasPath, spriteHashName, callback, com) + com = com or self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE) or self:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + if not com then + return + end + if not self.resMap then + self.resMap = {} + end + if not self.resMap[atlasPath] then + TextureManager:loadAtlas(self, atlasPath, function(path, assets) + if self.resMap[atlasPath] then + TextureManager:unloadAtlas(atlasPath) + else + self.resMap[atlasPath] = assets + end + local sprite = assets:GetSprite(spriteHashName) + if sprite then + com.sprite = sprite + else + com.sprite = nil + Logger.logError("图集%s丢失精灵", atlasPath) + end + + if callback then + callback(com) + end + end) + else + local sprite = self.resMap[atlasPath]:GetSprite(spriteHashName) + if sprite then + com.sprite = sprite + if callback then + callback(com) + end + else + com.sprite = nil + Logger.logError("图集%s丢失精灵", atlasPath) + end + end +end + +function UIPrefabObject:setTexture(texturePath, callback) + local rawImage = self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_RAW_IMAGE) + if not rawImage then + return + end + + if not self.resMap then + self.resMap = {} + end + + if self.resMap[texturePath] then + rawImage.texture = self.resMap[texturePath] + if callback then + callback(rawImage) + end + else + TextureManager:loadTextureAsync(self, texturePath,function (assetsPath, texture) + if self.resMap[assetsPath] then + TextureManager:unLoadTexture(texturePath) + else + self.resMap[assetsPath] = texture + end + rawImage.texture = texture + if callback then + callback(rawImage) + end + end) + end +end + +function UIPrefabObject:setText(value, component) + --其他textcompnent在外部获取 + component = component or self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + + if component then + component.text = value + else + Logger.logWarning("can't find text component!") + end +end + +function UIPrefabObject:addRedPoint(offsetX, offsetY, scale, iconName, count, native) + if not self.redPoint then + if not self.loadRpOver then + self.loadRpOver = true + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/red_point_cell.prefab", self, function(prefabObject) + ---@type UIPrefabObject + self.redPoint = prefabObject + prefabObject:initPrefabHelper() + local uiMap = prefabObject:genAllChildren() + self.redPoint:setAnchoredPosition(offsetX or 0, offsetY or 0) + self.redPoint:setLocalScale(scale, scale, scale) + iconName = iconName or "common_point" + self.redPoint:setSprite(GConst.ATLAS_PATH.COMMON, iconName) + GFunc.getShakeSeq(self.redPoint, false, scale, true) + if native then + self.redPoint:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE):SetNativeSize() + end + self.redPointCountTx = uiMap["red_point_cell.count_tx"] + if count then + self.redPointCountTx:setText(count) + else + self.redPointCountTx:setText("") + end + end) + end + else + iconName = iconName or "common_point" + self.redPoint:setSprite(GConst.ATLAS_PATH.COMMON, iconName) + self.redPoint:setAnchoredPosition(offsetX or 0, offsetY or 0) + self.redPoint:setActive(true) + if native then + self.redPoint:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE):SetNativeSize() + end + + if self.redPointCountTx then + if count then + self.redPointCountTx:setText(count) + else + self.redPointCountTx:setText("") + end + end + end +end + +function UIPrefabObject:removeRedPoint() + if self.redPoint then + self.redPoint:setActive(false) + end +end + +function UIPrefabObject:addAdPoint(offsetX, offsetY, scale) + if not self.adPoint then + if not self.loadAdOver then + self.loadAdOver = true + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/ad_point_cell.prefab", self, function(prefabObject) + self.adPoint = prefabObject + prefabObject:initPrefabHelper() + self.adPoint:setAnchoredPosition(offsetX or 0, offsetY or 0) + GFunc.setAdsSprite(self.adPoint) + self.adPoint:setLocalScale(scale, scale, scale) + end) + end + else + GFunc.setAdsSprite(self.adPoint) + self.adPoint:setAnchoredPosition(offsetX or 0, offsetY or 0) + self.adPoint:setActive(true) + end +end + +function UIPrefabObject:removeAdPoint() + if self.adPoint then + self.adPoint:setActive(false) + end +end + +function UIPrefabObject:setGraphicFlip(horizontal, vertical) + local component = self:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_GRAPHIC_FLIP) + if component then + component.horizontal = horizontal or false + component.vertical = vertical or false + else + Logger.logWarning("can't find BF_GRAPHIC_FLIP component!") + end +end + +function UIPrefabObject:onDestroy() + if self.resMap then + for assetPath, _ in pairs(self.resMap) do + ResourceManager:unload(assetPath) + end + self.resMap = nil + end + if self._addTouchFlag then + self._touchEventCallback = nil + self._longPressCallback = nil + if self._longPressSchedulerId then + self:unscheduleGlobal(self._longPressSchedulerId) + self._longPressSchedulerId = nil + end + end + self.redPoint = nil + self.loadRpOver = nil + self.prefabHelper = nil + BaseObject.onDestroy(self) + self.childMap = nil +end + +function UIPrefabObject:setImageGray(grey) + local com = self:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE) + if not com then + return + end + Color4.r = 1 + if grey then + Color4.g = 0 + self:setTouchEnable(false) + else + Color4.g = 1 + self:setTouchEnable(true) + end + Color4.b = 1 + Color4.a = 1 + com.color = Color4 + return true +end + +function UIPrefabObject:setScrollRectCellName(nameIndex) + if self.prefabHelper then + self.prefabHelper:SetScrollRectCellName(self.objectIndex, nameIndex) + else + BaseObject.setScrollRectCellName(self, nameIndex) + end +end + +return UIPrefabObject \ No newline at end of file diff --git a/lua/app/bf/unity/uiprefab_object.lua.meta b/lua/app/bf/unity/uiprefab_object.lua.meta new file mode 100644 index 00000000..e3699330 --- /dev/null +++ b/lua/app/bf/unity/uiprefab_object.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 250398d0feaa4c4429f85d8210747412 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/unity.lua b/lua/app/bf/unity/unity.lua new file mode 100644 index 00000000..ed7c0677 --- /dev/null +++ b/lua/app/bf/unity/unity.lua @@ -0,0 +1,62 @@ +BF = BF or {} + +BF.Vector3 = function(x, y, z) + return {x = x, y = y, z = z} +end + +BF.Vector4 = function(x, y, z, w) + return {x = x, y = y, z = z, w = w} +end + +BF.Vector2 = function(x, y) + return {x = x, y = y} +end + +BF.Vector2Zero = CS.UnityEngine.Vector2(0, 0) +BF.Vector3Zero = CS.UnityEngine.Vector3(0, 0, 0) +BF.Vector3Right = CS.UnityEngine.Vector3(1, 0, 0) +BF.Vector3Up = CS.UnityEngine.Vector3(0, 1, 0) +BF.Vector3Forward = CS.UnityEngine.Vector3(0, 0, 1) + +BF.Color = function(r, g, b, a) + return {r = r, g = g, b = b, a = a} +end + +BF.ColorWhite = CS.UnityEngine.Color(1, 1, 1, 1) +BF.ColorPurple = CS.UnityEngine.Color(1, 0, 1, 1) +BF.ColorWhiteAlpha = CS.UnityEngine.Color(1, 1, 1, 0) +BF.ColorBlack = CS.UnityEngine.Color(0, 0, 0, 1) +BF.ColorBlackAlpha = CS.UnityEngine.Color(0, 0, 0, 0) + + +BF.Vector2Cross = function (l, r) + return l.x * r.y - l.y * r.x +end + +BF.Vector2Dot = function (l, r) + return l.x * r.x + l.y * r.y +end + +BF.Vector2Magnitude = function(v) + return math.sqrt(v.x * v.x + v.y * v.y) +end + +BF.Vector2Normalize = function (v) + local normal = BF.Vector2(0, 0) + local m = BF.Vector2Magnitude(v) + if m~=0 then + normal.x = v.x/m + normal.y = v.y/m + end + return normal +end + +BF.Vector2Distance = function (v1, v2) + local deltax = v2.x - v1.x + local deltay = v2.y - v1.y + return math.sqrt(deltax*deltax + deltay*deltay) +end + +BF.Vector3Magnitude = function(v) + return math.sqrt(v.x * v.x + v.y * v.y + v.z * v.z) +end \ No newline at end of file diff --git a/lua/app/bf/unity/unity.lua.meta b/lua/app/bf/unity/unity.lua.meta new file mode 100644 index 00000000..1260553f --- /dev/null +++ b/lua/app/bf/unity/unity.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 449df0d989bcd834c80d49b097189916 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/bf/unity/weapon_object.lua b/lua/app/bf/unity/weapon_object.lua new file mode 100644 index 00000000..0e05fe67 --- /dev/null +++ b/lua/app/bf/unity/weapon_object.lua @@ -0,0 +1,338 @@ +local CharacterFSMManager = require "app/module/character_fsm/character_fsm_manager" +local BaseObject = require "app/bf/unity/base_object" +local WeaponObject = class("WeaponObject", BaseObject) + +local BF_WEAPON_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_WEAPON_HELPER +local ANIMATOR = GConst.TYPEOF_UNITY_CLASS.ANIMATOR +local ANIMATION_FRAME_PER_SECOND = 30 + +local SUPPORT_SHADER = { + ["BF/Models/Character Battle"] = true, +} + +local hash = GFunc.hash + +local HashName = {} +local function getHashName(str) + local intName = HashName[str] + if intName == nil then + intName = hash(str) + HashName[str] = intName + end + return intName +end + +local CHILDMAP_METATABLE = { + __index = function(t, k) + if rawget(t, k) == nil then + local v = rawget(t, hash(k)) + if v then + rawset(t, k, v) + end + return v + end + return rawget(t, k) + end +} + +local Vector3 = BF.Vector3(0, 0, 0) + +local abs = math.abs + +function WeaponObject:ctor() + self.timeScale = 1 +end + +function WeaponObject:initWithPrefab(assetPath, prefab) + BaseObject.initWithPrefab(self, assetPath, prefab) + self.characterHelper = self:getComponent(BF_WEAPON_HELPER) + if self.characterHelper == nil then + self.characterHelper = self:addComponent(BF_WEAPON_HELPER) + end + self.mainModel = self.characterHelper:GetModelObject() + self.objectIndex = -1 + self:_genAllBones() +end + +function WeaponObject:initWithCharacterHelper(characterHelper, index, gameObject, name, admin) + self.characterHelper = characterHelper + self.objectIndex = index + self.gameObject = gameObject + self.name = name + self.admin = admin +end + +function WeaponObject:_genAllBones() + local childMap = {} + if self.characterHelper then + local childNum = self.characterHelper:GetListCount() + for i = 0, childNum do + local gameObject = self.characterHelper:GetGameObjectByIndex(i) + local hashName = self.characterHelper:GetHashNameByIndex(i) + local child = WeaponObject:create() + child:initWithCharacterHelper(self.characterHelper, i, gameObject, hashName, self) + if childMap[hashName] == nil then + childMap[hashName] = child + end + table.insert(self.childList, child) + end + end + setmetatable(childMap, CHILDMAP_METATABLE) + self.childMap = childMap +end + +function WeaponObject:getBoneByName(name) + return self.childMap[name] +end + +function WeaponObject:fastGetPosition() + if self.characterHelper then + self.characterHelper:CachePosition(self.objectIndex) + return self.characterHelper.PositionX, self.characterHelper.PositionY, self.characterHelper.PositionZ + else + local position = self:getTransform().position + return position.x, position.y, position.z + end +end + +function WeaponObject:getBonePositionByName(name) + return self.childMap[name]:fastGetPosition() +end + +function WeaponObject:getHashCode() + local code = -1 + if self.characterHelper then + code = self.characterHelper:GetModelHashCode() + end + return code +end + +function WeaponObject:play(name, layer, normalizedTime) + layer = layer or -1 + normalizedTime = normalizedTime or 0 + if self.mainAnimator == nil then + if self.mainModel then + self.mainAnimator = self.mainModel:GetComponent(ANIMATOR) + self.mainAnimator:Play(name, layer, normalizedTime) + end + else + self.mainAnimator:Play(name, layer, normalizedTime) + end +end + +function WeaponObject:playHashName(hashName, layer, normalizedTime) + layer = layer or -1 + normalizedTime = normalizedTime or 0 + if self.mainAnimator == nil then + if self.mainModel then + self.mainAnimator = self.mainModel:GetComponent(ANIMATOR) + self.mainAnimator:Play(hashName, layer, normalizedTime) + end + else + self.mainAnimator:Play(hashName, layer, normalizedTime) + end +end + +function WeaponObject:setAnimatorBool(key, value) + if self.mainAnimator == nil then + if self.mainModel then + self.mainAnimator = self.mainModel:GetComponent(ANIMATOR) + self.mainAnimator:SetBool(key, value) + end + else + self.mainAnimator:SetBool(key, value) + end +end + +function WeaponObject:getMainAnimator() + if self.mainAnimator == nil then + if self.mainModel then + self.mainAnimator = self.mainModel:GetComponent(ANIMATOR) + end + end + return self.mainAnimator +end + +function WeaponObject:getMainModelTransform() + if self.mainModelTransform == nil then + self.mainModelTransform = self.mainModel and self.mainModel.transform or nil + end + return self.mainModelTransform +end + +function WeaponObject:getMainModel() + return self.mainModel +end + +function WeaponObject:getCurrentAnimationHash() + return CS.BF.Utils.GetCurrentAnimationHash(self:getMainAnimator()) +end + +function WeaponObject:setMainModelLocalScale(x, y, z) + local transform = self:getMainModelTransform() + if transform then + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.localScale = Vector3 + end +end + +function WeaponObject:setMainModelLocalPosition(x, y, z) + if self.characterHelper then + self.characterHelper:SetMainModelLocalPosition(x, y, z) + else + local transform = self:getMainModelTransform() + if transform then + Vector3.x = x + Vector3.y = y + Vector3.z = z + transform.localPosition = Vector3 + end + end +end + +function WeaponObject:getStateTime(name) + local hashName = getHashName(name) + return self.characterHelper:GetStateTime(hashName) +end + +function WeaponObject:getStateTimeHash(hashName) + return self.characterHelper:GetStateTime(hashName) +end + +function WeaponObject:getStateKeyTime(name, index) + local hashName = getHashName(name) + local keyTime = self.characterHelper:GetStateKeyFrame(hashName, index) or 0 + return keyTime/ANIMATION_FRAME_PER_SECOND +end + +function WeaponObject:containsState(name) + return self:getStateTime(name) > 0.00001 +end + +function WeaponObject:setTimeScale(timeScale) + if abs(self.timeScale - timeScale) < 0.00001 then + return + end + self.timeScale = timeScale + local mainAnimator = self:getMainAnimator() + mainAnimator.speed = timeScale*(self.timeScaleAddition or 1) +end + +function WeaponObject:setTimeScaleAddition(addition) + self.timeScaleAddition = addition + local timeScale = self.timeScale*addition + local mainAnimator = self:getMainAnimator() + mainAnimator.speed = timeScale +end + +function WeaponObject:setCullingMode(cullingMode) + local mainAnimator = self:getMainAnimator() + if mainAnimator then + mainAnimator.cullingMode = cullingMode + end +end + +function WeaponObject:getCharacterMaterials() + if not self.characterMaterials then + self.characterMaterials = {} + for k, prefabObj in pairs(self.childMap) do + local render = prefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.SKINNED_MESH_RENDERER) + if not CS.BF.Utils.IsNull(render) and not CS.BF.Utils.IsNull(render.material) and SUPPORT_SHADER[render.material.shader.name] then + table.insert(self.characterMaterials, render.material) + end + end + end + return self.characterMaterials +end + +function WeaponObject:getCharacterMeshRenderer() + if not self.characterMeshRenders then + self.characterMeshRenders = {} + for k, prefabObj in pairs(self.childMap) do + local render = prefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.SKINNED_MESH_RENDERER) + if not CS.BF.Utils.IsNull(render) and not CS.BF.Utils.IsNull(render.material) and SUPPORT_SHADER[render.material.shader.name] then + table.insert(self.characterMeshRenders, render) + end + end + end + return self.characterMeshRenders +end + +function WeaponObject:getMaterialPropertyBlock() + if not self.mpb then + self.mpb = CS.UnityEngine.MaterialPropertyBlock() + end + return self.mpb +end + +function WeaponObject:setCustomShadowEnable(enabled) + local materials = self:getCharacterMaterials() + for _, material in ipairs(materials) do + material:SetShaderPassEnabled("Always", enabled) + end +end + +function WeaponObject:setCharacterFSM(fsm) + self.fsm = fsm +end + +function WeaponObject:setShadowColor(color) + local renderers = self:getCharacterMeshRenderer() + local mpBlock = self:getMaterialPropertyBlock() + for i, renderer in ipairs(renderers) do + renderer:GetPropertyBlock(mpBlock) + mpBlock:SetColor("_shadow_color", color) + renderer:SetPropertyBlock(mpBlock) + end +end + +function WeaponObject:setLocalEulerAngles(x, y, z) + if self.characterHelper then + self.characterHelper:SetLocalEulerAngles(self.objectIndex, x, y, z) + else + BaseObject.setLocalEulerAngles(self, x, y, z) + end +end + +function WeaponObject:setLocalPosition(x, y, z) + if self.characterHelper then + self.characterHelper:SetLocalPosition(self.objectIndex, x, y, z) + else + BaseObject.setLocalPosition(self, x, y, z) + end +end + +function WeaponObject:setPosition(x, y, z) + if self.characterHelper then + self.characterHelper:SetPosition(self.objectIndex, x, y, z) + else + BaseObject.setPosition(self, x, y, z) + end +end + +function WeaponObject:setLocalScale(x, y, z) + if self.characterHelper then + self.characterHelper:SetLocalScale(self.objectIndex, x, y, z) + else + BaseObject.setLocalScale(self, x, y, z) + end +end + +function WeaponObject:onDestroy() + if self.fsm then + CharacterFSMManager:stopFSM(self.fsm) + self.fsm = nil + end + BaseObject.onDestroy(self) + self.characterHelper = nil + self.mainModel = nil + self.mainAnimator = nil + self.childMap = nil + self.characterMaterials = nil + self.characterMeshRenders = nil + self.mpb = nil +end + +return WeaponObject \ No newline at end of file diff --git a/lua/app/bf/unity/weapon_object.lua.meta b/lua/app/bf/unity/weapon_object.lua.meta new file mode 100644 index 00000000..aa3ef2bf --- /dev/null +++ b/lua/app/bf/unity/weapon_object.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 70c3ad6fb587edf4994e34a7a27d7287 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/common.meta b/lua/app/common.meta new file mode 100644 index 00000000..41f9f381 --- /dev/null +++ b/lua/app/common.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e289b1795b0dd04db87ebbc68ebc485 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/audio_manager.lua b/lua/app/common/audio_manager.lua new file mode 100644 index 00000000..ef6800a7 --- /dev/null +++ b/lua/app/common/audio_manager.lua @@ -0,0 +1,255 @@ +local AudioManager = {} + +local BGM_VOLUME = 0.5 +local MAX_EFFECT_NUM = 30 + +local AUDIO_CLIP = typeof(CS.UnityEngine.AudioClip) + +AudioManager.BGM_ID = { + MAINCITY = "assets/arts/sounds/music/bgm_main.wav", +} + +AudioManager.CLICK_ID = { + [1] = "assets/arts/sounds/sfx/ui/ui_button.wav", +} + +AudioManager.EFFECT_ID = { + BUTTON = "assets/arts/sounds/sfx/ui/ui_button.wav", + REWARD = "assets/arts/sounds/sfx/ui/sfx_reward.wav", + SFX_TOAST = "assets/arts/sounds/sfx/ui/sfx_toast.wav", + SFX_SUMMON = "assets/arts/sounds/sfx/ui/sfx_summon.wav", + SFX_ITEM_9 = "assets/arts/sounds/sfx/ui/sfx_item_9.wav", + SFX_ITEM_10 = "assets/arts/sounds/sfx/ui/sfx_item_10.wav", + SFX_ITEM_11 = "assets/arts/sounds/sfx/ui/sfx_item_11.wav", + SFX_UPGRADE = "assets/arts/sounds/sfx/ui/sfx_upgrade.wav", + SFX_TRAIN = "assets/arts/sounds/sfx/ui/sfx_train.wav", +} + +AudioManager.EFFECT_PREFIX = "assets/arts/sounds/sfx/ui/%s.wav" + +function AudioManager:init() + self.musicEnabled = nil + self.effectEnabled = nil + self.musicVolume = 1 + self.effectVolume = 1 + self:setMusicVolume(LocalData:getAudioMusicVolume()) + self:setEffectVolume(LocalData:getAudioEffectVolume()) + + self.audioSourcePool = {} + self.bgmAudioSource = nil + self.currentMusic = nil +end + +function AudioManager:playMusic(audioPath, isLoop) + if audioPath == nil or audioPath == "" then + return + end + if not self.musicEnabled then + self.disableMusic = audioPath + self.disableMusicIsLoop = isLoop + return + end + if self.currentMusic == audioPath then + local as = self:getMusicSource() + if self.currentMusicIsLoop ~= isLoop then + if isLoop == nil then + as.loop = true + else + as.loop = isLoop + end + end + else + self.currentMusic = audioPath + self.currentMusicIsLoop = isLoop + if self.musicPath then + ResourceManager:unload(self.musicPath) + self.musicPath = nil + end + ResourceManager:loadOriginAssetAsync(audioPath, AUDIO_CLIP, function(path, audioClip) + if path == self.currentMusic then + self.musicPath = path + local as = self:getMusicSource() + as.clip = audioClip + if isLoop == nil then + isLoop = true + end + as.loop = isLoop + as:Play() + else + ResourceManager:unload(path) + end + end) + end +end + +function AudioManager:stopMusicById(id, isClear) + if self.currentMusic == id then + self:stopMusic(isClear) + end +end + +function AudioManager:stopMusic(isClear) + local bgmAudioSource = self:getMusicSource() + if bgmAudioSource then + bgmAudioSource:Stop() + if isClear then + bgmAudioSource.clip = nil + if self.musicPath then + ResourceManager:unload(self.musicPath) + self.musicPath = nil + end + self.currentMusic = nil + end + end +end + +function AudioManager:pauseMusic() + local bgmAudioSource = self:getMusicSource() + if bgmAudioSource then + bgmAudioSource:Pause() + end +end + +function AudioManager:resumeMusic() + local bgmAudioSource = self:getMusicSource() + if bgmAudioSource then + bgmAudioSource:UnPause() + end +end + +function AudioManager:getAudioSourceFromPool(path) + local audioObj + for i, v in ipairs(self.audioSourcePool) do + if not v.audioSource.isPlaying then + audioObj = v + if v.path and v.path ~= path then + ResourceManager:unload(v.path) + v.path = path + end + break + end + end + if not audioObj and #self.audioSourcePool < MAX_EFFECT_NUM then + local audioSource = CS.BF.BFMain.Instance.SoundManager:addEffectAudioSource() + audioObj = { + path = path, + audioSource = audioSource + } + table.insert(self.audioSourcePool, audioObj) + end + return audioObj +end + +function AudioManager:getMusicSource() + if not self.bgmAudioSource then + self.bgmAudioSource = CS.BF.BFMain.Instance.SoundManager:getMusicAudioSource() + end + + self.bgmAudioSource.volume = self.musicVolume + return self.bgmAudioSource +end + +function AudioManager:playEffect(audioPath, volume) + if audioPath == nil or audioPath == "" then + return + end + if not self.effectEnabled then + return + end + if volume then + volume = volume*self.effectVolume + else + volume = self.effectVolume + end + + ResourceManager:loadOriginAssetAsync(audioPath, AUDIO_CLIP, function(path, audioClip) + if audioClip then + local asObj = self:getAudioSourceFromPool(path) + if asObj then + local audioSource = asObj.audioSource + audioSource.clip = audioClip + audioSource.loop = false + audioSource.volume = volume + audioSource:Play() + end + end + end) +end + +function AudioManager:stopEffect(path) + for i, v in ipairs(self.audioSourcePool) do + if v.path and v.path == path then + v.audioSource:Stop() + end + end +end + +function AudioManager:isMusicEnabled() + return self.musicEnabled +end + +function AudioManager:isEffectEnabled() + return self.effectEnabled +end + +function AudioManager:setMusicVolume(value) + self.musicVolume = value or 1 + LocalData:setAudioMusicVolume(self.musicVolume) + self.musicEnabled = self.musicVolume > 0 + + if self.musicEnabled then + self:getMusicSource() + if self.disableMusic and self.disableMusic ~= "" then + self:playMusic(self.disableMusic, self.disableMusicIsLoop) + end + else + if self.currentMusic and self.currentMusic ~= "" then + self.disableMusic = self.currentMusic + self.disableMusicIsLoop = self.currentMusicIsLoop + end + self:stopMusic(true) + end +end + +function AudioManager:getMusicVolume() + return self.musicVolume +end + +function AudioManager:setEffectVolume(value) + self.effectVolume = value or 1 + LocalData:setAudioEffectVolume(self.effectVolume) + self.effectEnabled = self.effectVolume > 0 + + if not self.effectEnabled then + self:stopAndClearAudioFx() + end +end + +function AudioManager:getEffectVolume() + return self.effectVolume +end + +function AudioManager:stopAndClearAudioFx() + if self.audioSourcePool then + for i, v in ipairs(self.audioSourcePool) do + v.audioSource:Stop() + if v.audioSource.clip then + v.audioSource.clip = nil + if v.path then + ResourceManager:unload(v.path) + v.path = nil + end + end + end + end +end + +function AudioManager:clear() + self:stopMusic(true) + self:stopAndClearAudioFx() + self.bgmAudioSource = nil + self.audioSourcePool = nil + CS.BF.BFMain.Instance.SoundManager:clearAudioSource() +end + +return AudioManager \ No newline at end of file diff --git a/lua/app/common/audio_manager.lua.meta b/lua/app/common/audio_manager.lua.meta new file mode 100644 index 00000000..22172f86 --- /dev/null +++ b/lua/app/common/audio_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 221836402f4fd974c8ae11d1029dc2fb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/bi_report.lua b/lua/app/common/bi_report.lua new file mode 100644 index 00000000..461aff4d --- /dev/null +++ b/lua/app/common/bi_report.lua @@ -0,0 +1,1414 @@ +local BIReport = {} + +-- 客户端的所有的上报事件都要加"client_"前缀 +local EVENT_NAME_TUTORIAL = "client_tutorial" +local EVENT_NAME_LUA_CRASH = "client_lua_crash" +local EVENT_NAME_OPEN_UI = "client_open_ui" + +-- BIReport.FIREBASE_UI_TYPE = { +-- SHOP = "Shop", +-- BUY_VIT = "BuyVit", +-- QUICK_HANG_UP = "QuickHangUp", +-- SUPER_TURNTABLE = "SuperTurntable", +-- DAILY_GIFT = "DailyGift", +-- NEW_WISH_GIFT = "NewWishGift", +-- NEW_PLAYER_GIFT = "NewPlayerGift", +-- BALLTE_JEWELRY_SELECT_BUFF = "BallteJewelrySelectBuff", +-- BALLTE_RESURRECTION = "BallteResurrection", +-- BALLTE_SELECT_BUFF = "BallteSelectBuff", +-- } + +-- BIReport.FIGHT_END_TYPE = { +-- WIN = "Win", +-- FAIL = "Fail", +-- QUIT = "Quit", +-- } +-- BIReport.FIGHT_DEATH_TYPE = { +-- SURVIVE = "Survive", +-- ELITE_FAIL = "EliteFail", +-- BOSS_FAIL = "BossFail", +-- NORMAL_FAIL = "NormalFail", +-- } + +-- BIReport.SKILL_REFRESH_TYPE = { +-- FREE = "Free", +-- ADS = "Ads", +-- GEM = "Gem", +-- } + +-- 所有需要上报的按钮点击事件 +BIReport.CLICK_BTN_TYPE = { + EQUIP = "Equip", + DUNGEON = "Dungeon", + TRAIN = "Train", + MALL = "Mall", + SHOP = "Shop", +} + +BIReport.ADS_OPT_TYPE = { + CLICK = "Click", + SUC = "Scu", + RETURN = "Return", +} + +BIReport.PAY_OPT_TYPE = { + POP = "Pop", + CLICK = "Click", + BUY = "Buy", + REWARD = "Reward", + CANCEL = "Cancel", + FAILED = "Failed", + INIT_SUC = "InitSuc", + INIT_FAILED = "InitFailed", +} + +BIReport.EQUIP_OPT_TYPE = { + EQUIP_GET = "EquipGet", + EQUIP_LV_UP = "EquipLvUp", + EQUIP_WEAR = "EquipWear", + LEGACY_GET = "LegacyGet", + LEGACY_LV_UP = "LegacyLvUp", + LEGACY_WEAR = "LegacyWear", + LEGACY_REMOVE = "LegacyRemove", +} + +BIReport.BATTLE_PASS_OPT_TYPE = { + OPEN = "Open", + TASK_CLAIM = "TaskClaim", + REWARD_CLAIM = "RewardClaim", + EXP_GET = "ExpGet", +} + +BIReport.ACCOUNT_OPT_TYPE = { + LOGIN_CLICK = "LoginClick", + LOGIN_FINISH = "LoginFinish", + LOGIN_FAILED = "LoginFailed", + BIND_CLICK = "BindClick", + BIND_FINISH = "BindFinish", +} + +BIReport.TASK_OPT_TYPE = { + FINISH = "Finish", + REWARD = "Reward", +} + +BIReport.MAIL_OPT_TYPE = { + OPEN = "Open", + CLAIM = "Claim", +} + +BIReport.TRAIN_OPT_TYPE = { + TRAIN = "Train", + REBORN = "Reborn", + QUICK_PASS = "QuickPass", + QUICK_PASS_UP = "QuickPassUp", +} + +BIReport.CHAPTER_OPT_TYPE = { + PASS = "Pass", +} + +BIReport.RUNE_OPT_TYPE = { + GET = "Get", + LV_UP = "LvUp", + WEAR = "Wear", +} + +BIReport.ITEM_GET_TYPE = { + RUNE_LV_UP = "RuneLvUp", -- 符文升级 + RUNE_SUMMON = "RuneSummon", -- 符文召唤 + MINING_DIGGING = "MiningDigging", -- 挖矿 + MINING_RECOVER = "MiningRecover", -- 挖矿回复 + MINING_REWARD = "MiningReward", -- 挖矿领奖 + RESEARCH = "Research", -- 研究快速结束 + MASTERY_UPGRADE = "MasteryUpgrade", + MASTERY_RESET = "MasteryReset", + TRAIN_UP = "TrainUp", -- 修炼升级 + QUICK_PASS_UP = "QuickPassUp", -- 速通升级 + REBORN = "Reborn", -- 领悟 + QUICK_PASS = "QuickPass", -- 速通 + SIGNIN = "SignIn", -- 签到 + CHAPTER_DROP = "ChapterDrop", + CHAPTER_PASS = "ChapterPass", -- 章节通关 + CHAPTER_REWARD_STAGE = "ChapterRewardStage", -- 章节奖励 + LOOK_ADS = "LookAds",-- 看广告 + DAILY_TASK = "DailyTask", -- 每日任务 + IDLE_BASE = "IdleBase", -- 普通挂机 + IDLE_AD = "IdleAd", -- 广告挂机 + SEVEN_DAY_TASK = "SevenDayTask", + SEVEN_DAY_STEP_REWARD = "SevenDayStepReward", + SDK_PAY = "SdkPay", + TUTORIAL_TASK = "TutorialTask", + DUNGEON = "Dungeon", -- 副本 + ARENA = "Arena", -- 英雄大会 + MONTH_CARD = "MnonthCard", -- 月卡 + BATTLE_PASS_REWARD = "BattlePassReward", + BATTLE_PASS_TASK = "BattlePassTask", + BATTLE_REVIVE = "BattleRevive", + RENAME = "Rename", + MAIL = "Mail", + FUND_CHAPTER = "FuncChapter", + + MALL_POP_GIFT = "MallPopGift", + MALL_SKIP_AD_GIFT = "MallSkipAdGift", + MALL_SUBSCRIBE_BLESSING_GIFT = "MallSubscribeBlessingGift", + MALL_MONTH_CARD = "MallMonthCard", + MALL_LIMIT_GIFT = "MallLimitGift", + MALL_FIRST_RECHARGE_GIFT = "MallFirstRechargeGift", + MALL_CHAPTER_FUND = "MallChapterFund", + MALL_BATTLE_PASS = "MallBattlePass", + + MALL_TREASURE = "MallTreasure", + DAILY_GIFT = "DailyGift", + WEEKLY_GIFT = "WeeklyGift", + + UPDATE_TIME = "UpdateTime", + CROSS_DAY = "CrossDay", + + SUMMON = "Summon", -- 抽卡获取 +} + +BIReport.ADS_CLICK_TYPE = { + SUMMON = "Summon", + MINING = "Mine", + RESEARCH = "Research", + DUNGEON = "Dungeon", + ARENA = "Arena", + DAILY_TASK = "DailyTask", + QUICK_PASS = "QuickPass", + GIFT = "Gift", + BATTLE_SPEEDUP = "BattleSpeedup", + BLESSING = "Blessing", + IDLE_EXT_REWARDS = "IdleExtRewards", + MAIL = "Mail", +} + +-- BIReport.OPEN_STORE_TYPE = { +-- ICON = "Icon", +-- NO_GOLD = "NoGold", +-- FIRST_PAY = "FirstPay", +-- } + +BIReport.FIGHT_TYPE = { + START = "Start", + END = "End", +} + +BIReport.BATTLE_TYPE = { + ["1"] = "Stage", + ["2"] = "DungeonGold", + ["3"] = "DungeonGem", + ["4"] = "DungeonMithril", + ["5"] = "DungeonArena", +} + +BIReport.GIFT_TYPE = { + MALL_POP_GIFT = "MallPopGift", + MALL_SKIP_AD_GIFT = "MallSkipAdGift", + MALL_SUBSCRIBE_BLESSING_GIFT = "MallSubscribeBlessingGift", + MALL_MONTH_CARD = "MallMonthCard", + MALL_LIMIT_GIFT = "MallLimitGift", + MALL_FIRST_RECHARGE_GIFT = "MallFirstRechargeGift", + MALL_CHAPTER_FUND = "MallChapterFund", + MALL_BATTLE_PASS = "MallBattlePass", + + MALL_TREASURE = "MallTreasure", + DAILY_GIFT = "DailyGift", + WEEKLY_GIFT = "WeeklyGift", +} + +BIReport.COIN_TYPE = { + [1] = "Gold", + [2] = "Gem", +} + +-- BIReport.MONTHLY_CARD_TYPE = { +-- NONE = "None", -- 无月卡 +-- SMALL = "OnlySmall", -- 小月卡 +-- BIG = "OnlyBig", -- 大月卡 +-- BOTH = "Both", -- 大小月卡 +-- NO_TIME = "NoTime", -- 没登录无月卡数据 +-- } + +-- 割草 +local EVENT_NAME_EXIT = "exit" +local EVENT_NAME_FIGHT = "fight" +local EVENT_NAME_CLICK_BTN = "click_btn" +local EVENT_NAME_ITEM_GET = "item_get" +local EVENT_NAME_ITEM_USE = "item_use" +local EVENT_NAME_COIN_GET = "coin_get" +local EVENT_NAME_COIN_USE = "coin_use" +local EVENT_NAME_AD_OPT = "ads_opt" +local EVENT_NAME_PAY_OPT = "pay_opt" +local EVENT_NAME_EQUIP_OPT = "equip_opt" +local EVENT_NAME_LOGIN_FINISH = "login_finish" +local EVENT_NAME_LOGIN = "login" +local EVENT_NAME_BATTLE_PASS_OPT = "battle_pass_opt" +local EVENT_NAME_PING_SERVER = "ping_server" +local EVENT_NAME_ACCOUNT_OPT = "account_opt" +local EVENT_NAME_SUMMON = "summon" +local EVENT_NAME_TASK_OPT = "task_opt" +local EVENT_NAME_MAIL_OPT = "mail_opt" +local EVENT_NAME_TRAIN_OPT = "train_opt" +local EVENT_NAME_CHAPTER_OPT = "chapter_opt" -- 章节 +local EVENT_NAME_RUNE_OPT = "rune_opt" -- 符文 + +-- adjust +function BIReport:postAdjustSimpleTrackEvent(eventName, eventValue) + if not Platform:getIsPublishChannel() or EDITOR_MODE then + return + end + if not eventName or not eventValue then + return + end + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAdjustSimpleTrackEvent(eventName, json.encode(eventValue)) +end + +-- Firebase +-- function BIReport:postFirebaseLog(eventName, eventValue) +-- if not Platform:getIsPublishChannel() or EDITOR_MODE then +-- return +-- end +-- if not eventName or not eventValue then +-- return +-- end +-- if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then +-- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostFireBaseEvent(eventName, json.encode(eventValue)) +-- end +-- end + +function BIReport:updateAccountId(id) + if id == nil then + return + end + self:clearAccountId() + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:SetThinkingAnalyticsAccountId(tostring(id)) +end + +function BIReport:clearAccountId() + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:ClearThinkingAnalyticsAccountId() +end + +function BIReport:report(name, args) + -- 内网dev包和编辑器模式不上报 + if Platform and Platform:getIsDevChannel() or EDITOR_MODE then + return + end + -- 审核模式不上报 + if CS.BF.BFMain.IsShenhe then + return + end + --@TODO 2023-02-22 17:15:51 开发期间不上报 + if args and type(args) == "table" then + -- Level_ID 关卡ID Int 事件发生时所处关卡ID + -- MaxLevel 最大关卡 Int 事件发生时已解锁的最大关卡 + -- IsNew 是否是新用户 Boolean 事件发生时用户是否为新用户 + -- gold 金币数 Int 事件发生后剩余金币数 + -- gem 钻石数 Int 事件发生后剩余钻石数 + -- Energy 体力数 Int 事件发生后剩余体力数 + -- ResourceVersion 热更资源版本 String 事件发生时资源更新版本 + -- WearEquip 当前装备 String 装备id:等级|装备id:等级|装备id:等级|装备id:等级|装备id:等级(按武器盔甲头盔的顺序) + -- WearCherish 当前传家宝 String 传家宝id:等级|传家宝id:等级|传家宝id:等级|传家宝id:等级|传家宝id:等级 + -- WearRunes 当前符文 String 符文id:等级|符文id:等级|符文id:等级|符文id:等级|符文id:等级 + -- UserGrade 用户等级 int 事件发生后用户等级 + -- Skill 当前精通能力 int 精通能力强化次数 + if DataManager and DataManager:getIsInitWithServer() then + if DataManager.ChapterData then + if not args.max_level then + args.max_level = DataManager.ChapterData:getHistoryChapterId() + 1 + end + if not args.level_id then + args.level_id = DataManager.ChapterData:getCurChapterId() + 1 + end + end + if DataManager.BagData and DataManager.BagData.ItemData then + local goldBigBNum = DataManager.BagData.ItemData:getItemBigNumById(GConst.ItemConst.ITEM_ID_GOLD) + args.gold_value = goldBigBNum.value + args.gold_unit = goldBigBNum.unit + + local gemBigNum = DataManager.BagData.ItemData:getItemBigNumById(GConst.ItemConst.ITEM_ID_GEM) + args.gem = BigNumOpt.bigNum2Num(gemBigNum) + end + end + args.current_version = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion() + -- args.is_today_first = LocalData:getTodayFirst() + args.device_unique_identifier = CS.UnityEngine.SystemInfo.deviceUniqueIdentifier + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostThinkingAnalyticsEvent(name, json.encode(args)) + else + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostThinkingAnalyticsEvent(name) + end +end + +-- 上报引导每一步 +function BIReport:postTutorialStep(id) + local level = DataManager.PlayerData:getLv() + local args = { + client_tutorial_id = id, + level = level + } + self:report(EVENT_NAME_TUTORIAL, args) +end + +-- Lua crash +function BIReport:postLuaCrash(logString, stackTrace) + local msg = logString .. stackTrace + if #msg > 2000 then + msg = string.sub(msg, 1, 2000) + end + local args = { + client_lua_crash_msg = msg, + } + self:report(EVENT_NAME_LUA_CRASH, args) +end + +-- 上报界面打开 +function BIReport:postOpenUI(uiName, childUI) + if uiName == nil or uiName == "" then + return + end + local args = { + client_ui_name = uiName, + client_ui_child_name = childUI, + } + self:report(EVENT_NAME_OPEN_UI, args) + BIReport:printArgsStr(EVENT_NAME_OPEN_UI, args) +end + +-- 上报内购事件,单独处理,只上报到AF和FB,不上报数数 +function BIReport:postPurchase(price, content, originOrderId, orderId) + -- 只有外网正式渠道真机包才上报 + if not Platform:getIsPublishChannel() or EDITOR_MODE then + return + end + -- 审核模式不上报 + if CS.BF.BFMain.IsShenhe then + return + end + -- 上报AF,AF的所有事件值都是String类型 + local args = { + af_revenue = tostring(price), + af_currency = "USD", + af_quantity = "1", + af_content_id = content, + af_order_id = originOrderId, + af_receipt_id = orderId + } + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_purchase", json.encode(args)) + + -- 上报FB的付费事件 + local fbArgs = { + order_id = originOrderId, + product_id = content + } + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogPurchase(price, "USD", json.encode(fbArgs)) + + -- 上报付费到adjust + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAdjustRevenueTrackEvent("qm803c", price, "USD") +end + +-- 上报等级提升事件,单独处理,只上报到AF和FB,不上报数数 +function BIReport:postFirstLoginEvent() + -- 只有外网正式渠道真机包才上报 + if not Platform:getIsPublishChannel() or EDITOR_MODE then + return + end + -- 审核模式不上报 + if CS.BF.BFMain.IsShenhe then + return + end + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_first_login", json.encode({})) + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_first_login", json.encode({})) +end + +-- 上报等级提升事件,单独处理,只上报到AF和FB,不上报数数 +-- function BIReport:postLvEvent(lv) +-- -- 只有外网正式渠道真机包才上报 +-- if not Platform:getIsPublishChannel() or EDITOR_MODE then +-- return +-- end +-- -- 审核模式不上报 +-- if CS.BF.BFMain.IsShenhe then +-- return +-- end +-- if not lv then +-- return +-- end +-- local postLV = { +-- [1] = true, +-- [2] = true, +-- [3] = true, +-- [5] = true, +-- [10] = true, +-- [15] = true, +-- [20] = true, +-- [30] = true, +-- [40] = true, +-- [50] = true, +-- [60] = true, +-- [70] = true, +-- [80] = true, +-- [90] = true, +-- [100] = true, +-- } +-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_Grade", json.encode({})) +-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_Grade", json.encode({})) +-- -- if not postLV[lv] then +-- -- return +-- -- end +-- -- local args = {} +-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_Grade_" .. lv, json.encode(args)) +-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_Grade_" .. lv, json.encode(args)) +-- end + +-- 上报广告播放提升事件,单独处理,只上报到AF和FB,不上报数数 +-- function BIReport:postAdEvent() +-- -- 只有外网正式渠道真机包才上报 +-- if not Platform:getIsPublishChannel() or EDITOR_MODE then +-- return +-- end +-- -- 审核模式不上报 +-- if CS.BF.BFMain.IsShenhe then +-- return +-- end +-- local adCount = DataManager.PlayerData:getAdCount() +-- if not adCount then +-- return +-- end +-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_AdRewardAD", json.encode({})) +-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_AdRewardAD", json.encode({})) +-- -- local postAdCount = { +-- -- [1] = true, +-- -- [2] = true, +-- -- [3] = true, +-- -- [5] = true, +-- -- [10] = true, +-- -- [15] = true, +-- -- [20] = true, +-- -- [30] = true, +-- -- [40] = true, +-- -- [50] = true, +-- -- [60] = true, +-- -- } +-- -- if not postAdCount[adCount] then +-- -- return +-- -- end +-- -- local args = {} +-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_AdRewardAD_" .. adCount, json.encode(args)) +-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_AdRewardAD_" .. adCount, json.encode(args)) +-- end + +-- 上报部分档位首次付费 +-- function BIReport:postFirstRechargeEvent(id) +-- -- 只有外网正式渠道真机包才上报 +-- if not Platform:getIsPublishChannel() or EDITOR_MODE then +-- return +-- end +-- -- 审核模式不上报 +-- if CS.BF.BFMain.IsShenhe then +-- return +-- end +-- local postRechargeID = { +-- [1] = false, -- 0.99 +-- [2] = false, -- 1.99 +-- [3] = false, -- 2.99 +-- [4] = true, -- 4.99 +-- [5] = true, -- 9.99 +-- [6] = false, -- 14.99 +-- [7] = true, -- 19.99 +-- [8] = false, -- 24.99 +-- [9] = true, -- 29.99 +-- [10] = true, -- 49.99 +-- [11] = false, -- 69.99 +-- [12] = false, -- 99.99 +-- } +-- if not postRechargeID[id] then +-- return +-- end +-- local cfg = ConfigManager:getConfig("recharge")[id] +-- if not cfg then +-- return +-- end +-- local args = {} +-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_package_" .. cfg.price, json.encode(args)) +-- end + +-- 上报进入章节事件,单独处理,只上报到AF和FB,不上报数数 +-- function BIReport:postChapterEvent(chapter) +-- -- 只有外网正式渠道真机包才上报 +-- if not Platform:getIsPublishChannel() or EDITOR_MODE then +-- return +-- end +-- -- 审核模式不上报 +-- if CS.BF.BFMain.IsShenhe then +-- return +-- end +-- if not chapter then +-- return +-- end +-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_Chapter", json.encode({})) +-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_Chapter", json.encode({})) +-- -- local args = {} +-- -- CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostAppsflyerEvent("af_Chapter_" .. chapter, json.encode(args)) +-- -- CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr.FBSdk:LogAppEvent("fb_Chapter_" .. chapter, json.encode(args)) +-- end + +-- 以下为数数 +function BIReport:printArgsStr(eventName, args) + if EDITOR_MODE then + local tab = clone(args) + tab.eventName = eventName + Logger.log("============report %s===========", eventName) + Logger.printTable(tab or {}) + end +end + +-- 开启游戏 +-- function BIReport:postGameLogin(isFirstLogin) +-- local args = { +-- first_begin = isFirstLogin, +-- } +-- self:report(EVENT_NAME_LOGIN, args) +-- BIReport:printArgsStr(EVENT_NAME_LOGIN, args) +-- end + +-- 登录完成 +function BIReport:postGameLoginFinish() + -- FirstBegin 是否是首次登陆 + -- DailyFirstBegin 是否当日首次登录 + -- LogType 进入类型 + -- PushID 推送id + -- MaxLevel 已解锁最大关卡 + -- Duration 登录加载时长 + -- MyEquip 拥有装备 + -- MyCherish 拥有传家宝 + -- MyRunes 拥有符文 + -- MaxTrial 副本进度 + -- IsNew 是否是新用户 + local args = { + is_daily_first = DataManager:getIsTodayFirstLogin(), + is_first = DataManager:getIsFirstLogin(), + } + local equips = DataManager.BagData.EquipData:getAllEquips() + for k,v in pairs(equips) do + if not args.my_equip then + args.my_equip = v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount() + else + args.my_equip = args.my_equip .. "|" .. v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount() + end + end + args.my_equip = args.my_equip or "" + + local legacies = DataManager.BagData.LegacyData:getAllLegacies() + for k,v in pairs(legacies) do + if not args.my_legacy then + args.my_legacy = v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount() + else + args.my_legacy = args.my_legacy .. "|" .. v:getId() .. ":" .. v:getLv() .. ":" .. v:getCount() + end + end + args.my_legacy = args.my_legacy or "" + + local runes = DataManager.BagData.RuneData:getAllRunes() + for k,v in pairs(runes) do + if not args.my_rune then + args.my_rune = v:getId() .. ":" .. v:getLv() + else + args.my_rune = args.my_rune .. "|" .. v:getId() .. ":" .. v:getLv() + end + end + args.my_rune = args.my_rune or "" + + for i = 1, 4 do + local info = DataManager.DungeonData:getPassedMaxLevel(i) + if info then + if not args.my_dungeon then + args.my_dungeon = i .. ":" .. info + else + args.my_dungeon = args.my_dungeon .. "|" .. i .. ":" .. info + end + end + end + + args.my_dungeon = args.my_dungeon or "" + local info = DataManager.ArenaData:getSegment() or 0 + if not args.my_dungeon then + args.my_dungeon = "5:" .. info + else + args.my_dungeon = args.my_dungeon .. "|5:" .. info + end + self:report(EVENT_NAME_LOGIN_FINISH, args) + BIReport:printArgsStr(EVENT_NAME_LOGIN_FINISH, args) +end + +-- 游戏退出 +function BIReport:postGameExit() + local nowTime = Time:getServerTime() + local args = {} + -- if DataManager then + -- args.duration = nowTime - DataManager:getLoginTime() + -- end + self:report(EVENT_NAME_EXIT, args) + BIReport:printArgsStr(EVENT_NAME_EXIT, args) +end + +-- 进入战斗 +function BIReport:postFightBegin(battleType, currLevelId, maxLevelId) + -- Level_ID 进入关卡编号 + -- LevelType 进入关卡类型 + -- MaxLevel 已解锁最大关卡 + -- StartTimes 累计进入次数 + -- IsNew 是否是新用户 + + local args = { + -- level_id = currLevelId + 1, + -- max_level = maxLevelId + 1, + battle_type = BIReport.BATTLE_TYPE[battleType], + event_type = BIReport.FIGHT_TYPE.START, + } + self:report(EVENT_NAME_FIGHT, args) + BIReport:printArgsStr(EVENT_NAME_FIGHT, args) +end + +function BIReport:postFightEnd(battleType, currLevelId, maxLevelId, passType) + -- Level_ID 进入关卡编号 + -- LevelType 进入关卡类型 + -- MaxLevel 已解锁最大关卡 + -- StartTimes 累计进入次数 + -- IsNew 是否是新用户 + + local args = { + level_id = currLevelId, + -- max_level = maxLevelId + 1, + pass_type = passType, + battle_type = BIReport.BATTLE_TYPE[battleType], + event_type = BIReport.FIGHT_TYPE.END, + } + self:report(EVENT_NAME_FIGHT, args) + BIReport:printArgsStr(EVENT_NAME_FIGHT, args) +end + +function BIReport:postDungeonFightBegin(battleType, currLevelId, maxLevelId) + -- Level_ID 进入关卡编号 + -- LevelType 进入关卡类型 + -- MaxLevel 已解锁最大关卡 + -- StartTimes 累计进入次数 + -- IsNew 是否是新用户 + + local args = { + level_id = currLevelId, + max_dungeon_level = maxLevelId, + battle_type = BIReport.BATTLE_TYPE[battleType], + event_type = BIReport.FIGHT_TYPE.START, + } + self:report(EVENT_NAME_FIGHT, args) + BIReport:printArgsStr(EVENT_NAME_FIGHT, args) +end + +function BIReport:postDungeonFightEnd(battleType, currLevelId, maxLevelId, passType) + -- Level_ID 进入关卡编号 + -- LevelType 进入关卡类型 + -- MaxLevel 已解锁最大关卡 + -- StartTimes 累计进入次数 + -- IsNew 是否是新用户 + + local args = { + level_id = currLevelId, + max_dungeon_level = maxLevelId, + pass_type = passType, + battle_type = BIReport.BATTLE_TYPE[battleType], + event_type = BIReport.FIGHT_TYPE.END, + } + self:report(EVENT_NAME_FIGHT, args) + BIReport:printArgsStr(EVENT_NAME_FIGHT, args) +end + +-- 首页按钮点击 +function BIReport:postBtnCilck(clickType) + local args = { + event_type = clickType, + } + self:report(EVENT_NAME_CLICK_BTN, args) + BIReport:printArgsStr(EVENT_NAME_CLICK_BTN, args) +end + +-- 道具获取 +function BIReport:postItemGet(bigNum, itemId, getType) + -- Item 道具id + -- Type 获得方式 + -- MaxLevel 最大关卡 + -- ItemNum 获取道具数量 + -- ItemAll 获取后道具数量 + -- IsNew 是否是新用户 + local itemBigNum = DataManager.BagData.ItemData:getItemBigNumById(itemId) + local args = { + item_value = bigNum.value, + item_unit = bigNum.unit, + item_id = itemId, + item_all_value = itemBigNum.value, + item_all_unit = itemBigNum.unit, + type = getType, + } + self:report(EVENT_NAME_ITEM_GET, args) + BIReport:printArgsStr(EVENT_NAME_ITEM_GET, args) +end + +-- 道具使用 +function BIReport:postItemUse(bigNum, itemId, getType) + -- Item 道具id + -- Type 消耗方式 + -- MaxLevel 最大关卡 + -- ItemNum 消耗道具数量 + -- ItemAll 消耗后道具数量 + -- IsNew 是否是新用户 + local itemBigNum = DataManager.BagData.ItemData:getItemBigNumById(itemId) + local args = { + item_value = bigNum.value, + item_unit = bigNum.unit, + item_id = itemId, + item_all_value = itemBigNum.value, + item_all_unit = itemBigNum.unit, + type = getType, + } + self:report(EVENT_NAME_ITEM_USE, args) + BIReport:printArgsStr(EVENT_NAME_ITEM_USE, args) +end + +-- 钻石增加 +function BIReport:postGemGet(bigNum, getType, itemId) + -- CoinNum 代币数量 + -- Type 获得类型 + -- CoinsType 代币类型 + -- IsNew 是否是新用户 + -- MaxLevel 最大关卡 + local args = { + type = getType, + -- coin_value = bigNum.value, + -- coin_unit = bigNum.unit, + coin_type = BIReport.COIN_TYPE[itemId], + } + if itemId == GConst.ItemConst.ITEM_ID_GEM then + args.coin_value = BigNumOpt.bigNum2Num(bigNum) + args.coin_unit = 0 + else + args.coin_value = bigNum.value + args.coin_unit = bigNum.unit + end + self:report(EVENT_NAME_COIN_GET, args) + BIReport:printArgsStr(EVENT_NAME_COIN_GET, args) +end + +-- 钻石使用 +function BIReport:postGemUse(bigNum, getType, itemId) + -- CoinNum 代币数量 + -- Type 使用类型 + -- CoinsType 代币类型 + -- IsNew 是否是新用户 + -- MaxLevel 最大关卡 + local itemBigNum = DataManager.BagData.ItemData:getItemBigNumById(itemId) + local args = { + type = getType, + -- coin_value = bigNum.value, + -- coin_unit = bigNum.unit, + coin_type = BIReport.COIN_TYPE[itemId], + -- coin_all_value = itemBigNum.value, + -- coin_all_unit = itemBigNum.unit, + } + if itemId == GConst.ItemConst.ITEM_ID_GEM then + args.coin_value = BigNumOpt.bigNum2Num(bigNum) + args.coin_unit = 0 + args.coin_all_value = BigNumOpt.bigNum2Num(itemBigNum) + args.coin_all_unit = 0 + else + args.coin_value = bigNum.value + args.coin_unit = bigNum.unit + args.coin_all_value = itemBigNum.value + args.coin_all_unit = itemBigNum.unit + end + self:report(EVENT_NAME_COIN_USE, args) + BIReport:printArgsStr(EVENT_NAME_COIN_USE, args) +end + +-- 点击广告按钮 +function BIReport:postAdClick(adsType) + local args = { + ad_type = adsType, + event_type = BIReport.ADS_OPT_TYPE.CLICK, + } + self:report(EVENT_NAME_AD_OPT, args) + BIReport:printArgsStr(EVENT_NAME_AD_OPT, args) +end + +-- 广告播放视频成功 +function BIReport:postAdPlaySuccess(adsType) + local args = { + ad_type = adsType, + event_type = BIReport.ADS_OPT_TYPE.SUC, + } + self:report(EVENT_NAME_AD_OPT, args) + BIReport:printArgsStr(EVENT_NAME_AD_OPT, args) +end + +-- 广告奖励发放成功 +function BIReport:postAdRewardGet(adsType) + local args = { + ad_type = adsType, + event_type = BIReport.ADS_OPT_TYPE.RETURN, + } + self:report(EVENT_NAME_AD_OPT, args) + BIReport:printArgsStr(EVENT_NAME_AD_OPT, args) +end + +-- 支付sdk初始化成功 +function BIReport:postPayInitSuccess() + local args = { + event_type = BIReport.PAY_OPT_TYPE.INIT_SUC, + } + self:report(EVENT_NAME_PAY_OPT, args) + BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args) +end + +-- 支付sdk初始化失败 +function BIReport:postPayInitFailed(failedDesc) + local args = { + failed_desc = failedDesc or GConst.EMPTY_STRING, + event_type = BIReport.PAY_OPT_TYPE.INIT_FAILED, + } + self:report(EVENT_NAME_PAY_OPT, args) + BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args) +end + +-- 点击商品购买按钮 +function BIReport:postPayClick(giftType, id, rechargeId) + local args = { + gift_type = giftType, + commodity_id = id, + -- commodity_state = payDouble, + recharge_id = rechargeId, + event_type = BIReport.PAY_OPT_TYPE.CLICK, + } + self:report(EVENT_NAME_PAY_OPT, args) + BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args) +end + +-- 跳转购买界面 +function BIReport:postPayTurn(giftType, id, rechargeId) + local args = { + gift_type = giftType, + commodity_id = id, + -- commodity_state = payDouble, + recharge_id = rechargeId, + event_type = BIReport.PAY_OPT_TYPE.BUY, + } + self:report(EVENT_NAME_PAY_OPT, args) + BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args) +end + +-- 取消购买 +function BIReport:postPayCancel(productId, orderId, rechargeId, giftType) + local args = { + pay_product_id = productId, + pay_order_id = orderId, + recharge_id = rechargeId, + gift_type = giftType, + event_type = BIReport.PAY_OPT_TYPE.CANCEL, + } + self:report(EVENT_NAME_PAY_OPT, args) + BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args) +end + +-- 购买失败 +function BIReport:postPayFailed(productId, orderId, rechargeId, failedType, giftType) + local args = { + pay_product_id = productId, + pay_order_id = orderId, + recharge_id = rechargeId, + pay_failed_type = failedType, + gift_type = giftType, + event_type = BIReport.PAY_OPT_TYPE.FAILED, + } + self:report(EVENT_NAME_PAY_OPT, args) + BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args) +end + +-- -- 获得购买物品 +function BIReport:postPayGet(giftType, id, rechargeId, orderId, originOrderId, buyNum, rewards) + -- local itemStr = GFunc.getRewardsStr(rewards) + local args = { + gift_type = giftType, + commodity_id = id, + -- commodity_state = payDouble, + -- commodity_item = itemStr, + buy_num = buyNum, + origin_order_id_new = tostring(originOrderId), + recharge_id = rechargeId, + event_type = BIReport.PAY_OPT_TYPE.REWARD, + } + self:report(EVENT_NAME_PAY_OPT, args) + BIReport:printArgsStr(EVENT_NAME_PAY_OPT, args) + + if EDITOR_MODE then + if not giftType or not id or not rechargeId then + local params = { + content = "BI Report postPayGet has no basic params", + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + Logger.log("BI Report postPayGet has no basic params") + end + end +end + +-- 装备穿戴 +function BIReport:postEquipWear(equipPart, equipLv, equipId) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- Equip_Lv 装备等级 + -- Equip_ID 装备ID + + local args = { + equip_part = equipPart, + equip_lv = equipLv, + equip_id = equipId, + event_type = BIReport.EQUIP_OPT_TYPE.EQUIP_WEAR, + } + self:report(EVENT_NAME_EQUIP_OPT, args) + BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args) +end + +-- 装备升级 +function BIReport:postEquipUp(equipPart, equipLv, equipId) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- Equip_Lv 升级后装备等级 + -- Equip_ID 装备ID + -- Type 消耗类型 + + local args = { + equip_part = equipPart, + equip_lv = equipLv, + equip_id = equipId, + event_type = BIReport.EQUIP_OPT_TYPE.EQUIP_LV_UP, + } + self:report(EVENT_NAME_EQUIP_OPT, args) + BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args) +end + +function BIReport:postEquipGet(equipId, getType) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- Equip_Lv 获取的装备等级 + -- Equip_ID 获取的装备ID + -- Type 获取类型 + local args = { + equip_id = equipId, + type = getType, + event_type = BIReport.EQUIP_OPT_TYPE.EQUIP_GET, + } + self:report(EVENT_NAME_EQUIP_OPT, args) + BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args) +end + +function BIReport:postLegacyWear(equipPart, equipLv, equipId) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- Equip_Lv 装备等级 + -- Equip_ID 装备ID + + local args = { + equip_part = equipPart, + equip_lv = equipLv, + equip_id = equipId, + event_type = BIReport.EQUIP_OPT_TYPE.LEGACY_WEAR, + } + self:report(EVENT_NAME_EQUIP_OPT, args) + BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args) +end + +-- 装备升级 +function BIReport:postLegacyUp(equipPart, equipLv, equipId) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- Equip_Lv 升级后装备等级 + -- Equip_ID 装备ID + -- Type 消耗类型 + + local args = { + equip_part = equipPart, + equip_lv = equipLv, + equip_id = equipId, + event_type = BIReport.EQUIP_OPT_TYPE.LEGACY_LV_UP, + } + self:report(EVENT_NAME_EQUIP_OPT, args) + BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args) +end + +function BIReport:postLegacyGet(equipId, getType) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- Equip_Lv 获取的装备等级 + -- Equip_ID 获取的装备ID + -- Type 获取类型 + local args = { + equip_id = equipId, + type = getType, + event_type = BIReport.EQUIP_OPT_TYPE.LEGACY_GET, + } + self:report(EVENT_NAME_EQUIP_OPT, args) + BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args) +end + +function BIReport:postLegacyRemove(equipPart, equipId) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- Equip_Lv 获取的装备等级 + -- Equip_ID 获取的装备ID + -- Type 获取类型 + local args = { + equip_part = equipPart, + equip_id = equipId, + event_type = BIReport.EQUIP_OPT_TYPE.LEGACY_REMOVE, + } + self:report(EVENT_NAME_EQUIP_OPT, args) + BIReport:printArgsStr(EVENT_NAME_EQUIP_OPT, args) +end + +function BIReport:postDataException(itemId, count, getType) + -- local args = { + -- item_num = count, + -- item_id = itemId, + -- type = getType, + -- } + -- self:report(EVENT_NAME_DATA_EXCEPTION, args) + -- BIReport:printArgsStr(EVENT_NAME_DATA_EXCEPTION, args) +end + +-- 战令打点 +function BIReport:postBattlePassOpen() + local args = { + event_type = BIReport.BATTLE_PASS_OPT_TYPE.OPEN, + } + self:report(EVENT_NAME_BATTLE_PASS_OPT, args) + BIReport:printArgsStr(EVENT_NAME_BATTLE_PASS_OPT, args) +end + +function BIReport:postBattlePassTaskClaim(id, lv, progress) + local args = { + task_id = id, + task_level = lv, + task_progress = progress, + event_type = BIReport.BATTLE_PASS_OPT_TYPE.TASK_CLAIM, + } + self:report(EVENT_NAME_BATTLE_PASS_OPT, args) + BIReport:printArgsStr(EVENT_NAME_BATTLE_PASS_OPT, args) +end + +function BIReport:postBattlePassRewardClaim(lv, highLv) + local args = { + task_level = lv, + task_high_lv = highLv, + event_type = BIReport.BATTLE_PASS_OPT_TYPE.REWARD_CLAIM, + } + self:report(EVENT_NAME_BATTLE_PASS_OPT, args) + BIReport:printArgsStr(EVENT_NAME_BATTLE_PASS_OPT, args) +end + +function BIReport:postBattlePassExpGet(getExp, lv, exp) + local args = { + task_get_exp = getExp, + task_level = lv, + task_exp = exp, + event_type = BIReport.BATTLE_PASS_OPT_TYPE.EXP_GET, + } + self:report(EVENT_NAME_BATTLE_PASS_OPT, args) + BIReport:printArgsStr(EVENT_NAME_BATTLE_PASS_OPT, args) +end + +-- 登录 +-- 点击登录 +function BIReport:postAccountLoginClick(loginType) + local args = { + login_type = loginType, + event_type = BIReport.ACCOUNT_OPT_TYPE.LOGIN_CLICK, + } + self:report(EVENT_NAME_ACCOUNT_OPT, args) + BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args) +end + +-- 登录成功 +function BIReport:postAccountLoginFinish(loginType) + local args = { + login_type = loginType, + event_type = BIReport.ACCOUNT_OPT_TYPE.LOGIN_FINISH, + } + self:report(EVENT_NAME_ACCOUNT_OPT, args) + BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args) +end + +-- 登录失败 +function BIReport:postAccountLoginFailed(loginType, reason) + local args = { + login_type = loginType, + login_reason = reason, + event_type = BIReport.ACCOUNT_OPT_TYPE.LOGIN_FAILED, + } + self:report(EVENT_NAME_ACCOUNT_OPT, args) + BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args) +end + +-- 点击绑定 +function BIReport:postAccountBindClick(loginType) + local args = { + login_type = loginType, + event_type = BIReport.ACCOUNT_OPT_TYPE.BIND_CLICK, + } + self:report(EVENT_NAME_ACCOUNT_OPT, args) + BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args) +end + +-- 绑定成功 +function BIReport:postAccountBindFinish(loginType) + local args = { + login_type = loginType, + event_type = BIReport.ACCOUNT_OPT_TYPE.BIND_FINISH, + } + self:report(EVENT_NAME_ACCOUNT_OPT, args) + BIReport:printArgsStr(EVENT_NAME_ACCOUNT_OPT, args) +end + +-- -- 切换账号 +-- function BIReport:postAccountChange(loginType) +-- local args = { +-- loginType = loginType, +-- } +-- self:report(EVENT_NAME_ACCOUNT_CHANGE, args) +-- BIReport:printArgsStr(EVENT_NAME_ACCOUNT_CHANGE, args) +-- end + +-- -- 删除账号 +-- function BIReport:postAccountDelete(loginType) +-- local args = { +-- loginType = loginType, +-- } +-- self:report(EVENT_NAME_ACCOUNT_DELETE, args) +-- BIReport:printArgsStr(EVENT_NAME_ACCOUNT_DELETE, args) +-- end + +-- 上报ping服务器地址情况 +function BIReport:postPingServer(address, time, resultType) + local args = { + address = address, + time = time, + type = resultType + } + self:report(EVENT_NAME_PING_SERVER, args) + BIReport:printArgsStr(EVENT_NAME_PING_SERVER, args) +end + +-- -- CDKey兑换结果 +-- function BIReport:postCDKeyResult(CDKeyStr, result, code) +-- local args = { +-- cdkey = CDKeyStr, +-- success = result, +-- code = code +-- } +-- self:report(CDKEY_EXCHANGE_RESULT, args) +-- BIReport:printArgsStr(CDKEY_EXCHANGE_RESULT, args) +-- end + +-- -- 网络异常 +-- function BIReport:postNetFail(errorType, msgName, time, failedTime) +-- local args = { +-- error_type = errorType, +-- message_name = msgName, +-- time = time, +-- failed_time = failedTime +-- } +-- self:report(EVENT_NAME_NET_FAIL, args) +-- BIReport:printArgsStr(EVENT_NAME_NET_FAIL, args) +-- end + +-- -- 通信成功 +-- function BIReport:postNetSuccess(msgName, retryTimes, time, code) +-- local args = { +-- message_name = msgName, +-- retry_times = retryTimes, +-- time = time, +-- code = code +-- } +-- self:report(EVENT_NAME_NET_SUCCESS, args) +-- BIReport:printArgsStr(EVENT_NAME_NET_SUCCESS, args) +-- end + +-- -- 重复订单 +-- function BIReport:postRepeatPayOrder(productId, originOrderId, orderId) +-- local args = { +-- product_id = productId, +-- origin_order_id = tostring(originOrderId), +-- order_id = orderId +-- } +-- self:report(EVENT_NAME_PAY_ORDER_REPEAT, args) +-- BIReport:printArgsStr(EVENT_NAME_PAY_ORDER_REPEAT, args) +-- end + +-- 召唤 +function BIReport:postSummonSuc(summonType, diamondType) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- Type 召唤类型 Equip=武器召唤、Defense=防具召唤、Cherish=传家宝召唤、Rune=符文召唤 + -- DiamondType 消耗钻石类型 Free=免费召唤、Ad1=当日第1次广告召唤、Ad2=第2次、Ad3=当日第3次、Daimond11=召唤11次、Diamond35=召唤35次 + local args = { + diamond_type = diamondType, + type = summonType, + } + self:report(EVENT_NAME_SUMMON, args) + BIReport:printArgsStr(EVENT_NAME_SUMMON, args) +end + +-- 任务 +function BIReport:postTaskFinish(taskType, taskId) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- TaskType 任务类型 + -- Task_ID 任务id + -- FinishTimes 任务完成数 + + local args = { + task_type = taskType, + task_id = taskId, + event_type = BIReport.TASK_OPT_TYPE.FINISH, + } + self:report(EVENT_NAME_TASK_OPT, args) + BIReport:printArgsStr(EVENT_NAME_TASK_OPT, args) +end + +function BIReport:postTaskReward(taskType, taskId) + -- MaxLevel 最大关卡 + -- IsNew 是否是新用户 + -- TaskType 任务类型 + -- Task_ID 任务id + -- FinishTimes 累计领取奖励数 + + local args = { + task_type = taskType, + task_id = taskId, + event_type = BIReport.TASK_OPT_TYPE.REWARD, + } + self:report(EVENT_NAME_TASK_OPT, args) + BIReport:printArgsStr(EVENT_NAME_TASK_OPT, args) +end + +-- 邮箱 +function BIReport:postMailOpen(mailId) + -- IsNew 是否是新用户 + -- MaxLevel 最大关卡 + -- Email_ID 邮件编号 + + local args = { + mail_id = mailId, + event_type = BIReport.MAIL_OPT_TYPE.OPEN, + } + self:report(EVENT_NAME_MAIL_OPT, args) + BIReport:printArgsStr(EVENT_NAME_MAIL_OPT, args) +end + +function BIReport:postMailClaim(mailId) + -- IsNew 是否是新用户 + -- MaxLevel 最大关卡 + -- Email_ID 邮件编号 + + local args = { + mail_id = mailId, + event_type = BIReport.MAIL_OPT_TYPE.CLAIM, + } + self:report(EVENT_NAME_MAIL_OPT, args) + BIReport:printArgsStr(EVENT_NAME_MAIL_OPT, args) +end + +-- 修炼 +function BIReport:postTrainFinish(trainType, trainLv) + -- IsNew 是否是新用户 + -- MaxLevel 最大关卡 + -- TrainLv 训练属性等级 + -- TrainType 训练类型 + + local args = { + type = tostring(trainType), + train_lv = trainLv, + event_type = BIReport.TRAIN_OPT_TYPE.TRAIN, + } + self:report(EVENT_NAME_TRAIN_OPT, args) + BIReport:printArgsStr(EVENT_NAME_TRAIN_OPT, args) +end + +function BIReport:postTrainReborn() + local args = { + event_type = BIReport.TRAIN_OPT_TYPE.REBORN, + } + self:report(EVENT_NAME_TRAIN_OPT, args) + BIReport:printArgsStr(EVENT_NAME_TRAIN_OPT, args) +end + +function BIReport:postTrainQuickPass() + local args = { + event_type = BIReport.TRAIN_OPT_TYPE.QUICK_PASS, + } + self:report(EVENT_NAME_TRAIN_OPT, args) + BIReport:printArgsStr(EVENT_NAME_TRAIN_OPT, args) +end + +function BIReport:postTrainQuickPassUp(level) + local args = { + train_lv = level, + event_type = BIReport.TRAIN_OPT_TYPE.QUICK_PASS, + } + self:report(EVENT_NAME_TRAIN_OPT, args) + BIReport:printArgsStr(EVENT_NAME_TRAIN_OPT, args) +end + +-- function BIReport:postChapterPass(oldId, chapterId, passType) +-- local args = { +-- old_id = oldId, +-- chapter_id = chapterId, +-- pass_type = passType, +-- event_type = BIReport.CHAPTER_OPT_TYPE.PASS, +-- } + +-- self:report(EVENT_NAME_CHAPTER_OPT, args) +-- BIReport:printArgsStr(EVENT_NAME_CHAPTER_OPT, args) +-- end + +-- 符文 +function BIReport:postRuneGet(runeId) + local args = { + equip_id = runeId, + event_type = BIReport.RUNE_OPT_TYPE.GET, + } + + self:report(EVENT_NAME_RUNE_OPT, args) + BIReport:printArgsStr(EVENT_NAME_RUNE_OPT, args) +end + +function BIReport:postRuneUp(runeId, runeLv) + local args = { + equip_id = runeId, + equip_lv = runeLv, + event_type = BIReport.RUNE_OPT_TYPE.LV_UP, + } + + self:report(EVENT_NAME_RUNE_OPT, args) + BIReport:printArgsStr(EVENT_NAME_RUNE_OPT, args) +end + +function BIReport:postRuneWear(runeId, runeLv) + local args = { + equip_id = runeId, + equip_lv = runeLv, + event_type = BIReport.RUNE_OPT_TYPE.WEAR, + } + + self:report(EVENT_NAME_RUNE_OPT, args) + BIReport:printArgsStr(EVENT_NAME_RUNE_OPT, args) +end + +return BIReport \ No newline at end of file diff --git a/lua/app/common/bi_report.lua.meta b/lua/app/common/bi_report.lua.meta new file mode 100644 index 00000000..8b120143 --- /dev/null +++ b/lua/app/common/bi_report.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 18b39d75878166f43a80036dd82df93c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/camera_manager.lua b/lua/app/common/camera_manager.lua new file mode 100644 index 00000000..92423a16 --- /dev/null +++ b/lua/app/common/camera_manager.lua @@ -0,0 +1,59 @@ +local CameraManager = {} + +local ADJUST_SCREEN_W = 720 +local ADJUST_SCREEN_H = 1560 + +function CameraManager:init() + self.mainCamera = CS.UnityEngine.Camera.main + CS.UnityEngine.GameObject.DontDestroyOnLoad(self.mainCamera.gameObject) + + self.originPosition = self.mainCamera.transform.position + self.originOrthographicSize = self.mainCamera.orthographicSize + + -- self.originFieldOfView = self.mainCamera.gameObject:GetComponent(GConst.TYPEOF_UNITY_CLASS.BF_CAMERA_HELPER).OriginFieldOfView + -- self:adjustCameraForFight() + -- 战斗相机参数调整 + self.mainCamera.transparencySortMode = CS.UnityEngine.TransparencySortMode.CustomAxis + self.mainCamera.transparencySortAxis = BF.Vector3(0, 0, 1) +end + +function CameraManager:getMainCamera() + return self.mainCamera +end + +function CameraManager:resetMainCamera() + self.mainCamera.transform.position = self.originPosition + self.mainCamera.orthographicSize = self.originOrthographicSize +end + +function CameraManager:getMainCameraOriginPosition() + return self.originPosition +end + +function CameraManager:getOriginOrthographicSize() + return self.originOrthographicSize +end + +-- 适配战斗相机 +function CameraManager:adjustCameraForFight() + local manualHeight + -- 然后得到当前屏幕的高宽比 和 你自定义需求的高宽比。通过判断他们的大小,来不同赋值 + if CS.UnityEngine.Screen.height / CS.UnityEngine.Screen.width ~= ADJUST_SCREEN_H / ADJUST_SCREEN_W then + -- 如果屏幕的高宽比大于自定义的高宽比 。则通过公式 ADJUST_SCREEN_W * manualHeight = Screen.width * Screen.height; + -- 来求得适应的manualHeight ,用它求出 实际高度与理想高度的比率 scale + manualHeight = ADJUST_SCREEN_W / CS.UnityEngine.Screen.width * CS.UnityEngine.Screen.height + else + -- 否则 直接给manualHeight 自定义的 ADJUST_SCREEN_H 的值,那么相机的fieldOfView就会原封不动 + manualHeight = ADJUST_SCREEN_H + end + -- Camera.fieldOfView 视野: 这是垂直视野:水平FOV取决于视口的宽高比,当相机是正交时fieldofView被忽略 + -- 把实际高度与理想高度的比率scale乘加给Camera.fieldOfView。 + -- 这样就能达到自动调节分辨率的效果 + local scale = manualHeight / ADJUST_SCREEN_H + if scale < 0.7 then + scale = 0.7 + end + self.mainCamera.fieldOfView = self.originFieldOfView*scale +end + +return CameraManager \ No newline at end of file diff --git a/lua/app/common/camera_manager.lua.meta b/lua/app/common/camera_manager.lua.meta new file mode 100644 index 00000000..208de242 --- /dev/null +++ b/lua/app/common/camera_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ce97e1b52619a91449c6bc7a9c7ddb00 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/cell_manager.lua b/lua/app/common/cell_manager.lua new file mode 100644 index 00000000..a66e6258 --- /dev/null +++ b/lua/app/common/cell_manager.lua @@ -0,0 +1,20 @@ +local PrefabObject = require "app/bf/unity/uiprefab_object" + +local CellManager = {} + +function CellManager:loadCellAsync(path, cellComp, parent, callback) + UIPrefabManager:loadUIWidgetAsync(path, parent, function(prefab) + local cell = self:addCellComp(prefab, cellComp) + if callback then + callback(cell) + end + end) +end + +function CellManager:addCellComp(prefab, type) + prefab:initPrefabHelper() + prefab:genAllChildren() + return prefab:addLuaComponent(type) +end + +return CellManager diff --git a/lua/app/common/cell_manager.lua.meta b/lua/app/common/cell_manager.lua.meta new file mode 100644 index 00000000..7b5f8d5a --- /dev/null +++ b/lua/app/common/cell_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5166b8127fdf5cc46b58c1436b7a0832 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/config_manager.lua b/lua/app/common/config_manager.lua new file mode 100644 index 00000000..e3acc92d --- /dev/null +++ b/lua/app/common/config_manager.lua @@ -0,0 +1,119 @@ +local ConfigManager = { + configs = {} +} + +local CONFIG_PATH = "app/config/" + +function ConfigManager:_getConfig(configName) + local config = require(CONFIG_PATH .. configName) + self.configs[configName] = config + return config +end + +function ConfigManager:getConfig(configName) + local config = self.configs[configName] + if config == nil then + config = self:_getConfig(configName) + end + return config.data +end + +if NOT_PUBLISH then + ConfigManager.__getConfig = ConfigManager.getConfig + function ConfigManager:getConfig(configName) + if string.lower(configName) ~= configName then + Logger.logFatal("ConfigManager:getConfig 传入的表名不能有大写 " .. configName) + end + return self:__getConfig(configName) + end +end + +function ConfigManager:reloadConfig(configName) + self:clearConfigCache(configName) + self.configs[configName] = nil + self:getConfig(configName) +end + +function ConfigManager:getConfigNum(configName) + local config = self.configs[configName] + if config == nil then + config = self:_getConfig(configName) + end + return config.count +end + +function ConfigManager:getConfigWithOtherKey(configName, keyName) + local config = self.configs[configName] + if config == nil then + config = self:_getConfig(configName) + end + if config.keys == nil then + return nil + end + return config.keys[keyName] +end + +function ConfigManager:reloadAllConfig() + for configName, v in pairs(self.configs) do + self:reloadConfig(configName) + end + self:preLoadConfig() +end + +function ConfigManager:preLoadConfig() + local monsterBase = self:_getConfig("monster_base") + self:clearConfigCache("monster_base") + local baseData = monsterBase.data + local monsterFullData = {} + local count = 0 + local function handleMonsterGrow(name) + local monsterGrowConfig = self:_getConfig(name) + local growData = monsterGrowConfig.data + for k, v in pairs(growData) do + monsterFullData[k] = v + local data = baseData[v.monster_baseid] + if data then + monsterFullData[k].collision_radius = data.collision_radius + monsterFullData[k].model_id = data.model_id + monsterFullData[k].model_fight = data.model_fight + monsterFullData[k].fx_fight = data.fx_fight + monsterFullData[k].size = data.size + -- else + -- Logger.logHighlight("not data monster_baseid = " .. v.monster_baseid) + end + count = count + 1 + end + self:clearConfigCache(name) + end + handleMonsterGrow("monster_stage") + + self.configs["monster"] = { + data = monsterFullData, + count = count + } + + if EDITOR_MODE then + local realCount = 0 + for k, v in pairs(monsterFullData) do + realCount = realCount + 1 + end + if count ~= realCount then + Logger.logFatal("same id in monster config") + end + end +end + +function ConfigManager:getChapterConfig(id) + if not id then + return + end + local idx = math.ceil(id/5000) + local cfg = ConfigManager:getConfig("chapter" .. idx) + return cfg[id], cfg +end + +function ConfigManager:clearConfigCache(configName) + package.loaded[CONFIG_PATH .. configName] = nil +end + +return ConfigManager \ No newline at end of file diff --git a/lua/app/common/config_manager.lua.meta b/lua/app/common/config_manager.lua.meta new file mode 100644 index 00000000..d11396fb --- /dev/null +++ b/lua/app/common/config_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0086c4bdcaf18cc4ab0fa4c03ff47cf0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/data_manager.lua b/lua/app/common/data_manager.lua new file mode 100644 index 00000000..4458c698 --- /dev/null +++ b/lua/app/common/data_manager.lua @@ -0,0 +1,379 @@ +---@class DataManager +local DataManager = { + initByServer = false +} + +function DataManager:init() + self.cdCallBack = {} + self._cacheManager = {} + self:initManager("GameSettingData", "app/userdata/game_setting/game_setting_data") + self:initManager("BattleData", "app/userdata/battle/battle_data") + self:initManager("PlayerData", "app/userdata/player/player_data") + self:initManager("BagData", "app/userdata/bag/bag_data") + self:initManager("SummonData", "app/userdata/summon/summon_data") + self:initManager("MallActData", "app/userdata/shop/mall_act_data") + self:initManager("MallDailyData", "app/userdata/shop/mall_daily_data") + self:initManager("MallRechargeData", "app/userdata/shop/mall_recharge_data") + self:initManager("HeroData", "app/userdata/hero/hero_data") + self:initManager("ShopData","app/userdata/shop/shop_data") + self:initManager("MasteryData", "app/userdata/mastery/mastery_data") + self:initManager("FightInfoData","app/userdata/fight_info/fight_info_data") + self:initManager("MiningData","app/userdata/mining/mining_data") + self:initManager("ChapterData", "app/userdata/chapter/chapter_data") + self:initManager("ResearchData", "app/userdata/research/research_data") + self:initManager("DungeonData", "app/userdata/dungeon/dungeon_data") + self:initManager("ArenaData", "app/userdata/arena/arena_data") + self:initManager("IdleData", "app/userdata/idle/idle_data") + self:initManager("DailyTaskData", "app/userdata/activity/daily_task/daily_task_data") + self:initManager("SevenDayData", "app/userdata/activity/seven_day/seven_day_data") + self:initManager("TutorialTaskData", "app/userdata/tutorial/tutorial_task_data") + self:initManager("TutorialData", "app/userdata/tutorial/tutorial_data") + self:initManager("BlessingData", "app/userdata/blessing/blessing_data") + self:initManager("AccelerationData", "app/userdata/acceleration/acceleration_data") + self:initManager("BountyData", "app/userdata/bounty/bounty_data") + self:initManager("CollectionData", "app/userdata/collection/collection_data") + self:initManager("MailData", "app/userdata/mail/mail_data") + self:initManager("FundChapterData", "app/userdata/fund/fund_chapter_data") + if EDITOR_MODE then + self:initDataForLazy() + end +end + +function DataManager:initManager(name, path) + if self[name] then + self._cacheManager[name] = self[name] + end + self[name] = require(path):create() +end + +function DataManager:checkDataBind() + local changeBindFunc = function(baseData, curBaseData) + local data = baseData.data + if data then + local bindList = baseData.bindList + if bindList then + for fieldName, list in pairs(bindList) do + for _, v in ipairs(list) do + if v.binder.unBind then + v.binder:unBind(baseData, fieldName) + end + + if v.binder.bind then + if baseData.data[fieldName] ~= curBaseData.data[fieldName] then + v.binder:bind(curBaseData, fieldName, v.bindFunc, true) + else + v.binder:bind(curBaseData, fieldName, v.bindFunc) + end + end + end + end + end + baseData:clearBindAll() + end + end + + if self._cacheManager then -- 如果已经存在就检查一下绑定 + for name, baseData in pairs(self._cacheManager) do + if name == "BagData" then + changeBindFunc(baseData.ItemData, self[name].ItemData) + changeBindFunc(baseData.EquipData, self[name].EquipData) + changeBindFunc(baseData.LegacyData, self[name].LegacyData) + changeBindFunc(baseData.RuneData, self[name].RuneData) + else + changeBindFunc(baseData, self[name]) + end + end + end +end + +function DataManager:clear() + self.initWithServer = false + if self.cacheTimer then + SchedulerManager:unscheduleGlobal(self.cacheTimer) + self.cacheTimer = nil + end + self.cdCallBack = {} + + self.BattleData:clear() + self.MasteryData:clear() + self.DailyTaskData:clear() + self.SevenDayData:clear() + self.TutorialTaskData:clear() + self.TutorialData:clear() + self.AccelerationData:clear() + self.BountyData:clear() + self.MailData:clear() + self.PlayerData:clear() + + ModuleManager.TaskManager:clear() +end + +function DataManager:initWithServerData(data) + self:init() + Logger.logHighlight("------------------initWithServerData-----------------------") + Logger.printTable(data) + Time:setServerTimeZone(0) + Time:updateServerTime(data.now_ts) + Time:updateServerTimeToday(data.today_ts) + + self.initWithServer = true + self.signInfo = data.sign + self.todayFirstLogin = data.today_first_login + self.serverAttr = data.attrs + self.registerTs = (data.stat.register_ts or 0) // 1000 + data.heros = { + {cfg_id = 60001, lv = 4, curHid = 60001} + } + + self.PlayerData:init(data.basic_info) + self.BagData:init(data.bag) + self.ResearchData:init(data.mine) + self.FightInfoData:init(data.fight_info) + self.ShopData:init(data.mall) + self.SummonData:init(data.summon) + self.MasteryData:initData(data.mastery) + self.MiningData:init(data.mine) + self.ChapterData:init(data.chapter) + self.BattleData:init() + self.DungeonData:init(data.dungeon_info) + self.ArenaData:init(data.arena_info) + self.DailyTaskData:init(data.task_daily, true) + self.IdleData:init(data.idle) + self.SevenDayData:init(data.seven_day, true) + self.TutorialTaskData:init(data.task_tutor, true) + self.BlessingData:init(data.blessing) + self.CollectionData:init(data.collection) + -- 属性计算 依赖部分数据初始化 + self.HeroData:init(data.heros) + self.TutorialData:init(data.guide) + self.AccelerationData:init(data.acceleration) + self.BountyData:init(data.battle_pass, true) + self.FundChapterData:init(data.fund) + -- self.MailData:init(data.mail_info) + -- self._cacheManager["HeroData"]:init(data.items) + + --self.loginCount = data.loginCount or 1 + --self.createPlayerTime = GFunc.formatTimeStep(data.infoData.registerTime or Time:getServerTime()) + ----********** init start ******************* + --self.crossDayTS = Time:getOverOfServerToday() + self:scheduleGlobal() + + self:checkDataBind() + -- 检查属性是否和服务器一致 + GFunc.checkAttrWhitServerAttr() +end + +function DataManager:onServerTimeBack(serverTime, loginCount, loginTime) + self.loginCount = loginCount or 1 + self.loginTime = loginTime or Time:getServerTime() + self:scheduleGlobal() +end + +-- 是否首次登录 +function DataManager:getIsFirstLogin() + local nowTime = Time:getServerTime() + if self.registerTs%86400 == nowTime %8640 and self:getIsTodayFirstLogin() then + return true + end + return false +end + +function DataManager:getIsTodayFirstLogin() + return self.todayFirstLogin or false +end + +function DataManager:getIsInitWithServer() + return self.initWithServer +end + +function DataManager:getLoginTime() + return self.loginTime or 0 +end + +function DataManager:registerDataCd(dataName) + if not dataName then + return + end + for k, v in ipairs(self.cdCallBack) do + if v == dataName then + return + end + end + table.insert(self.cdCallBack, dataName) +end + +function DataManager:unregisterDataCd(dataName) + if not dataName then + return + end + for k, v in ipairs(self.cdCallBack) do + if v == dataName then + table.remove(self.cdCallBack, k) + break + end + end +end + +function DataManager:registerCrossDayFunc(bindId, func) + if not bindId or not func then + return + end + + if not self.crossDayCallbacks then + self.crossDayCallbacks = {} + end + for i, info in ipairs(self.crossDayCallbacks) do + if info.bindId == bindId then + self.crossDayCallbacks[i].func = func + self.crossDayCallbacks[i].open = true + return + end + end + + table.insert(self.crossDayCallbacks,{ + bindId = bindId, + func = func, + open = true + }) +end + +function DataManager:unregisterCrossDayFunc(bindId) + if not bindId then + return + end + + if not self.crossDayCallbacks then + return + end + for i, info in ipairs(self.crossDayCallbacks) do + if info.bindId == bindId then + self.crossDayCallbacks[i].open = false + return + end + end +end + +function DataManager:scheduleGlobal() + if self.cacheTimer then + return + end + + self.crossDayTS = Time:getOverOfServerToday() + self.cacheTimer = SchedulerManager:scheduleGlobal(function (inter) + for k, v in ipairs(self.cdCallBack) do + if self[v] and self[v].updateCd then + self[v]:updateCd() + end + end + + if Time:getServerTime() > self.crossDayTS then + self.crossDayTS = Time:getOverOfServerToday() + if self.crossDayCallbacks then + for i, info in ipairs(self.crossDayCallbacks) do + if info.func and info.open then + info.func() + end + end + end + + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_LOGIN_DAY) + end + end, 1) +end + +-- 获取登录天数 +function DataManager:getLoginCount() + return self.loginCount or 1 +end + +function DataManager:getSignInfo() + local nowTime = Time:getServerTime() + local lastSignTime = self.signInfo.latest_at // 1000 + local todayBeginTime = nowTime - nowTime % 86400 + local canSign = lastSignTime < todayBeginTime + if not ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SIGNIN) then + canSign = false + end + return self.signInfo.count or 0, canSign, self.hasSigned +end + +function DataManager:setSignCount(count) + self.hasSigned = true + self.signInfo.count = count + self.signInfo.latest_at = Time:getServerTime() * 1000 + --Logger.logHighlight("签到成功次数:"..count) +end + +function DataManager:resetSignInInfo() + self.hasSigned = false +end + +function DataManager:setLoginSuccess(success) + self.loginSuccess = success +end + +function DataManager:getLoginSuccess() + return self.loginSuccess +end + +-- 获取建号时间 +function DataManager:getCreatePlayerTime() + return self.createPlayerTime or Time:getServerTime() +end + +-- 记录sync了多少次数据,如果以后游戏中要回到登录界面,则此值应当被清除 +function DataManager:markSyncDataCount() + if not self.syncDataCount then + self.syncDataCount = 1 + else + self.syncDataCount = self.syncDataCount + 1 + end +end + +function DataManager:getSyncDataCount() + return self.syncDataCount or 0 +end + +function DataManager:needDealGm() + return self:getSyncDataCount() >= 2 +end + +---方便检索,仅编辑器模式使用 +function DataManager:initDataForLazy() + ---@type BagData + self.BagData = self:getManager("BagData") + ---@type PlayerData + self.PlayerData = self:getManager("PlayerData") + ---@type SummonData + self.SummonData = self:getManager("SummonData") + ---@type MallActData + self.MallActData = self:getManager("MallActData") + ---@type MallDailyData + self.MallDailyData = self:getManager("MallDailyData") + ---@type MallRechargeData + self.MallRechargeData = self:getManager("MallRechargeData") + ---@type ShopData + self.ShopData = self:getManager("ShopData") + ---@type MiningData + self.MiningData = self:getManager("MiningData") + ---@type ResearchData + self.ResearchData = self:getManager("ResearchData") + ---@type DungeonData + self.DungeonData = self:getManager("DungeonData") + ---@type ChapterData + self.ChapterData = self:getManager("ChapterData") + ---@type ArenaData + self.ArenaData = self:getManager("ArenaData") + ---@type FundChapterData + self.FundChapterData = self:getManager("FundChapterData") +end + +function DataManager:getManager(name, path) + if self[name] then + return self[name] + end + self[name] = require(path):create() + return self[name] +end + +return DataManager \ No newline at end of file diff --git a/lua/app/common/data_manager.lua.meta b/lua/app/common/data_manager.lua.meta new file mode 100644 index 00000000..9e9f2db8 --- /dev/null +++ b/lua/app/common/data_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 2f79b49cc05702742bc7fe6f56fd83d4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/device_helper.lua b/lua/app/common/device_helper.lua new file mode 100644 index 00000000..085f2765 --- /dev/null +++ b/lua/app/common/device_helper.lua @@ -0,0 +1,52 @@ +local DeviceHelper = {} + +local ThinkingAnalyticsAPI = CS.ThinkingAnalytics.ThinkingAnalyticsAPI +local PresetProperties = CS.ThinkingAnalytics.ThinkingAnalyticsAPI.GetPresetProperties() + +-- 提供给其他模块的接口 *************************************************************** + +-- 获取device_model +function DeviceHelper:getDeviceModel() + local name = CS.UnityEngine.SystemInfo.deviceModel + if not name or name == "" then + name = PresetProperties and PresetProperties.DeviceModel or "" + end + return name +end + +-- 获取device_id +function DeviceHelper:getDeviceId() + -- local id = "" + -- if ThinkingAnalyticsAPI then + -- id = ThinkingAnalyticsAPI:GetDeviceId() or "" + -- end + -- if not id or id == "" then + -- id = CS.UnityEngine.SystemInfo.deviceUniqueIdentifier or "" + -- end + -- return id + return CS.UnityEngine.SystemInfo.deviceUniqueIdentifier +end + +-- 获取os_version +function DeviceHelper:getOSVersion() + local version = CS.UnityEngine.SystemInfo.operatingSystem + if not version or version == "" then + version = PresetProperties and PresetProperties.OSVersion or "" + end + return version +end + +-- 获取网络状态 +function DeviceHelper:getNetworkType() + local networkType = "WIFI" + if CS.UnityEngine.Application.internetReachability == CS.UnityEngine.NetworkReachability.NotReachable then + networkType = "NONE" + elseif CS.UnityEngine.Application.internetReachability == CS.UnityEngine.NetworkReachability.ReachableViaCarrierDataNetwork then + networkType = "DATA" + elseif CS.UnityEngine.Application.internetReachability == CS.UnityEngine.NetworkReachability.ReachableViaLocalAreaNetwork then + networkType = "WIFI" + end + return networkType +end + +return DeviceHelper diff --git a/lua/app/common/device_helper.lua.meta b/lua/app/common/device_helper.lua.meta new file mode 100644 index 00000000..f9a031cf --- /dev/null +++ b/lua/app/common/device_helper.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4680cd9b6d735ce40a4167d4349a35c7 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/dotween_manager.lua b/lua/app/common/dotween_manager.lua new file mode 100644 index 00000000..b59a3bd6 --- /dev/null +++ b/lua/app/common/dotween_manager.lua @@ -0,0 +1,54 @@ +local DOTweenManager = {} + +local DOTweenSequence = CS.DG.Tweening.DOTween.Sequence + +function DOTweenManager:init() + -- 三个参数分别是recycleAllByDefault, useSafeMode, logBehaviour + if IS_PUBLISH then + CS.DG.Tweening.DOTween.Init(false, false, CS.DG.Tweening.LogBehaviour.ErrorsOnly) + else + CS.DG.Tweening.DOTween.Init(false, false, CS.DG.Tweening.LogBehaviour.Default) + end +end + +function DOTweenManager:createSeqWithIntId(id) + id = id or GConst.DOTWEEN_IDS.DEFAULT + local seq = DOTweenSequence() + seq:SetIntId(id) + return seq +end + +function DOTweenManager:createDOTweenToWithIntId(id, getter, setter, to, duration) + id = id or GConst.DOTWEEN_IDS.DEFAULT + local tween = CS.DG.Tweening.DOTween.To(getter, setter, to, duration) + tween:SetIntId(id) + return tween +end + +function DOTweenManager:createDOTweenTo(getter, setter, to, duration) + local tween = CS.DG.Tweening.DOTween.To(getter, setter, to, duration) + return tween +end + +-- 返回一个跟gameObject绑定的Sequence,当gameObject销毁的时候这个Sequence会跟着一起销毁 +-- 但是偶尔会有gameObject销毁的时候这个Sequence没有跟着一起销毁,尚未查明原因,所以谨慎使用 +function DOTweenManager:createSeqWithGameObject(gameObject) + local seq = DOTweenSequence() + seq:SetLink(gameObject) + return seq +end + +---@param trans UnityEngine.Transform +function DOTweenManager:doScale(trans,endValue, duration,onComplete) + ---@type DG.Tweening.Tweener + local tween = trans:DOScale(endValue, duration) + tween.onComplete = function() + if onComplete then + onComplete() + end + end +end + + + +return DOTweenManager \ No newline at end of file diff --git a/lua/app/common/dotween_manager.lua.meta b/lua/app/common/dotween_manager.lua.meta new file mode 100644 index 00000000..63470870 --- /dev/null +++ b/lua/app/common/dotween_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 96fe20bcfb5550147baf975320c6fbb9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/effect_manager.lua b/lua/app/common/effect_manager.lua new file mode 100644 index 00000000..83de096e --- /dev/null +++ b/lua/app/common/effect_manager.lua @@ -0,0 +1,139 @@ +local EffectObject = require "app/bf/unity/effect_object" + +local EffectManager = { + battleCacheList = {}, + battleCacheMap = {} +} + +local TypeOfGameObject = GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT +local BATTLE_CACHE_SIZE = 60 -- 战斗特效缓存容量s +local HERO_SHOW_FX_PATH = "assets/prefabs/effects/show/%s.prefab" + +function EffectManager:loadUIEffectAsync(path, ui, parent, order, callback) + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if ui:isClosed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + if parent == nil or parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + local effectObject = EffectObject:create() + effectObject:initWithPrefab(assetPath, prefab) + effectObject:addUnloadCallback(function(obj) + ResourceManager:unload(obj:getAssetPath()) + end) + ui:addEffect(effectObject, parent, order) + if callback then + callback(effectObject) + end + end) +end + +function EffectManager:loadEffectAsync(path, parent, callback) + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + local effectObject = EffectObject:create() + effectObject:initWithPrefab(assetPath, prefab) + effectObject:addUnloadCallback(function(obj) + ResourceManager:unload(obj:getAssetPath()) + end) + if parent then + effectObject:setParent(parent, false) + end + if callback then + callback(effectObject) + end + end) +end + +function EffectManager:loadHeroShowEffectAsync(name, parent, callback) + local path = string.format(HERO_SHOW_FX_PATH, name) + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + local effectObject = EffectObject:create() + effectObject:initWithPrefab(assetPath, prefab) + effectObject:addUnloadCallback(function(obj) + ResourceManager:unload(obj:getAssetPath()) + end) + if parent then + effectObject:setParent(parent, false) + end + if callback then + callback(effectObject) + end + end) +end + +function EffectManager:loadBattleEffectAsync(path, parent, callback) + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + local effectObject = EffectObject:create() + effectObject:initWithPrefab(assetPath, prefab) + effectObject:addUnloadCallback(function(obj) + local effectPath = obj:getAssetPath() + if self.battleCacheMap[effectPath] then + ResourceManager:unload(effectPath) + else + if #self.battleCacheList == BATTLE_CACHE_SIZE then + local headPath = table.remove(self.battleCacheList, 1) + ResourceManager:unload(headPath) + self.battleCacheMap[headPath] = nil + end + self.battleCacheMap[effectPath] = true + table.insert(self.battleCacheList, effectPath) + end + end) + if parent then + effectObject:setParent(parent, false) + end + if callback then + callback(effectObject) + end + end) +end + +function EffectManager:markCache(path) + if #self.battleCacheList >= BATTLE_CACHE_SIZE then + return false + end + if self.battleCacheMap[path] == nil then + self.battleCacheMap[path] = true + table.insert(self.battleCacheList, path) + return true + end + return false +end + +function EffectManager:isCacheFull() + return #self.battleCacheList == BATTLE_CACHE_SIZE +end + +function EffectManager:getCacheMaxSize() + return BATTLE_CACHE_SIZE +end + +function EffectManager:clearCache() + for _, path in ipairs(self.battleCacheList) do + ResourceManager:unload(path) + end + self.battleCacheList = {} + self.battleCacheMap = {} +end + +return EffectManager \ No newline at end of file diff --git a/lua/app/common/effect_manager.lua.meta b/lua/app/common/effect_manager.lua.meta new file mode 100644 index 00000000..29b2a73d --- /dev/null +++ b/lua/app/common/effect_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a7961ab6279bf974aa9f71d8a2797922 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/event_manager.lua b/lua/app/common/event_manager.lua new file mode 100644 index 00000000..547132dd --- /dev/null +++ b/lua/app/common/event_manager.lua @@ -0,0 +1,277 @@ +local EventManager = { + listeners = {}, + listenerIndex = 0, + dispatchCount = 0, + waitRemoveMap = {}, + waitAddMap = {}, +} + +EventManager.CUSTOM_EVENT = { + -- MAIN_SOCKET_MESSAGE = "MAIN_SOCKET_MESSAGE", -- 游戏主链接所有消息 + -- UI_LOADING_PERCENT = "UI_LOADING_PERCENT", -- loading进度 + ON_BATTLE_START = "ON_BATTLE_START", -- 战斗开始 + BATTLE_OPERATION_FINISH = "BATTLE_OPERATION_FINISH", -- 战斗中操作完毕 + BATTLE_OPERATION_START = "BATTLE_OPERATION_START", -- 战斗中当玩家开始操作时 + BATTLE_END = "BATTLE_END", -- 战斗结束 + UI_SHOW_COMPLETE = "UI_SHOW_COMPLETE", -- UI打开完毕 + UI_CUSTOM_ANIMATION_COMPLETE = "UI_CUSTOM_ANIMATION_COMPLETE", -- UI自定义动画完毕 + UI_CLOSE = "UI_CLOSE", -- UI关闭 + -- I18N_CHANGE_LANGUAGE = "I18N_CHANGE_LANGUAGE", -- 切换语言 + UPGRADE_EQUIP = "UPGRADE_EQUIP", -- 升级装备 + STAGE_TEAM_UP_FORMATION = "STAGE_TEAM_UP_FORMATION", -- 关卡上阵英雄 + -- SELL_EQUIP = "SELL_EQUIP", -- 战斗结算界面出售装备 + LOGIN_REQ_SUCCESS = "LOGIN_REQ_SUCCESS", -- 登录请求成功,准备进入游戏 + HERO_WEAR_EQUIP = "HERO_WEAR_EQUIP", -- 英雄穿上一件装备 + GET_MAIN_TASK_REWARD = "GET_MAIN_TASK_REWARD", -- 主线任务奖励领取成功 + -- MARKET_HAD_REFRESH = "MARKET_HAD_REFRESH", -- 市集已刷新 + -- SHOW_MAIN_TASK_WEAK_FINGER = "SHOW_MAIN_TASK_WEAK_FINGER", -- 显示主线任务的弱引导手指 + -- CLOSE_LV_UP_UI_WITHOUT_GOTO = "CLOSE_LV_UP_UI_WITHOUT_GOTO", -- 正常关闭升级界面,没有触发前往 + -- BIND_SDK_SUCCESS = "BIND_SDK_SUCCESS", -- 绑定SDK成功 + ON_TUTORIAL_BATTLE_TEAM_ENTER = "ON_TUTORIAL_BATTLE_TEAM_ENTER", -- 假战斗引导专用,当队伍入场完后 + ON_BATTLE_INIT_OVER = "ON_BATTLE_INIT_OVER", -- 战斗初始化完成 + -- EXPEDITION_SHOW_DOUBLE_CHECK_UI = "EXPEDITION_SHOW_DOUBLE_CHECK_UI", -- 远征展示二次确认框 + -- EXPEDITION_RESET_HEAD_POS = "EXPEDITION_RESET_HEAD_POS", -- 远征重置头像位置 + -- EXPEDITION_SHOW_BUFF_VFX = "EXPEDITION_SHOW_BUFF_VFX", -- 远征显示buff特效动画 + MAIN_UI_CHECK_POP = "MAIN_UI_CHECK_POP", -- 主界面检查弹出界面 + -- CHANGE_WELCOME_COMP = "CHANGE_WELCOME_COMP", -- 切换新手活动comp + + -- 公会成员已达上限 + -- GUILD_MEMBER_MAX = "GUILD_MEMBER_MAX", -- 公会成员已达上限 + -- 装备上锁 + -- EQUIP_LOCK = "EQUIP_LOCK", -- 装备上锁 + + -- 割草 + CHANGE_MAIN_CITY_PAGE = "CHANGE_MAIN_CITY_PAGE", -- 切换主城页签 + -- CHANGE_MAIN_CITY_PAGE_VIT = "CHANGE_MAIN_CITY_PAGE_VIT", -- 切换主城页签 + -- 英雄降临 + -- CHANGE_NEW_HERO_COMP = "CHANGE_NEW_HERO_COMP", -- 切换英雄活动COMP + -- 转盘 + -- CHANGE_TURNTABLE_COMP = "CHANGE_TURNTABLE_COMP", -- 切换转盘活动COMP + -- 守护活动 + -- CHANGE_GUARD_COMP = "CHANGE_GUARD_COMP", -- 切换守护活动COMP + -- EQUIP_LV_UP = "EQUIP_LV_UP", -- 装备升级成功 + -- EQUIP_RESOLVE = "EQUIP_RESOLVE", -- 装备重置成功 + -- EQUIP_MERGE = "EQUIP_MERGE", -- 装备合成成功 + -- EQUIP_QUICK_MERGE = "EQUIP_QUICK_MERGE", -- 装备快速合成成功 + -- EQUIP_REBACK = "EQUIP_REBACK", -- 装备回退成功 + -- EQUIP_REFINE = "EQUIP_REFINE", -- 装备精炼成功 + -- HERO_UNLOCK = "HERO_UNLOCK", -- 英雄解锁 + -- HERO_STAR_UP = "HERO_STAR_UP", -- 英雄升星成功 + -- HERO_LV_UP = "HERO_LV_UP", -- 英雄升级成功 + -- TALENT_UP = "TALENT_UP", -- 天赋升级 + -- BATTLE_FINISH = "BATTLE_FINISH", -- 战斗结束 + -- CHAPTER_BOX_REWARD = "CHAPTER_BOX_REWARD", -- 领取宝箱奖励 + -- UPDATE_DATA = "UPDATE_DATA", -- 更新数据 + SUMMON_FINISH = "SUMMON_FINISH", -- 抽卡结束 + -- REVIVE_SUCC = "REVIVE_SUCC", -- 战斗复活成功 + -- CHANGE_ACTIVITY_NORMAL_COMP = "CHANGE_ACTIVITY_NORMAL_COMP", -- 切换活动COMP + + -- NAME_REPEAT = "NAME_REPEAT", -- 重名 + -- BUY_MONTH_CARD = "BUY_MONTH_CARD", -- 购买月卡 + -- PLAY_FLY_ANI = "PLAY_FLY_ANI", + -- NEWSUMMON_OVER = "NEWSUMMON_OVER", + -- WISHSUMMON_OVER = "WISHSUMMON_OVER", + -- JEWELRY_MERGE_OVER = "JEWELRY_MERGE_OVER", + -- JEWELRY_AUTO_MERGE_OVER = "JEWELRY_AUTO_MERGE_OVER", + -- CDKEY_FINISH = "CDKEY_FINISH", + -- BLACK_SUMMON_OVER = "BLACK_SUMMON_OVER", + -- ON_CLAIMED_ASK_REWARD = "ON_CLAIMED_ASK_REWARD", + -- ON_CLAIMED_GUESS_REWARD = "ON_CLAIMED_GUESS_REWARD", + -- ON_ASKING_CONFIRM = "ON_ASKING_CONFIRM", + + -- PLAY_DRAGON_BUILD_ANIMATION = "PLAY_DRAGON_BUILD_ANIMATION", -- 邪龙动画 + + -- SPRING_DUEL_CROSS_DAY = "SPRING_DUEL_CROSS_DAY", + -- SPRING_DUEL_REQUEST_RANK_LIST = "SPRING_DUEL_REQUEST_RANK_LIST", + + -- ON_VIT_CHANGED = "ON_VIT_CHANGED", -- 体力变更时 + + -- B5新增 + BATTLE_HERO_USE_ACTIVE_SKILL = "BATTLE_HERO_USE_ACTIVE_SKILL", + BATTLE_HERO_REFRESH_SKILL = "BATTLE_HERO_REFRESH_SKILL", + BATTLE_CHAPTER_CHANGE = "BATTLE_CHAPTER_CHANGE", + BATTLE_SHOW_CHAPTER_BLACK_UI = "BATTLE_SHOW_CHAPTER_BLACK_UI", + BATTLE_CLOSE_CHAPTER_BLACK_UI = "BATTLE_CLOSE_CHAPTER_BLACK_UI", + BATTLE_SHOW_TOAST = "BATTLE_SHOW_TOAST", + BATTLE_BLACK_UI_CLOSE = "BATTLE_BLACK_UI_CLOSE", + BATTLE_READY_ENTER_DUNGEON = "BATTLE_READY_ENTER_DUNGEON", + BATTLE_REVIVE = "BATTLE_REVIVE", + BATTLE_REVIVE_RSP = "BATTLE_REVIVE_RSP", + BATTLE_ADD_PASSIVE_SKILL = "BATTLE_ADD_PASSIVE_SKILL", + BATTLE_CHANGE_PAS_SKILL = "BATTLE_CHANGE_PAS_SKILL", + PLAYER_RENAME = "PLAYER_RENAME", + GET_ANY_KEY_DOWN = "GET_ANY_KEY_DOWN", + NAME_REPEAT = "NAME_REPEAT", + TRAIN_REBORN = "TRAIN_REBORN", -- 重生 + TRAIN_PASS_UP = "TRAIN_PASS_UP", -- 速通 + + CLOSE_BATTLE_FAIL = "CLOSE_BATTLE_FAIL", + SIGN_IN_SUCCESS = "SIGN_IN_SUCCESS", -- 签到成功 + CURRENCY_BAR_FLY = "CURRENCY_BAR_FLY", + CURRENCY_BAR_FLY_OVER = "CURRENCY_BAR_FLY_OVER", + -- 挂机广告 + IDLE_DROP_AD_GET = "IDLE_DROP_AD_GET", + ATK_TRAIN_LEVEL_UP = "ATK_TRAIN_LEVEL_UP", + -- 装备变化 + WEAR_WEAPON_CHANGE = "WEAR_WEAPON_CHANGE", + -- 速通结束 + QUICK_PASS_FINISH = "QUICK_PASS_FINISH", + TUTORIAL_TASK_REWARD = "TUTORIAL_TASK_REWARD", + ATK_TRAIN_TUTORIAL_OVER = "ATK_TRAIN_TUTORIAL_OVER", + TUTORIAL_TASK_STOP = "TUTORIAL_TASK_STOP", +} + +-- 此方法不能直接在外部调用,请使用例如BaseUI,BaseModule等封装好的接口 +function EventManager:addEventListener(name, func, priority) + if self.listeners[name] == nil then + self.listeners[name] = {} + end + local tag = self.listenerIndex + 1 + self.listenerIndex = tag + priority = priority or 0 + if self.dispatchCount > 0 then + if not self.waitAddMap[name] then + self.waitAddMap[name] = {} + end + table.insert(self.waitAddMap[name], {func, tag, priority}) + else + local insert = false + if priority > 0 then + for k, v in ipairs(self.listeners[name]) do + if priority <= v[3] then + insert = true + table.insert(self.listeners[name], k, {func, tag, priority}) + break + end + end + end + if not insert then + table.insert(self.listeners[name], {func, tag, priority}) + end + end + return tag +end + +function EventManager:removeEventListener(name, tag) + if self.listeners[name] then + for k, v in ipairs(self.listeners[name]) do + if v[2] == tag then + if self.dispatchCount > 0 then + v[4] = 1 + self.waitRemoveMap[name] = 1 + else + table.remove(self.listeners[name], k) + end + break + end + end + end + + if self.waitAddMap[name] then + local listenerList = self.waitAddMap[name] + for index, listener in ipairs(listenerList) do + if listener[2] == tag then + table.remove(listenerList, index) + break + end + end + end +end + +function EventManager:removeEventListenersByEvent(name) + self.listeners[name] = nil + self.waitAddMap[name] = nil + self.waitRemoveMap[name] = nil +end + +function EventManager:dispatchEvent(name, ...) + self.dispatchCount = self.dispatchCount + 1 + local listenerList = self.listeners[name] + if listenerList then + local continue = nil + for k, v in ipairs(listenerList) do + if v[4] == nil then + continue = v[1](...) + if continue == false then + break + end + end + end + end + self.dispatchCount = self.dispatchCount - 1 + + if self.dispatchCount > 0 then + return + end + + -- 处理等待移除 + for removeName, v in pairs(self.waitRemoveMap) do + local listenerList = self.listeners[removeName] + if listenerList then + local count = #listenerList + for i = count, 1, -1 do + if listenerList[i] and listenerList[i][4] then + table.remove(listenerList, i) + end + end + end + self.waitRemoveMap[removeName] = nil + end + + -- 处理等待添加 + for addName, v in pairs(self.waitAddMap) do + for i = 1, #v do + local insert = false + local listener = table.remove(v) + local listenerPriority = listener[3] + if listenerPriority > 0 then + for k, existListener in ipairs(self.listeners[addName]) do + if listenerPriority <= existListener[3] then + insert = true + table.insert(self.listeners[addName], k, listener) + break + end + end + end + if not insert then + table.insert(self.listeners[addName], listener) + end + end + self.waitAddMap[addName] = nil + end +end + +function EventManager:removeAllEventListeners() + self.listeners = {} + self.waitRemoveMap = {} + self.waitAddMap = {} + self.listenerIndex = 0 +end + +function EventManager:clear() + self:removeAllEventListeners() +end + +if NOT_PUBLISH then + function EventManager:_checkDebugAddEventListenerFuncMap() + if self._debugAddEventListenerFuncMap == nil then + self._debugAddEventListenerFuncMap = { + [BaseUI.addEventListener] = true, + [BaseScene.addEventListener] = true, + [BaseModule.addEventListener] = true, + } + end + end + + EventManager._releaseAddEventListener = EventManager.addEventListener + function EventManager:addEventListener(...) + self:_checkDebugAddEventListenerFuncMap() + local currFunc = debug.getinfo(2, "f").func + if self._debugAddEventListenerFuncMap[currFunc] == nil then + Logger.logFatal("you can not call EventManager:addEventListener directly") + end + return self:_releaseAddEventListener(...) + end +end + +return EventManager \ No newline at end of file diff --git a/lua/app/common/event_manager.lua.meta b/lua/app/common/event_manager.lua.meta new file mode 100644 index 00000000..9409a22c --- /dev/null +++ b/lua/app/common/event_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1d164e3f2ae911e489e090f7155b2743 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/font_manager.lua b/lua/app/common/font_manager.lua new file mode 100644 index 00000000..40f342a9 --- /dev/null +++ b/lua/app/common/font_manager.lua @@ -0,0 +1,166 @@ +local FontManager = { + defaultFontAssets = nil, + fallbackFontAssetsName = nil, + fallbackFontAssets = nil, +} + +local DEFAULT_FONT_PATH = "assets/arts/fonts/tmpfonts/default/tmpfont/font_sdf.asset" +-- local DEFAULT_FONT_TITLE_PATH = "assets/arts/fonts/tmpfonts/default/tmpfont/font_title_sdf.asset" + +local LANGUAGE_FONT_PATH = { + [GConst.LANGUAGE.CHINESE] = "assets/arts/fonts/tmpfonts/cn/tmpfont/font_sdf.asset", + [GConst.LANGUAGE.ENGLISH] = "assets/arts/fonts/tmpfonts/en/tmpfont/font_sdf.asset", + [GConst.LANGUAGE.CHINESE_TC] = "assets/arts/fonts/tmpfonts/zh/tmpfont/font_sdf.asset", + [GConst.LANGUAGE.RUSSIAN] = "assets/arts/fonts/tmpfonts/ru/tmpfont/font_sdf.asset", + [GConst.LANGUAGE.THAILAND] = "assets/arts/fonts/tmpfonts/th/tmpfont/font_sdf.asset", + [GConst.LANGUAGE.INDONESIA] = "assets/arts/fonts/tmpfonts/id/tmpfont/font_sdf.asset", + [GConst.LANGUAGE.VIETNAMESE] = "assets/arts/fonts/tmpfonts/vi/tmpfont/font_sdf.asset", +} + +local LANGUAGE_FONT_TITLE_PATH = { + [GConst.LANGUAGE.CHINESE] = "assets/arts/fonts/tmpfonts/cn/tmpfont/font_title_sdf.asset", + [GConst.LANGUAGE.ENGLISH] = "assets/arts/fonts/tmpfonts/en/tmpfont/font_title_sdf.asset", + [GConst.LANGUAGE.CHINESE_TC] = "assets/arts/fonts/tmpfonts/zh/tmpfont/font_title_sdf.asset", + [GConst.LANGUAGE.RUSSIAN] = "assets/arts/fonts/tmpfonts/ru/tmpfont/font_title_sdf.asset", + [GConst.LANGUAGE.THAILAND] = "assets/arts/fonts/tmpfonts/th/tmpfont/font_title_sdf.asset", + [GConst.LANGUAGE.INDONESIA] = "assets/arts/fonts/tmpfonts/id/tmpfont/font_title_sdf.asset", + [GConst.LANGUAGE.VIETNAMESE] = "assets/arts/fonts/tmpfonts/vi/tmpfont/font_title_sdf.asset", +} + +function FontManager:changeLanguage(language, callback) + self.fontLoaded = false + -- if not self.defaultFontAssets or not self.defaultFontTitleAssets then + if not self.defaultFontAssets then + local count = 0 + -- local totalCount = 2 + local totalCount = 1 + local function finish() + count = count + 1 + if count == totalCount then + self:_changeLanguage(language, callback) + end + end + + ResourceManager:loadOriginAssetAsync(DEFAULT_FONT_PATH, GConst.TYPEOF_UNITY_CLASS.TMP_FONT_ASSET, function (path, obj) + self.defaultFontAssets = obj + -- --特殊处理下划线 + -- local underlineCharater = self.defaultFontAssets:GetTMPCharacter(0x5F) + -- self.defaultFontAssets:ClearTMPCharacter() + -- self.defaultFontAssets:AddTMPCharacter(0x5F, underlineCharater) + finish() + end) + + -- ResourceManager:loadOriginAssetAsync(DEFAULT_FONT_TITLE_PATH, GConst.TYPEOF_UNITY_CLASS.TMP_FONT_ASSET, function (path, obj) + -- self.defaultFontTitleAssets = obj + -- --特殊处理下划线 + -- local underlineCharater = self.defaultFontTitleAssets:GetTMPCharacter(0x5F) + -- self.defaultFontTitleAssets:ClearTMPCharacter() + -- self.defaultFontTitleAssets:AddTMPCharacter(0x5F, underlineCharater) + -- finish() + -- end) + else + --特殊处理下划线 + -- local underlineCharater = self.defaultFontAssets:GetTMPCharacter(0x5F) + -- self.defaultFontAssets:ClearTMPCharacter() + -- self.defaultFontAssets:AddTMPCharacter(0x5F, underlineCharater) + + -- underlineCharater = self.defaultFontTitleAssets:GetTMPCharacter(0x5F) + -- self.defaultFontTitleAssets:ClearTMPCharacter() + -- self.defaultFontTitleAssets:AddTMPCharacter(0x5F, underlineCharater) + + self:_changeLanguage(language, callback) + end +end + +function FontManager:_changeLanguage(language, callback) + -- self.defaultFontAssets.fallbackFontAssetTable:Clear() + -- self.defaultFontTitleAssets.fallbackFontAssetTable:Clear() + + -- local fontPath = LANGUAGE_FONT_PATH[language] + -- local fontTitlePath = LANGUAGE_FONT_TITLE_PATH[language] + -- if fontPath and fontTitlePath then + -- if fontPath then + -- local count = 0 + -- local totalCount = 2 + -- local totalCount = 1 + -- local function finish() + -- count = count + 1 + -- if count == totalCount then + -- self.fontLoaded = true + -- if callback then + -- callback() + -- end + -- if self.onFontLoadedCallback then + -- local func = self.onFontLoadedCallback + -- self.onFontLoadedCallback = nil + -- func() + -- end + -- end + -- end + + -- if self.fallbackFontAssetsName then + -- ResourceManager:unload(self.fallbackFontAssetsName) + -- end + -- ResourceManager:loadOriginAssetAsync(fontPath, GConst.TYPEOF_UNITY_CLASS.TMP_FONT_ASSET, function (path, obj) + -- self.fallbackFontAssetsName = fontPath + -- self.fallbackFontAssets = obj + -- local faceInfo = self.fallbackFontAssets.faceInfo + -- self.defaultFontAssets.faceInfo = faceInfo + -- -- 编辑模式下就实例化一下,否则对字体资源的fallback的修改会保存到本地 + -- if EDITOR_MODE then + -- self.defaultFontAssets.fallbackFontAssetTable:Add(CS.UnityEngine.Object.Instantiate(self.fallbackFontAssets)) + -- else + -- self.defaultFontAssets.fallbackFontAssetTable:Add(self.fallbackFontAssets) + -- end + -- finish() + -- end) + + -- if self.fallbackFontTitleAssetsName then + -- ResourceManager:unload(self.fallbackFontTitleAssetsName) + -- end + -- ResourceManager:loadOriginAssetAsync(fontTitlePath, GConst.TYPEOF_UNITY_CLASS.TMP_FONT_ASSET, function (path, obj) + -- self.fallbackFontTitleAssetsName = fontTitlePath + -- self.fallbackFontTitleAssets = obj + -- local faceInfo = self.fallbackFontTitleAssets.faceInfo + -- self.defaultFontTitleAssets.faceInfo = faceInfo + -- -- 编辑模式下就实例化一下,否则对字体资源的fallback的修改会保存到本地 + -- if EDITOR_MODE then + -- self.defaultFontTitleAssets.fallbackFontAssetTable:Add(CS.UnityEngine.Object.Instantiate(self.fallbackFontTitleAssets)) + -- else + -- self.defaultFontTitleAssets.fallbackFontAssetTable:Add(self.fallbackFontTitleAssets) + -- end + -- finish() + -- end) + -- else + -- self.fontLoaded = true + -- if callback then + -- callback() + -- end + -- if self.onFontLoadedCallback then + -- local func = self.onFontLoadedCallback + -- self.onFontLoadedCallback = nil + -- func() + -- end + -- Logger.logError("there is not this font path in const") + -- end + + -- 动态字体图集 + self.fontLoaded = true + if callback then + callback() + end + if self.onFontLoadedCallback then + local func = self.onFontLoadedCallback + self.onFontLoadedCallback = nil + func() + end +end + +function FontManager:onFontLoaded(callback) + if self.fontLoaded then + return callback and callback() + end + self.onFontLoadedCallback = callback +end + +return FontManager \ No newline at end of file diff --git a/lua/app/common/font_manager.lua.meta b/lua/app/common/font_manager.lua.meta new file mode 100644 index 00000000..d4ce3dc0 --- /dev/null +++ b/lua/app/common/font_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: be33ebb69c121324eb5cb07028b6d405 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/i18n_manager.lua b/lua/app/common/i18n_manager.lua new file mode 100644 index 00000000..f7c0084f --- /dev/null +++ b/lua/app/common/i18n_manager.lua @@ -0,0 +1,374 @@ +local GlobalConst = require "app/config/localization/localization_global_const" +local FontMgr = require "app/common/font_manager" + +local I18N = { + configs = {}, + cacheGlobalFormatParamSequnce = {}, + cacheNormalFormatParamSequnce = {}, + cacheGlobalIndex = 0, +} + +I18N.GlobalConst = GlobalConst + +local MONSTER_METATABLE = { + __index = function(t, k) + if rawget(t, k) == nil then + local realId = ConfigManager:getConfig("monster")[k].monster_baseid + local v = t._realConfig[realId] + if v then + rawset(t, k, v) + end + return v + end + return rawget(t, k) + end +} + +local CONFIG_PATH = "app/config/strings/%s/" + +local SUPPORT_LANGUAGE_LIST = { + GConst.LANGUAGE.ENGLISH, + GConst.LANGUAGE.CHINESE, + GConst.LANGUAGE.CHINESE_TC, + -- -- GConst.LANGUAGE.RUSSIAN, -- 俄罗斯 + -- -- GConst.LANGUAGE.THAILAND, -- 泰国 + -- GConst.LANGUAGE.INDONESIA, -- 印度尼西亚 + -- GConst.LANGUAGE.VIETNAMESE, -- 越南 + -- GConst.LANGUAGE.FRENCH, -- 法语 + -- -- GConst.LANGUAGE.ITALIAN, -- 意大利 + -- GConst.LANGUAGE.GERMAN, -- 德国 + -- -- GConst.LANGUAGE.SPANISH, -- 西班牙 + -- GConst.LANGUAGE.PORTUGUESE, -- 葡萄牙 + -- -- GConst.LANGUAGE.TURKISH, -- 土耳其 + -- -- GConst.LANGUAGE.MALAYSIA, -- 马来西亚 + -- GConst.LANGUAGE.JAPANESE, -- 日本 + -- GConst.LANGUAGE.KOREAN, -- 韩国 +} + +local SUPPORT_SERVER_LANGUAGE = { + [GConst.LANGUAGE.ENGLISH] = "en_US", + [GConst.LANGUAGE.CHINESE] = "zh_CN", + [GConst.LANGUAGE.CHINESE_TC] = "zh_TW", + [GConst.LANGUAGE.FRENCH] = "fr_FR", + [GConst.LANGUAGE.GERMAN] = "de_DE", + [GConst.LANGUAGE.RUSSIAN] = "ru_RU", + [GConst.LANGUAGE.THAILAND] = "th_TH", + [GConst.LANGUAGE.INDONESIA] = "in_ID", + [GConst.LANGUAGE.VIETNAMESE] = "vi_VN", + [GConst.LANGUAGE.JAPANESE] = "ja_JP", + [GConst.LANGUAGE.KOREAN] = "ko_KR", +} + +local LANGUAGE_NAME_KEY = { + [GConst.LANGUAGE.ENGLISH] = 1, + [GConst.LANGUAGE.CHINESE] = 1, + [GConst.LANGUAGE.CHINESE_TC] = 1, + [GConst.LANGUAGE.FRENCH] = 1, + -- [GConst.LANGUAGE.ITALIAN] = 1, + [GConst.LANGUAGE.GERMAN] = 1, + -- [GConst.LANGUAGE.SPANISH] = 1, + -- [GConst.LANGUAGE.RUSSIAN] = 1, + [GConst.LANGUAGE.PORTUGUESE] = 1, + -- [GConst.LANGUAGE.TURKISH] = 1, + -- [GConst.LANGUAGE.THAILAND] = 1, + -- [GConst.LANGUAGE.MALAYSIA] = 1, + [GConst.LANGUAGE.INDONESIA] = 1, + [GConst.LANGUAGE.VIETNAMESE] = 1, + [GConst.LANGUAGE.JAPANESE] = 1, + [GConst.LANGUAGE.KOREAN] = 1, +} + +local MOBILE_LANG_MAP = { + ["en"] = GConst.LANGUAGE.ENGLISH, + ["cn"] = GConst.LANGUAGE.CHINESE, + ["zh"] = GConst.LANGUAGE.CHINESE_TC, + ["fr"] = GConst.LANGUAGE.FRENCH, + ["it"] = GConst.LANGUAGE.ITALIAN, + ["de"] = GConst.LANGUAGE.GERMAN, + ["es"] = GConst.LANGUAGE.SPANISH, + ["ru"] = GConst.LANGUAGE.RUSSIAN, + ["pt"] = GConst.LANGUAGE.PORTUGUESE, + ["tr"] = GConst.LANGUAGE.TURKISH, + ["th"] = GConst.LANGUAGE.THAILAND, + ["ms"] = GConst.LANGUAGE.MALAYSIA, + ["in"] = GConst.LANGUAGE.INDONESIA, + ["vi"] = GConst.LANGUAGE.VIETNAMESE, + ["ja"] = GConst.LANGUAGE.JAPANESE, + ["ko"] = GConst.LANGUAGE.KOREAN, +} + +local LANGUAGE_NOMARL_SPRITE = { + [GConst.LANGUAGE.ENGLISH] = "setting_language_en1", + [GConst.LANGUAGE.CHINESE] = "setting_language_cn1", + [GConst.LANGUAGE.CHINESE_TC] = "setting_language_tw1", + + [GConst.LANGUAGE.FRENCH] = "setting_language_fr1", + [GConst.LANGUAGE.ITALIAN] = "setting_language_it1", + [GConst.LANGUAGE.GERMAN] = "setting_language_de1", + [GConst.LANGUAGE.SPANISH] = "setting_language_sp1", + [GConst.LANGUAGE.RUSSIAN] = "setting_language_ru1", + [GConst.LANGUAGE.PORTUGUESE] = "setting_language_pt1", + [GConst.LANGUAGE.TURKISH] = "setting_language_tr1", + [GConst.LANGUAGE.THAILAND] = "setting_language_th1", + [GConst.LANGUAGE.MALAYSIA] = "setting_language_ms1", + [GConst.LANGUAGE.INDONESIA] = "setting_language_id1", + +} + +local LANGUAGE_HIGHLIGHT_SPRITE = { + [GConst.LANGUAGE.ENGLISH] = "setting_language_en2", + [GConst.LANGUAGE.CHINESE] = "setting_language_cn2", + [GConst.LANGUAGE.CHINESE_TC] = "setting_language_tw2", + + [GConst.LANGUAGE.FRENCH] = "setting_language_fr2", + [GConst.LANGUAGE.ITALIAN] = "setting_language_it2", + [GConst.LANGUAGE.GERMAN] = "setting_language_de2", + [GConst.LANGUAGE.SPANISH] = "setting_language_sp2", + [GConst.LANGUAGE.RUSSIAN] = "setting_language_ru2", + [GConst.LANGUAGE.PORTUGUESE] = "setting_language_pt2", + [GConst.LANGUAGE.TURKISH] = "setting_language_tr2", + [GConst.LANGUAGE.THAILAND] = "setting_language_th2", + [GConst.LANGUAGE.MALAYSIA] = "setting_language_ms2", + [GConst.LANGUAGE.INDONESIA] = "setting_language_id2", +} + +function I18N:init() + local curLanguage = LocalData:getSelectedLanguage() + if curLanguage == "" or not self:supportLanguage(curLanguage) then + curLanguage = self:getSystemLanguage() + if curLanguage == nil then + curLanguage = CS.BF.BFPlatform.GetCurrentLanguageInfo():GetFallbackLanguage() + end + end + + local changeStatus = self:setLanguage(curLanguage, true) + if changeStatus then + FontMgr:changeLanguage(self.curLanguage or GConst.LANGUAGE.ENGLISH) + end +end + +function I18N:supportLanguage(language) + return LANGUAGE_NAME_KEY[language] +end + +function I18N:setLanguage(language, firstInit) + if not self:supportLanguage(language) then + local fallbackLanguage = CS.BF.BFPlatform.GetCurrentLanguageInfo():GetFallbackLanguage() + language = fallbackLanguage + end + + if not language or language == self.curLanguage then + return + end + LocalData:setSelectedLanguage(language) + self:clear() + self.curLanguage = language + + self.configPath = string.format(CONFIG_PATH, self.curLanguage) + + local monsterTable = { + _realConfig = false + } + setmetatable(monsterTable, MONSTER_METATABLE) + self.configs["monster"] = { + data = monsterTable, + } + if not firstInit then + self:preLoadConfig() + end + + Logger.logHighlight("setLanguage = %s", language) + return true +end + +function I18N:onFontLoaded(callback) + FontMgr:onFontLoaded(callback) +end + +function I18N:preLoadConfig() + -- local config = self:getConfig("monster") + -- if not config._realConfig then + -- config._realConfig = require(self.configPath .. "monster_base").data + -- end +end + +function I18N:clear() + for name, v in pairs(self.configs) do + self:clearConfigCache(name) + self.configs[name] = nil + end + + --清除缓存 + self.cacheGlobalFormatParamSequnce = {} + self.cacheNormalFormatParamSequnce = {} + self.cacheGlobalIndex = 0 +end + +function I18N:clearConfigCache(configName) + package.loaded[self.configPath .. configName] = nil +end + +function I18N:getCurLanguage() + return self.curLanguage +end + +function I18N:getLanguageSprite(language) + return LANGUAGE_NOMARL_SPRITE[language] +end + +function I18N:getSeletedSprite(language) + return LANGUAGE_HIGHLIGHT_SPRITE[language] +end + +function I18N:getSystemLanguage() + local sdkLanguage = CS.BF.BFMain.Instance.SDKMgr:GetLanguage() + print("I18N get sdk language " .. sdkLanguage) + local languageInfo = string.split(sdkLanguage, "_") + if not languageInfo or #languageInfo ~= 2 then + print("I18N return system language nil") + return nil + end + local language = languageInfo[1] + local country = languageInfo[2] + if language and language == "zh" then + if country and country == "CN" then + language = "cn" + end + end + language = MOBILE_LANG_MAP[language] + if not self:supportLanguage(language) then + language = nil + end + if language then + Logger.log("I18N return system language %s", language) + else + Logger.log("I18N return system language nil") + end + return language +end + +function I18N:getSupportLanguageList() + return SUPPORT_LANGUAGE_LIST +end + +function I18N:_getConfig(configName) + local config + if configName == "global" then + config = {} + config.data = require(self.configPath .. configName) + else + config = require(self.configPath .. configName) + end + self.configs[configName] = config + return config +end + +function I18N:getConfig(configName) + local config = self.configs[configName] + if config == nil then + config = self:_getConfig(configName) + end + return config.data +end + +if NOT_PUBLISH then + I18N.__getConfig = I18N.getConfig + function I18N:getConfig(configName) + if string.lower(configName) ~= configName then + Logger.logFatal("I18N:getConfig 传入的表名不能有大写 " .. configName) + end + return self:__getConfig(configName) + end +end + +function I18N:getConfigWithOtherKey(configName, keyName) + local config = self.configs[configName] + if config == nil then + config = self:_getConfig(configName) + end + if config.keys == nil then + return nil + end + return config.keys[keyName] +end + +function I18N:getConfigNum(configName) + local config = self.configs[configName] + if config == nil then + config = self:_getConfig(configName) + end + return config.count +end + +function I18N:getGlobalText(key, ...) + local config = self:getConfig("global") + local str = config[key] + if str == nil then + return "" + end + if ... then + local param = {...} + if self.cacheGlobalFormatParamSequnce[key] then + self.cacheGlobalIndex = 0 + str = string.gsub(str, '{%d+}', function (s) + self.cacheGlobalIndex = self.cacheGlobalIndex + 1 + return tostring(param[self.cacheGlobalFormatParamSequnce[key][self.cacheGlobalIndex]]) + end) + else + self.cacheGlobalFormatParamSequnce[key] = {} + str = string.gsub(str, '{%d+}', function (s) + self.cacheGlobalIndex = tonumber(string.sub(s, 2,-2)) + 1 + table.insert(self.cacheGlobalFormatParamSequnce[key], self.cacheGlobalIndex) + return tostring(param[self.cacheGlobalIndex]) + end) + end + end + return str +end + +function I18N:getText(configName, index, key, ...) + local config = self:getConfig(configName) + local row = config[index] + if row == nil then + return "" + end + local str = row[key] + if str == nil then + return "" + end + if ... then + local param = {...} + if self.cacheNormalFormatParamSequnce[key] then + self.cacheNormalIndex = 0 + str = string.gsub(str, '{%d+}', function (s) + self.cacheNormalIndex = self.cacheNormalIndex + 1 + return tostring(param[self.cacheNormalFormatParamSequnce[key][self.cacheNormalIndex]]) + end) + else + self.cacheNormalFormatParamSequnce[key] = {} + str = string.gsub(str, '{%d+}', function (s) + self.cacheNormalIndex = tonumber(string.sub(s, 2,-2)) + 1 + table.insert(self.cacheNormalFormatParamSequnce[key], self.cacheNormalIndex) + return tostring(param[self.cacheNormalIndex]) + end) + end + end + return str +end + +function I18N:getFallbackLanguage() + if not self.fallbackLanguage then + local languageInfo = CS.BF.BFPlatform.GetCurrentLanguageInfo() + self.fallbackLanguage = languageInfo:GetFallbackLanguage() + end + return self.fallbackLanguage +end + +function I18N:getLanguageAndArea() + if SUPPORT_SERVER_LANGUAGE[self:getCurLanguage()] then + return SUPPORT_SERVER_LANGUAGE[self:getCurLanguage()] + end + return SUPPORT_SERVER_LANGUAGE[GConst.LANGUAGE.ENGLISH] +end + +return I18N \ No newline at end of file diff --git a/lua/app/common/i18n_manager.lua.meta b/lua/app/common/i18n_manager.lua.meta new file mode 100644 index 00000000..bb9b206d --- /dev/null +++ b/lua/app/common/i18n_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4ddf9f175f3302f4590842552214406d +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/local_data.lua b/lua/app/common/local_data.lua new file mode 100644 index 00000000..1701de62 --- /dev/null +++ b/lua/app/common/local_data.lua @@ -0,0 +1,313 @@ +local LocalData ={} + +local PlayerPrefs = CS.UnityEngine.PlayerPrefs + +local LOCAL_DATA_KEY = { + SDK_UID = "SDK_UID", + AUDIO_MUSIC_VOLUME = "AUDIO_MUSIC_VOLUME", + AUDIO_EFFECT_VOLUME = "AUDIO_EFFECT_VOLUME", + SELECTED_LANGUAGE = "SELECTED_LANGUAGE", + GM_SHOW_FLOATING_ICON = "GM_SHOW_FLOATING_ICON", + MESSAGE_BOX_SHOW_TODAY = "MESSAGE_BOX_SHOW_TODAY", + GAME_QUALITY_LEVEL = "GAME_QUALITY_LEVEL", -- 游戏设置品质等级 + LAST_LOGIN_URL = "LAST_LOGIN_URL", + LAST_LOGIN_INFO = "LAST_LOGIN_INFO", -- 上一次登录成功的信息 + LAST_LOGIN_TYPE = "LAST_LOGIN_TYPE", -- 上次登录类型 token不记录 + LAST_LOGIN_NAME = "LAST_LOGIN_NAME", + LAST_LOGIN_IP = "LAST_LOGIN_IP", + ACCOUNT_INFO = "ACCOUNT_INFO", + SEND_QUEUE = "SEND_QUEUE", + SDK_LOGIN_TYPE = "SDK_LOGIN_TYPE", + + NEED_UPDATE = "NEED_UPDATE", -- 需要更新 + IOS_ORDER_ID = "IOS_ORDER_ID", + IOS_PAY_INFO = "IOS_PAY_INFO", + SHAKE_MODE = "SHAKE_MODE", -- 震动模式 + SAVE_POWER_MODE = "SAVE_POWER_MODE", -- 省电模式 + LAST_MAIL_ID = "LAST_MAIL_ID", +} + +LocalData.KEYS = LOCAL_DATA_KEY + +function LocalData:save() + if self.dirty then + self.dirty = false + PlayerPrefs.Save() + end +end + +function LocalData:setString(key, value) + self.dirty = true + PlayerPrefs.SetString(key, value) +end + +function LocalData:getString(key, defaultValue) + if defaultValue then + return PlayerPrefs.GetString(key, defaultValue) + else + return PlayerPrefs.GetString(key) + end +end + +function LocalData:setInt(key, value) + self.dirty = true + PlayerPrefs.SetInt(key, value) +end + +function LocalData:getInt(key, defaultValue) + if defaultValue then + return PlayerPrefs.GetInt(key, defaultValue) + else + return PlayerPrefs.GetInt(key) + end +end + +function LocalData:setFloat(key, value) + self.dirty = true + PlayerPrefs.SetFloat(key, value) +end + +function LocalData:getFloat(key, defaultValue) + if defaultValue then + return PlayerPrefs.GetFloat(key, defaultValue) + else + return PlayerPrefs.GetFloat(key) + end +end + +function LocalData:hasKey(key) + return PlayerPrefs.HasKey(key) +end + +function LocalData:delKey(key) + self.dirty = true + PlayerPrefs.DeleteKey(key) +end + +-- 跟角色挂钩的唯一id +function LocalData:getRoleKey(key) + local uid = DataManager.PlayerData:getUid() + if uid == "" then + Logger.logError("check roleid error!") + end + return key .. uid +end + +--------------Implement----------------- +function LocalData:getAudioMusicVolume() + return self:getFloat(LOCAL_DATA_KEY.AUDIO_MUSIC_VOLUME, 1) +end + +function LocalData:setAudioMusicVolume(value) + self:setFloat(LOCAL_DATA_KEY.AUDIO_MUSIC_VOLUME, value) +end + +function LocalData:getAudioEffectVolume() + return self:getFloat(LOCAL_DATA_KEY.AUDIO_EFFECT_VOLUME, 1) +end + +function LocalData:setAudioEffectVolume(value) + self:setFloat(LOCAL_DATA_KEY.AUDIO_EFFECT_VOLUME, value) +end + +function LocalData:getSelectedLanguage() + return self:getString(LOCAL_DATA_KEY.SELECTED_LANGUAGE, "") +end + +function LocalData:setSelectedLanguage(value) + self:setString(LOCAL_DATA_KEY.SELECTED_LANGUAGE, value) +end + +function LocalData:getGMShowFloatingIcon() + return self:getInt(LOCAL_DATA_KEY.GM_SHOW_FLOATING_ICON, 0) == 1 +end + +function LocalData:setGMShowFloatingIcon(value) + self:setInt(LOCAL_DATA_KEY.GM_SHOW_FLOATING_ICON, value) +end + +function LocalData:getMessageBoxShowTodayTime(key) + return self:getInt(LOCAL_DATA_KEY.MESSAGE_BOX_SHOW_TODAY .. key, 0) +end + +function LocalData:setMessageBoxShowTodayTime(key, value) + self:setInt(LOCAL_DATA_KEY.MESSAGE_BOX_SHOW_TODAY .. key, value) +end + +function LocalData:getGameQualityLevel() + return self:getInt(LOCAL_DATA_KEY.GAME_QUALITY_LEVEL, 0) +end + +function LocalData:setGameQualityLevel(level) + self:setInt(LOCAL_DATA_KEY.GAME_QUALITY_LEVEL, level) +end + +function LocalData:setTodayFirst(new) + self.isTodayFirst = new +end + +function LocalData:getTodayFirst() + return self.isTodayFirst or false +end + +function LocalData:setNeedUpdate(value) + value = value or "0.0.0" + self:setString(LOCAL_DATA_KEY.NEED_UPDATE, value) +end + +function LocalData:getNeedUpdate() + self:getString(LOCAL_DATA_KEY.NEED_UPDATE, "0.0.0") +end + +function LocalData:setIosPayInfo(iosPayInfo) + iosPayInfo = iosPayInfo or {} + local str = json.encode(iosPayInfo) + self:setString(LOCAL_DATA_KEY.IOS_PAY_INFO, str) +end + +function LocalData:getIosPayInfo() + local str = self:getString(LOCAL_DATA_KEY.IOS_PAY_INFO, "") + if str == nil or str == "" then + return {} + else + local iosPayInfo = json.decode(str) + if iosPayInfo then + return iosPayInfo + else + return {} + end + end +end + +function LocalData:setIosOrders(iosOrders) + iosOrders = iosOrders or {} + local str = json.encode(iosOrders) + self:setString(LOCAL_DATA_KEY.IOS_ORDER_ID, str) +end + +function LocalData:getIosOrders() + local str = self:getString(LOCAL_DATA_KEY.IOS_ORDER_ID, "") + if str == nil or str == "" then + return {} + else + local iosOrders = json.decode(str) + if iosOrders then + return iosOrders + else + return {} + end + end +end + +function LocalData:setLastLoginInfo(loginType, id, token) + local str = json.encode({ + type = loginType, + id = id, + token = token + }) + if not loginType then + self:setString(LOCAL_DATA_KEY.LAST_LOGIN_TYPE, "") + elseif loginType ~= "token" then + self:setString(LOCAL_DATA_KEY.LAST_LOGIN_TYPE, loginType) + end + self:setString(LOCAL_DATA_KEY.LAST_LOGIN_INFO, str) +end + +function LocalData:getLastLoginInfo() + local str = self:getString(LOCAL_DATA_KEY.LAST_LOGIN_INFO, "{}") + local info = json.decode(str) + info.type = info.type or NetManager.LOGIN_TYPE.ANONYMOUS + info.id = info.id or DeviceHelper:getDeviceId() + info.token = info.token + return info +end + +function LocalData:getLastLoginType() + local str = self:getString(LOCAL_DATA_KEY.LAST_LOGIN_TYPE, "") + if str == "" then + str = NetManager.LOGIN_TYPE.ANONYMOUS + end + if str ~= NetManager.LOGIN_TYPE.ANONYMOUS and + str ~= NetManager.LOGIN_TYPE.APPLE and + str ~= NetManager.LOGIN_TYPE.GOOGLE and + str ~= NetManager.LOGIN_TYPE.FACEBOOK + then + str = NetManager.LOGIN_TYPE.ANONYMOUS + end + return str +end + +function LocalData:setLastLoginName(name) + name = name or "" + self:setString(LOCAL_DATA_KEY.LAST_LOGIN_NAME, name) +end + +function LocalData:getLastLoginName() + return self:getString(LOCAL_DATA_KEY.LAST_LOGIN_NAME, "") +end + +function LocalData:saveSendQueue(sendQueue) + local str = json.encode(sendQueue) + if EDITOR_MODE then + Logger.log("---------------------剩余消息队列缓存---------------------------------") + --Logger.logHighlight(str) + print(str) + end + self:setString(LOCAL_DATA_KEY.SEND_QUEUE, str) +end + +function LocalData:getSendQueue() + local sendQueue = json.decode(self:getString(LOCAL_DATA_KEY.SEND_QUEUE, "{}")) + return sendQueue +end + +function LocalData:setShakeMode(value) -- 0-close 1-open + self:setInt(self:getString(LOCAL_DATA_KEY.SHAKE_MODE), value) +end + +function LocalData:getShakeMode() + self:getInt(self:getString(LOCAL_DATA_KEY.SHAKE_MODE), 1) +end + +function LocalData:setSavePowerMode(value) -- 0-close 1-open + self:setInt(self:getString(LOCAL_DATA_KEY.SAVE_POWER_MODE), value) +end + +function LocalData:getSavePowerMode() + self:getInt(self:getString(LOCAL_DATA_KEY.SAVE_POWER_MODE), 1) +end + +function LocalData:getLastMailId() + return self:getInt(LOCAL_DATA_KEY.LAST_MAIL_ID, 0) +end + +function LocalData:setLastMailId(id) + if not id then + return + end + self:setInt(LOCAL_DATA_KEY.LAST_MAIL_ID, id) +end + +function LocalData:getAccountInfo() + local info = json.decode(self:getString(LOCAL_DATA_KEY.ACCOUNT_INFO, "{}")) + return info +end + +function LocalData:setAccountInfo(info) + if not info then + return + end + local str = json.encode(info) + self:setString(LOCAL_DATA_KEY.ACCOUNT_INFO, str) +end + +function LocalData:setLastLoginIp(ip) + ip = ip or "" + self:setString(LOCAL_DATA_KEY.LAST_LOGIN_IP, ip) +end + +function LocalData:getLastLoginIp() + return self:getString(LOCAL_DATA_KEY.LAST_LOGIN_IP, "") +end + +return LocalData \ No newline at end of file diff --git a/lua/app/common/local_data.lua.meta b/lua/app/common/local_data.lua.meta new file mode 100644 index 00000000..6e9b2b75 --- /dev/null +++ b/lua/app/common/local_data.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: af04d753ce34d3f43a83b4bd28b46a25 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/logger.lua b/lua/app/common/logger.lua new file mode 100644 index 00000000..41411a37 --- /dev/null +++ b/lua/app/common/logger.lua @@ -0,0 +1,263 @@ +local Logger = {} + +-- 全局的print,必须使用封装的Logger +if not EDITOR_MODE then + print = function(...) + Logger.log(...) + end +end + +Logger.tab = " " +Logger.MANUAL_ENABLE_DEBUG = false -- 手动控制激活打印 +Logger.ENABLE_TIMES = 5 -- 激活需要的操作次数 + +local function split(input, delimiter) + input = tostring(input) + delimiter = tostring(delimiter) + if (delimiter=='') then return false end + local pos,arr = 0, {} + -- for each divider found + for st,sp in function() return string.find(input, delimiter, pos, true) end do + table.insert(arr, string.sub(input, pos, st - 1)) + pos = sp + 1 + end + table.insert(arr, string.sub(input, pos)) + return arr +end + +local formatTable +formatTable = function(tal, _depth) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + if type(tal) ~= "table" then + return tostring(tal) + else + local _depth = _depth or 0 + local getTab = function() + local r = "" + for _ = 1, _depth do + r = r.. Logger.tab + end + return r + end + local result = "{\n" + _depth = _depth + 1 + for k, v in pairs(tal) do + if type(v) ~= "table" then + result = result.. getTab().. tostring(k).. " = ".. tostring(v).. "\n" + else + result = result.. getTab().. tostring(k).. " = ".. formatTable(v, _depth + 1) .. "\n" + end + end + result = result.. getTab().. "}" + return result + end +end + +Logger.printTable = function(tbl) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + Logger.log(formatTable(tbl)) +end + +Logger.printTableWarning = function(tbl) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + Logger.logWarning(formatTable(tbl)) +end + +Logger.printTableError = function(tbl) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + Logger.logError(formatTable(tbl)) +end + +Logger.log = function(fmt, ...) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + Logger._log("INFO", fmt, ...) +end + +Logger.logTodo = function(fmt, ...) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + local t = { string.format(tostring(fmt), ...), } + local traceback = split(debug.traceback("", 2), "\n") + CS.UnityEngine.Debug.Log("[TODO] " .. table.concat(t) .. "" .. table.concat(traceback, "\n")) +end + +Logger.logHighlight = function(fmt, ...) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + local t = { string.format(tostring(fmt), ...), } + local traceback = split(debug.traceback("", 2), "\n") + CS.UnityEngine.Debug.Log("" .. table.concat(t) .. "" .. table.concat(traceback, "\n")) +end + +Logger.logWarning = function(fmt, ...) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + Logger._log("WARNING", fmt, ...) +end + +Logger.logError = function(fmt, ...) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + Logger._log("ERROR", fmt, ...) +end + +Logger.logFatal = function(fmt, ...) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + Logger._log("FATAL", fmt, ...) +end + +Logger.logWarningBox = function(fmt, ...) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + + local content = Logger._log("WARNING", fmt, ...) + local params = { + content = content, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + noShowClose = true, + okFunc = function() end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + top = true, + } + GFunc.showMessageBox(params) +end + +Logger._log = function(tag, fmt, ...) + if IS_PUBLISH and not Logger.MANUAL_ENABLE_DEBUG then + return + end + local str = Logger._checkPercentSign(fmt) + local t = { string.format(tostring(str), ...), } + local traceback = split(debug.traceback("", 2), "\n") + local output + if tag == "FATAL" then + output = table.concat(t) ..table.concat(traceback, "\n") + CS.UnityEngine.Debug.LogError(output) + elseif tag == "ERROR" then + CS.UnityEngine.Debug.Log("" .. table.concat(t) .. "" .. table.concat(traceback, "\n")) + elseif tag == "WARNING" then + output = table.concat(t) ..table.concat(traceback, "\n") + CS.UnityEngine.Debug.LogWarning(output) + else + output = table.concat(t) ..table.concat(traceback, "\n") + CS.UnityEngine.Debug.Log(output) + end + + return output +end + +local function dump_value_(v) + if type(v) == "string" then + v = "\"" .. v .. "\"" + end + return tostring(v) +end + +Logger.dump = function(value, description, nesting) + if IS_PUBLISH then + return + end + if type(nesting) ~= "number" then nesting = 3 end + + local lookupTable = {} + local result = {} + + local traceback = split(debug.traceback("", 2), "\n") + CS.UnityEngine.Debug.Log("dump from: " .. string.trim(traceback[3])) + + local function dump_(value, description, indent, nest, keylen) + description = description or "" + local spc = "" + if type(keylen) == "number" then + spc = string.rep(" ", keylen - string.len(dump_value_(description))) + end + if type(value) ~= "table" then + result[#result +1 ] = string.format("%s%s%s = %s", indent, dump_value_(description), spc, dump_value_(value)) + elseif lookupTable[tostring(value)] then + result[#result +1 ] = string.format("%s%s%s = *REF*", indent, dump_value_(description), spc) + else + lookupTable[tostring(value)] = true + if nest > nesting then + result[#result +1 ] = string.format("%s%s = *MAX NESTING*", indent, dump_value_(description)) + else + result[#result +1 ] = string.format("%s%s = {", indent, dump_value_(description)) + local indent2 = indent.." " + local keys = {} + local keylen = 0 + local values = {} + for k, v in pairs(value) do + keys[#keys + 1] = k + local vk = dump_value_(k) + local vkl = string.len(vk) + if vkl > keylen then keylen = vkl end + values[k] = v + end + table.sort(keys, function(a, b) + if type(a) == "number" and type(b) == "number" then + return a < b + else + return tostring(a) < tostring(b) + end + end) + for i, k in ipairs(keys) do + dump_(values[k], k, indent2, nest + 1, keylen) + end + result[#result +1] = string.format("%s}", indent) + end + end + end + dump_(value, description, "- ", 1) + + for i, line in ipairs(result) do + CS.UnityEngine.Debug.Log(line) + end +end + +Logger._checkPercentSign = function (str) + if str == nil then + return nil + end + str = tostring(str) + local strTable = {} + for i = 1, #str do + table.insert(strTable, str:sub(i,i)) + end + local count = #strTable + local specialChars = {"s","p","c","w","a","l","u","d","x","z",} + for i = count, 1, -1 do + if strTable[i] == '%' and (i + 1) <= count then + local pattern = false + for _, char in ipairs(specialChars) do + if strTable[i + 1] == char then + pattern = true + break + end + end + if not pattern then + table.insert(strTable, i + 1, "%") + end + elseif strTable[i] == '%' and i == count then + table.insert(strTable, "%") + end + end + return table.concat(strTable) +end + +return Logger diff --git a/lua/app/common/logger.lua.meta b/lua/app/common/logger.lua.meta new file mode 100644 index 00000000..3f74d1a7 --- /dev/null +++ b/lua/app/common/logger.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 74b5b4b7ed3c12a408e31f57c98933b0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/model_manager.lua b/lua/app/common/model_manager.lua new file mode 100644 index 00000000..aebeb47c --- /dev/null +++ b/lua/app/common/model_manager.lua @@ -0,0 +1,212 @@ +local CharacterFSMManager = require "app/module/character_fsm/character_fsm_manager" +local ModelObject = require "app/bf/unity/model_object" +local CharacterObject = require "app/bf/unity/character_object" +local WeaponObject = require "app/bf/unity/weapon_object" + +local ModelManager = { + heroCacheList = {}, + heroCacheMap = {} +} + +local TypeOfGameObject = GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT + +local HERO_CACHE_SIZE = 10 -- 英雄缓存容量 + +function ModelManager:loadHeroAsync(id, parent, weaponAniName, weapon, callback) + local path = "assets/prefabs/models/characters/" .. id .. ".prefab" + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + + local characterObject = CharacterObject:create() + characterObject:initWithPrefab(assetPath, prefab, id) + characterObject:addUnloadCallback(function(obj) + local modelPath = obj:getAssetPath() + if self.heroCacheMap[modelPath] then + ResourceManager:unload(modelPath) + else + if #self.heroCacheList >= HERO_CACHE_SIZE then + local headPath = table.remove(self.heroCacheList, 1) + ResourceManager:unload(headPath) + self.heroCacheMap[headPath] = nil + end + self.heroCacheMap[modelPath] = true + table.insert(self.heroCacheList, modelPath) + end + end) + if parent then + characterObject:setParent(parent, false) + end + + local fsm = CharacterFSMManager:getFsm(characterObject) + characterObject:setCharacterFSM(fsm) + + local nodeName = "hand_r_weapon" + if weapon then + for k, name in pairs(GConst.HeroConst.WEAPON_NODE) do + local find = string.find(weapon, k) + if find then + local node = characterObject:getBoneByName(name) + if node then + nodeName = name + end + break + end + end + end + + if weapon and characterObject:getBoneByName(nodeName) then + ModelManager:loadWeaponAsync(weapon, characterObject:getBoneByName(nodeName), function(weaponObj) + if weaponObj then + characterObject:setWeaponInfo(weaponAniName, weaponObj) + end + characterObject:play("idle") + + if callback then + callback(characterObject, weaponObj) + end + end) + else + characterObject:play("idle") + + if callback then + callback(characterObject) + end + end + end) +end + +function ModelManager:loadWeaponAsync(weapon, parent, callback) + local path = "assets/prefabs/models/weapon/" .. weapon .. ".prefab" + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + + local modelObject = WeaponObject:create() + modelObject:initWithPrefab(assetPath, prefab) + modelObject:addUnloadCallback(function(obj) + ResourceManager:unload(obj:getAssetPath()) + end) + if parent then + modelObject:setParent(parent, false) + end + + if callback then + callback(modelObject) + end + end) +end + +function ModelManager:loadMonsterAsync(id, parent, callback) + local path = "assets/prefabs/models/characters/" .. id .. ".prefab" + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + + local characterObject = CharacterObject:create() + characterObject:initWithPrefab(assetPath, prefab) + characterObject:addUnloadCallback(function(obj) + local modelPath = obj:getAssetPath() + ResourceManager:unload(modelPath) + end) + if parent then + characterObject:setParent(parent, false) + end + + local fsm = CharacterFSMManager:getFsm(characterObject) + characterObject:setCharacterFSM(fsm) + + if callback then + callback(characterObject) + end + end) +end + +function ModelManager:loadModelAsync(path, parent, callback) + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + + local modelObject = ModelObject:create() + modelObject:initWithPrefab(assetPath, prefab) + modelObject:addUnloadCallback(function(obj) + ResourceManager:unload(obj:getAssetPath()) + end) + if parent then + modelObject:setParent(parent, false) + end + + if callback then + callback(modelObject) + end + end) +end + +function ModelManager:loadHeroShowAsync(id, parent, callback) + local path = "assets/prefabs/models/characters_show/" .. id .. ".prefab" + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + + local characterObject = CharacterObject:create() + characterObject:initWithPrefab(assetPath, prefab, id) + characterObject:addUnloadCallback(function(obj) + ResourceManager:unload(obj:getAssetPath()) + end) + if parent then + characterObject:setParent(parent, false) + end + + local fsm = CharacterFSMManager:getFsm(characterObject) + characterObject:setCharacterFSM(fsm) + + if callback then + callback(characterObject) + end + end) +end + +function ModelManager:getHeroModelPathById(id) + return "assets/prefabs/models/characters/" .. id .. ".prefab" +end + +function ModelManager:markCache(path) + if #self.heroCacheList >= HERO_CACHE_SIZE then + return false + end + if self.heroCacheMap[path] == nil then + self.heroCacheMap[path] = true + table.insert(self.heroCacheList, path) + return true + end + return false +end + +function ModelManager:isCacheFull() + return #self.heroCacheList >= HERO_CACHE_SIZE +end + +function ModelManager:clearCache() + for _, path in ipairs(self.heroCacheList) do + ResourceManager:unload(path) + end + self.heroCacheList = {} + self.heroCacheMap = {} +end + +return ModelManager \ No newline at end of file diff --git a/lua/app/common/model_manager.lua.meta b/lua/app/common/model_manager.lua.meta new file mode 100644 index 00000000..a25f66a0 --- /dev/null +++ b/lua/app/common/model_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: a9dcf898d20140e4d92d50baccefc5e5 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/module_manager.lua b/lua/app/common/module_manager.lua new file mode 100644 index 00000000..cd6c8736 --- /dev/null +++ b/lua/app/common/module_manager.lua @@ -0,0 +1,197 @@ +local ModuleManager = {} + +local MODULE_PATHS = { + LoginManager = "app/module/login/login_manager", + BattleManager = "app/module/battle/battle_manager", + TipsManager = "app/module/tips/tips_manager", + LoadingManager = "app/module/loading/loading_manager", + DevToolManager = "app/module/gm/dev_tool_manager", + MaincityManager = "app/module/maincity/maincity_manager", + SettingManager = "app/module/setting/setting_manager", + -- 引导 + TutorialManager = "app/module/tutorial/tutorial_manager", + ToastManager = "app/ui/common/toast", + PlayerManager = "app/module/player/player_manager", + SummonManager = "app/module/summon/summon_manager", + -- 英雄 + HeroManager = "app/module/hero/hero_manager", + -- 修炼 + TrainManager = "app/module/train/train_manager", + -- 商城Manager + MallManager = "app/module/mall/mall_manager", + ItemManager = "app/module/item/item_manager", + MasteryManager = "app/module/mastery/mastery_manager", + MiningManager = "app/module/mining/mining_manager", + -- 章节关卡 + ChapterManager = "app/module/chapter/chapter_manager", + -- 挂机 + IdleManager = "app/module/idle/idle_manager", + -- 设置 + GameSettingManager = "app/module/game_setting/game_setting_manager", + AudioManager = "app/module/game_setting/game_setting_manager", + DungeonManager = "app/module/dungeon/dungeon_manager", + ArenaManager = "app/module/arena_manager/arena_manager", + SignInManager = "app/module/signin/signin_manager", + DailyTaskManager = "app/module/activity/daily_task/daily_task_manager", + SevenDayManager = "app/module/activity/seven_day/seven_day_manager", + TaskManager = "app/module/task/task_manager", + ActivityManager = "app/module/activity/activity_manager", + BlessingManager = "app/module/blessing/blessing_manager", + TutorialTaskManager = "app/module/tutorial/tutorial_task_manager", + BountyManager = "app/module/bounty/bounty_manager", + CollectionManager = "app/module/collection/collection_manager", + MailManager = "app/module/mail/mail_manager", +} + +-- 这里的key对应func_open里的id +ModuleManager.MODULE_KEY = { + DUNGEON_GOLD = "dungeon_gold", + DUNGEON_DIAMOND = "dungeon_diamond", + DUNGEON_RUNE = "dungeon_rune", + DUNGEON_CHARACTERISTIC = "dungeon_characteristic", + ARENA = "arena", + SUMMON_WEAPON = "summon_weapon", + SUMMON_ARMOR = "summon_armor", + SUMMON_LEGACY = "summon_legacy", + MINE = "mine", + MINE_RESEARCH = "mine_research", + IDLE = "idle", + COMPREHEND = "comprehend", + QUICK_PASS = "quick_pass", + TRAIN = "train", + MASTERY = "mastery", + RUNES = "runes", + SHOP = "shop", + SEVENDAY = "sevenday", + SIGNIN = "signin", + TUTORIALTASK = "tutorialtask", + DAILYTASK = "dailytask", + BLESSING = "blessing", + EQUIP = "equip", + COLLECTION = "collection", + AUTO_FIGHT = "auto_fight", + HERO_OPEN = "hero_open", + WEAPON_OPEN = "weapon_open", + ARMOR_OPEN = "armor_open", + LEGACY_OPEN = "legacy_open", + BATTLE_PASS = "battle_pass", + BATTLE_SPEED_UP = "battle_speed_up", + POWER_SAVE_MODE = "save_power_open", + FUND_OPEN = "fund_open", + MAIL_OPEN = "mail_open", +} + +local _moduleMgrs = {} + +local MODULE_METATABLE = { + __index = function(t, k) + local path = MODULE_PATHS[k] + if path == nil then + Logger.logError("%s path is not configure in ModuleManager.lua", k) + return + end + local v = require(path):create() + table.insert(_moduleMgrs, v) + rawset(t, k, v) + return v + end +} +setmetatable(ModuleManager, MODULE_METATABLE) + +function ModuleManager:init() + if EDITOR_MODE then + ---@type LoginManager + self.LoginManager = self.LoginManager or require("app/module/login/login_manager"):create() + ---@type BattleManager + self.BattleManager = self.BattleManager or require("app/module/battle/battle_manager"):create() + ---@type TipsManager + self.TipsManager = self.TipsManager or require("app/module/tips/tips_manager"):create() + ---@type MaincityManager + self.MaincityManager = self.MaincityManager or require("app/module/maincity/maincity_manager"):create() + ---@type SummonManager + self.SummonManager = self.SummonManager or require("app/module/summon/summon_manager"):create() + ---@type MallManager + self.MallManager = self.MallManager or require("app/module/mall/mall_manager"):create() + ---@type MiningManager + self.MiningManager = self.MiningManager or require("app/module/mining/mining_manager"):create() + ---@type DungeonManager + self.DungeonManager = self.DungeonManager or require("app/module/dungeon/dungeon_manager"):create() + ---@type ArenaManager + self.ArenaManager = self.ArenaManager or require("app/module/arena_manager/arena_manager"):create() + ---@type SignInManager + self.SignInManager = self.SignInManager or require("app/module/signin/signin_manager"):create() + end +end + +-- 功能是否开启 +function ModuleManager:getIsOpen(key, hideToast) + local cfg = ConfigManager:getConfig("func_open")[key] + if cfg == nil then + return true + end + -- 优先判断等级 + if cfg.level then + local isOpen = DataManager.PlayerData:getLv() >= cfg.level + if not hideToast and not isOpen then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_LEVEL, cfg.level)) + end + return isOpen + elseif cfg.stage then -- 没有填等级字段就判断关卡 + local isOpen = DataManager.ChapterData:getHistoryChapterId() >= cfg.stage + if not hideToast and not isOpen then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_STAGE, cfg.stage)) + end + return isOpen + elseif cfg.task then -- 判断任务 + local isOver = DataManager.TutorialTaskData:getTaskCollect(cfg.task) + if not hideToast and not isOver then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_TASK, cfg.task)) + end + return isOver + end + return true +end + +function ModuleManager:showPop(key) + local cfg = ConfigManager:getConfig("func_open")[key] + if not cfg then + return false + end + if cfg and cfg.pop_ups and cfg.pop_ups == 1 then + return false + end + return true +end + +function ModuleManager:getNotOpenStr(key) + local cfg = ConfigManager:getConfig("func_open")[key] + if cfg == nil then + return GConst.EMPTY_STRING + end + -- 优先判断等级 + if cfg.level then + return I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_LEVEL, cfg.level) + elseif cfg.stage then -- 没有填等级字段就判断关卡 + return I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_STAGE, cfg.stage) + elseif cfg.task then + return I18N:getGlobalText(I18N.GlobalConst.FUNC_OPEN_TASK, cfg.task) + end + return GConst.EMPTY_STRING +end + +function ModuleManager:getOpenStageId(key) + local cfg = ConfigManager:getConfig("func_open")[key] + if not cfg or cfg.level then + return + end + + return cfg.stage +end + +function ModuleManager:clear() + for k, v in ipairs(_moduleMgrs) do + v:_clear() + end +end + +return ModuleManager diff --git a/lua/app/common/module_manager.lua.meta b/lua/app/common/module_manager.lua.meta new file mode 100644 index 00000000..4088a154 --- /dev/null +++ b/lua/app/common/module_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0d32af3473294284980d4fac90625efb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/pay_manager.lua b/lua/app/common/pay_manager.lua new file mode 100644 index 00000000..3453200b --- /dev/null +++ b/lua/app/common/pay_manager.lua @@ -0,0 +1,205 @@ +local PayManager = class("PayManager", BaseModule) + +local BLESSING_GIFT_ID = 30001 + +PayManager.PURCHARSE_TYPE = { + MALL_ACT = 1, + MALL_DAILY = 2, + MALL_TREASURE = 3, +} + +PayManager.PURCHARSE_TYPE_CONFIG = { + [PayManager.PURCHARSE_TYPE.MALL_ACT] = "mall_act", + [PayManager.PURCHARSE_TYPE.MALL_DAILY] = "mall_daily", + [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = "mall_treasure", +} + +PayManager.BI_ITEM_GET_TYPE = { + [PayManager.PURCHARSE_TYPE.MALL_ACT] = { + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_POP_GIFT] = BIReport.ITEM_GET_TYPE.MALL_POP_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SKIP_AD_GIFT] = BIReport.ITEM_GET_TYPE.MALL_SKIP_AD_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT] = BIReport.ITEM_GET_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_MONTH_CARD] = BIReport.ITEM_GET_TYPE.MALL_MONTH_CARD, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_LIMIT_GIFT] = BIReport.ITEM_GET_TYPE.MALL_LIMIT_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_FIRST_RECHARGE_GIFT] = BIReport.ITEM_GET_TYPE.MALL_FIRST_RECHARGE_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_CHAPTER_FUND] = BIReport.ITEM_GET_TYPE.MALL_CHAPTER_FUND, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_BATTLE_PASS] = BIReport.ITEM_GET_TYPE.MALL_BATTLE_PASS, + }, + [PayManager.PURCHARSE_TYPE.MALL_DAILY] = { + [1] = BIReport.ITEM_GET_TYPE.DAILY_GIFT, + [2] = BIReport.ITEM_GET_TYPE.WEEKLY_GIFT, + }, + [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.ITEM_GET_TYPE.MALL_TREASURE, +} + +PayManager.BI_GIFT_TYPE = { + [PayManager.PURCHARSE_TYPE.MALL_ACT] = { + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_POP_GIFT] = BIReport.GIFT_TYPE.MALL_POP_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SKIP_AD_GIFT] = BIReport.GIFT_TYPE.MALL_SKIP_AD_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT] = BIReport.GIFT_TYPE.MALL_SUBSCRIBE_BLESSING_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_MONTH_CARD] = BIReport.GIFT_TYPE.MALL_MONTH_CARD, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_LIMIT_GIFT] = BIReport.GIFT_TYPE.MALL_LIMIT_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_FIRST_RECHARGE_GIFT] = BIReport.GIFT_TYPE.MALL_FIRST_RECHARGE_GIFT, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_CHAPTER_FUND] = BIReport.GIFT_TYPE.MALL_CHAPTER_FUND, + [ModuleManager.MallManager.MALL_ACT_TYPE.MALL_BATTLE_PASS] = BIReport.GIFT_TYPE.MALL_BATTLE_PASS, + }, + [PayManager.PURCHARSE_TYPE.MALL_DAILY] = { + [1] = BIReport.GIFT_TYPE.DAILY_GIFT, + [2] = BIReport.GIFT_TYPE.WEEKLY_GIFT, + }, + [PayManager.PURCHARSE_TYPE.MALL_TREASURE] = BIReport.GIFT_TYPE.MALL_TREASURE, +} + +function PayManager:getItemGetType(purchaseType, id) + local cfgName = PayManager.PURCHARSE_TYPE_CONFIG[purchaseType] + if not cfgName then + return + end + local cfg = ConfigManager:getConfig(cfgName) + local typeMap = PayManager.BI_ITEM_GET_TYPE[purchaseType] + if not cfg or not cfg[id] or not typeMap then + return + end + local subType = cfg[id].type + if subType then + return typeMap[cfg[id].type] + else + if type(typeMap) ~= "table" then + return typeMap + end + end +end + +function PayManager:getGiftType(purchaseType, id) + local cfgName = PayManager.PURCHARSE_TYPE_CONFIG[purchaseType] + if not cfgName then + return + end + local cfg = ConfigManager:getConfig(cfgName) + local typeMap = PayManager.BI_GIFT_TYPE[purchaseType] + if not cfg or not cfg[id] or not typeMap then + return + end + local subType = cfg[id].type + if subType then + return typeMap[cfg[id].type] + else + if type(typeMap) ~= "table" then + return typeMap + end + end +end + +function PayManager:purchasePackage(id, purchaseType) + local cfgName = PayManager.PURCHARSE_TYPE_CONFIG[purchaseType] + if not cfgName then + return + end + local cfg = ConfigManager:getConfig(cfgName) + if not cfg or not cfg[id] then + return + end + + local rechargeId = cfg[id].recharge_id + local giftType = PayManager:getGiftType(purchaseType, id) + local productId + if rechargeId then + local rechargeCfg = ConfigManager:getConfig("recharge")[rechargeId] + if rechargeCfg == nil then + return + end + productId = rechargeCfg.payId + BIReport:postPayClick(giftType, id, rechargeId) + end + self:checkAndPay(productId, id, purchaseType, rechargeId) +end + +function PayManager:requestRewards(purchaseToken, orderId, originOrderId, giftType, id, rechargeId) + self:sendMsgToServer(purchaseToken, orderId, function(binder, msgData) + if msgData.status == 0 then + if msgData.rewards and table.nums(msgData.rewards) > 0 then -- 奖励改到邮件领取 + GFunc.showRewardBox(msgData.rewards) + end + BIReport:postPayGet(giftType, id, rechargeId, orderId, originOrderId, 1, msgData.rewards or {}) + local rechargeCfg = ConfigManager:getConfig("recharge")[rechargeId] + if rechargeCfg then + BIReport:postPurchase(rechargeCfg.price, rechargeCfg.payId, originOrderId, orderId) + end + + table.foreach(msgData.gift, function(i, gift) + local rechargeId = DataManager.ShopData:getShopItemCfg(gift).recharge_id + DataManager.PlayerData:setPaymentCount(rechargeId) + DataManager.ShopData:updateGiftInfo(gift) + + if gift.mall_type == PayManager.PURCHARSE_TYPE.MALL_ACT and gift.id == BLESSING_GIFT_ID then + DataManager.BlessingData:onBuyGift() + end + end) + + -- 支付验证成功后消耗此订单 + if purchaseToken then + SDKManager:consumePurchase(purchaseToken) + end + elseif msgData.status == 1010 then -- 验证异常,但是需要消耗订单 + if purchaseToken then + SDKManager:consumePurchase(purchaseToken) + end + Logger.logError("重复验证") + else + Logger.logError("支付验证失败:%s", msgData.status) + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.PAY_FAILED_DESC_1), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + end + end) +end + +function PayManager:checkAndPay(productId, id, purchaseType, rechargeId) + -- 检查是否可以支付 + SDKManager:checkPay(productId, function(code) + if code == 0 then + self:sendMessage(ProtoMsgType.FromMsgEnum.MallPayReq, {id = id, mall_type = purchaseType}, {}, function(binder, msgData) + if msgData.status == 0 then + if msgData.uuid and msgData.uuid ~= GConst.EMPTY_STRING then + local giftType = PayManager:getGiftType(purchaseType, id) + BIReport:postPayTurn(giftType, id, rechargeId) + SDKManager:pay(productId, msgData.uuid, rechargeId, giftType, function(purchaseToken, orderId, originOrderId) + if purchaseToken and orderId then + self:requestRewards(purchaseToken, orderId, originOrderId, giftType, id, rechargeId) + end + end) + else -- 没有支付信息,直接发奖 + if table.nums(msgData.rewards) > 0 then + GFunc.showRewardBox(msgData.rewards) + end + local giftData = {} + giftData.mall_type = msgData.mall_type + giftData.id = msgData.id + giftData.buy_count = DataManager.ShopData:getGiftBoughtNum(msgData.id, msgData.mall_type) + 1 + giftData.latest_buy_at = Time:getServerTime() * 1000 -- 服务器都是毫秒 + DataManager.ShopData:updateGiftInfo(giftData) + end + else + Logger.logError("预支付失败") + end + end) + end + end) +end + +function PayManager:sendMsgToServer(purchaseToken, orderId, callback) + local args = { + uuid = {orderId}, + channel = SDKManager:getSDKPayType(), + pay_token = purchaseToken + } + if EDITOR_MODE then + args.channel = SDKManager.PAY_TYPE.DEBUG + end + self:sendMessage(ProtoMsgType.FromMsgEnum.MallPaidResultReq, args, {}, callback) +end + +return PayManager \ No newline at end of file diff --git a/lua/app/common/pay_manager.lua.meta b/lua/app/common/pay_manager.lua.meta new file mode 100644 index 00000000..101807fe --- /dev/null +++ b/lua/app/common/pay_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 64949f07ee1970147a70f0f73ef268d0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/common/platform.lua b/lua/app/common/platform.lua new file mode 100644 index 00000000..d4ae73f9 --- /dev/null +++ b/lua/app/common/platform.lua @@ -0,0 +1,100 @@ +local Platform = {} + +local bfGateInfo = CS.BF.BFPlatform.GetCurrentGateInfo() +Platform.bfGateInfo = bfGateInfo + +---- 获取包名 +function Platform:getIdentifier() + return CS.UnityEngine.Application.identifier +end + +---- 是否是内网包 +function Platform:getIsDevChannel() + return CS.BF.BFPlatform.IsDevChannel() +end + +---- 是否是release包 +function Platform:getIsReleaseChannel() + return CS.BF.BFPlatform.IsReleaseChannel() +end + +---- 是否是发布渠道 +function Platform:getIsPublishChannel() + return CS.BF.BFPlatform.IsPublishChannel() +end + +---- 获取主链接域名 +function Platform:getMainDomain() + return bfGateInfo.mainDomain +end + +---- 获取主链接端口 +function Platform:getMainPort() + return bfGateInfo.mainPort +end + +-- 平台 +function Platform:getPlatform() + if self._platform then + return self._platform + end + if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then + self._platform = "Android" + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then + self._platform = "iOS" + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.OSXEditor then + self._platform = "Mac" + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.OSXPlayer then + self._platform = "Mac" + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.WindowsEditor then + self._platform = "Windows" + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.WindowsPlayer then + self._platform = "Windows" + else + self._platform = "Unknow" + end + return self._platform +end + +-- 获取当前版本号 +function Platform:getClientVersion() + if self.clientVersion == nil then + self.clientVersion = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion() + end + return self.clientVersion +end + +-- 获取并处理当前版本号 例:1.3.2 => 1*1000000 + 3 * 1000 + 2 = 1003002 +function Platform:getClientVersionNum() + local version = Platform:getClientVersion() + local versionStrs = string.split(version, ".") + local versionNum1 = tonumber(versionStrs[1]) + local versionNum2 = tonumber(versionStrs[2]) + local versionNum3 = tonumber(versionStrs[3]) + + return versionNum1 * 1000000 + versionNum2 * 1000 + versionNum3 +end + +function Platform:isIosPlatform() + return self:getPlatform() == "iOS" +end + +function Platform:isAndroidPlatform() + return self:getPlatform() == "Android" +end + +-- 联网需求后端需要的平台字符串 +function Platform:getPlatformStr() + if self.platformStr == nil then + if self:isIosPlatform() then + self.platformStr = "IOS" + elseif self:isAndroidPlatform() then + self.platformStr = "Android" + else + self.platformStr = "Unity" + end + end + return self.platformStr +end + +return Platform \ No newline at end of file diff --git a/lua/app/common/platform.lua.meta b/lua/app/common/platform.lua.meta new file mode 100644 index 00000000..a618b631 --- /dev/null +++ b/lua/app/common/platform.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9d8a481d7f7038b41a31ebe11b525efb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/render_manager.lua b/lua/app/common/render_manager.lua new file mode 100644 index 00000000..bfb153bc --- /dev/null +++ b/lua/app/common/render_manager.lua @@ -0,0 +1,195 @@ +local RenderConst = require "app/global/render_const" + +local BFRenderMgr = CS.BF.BFMain.Instance.RenderMgr +local RenderManager = {} + +RenderManager.POST_EFFECT_TYPE = { + BLOOM = 1, + VIVID_BLOOM = 2, + FXAA = 4, +} + +local SUPPORTS_INSTANCING = CS.UnityEngine.SystemInfo.supportsInstancing + +local SHADER_VARIANT_PATH = "assets/arts/shaders/shader_variants.shadervariants" +local UI_DEFAULT_MAT_PATH = "assets/arts/materials/ui/ui_default.mat" +local UI_TUTORIAL_MAT_PATH = "assets/arts/materials/ui/ui_tutorial.mat" +local MESH_OUTLINE_FILL_MAT_PATH = "assets/arts/materials/mesh/outline_fill.mat" +local MESH_OUTLINE_MASK_MAT_PATH = "assets/arts/materials/mesh/outline_mask.mat" +local BLUR_MAT_PATH = "assets/arts/materials/post_effect/blur.mat" +local VIVID_BLOOM_MAT_PATH = "assets/arts/materials/post_effect/vivid_bloom.mat" +local BLIT_COPY_MAT_PATH = "assets/arts/materials/post_effect/blit_copy.mat" +local FXAA_MAT_PATH = "assets/arts/materials/post_effect/fxaa.mat" +local RADIAL_BLUR_MAT_PATH = "assets/arts/materials/post_effect/radial_blur.mat" + +local TypeOfShaderVariantCollection = typeof(CS.UnityEngine.ShaderVariantCollection) +local TypeOfMaterial = typeof(CS.UnityEngine.Material) +local TypeOfPostEffectBehaviour = typeof(CS.BF.PostEffectBehaviour) + +function RenderManager:initRender(callBack) + if self.renderInited then + callBack() + return + end + self.renderInited = true + if USE_AB then + local time = os.clock() + ResourceManager:loadOriginAssetAsync(SHADER_VARIANT_PATH, TypeOfShaderVariantCollection, function(assetPath, asset) + asset:WarmUp() + self:initMaterials(callBack) + Logger.log("init render use time " .. (os.clock() - time)) + end) + else + self:initMaterials(callBack) + end +end + +function RenderManager:initMaterials(callback) + local loadCount = 4 + + ResourceManager:loadOriginAssetAsync(UI_DEFAULT_MAT_PATH, TypeOfMaterial, function(path, material) + self.uiDefaultMat = material + BFRenderMgr:SetUIDefaultMat(self.uiDefaultMat) + loadCount = loadCount - 1 + if loadCount == 0 then + callback() + end + end) + + ResourceManager:loadOriginAssetAsync(UI_TUTORIAL_MAT_PATH, TypeOfMaterial, function(path, material) + self.uiTutorialMat = material + BFRenderMgr:SetUITutorialMat(self.uiTutorialMat) + loadCount = loadCount - 1 + if loadCount == 0 then + callback() + end + end) + + ResourceManager:loadOriginAssetAsync(MESH_OUTLINE_FILL_MAT_PATH, TypeOfMaterial, function(path, material) + self.meshOutlineFillMat = material + BFRenderMgr:SetMeshOutlineFillMat(self.meshOutlineFillMat) + loadCount = loadCount - 1 + if loadCount == 0 then + callback() + end + end) + + ResourceManager:loadOriginAssetAsync(MESH_OUTLINE_MASK_MAT_PATH, TypeOfMaterial, function(path, material) + self.meshOutlineMaskMat = material + BFRenderMgr:SetMeshOutlineMaskMat(self.meshOutlineMaskMat) + loadCount = loadCount - 1 + if loadCount == 0 then + callback() + end + end) + + -- ResourceManager:loadOriginAssetAsync(BLUR_MAT_PATH, TypeOfMaterial, function(path, material) + -- self.blurMat = material + -- BFRenderMgr:SetBlurMat(self.blurMat) + -- loadCount = loadCount - 1 + -- if loadCount == 0 then + -- callback() + -- end + -- end) + + -- ResourceManager:loadOriginAssetAsync(VIVID_BLOOM_MAT_PATH, TypeOfMaterial, function(path, material) + -- self.vividBloomMat = material + -- BFRenderMgr:SetVividBloomMat(self.vividBloomMat) + -- loadCount = loadCount - 1 + -- if loadCount == 0 then + -- callback() + -- end + -- end) + + -- ResourceManager:loadOriginAssetAsync(BLIT_COPY_MAT_PATH, TypeOfMaterial, function(path, material) + -- self.blitCopyMat = material + -- BFRenderMgr:SetBlitCopyMat(self.blitCopyMat) + -- loadCount = loadCount - 1 + -- if loadCount == 0 then + -- callback() + -- end + -- end) + + -- ResourceManager:loadOriginAssetAsync(FXAA_MAT_PATH, TypeOfMaterial, function(path, material) + -- self.fxaaMat = material + -- BFRenderMgr:SetFxaaMat(self.fxaaMat) + -- loadCount = loadCount - 1 + -- if loadCount == 0 then + -- callback() + -- end + -- end) + + -- ResourceManager:loadOriginAssetAsync(RADIAL_BLUR_MAT_PATH, TypeOfMaterial, function(path, material) + -- self.radialBlurMat = material + -- BFRenderMgr:SetRadialBlur(self.radialBlurMat) + -- loadCount = loadCount - 1 + -- if loadCount == 0 then + -- callback() + -- end + -- end) +end + +function RenderManager:loadShaderAsync(shaderPath, callBack) + ResourceManager:loadOriginAssetAsync(shaderPath, GConst.TYPEOF_UNITY_CLASS.SHADER, callBack) +end + +function RenderManager:unloadShader(shaderPath, immediately) + ResourceManager:unload(shaderPath, immediately) +end + +function RenderManager:loadMaterialAsync(materialPath, callBack) + ResourceManager:loadOriginAssetAsync(materialPath, GConst.TYPEOF_UNITY_CLASS.MATERIAL, callBack) +end + +function RenderManager:unloadMaterial(materialPath, immediately) + ResourceManager:unload(materialPath, immediately) +end + +function RenderManager:closePostEffect(effectType, camera) + BFRenderMgr:ClosePostEffect(effectType, camera) +end + +function RenderManager:closeFxaa(camera) + self:closePostEffect(RenderManager.POST_EFFECT_TYPE.FXAA, camera) +end + +---- 传入一张图,返回高斯模糊图 +function RenderManager:getBlurTexture(texture, width, height, iteration) + if not iteration then + iteration = 4 + end + + if not self.blurSizeID then + self.blurSizeID = CS.UnityEngine.Shader.PropertyToID("_BlurSize") + end + + local CSRenderTexture = CS.UnityEngine.RenderTexture + local CSGraphics = CS.UnityEngine.Graphics + local rt0 = CSRenderTexture.GetTemporary(width, height) + + for i = 1, iteration do + self.blurMat:SetFloat(self.blurSizeID, i) + local rt1 = CSRenderTexture.GetTemporary(width, height) + if i == 1 then + CSGraphics.Blit(texture, rt1, self.blurMat, 0) + else + CSGraphics.Blit(rt0, rt1, self.blurMat, 0) + end + CSRenderTexture.ReleaseTemporary(rt0) + rt0 = CSRenderTexture.GetTemporary(width, height) + CSGraphics.Blit(rt1, rt0, self.blurMat, 1) + CSRenderTexture.ReleaseTemporary(rt1) + end + return rt0 +end + +---- 是否支持gpu instancing +function RenderManager:isSupportInstancing() + return SUPPORTS_INSTANCING +end + +function RenderManager:getUITutorialMat() + return self.uiTutorialMat +end + +return RenderManager \ No newline at end of file diff --git a/lua/app/common/render_manager.lua.meta b/lua/app/common/render_manager.lua.meta new file mode 100644 index 00000000..ef9e2351 --- /dev/null +++ b/lua/app/common/render_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: accb08450dac62b4bb82e2b51dfd4424 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/resource_manager.lua b/lua/app/common/resource_manager.lua new file mode 100644 index 00000000..a30ff9b7 --- /dev/null +++ b/lua/app/common/resource_manager.lua @@ -0,0 +1,115 @@ +local ResourceManager = { + sceneAbPath = {} +} + +local AB_SUFFIX = ".ab" + +local ResMgr = CS.BF.BFMain.Instance.ResMgr + +function ResourceManager:getSceneAssetBundlePath(path) + local abPath = self.sceneAbPath[path] + if abPath == nil then + local start_index = string.find(path, '/') + if start_index == nil then + abPath = path .. AB_SUFFIX + else + abPath = string.sub(path, start_index + 1) .. AB_SUFFIX + end + self.sceneAbPath[path] = abPath + end + return abPath +end + +function ResourceManager:getSceneLoadPath(scenePath) + if USE_AB then + return ResMgr:GetSceneLoadPath(self:getSceneAssetBundlePath(scenePath)) + else + return scenePath:gsub("^%l", string.upper) + end +end + +function ResourceManager:loadAsync(path, type, callback) + return self:loadOriginAssetAsync(path, type, function(assetPath, asset) + local obj = CS.UnityEngine.Object.Instantiate(asset) + callback(assetPath, obj) + end) +end + +function ResourceManager:loadOriginAssetAsync(path, type, callback) + return ResMgr:LoadAsync(path, type, callback) +end + +function ResourceManager:loadSceneAsync(scenePath, callback) + ResMgr:LoadSceneAsync(self:getSceneAssetBundlePath(scenePath), callback) +end + +function ResourceManager:unloadScene(path) + ResMgr:UnloadScene(self:getSceneAssetBundlePath(path)) +end + +function ResourceManager:unload(path, immediately) + if immediately then + ResMgr:Unload(path, true) + else + ResMgr:Unload(path, false) + end +end + +function ResourceManager:unloadAllDelayAssets() + ResMgr:UnloadAllDelayAssets() +end + +function ResourceManager:clear() + ResMgr:Clear() +end + +function ResourceManager:destroyPrefab(prefab) + CS.UnityEngine.Object.Destroy(prefab) +end + +function ResourceManager:containsAsset(assetPath) + return ResMgr:ContainsAsset(assetPath) +end + +if NOT_PUBLISH then + ResourceManager._ReleaseloadOriginAssetAsync = ResourceManager.loadOriginAssetAsync + function ResourceManager:loadOriginAssetAsync(path, type, callback) + local function checkAsset(assetPath, asset) + if asset == nil then + Logger.logError("[LOAD_ERROR]load error:%s", assetPath) + end + callback(assetPath, asset) + end + self:_ReleaseloadOriginAssetAsync(path, type, checkAsset) + end + + ResourceManager._ReleaseloadAsync = ResourceManager.loadAsync + function ResourceManager:loadAsync(...) + if self._debugLoadAsyncFuncMap == nil then + self._debugLoadAsyncFuncMap = { + [UIPrefabManager.loadUIWidgetAsync] = true, + [EffectManager.loadUIEffectAsync] = true, + [EffectManager.loadEffectAsync] = true, + [EffectManager.loadBattleEffectAsync] = true, + [EffectManager.loadHeroShowEffectAsync] = true, + [ModelManager.loadHeroAsync] = true, + [ModelManager.loadWeaponAsync] = true, + [ModelManager.loadModelAsync] = true, + [ModelManager.loadHeroShowAsync] = true, + [ModelManager.loadMonsterAsync] = true, + [SpineManager.loadUISpinePrefabAsync] = true, + [SpineManager.loadMeshSpinePrefabAsync] = true, + [SpineManager.loadHeroAsync] = true, + [SpineManager.loadBattleEffectAsync] = true, + } + end + local currFunc = debug.getinfo(2, "f").func + if self._debugLoadAsyncFuncMap[currFunc] == nil then + Logger.logFatal("you can not call ResourceManager:loadAsync directly") + end + self:_ReleaseloadAsync(...) + end +end + + +return ResourceManager \ No newline at end of file diff --git a/lua/app/common/resource_manager.lua.meta b/lua/app/common/resource_manager.lua.meta new file mode 100644 index 00000000..c1828caa --- /dev/null +++ b/lua/app/common/resource_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7864dee2e1d007244b1cb5fac876cf94 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/safe_area_manager.lua b/lua/app/common/safe_area_manager.lua new file mode 100644 index 00000000..f96eed4d --- /dev/null +++ b/lua/app/common/safe_area_manager.lua @@ -0,0 +1,25 @@ +local SafeAreaManager = {} + +local NOTCH_SCREEN_SIMULATE = "NOTCH_SCREEN_SIMULATE"; + +local DESIGN_WIDTH = 720 +local DESIGN_HEIGHT = 1280 + +-- 获取刘海高度 +function SafeAreaManager:getNotchScreenHeight() + -- local notchHeight = CS.BF.SafeAreaManager.GetNotchScreenHeight() + -- local width, height = GFunc.getScreenSize() + -- local sw = width / DESIGN_WIDTH -- 0.64 + -- local sh = height / DESIGN_HEIGHT -- 0.52 + -- local minScale = 1 + -- if sw < sh then + -- minScale = sw + -- else + -- minScale = sh + -- end + -- return notchHeight / minScale + -- 此项目不用处理刘海屏适配 + return 0 +end + +return SafeAreaManager \ No newline at end of file diff --git a/lua/app/common/safe_area_manager.lua.meta b/lua/app/common/safe_area_manager.lua.meta new file mode 100644 index 00000000..e8917fe2 --- /dev/null +++ b/lua/app/common/safe_area_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 931388e31bda5984786825014172b52a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/scheduler_manager.lua b/lua/app/common/scheduler_manager.lua new file mode 100644 index 00000000..d23049b8 --- /dev/null +++ b/lua/app/common/scheduler_manager.lua @@ -0,0 +1,187 @@ +local SchedulerManager = { + crossDayCallbackMap = {} +} + +local schedulerMap = {} +local waitRemoveList = {} +local waitSchedulerList = {} +local totalSid = 0 +local totalNum = 0 + +local CSTime = CS.UnityEngine.Time + +function SchedulerManager:update() + if totalNum > 0 then + --这里直接使用deltaTime可能有点不够精确,因为计时开始的时间不一定是上一帧准点 + local inter = CSTime.deltaTime or 0 + for sid, info in pairs(schedulerMap) do + if not info.needRemove and not info.pause then + info.tick = info.tick + inter + if info.tick >= info.inter then + info.tick = info.tick - info.inter + local stop = not info.rep + -- 先设置为true避免func里面报错导致每帧调用都会报错 + info.needRemove = true + if info.func then + local s = info.func(inter) + stop = stop or s + if stop then + self:unscheduleGlobal(sid) + else + info.needRemove = false + end + else + self:unscheduleGlobal(sid) + end + end + end + end + end + + if self.dirty then + self.dirty = false + for i = 1, #waitRemoveList do + local sid = table.remove(waitRemoveList) + if schedulerMap[sid] then + schedulerMap[sid] = nil + totalNum = totalNum - 1 + end + end + for i = 1, #waitSchedulerList do + local info = table.remove(waitSchedulerList) + schedulerMap[info.sid] = info + totalNum = totalNum + 1 + end + end +end + +function SchedulerManager:_startSchedule(func, inter, rep) + totalSid = totalSid + 1 + local info = {sid = totalSid, inter = inter or 0, tick = 0, func = func, rep = rep} + table.insert(waitSchedulerList, info) + self.dirty = true + return totalSid +end + +-- 此方法不能直接在外部调用,请使用例如BaseUI,BaseModule等封装好的接口 +function SchedulerManager:scheduleGlobal(func, inter) + return self:_startSchedule(func, inter, true) +end + +-- 此方法不能直接在外部调用,请使用例如BaseUI,BaseModule等封装好的接口 +function SchedulerManager:performWithDelayGlobal(func, delay) + return self:_startSchedule(func, delay, false) +end + +function SchedulerManager:unscheduleGlobal(sid) + local info = schedulerMap[sid] + if info then + info.needRemove = true + info.waitRemove = true + table.insert(waitRemoveList, sid) + self.dirty = true + else + for k, v in ipairs(waitSchedulerList) do + if sid == v.sid then + table.remove(waitSchedulerList, k) + break + end + end + end +end + +function SchedulerManager:pause(sid) + local info = schedulerMap[sid] + if info then + if not info.pause and not info.waitRemove then + info.pause = true + end + else + for k, v in ipairs(waitSchedulerList) do + if sid == v.sid then + if not v.pause and not v.waitRemove then + v.pause = true + end + break + end + end + end +end + +function SchedulerManager:resume(sid) + local info = schedulerMap[sid] + if info then + if info.pause and not info.waitRemove then + info.pause = false + end + else + for k, v in ipairs(waitSchedulerList) do + if sid == v.sid then + if v.pause and not v.waitRemove then + v.pause = false + end + break + end + end + end +end + +function SchedulerManager:unscheduleAll() + schedulerMap = {} + waitRemoveList = {} + waitSchedulerList = {} + totalNum = 0 + self.dirty = false +end + +function SchedulerManager:clear() + self:unscheduleAll() +end + +if NOT_PUBLISH then + function SchedulerManager:_checkDebugScheduleFuncMap() + if self._debugScheduleFuncMap == nil then + local ScrollRectBase = require "app/ui/common/scrollrect/scrollrect_base" + self._debugScheduleFuncMap = { + [BaseUI.performWithDelayGlobal] = true, + [BaseUI.scheduleGlobal] = true, + [BaseScene.performWithDelayGlobal] = true, + [BaseScene.scheduleGlobal] = true, + [BaseModule.performWithDelayGlobal] = true, + [BaseModule.scheduleGlobal] = true, + [BaseObject.performWithDelayGlobal] = true, + [BaseObject.scheduleGlobal] = true, + [SceneManager.scheduleGlobal] = true, + [SDKManager.doNextFrame] = true, + [SDKManager.initPayListener] = true, + [SDKManager.tryLoadRewardedAdDelay] = true, + [ScrollRectBase.refillCells] = true, + [DataManager.scheduleGlobal] = true, + [NetManager.performWithDelayGlobal] = true, + [NetManager.scheduleGlobal] = true, + } + end + end + + SchedulerManager._releaseScheduleGlobal = SchedulerManager.scheduleGlobal + function SchedulerManager:scheduleGlobal(...) + self:_checkDebugScheduleFuncMap() + local currFunc = debug.getinfo(2, "f").func + if self._debugScheduleFuncMap[currFunc] == nil then + Logger.logFatal("you can not call SchedulerManager:scheduleGlobal directly") + end + return self:_releaseScheduleGlobal(...) + end + + SchedulerManager._releasePerformWithDelayGlobal = SchedulerManager.performWithDelayGlobal + function SchedulerManager:performWithDelayGlobal(...) + self:_checkDebugScheduleFuncMap() + local currFunc = debug.getinfo(2, "f").func + if self._debugScheduleFuncMap[currFunc] == nil then + Logger.logFatal("you can not call SchedulerManager:performWithDelayGlobal directly") + end + return self:_releasePerformWithDelayGlobal(...) + end +end + +return SchedulerManager \ No newline at end of file diff --git a/lua/app/common/scheduler_manager.lua.meta b/lua/app/common/scheduler_manager.lua.meta new file mode 100644 index 00000000..f172dd4b --- /dev/null +++ b/lua/app/common/scheduler_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b3781404e1c8481469887c4f5777c276 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/sdk_manager.lua b/lua/app/common/sdk_manager.lua new file mode 100644 index 00000000..8c0ecce4 --- /dev/null +++ b/lua/app/common/sdk_manager.lua @@ -0,0 +1,465 @@ +local SDKManager = { + startLoginTime = 0 +} + +-- 新版本SDK部分 ******************************************************** + +SDKManager.BF_LOGIN_TYPE = { + NONE = 0, + TOKEN = 1, + GUEST = 2, + FACEBOOK = 3, + TEST = 4, + GOOGLE = 5, + APPLE = 6 +} + +SDKManager.BF_LOGIN_RESULT = { + Success = 0, -- 成功 + TokenInvalid = 100, -- token失效 + NotAccount = 101, -- 账号不存在 + NotBinding = 102, -- 绑定失败 + Data = 103, -- 数据错误 + RepeatBinding = 104, -- 重复绑定 + BindOtherAccount = 105, -- 已绑定其他账号 + CheckToken = 106, -- 检查口令失败 +} + +-- 用于LoginReq +SDKManager.LOGIN_TYPE = { + [0] = "none", + [1] = "token", + [2] = "guest", -- 游客 + [3] = "facebook", + [4] = "test", + [5] = "google", + [6] = "apple", +} + +-- 支付方式 +SDKManager.PAY_TYPE = { + NONE = 0, + GOOGLE = 1, + IOS = 2, + DEBUG = 10 +} + +local PAY_TYPE_IN_APP = "inapp" +local PAY_TYPE_SUBS = "subs" + +local SDKPayMgr +if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then + SDKPayMgr = require "app/common/sdk_pay_google_manager" +elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then + SDKPayMgr = require "app/common/sdk_pay_ios_manager" +else + SDKPayMgr = require "app/common/sdk_pay_default_manager" +end + +function SDKManager:init() + Logger.logHighlight("SDK INIT ---------------") + + -- 标记状态 + self.isLogining = false + self.isLogouting = false + + -- lazy init + local SDKMgr = CS.BF.BFMain.Instance.SDKMgr + self:initPay() + self:initPayListener() + self:initAdsListener() + + -- 拿到firebasetoken + -- self:initFireBaseToken() +end + +-- 支付相关接口 ********************************************************************** 开始 +function SDKManager:initPay() + SDKPayMgr:init() +end + +function SDKManager:initPayListener() + -- 设置支付回调,平时支付走正常回调,如果延迟到账则走延迟到账的回调 + if not SDKPayMgr:needInit() then + return + end + if self.paySid then + SchedulerManager:unscheduleGlobal(self.paySid) + self.paySid = nil + end + self.paySid = SchedulerManager:performWithDelayGlobal(function() + self:initPayListener() + end, 5) + SDKPayMgr:initPay(function() + if self.paySid then + SchedulerManager:unscheduleGlobal(self.paySid) + self.paySid = nil + end + self:queryProducePrice() + end) +end + +function SDKManager:queryProducePrice() + if self.priceSid then + SchedulerManager:unscheduleGlobal(self.priceSid) + self.priceSid = nil + end + Logger.log("queryProducePrice") + if SDKPayMgr:gotProduct() then + return + end + local products = SDKPayMgr:queryProducePrice() or {} + if #products <= 0 then + self.priceSid = SchedulerManager:performWithDelayGlobal(function() + self:queryProducePrice() + end, 5) + end +end + +-- 查询付费产品信息 +function SDKManager:queryProducts(callback) + SDKPayMgr:queryProducts(callback) +end + +-- 处理未完成的订单 +function SDKManager:doUncompleteOrder(callback, productId) + SDKPayMgr:doUncompleteOrder(callback, productId) +end + +-- sdk接口 得到特定商品的price +function SDKManager:getProductPrice(skuId) + return SDKPayMgr:getProductPrice(skuId) +end + +-- sdk接口 得到特定商品的priceAmountMicros +function SDKManager:getProductPriceAmountMicros(skuId) + return SDKPayMgr:getProductPriceAmountMicros(skuId) +end + +-- sdk接口 得到特定商品的currency_code +function SDKManager:getPriceCurrencyCode(skuId) + return SDKPayMgr:getPriceCurrencyCode(skuId) +end + +-- 获取支付方式,目前只有google支付 +function SDKManager:getSDKPayType() + return SDKPayMgr:getSDKPayType() +end + + +function SDKManager:getIsSupportSDKPay() + return SDKPayMgr:getIsSupportSDKPay() +end + +-- sdk将已完成的订单消耗掉 +function SDKManager:consumePurchase(token, callback) + SDKPayMgr:consumePurchase(token, callback) +end + +-- 检查是否可以支付 +function SDKManager:checkPay(productId, callback) + if not productId or not Platform:getIsPublishChannel() or not SDKManager:getIsSupportSDKPay() then -- 没有productId、非正式渠道、不支持sdk支付的直接返回可支付 + callback(0) + return + end + + SDKPayMgr:checkPay(productId, callback) +end + +-- 支付 +function SDKManager:pay(productId, orderId, rechargeId, giftType, callback) + SDKPayMgr:pay(productId, orderId, rechargeId, giftType, callback) +end + +function SDKManager:doUncompletePay(callback) + SDKPayMgr:doUncompletePay(callback) +end + +-- 支付相关接口 ********************************************************************** 结束 + +-- 获取设备语言 +function SDKManager:getLanguage() + return CS.BF.BFMain.Instance.SDKMgr:GetLanguage() +end + +-- 获取设备时区 +function SDKManager:getTimeZone() + return CS.BF.BFMain.Instance.SDKMgr:GetTimeZone() +end + +function SDKManager:initFireBaseToken() + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetFirebaseToken(function(token) + self.firebaseToken = token + end) +end + +function SDKManager:getFirebaseToken() + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetFirebaseToken(function(token) + self.firebaseToken = token + end) + return self.firebaseToken +end + +function SDKManager:doNextFrame(callback) + SchedulerManager:performWithDelayGlobal(callback, 0) +end + +--- 广告 +function SDKManager:isAdLoaded() + if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then + return CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr.AdLoaded + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then + return CS.AdManager.Instance:IsRewardedAdReady() + elseif EDITOR_MODE then + return true + end + return false +end + +function SDKManager:tryLoadRewardedAdDelay() + if self.adDelaySid then + SchedulerManager:unscheduleGlobal(self.adDelaySid) + self.adDelaySid = nil + end + self.adDelaySid = SchedulerManager:performWithDelayGlobal(function() + self.adDelaySid = nil + CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:TryLoadRewardedAd() + end, 5) +end + +function SDKManager:initAdsListener() + if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then + CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdShowCallback(function(code) + -- code 为0 表示广告播放成功 + if code == 0 then + BIReport:postAdPlaySuccess(self.adsClickType) + else + self:tryLoadRewardedAdDelay() + end + end) + CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdLoadedCallback(function(code) + -- code 为0 表示广告加载成功 + if code ~= 0 then + self:tryLoadRewardedAdDelay() + end + end) + CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdEarnedRewardCallback(function(code, result) + if self.adCallback then + self:adRewradAd() + self.adCallback() + BIReport:postAdRewardGet(self.adsClickType) + self.adsClickType = nil + self.adCallback = nil + end + end) + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then + -- 初始化一下 + local adManager = CS.AdManager.Instance + end +end + +function SDKManager:showFullScreenAds(adsClickType, adCallback) + if EDITOR_MODE then + if not adsClickType then + local params = { + content = "SDKManager showFullScreenAds has no adsClickType", + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + Logger.log("SDKManager showFullScreenAds has no adsClickType") + end + end + + BIReport:postAdClick(adsClickType) + if EDITOR_MODE then + self:adRewradAd() + if adCallback then + adCallback() + end + return true + end + + if NetManager:isNotReachable() then + -- 没有网 + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.NO_NETWORK)) + return false + end + if NetManager:getIsBusy() then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.NETWORK_ERROE_1)) + return false + end + if DataManager.MallActData:skipAd() then + self:adRewradAd(true) + if adCallback then + adCallback() + end + return true + end + if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then + if not CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr.AdLoaded then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.NO_ADS)) + return false + end + CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:SetAdPlacement(adsClickType) + CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr.AdLoaded = false + self.adCallback = adCallback + self.adsClickType = adsClickType + CS.BF.BFMain.Instance.SDKMgr.BFIronSourceSDKMgr:ShowFullScreenAds() + return true + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then + if not CS.AdManager.Instance:IsRewardedAdReady() then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.NO_ADS)) + return false + end + self.adsClickType = adsClickType + BIReport:postAdPlaySuccess(self.adsClickType) + CS.AdManager.Instance:ShowRewardedAd(function(code) + if code == 0 then + self:adRewradAd() + if adCallback then + adCallback() + end + BIReport:postAdRewardGet(self.adsClickType) + self.adsClickType = nil + end + end) + return true + end +end + +function SDKManager:adRewradAd(noReport) + Logger.logHighlight("-------------------") + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_WATCH_AD) + if not noReport then + DataManager.PlayerData:addAdCount() + -- BIReport:postAdEvent() + end +end + +function SDKManager:getServerList(callback) + local postData = { + project_id = "b5", + bundle_id = Platform:getIdentifier(), + version = Platform:getClientVersion(), + device_id = DeviceHelper:getDeviceId(), + env = "release",-- 暂时写死 + } + local loginCenterUrl = CS.BF.BFPlatform.GetLoginCenterURL() + loginCenterUrl = loginCenterUrl .. "?platform=" .. CS.System.Uri.EscapeDataString(Platform:getPlatformStr()) + -- lua这边直接构建好参数 + for k, v in pairs(postData) do + loginCenterUrl = loginCenterUrl .. "&" .. k .. "=" .. CS.System.Uri.EscapeDataString(v) + end + local guid = CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetNewPlayerGuid() + loginCenterUrl = loginCenterUrl .. "&random=" .. CS.System.Uri.EscapeDataString(guid) + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:SetLuaServerListCallback(function(isSuccess, data) + if callback then + callback(isSuccess, data) + end + end) + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetServerList(loginCenterUrl) +end + +function SDKManager:_login(callback, loginType) + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:SetLuaLoginCallback(callback) + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:Login(loginType) +end + +function SDKManager:login(callback, loginType) + self:logout(function() + if self.isLogining then -- 正在登陆中 + Logger.log("三方当前正在登陆中") + return + end + + self.isLogining = true + self:_login(function(code, msg) + if code == SDKManager.BF_LOGIN_RESULT.Success then + if not msg then + self.isLogining = false + return + end + local msgTab = json.decode(msg) + if msgTab == nil or type(msgTab) ~= "table" then + self.isLogining = false + return + end + local loginResult = json.decode(msgTab.msg) + if loginResult == nil or type(loginResult) ~= "table" then + self.isLogining = false + return + end + + local userId = loginResult.UserId + local token = loginResult.Token + local params = {} + if loginType == SDKManager.BF_LOGIN_TYPE.APPLE then + params = { + type = "apple", + id = tostring(userId), + token = tostring(token) + } + elseif loginType == SDKManager.BF_LOGIN_TYPE.GOOGLE then + params = { + type = "google", + id = tostring(userId), + id_token = tostring(token) + } + end + if callback then + callback(params) + end + end + self.isLogining = false + end, loginType) + end, loginType) +end + +function SDKManager:_logout(callback, loginType) + if loginType == SDKManager.BF_LOGIN_TYPE.FACEBOOK or loginType == SDKManager.BF_LOGIN_TYPE.GOOGLE then + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:SetLuaLogoutCallback(callback) + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:Logout(loginType) + else + if callback then + callback(SDKManager.BF_LOGIN_RESULT.Success, nil) + end + end +end + +function SDKManager:logout(callback, loginType) + if self.isLogouting then -- 正在登出 + Logger.log("当前正在登出中") + return + end + + self.isLogouting = true + + + self:_logout(function(code, msg) + if (code == SDKManager.BF_LOGIN_RESULT.Success) then + if callback then + callback() + end + else + if msg and msg ~= "" then + local jData = json.decode(msg) + if jData then + local type = jData.loginType + local msg = jData.msg + Logger.logError("登出失败 result:%s type:%s msg:%s", code, type, msg) + else + Logger.logError("登出失败 result:%s", code) + end + else + Logger.logError("登出失败") + end + if callback then + callback() + end + end + self.isLogouting = false + end, loginType) +end + +return SDKManager diff --git a/lua/app/common/sdk_manager.lua.meta b/lua/app/common/sdk_manager.lua.meta new file mode 100644 index 00000000..3104bce8 --- /dev/null +++ b/lua/app/common/sdk_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e9724727c54602e43b70bcc7a11daa70 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/sdk_pay_default_manager.lua b/lua/app/common/sdk_pay_default_manager.lua new file mode 100644 index 00000000..e8616c27 --- /dev/null +++ b/lua/app/common/sdk_pay_default_manager.lua @@ -0,0 +1,67 @@ +local SDKPayDefaultManager = {} + +function SDKPayDefaultManager:init() +end + +function SDKPayDefaultManager:needInit() + return false +end + +function SDKPayDefaultManager:initPay(callback) + self.products = {} + if callback then + callback() + end +end + +function SDKPayDefaultManager:gotProduct() + return true +end + +-- sdk接口 得到特定商品的price +function SDKPayDefaultManager:getProductPrice(skuId) +end + +-- sdk接口 得到特定商品的priceAmountMicros +function SDKPayDefaultManager:getProductPriceAmountMicros(skuId) +end + +-- sdk接口 得到特定商品的currency_code +function SDKPayDefaultManager:getPriceCurrencyCode(skuId) +end + +function SDKPayDefaultManager:getSDKPayType() + return SDKManager.PAY_TYPE.NONE +end + +-- 获取支付方式,目前只有google支付 +function SDKPayDefaultManager:getIsSupportSDKPay() + return false +end + +-- 检查是否可以支付 +function SDKPayDefaultManager:checkPay(productId, callback) + callback(0) +end + +-- 支付 +function SDKPayDefaultManager:pay(productId, orderId, rechargeId, giftType, callback) + callback("", orderId) +end + +function SDKPayDefaultManager:doUncompletePay(callback) +end + +-- 查询付费产品信息 +function SDKPayDefaultManager:queryProducts(callback) +end + +-- 处理未完成的订单 +function SDKPayDefaultManager:doUncompleteOrder(callback, productId) +end + +-- sdk将已完成的订单消耗掉 +function SDKPayDefaultManager:consumePurchase(token, callback) +end + +return SDKPayDefaultManager diff --git a/lua/app/common/sdk_pay_default_manager.lua.meta b/lua/app/common/sdk_pay_default_manager.lua.meta new file mode 100644 index 00000000..6f89b723 --- /dev/null +++ b/lua/app/common/sdk_pay_default_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f3097630175c24a4dabdc87d46d828f4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/common/sdk_pay_google_manager.lua b/lua/app/common/sdk_pay_google_manager.lua new file mode 100644 index 00000000..59615ad9 --- /dev/null +++ b/lua/app/common/sdk_pay_google_manager.lua @@ -0,0 +1,464 @@ +local SDKPayGoogleManager = {} + +local PAY_TYPE_IN_APP = "inapp" +local PAY_TYPE_SUBS = "subs" + +function SDKPayGoogleManager:init() +end + +function SDKPayGoogleManager:needInit() + return true +end + +function SDKPayGoogleManager:initPay(callback) + self.products = {} + CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:SetGoogleDelayPayCallback(SDKPayGoogleManager.onGooglePayDelayCallback) + if callback then + callback() + end +end + +-- 这里定义的时候不能使用冒号,否则参数不对 +function SDKPayGoogleManager.onGooglePayDelayCallback(code, msg) + if code == 0 and msg and msg ~= "" then + Logger.log("延迟支付到账:%s", msg) + local result = json.decode(msg) + local purchaseToken = result.purchaseToken + if purchaseToken == nil or purchaseToken == "" then + return + end + if result.obfuscatedAccountId then + PayManager:requestRewards(purchaseToken, result.obfuscatedAccountId) + end + end +end + +-- 查询付费产品信息 +function SDKPayGoogleManager:queryProducts(callback) + if self.queryProductsOver then -- 已经查询成功过了 + if callback then + callback() + end + else + local rechargeCfg = ConfigManager:getConfig("recharge") + if rechargeCfg then + local inAppList = {} -- 内购类 + local subsList = {} -- 订阅list + for _, rechargeInfo in ipairs(rechargeCfg) do + if rechargeInfo.subscribe then + table.insert(subsList, rechargeInfo.payId) + else + table.insert(inAppList, rechargeInfo.payId) + end + end + self.products = {} + self:queryProductInfo(PAY_TYPE_IN_APP, json.encode(inAppList), function(code, msg) + if code == 0 then + if msg and msg ~= "" then -- 更新products + Logger.logHighlight(msg) + local jData = json.decode(msg) + if jData and #jData > 0 then + for i = 1, #jData do + table.insert(self.products, jData[i]) + end + end + end + if #subsList > 0 then + self:queryProductInfo(PAY_TYPE_SUBS, json.encode(subsList), function(code, msg) + if code == 0 then + if msg and msg ~= "" then -- 更新products + local jData = json.decode(msg) + if jData and #jData > 0 then + for i = 1, #jData do + table.insert(self.products, jData[i]) + end + end + end + if callback then + callback() + end + end + end) + else + if callback then + callback() + end + end + end + end) + end + end +end + +-- 商品数据 +function SDKPayGoogleManager:queryProductInfo(payType, json, callback) + CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:QueryProductInfo(payType, json, function(code, msg) + SDKManager:doNextFrame(function() + callback(code, msg) + end) + end) +end + +-- 未完成的订单请求服务器 completeOrderState状态: +-- 0表示未完成订单消耗完成 +-- 1表示存在和指定productId相同的支付中的订单 +-- 2表示存在和指定productId相同的无法成功消耗的订单 +-- 3表示存在无法成功消耗的订单,但是其中没有和指定productId相同 +function SDKPayGoogleManager:reqPayReward(uncompleteList, productId, callback) + local index = 1 + local completeOrderState = 0 + local function handleOrder(uncompleteOrder) + if uncompleteOrder == nil then + if callback then + callback(completeOrderState) + end + return + end + if uncompleteOrder.purchaseState == "2" then + -- 处理中的订单 + index = index + 1 + if uncompleteOrder.productId and uncompleteOrder.productId ~= "" and uncompleteOrder.productId == productId then + -- 存在和指定productId相同的支付中的订单 + completeOrderState = 1 + end + handleOrder(uncompleteList[index]) + elseif uncompleteOrder.purchaseToken then + -- 去服务器验证 + if uncompleteOrder.obfuscatedAccountId then + PayManager:requestRewards(uncompleteOrder.purchaseToken, uncompleteOrder.obfuscatedAccountId) + else + SDKManager:consumePurchase(uncompleteOrder.purchaseToken, function() + index = index + 1 + handleOrder(uncompleteList[index]) + end) + end + else + index = index + 1 + handleOrder(uncompleteList[index]) + end + end + handleOrder(uncompleteList[index]) +end + +-- 处理未完成的订单 +function SDKPayGoogleManager:doUncompleteOrder(callback, productId) + self:queryUncompleteOrder(function(list) + if list and type(list) == "table" and #list > 0 then + self:reqPayReward(list, productId, callback) + else -- 没有未完成的订单 + if callback then + callback(0) + end + end + end) +end + +-- 查询未完成的订单 +function SDKPayGoogleManager:queryUncompleteOrder(callback) + local list -- 查询到的数据,整合了内购 + -- 查找内购 + CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:QueryUncompleteOrder(PAY_TYPE_IN_APP, function(code, msg) + -- 此查询接口没有失败的情况 + if msg and msg ~= "" then + list = json.decode(msg) + end + + if callback then + callback(list) + end + end) +end + +-- 订阅到期查询订阅状态 +function SDKPayGoogleManager:querySubscribeInfo() + CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:QueryUncompleteOrder(PAY_TYPE_SUBS, function(code, msg) + -- 此查询接口没有失败的情况 + local subsList + if msg and msg ~= "" then + subsList = json.decode(msg) + end + if subsList then + for _, order in ipairs(subsList) do + if order.purchaseState == 1 then -- 已购买 + local args = { + purchase_token = order.purchaseToken, + order_id = order.obfuscatedAccountId + } + break + end + end + end + end) +end + +function SDKPayGoogleManager:queryProducePrice() + return self.products +end + +function SDKPayGoogleManager:gotProduct() + return true +end + +-- sdk接口 得到特定商品的price +function SDKPayGoogleManager:getProductPrice(skuId) + if self.products and #self.products > 0 then + for _, data in ipairs(self.products) do + if data.sku == skuId then + return data.price + end + end + end + return nil +end + +-- sdk接口 得到特定商品的priceAmountMicros +function SDKPayGoogleManager:getProductPriceAmountMicros(skuId) + if self.products and #self.products > 0 then + for _, data in ipairs(self.products) do + if data.sku == skuId then + return data.priceAmountMicros + end + end + end + return nil +end + +-- sdk接口 得到特定商品的currency_code +function SDKPayGoogleManager:getPriceCurrencyCode(skuId) + if self.products and #self.products > 0 then + for _, data in ipairs(self.products) do + if data.sku == skuId then + return data.priceCurrencyCode + end + end + end + return nil +end + +function SDKPayGoogleManager:getSDKPayType() + if Platform:getIsPublishChannel() then + return SDKManager.PAY_TYPE.GOOGLE + else + return SDKManager.PAY_TYPE.NONE + end +end + +-- 获取支付方式,目前只有google支付 +function SDKPayGoogleManager:getIsSupportSDKPay() + return true +end + +function SDKPayGoogleManager:_getIsGoogleStoreConnected() + return CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr.ConnectStoreSucc +end + +-- 检查是否可以支付 +function SDKPayGoogleManager:checkPay(productId, callback) + if self:_getIsGoogleStoreConnected() then -- google商店是否初始化 + self:doUncompleteOrder(function(code) -- 先处理未完成的订单 + if code == 0 then + callback(0) + elseif code == 1 then -- 指定的productId存在支付状态中的订单 + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + elseif code == 2 then -- 指定的productId存在未完成的订单消耗失败的情况 + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + else -- 存在未完成的订单消耗失败的情况,但是因为不是当前productId,所以允许继续支付 + callback(0) + end + end, productId) + else + self:connectGoogleStore(function(code) + if code == 0 then + self:doUncompleteOrder(function(consumeSucc) + if code == 0 then + callback(0) + elseif code == 1 then -- 指定的productId存在支付状态中的订单 + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + elseif code == 2 then -- 指定的productId存在未完成的订单消耗失败的情况 + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + else -- 存在未完成的订单消耗失败的情况,但是因为不是当前productId,所以允许继续支付 + callback(0) + end + end, productId) + else + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_22), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + end + end) + end +end + +-- 支付 +function SDKPayGoogleManager:pay(productId, orderId, rechargeId, giftType, callback) + self:doGooglePay(productId, orderId, rechargeId, giftType, callback) +end + +-- 连接Google商店 +function SDKPayGoogleManager:connectGoogleStore(callback) + CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:ConnectGoogleStore(function(code) + SDKManager:doNextFrame(function() + callback(code) + end) + end) +end + +function SDKPayGoogleManager:doGooglePay(productId, orderId, rechargeId, giftType, callback) + local payType = PAY_TYPE_IN_APP + local rechargeCfg = ConfigManager:getConfig("recharge")[rechargeId] + if rechargeCfg.subscribe then + payType = PAY_TYPE_SUBS + end + CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:Pay(payType, productId, orderId, function(code, msg) + if code == 0 then + -- 支付成功 + Logger.log("pay success:%s", msg) + local result = json.decode(msg) + if callback then + callback(result.purchaseToken, result.obfuscatedAccountId, result.orderId) + end + elseif code == 1 then + -- 支付取消 + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_25)) + BIReport:postPayCancel(productId, orderId, rechargeId, giftType) + else + -- 支付失败 + Logger.log("pay failed") + BIReport:postPayFailed(productId, orderId, rechargeId, msg or GConst.EMPTY_STRING, giftType) + end + end) +end + +-- sdk将已完成的订单消耗掉 +function SDKPayGoogleManager:consumePurchase(token, callback) + if not token then + return + end + CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr:ConsumePurchase(token, function(code, msg) + if code == 0 then + Logger.log("consume %s success", token) + else + Logger.log("consume %s failed", token) + end + if callback then + callback(code) + end + end) +end + +function SDKPayGoogleManager:doUncompletePay(callback) + -- 每次游戏的过程中只处理一次 + if self.alreadyFinishUncompletePay then + return + end + if not DataManager:getLoginSuccess() then + return + end + if NetManager:getIsBusy() then + return + end + if self:_getIsGoogleStoreConnected() then + -- google商店是否初始化 + self.alreadyFinishUncompletePay = true + SDKManager:queryProducts(function() + SDKManager:doUncompleteOrder() + end) + end +end + +-- 第一步向服务器验证订单号 +-- function SDKPayGoogleManager:_checkPurchaseOrder(result, productId, callback) +-- -- SDKPayGoogleManager:saveOrderId(result.orderId) +-- if DataManager.PlayerData:isInPermanentOrders(result.obfuscatedAccountId) then +-- return +-- end +-- local params = {} +-- params.receipt = {} +-- params.receipt.packageName = Platform:getIdentifier() +-- params.receipt.productId = productId +-- params.receipt.purchaseToken = result.purchaseToken +-- params.receipt.subscription = false + +-- CS.BF.BFMain.Instance.ParseClientMgr:SetLuaCheckPurchaseOrderCallback(function (msg) +-- local serverResult = json.decode(msg) +-- local _result = serverResult.result +-- Logger.printTable(serverResult) +-- if _result and _result.data then +-- if _result.code == 0 then +-- -- SDKPayGoogleManager:delOrderId(_result.data.orderId) +-- SDKPayGoogleManager:saveOrderId(_result.data.obfuscatedExternalAccountId, params) +-- SDKPayGoogleManager:checkPurchaseConsume(_result.data.obfuscatedExternalAccountId, params, callback) +-- -- if callback then +-- -- callback(_result.data.purchaseToken, _result.data.obfuscatedAccountId, _result.data.orderId) +-- -- end +-- elseif _result.code == 137 then +-- -- SDKPayGoogleManager:delOrderId(_result.data.orderId) +-- SDKPayGoogleManager:consumePurchase(_result.data.purchaseToken) +-- else +-- -- @TODO 重试 +-- end +-- end + +-- end) +-- CS.BF.BFMain.Instance.ParseClientMgr:CheckPurchaseGPOrder(json.encode(params)) +-- end + +-- 第二步向服务器申请消耗订单 +-- function SDKPayGoogleManager:checkPurchaseConsume(orderId, params, callback, callback1) +-- if not orderId or not params then +-- return +-- end +-- CS.BF.BFMain.Instance.ParseClientMgr:SetLuaCheckPurchaseConsumeCallback(function (msg) +-- local serverResult = json.decode(msg) +-- local _result = serverResult.result +-- Logger.printTable(serverResult) +-- if _result and _result.data then +-- if _result.code == 0 or _result.code == 137 then +-- SDKPayGoogleManager:delOrderId(orderId) +-- SDKPayGoogleManager:savePermanentOrderId(orderId) +-- if callback then +-- callback(_result.data.purchaseToken, _result.data.obfuscatedExternalAccountId, _result.data.orderId) +-- else + -- PayManager:requestRewards(_result.data.purchaseToken, orderId) +-- SDKPayGoogleManager:consumePurchase(_result.data.purchaseToken) +-- if callback1 then +-- callback1() +-- end +-- end +-- -- elseif _result.code == 137 then +-- -- SDKPayGoogleManager:delOrderId(orderId) +-- -- SDKPayGoogleManager:consumePurchase(_result.data.purchaseToken) +-- else +-- -- @TODO 重试 +-- end +-- end + +-- end) +-- CS.BF.BFMain.Instance.ParseClientMgr:CheckPurchaseGPConsume(json.encode(params)) +-- end + +-- 支付相关接口 ********************************************************************** 结束 +return SDKPayGoogleManager diff --git a/lua/app/common/sdk_pay_google_manager.lua.meta b/lua/app/common/sdk_pay_google_manager.lua.meta new file mode 100644 index 00000000..38de295a --- /dev/null +++ b/lua/app/common/sdk_pay_google_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fbf58d426d968fd4b9adf30d353a2973 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/common/sdk_pay_ios_manager.lua b/lua/app/common/sdk_pay_ios_manager.lua new file mode 100644 index 00000000..0baea03f --- /dev/null +++ b/lua/app/common/sdk_pay_ios_manager.lua @@ -0,0 +1,394 @@ +local SDKPayiOSManager = {} + +function SDKPayiOSManager:init() + self.iosPayInfos = LocalData:getIosPayInfo() + self.iosOrders = LocalData:getIosOrders() +end + +function SDKPayiOSManager:needInit() + return true +end + +function SDKPayiOSManager:initPay(callback) + self.products = {} + CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr.initCallback = function (isSuccess, products, errorStr) + if isSuccess then + -- GFunc.showToast("初始化成功") + if callback then + callback() + end + BIReport:postPayInitSuccess() + else + Logger.log(errorStr) + BIReport:postPayInitFailed(errorStr) + end + end + + CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr.buyCallback = function(isSuccess, result, errorStr) + if isSuccess then + -- if self.handleUncompleteIosOrder then + -- local payParams = self.iosPayInfos[result.transactionID] + -- local needConsumePurchase = true + -- if payParams ~= nil and payParams.order then + -- PayManager:requestRewards(result.receipt, payParams.order) + -- needConsumePurchase = false + -- end + -- if needConsumePurchase then + -- self:delIosPayInfo(result.transactionID) + -- self:delIosOrder(result.definition.id) + -- self:consumePurchase(result.definition.id) + -- BIReport:postPayFailed(result.definition.id, result.transactionID, nil, "error order") + -- end + -- else + -- -- 回调时机太早的话,就先保存起来,等后续补单的时候一起补 + -- local order = self.iosOrders[result.definition.id] + -- if order then + -- self:saveIosPayInfo(result.transactionID, result.receipt, order, result.definition.id) + -- self:delIosOrder(result.definition.id) + -- else + -- -- 之前没有记录只能算掉单了 + -- self:delIosPayInfo(result.transactionID) + -- self:delIosOrder(result.definition.id) + -- self:consumePurchase(result.definition.id) + -- BIReport:postPayFailed(result.definition.id, result.transactionID, nil, "not have order") + -- end + -- end + else + -- if errorStr and errorStr ~= "" then + -- BIReport:postPayFailed(result.definition.id, result.transactionID, nil, errorStr) + -- else + -- BIReport:postPayFailed(result.definition.id, result.transactionID, nil, "1") + -- end + end + end + + local rechargeCfg = ConfigManager:getConfig("recharge") + local products = {} + for i,v in ipairs(rechargeCfg) do + table.insert(products, {productId = v.payId, type = CS.UnityEngine.Purchasing.ProductType.Consumable}) + end + CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:Init(products) +end + +function SDKPayiOSManager:queryProducePrice() + if self.products and #self.products > 0 then + return self.products + end + local rechargeCfg = ConfigManager:getConfig("recharge") + self.products = {} + for _, v in ipairs(rechargeCfg) do + local price = CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:GetLocalizedPrice(v.payId) + if price and price ~= "" then + Logger.log("product = %s, price = %s", v.payId, price) + table.insert(self.products, {sku = v.payId, price = price}) + end + end + return self.products +end + +function SDKPayiOSManager:queryProducts() +end + +-- 处理未完成的订单 +function SDKPayiOSManager:doUncompleteOrder(callback, productId) + self.handleUncompleteIosOrder = true + local orders = self.iosPayInfos + if orders == nil then + return callback and callback() + end + local uncompleteList = {} + for _, v in pairs(orders) do + table.insert(uncompleteList, v) + end + if #uncompleteList <= 0 then + return callback and callback() + end + local index = 1 + local function handleOrder(uncompleteOrder) + if uncompleteOrder == nil then + return callback and callback() + end + -- 去服务器验证 + if uncompleteOrder.order then + PayManager:requestRewards(uncompleteOrder.receipt, uncompleteOrder.order) + else + SDKManager:delIosPayInfo(uncompleteOrder.transactionID) + SDKManager:delIosOrder(uncompleteOrder.productId) + self:consumePurchase(uncompleteOrder.productId, function() + index = index + 1 + handleOrder(uncompleteList[index]) + end) + end + end + handleOrder(uncompleteList[index]) +end + +-- 查询未完成的订单 +function SDKPayiOSManager:queryUncompleteOrder(callback) +end + +-- 订阅到期查询订阅状态 +function SDKPayiOSManager:querySubscribeInfo() +end + +function SDKPayiOSManager:gotProduct() + if self.products and #self.products > 0 then + return true + end + return false +end + +-- sdk接口 得到商品的price +function SDKPayiOSManager:getProductPrice(skuId) + if self.products and #self.products > 0 then + for _, data in ipairs(self.products) do + if data.sku == skuId then + return data.price + end + end + end + return nil +end + +-- sdk接口 得到特定商品的priceAmountMicros +function SDKPayiOSManager:getProductPriceAmountMicros(skuId) + if self.products and #self.products > 0 then + for _, data in ipairs(self.products) do + if data.sku == skuId then + return data.priceAmountMicros + end + end + end + return nil +end + +-- sdk接口 得到特定商品的currency_code +function SDKPayiOSManager:getPriceCurrencyCode(skuId) + if self.products and #self.products > 0 then + for _, data in ipairs(self.products) do + if data.sku == skuId then + return data.priceCurrencyCode + end + end + end + return nil +end + +function SDKPayiOSManager:getSDKPayType() + if Platform:getIsPublishChannel() then + return SDKManager.PAY_TYPE.IOS + else + return SDKManager.PAY_TYPE.NONE + end +end + +-- 获取支付方式,目前只有google支付 +function SDKPayiOSManager:getIsSupportSDKPay() + return true +end + +function SDKPayiOSManager:getIsGoogleStoreConnected() + return CS.BF.BFMain.Instance.SDKMgr.BFPaySDKMgr.ConnectStoreSucc +end + +function SDKPayiOSManager:_getIsIosInitialized() + return CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:IsInitialized() +end + +-- 检查是否可以支付 +function SDKPayiOSManager:checkPay(productId, callback) + if self:_getIsIosInitialized() then + SDKManager:doUncompleteOrder(function(code) + -- 先处理未完成的订单 + if code == 0 then + callback(0) + elseif code == 1 then + -- 指定的productId存在支付状态中的订单 + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + elseif code == 2 then + -- 指定的productId存在未完成的订单消耗失败的情况 + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.SETTING_DESC_23), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + else + -- 存在未完成的订单消耗失败的情况,但是因为不是当前productId,所以允许继续支付 + callback(0) + end + end) + end +end + +-- 支付 +function SDKPayiOSManager:pay(productId, orderId, rechargeId, giftType, callback) + self:doIosPay(productId, orderId, rechargeId, callback) +end + +-- sdk将已完成的订单消耗掉 +function SDKPayiOSManager:consumePurchase(token, callback) + CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:ConsumePurchase(token) + if callback then + callback(0) + end +end + +function SDKPayiOSManager:doIosPay(productId, orderId, rechargeId, giftType, callback) + self.blockTouch = true + UIManager:showWaitNet() + CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr.buyCallback = function(isSuccess, result, errorStr) + if self.blockTouch then + self.blockTouch = false + UIManager:hideWaitNet() + end + if isSuccess then + Logger.log("ios pay availableToPurchase = %s", result.availableToPurchase) + Logger.log("ios pay transactionID = %s", result.transactionID) + Logger.log("ios pay hasReceipt = %s", result.hasReceipt) + Logger.log("ios pay receipt = %s", result.receipt) + self:saveIosPayInfo(result.transactionID, result.receipt, orderId, productId) + if callback then + callback(result.receipt, orderId, result.transactionID) + end + else + if errorStr and errorStr ~= "" then + BIReport:postPayFailed(productId, orderId, rechargeId, errorStr, giftType) + else + BIReport:postPayFailed(productId, orderId, rechargeId, "1", giftType) + end + end + self:delIosOrder(productId) + end + self:saveIosOrder(productId, orderId) + CS.BF.BFMain.Instance.SDKMgr.IosPaySDKMgr:Buy(productId, orderId) +end + +function SDKPayiOSManager:doUncompletePay(callback) + -- 每次游戏的过程中只处理一次 + if self.alreadyFinishUncompletePay then + return + end + if not DataManager:getLoginSuccess() then + return + end + if NetManager:getIsBusy() then + return + end + + if self:_getIsIosInitialized() then + self.alreadyFinishUncompletePay = true + SDKManager:doUncompleteOrder() + end +end + +function SDKPayiOSManager:checkPurchaseOrder(result, productId, callback) +end + +function SDKPayiOSManager:saveIosPayInfo(transactionID, receipt, order, productId) + self.iosPayInfos[transactionID] = { + order = order, + receipt = receipt, + transactionID = transactionID, + productId = productId + } + LocalData:setIosPayInfo(self.iosPayInfos) + LocalData:save() +end + +function SDKPayiOSManager:saveIosOrder(productId, order) + self.iosOrders[productId] = order + LocalData:setIosOrders(self.iosOrders) + LocalData:save() +end + +function SDKPayiOSManager:delIosOrder(productId) + self.iosOrders[productId] = nil + LocalData:setIosOrders(self.iosOrders) + LocalData:save() +end + +-- 第一步向服务器验证订单号 +-- function SDKPayiOSManager:checkPurchaseIOSOrder(result, productId, callback) +-- Logger.printTable(result) +-- Logger.log(productId) +-- local orderId = DataManager.PlayerData:getIosOrderId(result.transactionID) +-- if not orderId then +-- return +-- end +-- if DataManager.PlayerData:isInPermanentOrders(result.transactionID) then +-- return +-- end +-- local params = {} +-- -- params.receipt.packageName = Platform:getIdentifier() +-- -- params.receipt.productId = productId +-- params.receipt = result.receipt +-- params.transaction_id = result.transactionID + +-- CS.BF.BFMain.Instance.ParseClientMgr:SetLuaCheckPurchaseIOSOrderCallback(function (msg) +-- local serverResult = json.decode(msg) +-- local _result = serverResult.result +-- Logger.printTable(serverResult) +-- -- 后端返回latest_receipt_info +-- if _result and _result.data then +-- if _result.code == 0 then +-- SDKPayiOSManager:saveOrderId(result.transactionID, params) +-- -- 第二次验证 +-- SDKPayiOSManager:checkPurchaseConsume(result, params, callback) +-- elseif _result.code == 137 then +-- -- SDKPayiOSManager:delOrderId(_result.data.orderId) +-- -- 消耗订单 +-- -- SDKPayiOSManager:consumePurchase(_result.data.purchaseToken) +-- else +-- -- @TODO 重试 +-- end +-- end + +-- end) +-- CS.BF.BFMain.Instance.ParseClientMgr:CheckPurchaseIOSOrder(json.encode(params)) +-- end + +-- 第二步向服务器申请消耗订单 +-- function SDKPayiOSManager:checkPurchaseConsume(result, params, callback, callback1) +-- if not result or not params then +-- return +-- end +-- local orderId = DataManager.PlayerData:getIosOrderId(result.transactionID) +-- if not orderId then +-- return +-- end +-- CS.BF.BFMain.Instance.ParseClientMgr:SetLuaCheckPurchaseIOSConsumeCallback(function (msg) +-- local serverResult = json.decode(msg) +-- local _result = serverResult.result +-- Logger.printTable(serverResult) +-- if _result and _result.data then +-- if _result.code == 0 then +-- -- 处理本地存储订单 +-- SDKPayiOSManager:delIosOrderId(result.transactionID) +-- SDKPayiOSManager:delOrderId(result.transactionID) +-- SDKPayiOSManager:savePermanentOrderId(result.transactionID) +-- if callback then +-- callback(result.receipt, orderId, result.transactionID) +-- else +-- -- SDKPayiOSManager:consumePurchase(_result.data.purchaseToken) + -- PayManager:requestRewards(_result.data.purchaseToken, orderId) +-- if callback1 then +-- callback1() +-- end +-- end +-- elseif _result.code == 137 then +-- else +-- -- @TODO 重试 +-- end +-- end + +-- end) +-- CS.BF.BFMain.Instance.ParseClientMgr:CheckPurchaseIOSConsume(json.encode(params)) +-- end +-- 支付相关接口 ********************************************************************** 结束 +return SDKPayiOSManager diff --git a/lua/app/common/sdk_pay_ios_manager.lua.meta b/lua/app/common/sdk_pay_ios_manager.lua.meta new file mode 100644 index 00000000..9d73bd36 --- /dev/null +++ b/lua/app/common/sdk_pay_ios_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: da69c0aee3d32ea4c86e5844df968f98 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/common/server_push_manager.lua b/lua/app/common/server_push_manager.lua new file mode 100644 index 00000000..e7c85d90 --- /dev/null +++ b/lua/app/common/server_push_manager.lua @@ -0,0 +1,27 @@ +local ServerPushManager = {} + +---- 注册推送监听 +function ServerPushManager:addServerPushListener(msgName, module, callback) + NetManager:registerMsgCallback(msgName, module, callback) +end + +---- 移除推送监听 +function ServerPushManager:removeServerPushListener(msgName, module) + NetManager:unRegisterMsgCallback(msgName, module) +end + +---- 初始化全局推送监听 +function ServerPushManager:initWhenLogin() + self:addServerPushListener(ProtoMsgType.FromMsgEnum.KickOutNtf, UIManager, UIManager.showKickOut) + self:addServerPushListener(ProtoMsgType.FromMsgEnum.MallActTriggerGiftNtf, ModuleManager.MallManager, ModuleManager.MallManager.MallActTriggerGiftNtf) + self:addServerPushListener(ProtoMsgType.FromMsgEnum.BattlePassBoughtNtf, ModuleManager.BountyManager, ModuleManager.BountyManager.buyCardFinish) + self:addServerPushListener(ProtoMsgType.FromMsgEnum.SummonPoolLevelNtf, ModuleManager.SummonManager, ModuleManager.SummonManager.SummonPoolLevelNtf) + self:addServerPushListener(ProtoMsgType.FromMsgEnum.NewMailNtf, ModuleManager.MailManager, ModuleManager.MailManager.needUpdateMail) +end + +---- 移除全局推送监听 +function ServerPushManager:removeWhenLoginOut() + self:removeServerPushListener(ProtoMsgType.FromMsgEnum.KickOutNtf, UIManager) +end + +return ServerPushManager \ No newline at end of file diff --git a/lua/app/common/server_push_manager.lua.meta b/lua/app/common/server_push_manager.lua.meta new file mode 100644 index 00000000..e4acbbde --- /dev/null +++ b/lua/app/common/server_push_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1c64e57074a12a04a98c2bd95599566a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/spine_manager.lua b/lua/app/common/spine_manager.lua new file mode 100644 index 00000000..43263597 --- /dev/null +++ b/lua/app/common/spine_manager.lua @@ -0,0 +1,194 @@ +local UISpineObject = require "app/bf/unity/ui_spine_object" +local MeshSpineObject = require "app/bf/unity/mesh_spine_object" +local CharacterSpineObject = require "app/bf/unity/character_spine_object" +local SpineManager = { + heroCacheList = {}, + heroCacheMap = {}, + battleCacheList = {}, + battleCacheMap = {}, + heroSpineAsset = {} +} + +local TYPE_OF_GAME_OBJECT = GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT +local TYPE_OF_SPINE_ASSET = GConst.TYPEOF_UNITY_CLASS.SKELETON_DATA_ASSET + +local UI_SPINE_PREFAB_PATH = "assets/prefabs/spine/ui/ui_spine_obj.prefab" +local MESH_SPINE_PREFAB_PATH = "assets/prefabs/spine/mesh/mesh_spine_obj.prefab" + +local UI_SPINE_ASSET_PATH = "assets/arts/spines/ui/%s/%s_skeletondata.asset" +local MESH_SPINE_ASSET_PATH = "assets/arts/spines/mesh/%s/%s_skeletondata.asset" +local HERO_SPINE_ASSET_PATH = "assets/arts/spines/characters/%s/%s_skeletondata.asset" + +local HERO_CACHE_SIZE = 10 -- 英雄缓存容量 +local BATTLE_CACHE_SIZE = 30 -- 战斗特效缓存容量 + +---- canvas renderer +function SpineManager:loadUISpineWidgetAsync(name, parent, callback) + local path = string.format(UI_SPINE_ASSET_PATH, name, name) + ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset) + if parent and parent:isDestroyed() then + ResourceManager:unload(spineAssetPath) + return + end + self:loadUISpinePrefabAsync(parent, spineAssetPath, spineAsset, callback) + end) +end + +function SpineManager:loadUISpinePrefabAsync(parent, spineAssetPath, spineAsset, callback) + ResourceManager:loadAsync(UI_SPINE_PREFAB_PATH, TYPE_OF_GAME_OBJECT, function(prefabPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(spineAssetPath) + ResourceManager:unload(prefabPath) + return + end + local uiSpineObject = UISpineObject:create() + uiSpineObject:initWithPrefab(UI_SPINE_PREFAB_PATH, prefab) + uiSpineObject:getAnimationState() + uiSpineObject:initSkeletonDataAsset(spineAsset) + uiSpineObject:addUnloadCallback(function(obj) + ResourceManager:unload(spineAssetPath) + ResourceManager:unload(prefabPath) + end) + if parent then + uiSpineObject:setParent(parent, false) + end + if callback then + callback(uiSpineObject) + end + end) +end + +function SpineManager:loadHeroAsync(id, parent, callback) + local path = "assets/prefabs/spine/mesh/characters/" .. id .. ".prefab" + ResourceManager:loadAsync(path, TYPE_OF_GAME_OBJECT, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + local characterObject = CharacterSpineObject:create() + characterObject:initWithPrefab(assetPath, prefab) + characterObject:addUnloadCallback(function(obj) + local modelPath = obj:getAssetPath() + if self.heroCacheMap[modelPath] then + ResourceManager:unload(modelPath) + else + if #self.heroCacheList >= HERO_CACHE_SIZE then + local headPath = table.remove(self.heroCacheList, 1) + ResourceManager:unload(headPath) + self.heroCacheMap[headPath] = nil + end + self.heroCacheMap[modelPath] = true + table.insert(self.heroCacheList, modelPath) + end + end) + if parent then + characterObject:setParent(parent, false) + end + if callback then + callback(characterObject) + end + end) +end + +function SpineManager:loadHeroSpineAssetAsync(id, parent, callback) + if self.heroSpineAsset[id] then + callback(self.heroSpineAsset[id]) + else + local path = string.format(HERO_SPINE_ASSET_PATH, id, id) + ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset) + if parent and parent:isDestroyed() then + ResourceManager:unload(spineAssetPath) + return + end + if self.heroSpineAsset[id] then + ResourceManager:unload(spineAssetPath) + else + self.heroSpineAsset[id] = spineAsset + end + callback(spineAsset) + end) + end +end + +function SpineManager:loadBattleSpineAssetAsync(path, parent, callback) + ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset) + if parent and parent:isDestroyed() then + ResourceManager:unload(spineAssetPath) + return + end + callback(spineAssetPath, spineAsset) + end) +end + +function SpineManager:loadBattleEffectAsync(path, parent, callback) + ResourceManager:loadAsync(path, TYPE_OF_GAME_OBJECT, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + local spineObject = CharacterSpineObject:create() + spineObject:initWithPrefab(assetPath, prefab) + spineObject:addUnloadCallback(function(obj) + local effectPath = obj:getAssetPath() + if self.battleCacheMap[effectPath] then + ResourceManager:unload(effectPath) + else + if #self.battleCacheList == BATTLE_CACHE_SIZE then + local headPath = table.remove(self.battleCacheList, 1) + ResourceManager:unload(headPath) + self.battleCacheMap[headPath] = nil + end + self.battleCacheMap[effectPath] = true + table.insert(self.battleCacheList, effectPath) + end + end) + if parent then + spineObject:setParent(parent, false) + end + if callback then + callback(spineObject) + end + end) +end + +---- mesh renderer +function SpineManager:loadMeshSpineAsync(name, parent, callback) + local path = string.format(MESH_SPINE_ASSET_PATH, name, name) + ResourceManager:loadOriginAssetAsync(path, TYPE_OF_SPINE_ASSET, function(spineAssetPath, spineAsset) + if parent and parent:isDestroyed() then + ResourceManager:unload(spineAssetPath) + return + end + self:loadMeshSpinePrefabAsync(parent, spineAssetPath, spineAsset, callback) + end) +end + +function SpineManager:loadMeshSpinePrefabAsync(parent, spineAssetPath, spineAsset, callback) + ResourceManager:loadAsync(MESH_SPINE_PREFAB_PATH, TYPE_OF_GAME_OBJECT, function(prefabPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(spineAssetPath) + ResourceManager:unload(prefabPath) + return + end + local meshSpineObject = MeshSpineObject:create() + meshSpineObject:initWithPrefab(MESH_SPINE_PREFAB_PATH, prefab) + meshSpineObject:getAnimationState() + meshSpineObject:initSkeletonDataAsset(spineAsset) + meshSpineObject:addUnloadCallback(function(obj) + ResourceManager:unload(spineAssetPath) + ResourceManager:unload(prefabPath) + end) + if parent then + meshSpineObject:setParent(parent, false) + end + if callback then + callback(meshSpineObject) + end + end) +end + +return SpineManager \ No newline at end of file diff --git a/lua/app/common/spine_manager.lua.meta b/lua/app/common/spine_manager.lua.meta new file mode 100644 index 00000000..89fd6f35 --- /dev/null +++ b/lua/app/common/spine_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: edb03cc9c3cdb6a459f95589941d04b4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/state_machine_manager.lua b/lua/app/common/state_machine_manager.lua new file mode 100644 index 00000000..b155acf6 --- /dev/null +++ b/lua/app/common/state_machine_manager.lua @@ -0,0 +1,35 @@ +local StateMachineManager = { + fsmList = {} +} + +---- 添加一个状态机 +function StateMachineManager:addStateMachine(fsm) + for k, v in ipairs(self.fsmList) do + if v == fsm then + return + end + end + table.insert(self.fsmList, fsm) +end + +---- 移除一个状态机 +function StateMachineManager:removeStateMachine(fsm) + for index, value in ipairs(self.fsmList) do + if fsm == value then + fsm:stop() + table.remove(self.fsmList, index) + break + end + end +end + +---- 每帧tick +function StateMachineManager:tick() + for _, fsm in ipairs(self.fsmList) do + if fsm:getIsActive() then + fsm:tick() + end + end +end + +return StateMachineManager \ No newline at end of file diff --git a/lua/app/common/state_machine_manager.lua.meta b/lua/app/common/state_machine_manager.lua.meta new file mode 100644 index 00000000..3d5338ca --- /dev/null +++ b/lua/app/common/state_machine_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8e40f566f0955d44d827d10d8bec59e0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/texture_manager.lua b/lua/app/common/texture_manager.lua new file mode 100644 index 00000000..b0e30cec --- /dev/null +++ b/lua/app/common/texture_manager.lua @@ -0,0 +1,36 @@ +local TextureManager = { } + +function TextureManager:loadAtlas(prefabObject, atlasPath, callback) + ResourceManager:loadOriginAssetAsync(atlasPath, GConst.TYPEOF_UNITY_CLASS.BF_ATLAS, function(assetPath, asset) + if prefabObject:isDestroyed() then + ResourceManager:unload(assetPath) + return + end + + callback(assetPath, asset) + end) +end + +function TextureManager:unloadAtlas(atlasPath) + ResourceManager:unload(atlasPath) +end + + +function TextureManager:loadTextureAsync(prefabObject, texturePath, callback) + ResourceManager:loadOriginAssetAsync(texturePath, GConst.TYPEOF_UNITY_CLASS.TEXTURE_2D, function(assetPath, texture) + if prefabObject:isDestroyed() then + ResourceManager:unload(assetPath) + return + end + + if callback then + callback(assetPath, texture) + end + end) +end + +function TextureManager:unLoadTexture(texturePath) + ResourceManager:unload(texturePath) +end + +return TextureManager \ No newline at end of file diff --git a/lua/app/common/texture_manager.lua.meta b/lua/app/common/texture_manager.lua.meta new file mode 100644 index 00000000..abce603d --- /dev/null +++ b/lua/app/common/texture_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c8a7ad54687bb0e4f84d61f30da3cf17 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/time.lua b/lua/app/common/time.lua new file mode 100644 index 00000000..d92a3802 --- /dev/null +++ b/lua/app/common/time.lua @@ -0,0 +1,291 @@ +local Time = { + timeZoneOffset = 0, + differenceTime = 0, + todayTime = 0, +} + +local SECONDS_PRE_DAY = 86400 +local SECONDS_PRE_HOUR = 3600 +local SECONDS_PRE_MINUTE = 60 +local DAY_PER_HOUR = 24 + +local ZERO_TIME_STR = "00:00:00" +local ZERO_TIME_STR_2 = "00:00" + +local UnityTime = CS.UnityEngine.Time + +-- 获取服务器的当前时间戳 +function Time:getServerTime() + if not self.serverTime then + return os.time() + end + return self.serverTime + self.differenceTime + GFunc.getTickCount() +end + +function Time:getRealtimeSinceStartup() + return UnityTime.realtimeSinceStartup +end + +-- 获取客户端时间戳 +-- function Time:getClientTime() +-- return os.time() +-- end + +-- 得到特定时间的时间戳 +function Time:getCertainTime(data) + local year = data.year or 0 + local month = data.month or 0 + local day = data.day or 0 + local hour = data.hour or 0 + local minute = data.minute or 0 + local second = data.second or 0 + return os.time({day = day, month = month, year = year, hour = hour, min = minute, sec = second}) +end + +-- 得到特定时间的时间戳 +-- 没有算时区差异,优先使用getCertainTimeByStr2 +function Time:getCertainTimeByStr(timeStr) + -- "2022-08-9 00:00:00" + if type(timeStr) ~= "string" then + return 0 + end + timeStr = string.trim(timeStr) + local timeTab = {} + for i,v in string.gmatch(timeStr, "%d+") do + -- print(i, v) + table.insert(timeTab, i) + end + local year = timeTab[1] + local month = timeTab[2] + local day = timeTab[3] + local hour = timeTab[4] + local minute = timeTab[5] + local second = timeTab[6] + return os.time({day = day, month = month, year = year, hour = hour, min = minute, sec = second}) +end + +function Time:getCertainTimeByStr2(timeStr) + -- "2022-08-9 00:00:00" + if type(timeStr) ~= "string" then + return 0 + end + timeStr = string.trim(timeStr) + local timeTab = {} + for i,v in string.gmatch(timeStr, "%d+") do + -- print(i, v) + table.insert(timeTab, i) + end + local year = timeTab[1] + local month = timeTab[2] + local day = timeTab[3] + local hour = timeTab[4] + local minute = timeTab[5] + local second = timeTab[6] + local time = os.time({day = day, month = month, year = year, hour = hour, min = minute, sec = second}) + Time:getClientTimeZone()*3600 + return math.floor(time) +end + +-- 格式化时间,返回os.data(finalTime) +function Time:formatTimeExact(time) + local endTime = self:getServerTime() + time + return os.date("*t", endTime) +end + +-- 格式化y/m/d时间,返回os.data(finalTime) +function Time:formatTimeYMD(time) + time = time or Time:getServerTime() + local date = os.date("!*t", time) + return date.year .. "/" .. date.month .. "/" .. date.day +end + +-- 格式化y/m/d/h/m/s时间,返回os.data(finalTime) +function Time:formatTimeYMDHMS(time) + time = time or Time:getServerTime() + local date = os.date("!*t", time) + return date.year .. "/" .. date.month .. "/" .. date.day .. " " .. date.hour .. ":" .. date.min .. ":" .. date.sec +end + + +function Time:updateServerTimeToday(todayTime) + todayTime = todayTime or 0 + self.todayTime = GFunc.formatTimeStep(todayTime) +end + +function Time:updateServerTime(serverTime) + self.serverTime = (serverTime or 0) // 1000 + self.differenceTime = -GFunc.getTickCount() + if EDITOR_MODE then + Logger.log("updateServerTime:%s", self.differenceTime) + end +end + +function Time:updateByServer(serverTime, todayTime) + self:updateServerTime(serverTime) + self:updateServerTimeToday(todayTime) +end + +function Time:setServerTimeZone(timeZone) + self.timeZoneOffset = timeZone - self:getClientTimeZone() +end + +function Time:getClientTimeZone() + return os.difftime(os.time(), os.time(os.date("!*t", os.time())))/SECONDS_PRE_HOUR +end + +function Time:getTimeZoneOffset() + return self.timeZoneOffset +end + +function Time:getBeginningOfServerToday() + if Time:getServerTime() > self.todayTime + 86400 then + self.todayTime = self.todayTime + 86400 + end + return self.todayTime +end + +function Time:getOverOfServerToday(time) + if time then + local passS = time % SECONDS_PRE_DAY + if passS > 0 then + return time + SECONDS_PRE_DAY - passS + end + return time + SECONDS_PRE_DAY + end + return self:getBeginningOfServerToday() + SECONDS_PRE_DAY +end + +function Time:getBeginningOfToday() + local now = os.date('*t', self:getServerTime() + self:getTimeZoneOffset()*SECONDS_PRE_HOUR) + local beginDay = os.time{year = now.year, month = now.month, day = now.day, hour = 0} + return beginDay - self:getTimeZoneOffset()*SECONDS_PRE_HOUR +end + +function Time:getBeginningOfOneDay(t) + local now = os.date('*t', t + self:getTimeZoneOffset()*SECONDS_PRE_HOUR) + local beginDay = os.time{year = now.year, month = now.month, day = now.day, hour = 0} + return beginDay - self:getTimeZoneOffset()*SECONDS_PRE_HOUR +end + +-- 判断时间是否是大于等于今天 +function Time:getTimeIsToday(time) + local todayBegin = self:getBeginningOfToday() + return time >= todayBegin +end + +function Time:splitTime(time) + time = math.floor(time) + local reduceD = time % SECONDS_PRE_DAY + local day = math.floor(time/SECONDS_PRE_DAY) + local reduceH = reduceD % SECONDS_PRE_HOUR + local hour = math.floor(reduceD/SECONDS_PRE_HOUR) + local minute = math.floor(reduceH / SECONDS_PRE_MINUTE) + local second = reduceH % SECONDS_PRE_MINUTE + return day, hour, minute, second +end + +-- 根据秒换算成向上取整hour的时间 +function Time:getCeilHourTime(time) + local count = time // 3600 + if time % 3600 > 0 then + count = count + 1 + end + return count +end + +--每几秒 向上取整 +function Time:getCeilPerSecend(time, per) + local count = time // per + if time % per > 0 then + count = count + 1 + end + return count +end + +function Time:getDayofWeek(time) + local curTime = time or self:getServerTime() + local day = tonumber(os.date("%w", curTime)) + day = day == 0 and 7 or day + return day +end + +-- 00:00:00 +function Time:formatNumTime(time) + if time <= 0 then + return ZERO_TIME_STR + end + local reduceH = time % SECONDS_PRE_HOUR + local hour = math.floor(time / SECONDS_PRE_HOUR) + local minute = math.floor(reduceH / SECONDS_PRE_MINUTE) + local second = reduceH % SECONDS_PRE_MINUTE + return string.format("%.2d:%.2d:%.2d", hour, minute, second) +end + +-- 00:00 +function Time:formatNumTimeMS(time) + if time <= 0 then + return ZERO_TIME_STR_2 + end + local minute = math.floor(time / SECONDS_PRE_MINUTE) + local second = time % SECONDS_PRE_MINUTE + return string.format("%.2d:%.2d", minute, second) +end + +-- 大于1天显示:X天X时 globalkey:ACTIVITY_TIME_STR_DH 小于1天显示:X时X分 globalkey:ACTIVITY_TIME_STR_HM 小于1小时显示:X分X秒 globalkey:ACTIVITY_TIME_STR_MS +function Time:formatNumTimeStr(time) + if time <= 0 then + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_MS, 0, 0) + end + local day, hour, minute, second = Time:splitTime(time) + if time >= SECONDS_PRE_DAY then -- 大于1天显示:X天X时 + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_DH, day, hour) + else + if time >= SECONDS_PRE_HOUR then -- 小于1天显示:X时X分 + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_HM, hour, minute) + else --小于1小时显示:X分X秒 + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_MS, minute, second) + end + end +end + +---- 得到time周开始时的时间戳 +function Time:getWeekBeginTimeStamp(time) + time = time or self:getServerTime() + local remainDay = -self:getDayofWeek(time) + return self:getOverOfServerToday(time) + remainDay * SECONDS_PRE_DAY +end + +---- 得到time周结束时的时间戳 +function Time:getWeekOverTimeStamp(time) + time = time or self:getServerTime() + local remainDay = 7 - self:getDayofWeek(time) + return self:getOverOfServerToday(time) + remainDay * SECONDS_PRE_DAY +end + +---- 得到time月结束的时间戳 +function Time:getMonthOverTimeStamp(time) + time = time or self:getServerTime() + local now = os.date('!*t', time) + now.month = now.month + 1 + if now.month > 12 then + now.year = now.year + now.month // 12 + now.month = now.month % 12 + end + local remainDay = os.date("%d", os.time({year = now.year, month = now.month, day = 0})) - now.day + return self:getOverOfServerToday(time) + remainDay * SECONDS_PRE_DAY +end + +---- 得到当前处于本月的第几天 +function Time:getDayByTimeStamp(time) + time = time or self:getServerTime() + local now = os.date('!*t', time) + return now.day +end + +-- 转换服务器时间字符串(ISO 8601)的对应的时间戳,例如2022-09-10T18:10:00.000Z +function Time:convertServerTimeStringToTimestamp(str) + local dateTime = CS.System.DateTime.Parse(str) + local dateTimeOffset = CS.System.DateTimeOffset(dateTime) + return dateTimeOffset:ToUnixTimeSeconds() +end + +return Time \ No newline at end of file diff --git a/lua/app/common/time.lua.meta b/lua/app/common/time.lua.meta new file mode 100644 index 00000000..f7a5d273 --- /dev/null +++ b/lua/app/common/time.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d9c1c2a447bacad408ce60760a6ea5b4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/uiprefab_manager.lua b/lua/app/common/uiprefab_manager.lua new file mode 100644 index 00000000..cc7f32a7 --- /dev/null +++ b/lua/app/common/uiprefab_manager.lua @@ -0,0 +1,29 @@ +local UIPrefabObject = require "app/bf/unity/uiprefab_object" + +local UIPrefabManager = {} + +local TypeOfGameObject = GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT + +function UIPrefabManager:loadUIWidgetAsync(path, parent, callback) + ResourceManager:loadAsync(path, TypeOfGameObject, function(assetPath, prefab) + if parent and parent:isDestroyed() then + ResourceManager:destroyPrefab(prefab) + ResourceManager:unload(assetPath) + return + end + local prefabObject = UIPrefabObject:create() + prefabObject:initWithPrefab(assetPath, prefab) + prefabObject:initPrefabHelper() + prefabObject:addUnloadCallback(function(obj) + ResourceManager:unload(obj:getAssetPath()) + end) + if parent then + prefabObject:setParent(parent, false) + end + if callback then + callback(prefabObject) + end + end) +end + +return UIPrefabManager \ No newline at end of file diff --git a/lua/app/common/uiprefab_manager.lua.meta b/lua/app/common/uiprefab_manager.lua.meta new file mode 100644 index 00000000..b5519d80 --- /dev/null +++ b/lua/app/common/uiprefab_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 250f23ee575356f40982bf9bf4a1791e +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/version_compatible.lua b/lua/app/common/version_compatible.lua new file mode 100644 index 00000000..06e97373 --- /dev/null +++ b/lua/app/common/version_compatible.lua @@ -0,0 +1,13 @@ +local VersionCompatible = {} + +local CLIENT_VERSION = CS.BF.BFMain.CLIENT_VERSION or 0 + +function VersionCompatible:canUpdateMailVersion() + return CLIENT_VERSION > 1 +end + +function VersionCompatible:supportDataEncryptVersion() + return CLIENT_VERSION > 1 +end + +return VersionCompatible diff --git a/lua/app/common/version_compatible.lua.meta b/lua/app/common/version_compatible.lua.meta new file mode 100644 index 00000000..84cbabe8 --- /dev/null +++ b/lua/app/common/version_compatible.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 374567b2ce02af2498a716627920651f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/webrequest_manager.lua b/lua/app/common/webrequest_manager.lua new file mode 100644 index 00000000..a7454aef --- /dev/null +++ b/lua/app/common/webrequest_manager.lua @@ -0,0 +1,36 @@ +local WebRequestManager = {} +WebRequestManager.initServerTime = false +WebRequestManager.AUTH_LOGIN = "users" + +function WebRequestManager:init() + self.csWebRequestMgr = CS.BF.BFMain.Instance.WebRequestMgr +end + +function WebRequestManager:valid() + return nil ~= self.csWebRequestMgr +end + +function WebRequestManager:post(url, fields, callback) + if not self:valid() then + return + end + self.csWebRequestMgr:Post(url, fields, callback) +end + +function WebRequestManager:postForm(url, fields, callback) + if not self:valid() then + return + end + + self.csWebRequestMgr:PostForm(url, fields, callback) +end + +function WebRequestManager:get(url, callback) + if not self:valid() then + return + end + + self.csWebRequestMgr:Get(url, callback) +end + +return WebRequestManager \ No newline at end of file diff --git a/lua/app/common/webrequest_manager.lua.meta b/lua/app/common/webrequest_manager.lua.meta new file mode 100644 index 00000000..5fb0caad --- /dev/null +++ b/lua/app/common/webrequest_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e58b80f79e6de8847a99076867b41dd8 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/common/white_res_manager.lua b/lua/app/common/white_res_manager.lua new file mode 100644 index 00000000..9eeb5be2 --- /dev/null +++ b/lua/app/common/white_res_manager.lua @@ -0,0 +1,67 @@ +local WhiteResManager = {} + + +---- 游戏资源白名单 +local GAME_RES_WHITE_LIST = { + -- ui + GConst.ATLAS_PATH.COMMON, + -- icon + GConst.ATLAS_PATH.ICON_SKILL, + GConst.ATLAS_PATH.ICON_ITEM, + GConst.ATLAS_PATH.ICON_EQUIP, + GConst.ATLAS_PATH.ICON_AVATAR, + GConst.ATLAS_PATH.ICON_RUNE, + GConst.ATLAS_PATH.ICON_LEGACY, + -- hero + GConst.SPINE_ASSET_PATH.P0001, + GConst.SPINE_ASSET_PATH.P0002, + GConst.SPINE_ASSET_PATH.P0003, + GConst.SPINE_ASSET_PATH.P0004, + -- 战斗伤害字体 + "assets/arts/fonts/tmpfonts/battle/font_battle_sdf.asset", +} + +---- 预加载游戏资源 +function WhiteResManager:gamePreLoad(progressCallback, readyCallback) + self.loaded = true + local totalCount = #GAME_RES_WHITE_LIST + local readyCount = 0 + local progress = 0 + + self.progressCallback = progressCallback + self.readyCallback = readyCallback + + local function preloadRes(resPath) + ResourceManager:loadOriginAssetAsync(resPath, GConst.TYPEOF_UNITY_CLASS.OBJECT, function(assetsPath, asset) + readyCount = readyCount + 1 + progress = readyCount / totalCount + + if self.progressCallback then + self.progressCallback(progress) + end + + if readyCount == totalCount then + if self.readyCallback then + self.readyCallback() + end + self.progressCallback = nil + self.readyCallback = nil + end + end) + end + + for _, resPath in ipairs(GAME_RES_WHITE_LIST) do + preloadRes(resPath) + end +end + +function WhiteResManager:clearCallback() + self.progressCallback = nil + self.readyCallback = nil +end + +function WhiteResManager:isLoaded() + return self.loaded +end + +return WhiteResManager \ No newline at end of file diff --git a/lua/app/common/white_res_manager.lua.meta b/lua/app/common/white_res_manager.lua.meta new file mode 100644 index 00000000..76c2979a --- /dev/null +++ b/lua/app/common/white_res_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bb96158024efbac44ae8567dc3a675bc +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config.meta b/lua/app/config.meta new file mode 100644 index 00000000..d3489815 --- /dev/null +++ b/lua/app/config.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2d6bf44b77cda22488249f5b2f27d8eb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/acceleration.lua b/lua/app/config/acceleration.lua new file mode 100644 index 00000000..dfcf6e67 --- /dev/null +++ b/lua/app/config/acceleration.lua @@ -0,0 +1,10 @@ +local acceleration = { + [1]={ + ["time"]=1200, + ["effect"]=2 + } +} +local config = { +data=acceleration,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/acceleration.lua.meta b/lua/app/config/acceleration.lua.meta new file mode 100644 index 00000000..06abbd0a --- /dev/null +++ b/lua/app/config/acceleration.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e0a150ac82d9bc145a60899ac60d7575 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_battle_pass.lua b/lua/app/config/act_battle_pass.lua new file mode 100644 index 00000000..610109c8 --- /dev/null +++ b/lua/app/config/act_battle_pass.lua @@ -0,0 +1,750 @@ +local act_battle_pass = { + [1]={ + ["mall_id"]=70001, + ["exp"]=0, + ["reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [2]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [3]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + } + } + }, + [4]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [5]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [6]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [7]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=4, + ["id"]=40504, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [8]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [9]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [10]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [11]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + } + } + }, + [12]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [13]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [14]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [15]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=4, + ["id"]=40504, + ["count"]={ + ["value"]=50, + ["unit"]=0 + } + } + } + }, + [16]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [17]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [18]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [19]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=6, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=6, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + } + } + }, + [20]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [21]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [22]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [23]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=4, + ["id"]=40504, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + } + }, + [24]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [25]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [26]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [27]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=16, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=16, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + } + } + }, + [28]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [29]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [30]={ + ["mall_id"]=70001, + ["exp"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=4, + ["id"]=40504, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + } + }, + [31]={ + ["mall_id"]=70001, + ["exp"]=200, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_pro"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + } +} +local config = { +data=act_battle_pass,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_battle_pass.lua.meta b/lua/app/config/act_battle_pass.lua.meta new file mode 100644 index 00000000..2ac8aaa0 --- /dev/null +++ b/lua/app/config/act_battle_pass.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 68850a86c31eac44ca5985ffb88874ff +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_battle_pass_task.lua b/lua/app/config/act_battle_pass_task.lua new file mode 100644 index 00000000..9716b367 --- /dev/null +++ b/lua/app/config/act_battle_pass_task.lua @@ -0,0 +1,132 @@ +local act_battle_pass_task = { + [1]={ + ["mall_id"]=70001, + ["type"]=1, + ["parameter"]=500, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + ["refresh_type"]=1 + }, + [2]={ + ["mall_id"]=70001, + ["type"]=3, + ["parameter"]=100, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + ["refresh_type"]=1 + }, + [3]={ + ["mall_id"]=70001, + ["type"]=15, + ["parameter"]=60, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + ["refresh_type"]=1 + }, + [4]={ + ["mall_id"]=70001, + ["type"]=27, + ["parameter"]=4, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + ["refresh_type"]=1 + }, + [5]={ + ["mall_id"]=70001, + ["type"]=28, + ["parameter"]=4, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + ["refresh_type"]=1 + }, + [6]={ + ["mall_id"]=70001, + ["type"]=29, + ["parameter"]=4, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + ["refresh_type"]=1 + }, + [7]={ + ["mall_id"]=70001, + ["type"]=31, + ["parameter"]=4, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + ["refresh_type"]=1 + }, + [8]={ + ["mall_id"]=70001, + ["type"]=6, + ["parameter"]=1, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + }, + ["refresh_type"]=2 + }, + [9]={ + ["mall_id"]=70001, + ["type"]=1, + ["parameter"]=1000, + ["exp_reward"]={ + ["type"]=1, + ["id"]=19, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + }, + ["refresh_type"]=2 + } +} +local config = { +data=act_battle_pass_task,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_battle_pass_task.lua.meta b/lua/app/config/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..4c4a78c4 --- /dev/null +++ b/lua/app/config/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: db35f138cecb99d48b2069c700e2d562 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_fund.lua b/lua/app/config/act_fund.lua new file mode 100644 index 00000000..6f4b9e14 --- /dev/null +++ b/lua/app/config/act_fund.lua @@ -0,0 +1,84 @@ +local act_fund = { + [60000]={ + ["type"]=1, + ["price"]=0, + ["reward_id"]={ + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120 + } + }, + [60001]={ + ["type"]=1, + ["price"]=1, + ["reward_id"]={ + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120 + } + }, + [60002]={ + ["type"]=1, + ["price"]=2, + ["reward_id"]={ + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120 + } + } +} +local config = { +data=act_fund,count=3 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_fund.lua.meta b/lua/app/config/act_fund.lua.meta new file mode 100644 index 00000000..519f73ae --- /dev/null +++ b/lua/app/config/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 75d1c8a647228104cbee2e64b78321f6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_fund_reward.lua b/lua/app/config/act_fund_reward.lua new file mode 100644 index 00000000..d4280842 --- /dev/null +++ b/lua/app/config/act_fund_reward.lua @@ -0,0 +1,566 @@ +local act_fund_reward = { + [101]={ + ["unlock_type"]=1, + ["unlock_request"]=10, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [102]={ + ["unlock_type"]=1, + ["unlock_request"]=30, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [103]={ + ["unlock_type"]=1, + ["unlock_request"]=50, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [104]={ + ["unlock_type"]=1, + ["unlock_request"]=100, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [105]={ + ["unlock_type"]=1, + ["unlock_request"]=150, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [106]={ + ["unlock_type"]=1, + ["unlock_request"]=200, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [107]={ + ["unlock_type"]=1, + ["unlock_request"]=250, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [108]={ + ["unlock_type"]=1, + ["unlock_request"]=300, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [109]={ + ["unlock_type"]=1, + ["unlock_request"]=400, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [110]={ + ["unlock_type"]=1, + ["unlock_request"]=500, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [111]={ + ["unlock_type"]=1, + ["unlock_request"]=600, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [112]={ + ["unlock_type"]=1, + ["unlock_request"]=700, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [113]={ + ["unlock_type"]=1, + ["unlock_request"]=800, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [114]={ + ["unlock_type"]=1, + ["unlock_request"]=900, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [115]={ + ["unlock_type"]=1, + ["unlock_request"]=1000, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [116]={ + ["unlock_type"]=1, + ["unlock_request"]=1200, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [117]={ + ["unlock_type"]=1, + ["unlock_request"]=1400, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [118]={ + ["unlock_type"]=1, + ["unlock_request"]=1600, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [119]={ + ["unlock_type"]=1, + ["unlock_request"]=1800, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + [120]={ + ["unlock_type"]=1, + ["unlock_request"]=2000, + ["reward_free"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["reward_low"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + ["reward_high"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + } +} +local config = { +data=act_fund_reward,count=20 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_fund_reward.lua.meta b/lua/app/config/act_fund_reward.lua.meta new file mode 100644 index 00000000..55af39e4 --- /dev/null +++ b/lua/app/config/act_fund_reward.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 16e310f9bb623ce4a99976bcd8022dfc +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_sevenday_quest.lua b/lua/app/config/act_sevenday_quest.lua new file mode 100644 index 00000000..802d9c96 --- /dev/null +++ b/lua/app/config/act_sevenday_quest.lua @@ -0,0 +1,916 @@ +local act_sevenday_quest = { + [1]={ + ["day"]=1, + ["number"]=1, + ["type"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [2]={ + ["day"]=1, + ["number"]=100, + ["type"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [3]={ + ["day"]=1, + ["number"]=2, + ["type"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [4]={ + ["day"]=1, + ["number"]=2, + ["type"]=11, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [5]={ + ["day"]=1, + ["number"]=800, + ["type"]=24, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [6]={ + ["day"]=1, + ["number"]=800, + ["type"]=25, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [7]={ + ["day"]=1, + ["number"]=50, + ["type"]=7, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [8]={ + ["day"]=1, + ["number"]=50, + ["type"]=8, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [9]={ + ["day"]=1, + ["number"]=50, + ["type"]=9, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [10]={ + ["day"]=1, + ["number"]=5, + ["type"]=4, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [11]={ + ["day"]=2, + ["number"]=2, + ["type"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [12]={ + ["day"]=2, + ["number"]=200, + ["type"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [13]={ + ["day"]=2, + ["number"]=2, + ["type"]=12, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [14]={ + ["day"]=2, + ["number"]=1, + ["type"]=22, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [15]={ + ["day"]=2, + ["number"]=50, + ["type"]=15, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [16]={ + ["day"]=2, + ["number"]=2, + ["type"]=16, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [17]={ + ["day"]=2, + ["number"]=2, + ["type"]=17, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [18]={ + ["day"]=2, + ["number"]=3, + ["type"]=18, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [19]={ + ["day"]=2, + ["number"]=100, + ["type"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [20]={ + ["day"]=2, + ["number"]=5, + ["type"]=21, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [21]={ + ["day"]=3, + ["number"]=3, + ["type"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [22]={ + ["day"]=3, + ["number"]=300, + ["type"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [23]={ + ["day"]=3, + ["number"]=4, + ["type"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [24]={ + ["day"]=3, + ["number"]=4, + ["type"]=11, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [25]={ + ["day"]=3, + ["number"]=2400, + ["type"]=24, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [26]={ + ["day"]=3, + ["number"]=2400, + ["type"]=25, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [27]={ + ["day"]=3, + ["number"]=300, + ["type"]=7, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [28]={ + ["day"]=3, + ["number"]=300, + ["type"]=8, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [29]={ + ["day"]=3, + ["number"]=300, + ["type"]=9, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [30]={ + ["day"]=3, + ["number"]=20, + ["type"]=4, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [31]={ + ["day"]=4, + ["number"]=4, + ["type"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [32]={ + ["day"]=4, + ["number"]=400, + ["type"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [33]={ + ["day"]=4, + ["number"]=6, + ["type"]=12, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [34]={ + ["day"]=4, + ["number"]=3, + ["type"]=22, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [35]={ + ["day"]=4, + ["number"]=200, + ["type"]=15, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [36]={ + ["day"]=4, + ["number"]=6, + ["type"]=16, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [37]={ + ["day"]=4, + ["number"]=6, + ["type"]=17, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [38]={ + ["day"]=4, + ["number"]=10, + ["type"]=18, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [39]={ + ["day"]=4, + ["number"]=300, + ["type"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [40]={ + ["day"]=4, + ["number"]=20, + ["type"]=21, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [41]={ + ["day"]=5, + ["number"]=5, + ["type"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [42]={ + ["day"]=5, + ["number"]=500, + ["type"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [43]={ + ["day"]=5, + ["number"]=7, + ["type"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [44]={ + ["day"]=5, + ["number"]=7, + ["type"]=11, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [45]={ + ["day"]=5, + ["number"]=3600, + ["type"]=24, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [46]={ + ["day"]=5, + ["number"]=3600, + ["type"]=25, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [47]={ + ["day"]=5, + ["number"]=600, + ["type"]=7, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [48]={ + ["day"]=5, + ["number"]=600, + ["type"]=8, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [49]={ + ["day"]=5, + ["number"]=600, + ["type"]=9, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [50]={ + ["day"]=5, + ["number"]=30, + ["type"]=4, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [51]={ + ["day"]=6, + ["number"]=6, + ["type"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [52]={ + ["day"]=6, + ["number"]=600, + ["type"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [53]={ + ["day"]=6, + ["number"]=8, + ["type"]=12, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [54]={ + ["day"]=6, + ["number"]=5, + ["type"]=22, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [55]={ + ["day"]=6, + ["number"]=300, + ["type"]=15, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [56]={ + ["day"]=6, + ["number"]=10, + ["type"]=16, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [57]={ + ["day"]=6, + ["number"]=10, + ["type"]=17, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [58]={ + ["day"]=6, + ["number"]=15, + ["type"]=18, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [59]={ + ["day"]=6, + ["number"]=400, + ["type"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [60]={ + ["day"]=6, + ["number"]=30, + ["type"]=21, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [61]={ + ["day"]=7, + ["number"]=7, + ["type"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [62]={ + ["day"]=7, + ["number"]=700, + ["type"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [63]={ + ["day"]=7, + ["number"]=9, + ["type"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [64]={ + ["day"]=7, + ["number"]=9, + ["type"]=11, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [65]={ + ["day"]=7, + ["number"]=4500, + ["type"]=24, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [66]={ + ["day"]=7, + ["number"]=4500, + ["type"]=25, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [67]={ + ["day"]=7, + ["number"]=900, + ["type"]=7, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [68]={ + ["day"]=7, + ["number"]=900, + ["type"]=8, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [69]={ + ["day"]=7, + ["number"]=900, + ["type"]=9, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [70]={ + ["day"]=7, + ["number"]=50, + ["type"]=4, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_sevenday_quest.lua.meta b/lua/app/config/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..ce0aed45 --- /dev/null +++ b/lua/app/config/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 98e10395602264e46b1c218c8ae261af +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/act_sevenday_quest_reward.lua b/lua/app/config/act_sevenday_quest_reward.lua new file mode 100644 index 00000000..a52d5045 --- /dev/null +++ b/lua/app/config/act_sevenday_quest_reward.lua @@ -0,0 +1,83 @@ +local act_sevenday_quest_reward = { + [1]={ + ["num"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1000, + ["unit"]=0 + } + } + }, + [2]={ + ["num"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + [3]={ + ["num"]=30, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + } + }, + [4]={ + ["num"]=40, + ["reward"]={ + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + [5]={ + ["num"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=5000, + ["unit"]=0 + } + } + }, + [6]={ + ["num"]=60, + ["reward"]={ + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + [7]={ + ["num"]=70, + ["reward"]={ + ["type"]=1, + ["id"]=23, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } +} +local config = { +data=act_sevenday_quest_reward,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/act_sevenday_quest_reward.lua.meta b/lua/app/config/act_sevenday_quest_reward.lua.meta new file mode 100644 index 00000000..95be1088 --- /dev/null +++ b/lua/app/config/act_sevenday_quest_reward.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7f592b6b3429e944c83eab9e07c6b96d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/arena.lua b/lua/app/config/arena.lua new file mode 100644 index 00000000..859a85c4 --- /dev/null +++ b/lua/app/config/arena.lua @@ -0,0 +1,2118 @@ +local arena = { + [1]={ + ["icon"]="arena_segment_1", + ["score"]=0, + ["battle_max_score"]=600, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=100, + ["unit"]=0 + }, + { + ["value"]=500, + ["unit"]=0 + }, + { + ["value"]=2000, + ["unit"]=0 + }, + { + ["value"]=6000, + ["unit"]=0 + }, + { + ["value"]=12000, + ["unit"]=0 + }, + { + ["value"]=15000, + ["unit"]=0 + } + }, + ["hp_coefficient"]={ + { + ["value"]=10000, + ["unit"]=0 + }, + { + ["value"]=50000, + ["unit"]=0 + }, + { + ["value"]=200000, + ["unit"]=0 + }, + { + ["value"]=600000, + ["unit"]=0 + }, + { + ["value"]=1200, + ["unit"]=1 + }, + { + ["value"]=1500, + ["unit"]=1 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [2]={ + ["icon"]="arena_segment_2", + ["score"]=600, + ["battle_max_score"]=1200, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=2, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=2, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=0 + }, + { + ["value"]=50000, + ["unit"]=0 + }, + { + ["value"]=200000, + ["unit"]=0 + }, + { + ["value"]=600000, + ["unit"]=0 + }, + { + ["value"]=1200, + ["unit"]=1 + }, + { + ["value"]=1500, + ["unit"]=1 + } + }, + ["hp_coefficient"]={ + { + ["value"]=1000, + ["unit"]=1 + }, + { + ["value"]=5000, + ["unit"]=1 + }, + { + ["value"]=20000, + ["unit"]=1 + }, + { + ["value"]=60000, + ["unit"]=1 + }, + { + ["value"]=120000, + ["unit"]=1 + }, + { + ["value"]=150000, + ["unit"]=1 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [3]={ + ["icon"]="arena_segment_3", + ["score"]=1800, + ["battle_max_score"]=2400, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=3, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=3, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=1000, + ["unit"]=1 + }, + { + ["value"]=5000, + ["unit"]=1 + }, + { + ["value"]=20000, + ["unit"]=1 + }, + { + ["value"]=60000, + ["unit"]=1 + }, + { + ["value"]=120000, + ["unit"]=1 + }, + { + ["value"]=150000, + ["unit"]=1 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=1 + }, + { + ["value"]=500000, + ["unit"]=1 + }, + { + ["value"]=2000, + ["unit"]=2 + }, + { + ["value"]=6000, + ["unit"]=2 + }, + { + ["value"]=12000, + ["unit"]=2 + }, + { + ["value"]=15000, + ["unit"]=2 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [4]={ + ["icon"]="arena_segment_4", + ["score"]=4200, + ["battle_max_score"]=3600, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=4, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=4, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=350, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=100000, + ["unit"]=1 + }, + { + ["value"]=500000, + ["unit"]=1 + }, + { + ["value"]=2000, + ["unit"]=2 + }, + { + ["value"]=6000, + ["unit"]=2 + }, + { + ["value"]=12000, + ["unit"]=2 + }, + { + ["value"]=15000, + ["unit"]=2 + } + }, + ["hp_coefficient"]={ + { + ["value"]=10000, + ["unit"]=2 + }, + { + ["value"]=50000, + ["unit"]=2 + }, + { + ["value"]=200000, + ["unit"]=2 + }, + { + ["value"]=600000, + ["unit"]=2 + }, + { + ["value"]=1200, + ["unit"]=3 + }, + { + ["value"]=1500, + ["unit"]=3 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [5]={ + ["icon"]="arena_segment_5", + ["score"]=7800, + ["battle_max_score"]=4800, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=2 + }, + { + ["value"]=50000, + ["unit"]=2 + }, + { + ["value"]=200000, + ["unit"]=2 + }, + { + ["value"]=600000, + ["unit"]=2 + }, + { + ["value"]=1200, + ["unit"]=3 + }, + { + ["value"]=1500, + ["unit"]=3 + } + }, + ["hp_coefficient"]={ + { + ["value"]=1000, + ["unit"]=3 + }, + { + ["value"]=5000, + ["unit"]=3 + }, + { + ["value"]=20000, + ["unit"]=3 + }, + { + ["value"]=60000, + ["unit"]=3 + }, + { + ["value"]=120000, + ["unit"]=3 + }, + { + ["value"]=150000, + ["unit"]=3 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [6]={ + ["icon"]="arena_segment_6", + ["score"]=12600, + ["battle_max_score"]=6000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=6, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=6, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=450, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=1000, + ["unit"]=3 + }, + { + ["value"]=5000, + ["unit"]=3 + }, + { + ["value"]=20000, + ["unit"]=3 + }, + { + ["value"]=60000, + ["unit"]=3 + }, + { + ["value"]=120000, + ["unit"]=3 + }, + { + ["value"]=150000, + ["unit"]=3 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=3 + }, + { + ["value"]=500000, + ["unit"]=3 + }, + { + ["value"]=2000, + ["unit"]=4 + }, + { + ["value"]=6000, + ["unit"]=4 + }, + { + ["value"]=12000, + ["unit"]=4 + }, + { + ["value"]=15000, + ["unit"]=4 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [7]={ + ["icon"]="arena_segment_7", + ["score"]=18600, + ["battle_max_score"]=9000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=7, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=7, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=100000, + ["unit"]=3 + }, + { + ["value"]=500000, + ["unit"]=3 + }, + { + ["value"]=2000, + ["unit"]=4 + }, + { + ["value"]=6000, + ["unit"]=4 + }, + { + ["value"]=12000, + ["unit"]=4 + }, + { + ["value"]=15000, + ["unit"]=4 + } + }, + ["hp_coefficient"]={ + { + ["value"]=10000, + ["unit"]=4 + }, + { + ["value"]=50000, + ["unit"]=4 + }, + { + ["value"]=200000, + ["unit"]=4 + }, + { + ["value"]=600000, + ["unit"]=4 + }, + { + ["value"]=1200, + ["unit"]=5 + }, + { + ["value"]=1500, + ["unit"]=5 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [8]={ + ["icon"]="arena_segment_8", + ["score"]=27000, + ["battle_max_score"]=12000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=8, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=8, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=550, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=4 + }, + { + ["value"]=50000, + ["unit"]=4 + }, + { + ["value"]=200000, + ["unit"]=4 + }, + { + ["value"]=600000, + ["unit"]=4 + }, + { + ["value"]=1200, + ["unit"]=5 + }, + { + ["value"]=1500, + ["unit"]=5 + } + }, + ["hp_coefficient"]={ + { + ["value"]=1000, + ["unit"]=5 + }, + { + ["value"]=5000, + ["unit"]=5 + }, + { + ["value"]=20000, + ["unit"]=5 + }, + { + ["value"]=60000, + ["unit"]=5 + }, + { + ["value"]=120000, + ["unit"]=5 + }, + { + ["value"]=150000, + ["unit"]=5 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [9]={ + ["icon"]="arena_segment_9", + ["score"]=38000, + ["battle_max_score"]=15000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=9, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=9, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=1000, + ["unit"]=5 + }, + { + ["value"]=5000, + ["unit"]=5 + }, + { + ["value"]=20000, + ["unit"]=5 + }, + { + ["value"]=60000, + ["unit"]=5 + }, + { + ["value"]=120000, + ["unit"]=5 + }, + { + ["value"]=150000, + ["unit"]=5 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=5 + }, + { + ["value"]=500000, + ["unit"]=5 + }, + { + ["value"]=2000, + ["unit"]=6 + }, + { + ["value"]=6000, + ["unit"]=6 + }, + { + ["value"]=12000, + ["unit"]=6 + }, + { + ["value"]=15000, + ["unit"]=6 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [10]={ + ["icon"]="arena_segment_10", + ["score"]=52000, + ["battle_max_score"]=18000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=650, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=100000, + ["unit"]=5 + }, + { + ["value"]=500000, + ["unit"]=5 + }, + { + ["value"]=2000, + ["unit"]=6 + }, + { + ["value"]=6000, + ["unit"]=6 + }, + { + ["value"]=12000, + ["unit"]=6 + }, + { + ["value"]=15000, + ["unit"]=6 + } + }, + ["hp_coefficient"]={ + { + ["value"]=10000, + ["unit"]=6 + }, + { + ["value"]=50000, + ["unit"]=6 + }, + { + ["value"]=200000, + ["unit"]=6 + }, + { + ["value"]=600000, + ["unit"]=6 + }, + { + ["value"]=1200, + ["unit"]=7 + }, + { + ["value"]=1500, + ["unit"]=7 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [11]={ + ["icon"]="arena_segment_11", + ["score"]=69000, + ["battle_max_score"]=24000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=11, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=11, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=700, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=6 + }, + { + ["value"]=50000, + ["unit"]=6 + }, + { + ["value"]=200000, + ["unit"]=6 + }, + { + ["value"]=600000, + ["unit"]=6 + }, + { + ["value"]=1200, + ["unit"]=7 + }, + { + ["value"]=1500, + ["unit"]=7 + } + }, + ["hp_coefficient"]={ + { + ["value"]=1000, + ["unit"]=7 + }, + { + ["value"]=5000, + ["unit"]=7 + }, + { + ["value"]=20000, + ["unit"]=7 + }, + { + ["value"]=60000, + ["unit"]=7 + }, + { + ["value"]=120000, + ["unit"]=7 + }, + { + ["value"]=150000, + ["unit"]=7 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [12]={ + ["icon"]="arena_segment_12", + ["score"]=92000, + ["battle_max_score"]=30000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=12, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=12, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=750, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=1000, + ["unit"]=7 + }, + { + ["value"]=5000, + ["unit"]=7 + }, + { + ["value"]=20000, + ["unit"]=7 + }, + { + ["value"]=60000, + ["unit"]=7 + }, + { + ["value"]=120000, + ["unit"]=7 + }, + { + ["value"]=150000, + ["unit"]=7 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=7 + }, + { + ["value"]=500000, + ["unit"]=7 + }, + { + ["value"]=2000, + ["unit"]=8 + }, + { + ["value"]=6000, + ["unit"]=8 + }, + { + ["value"]=12000, + ["unit"]=8 + }, + { + ["value"]=15000, + ["unit"]=8 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [13]={ + ["icon"]="arena_segment_13", + ["score"]=120000, + ["battle_max_score"]=36000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=13, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=13, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=800, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=100000, + ["unit"]=7 + }, + { + ["value"]=500000, + ["unit"]=7 + }, + { + ["value"]=2000, + ["unit"]=8 + }, + { + ["value"]=6000, + ["unit"]=8 + }, + { + ["value"]=12000, + ["unit"]=8 + }, + { + ["value"]=15000, + ["unit"]=8 + } + }, + ["hp_coefficient"]={ + { + ["value"]=10000, + ["unit"]=8 + }, + { + ["value"]=50000, + ["unit"]=8 + }, + { + ["value"]=200000, + ["unit"]=8 + }, + { + ["value"]=600000, + ["unit"]=8 + }, + { + ["value"]=1200, + ["unit"]=9 + }, + { + ["value"]=1500, + ["unit"]=9 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [14]={ + ["icon"]="arena_segment_14", + ["score"]=154000, + ["battle_max_score"]=48000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=14, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=14, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=850, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=8 + }, + { + ["value"]=50000, + ["unit"]=8 + }, + { + ["value"]=200000, + ["unit"]=8 + }, + { + ["value"]=600000, + ["unit"]=8 + }, + { + ["value"]=1200, + ["unit"]=9 + }, + { + ["value"]=1500, + ["unit"]=9 + } + }, + ["hp_coefficient"]={ + { + ["value"]=1000, + ["unit"]=9 + }, + { + ["value"]=5000, + ["unit"]=9 + }, + { + ["value"]=20000, + ["unit"]=9 + }, + { + ["value"]=60000, + ["unit"]=9 + }, + { + ["value"]=120000, + ["unit"]=9 + }, + { + ["value"]=150000, + ["unit"]=9 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [15]={ + ["icon"]="arena_segment_15", + ["score"]=200000, + ["battle_max_score"]=60000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=15, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=15, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=900, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=1000, + ["unit"]=9 + }, + { + ["value"]=5000, + ["unit"]=9 + }, + { + ["value"]=20000, + ["unit"]=9 + }, + { + ["value"]=60000, + ["unit"]=9 + }, + { + ["value"]=120000, + ["unit"]=9 + }, + { + ["value"]=150000, + ["unit"]=9 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=9 + }, + { + ["value"]=500000, + ["unit"]=9 + }, + { + ["value"]=2000, + ["unit"]=10 + }, + { + ["value"]=6000, + ["unit"]=10 + }, + { + ["value"]=12000, + ["unit"]=10 + }, + { + ["value"]=15000, + ["unit"]=10 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [16]={ + ["icon"]="arena_segment_16", + ["score"]=256000, + ["battle_max_score"]=72000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=16, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=16, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=950, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=100000, + ["unit"]=9 + }, + { + ["value"]=500000, + ["unit"]=9 + }, + { + ["value"]=2000, + ["unit"]=10 + }, + { + ["value"]=6000, + ["unit"]=10 + }, + { + ["value"]=12000, + ["unit"]=10 + }, + { + ["value"]=15000, + ["unit"]=10 + } + }, + ["hp_coefficient"]={ + { + ["value"]=10000, + ["unit"]=10 + }, + { + ["value"]=50000, + ["unit"]=10 + }, + { + ["value"]=200000, + ["unit"]=10 + }, + { + ["value"]=600000, + ["unit"]=10 + }, + { + ["value"]=1200, + ["unit"]=11 + }, + { + ["value"]=1500, + ["unit"]=11 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [17]={ + ["icon"]="arena_segment_17", + ["score"]=320000, + ["battle_max_score"]=90000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=17, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=17, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=1000, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=10 + }, + { + ["value"]=50000, + ["unit"]=10 + }, + { + ["value"]=200000, + ["unit"]=10 + }, + { + ["value"]=600000, + ["unit"]=10 + }, + { + ["value"]=1200, + ["unit"]=11 + }, + { + ["value"]=1500, + ["unit"]=11 + } + }, + ["hp_coefficient"]={ + { + ["value"]=1000, + ["unit"]=11 + }, + { + ["value"]=5000, + ["unit"]=11 + }, + { + ["value"]=20000, + ["unit"]=11 + }, + { + ["value"]=60000, + ["unit"]=11 + }, + { + ["value"]=120000, + ["unit"]=11 + }, + { + ["value"]=150000, + ["unit"]=11 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [18]={ + ["icon"]="arena_segment_18", + ["score"]=400000, + ["battle_max_score"]=120000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=18, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=18, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=1050, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=1000, + ["unit"]=11 + }, + { + ["value"]=5000, + ["unit"]=11 + }, + { + ["value"]=20000, + ["unit"]=11 + }, + { + ["value"]=60000, + ["unit"]=11 + }, + { + ["value"]=120000, + ["unit"]=11 + }, + { + ["value"]=150000, + ["unit"]=11 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=11 + }, + { + ["value"]=500000, + ["unit"]=11 + }, + { + ["value"]=2000, + ["unit"]=12 + }, + { + ["value"]=6000, + ["unit"]=12 + }, + { + ["value"]=12000, + ["unit"]=12 + }, + { + ["value"]=15000, + ["unit"]=12 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [19]={ + ["icon"]="arena_segment_19", + ["score"]=510000, + ["battle_max_score"]=150000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=19, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=19, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=1100, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=100000, + ["unit"]=11 + }, + { + ["value"]=500000, + ["unit"]=11 + }, + { + ["value"]=2000, + ["unit"]=12 + }, + { + ["value"]=6000, + ["unit"]=12 + }, + { + ["value"]=12000, + ["unit"]=12 + }, + { + ["value"]=15000, + ["unit"]=12 + } + }, + ["hp_coefficient"]={ + { + ["value"]=10000, + ["unit"]=12 + }, + { + ["value"]=50000, + ["unit"]=12 + }, + { + ["value"]=200000, + ["unit"]=12 + }, + { + ["value"]=600000, + ["unit"]=12 + }, + { + ["value"]=1200, + ["unit"]=13 + }, + { + ["value"]=1500, + ["unit"]=13 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [20]={ + ["icon"]="arena_segment_20", + ["score"]=640000, + ["battle_max_score"]=180000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=1150, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=12 + }, + { + ["value"]=50000, + ["unit"]=12 + }, + { + ["value"]=200000, + ["unit"]=12 + }, + { + ["value"]=600000, + ["unit"]=12 + }, + { + ["value"]=1200, + ["unit"]=13 + }, + { + ["value"]=1500, + ["unit"]=13 + } + }, + ["hp_coefficient"]={ + { + ["value"]=1000, + ["unit"]=13 + }, + { + ["value"]=5000, + ["unit"]=13 + }, + { + ["value"]=20000, + ["unit"]=13 + }, + { + ["value"]=60000, + ["unit"]=13 + }, + { + ["value"]=120000, + ["unit"]=13 + }, + { + ["value"]=150000, + ["unit"]=13 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [21]={ + ["icon"]="arena_segment_21", + ["score"]=800000, + ["battle_max_score"]=240000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=21, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=21, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=1200, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=1000, + ["unit"]=13 + }, + { + ["value"]=5000, + ["unit"]=13 + }, + { + ["value"]=20000, + ["unit"]=13 + }, + { + ["value"]=60000, + ["unit"]=13 + }, + { + ["value"]=120000, + ["unit"]=13 + }, + { + ["value"]=150000, + ["unit"]=13 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=13 + }, + { + ["value"]=500000, + ["unit"]=13 + }, + { + ["value"]=2000, + ["unit"]=14 + }, + { + ["value"]=6000, + ["unit"]=14 + }, + { + ["value"]=12000, + ["unit"]=14 + }, + { + ["value"]=15000, + ["unit"]=14 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [22]={ + ["icon"]="arena_segment_22", + ["score"]=1000000, + ["battle_max_score"]=300000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=22, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=22, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=1300, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=100000, + ["unit"]=13 + }, + { + ["value"]=500000, + ["unit"]=13 + }, + { + ["value"]=2000, + ["unit"]=14 + }, + { + ["value"]=6000, + ["unit"]=14 + }, + { + ["value"]=12000, + ["unit"]=14 + }, + { + ["value"]=15000, + ["unit"]=14 + } + }, + ["hp_coefficient"]={ + { + ["value"]=10000, + ["unit"]=14 + }, + { + ["value"]=50000, + ["unit"]=14 + }, + { + ["value"]=200000, + ["unit"]=14 + }, + { + ["value"]=600000, + ["unit"]=14 + }, + { + ["value"]=1200, + ["unit"]=15 + }, + { + ["value"]=1500, + ["unit"]=15 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [23]={ + ["icon"]="arena_segment_23", + ["score"]=1260000, + ["battle_max_score"]=420000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=23, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=23, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=1400, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=14 + }, + { + ["value"]=50000, + ["unit"]=14 + }, + { + ["value"]=200000, + ["unit"]=14 + }, + { + ["value"]=600000, + ["unit"]=14 + }, + { + ["value"]=1200, + ["unit"]=15 + }, + { + ["value"]=1500, + ["unit"]=15 + } + }, + ["hp_coefficient"]={ + { + ["value"]=1000, + ["unit"]=15 + }, + { + ["value"]=5000, + ["unit"]=15 + }, + { + ["value"]=20000, + ["unit"]=15 + }, + { + ["value"]=60000, + ["unit"]=15 + }, + { + ["value"]=120000, + ["unit"]=15 + }, + { + ["value"]=150000, + ["unit"]=15 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + }, + [24]={ + ["icon"]="arena_segment_24", + ["score"]=1640000, + ["battle_max_score"]=600000, + ["battle_reward"]={ + { + ["type"]=1, + ["id"]=17, + ["count"]={ + ["value"]=24, + ["unit"]=0 + } + } + }, + ["week_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=24, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=1500, + ["unit"]=0 + } + } + }, + ["atk_coefficient"]={ + { + ["value"]=1000, + ["unit"]=15 + }, + { + ["value"]=5000, + ["unit"]=15 + }, + { + ["value"]=20000, + ["unit"]=15 + }, + { + ["value"]=60000, + ["unit"]=15 + }, + { + ["value"]=120000, + ["unit"]=15 + }, + { + ["value"]=150000, + ["unit"]=15 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=15 + }, + { + ["value"]=500000, + ["unit"]=15 + }, + { + ["value"]=2000, + ["unit"]=16 + }, + { + ["value"]=6000, + ["unit"]=16 + }, + { + ["value"]=12000, + ["unit"]=16 + }, + { + ["value"]=15000, + ["unit"]=16 + } + }, + ["wave"]=6, + ["random_monster"]=5001, + ["time_limit"]=30 + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/arena.lua.meta b/lua/app/config/arena.lua.meta new file mode 100644 index 00000000..2381d6f0 --- /dev/null +++ b/lua/app/config/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0e8f8f3318b1555438d8d450ddda4a12 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/arena_rank_award.lua b/lua/app/config/arena_rank_award.lua new file mode 100644 index 00000000..13518c43 --- /dev/null +++ b/lua/app/config/arena_rank_award.lua @@ -0,0 +1,214 @@ +local arena_rank_award = { + [1]={ + ["rank"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + } + }, + [2]={ + ["rank"]={ + 2, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=70, + ["unit"]=0 + } + } + } + }, + [3]={ + ["rank"]={ + 3, + 3 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=50, + ["unit"]=0 + } + } + } + }, + [4]={ + ["rank"]={ + 4, + 5 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=40, + ["unit"]=0 + } + } + } + }, + [5]={ + ["rank"]={ + 6, + 10 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=30, + ["unit"]=0 + } + } + } + }, + [6]={ + ["rank"]={ + 11, + 20 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=25, + ["unit"]=0 + } + } + } + }, + [7]={ + ["rank"]={ + 21, + 30 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + } + } + }, + [8]={ + ["rank"]={ + 31, + 40 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=15, + ["unit"]=0 + } + } + } + }, + [9]={ + ["rank"]={ + 41, + 50 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=12, + ["unit"]=0 + } + } + } + }, + [10]={ + ["rank"]={ + 51, + 70 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + } + } + }, + [11]={ + ["rank"]={ + 71, + 100 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=8, + ["unit"]=0 + } + } + } + }, + [12]={ + ["rank"]={ + 101, + 150 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=6, + ["unit"]=0 + } + } + } + }, + [13]={ + ["rank"]={ + 151, + 200 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + } + } + } +} +local config = { +data=arena_rank_award,count=13 +} +return config \ No newline at end of file diff --git a/lua/app/config/arena_rank_award.lua.meta b/lua/app/config/arena_rank_award.lua.meta new file mode 100644 index 00000000..4b6f16ac --- /dev/null +++ b/lua/app/config/arena_rank_award.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d3c590bad9570aa4981fa61844f3bbdd +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/attr.lua b/lua/app/config/attr.lua new file mode 100644 index 00000000..757adb95 --- /dev/null +++ b/lua/app/config/attr.lua @@ -0,0 +1,144 @@ +local attr = { + [1]={ + ["name"]="hp" + }, + [2]={ + ["name"]="atk" + }, + [3]={ + ["name"]="crit" + }, + [4]={ + ["name"]="crit_time" + }, + [5]={ + ["name"]="dmg_dec_all" + }, + [6]={ + ["name"]="atkp_1" + }, + [7]={ + ["name"]="atkp_2" + }, + [8]={ + ["name"]="atkp_3" + }, + [9]={ + ["name"]="atkp_4" + }, + [10]={ + ["name"]="atkp_5" + }, + [11]={ + ["name"]="atkp_6" + }, + [12]={ + ["name"]="atkp_7" + }, + [13]={ + ["name"]="atkp_8" + }, + [14]={ + ["name"]="atkp_9" + }, + [15]={ + ["name"]="hpp_1" + }, + [16]={ + ["name"]="hpp_2" + }, + [17]={ + ["name"]="hpp_3" + }, + [18]={ + ["name"]="hpp_4" + }, + [19]={ + ["name"]="hpp_5" + }, + [20]={ + ["name"]="hpp_6" + }, + [21]={ + ["name"]="hpp_7" + }, + [22]={ + ["name"]="dmg_addition" + }, + [23]={ + ["name"]="miss" + }, + [24]={ + ["name"]="gold_gain" + }, + [25]={ + ["name"]="dmg_addition_skill" + }, + [26]={ + ["name"]="dmg_addition_normal" + }, + [27]={ + ["name"]="idle_income" + }, + [28]={ + ["name"]="pickaxe_recover_spd" + }, + [29]={ + ["name"]="pickaxe_own_limit" + }, + [30]={ + ["name"]="mineral_gain" + }, + [31]={ + ["name"]="research_spd" + }, + [32]={ + ["name"]="airborne_damage" + }, + [33]={ + ["name"]="airborne_num" + } +} +local keys = { + name = { + ["hp"]=attr[1], + ["atk"]=attr[2], + ["crit"]=attr[3], + ["crit_time"]=attr[4], + ["dmg_dec_all"]=attr[5], + ["atkp_1"]=attr[6], + ["atkp_2"]=attr[7], + ["atkp_3"]=attr[8], + ["atkp_4"]=attr[9], + ["atkp_5"]=attr[10], + ["atkp_6"]=attr[11], + ["atkp_7"]=attr[12], + ["atkp_8"]=attr[13], + ["atkp_9"]=attr[14], + ["hpp_1"]=attr[15], + ["hpp_2"]=attr[16], + ["hpp_3"]=attr[17], + ["hpp_4"]=attr[18], + ["hpp_5"]=attr[19], + ["hpp_6"]=attr[20], + ["hpp_7"]=attr[21], + ["dmg_addition"]=attr[22], + ["miss"]=attr[23], + ["gold_gain"]=attr[24], + ["dmg_addition_skill"]=attr[25], + ["dmg_addition_normal"]=attr[26], + ["idle_income"]=attr[27], + ["pickaxe_recover_spd"]=attr[28], + ["pickaxe_own_limit"]=attr[29], + ["mineral_gain"]=attr[30], + ["research_spd"]=attr[31], + ["airborne_damage"]=attr[32], + ["airborne_num"]=attr[33] + } +} +local config = { +data=attr, +keys=keys, +count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/attr.lua.meta b/lua/app/config/attr.lua.meta new file mode 100644 index 00000000..5fa9b3bf --- /dev/null +++ b/lua/app/config/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4a4e43c1acadab548bf5dd452ceb482f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/battle_const.lua b/lua/app/config/battle_const.lua new file mode 100644 index 00000000..4b894a6c --- /dev/null +++ b/lua/app/config/battle_const.lua @@ -0,0 +1,111 @@ +local battle_const = { + ["origin_attack"]={ + ["int_list"]={ + 2101, + 2102, + 2103, + 2104, + 2105, + 2106 + } + }, + ["test_hero"]={ + ["value"]=2 + }, + ["test_attack"]={ + ["int_list"]={ + 2601, + 2602, + 2603, + 2604, + 2605, + 2606 + } + }, + ["test_skill"]={ + ["int_list"]={ + 21011, + 21014, + 21015 + } + }, + ["test_skill_extra"]={ + ["int_list"]={ + 2001, + 2002 + } + }, + ["distance_scene"]={ + ["value"]=5000 + }, + ["distance_attack"]={ + ["value"]=313 + }, + ["distance_dash"]={ + ["value"]=1250 + }, + ["distance_back"]={ + ["value"]=625 + }, + ["time_attack"]={ + ["value"]=100 + }, + ["time_back"]={ + ["value"]=50 + }, + ["shake_level_1"]={ + ["value"]=10 + }, + ["shake_level_2"]={ + ["value"]=20 + }, + ["shake_level_3"]={ + ["value"]=60 + }, + ["distance_hit_back"]={ + ["value"]=80 + }, + ["distance_hit_fly"]={ + ["value"]=555 + }, + ["height_hit_fly"]={ + ["value"]=592 + }, + ["time_hit_fly"]={ + ["value"]=1200 + }, + ["time_lie"]={ + ["value"]=1200 + }, + ["delay_battle_start"]={ + ["value"]=2000 + }, + ["aotu_fight_interval"]={ + ["value"]=400 + }, + ["double_skill_interval"]={ + ["value"]=500 + }, + ["height_number_small"]={ + ["value"]=70 + }, + ["height_number_middle"]={ + ["value"]=100 + }, + ["height_number_high"]={ + ["value"]=160 + }, + ["height_hp_bar_small"]={ + ["value"]=120 + }, + ["height_hp_bar_middle"]={ + ["value"]=150 + }, + ["height_hp_bar_high"]={ + ["value"]=190 + } +} +local config = { +data=battle_const,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/battle_const.lua.meta b/lua/app/config/battle_const.lua.meta new file mode 100644 index 00000000..e999dfdd --- /dev/null +++ b/lua/app/config/battle_const.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 75c976f101923524ab2cbe669322f373 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/battle_move.lua b/lua/app/config/battle_move.lua new file mode 100644 index 00000000..90aa90cc --- /dev/null +++ b/lua/app/config/battle_move.lua @@ -0,0 +1,311 @@ +local battle_move = { + [1]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + -200, + 0 + }, + ["refresh"]=1, + ["speed"]=600, + ["end_distance"]=0 + }, + [2]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + -250, + 0 + }, + ["refresh"]=1, + ["speed"]=700, + ["end_distance"]=0 + }, + [3]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + -350, + 0 + }, + ["refresh"]=1, + ["speed"]=300, + ["end_distance"]=0 + }, + [4]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + -1000, + 0 + }, + ["refresh"]=1, + ["speed"]=300, + ["end_time"]=1000, + ["collision_type"]=1 + }, + [5]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["refresh"]=1, + ["speed"]=300, + ["end_distance"]=1000 + }, + [6]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + -1000, + 0 + }, + ["refresh"]=1, + ["speed"]=300, + ["end_time"]=2000, + ["collision_type"]=1 + }, + [7]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["speed"]=10000, + ["end_time"]=100, + ["collision_type"]=1 + }, + [8]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 1000, + 0 + }, + ["across"]=1, + ["speed"]=5000, + ["end_time"]=500, + ["collision_type"]=1 + }, + [9]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["speed"]=800, + ["end_time"]=2000, + ["collision_type"]=1 + }, + [10]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["refresh"]=1, + ["speed"]=300, + ["end_distance"]=650 + }, + [11]={ + ["horizontal"]=1, + ["target"]=2, + ["target_offset"]={ + 200, + 0 + }, + ["across"]=1, + ["end_distance"]=0 + }, + [12]={ + ["horizontal"]=1, + ["target"]=1, + ["target_offset"]={ + 10000, + 0 + }, + ["refresh"]=1, + ["across"]=1, + ["speed"]=5000, + ["end_time"]=200, + ["collision_type"]=1 + }, + [13]={ + ["horizontal"]=1, + ["target"]=1, + ["target_offset"]={ + -500, + 0 + }, + ["refresh"]=1, + ["speed"]=600, + ["end_time"]=1000, + ["collision_type"]=1 + }, + [14]={ + ["horizontal"]=1, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["speed"]=2000, + ["end_time"]=300 + }, + [15]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["refresh"]=1, + ["speed"]=600, + ["end_distance"]=1000 + }, + [16]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + -1000, + 0 + }, + ["refresh"]=1, + ["speed"]=600, + ["end_time"]=2000, + ["collision_type"]=1 + }, + [17]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["speed"]=1000, + ["end_time"]=200, + ["collision_type"]=1 + }, + [18]={ + ["horizontal"]=1, + ["target"]=2, + ["target_offset"]={ + 500, + 0 + }, + ["across"]=1, + ["speed"]=2000, + ["end_time"]=300 + }, + [19]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["refresh"]=1, + ["across"]=1, + ["end_distance"]=0 + }, + [20]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["refresh"]=1, + ["across"]=1, + ["speed"]=500, + ["end_time"]=3000 + }, + [21]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + -250, + 0 + }, + ["refresh"]=1, + ["speed"]=400, + ["end_distance"]=0 + }, + [22]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["speed"]=13000, + ["end_time"]=100, + ["collision_type"]=1 + }, + [23]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["refresh"]=1, + ["across"]=1, + ["end_time"]=1000 + }, + [24]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["refresh"]=1, + ["across"]=1, + ["end_time"]=500 + }, + [25]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 0, + 0 + }, + ["refresh"]=1, + ["across"]=1, + ["end_time"]=2000 + }, + [26]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 1000, + 0 + }, + ["across"]=1, + ["speed"]=3500, + ["end_time"]=200, + ["collision_type"]=1 + }, + [27]={ + ["horizontal"]=2, + ["target"]=2, + ["target_offset"]={ + 1000, + 0 + }, + ["across"]=1, + ["speed"]=7000, + ["end_time"]=200, + ["collision_type"]=1 + } +} +local config = { +data=battle_move,count=27 +} +return config \ No newline at end of file diff --git a/lua/app/config/battle_move.lua.meta b/lua/app/config/battle_move.lua.meta new file mode 100644 index 00000000..28746960 --- /dev/null +++ b/lua/app/config/battle_move.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bc648d16309ee604c8693c7abf401abb +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/bignum_mapping.lua b/lua/app/config/bignum_mapping.lua new file mode 100644 index 00000000..1bf56429 --- /dev/null +++ b/lua/app/config/bignum_mapping.lua @@ -0,0 +1,2814 @@ +local bignum_mapping = { + [1]={ + ["letter"]="A", + ["num_lv"]=3 + }, + [2]={ + ["letter"]="B", + ["num_lv"]=6 + }, + [3]={ + ["letter"]="C", + ["num_lv"]=9 + }, + [4]={ + ["letter"]="D", + ["num_lv"]=12 + }, + [5]={ + ["letter"]="E", + ["num_lv"]=15 + }, + [6]={ + ["letter"]="F", + ["num_lv"]=18 + }, + [7]={ + ["letter"]="G", + ["num_lv"]=21 + }, + [8]={ + ["letter"]="H", + ["num_lv"]=24 + }, + [9]={ + ["letter"]="I", + ["num_lv"]=27 + }, + [10]={ + ["letter"]="J", + ["num_lv"]=30 + }, + [11]={ + ["letter"]="K", + ["num_lv"]=33 + }, + [12]={ + ["letter"]="L", + ["num_lv"]=36 + }, + [13]={ + ["letter"]="M", + ["num_lv"]=39 + }, + [14]={ + ["letter"]="N", + ["num_lv"]=42 + }, + [15]={ + ["letter"]="O", + ["num_lv"]=45 + }, + [16]={ + ["letter"]="P", + ["num_lv"]=48 + }, + [17]={ + ["letter"]="Q", + ["num_lv"]=51 + }, + [18]={ + ["letter"]="R", + ["num_lv"]=54 + }, + [19]={ + ["letter"]="S", + ["num_lv"]=57 + }, + [20]={ + ["letter"]="T", + ["num_lv"]=60 + }, + [21]={ + ["letter"]="U", + ["num_lv"]=63 + }, + [22]={ + ["letter"]="V", + ["num_lv"]=66 + }, + [23]={ + ["letter"]="W", + ["num_lv"]=69 + }, + [24]={ + ["letter"]="X", + ["num_lv"]=72 + }, + [25]={ + ["letter"]="Y", + ["num_lv"]=75 + }, + [26]={ + ["letter"]="Z", + ["num_lv"]=78 + }, + [27]={ + ["letter"]="AA", + ["num_lv"]=81 + }, + [28]={ + ["letter"]="AB", + ["num_lv"]=84 + }, + [29]={ + ["letter"]="AC", + ["num_lv"]=87 + }, + [30]={ + ["letter"]="AD", + ["num_lv"]=90 + }, + [31]={ + ["letter"]="AE", + ["num_lv"]=93 + }, + [32]={ + ["letter"]="AF", + ["num_lv"]=96 + }, + [33]={ + ["letter"]="AG", + ["num_lv"]=99 + }, + [34]={ + ["letter"]="AH", + ["num_lv"]=102 + }, + [35]={ + ["letter"]="AI", + ["num_lv"]=105 + }, + [36]={ + ["letter"]="AJ", + ["num_lv"]=108 + }, + [37]={ + ["letter"]="AK", + ["num_lv"]=111 + }, + [38]={ + ["letter"]="AL", + ["num_lv"]=114 + }, + [39]={ + ["letter"]="AM", + ["num_lv"]=117 + }, + [40]={ + ["letter"]="AN", + ["num_lv"]=120 + }, + [41]={ + ["letter"]="AO", + ["num_lv"]=123 + }, + [42]={ + ["letter"]="AP", + ["num_lv"]=126 + }, + [43]={ + ["letter"]="AQ", + ["num_lv"]=129 + }, + [44]={ + ["letter"]="AR", + ["num_lv"]=132 + }, + [45]={ + ["letter"]="AS", + ["num_lv"]=135 + }, + [46]={ + ["letter"]="AT", + ["num_lv"]=138 + }, + [47]={ + ["letter"]="AU", + ["num_lv"]=141 + }, + [48]={ + ["letter"]="AV", + ["num_lv"]=144 + }, + [49]={ + ["letter"]="AW", + ["num_lv"]=147 + }, + [50]={ + ["letter"]="AX", + ["num_lv"]=150 + }, + [51]={ + ["letter"]="AY", + ["num_lv"]=153 + }, + [52]={ + ["letter"]="AZ", + ["num_lv"]=156 + }, + [53]={ + ["letter"]="BA", + ["num_lv"]=159 + }, + [54]={ + ["letter"]="BB", + ["num_lv"]=162 + }, + [55]={ + ["letter"]="BC", + ["num_lv"]=165 + }, + [56]={ + ["letter"]="BD", + ["num_lv"]=168 + }, + [57]={ + ["letter"]="BE", + ["num_lv"]=171 + }, + [58]={ + ["letter"]="BF", + ["num_lv"]=174 + }, + [59]={ + ["letter"]="BG", + ["num_lv"]=177 + }, + [60]={ + ["letter"]="BH", + ["num_lv"]=180 + }, + [61]={ + ["letter"]="BI", + ["num_lv"]=183 + }, + [62]={ + ["letter"]="BJ", + ["num_lv"]=186 + }, + [63]={ + ["letter"]="BK", + ["num_lv"]=189 + }, + [64]={ + ["letter"]="BL", + ["num_lv"]=192 + }, + [65]={ + ["letter"]="BM", + ["num_lv"]=195 + }, + [66]={ + ["letter"]="BN", + ["num_lv"]=198 + }, + [67]={ + ["letter"]="BO", + ["num_lv"]=201 + }, + [68]={ + ["letter"]="BP", + ["num_lv"]=204 + }, + [69]={ + ["letter"]="BQ", + ["num_lv"]=207 + }, + [70]={ + ["letter"]="BR", + ["num_lv"]=210 + }, + [71]={ + ["letter"]="BS", + ["num_lv"]=213 + }, + [72]={ + ["letter"]="BT", + ["num_lv"]=216 + }, + [73]={ + ["letter"]="BU", + ["num_lv"]=219 + }, + [74]={ + ["letter"]="BV", + ["num_lv"]=222 + }, + [75]={ + ["letter"]="BW", + ["num_lv"]=225 + }, + [76]={ + ["letter"]="BX", + ["num_lv"]=228 + }, + [77]={ + ["letter"]="BY", + ["num_lv"]=231 + }, + [78]={ + ["letter"]="BZ", + ["num_lv"]=234 + }, + [79]={ + ["letter"]="CA", + ["num_lv"]=237 + }, + [80]={ + ["letter"]="CB", + ["num_lv"]=240 + }, + [81]={ + ["letter"]="CC", + ["num_lv"]=243 + }, + [82]={ + ["letter"]="CD", + ["num_lv"]=246 + }, + [83]={ + ["letter"]="CE", + ["num_lv"]=249 + }, + [84]={ + ["letter"]="CF", + ["num_lv"]=252 + }, + [85]={ + ["letter"]="CG", + ["num_lv"]=255 + }, + [86]={ + ["letter"]="CH", + ["num_lv"]=258 + }, + [87]={ + ["letter"]="CI", + ["num_lv"]=261 + }, + [88]={ + ["letter"]="CJ", + ["num_lv"]=264 + }, + [89]={ + ["letter"]="CK", + ["num_lv"]=267 + }, + [90]={ + ["letter"]="CL", + ["num_lv"]=270 + }, + [91]={ + ["letter"]="CM", + ["num_lv"]=273 + }, + [92]={ + ["letter"]="CN", + ["num_lv"]=276 + }, + [93]={ + ["letter"]="CO", + ["num_lv"]=279 + }, + [94]={ + ["letter"]="CP", + ["num_lv"]=282 + }, + [95]={ + ["letter"]="CQ", + ["num_lv"]=285 + }, + [96]={ + ["letter"]="CR", + ["num_lv"]=288 + }, + [97]={ + ["letter"]="CS", + ["num_lv"]=291 + }, + [98]={ + ["letter"]="CT", + ["num_lv"]=294 + }, + [99]={ + ["letter"]="CU", + ["num_lv"]=297 + }, + [100]={ + ["letter"]="CV", + ["num_lv"]=300 + }, + [101]={ + ["letter"]="CW", + ["num_lv"]=303 + }, + [102]={ + ["letter"]="CX", + ["num_lv"]=306 + }, + [103]={ + ["letter"]="CY", + ["num_lv"]=309 + }, + [104]={ + ["letter"]="CZ", + ["num_lv"]=312 + }, + [105]={ + ["letter"]="DA", + ["num_lv"]=315 + }, + [106]={ + ["letter"]="DB", + ["num_lv"]=318 + }, + [107]={ + ["letter"]="DC", + ["num_lv"]=321 + }, + [108]={ + ["letter"]="DD", + ["num_lv"]=324 + }, + [109]={ + ["letter"]="DE", + ["num_lv"]=327 + }, + [110]={ + ["letter"]="DF", + ["num_lv"]=330 + }, + [111]={ + ["letter"]="DG", + ["num_lv"]=333 + }, + [112]={ + ["letter"]="DH", + ["num_lv"]=336 + }, + [113]={ + ["letter"]="DI", + ["num_lv"]=339 + }, + [114]={ + ["letter"]="DJ", + ["num_lv"]=342 + }, + [115]={ + ["letter"]="DK", + ["num_lv"]=345 + }, + [116]={ + ["letter"]="DL", + ["num_lv"]=348 + }, + [117]={ + ["letter"]="DM", + ["num_lv"]=351 + }, + [118]={ + ["letter"]="DN", + ["num_lv"]=354 + }, + [119]={ + ["letter"]="DO", + ["num_lv"]=357 + }, + [120]={ + ["letter"]="DP", + ["num_lv"]=360 + }, + [121]={ + ["letter"]="DQ", + ["num_lv"]=363 + }, + [122]={ + ["letter"]="DR", + ["num_lv"]=366 + }, + [123]={ + ["letter"]="DS", + ["num_lv"]=369 + }, + [124]={ + ["letter"]="DT", + ["num_lv"]=372 + }, + [125]={ + ["letter"]="DU", + ["num_lv"]=375 + }, + [126]={ + ["letter"]="DV", + ["num_lv"]=378 + }, + [127]={ + ["letter"]="DW", + ["num_lv"]=381 + }, + [128]={ + ["letter"]="DX", + ["num_lv"]=384 + }, + [129]={ + ["letter"]="DY", + ["num_lv"]=387 + }, + [130]={ + ["letter"]="DZ", + ["num_lv"]=390 + }, + [131]={ + ["letter"]="EA", + ["num_lv"]=393 + }, + [132]={ + ["letter"]="EB", + ["num_lv"]=396 + }, + [133]={ + ["letter"]="EC", + ["num_lv"]=399 + }, + [134]={ + ["letter"]="ED", + ["num_lv"]=402 + }, + [135]={ + ["letter"]="EE", + ["num_lv"]=405 + }, + [136]={ + ["letter"]="EF", + ["num_lv"]=408 + }, + [137]={ + ["letter"]="EG", + ["num_lv"]=411 + }, + [138]={ + ["letter"]="EH", + ["num_lv"]=414 + }, + [139]={ + ["letter"]="EI", + ["num_lv"]=417 + }, + [140]={ + ["letter"]="EJ", + ["num_lv"]=420 + }, + [141]={ + ["letter"]="EK", + ["num_lv"]=423 + }, + [142]={ + ["letter"]="EL", + ["num_lv"]=426 + }, + [143]={ + ["letter"]="EM", + ["num_lv"]=429 + }, + [144]={ + ["letter"]="EN", + ["num_lv"]=432 + }, + [145]={ + ["letter"]="EO", + ["num_lv"]=435 + }, + [146]={ + ["letter"]="EP", + ["num_lv"]=438 + }, + [147]={ + ["letter"]="EQ", + ["num_lv"]=441 + }, + [148]={ + ["letter"]="ER", + ["num_lv"]=444 + }, + [149]={ + ["letter"]="ES", + ["num_lv"]=447 + }, + [150]={ + ["letter"]="ET", + ["num_lv"]=450 + }, + [151]={ + ["letter"]="EU", + ["num_lv"]=453 + }, + [152]={ + ["letter"]="EV", + ["num_lv"]=456 + }, + [153]={ + ["letter"]="EW", + ["num_lv"]=459 + }, + [154]={ + ["letter"]="EX", + ["num_lv"]=462 + }, + [155]={ + ["letter"]="EY", + ["num_lv"]=465 + }, + [156]={ + ["letter"]="EZ", + ["num_lv"]=468 + }, + [157]={ + ["letter"]="FA", + ["num_lv"]=471 + }, + [158]={ + ["letter"]="FB", + ["num_lv"]=474 + }, + [159]={ + ["letter"]="FC", + ["num_lv"]=477 + }, + [160]={ + ["letter"]="FD", + ["num_lv"]=480 + }, + [161]={ + ["letter"]="FE", + ["num_lv"]=483 + }, + [162]={ + ["letter"]="FF", + ["num_lv"]=486 + }, + [163]={ + ["letter"]="FG", + ["num_lv"]=489 + }, + [164]={ + ["letter"]="FH", + ["num_lv"]=492 + }, + [165]={ + ["letter"]="FI", + ["num_lv"]=495 + }, + [166]={ + ["letter"]="FJ", + ["num_lv"]=498 + }, + [167]={ + ["letter"]="FK", + ["num_lv"]=501 + }, + [168]={ + ["letter"]="FL", + ["num_lv"]=504 + }, + [169]={ + ["letter"]="FM", + ["num_lv"]=507 + }, + [170]={ + ["letter"]="FN", + ["num_lv"]=510 + }, + [171]={ + ["letter"]="FO", + ["num_lv"]=513 + }, + [172]={ + ["letter"]="FP", + ["num_lv"]=516 + }, + [173]={ + ["letter"]="FQ", + ["num_lv"]=519 + }, + [174]={ + ["letter"]="FR", + ["num_lv"]=522 + }, + [175]={ + ["letter"]="FS", + ["num_lv"]=525 + }, + [176]={ + ["letter"]="FT", + ["num_lv"]=528 + }, + [177]={ + ["letter"]="FU", + ["num_lv"]=531 + }, + [178]={ + ["letter"]="FV", + ["num_lv"]=534 + }, + [179]={ + ["letter"]="FW", + ["num_lv"]=537 + }, + [180]={ + ["letter"]="FX", + ["num_lv"]=540 + }, + [181]={ + ["letter"]="FY", + ["num_lv"]=543 + }, + [182]={ + ["letter"]="FZ", + ["num_lv"]=546 + }, + [183]={ + ["letter"]="GA", + ["num_lv"]=549 + }, + [184]={ + ["letter"]="GB", + ["num_lv"]=552 + }, + [185]={ + ["letter"]="GC", + ["num_lv"]=555 + }, + [186]={ + ["letter"]="GD", + ["num_lv"]=558 + }, + [187]={ + ["letter"]="GE", + ["num_lv"]=561 + }, + [188]={ + ["letter"]="GF", + ["num_lv"]=564 + }, + [189]={ + ["letter"]="GG", + ["num_lv"]=567 + }, + [190]={ + ["letter"]="GH", + ["num_lv"]=570 + }, + [191]={ + ["letter"]="GI", + ["num_lv"]=573 + }, + [192]={ + ["letter"]="GJ", + ["num_lv"]=576 + }, + [193]={ + ["letter"]="GK", + ["num_lv"]=579 + }, + [194]={ + ["letter"]="GL", + ["num_lv"]=582 + }, + [195]={ + ["letter"]="GM", + ["num_lv"]=585 + }, + [196]={ + ["letter"]="GN", + ["num_lv"]=588 + }, + [197]={ + ["letter"]="GO", + ["num_lv"]=591 + }, + [198]={ + ["letter"]="GP", + ["num_lv"]=594 + }, + [199]={ + ["letter"]="GQ", + ["num_lv"]=597 + }, + [200]={ + ["letter"]="GR", + ["num_lv"]=600 + }, + [201]={ + ["letter"]="GS", + ["num_lv"]=603 + }, + [202]={ + ["letter"]="GT", + ["num_lv"]=606 + }, + [203]={ + ["letter"]="GU", + ["num_lv"]=609 + }, + [204]={ + ["letter"]="GV", + ["num_lv"]=612 + }, + [205]={ + ["letter"]="GW", + ["num_lv"]=615 + }, + [206]={ + ["letter"]="GX", + ["num_lv"]=618 + }, + [207]={ + ["letter"]="GY", + ["num_lv"]=621 + }, + [208]={ + ["letter"]="GZ", + ["num_lv"]=624 + }, + [209]={ + ["letter"]="HA", + ["num_lv"]=627 + }, + [210]={ + ["letter"]="HB", + ["num_lv"]=630 + }, + [211]={ + ["letter"]="HC", + ["num_lv"]=633 + }, + [212]={ + ["letter"]="HD", + ["num_lv"]=636 + }, + [213]={ + ["letter"]="HE", + ["num_lv"]=639 + }, + [214]={ + ["letter"]="HF", + ["num_lv"]=642 + }, + [215]={ + ["letter"]="HG", + ["num_lv"]=645 + }, + [216]={ + ["letter"]="HH", + ["num_lv"]=648 + }, + [217]={ + ["letter"]="HI", + ["num_lv"]=651 + }, + [218]={ + ["letter"]="HJ", + ["num_lv"]=654 + }, + [219]={ + ["letter"]="HK", + ["num_lv"]=657 + }, + [220]={ + ["letter"]="HL", + ["num_lv"]=660 + }, + [221]={ + ["letter"]="HM", + ["num_lv"]=663 + }, + [222]={ + ["letter"]="HN", + ["num_lv"]=666 + }, + [223]={ + ["letter"]="HO", + ["num_lv"]=669 + }, + [224]={ + ["letter"]="HP", + ["num_lv"]=672 + }, + [225]={ + ["letter"]="HQ", + ["num_lv"]=675 + }, + [226]={ + ["letter"]="HR", + ["num_lv"]=678 + }, + [227]={ + ["letter"]="HS", + ["num_lv"]=681 + }, + [228]={ + ["letter"]="HT", + ["num_lv"]=684 + }, + [229]={ + ["letter"]="HU", + ["num_lv"]=687 + }, + [230]={ + ["letter"]="HV", + ["num_lv"]=690 + }, + [231]={ + ["letter"]="HW", + ["num_lv"]=693 + }, + [232]={ + ["letter"]="HX", + ["num_lv"]=696 + }, + [233]={ + ["letter"]="HY", + ["num_lv"]=699 + }, + [234]={ + ["letter"]="HZ", + ["num_lv"]=702 + }, + [235]={ + ["letter"]="IA", + ["num_lv"]=705 + }, + [236]={ + ["letter"]="IB", + ["num_lv"]=708 + }, + [237]={ + ["letter"]="IC", + ["num_lv"]=711 + }, + [238]={ + ["letter"]="ID", + ["num_lv"]=714 + }, + [239]={ + ["letter"]="IE", + ["num_lv"]=717 + }, + [240]={ + ["letter"]="IF", + ["num_lv"]=720 + }, + [241]={ + ["letter"]="IG", + ["num_lv"]=723 + }, + [242]={ + ["letter"]="IH", + ["num_lv"]=726 + }, + [243]={ + ["letter"]="II", + ["num_lv"]=729 + }, + [244]={ + ["letter"]="IJ", + ["num_lv"]=732 + }, + [245]={ + ["letter"]="IK", + ["num_lv"]=735 + }, + [246]={ + ["letter"]="IL", + ["num_lv"]=738 + }, + [247]={ + ["letter"]="IM", + ["num_lv"]=741 + }, + [248]={ + ["letter"]="IN", + ["num_lv"]=744 + }, + [249]={ + ["letter"]="IO", + ["num_lv"]=747 + }, + [250]={ + ["letter"]="IP", + ["num_lv"]=750 + }, + [251]={ + ["letter"]="IQ", + ["num_lv"]=753 + }, + [252]={ + ["letter"]="IR", + ["num_lv"]=756 + }, + [253]={ + ["letter"]="IS", + ["num_lv"]=759 + }, + [254]={ + ["letter"]="IT", + ["num_lv"]=762 + }, + [255]={ + ["letter"]="IU", + ["num_lv"]=765 + }, + [256]={ + ["letter"]="IV", + ["num_lv"]=768 + }, + [257]={ + ["letter"]="IW", + ["num_lv"]=771 + }, + [258]={ + ["letter"]="IX", + ["num_lv"]=774 + }, + [259]={ + ["letter"]="IY", + ["num_lv"]=777 + }, + [260]={ + ["letter"]="IZ", + ["num_lv"]=780 + }, + [261]={ + ["letter"]="JA", + ["num_lv"]=783 + }, + [262]={ + ["letter"]="JB", + ["num_lv"]=786 + }, + [263]={ + ["letter"]="JC", + ["num_lv"]=789 + }, + [264]={ + ["letter"]="JD", + ["num_lv"]=792 + }, + [265]={ + ["letter"]="JE", + ["num_lv"]=795 + }, + [266]={ + ["letter"]="JF", + ["num_lv"]=798 + }, + [267]={ + ["letter"]="JG", + ["num_lv"]=801 + }, + [268]={ + ["letter"]="JH", + ["num_lv"]=804 + }, + [269]={ + ["letter"]="JI", + ["num_lv"]=807 + }, + [270]={ + ["letter"]="JJ", + ["num_lv"]=810 + }, + [271]={ + ["letter"]="JK", + ["num_lv"]=813 + }, + [272]={ + ["letter"]="JL", + ["num_lv"]=816 + }, + [273]={ + ["letter"]="JM", + ["num_lv"]=819 + }, + [274]={ + ["letter"]="JN", + ["num_lv"]=822 + }, + [275]={ + ["letter"]="JO", + ["num_lv"]=825 + }, + [276]={ + ["letter"]="JP", + ["num_lv"]=828 + }, + [277]={ + ["letter"]="JQ", + ["num_lv"]=831 + }, + [278]={ + ["letter"]="JR", + ["num_lv"]=834 + }, + [279]={ + ["letter"]="JS", + ["num_lv"]=837 + }, + [280]={ + ["letter"]="JT", + ["num_lv"]=840 + }, + [281]={ + ["letter"]="JU", + ["num_lv"]=843 + }, + [282]={ + ["letter"]="JV", + ["num_lv"]=846 + }, + [283]={ + ["letter"]="JW", + ["num_lv"]=849 + }, + [284]={ + ["letter"]="JX", + ["num_lv"]=852 + }, + [285]={ + ["letter"]="JY", + ["num_lv"]=855 + }, + [286]={ + ["letter"]="JZ", + ["num_lv"]=858 + }, + [287]={ + ["letter"]="KA", + ["num_lv"]=861 + }, + [288]={ + ["letter"]="KB", + ["num_lv"]=864 + }, + [289]={ + ["letter"]="KC", + ["num_lv"]=867 + }, + [290]={ + ["letter"]="KD", + ["num_lv"]=870 + }, + [291]={ + ["letter"]="KE", + ["num_lv"]=873 + }, + [292]={ + ["letter"]="KF", + ["num_lv"]=876 + }, + [293]={ + ["letter"]="KG", + ["num_lv"]=879 + }, + [294]={ + ["letter"]="KH", + ["num_lv"]=882 + }, + [295]={ + ["letter"]="KI", + ["num_lv"]=885 + }, + [296]={ + ["letter"]="KJ", + ["num_lv"]=888 + }, + [297]={ + ["letter"]="KK", + ["num_lv"]=891 + }, + [298]={ + ["letter"]="KL", + ["num_lv"]=894 + }, + [299]={ + ["letter"]="KM", + ["num_lv"]=897 + }, + [300]={ + ["letter"]="KN", + ["num_lv"]=900 + }, + [301]={ + ["letter"]="KO", + ["num_lv"]=903 + }, + [302]={ + ["letter"]="KP", + ["num_lv"]=906 + }, + [303]={ + ["letter"]="KQ", + ["num_lv"]=909 + }, + [304]={ + ["letter"]="KR", + ["num_lv"]=912 + }, + [305]={ + ["letter"]="KS", + ["num_lv"]=915 + }, + [306]={ + ["letter"]="KT", + ["num_lv"]=918 + }, + [307]={ + ["letter"]="KU", + ["num_lv"]=921 + }, + [308]={ + ["letter"]="KV", + ["num_lv"]=924 + }, + [309]={ + ["letter"]="KW", + ["num_lv"]=927 + }, + [310]={ + ["letter"]="KX", + ["num_lv"]=930 + }, + [311]={ + ["letter"]="KY", + ["num_lv"]=933 + }, + [312]={ + ["letter"]="KZ", + ["num_lv"]=936 + }, + [313]={ + ["letter"]="LA", + ["num_lv"]=939 + }, + [314]={ + ["letter"]="LB", + ["num_lv"]=942 + }, + [315]={ + ["letter"]="LC", + ["num_lv"]=945 + }, + [316]={ + ["letter"]="LD", + ["num_lv"]=948 + }, + [317]={ + ["letter"]="LE", + ["num_lv"]=951 + }, + [318]={ + ["letter"]="LF", + ["num_lv"]=954 + }, + [319]={ + ["letter"]="LG", + ["num_lv"]=957 + }, + [320]={ + ["letter"]="LH", + ["num_lv"]=960 + }, + [321]={ + ["letter"]="LI", + ["num_lv"]=963 + }, + [322]={ + ["letter"]="LJ", + ["num_lv"]=966 + }, + [323]={ + ["letter"]="LK", + ["num_lv"]=969 + }, + [324]={ + ["letter"]="LL", + ["num_lv"]=972 + }, + [325]={ + ["letter"]="LM", + ["num_lv"]=975 + }, + [326]={ + ["letter"]="LN", + ["num_lv"]=978 + }, + [327]={ + ["letter"]="LO", + ["num_lv"]=981 + }, + [328]={ + ["letter"]="LP", + ["num_lv"]=984 + }, + [329]={ + ["letter"]="LQ", + ["num_lv"]=987 + }, + [330]={ + ["letter"]="LR", + ["num_lv"]=990 + }, + [331]={ + ["letter"]="LS", + ["num_lv"]=993 + }, + [332]={ + ["letter"]="LT", + ["num_lv"]=996 + }, + [333]={ + ["letter"]="LU", + ["num_lv"]=999 + }, + [334]={ + ["letter"]="LV", + ["num_lv"]=1002 + }, + [335]={ + ["letter"]="LW", + ["num_lv"]=1005 + }, + [336]={ + ["letter"]="LX", + ["num_lv"]=1008 + }, + [337]={ + ["letter"]="LY", + ["num_lv"]=1011 + }, + [338]={ + ["letter"]="LZ", + ["num_lv"]=1014 + }, + [339]={ + ["letter"]="MA", + ["num_lv"]=1017 + }, + [340]={ + ["letter"]="MB", + ["num_lv"]=1020 + }, + [341]={ + ["letter"]="MC", + ["num_lv"]=1023 + }, + [342]={ + ["letter"]="MD", + ["num_lv"]=1026 + }, + [343]={ + ["letter"]="ME", + ["num_lv"]=1029 + }, + [344]={ + ["letter"]="MF", + ["num_lv"]=1032 + }, + [345]={ + ["letter"]="MG", + ["num_lv"]=1035 + }, + [346]={ + ["letter"]="MH", + ["num_lv"]=1038 + }, + [347]={ + ["letter"]="MI", + ["num_lv"]=1041 + }, + [348]={ + ["letter"]="MJ", + ["num_lv"]=1044 + }, + [349]={ + ["letter"]="MK", + ["num_lv"]=1047 + }, + [350]={ + ["letter"]="ML", + ["num_lv"]=1050 + }, + [351]={ + ["letter"]="MM", + ["num_lv"]=1053 + }, + [352]={ + ["letter"]="MN", + ["num_lv"]=1056 + }, + [353]={ + ["letter"]="MO", + ["num_lv"]=1059 + }, + [354]={ + ["letter"]="MP", + ["num_lv"]=1062 + }, + [355]={ + ["letter"]="MQ", + ["num_lv"]=1065 + }, + [356]={ + ["letter"]="MR", + ["num_lv"]=1068 + }, + [357]={ + ["letter"]="MS", + ["num_lv"]=1071 + }, + [358]={ + ["letter"]="MT", + ["num_lv"]=1074 + }, + [359]={ + ["letter"]="MU", + ["num_lv"]=1077 + }, + [360]={ + ["letter"]="MV", + ["num_lv"]=1080 + }, + [361]={ + ["letter"]="MW", + ["num_lv"]=1083 + }, + [362]={ + ["letter"]="MX", + ["num_lv"]=1086 + }, + [363]={ + ["letter"]="MY", + ["num_lv"]=1089 + }, + [364]={ + ["letter"]="MZ", + ["num_lv"]=1092 + }, + [365]={ + ["letter"]="NA", + ["num_lv"]=1095 + }, + [366]={ + ["letter"]="NB", + ["num_lv"]=1098 + }, + [367]={ + ["letter"]="NC", + ["num_lv"]=1101 + }, + [368]={ + ["letter"]="ND", + ["num_lv"]=1104 + }, + [369]={ + ["letter"]="NE", + ["num_lv"]=1107 + }, + [370]={ + ["letter"]="NF", + ["num_lv"]=1110 + }, + [371]={ + ["letter"]="NG", + ["num_lv"]=1113 + }, + [372]={ + ["letter"]="NH", + ["num_lv"]=1116 + }, + [373]={ + ["letter"]="NI", + ["num_lv"]=1119 + }, + [374]={ + ["letter"]="NJ", + ["num_lv"]=1122 + }, + [375]={ + ["letter"]="NK", + ["num_lv"]=1125 + }, + [376]={ + ["letter"]="NL", + ["num_lv"]=1128 + }, + [377]={ + ["letter"]="NM", + ["num_lv"]=1131 + }, + [378]={ + ["letter"]="NN", + ["num_lv"]=1134 + }, + [379]={ + ["letter"]="NO", + ["num_lv"]=1137 + }, + [380]={ + ["letter"]="NP", + ["num_lv"]=1140 + }, + [381]={ + ["letter"]="NQ", + ["num_lv"]=1143 + }, + [382]={ + ["letter"]="NR", + ["num_lv"]=1146 + }, + [383]={ + ["letter"]="NS", + ["num_lv"]=1149 + }, + [384]={ + ["letter"]="NT", + ["num_lv"]=1152 + }, + [385]={ + ["letter"]="NU", + ["num_lv"]=1155 + }, + [386]={ + ["letter"]="NV", + ["num_lv"]=1158 + }, + [387]={ + ["letter"]="NW", + ["num_lv"]=1161 + }, + [388]={ + ["letter"]="NX", + ["num_lv"]=1164 + }, + [389]={ + ["letter"]="NY", + ["num_lv"]=1167 + }, + [390]={ + ["letter"]="NZ", + ["num_lv"]=1170 + }, + [391]={ + ["letter"]="OA", + ["num_lv"]=1173 + }, + [392]={ + ["letter"]="OB", + ["num_lv"]=1176 + }, + [393]={ + ["letter"]="OC", + ["num_lv"]=1179 + }, + [394]={ + ["letter"]="OD", + ["num_lv"]=1182 + }, + [395]={ + ["letter"]="OE", + ["num_lv"]=1185 + }, + [396]={ + ["letter"]="OF", + ["num_lv"]=1188 + }, + [397]={ + ["letter"]="OG", + ["num_lv"]=1191 + }, + [398]={ + ["letter"]="OH", + ["num_lv"]=1194 + }, + [399]={ + ["letter"]="OI", + ["num_lv"]=1197 + }, + [400]={ + ["letter"]="OJ", + ["num_lv"]=1200 + }, + [401]={ + ["letter"]="OK", + ["num_lv"]=1203 + }, + [402]={ + ["letter"]="OL", + ["num_lv"]=1206 + }, + [403]={ + ["letter"]="OM", + ["num_lv"]=1209 + }, + [404]={ + ["letter"]="ON", + ["num_lv"]=1212 + }, + [405]={ + ["letter"]="OO", + ["num_lv"]=1215 + }, + [406]={ + ["letter"]="OP", + ["num_lv"]=1218 + }, + [407]={ + ["letter"]="OQ", + ["num_lv"]=1221 + }, + [408]={ + ["letter"]="OR", + ["num_lv"]=1224 + }, + [409]={ + ["letter"]="OS", + ["num_lv"]=1227 + }, + [410]={ + ["letter"]="OT", + ["num_lv"]=1230 + }, + [411]={ + ["letter"]="OU", + ["num_lv"]=1233 + }, + [412]={ + ["letter"]="OV", + ["num_lv"]=1236 + }, + [413]={ + ["letter"]="OW", + ["num_lv"]=1239 + }, + [414]={ + ["letter"]="OX", + ["num_lv"]=1242 + }, + [415]={ + ["letter"]="OY", + ["num_lv"]=1245 + }, + [416]={ + ["letter"]="OZ", + ["num_lv"]=1248 + }, + [417]={ + ["letter"]="PA", + ["num_lv"]=1251 + }, + [418]={ + ["letter"]="PB", + ["num_lv"]=1254 + }, + [419]={ + ["letter"]="PC", + ["num_lv"]=1257 + }, + [420]={ + ["letter"]="PD", + ["num_lv"]=1260 + }, + [421]={ + ["letter"]="PE", + ["num_lv"]=1263 + }, + [422]={ + ["letter"]="PF", + ["num_lv"]=1266 + }, + [423]={ + ["letter"]="PG", + ["num_lv"]=1269 + }, + [424]={ + ["letter"]="PH", + ["num_lv"]=1272 + }, + [425]={ + ["letter"]="PI", + ["num_lv"]=1275 + }, + [426]={ + ["letter"]="PJ", + ["num_lv"]=1278 + }, + [427]={ + ["letter"]="PK", + ["num_lv"]=1281 + }, + [428]={ + ["letter"]="PL", + ["num_lv"]=1284 + }, + [429]={ + ["letter"]="PM", + ["num_lv"]=1287 + }, + [430]={ + ["letter"]="PN", + ["num_lv"]=1290 + }, + [431]={ + ["letter"]="PO", + ["num_lv"]=1293 + }, + [432]={ + ["letter"]="PP", + ["num_lv"]=1296 + }, + [433]={ + ["letter"]="PQ", + ["num_lv"]=1299 + }, + [434]={ + ["letter"]="PR", + ["num_lv"]=1302 + }, + [435]={ + ["letter"]="PS", + ["num_lv"]=1305 + }, + [436]={ + ["letter"]="PT", + ["num_lv"]=1308 + }, + [437]={ + ["letter"]="PU", + ["num_lv"]=1311 + }, + [438]={ + ["letter"]="PV", + ["num_lv"]=1314 + }, + [439]={ + ["letter"]="PW", + ["num_lv"]=1317 + }, + [440]={ + ["letter"]="PX", + ["num_lv"]=1320 + }, + [441]={ + ["letter"]="PY", + ["num_lv"]=1323 + }, + [442]={ + ["letter"]="PZ", + ["num_lv"]=1326 + }, + [443]={ + ["letter"]="QA", + ["num_lv"]=1329 + }, + [444]={ + ["letter"]="QB", + ["num_lv"]=1332 + }, + [445]={ + ["letter"]="QC", + ["num_lv"]=1335 + }, + [446]={ + ["letter"]="QD", + ["num_lv"]=1338 + }, + [447]={ + ["letter"]="QE", + ["num_lv"]=1341 + }, + [448]={ + ["letter"]="QF", + ["num_lv"]=1344 + }, + [449]={ + ["letter"]="QG", + ["num_lv"]=1347 + }, + [450]={ + ["letter"]="QH", + ["num_lv"]=1350 + }, + [451]={ + ["letter"]="QI", + ["num_lv"]=1353 + }, + [452]={ + ["letter"]="QJ", + ["num_lv"]=1356 + }, + [453]={ + ["letter"]="QK", + ["num_lv"]=1359 + }, + [454]={ + ["letter"]="QL", + ["num_lv"]=1362 + }, + [455]={ + ["letter"]="QM", + ["num_lv"]=1365 + }, + [456]={ + ["letter"]="QN", + ["num_lv"]=1368 + }, + [457]={ + ["letter"]="QO", + ["num_lv"]=1371 + }, + [458]={ + ["letter"]="QP", + ["num_lv"]=1374 + }, + [459]={ + ["letter"]="QQ", + ["num_lv"]=1377 + }, + [460]={ + ["letter"]="QR", + ["num_lv"]=1380 + }, + [461]={ + ["letter"]="QS", + ["num_lv"]=1383 + }, + [462]={ + ["letter"]="QT", + ["num_lv"]=1386 + }, + [463]={ + ["letter"]="QU", + ["num_lv"]=1389 + }, + [464]={ + ["letter"]="QV", + ["num_lv"]=1392 + }, + [465]={ + ["letter"]="QW", + ["num_lv"]=1395 + }, + [466]={ + ["letter"]="QX", + ["num_lv"]=1398 + }, + [467]={ + ["letter"]="QY", + ["num_lv"]=1401 + }, + [468]={ + ["letter"]="QZ", + ["num_lv"]=1404 + }, + [469]={ + ["letter"]="RA", + ["num_lv"]=1407 + }, + [470]={ + ["letter"]="RB", + ["num_lv"]=1410 + }, + [471]={ + ["letter"]="RC", + ["num_lv"]=1413 + }, + [472]={ + ["letter"]="RD", + ["num_lv"]=1416 + }, + [473]={ + ["letter"]="RE", + ["num_lv"]=1419 + }, + [474]={ + ["letter"]="RF", + ["num_lv"]=1422 + }, + [475]={ + ["letter"]="RG", + ["num_lv"]=1425 + }, + [476]={ + ["letter"]="RH", + ["num_lv"]=1428 + }, + [477]={ + ["letter"]="RI", + ["num_lv"]=1431 + }, + [478]={ + ["letter"]="RJ", + ["num_lv"]=1434 + }, + [479]={ + ["letter"]="RK", + ["num_lv"]=1437 + }, + [480]={ + ["letter"]="RL", + ["num_lv"]=1440 + }, + [481]={ + ["letter"]="RM", + ["num_lv"]=1443 + }, + [482]={ + ["letter"]="RN", + ["num_lv"]=1446 + }, + [483]={ + ["letter"]="RO", + ["num_lv"]=1449 + }, + [484]={ + ["letter"]="RP", + ["num_lv"]=1452 + }, + [485]={ + ["letter"]="RQ", + ["num_lv"]=1455 + }, + [486]={ + ["letter"]="RR", + ["num_lv"]=1458 + }, + [487]={ + ["letter"]="RS", + ["num_lv"]=1461 + }, + [488]={ + ["letter"]="RT", + ["num_lv"]=1464 + }, + [489]={ + ["letter"]="RU", + ["num_lv"]=1467 + }, + [490]={ + ["letter"]="RV", + ["num_lv"]=1470 + }, + [491]={ + ["letter"]="RW", + ["num_lv"]=1473 + }, + [492]={ + ["letter"]="RX", + ["num_lv"]=1476 + }, + [493]={ + ["letter"]="RY", + ["num_lv"]=1479 + }, + [494]={ + ["letter"]="RZ", + ["num_lv"]=1482 + }, + [495]={ + ["letter"]="SA", + ["num_lv"]=1485 + }, + [496]={ + ["letter"]="SB", + ["num_lv"]=1488 + }, + [497]={ + ["letter"]="SC", + ["num_lv"]=1491 + }, + [498]={ + ["letter"]="SD", + ["num_lv"]=1494 + }, + [499]={ + ["letter"]="SE", + ["num_lv"]=1497 + }, + [500]={ + ["letter"]="SF", + ["num_lv"]=1500 + }, + [501]={ + ["letter"]="SG", + ["num_lv"]=1503 + }, + [502]={ + ["letter"]="SH", + ["num_lv"]=1506 + }, + [503]={ + ["letter"]="SI", + ["num_lv"]=1509 + }, + [504]={ + ["letter"]="SJ", + ["num_lv"]=1512 + }, + [505]={ + ["letter"]="SK", + ["num_lv"]=1515 + }, + [506]={ + ["letter"]="SL", + ["num_lv"]=1518 + }, + [507]={ + ["letter"]="SM", + ["num_lv"]=1521 + }, + [508]={ + ["letter"]="SN", + ["num_lv"]=1524 + }, + [509]={ + ["letter"]="SO", + ["num_lv"]=1527 + }, + [510]={ + ["letter"]="SP", + ["num_lv"]=1530 + }, + [511]={ + ["letter"]="SQ", + ["num_lv"]=1533 + }, + [512]={ + ["letter"]="SR", + ["num_lv"]=1536 + }, + [513]={ + ["letter"]="SS", + ["num_lv"]=1539 + }, + [514]={ + ["letter"]="ST", + ["num_lv"]=1542 + }, + [515]={ + ["letter"]="SU", + ["num_lv"]=1545 + }, + [516]={ + ["letter"]="SV", + ["num_lv"]=1548 + }, + [517]={ + ["letter"]="SW", + ["num_lv"]=1551 + }, + [518]={ + ["letter"]="SX", + ["num_lv"]=1554 + }, + [519]={ + ["letter"]="SY", + ["num_lv"]=1557 + }, + [520]={ + ["letter"]="SZ", + ["num_lv"]=1560 + }, + [521]={ + ["letter"]="TA", + ["num_lv"]=1563 + }, + [522]={ + ["letter"]="TB", + ["num_lv"]=1566 + }, + [523]={ + ["letter"]="TC", + ["num_lv"]=1569 + }, + [524]={ + ["letter"]="TD", + ["num_lv"]=1572 + }, + [525]={ + ["letter"]="TE", + ["num_lv"]=1575 + }, + [526]={ + ["letter"]="TF", + ["num_lv"]=1578 + }, + [527]={ + ["letter"]="TG", + ["num_lv"]=1581 + }, + [528]={ + ["letter"]="TH", + ["num_lv"]=1584 + }, + [529]={ + ["letter"]="TI", + ["num_lv"]=1587 + }, + [530]={ + ["letter"]="TJ", + ["num_lv"]=1590 + }, + [531]={ + ["letter"]="TK", + ["num_lv"]=1593 + }, + [532]={ + ["letter"]="TL", + ["num_lv"]=1596 + }, + [533]={ + ["letter"]="TM", + ["num_lv"]=1599 + }, + [534]={ + ["letter"]="TN", + ["num_lv"]=1602 + }, + [535]={ + ["letter"]="TO", + ["num_lv"]=1605 + }, + [536]={ + ["letter"]="TP", + ["num_lv"]=1608 + }, + [537]={ + ["letter"]="TQ", + ["num_lv"]=1611 + }, + [538]={ + ["letter"]="TR", + ["num_lv"]=1614 + }, + [539]={ + ["letter"]="TS", + ["num_lv"]=1617 + }, + [540]={ + ["letter"]="TT", + ["num_lv"]=1620 + }, + [541]={ + ["letter"]="TU", + ["num_lv"]=1623 + }, + [542]={ + ["letter"]="TV", + ["num_lv"]=1626 + }, + [543]={ + ["letter"]="TW", + ["num_lv"]=1629 + }, + [544]={ + ["letter"]="TX", + ["num_lv"]=1632 + }, + [545]={ + ["letter"]="TY", + ["num_lv"]=1635 + }, + [546]={ + ["letter"]="TZ", + ["num_lv"]=1638 + }, + [547]={ + ["letter"]="UA", + ["num_lv"]=1641 + }, + [548]={ + ["letter"]="UB", + ["num_lv"]=1644 + }, + [549]={ + ["letter"]="UC", + ["num_lv"]=1647 + }, + [550]={ + ["letter"]="UD", + ["num_lv"]=1650 + }, + [551]={ + ["letter"]="UE", + ["num_lv"]=1653 + }, + [552]={ + ["letter"]="UF", + ["num_lv"]=1656 + }, + [553]={ + ["letter"]="UG", + ["num_lv"]=1659 + }, + [554]={ + ["letter"]="UH", + ["num_lv"]=1662 + }, + [555]={ + ["letter"]="UI", + ["num_lv"]=1665 + }, + [556]={ + ["letter"]="UJ", + ["num_lv"]=1668 + }, + [557]={ + ["letter"]="UK", + ["num_lv"]=1671 + }, + [558]={ + ["letter"]="UL", + ["num_lv"]=1674 + }, + [559]={ + ["letter"]="UM", + ["num_lv"]=1677 + }, + [560]={ + ["letter"]="UN", + ["num_lv"]=1680 + }, + [561]={ + ["letter"]="UO", + ["num_lv"]=1683 + }, + [562]={ + ["letter"]="UP", + ["num_lv"]=1686 + }, + [563]={ + ["letter"]="UQ", + ["num_lv"]=1689 + }, + [564]={ + ["letter"]="UR", + ["num_lv"]=1692 + }, + [565]={ + ["letter"]="US", + ["num_lv"]=1695 + }, + [566]={ + ["letter"]="UT", + ["num_lv"]=1698 + }, + [567]={ + ["letter"]="UU", + ["num_lv"]=1701 + }, + [568]={ + ["letter"]="UV", + ["num_lv"]=1704 + }, + [569]={ + ["letter"]="UW", + ["num_lv"]=1707 + }, + [570]={ + ["letter"]="UX", + ["num_lv"]=1710 + }, + [571]={ + ["letter"]="UY", + ["num_lv"]=1713 + }, + [572]={ + ["letter"]="UZ", + ["num_lv"]=1716 + }, + [573]={ + ["letter"]="VA", + ["num_lv"]=1719 + }, + [574]={ + ["letter"]="VB", + ["num_lv"]=1722 + }, + [575]={ + ["letter"]="VC", + ["num_lv"]=1725 + }, + [576]={ + ["letter"]="VD", + ["num_lv"]=1728 + }, + [577]={ + ["letter"]="VE", + ["num_lv"]=1731 + }, + [578]={ + ["letter"]="VF", + ["num_lv"]=1734 + }, + [579]={ + ["letter"]="VG", + ["num_lv"]=1737 + }, + [580]={ + ["letter"]="VH", + ["num_lv"]=1740 + }, + [581]={ + ["letter"]="VI", + ["num_lv"]=1743 + }, + [582]={ + ["letter"]="VJ", + ["num_lv"]=1746 + }, + [583]={ + ["letter"]="VK", + ["num_lv"]=1749 + }, + [584]={ + ["letter"]="VL", + ["num_lv"]=1752 + }, + [585]={ + ["letter"]="VM", + ["num_lv"]=1755 + }, + [586]={ + ["letter"]="VN", + ["num_lv"]=1758 + }, + [587]={ + ["letter"]="VO", + ["num_lv"]=1761 + }, + [588]={ + ["letter"]="VP", + ["num_lv"]=1764 + }, + [589]={ + ["letter"]="VQ", + ["num_lv"]=1767 + }, + [590]={ + ["letter"]="VR", + ["num_lv"]=1770 + }, + [591]={ + ["letter"]="VS", + ["num_lv"]=1773 + }, + [592]={ + ["letter"]="VT", + ["num_lv"]=1776 + }, + [593]={ + ["letter"]="VU", + ["num_lv"]=1779 + }, + [594]={ + ["letter"]="VV", + ["num_lv"]=1782 + }, + [595]={ + ["letter"]="VW", + ["num_lv"]=1785 + }, + [596]={ + ["letter"]="VX", + ["num_lv"]=1788 + }, + [597]={ + ["letter"]="VY", + ["num_lv"]=1791 + }, + [598]={ + ["letter"]="VZ", + ["num_lv"]=1794 + }, + [599]={ + ["letter"]="WA", + ["num_lv"]=1797 + }, + [600]={ + ["letter"]="WB", + ["num_lv"]=1800 + }, + [601]={ + ["letter"]="WC", + ["num_lv"]=1803 + }, + [602]={ + ["letter"]="WD", + ["num_lv"]=1806 + }, + [603]={ + ["letter"]="WE", + ["num_lv"]=1809 + }, + [604]={ + ["letter"]="WF", + ["num_lv"]=1812 + }, + [605]={ + ["letter"]="WG", + ["num_lv"]=1815 + }, + [606]={ + ["letter"]="WH", + ["num_lv"]=1818 + }, + [607]={ + ["letter"]="WI", + ["num_lv"]=1821 + }, + [608]={ + ["letter"]="WJ", + ["num_lv"]=1824 + }, + [609]={ + ["letter"]="WK", + ["num_lv"]=1827 + }, + [610]={ + ["letter"]="WL", + ["num_lv"]=1830 + }, + [611]={ + ["letter"]="WM", + ["num_lv"]=1833 + }, + [612]={ + ["letter"]="WN", + ["num_lv"]=1836 + }, + [613]={ + ["letter"]="WO", + ["num_lv"]=1839 + }, + [614]={ + ["letter"]="WP", + ["num_lv"]=1842 + }, + [615]={ + ["letter"]="WQ", + ["num_lv"]=1845 + }, + [616]={ + ["letter"]="WR", + ["num_lv"]=1848 + }, + [617]={ + ["letter"]="WS", + ["num_lv"]=1851 + }, + [618]={ + ["letter"]="WT", + ["num_lv"]=1854 + }, + [619]={ + ["letter"]="WU", + ["num_lv"]=1857 + }, + [620]={ + ["letter"]="WV", + ["num_lv"]=1860 + }, + [621]={ + ["letter"]="WW", + ["num_lv"]=1863 + }, + [622]={ + ["letter"]="WX", + ["num_lv"]=1866 + }, + [623]={ + ["letter"]="WY", + ["num_lv"]=1869 + }, + [624]={ + ["letter"]="WZ", + ["num_lv"]=1872 + }, + [625]={ + ["letter"]="XA", + ["num_lv"]=1875 + }, + [626]={ + ["letter"]="XB", + ["num_lv"]=1878 + }, + [627]={ + ["letter"]="XC", + ["num_lv"]=1881 + }, + [628]={ + ["letter"]="XD", + ["num_lv"]=1884 + }, + [629]={ + ["letter"]="XE", + ["num_lv"]=1887 + }, + [630]={ + ["letter"]="XF", + ["num_lv"]=1890 + }, + [631]={ + ["letter"]="XG", + ["num_lv"]=1893 + }, + [632]={ + ["letter"]="XH", + ["num_lv"]=1896 + }, + [633]={ + ["letter"]="XI", + ["num_lv"]=1899 + }, + [634]={ + ["letter"]="XJ", + ["num_lv"]=1902 + }, + [635]={ + ["letter"]="XK", + ["num_lv"]=1905 + }, + [636]={ + ["letter"]="XL", + ["num_lv"]=1908 + }, + [637]={ + ["letter"]="XM", + ["num_lv"]=1911 + }, + [638]={ + ["letter"]="XN", + ["num_lv"]=1914 + }, + [639]={ + ["letter"]="XO", + ["num_lv"]=1917 + }, + [640]={ + ["letter"]="XP", + ["num_lv"]=1920 + }, + [641]={ + ["letter"]="XQ", + ["num_lv"]=1923 + }, + [642]={ + ["letter"]="XR", + ["num_lv"]=1926 + }, + [643]={ + ["letter"]="XS", + ["num_lv"]=1929 + }, + [644]={ + ["letter"]="XT", + ["num_lv"]=1932 + }, + [645]={ + ["letter"]="XU", + ["num_lv"]=1935 + }, + [646]={ + ["letter"]="XV", + ["num_lv"]=1938 + }, + [647]={ + ["letter"]="XW", + ["num_lv"]=1941 + }, + [648]={ + ["letter"]="XX", + ["num_lv"]=1944 + }, + [649]={ + ["letter"]="XY", + ["num_lv"]=1947 + }, + [650]={ + ["letter"]="XZ", + ["num_lv"]=1950 + }, + [651]={ + ["letter"]="YA", + ["num_lv"]=1953 + }, + [652]={ + ["letter"]="YB", + ["num_lv"]=1956 + }, + [653]={ + ["letter"]="YC", + ["num_lv"]=1959 + }, + [654]={ + ["letter"]="YD", + ["num_lv"]=1962 + }, + [655]={ + ["letter"]="YE", + ["num_lv"]=1965 + }, + [656]={ + ["letter"]="YF", + ["num_lv"]=1968 + }, + [657]={ + ["letter"]="YG", + ["num_lv"]=1971 + }, + [658]={ + ["letter"]="YH", + ["num_lv"]=1974 + }, + [659]={ + ["letter"]="YI", + ["num_lv"]=1977 + }, + [660]={ + ["letter"]="YJ", + ["num_lv"]=1980 + }, + [661]={ + ["letter"]="YK", + ["num_lv"]=1983 + }, + [662]={ + ["letter"]="YL", + ["num_lv"]=1986 + }, + [663]={ + ["letter"]="YM", + ["num_lv"]=1989 + }, + [664]={ + ["letter"]="YN", + ["num_lv"]=1992 + }, + [665]={ + ["letter"]="YO", + ["num_lv"]=1995 + }, + [666]={ + ["letter"]="YP", + ["num_lv"]=1998 + }, + [667]={ + ["letter"]="YQ", + ["num_lv"]=2001 + }, + [668]={ + ["letter"]="YR", + ["num_lv"]=2004 + }, + [669]={ + ["letter"]="YS", + ["num_lv"]=2007 + }, + [670]={ + ["letter"]="YT", + ["num_lv"]=2010 + }, + [671]={ + ["letter"]="YU", + ["num_lv"]=2013 + }, + [672]={ + ["letter"]="YV", + ["num_lv"]=2016 + }, + [673]={ + ["letter"]="YW", + ["num_lv"]=2019 + }, + [674]={ + ["letter"]="YX", + ["num_lv"]=2022 + }, + [675]={ + ["letter"]="YY", + ["num_lv"]=2025 + }, + [676]={ + ["letter"]="YZ", + ["num_lv"]=2028 + }, + [677]={ + ["letter"]="ZA", + ["num_lv"]=2031 + }, + [678]={ + ["letter"]="ZB", + ["num_lv"]=2034 + }, + [679]={ + ["letter"]="ZC", + ["num_lv"]=2037 + }, + [680]={ + ["letter"]="ZD", + ["num_lv"]=2040 + }, + [681]={ + ["letter"]="ZE", + ["num_lv"]=2043 + }, + [682]={ + ["letter"]="ZF", + ["num_lv"]=2046 + }, + [683]={ + ["letter"]="ZG", + ["num_lv"]=2049 + }, + [684]={ + ["letter"]="ZH", + ["num_lv"]=2052 + }, + [685]={ + ["letter"]="ZI", + ["num_lv"]=2055 + }, + [686]={ + ["letter"]="ZJ", + ["num_lv"]=2058 + }, + [687]={ + ["letter"]="ZK", + ["num_lv"]=2061 + }, + [688]={ + ["letter"]="ZL", + ["num_lv"]=2064 + }, + [689]={ + ["letter"]="ZM", + ["num_lv"]=2067 + }, + [690]={ + ["letter"]="ZN", + ["num_lv"]=2070 + }, + [691]={ + ["letter"]="ZO", + ["num_lv"]=2073 + }, + [692]={ + ["letter"]="ZP", + ["num_lv"]=2076 + }, + [693]={ + ["letter"]="ZQ", + ["num_lv"]=2079 + }, + [694]={ + ["letter"]="ZR", + ["num_lv"]=2082 + }, + [695]={ + ["letter"]="ZS", + ["num_lv"]=2085 + }, + [696]={ + ["letter"]="ZT", + ["num_lv"]=2088 + }, + [697]={ + ["letter"]="ZU", + ["num_lv"]=2091 + }, + [698]={ + ["letter"]="ZV", + ["num_lv"]=2094 + }, + [699]={ + ["letter"]="ZW", + ["num_lv"]=2097 + }, + [700]={ + ["letter"]="ZX", + ["num_lv"]=2100 + }, + [701]={ + ["letter"]="ZY", + ["num_lv"]=2103 + }, + [702]={ + ["letter"]="ZZ", + ["num_lv"]=2106 + } +} +local config = { +data=bignum_mapping,count=702 +} +return config \ No newline at end of file diff --git a/lua/app/config/bignum_mapping.lua.meta b/lua/app/config/bignum_mapping.lua.meta new file mode 100644 index 00000000..9fa82b59 --- /dev/null +++ b/lua/app/config/bignum_mapping.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ad5c3dd29b65135448e0de7cb793b01a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/blessing.lua b/lua/app/config/blessing.lua new file mode 100644 index 00000000..c8d50653 --- /dev/null +++ b/lua/app/config/blessing.lua @@ -0,0 +1,63 @@ +local blessing = { + [1]={ + ["time"]=1200, + ["up_cost"]=2, + ["max_lv"]=30, + ["basic_effect"]={ + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5000, + ["unit"]=0 + } + }, + ["grow_effect"]={ + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [2]={ + ["time"]=1200, + ["up_cost"]=2, + ["max_lv"]=30, + ["basic_effect"]={ + ["type"]="atkp_8", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + }, + ["grow_effect"]={ + ["type"]="atkp_8", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + }, + [3]={ + ["time"]=1200, + ["up_cost"]=2, + ["max_lv"]=30, + ["basic_effect"]={ + ["type"]="dmg_addition_skill", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + }, + ["grow_effect"]={ + ["type"]="dmg_addition_skill", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } +} +local config = { +data=blessing,count=3 +} +return config \ No newline at end of file diff --git a/lua/app/config/blessing.lua.meta b/lua/app/config/blessing.lua.meta new file mode 100644 index 00000000..df4bff74 --- /dev/null +++ b/lua/app/config/blessing.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 516eeae51aef556489a34f776c7d116a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/buff.lua b/lua/app/config/buff.lua new file mode 100644 index 00000000..c320c63e --- /dev/null +++ b/lua/app/config/buff.lua @@ -0,0 +1,231 @@ +local buff = { + [1]={ + ["name"]="hurt", + ["buff_type"]=1, + ["formula"]=1 + }, + [2]={ + ["name"]="hurt_hpp_t", + ["buff_type"]=1, + ["formula"]=2 + }, + [3]={ + ["name"]="poison", + ["buff_type"]=2, + ["formula"]=1, + ["buff_interval"]=300, + ["fx_buff"]=7 + }, + [4]={ + ["name"]="treat", + ["buff_type"]=3, + ["formula"]=2, + ["fx_get"]=4 + }, + [5]={ + ["name"]="attack_interval_dec", + ["buff_type"]=5, + ["formula"]=1 + }, + [6]={ + ["name"]="treat_shield", + ["buff_type"]=5, + ["formula"]=2 + }, + [7]={ + ["name"]="miss_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [8]={ + ["name"]="atkp_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [9]={ + ["name"]="dmg_addition_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [10]={ + ["name"]="airborne_time", + ["buff_type"]=5, + ["formula"]=1 + }, + [11]={ + ["name"]="lie_time", + ["buff_type"]=5, + ["formula"]=1 + }, + [12]={ + ["name"]="attack_crit_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [13]={ + ["name"]="airborne_damage_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [14]={ + ["name"]="airborne_num_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [15]={ + ["name"]="double_skill", + ["buff_type"]=5, + ["formula"]=1 + }, + [16]={ + ["name"]="skill_all_damage_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [17]={ + ["name"]="skill_1_damage_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [18]={ + ["name"]="skill_2_damage_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [19]={ + ["name"]="skill_3_damage_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [20]={ + ["name"]="attack_damage_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [21]={ + ["name"]="spell_mark", + ["buff_type"]=7, + ["formula"]=1 + }, + [22]={ + ["name"]="spell_mark_explode", + ["buff_type"]=7, + ["formula"]=1 + }, + [23]={ + ["name"]="spell_mark_save", + ["buff_type"]=7, + ["formula"]=1 + }, + [24]={ + ["name"]="spell_mark_damage", + ["buff_type"]=5, + ["formula"]=1 + }, + [25]={ + ["name"]="crit_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [26]={ + ["name"]="poison_double", + ["buff_type"]=5, + ["formula"]=1 + }, + [27]={ + ["name"]="poison_superposition", + ["buff_type"]=5, + ["formula"]=1 + }, + [28]={ + ["name"]="skill_1", + ["buff_type"]=7, + ["formula"]=1 + }, + [29]={ + ["name"]="skill_2", + ["buff_type"]=7, + ["formula"]=1 + }, + [30]={ + ["name"]="skill_3", + ["buff_type"]=7, + ["formula"]=1 + }, + [31]={ + ["name"]="poison_time", + ["buff_type"]=7, + ["formula"]=1 + }, + [32]={ + ["name"]="crit_time_up", + ["buff_type"]=5, + ["formula"]=1 + }, + [33]={ + ["name"]="stun", + ["buff_type"]=6, + ["formula"]=1, + ["fx_buff"]=6 + }, + [34]={ + ["name"]="airborne", + ["buff_type"]=7, + ["formula"]=1 + }, + [35]={ + ["name"]="skill_damage_double", + ["buff_type"]=5, + ["formula"]=1 + }, + [36]={ + ["name"]="none", + ["buff_type"]=0 + } +} +local keys = { + name = { + ["hurt"]=buff[1], + ["hurt_hpp_t"]=buff[2], + ["poison"]=buff[3], + ["treat"]=buff[4], + ["attack_interval_dec"]=buff[5], + ["treat_shield"]=buff[6], + ["miss_up"]=buff[7], + ["atkp_up"]=buff[8], + ["dmg_addition_up"]=buff[9], + ["airborne_time"]=buff[10], + ["lie_time"]=buff[11], + ["attack_crit_up"]=buff[12], + ["airborne_damage_up"]=buff[13], + ["airborne_num_up"]=buff[14], + ["double_skill"]=buff[15], + ["skill_all_damage_up"]=buff[16], + ["skill_1_damage_up"]=buff[17], + ["skill_2_damage_up"]=buff[18], + ["skill_3_damage_up"]=buff[19], + ["attack_damage_up"]=buff[20], + ["spell_mark"]=buff[21], + ["spell_mark_explode"]=buff[22], + ["spell_mark_save"]=buff[23], + ["spell_mark_damage"]=buff[24], + ["crit_up"]=buff[25], + ["poison_double"]=buff[26], + ["poison_superposition"]=buff[27], + ["skill_1"]=buff[28], + ["skill_2"]=buff[29], + ["skill_3"]=buff[30], + ["poison_time"]=buff[31], + ["crit_time_up"]=buff[32], + ["stun"]=buff[33], + ["airborne"]=buff[34], + ["skill_damage_double"]=buff[35], + ["none"]=buff[36] + } +} +local config = { +data=buff, +keys=keys, +count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/buff.lua.meta b/lua/app/config/buff.lua.meta new file mode 100644 index 00000000..5c30b45b --- /dev/null +++ b/lua/app/config/buff.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b5cd0e8e5bf81d04483d5540a8cadfbb +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/bullet.lua b/lua/app/config/bullet.lua new file mode 100644 index 00000000..f50c53eb --- /dev/null +++ b/lua/app/config/bullet.lua @@ -0,0 +1,19 @@ +local bullet = { + [1]={ + ["bullet_type"]=2, + ["bullet_finish_type"]=1, + ["radius"]=300, + ["bullet_time"]=1000 + }, + [2]={ + ["bullet_type"]=2, + ["bullet_finish_type"]=2, + ["radius"]=300, + ["bullet_time"]=4000, + ["bullet_spd"]=300 + } +} +local config = { +data=bullet,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/bullet.lua.meta b/lua/app/config/bullet.lua.meta new file mode 100644 index 00000000..85f0b524 --- /dev/null +++ b/lua/app/config/bullet.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4e27f6aef92c8944b8df32280cdf71fa +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/chapter1.lua b/lua/app/config/chapter1.lua new file mode 100644 index 00000000..2547cce6 --- /dev/null +++ b/lua/app/config/chapter1.lua @@ -0,0 +1,175506 @@ +local chapter1 = { + [1]={ + ["next_chapter"]=2, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=1, + ["atk_coefficient"]={ + ["value"]=1, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=100, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=100, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [2]={ + ["next_chapter"]=3, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=2, + ["atk_coefficient"]={ + ["value"]=2, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=110, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=110, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [3]={ + ["next_chapter"]=4, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=3, + ["atk_coefficient"]={ + ["value"]=3, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=120, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=120, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [4]={ + ["next_chapter"]=5, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=4, + ["atk_coefficient"]={ + ["value"]=4, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=130, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=130, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [5]={ + ["next_chapter"]=6, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=5, + ["atk_coefficient"]={ + ["value"]=5, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=140, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=140, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [6]={ + ["next_chapter"]=7, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=6, + ["atk_coefficient"]={ + ["value"]=6, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=150, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=150, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [7]={ + ["next_chapter"]=8, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=7, + ["atk_coefficient"]={ + ["value"]=7, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=160, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=160, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [8]={ + ["next_chapter"]=9, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=8, + ["atk_coefficient"]={ + ["value"]=8, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=170, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=170, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [9]={ + ["next_chapter"]=10, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=9, + ["atk_coefficient"]={ + ["value"]=9, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=180, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=180, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=0, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=0, + ["unit"]=0 + } + }, + [10]={ + ["next_chapter"]=11, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=10, + ["atk_coefficient"]={ + ["value"]=10, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=190, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=190, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [11]={ + ["next_chapter"]=12, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=11, + ["atk_coefficient"]={ + ["value"]=12, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=200, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=200, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [12]={ + ["next_chapter"]=13, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=12, + ["atk_coefficient"]={ + ["value"]=14, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=210, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=210, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [13]={ + ["next_chapter"]=14, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=13, + ["atk_coefficient"]={ + ["value"]=16, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=220, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=220, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [14]={ + ["next_chapter"]=15, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=14, + ["atk_coefficient"]={ + ["value"]=18, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=230, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=230, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [15]={ + ["next_chapter"]=16, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=15, + ["atk_coefficient"]={ + ["value"]=20, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=240, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=240, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [16]={ + ["next_chapter"]=17, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=16, + ["atk_coefficient"]={ + ["value"]=22, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2700, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=250, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=250, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [17]={ + ["next_chapter"]=18, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=17, + ["atk_coefficient"]={ + ["value"]=24, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=260, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=260, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [18]={ + ["next_chapter"]=19, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=18, + ["atk_coefficient"]={ + ["value"]=26, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=270, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=270, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [19]={ + ["next_chapter"]=20, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=19, + ["atk_coefficient"]={ + ["value"]=28, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=280, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=280, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [20]={ + ["next_chapter"]=21, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=20, + ["atk_coefficient"]={ + ["value"]=30, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=290, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=290, + ["unit"]=0 + }, + ["chapter_drop"]=1, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [21]={ + ["next_chapter"]=22, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=21, + ["atk_coefficient"]={ + ["value"]=32, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=300, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=300, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [22]={ + ["next_chapter"]=23, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=22, + ["atk_coefficient"]={ + ["value"]=34, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=310, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=310, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [23]={ + ["next_chapter"]=24, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=23, + ["atk_coefficient"]={ + ["value"]=36, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=320, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=320, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [24]={ + ["next_chapter"]=25, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=24, + ["atk_coefficient"]={ + ["value"]=38, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=330, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=330, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [25]={ + ["next_chapter"]=26, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=25, + ["atk_coefficient"]={ + ["value"]=40, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=340, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=340, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [26]={ + ["next_chapter"]=27, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=26, + ["atk_coefficient"]={ + ["value"]=42, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=350, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=350, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [27]={ + ["next_chapter"]=28, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=27, + ["atk_coefficient"]={ + ["value"]=44, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=12600, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=360, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=360, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [28]={ + ["next_chapter"]=29, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=28, + ["atk_coefficient"]={ + ["value"]=46, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=14100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=370, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=370, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [29]={ + ["next_chapter"]=30, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=29, + ["atk_coefficient"]={ + ["value"]=48, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=15700, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=380, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=380, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [30]={ + ["next_chapter"]=31, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=30, + ["atk_coefficient"]={ + ["value"]=50, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=17300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=390, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=390, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [31]={ + ["next_chapter"]=32, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=31, + ["atk_coefficient"]={ + ["value"]=55, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=19100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=400, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=400, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [32]={ + ["next_chapter"]=33, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=32, + ["atk_coefficient"]={ + ["value"]=60, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=21000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=410, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=410, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [33]={ + ["next_chapter"]=34, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=33, + ["atk_coefficient"]={ + ["value"]=65, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=23000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=420, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=420, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [34]={ + ["next_chapter"]=35, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=34, + ["atk_coefficient"]={ + ["value"]=70, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=430, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=430, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [35]={ + ["next_chapter"]=36, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=35, + ["atk_coefficient"]={ + ["value"]=75, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=27500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=440, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=440, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [36]={ + ["next_chapter"]=37, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=36, + ["atk_coefficient"]={ + ["value"]=80, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=29900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=450, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=450, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [37]={ + ["next_chapter"]=38, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=37, + ["atk_coefficient"]={ + ["value"]=85, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=32500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=460, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=460, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [38]={ + ["next_chapter"]=39, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=38, + ["atk_coefficient"]={ + ["value"]=90, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=35200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=470, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=470, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [39]={ + ["next_chapter"]=40, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=39, + ["atk_coefficient"]={ + ["value"]=95, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=38000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=480, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=480, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=8700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=3, + ["unit"]=0 + } + }, + [40]={ + ["next_chapter"]=41, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=40, + ["atk_coefficient"]={ + ["value"]=100, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=41000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=490, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=490, + ["unit"]=0 + }, + ["chapter_drop"]=2, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [41]={ + ["next_chapter"]=42, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=41, + ["atk_coefficient"]={ + ["value"]=120, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=44200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=500, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12300, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=500, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [42]={ + ["next_chapter"]=43, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=42, + ["atk_coefficient"]={ + ["value"]=140, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=47500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=510, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12810, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=510, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [43]={ + ["next_chapter"]=44, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=43, + ["atk_coefficient"]={ + ["value"]=160, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=50900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=520, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=520, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [44]={ + ["next_chapter"]=45, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=44, + ["atk_coefficient"]={ + ["value"]=180, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=54600, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=530, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=530, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [45]={ + ["next_chapter"]=46, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=45, + ["atk_coefficient"]={ + ["value"]=200, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=58400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=540, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14400, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=540, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [46]={ + ["next_chapter"]=47, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=46, + ["atk_coefficient"]={ + ["value"]=220, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=62300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=550, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14950, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=550, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [47]={ + ["next_chapter"]=48, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=47, + ["atk_coefficient"]={ + ["value"]=240, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=66500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=560, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=560, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [48]={ + ["next_chapter"]=49, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=48, + ["atk_coefficient"]={ + ["value"]=260, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=70800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=570, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=570, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [49]={ + ["next_chapter"]=50, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=49, + ["atk_coefficient"]={ + ["value"]=280, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=75300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=580, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16660, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=580, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=4, + ["unit"]=0 + } + }, + [50]={ + ["next_chapter"]=51, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=50, + ["atk_coefficient"]={ + ["value"]=300, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=590, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17250, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=590, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [51]={ + ["next_chapter"]=52, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=84900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=600, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=600, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [52]={ + ["next_chapter"]=53, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=400, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=610, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=610, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [53]={ + ["next_chapter"]=54, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=95300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=620, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=620, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [54]={ + ["next_chapter"]=55, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=500, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=100800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=630, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19710, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=630, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [55]={ + ["next_chapter"]=56, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=550, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=106500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=640, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=640, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [56]={ + ["next_chapter"]=57, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=112400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=650, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21000, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=650, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [57]={ + ["next_chapter"]=58, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=650, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=118600, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=660, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21660, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=660, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [58]={ + ["next_chapter"]=59, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=700, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=124900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=670, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=670, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [59]={ + ["next_chapter"]=60, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=750, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=131500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=680, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=680, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=19500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [60]={ + ["next_chapter"]=61, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=800, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=138300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=690, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23700, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=690, + ["unit"]=0 + }, + ["chapter_drop"]=3, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [61]={ + ["next_chapter"]=62, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=900, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=145300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=700, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24400, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=700, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [62]={ + ["next_chapter"]=63, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1000, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=152600, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=710, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25110, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=710, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [63]={ + ["next_chapter"]=64, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1100, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=160100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=720, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=720, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [64]={ + ["next_chapter"]=65, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1200, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=167800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=730, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26560, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=730, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [65]={ + ["next_chapter"]=66, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1300, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=175800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=740, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27300, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=740, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [66]={ + ["next_chapter"]=67, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1400, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=184000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=750, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28050, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=750, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [67]={ + ["next_chapter"]=68, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1500, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=192500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=760, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28810, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=760, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [68]={ + ["next_chapter"]=69, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1600, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=201300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=770, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=770, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [69]={ + ["next_chapter"]=70, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1700, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=210300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=780, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=780, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=26400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [70]={ + ["next_chapter"]=71, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=219600, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=790, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31150, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=790, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [71]={ + ["next_chapter"]=72, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1950, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=229100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=800, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31950, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=800, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [72]={ + ["next_chapter"]=73, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2100, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=238900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=810, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32760, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=810, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [73]={ + ["next_chapter"]=74, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2250, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=249000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=820, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=820, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [74]={ + ["next_chapter"]=75, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2400, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=259400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=830, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34410, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=830, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [75]={ + ["next_chapter"]=76, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2550, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=270000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=840, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35250, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=840, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [76]={ + ["next_chapter"]=77, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2700, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=281000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=850, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=850, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [77]={ + ["next_chapter"]=78, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2850, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=292200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=860, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=860, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [78]={ + ["next_chapter"]=79, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3000, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=303800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=870, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=870, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [79]={ + ["next_chapter"]=80, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3150, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=315600, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=880, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38710, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=880, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=7, + ["unit"]=0 + } + }, + [80]={ + ["next_chapter"]=81, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=3300, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=327700, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=890, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=890, + ["unit"]=0 + }, + ["chapter_drop"]=4, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [81]={ + ["next_chapter"]=82, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3402, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=340200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=900, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=900, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [82]={ + ["next_chapter"]=83, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3529, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=352900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=910, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41410, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=910, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [83]={ + ["next_chapter"]=84, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3660, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=366000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=920, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=920, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [84]={ + ["next_chapter"]=85, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3794, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=379400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=930, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=930, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [85]={ + ["next_chapter"]=86, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3931, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=393100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=940, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=940, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [86]={ + ["next_chapter"]=87, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4071, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=407100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=950, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45150, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=950, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [87]={ + ["next_chapter"]=88, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4215, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=421500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=960, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46110, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=960, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [88]={ + ["next_chapter"]=89, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4362, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=436200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=970, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=970, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [89]={ + ["next_chapter"]=90, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4512, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=451200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=980, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=980, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=8, + ["unit"]=0 + } + }, + [90]={ + ["next_chapter"]=91, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=4666, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=466600, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=990, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49050, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=990, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [91]={ + ["next_chapter"]=92, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4823, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=482300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50050, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1000, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [92]={ + ["next_chapter"]=93, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4984, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=498400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1010, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1010, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [93]={ + ["next_chapter"]=94, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5148, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=514800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1020, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1020, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [94]={ + ["next_chapter"]=95, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5316, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=531600, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1030, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53110, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1030, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [95]={ + ["next_chapter"]=96, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5488, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=548800, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1040, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54150, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1040, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [96]={ + ["next_chapter"]=97, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5663, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=566300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1050, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1050, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [97]={ + ["next_chapter"]=98, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5842, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=584200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1060, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [98]={ + ["next_chapter"]=99, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6024, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=602400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1070, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1070, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [99]={ + ["next_chapter"]=100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6210, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=621000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1080, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58410, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1080, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=53100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=9, + ["unit"]=0 + } + }, + [100]={ + ["next_chapter"]=101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=6400, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=640000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1090, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=0 + }, + ["chapter_drop"]=5, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [101]={ + ["next_chapter"]=102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6594, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=659400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1100, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1100, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [102]={ + ["next_chapter"]=103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6792, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=679200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1110, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61710, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1110, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [103]={ + ["next_chapter"]=104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6994, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=699400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1120, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [104]={ + ["next_chapter"]=105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7200, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=720000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1130, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1130, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [105]={ + ["next_chapter"]=106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7409, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=740900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1140, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [106]={ + ["next_chapter"]=107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7623, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=762300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1150, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66250, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1150, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [107]={ + ["next_chapter"]=108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7841, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=784100, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1160, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67410, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1160, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [108]={ + ["next_chapter"]=109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8063, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=806300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1170, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1170, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [109]={ + ["next_chapter"]=110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8289, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=828900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1180, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69760, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=64000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=10, + ["unit"]=0 + } + }, + [110]={ + ["next_chapter"]=111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=8519, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=851900, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1190, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70950, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1190, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [111]={ + ["next_chapter"]=112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8753, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=875300, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1200, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72150, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1200, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [112]={ + ["next_chapter"]=113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8992, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=899200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1210, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [113]={ + ["next_chapter"]=114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9235, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=923500, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1220, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1220, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [114]={ + ["next_chapter"]=115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9482, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=948200, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1230, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75810, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1230, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [115]={ + ["next_chapter"]=116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9734, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=973400, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1240, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77050, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [116]={ + ["next_chapter"]=117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9990, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=999000, + ["unit"]=0 + }, + ["gold_reward"]={ + ["value"]=1250, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78300, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [117]={ + ["next_chapter"]=118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10251, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1025, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1260, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79560, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1260, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [118]={ + ["next_chapter"]=119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10516, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1270, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1270, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [119]={ + ["next_chapter"]=120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10786, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1079, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1280, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82110, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1280, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=75900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=11, + ["unit"]=0 + } + }, + [120]={ + ["next_chapter"]=121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=11060, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1106, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1290, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83400, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1290, + ["unit"]=0 + }, + ["chapter_drop"]=6, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [121]={ + ["next_chapter"]=122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11338, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1134, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1300, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84700, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1300, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [122]={ + ["next_chapter"]=123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11622, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1162, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1310, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1310, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [123]={ + ["next_chapter"]=124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11910, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1191, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1320, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1320, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [124]={ + ["next_chapter"]=125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12203, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1220, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1330, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88660, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1330, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [125]={ + ["next_chapter"]=126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12500, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1250, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1340, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [126]={ + ["next_chapter"]=127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12803, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1280, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1350, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1350, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [127]={ + ["next_chapter"]=128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13110, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1311, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1360, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92710, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1360, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [128]={ + ["next_chapter"]=129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13422, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1342, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1370, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [129]={ + ["next_chapter"]=130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13739, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1374, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1380, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1380, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=88800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [130]={ + ["next_chapter"]=131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=14061, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1406, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1390, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [131]={ + ["next_chapter"]=132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14388, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1439, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1400, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98250, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1400, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [132]={ + ["next_chapter"]=133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14720, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1472, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1410, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99660, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1410, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [133]={ + ["next_chapter"]=134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15057, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1506, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1420, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1420, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [134]={ + ["next_chapter"]=135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15400, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1540, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1430, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1430, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [135]={ + ["next_chapter"]=136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15747, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1575, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1440, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103950, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [136]={ + ["next_chapter"]=137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16099, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1610, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1450, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105400, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1450, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [137]={ + ["next_chapter"]=138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16457, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1646, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1460, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1460, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [138]={ + ["next_chapter"]=139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16820, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1682, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1470, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1470, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [139]={ + ["next_chapter"]=140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17188, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1719, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1480, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109810, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=102700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=13, + ["unit"]=0 + } + }, + [140]={ + ["next_chapter"]=141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=17562, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1756, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1490, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111300, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=0 + }, + ["chapter_drop"]=7, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [141]={ + ["next_chapter"]=142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17941, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1794, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1500, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1500, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [142]={ + ["next_chapter"]=143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18326, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1833, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1510, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1510, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [143]={ + ["next_chapter"]=144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18715, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1872, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1520, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [144]={ + ["next_chapter"]=145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19111, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1911, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1530, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1530, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [145]={ + ["next_chapter"]=146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19512, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1951, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1540, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [146]={ + ["next_chapter"]=147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19918, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=1992, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1550, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1550, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [147]={ + ["next_chapter"]=148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20330, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2033, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1560, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1560, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [148]={ + ["next_chapter"]=149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20748, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2075, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1570, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1570, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [149]={ + ["next_chapter"]=150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21171, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2117, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1580, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1580, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=117600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=14, + ["unit"]=0 + } + }, + [150]={ + ["next_chapter"]=151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=21600, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2160, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1590, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1590, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [151]={ + ["next_chapter"]=152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22035, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2204, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1600, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1600, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [152]={ + ["next_chapter"]=153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22476, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2248, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1610, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1610, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [153]={ + ["next_chapter"]=154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22923, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2292, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1620, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1620, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [154]={ + ["next_chapter"]=155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23375, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2338, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1630, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1630, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [155]={ + ["next_chapter"]=156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23833, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2383, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1640, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1640, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [156]={ + ["next_chapter"]=157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24298, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2430, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1650, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1650, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [157]={ + ["next_chapter"]=158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24768, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2477, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1660, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1660, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [158]={ + ["next_chapter"]=159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25244, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2524, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1670, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1670, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [159]={ + ["next_chapter"]=160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25726, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2573, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1680, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1680, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=133500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=15, + ["unit"]=0 + } + }, + [160]={ + ["next_chapter"]=161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=26215, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2622, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1690, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1690, + ["unit"]=0 + }, + ["chapter_drop"]=8, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [161]={ + ["next_chapter"]=162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26709, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2671, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1700, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1700, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [162]={ + ["next_chapter"]=163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27210, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2721, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1710, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1710, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [163]={ + ["next_chapter"]=164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27717, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2772, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1720, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1720, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [164]={ + ["next_chapter"]=165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28231, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2823, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1730, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1730, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [165]={ + ["next_chapter"]=166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28750, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2875, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1740, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1740, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [166]={ + ["next_chapter"]=167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29276, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2928, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1750, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1750, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [167]={ + ["next_chapter"]=168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29808, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=2981, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1760, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1760, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [168]={ + ["next_chapter"]=169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30347, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3035, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1770, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1770, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [169]={ + ["next_chapter"]=170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30892, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3089, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1780, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1780, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=150400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=16, + ["unit"]=0 + } + }, + [170]={ + ["next_chapter"]=171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=31444, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3144, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1790, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1790, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [171]={ + ["next_chapter"]=172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32002, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3200, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1800, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [172]={ + ["next_chapter"]=173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32567, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3257, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1810, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1810, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [173]={ + ["next_chapter"]=174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33138, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3314, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1820, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [174]={ + ["next_chapter"]=175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33716, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3372, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1830, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1830, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [175]={ + ["next_chapter"]=176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3430, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1840, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1840, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [176]={ + ["next_chapter"]=177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34892, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3489, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1850, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1850, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [177]={ + ["next_chapter"]=178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35490, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3549, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1860, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1860, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [178]={ + ["next_chapter"]=179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36095, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3610, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1870, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1870, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [179]={ + ["next_chapter"]=180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36707, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3671, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1880, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1880, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=168300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=17, + ["unit"]=0 + } + }, + [180]={ + ["next_chapter"]=181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=37325, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3733, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1890, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1890, + ["unit"]=0 + }, + ["chapter_drop"]=9, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [181]={ + ["next_chapter"]=182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37951, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3795, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181000, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1900, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [182]={ + ["next_chapter"]=183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38583, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3858, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1910, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1910, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [183]={ + ["next_chapter"]=184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39223, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3922, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1920, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1920, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [184]={ + ["next_chapter"]=185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39869, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=3987, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1930, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186760, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1930, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [185]={ + ["next_chapter"]=186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40523, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4052, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1940, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188700, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1940, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [186]={ + ["next_chapter"]=187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41184, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4118, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1950, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1950, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [187]={ + ["next_chapter"]=188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41851, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4185, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1960, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [188]={ + ["next_chapter"]=189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42526, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4253, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1970, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1970, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [189]={ + ["next_chapter"]=190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43209, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1980, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196560, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1980, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=187200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=18, + ["unit"]=0 + } + }, + [190]={ + ["next_chapter"]=191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=43898, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4390, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=1990, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=1990, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [191]={ + ["next_chapter"]=192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44595, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4460, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2000, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [192]={ + ["next_chapter"]=193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45299, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4530, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2010, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202560, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2010, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [193]={ + ["next_chapter"]=194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46010, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4601, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2020, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2020, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [194]={ + ["next_chapter"]=195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46729, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4673, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2030, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2030, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [195]={ + ["next_chapter"]=196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47456, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4746, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2040, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2040, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [196]={ + ["next_chapter"]=197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48190, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4819, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2050, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210700, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2050, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [197]={ + ["next_chapter"]=198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48931, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4893, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2060, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212760, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [198]={ + ["next_chapter"]=199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49680, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=4968, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2070, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2070, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [199]={ + ["next_chapter"]=200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50436, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5044, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2080, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2080, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=207100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=19, + ["unit"]=0 + } + }, + [200]={ + ["next_chapter"]=201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=51200, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5120, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2090, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219000, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2090, + ["unit"]=0 + }, + ["chapter_drop"]=10, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [201]={ + ["next_chapter"]=202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51972, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5197, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2100, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2100, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [202]={ + ["next_chapter"]=203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52752, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5275, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2110, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2110, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [203]={ + ["next_chapter"]=204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53539, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5354, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2120, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2120, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [204]={ + ["next_chapter"]=205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54334, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5433, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2130, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2130, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [205]={ + ["next_chapter"]=206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55137, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5514, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2140, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2140, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [206]={ + ["next_chapter"]=207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55948, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5595, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2150, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2150, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [207]={ + ["next_chapter"]=208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56767, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5677, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2160, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2160, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [208]={ + ["next_chapter"]=209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57594, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5759, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2170, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2170, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [209]={ + ["next_chapter"]=210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58428, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5843, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2180, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2180, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=20, + ["unit"]=0 + } + }, + [210]={ + ["next_chapter"]=211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=59271, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=5927, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2190, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2190, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [211]={ + ["next_chapter"]=212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60122, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6012, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2200, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2200, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [212]={ + ["next_chapter"]=213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60981, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6098, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2210, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2210, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [213]={ + ["next_chapter"]=214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61848, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6185, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2220, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2220, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [214]={ + ["next_chapter"]=215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62723, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6272, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2230, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2230, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [215]={ + ["next_chapter"]=216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63606, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6361, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2240, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2240, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [216]={ + ["next_chapter"]=217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64498, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6450, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2250, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2250, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [217]={ + ["next_chapter"]=218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65398, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6540, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2260, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2260, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [218]={ + ["next_chapter"]=219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66306, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6631, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2270, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2270, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [219]={ + ["next_chapter"]=220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67223, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6722, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2280, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2280, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=249900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=21, + ["unit"]=0 + } + }, + [220]={ + ["next_chapter"]=221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=68148, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6815, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2290, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2290, + ["unit"]=0 + }, + ["chapter_drop"]=11, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [221]={ + ["next_chapter"]=222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69081, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=6908, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2300, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2300, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [222]={ + ["next_chapter"]=223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70023, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7002, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2310, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2310, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [223]={ + ["next_chapter"]=224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70974, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7097, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2320, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2320, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [224]={ + ["next_chapter"]=225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71933, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7193, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2330, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2330, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [225]={ + ["next_chapter"]=226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72900, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7290, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2340, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2340, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [226]={ + ["next_chapter"]=227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73877, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7388, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2350, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=276850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2350, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [227]={ + ["next_chapter"]=228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74862, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7486, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2360, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2360, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [228]={ + ["next_chapter"]=229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75856, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7586, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2370, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2370, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [229]={ + ["next_chapter"]=230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76858, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7686, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2380, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2380, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=272800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=22, + ["unit"]=0 + } + }, + [230]={ + ["next_chapter"]=231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=77869, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7787, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2390, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2390, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [231]={ + ["next_chapter"]=232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78889, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7889, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2400, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2400, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [232]={ + ["next_chapter"]=233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79918, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=7992, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2410, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2410, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [233]={ + ["next_chapter"]=234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80956, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8096, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2420, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2420, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [234]={ + ["next_chapter"]=235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82003, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8200, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2430, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2430, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [235]={ + ["next_chapter"]=236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83059, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8306, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2440, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2440, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [236]={ + ["next_chapter"]=237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84124, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8412, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2450, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2450, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [237]={ + ["next_chapter"]=238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85198, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8520, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2460, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=303360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2460, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [238]={ + ["next_chapter"]=239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86281, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8628, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2470, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2470, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [239]={ + ["next_chapter"]=240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87373, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8737, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2480, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2480, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=296700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=23, + ["unit"]=0 + } + }, + [240]={ + ["next_chapter"]=241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=88474, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8847, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2490, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2490, + ["unit"]=0 + }, + ["chapter_drop"]=12, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [241]={ + ["next_chapter"]=242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89585, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=8959, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2500, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313300, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [242]={ + ["next_chapter"]=243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90704, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=9070, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2510, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=315810, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2510, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [243]={ + ["next_chapter"]=244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91834, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=9183, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2520, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=318330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2520, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [244]={ + ["next_chapter"]=245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92972, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=9297, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2530, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2530, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [245]={ + ["next_chapter"]=246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94120, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=9412, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2540, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323400, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2540, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [246]={ + ["next_chapter"]=247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95277, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=9528, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2550, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325950, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2550, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [247]={ + ["next_chapter"]=248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96444, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=9644, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2560, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2560, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [248]={ + ["next_chapter"]=249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97620, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=9762, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2570, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2570, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [249]={ + ["next_chapter"]=250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98805, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=9881, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2580, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=333660, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2580, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=321600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=24, + ["unit"]=0 + } + }, + [250]={ + ["next_chapter"]=251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11000, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2590, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=336250, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2590, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [251]={ + ["next_chapter"]=252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100007, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11001, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2600, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2600, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [252]={ + ["next_chapter"]=253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100052, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11006, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2610, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=341460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2610, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [253]={ + ["next_chapter"]=254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100176, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11019, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2620, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=344080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2620, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [254]={ + ["next_chapter"]=255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100416, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11046, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2630, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346710, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2630, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [255]={ + ["next_chapter"]=256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100812, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11089, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2640, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2640, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [256]={ + ["next_chapter"]=257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101402, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11154, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2650, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=352000, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2650, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [257]={ + ["next_chapter"]=258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102226, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11245, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2660, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354660, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2660, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [258]={ + ["next_chapter"]=259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103323, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11366, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2670, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=357330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2670, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [259]={ + ["next_chapter"]=260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104731, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11520, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2680, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2680, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=347500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=25, + ["unit"]=0 + } + }, + [260]={ + ["next_chapter"]=261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=106489, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11714, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2690, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362700, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2690, + ["unit"]=0 + }, + ["chapter_drop"]=13, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [261]={ + ["next_chapter"]=262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108637, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=11950, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2700, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=365400, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2700, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [262]={ + ["next_chapter"]=263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111213, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=12233, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2710, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=368110, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2710, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [263]={ + ["next_chapter"]=264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114257, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=12568, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2720, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2720, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [264]={ + ["next_chapter"]=265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117806, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=12959, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2730, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=373560, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2730, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [265]={ + ["next_chapter"]=266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121900, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=13409, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2740, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=376300, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2740, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [266]={ + ["next_chapter"]=267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126579, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=13924, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2750, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=379050, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2750, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [267]={ + ["next_chapter"]=268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131880, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=14507, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2760, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=381810, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2760, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [268]={ + ["next_chapter"]=269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137844, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=15163, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2770, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=384580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2770, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [269]={ + ["next_chapter"]=270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144508, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=15896, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2780, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=387360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2780, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=374400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=26, + ["unit"]=0 + } + }, + [270]={ + ["next_chapter"]=271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=151912, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=16710, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2790, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390150, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2790, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [271]={ + ["next_chapter"]=272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160094, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=17610, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2800, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=392950, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2800, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [272]={ + ["next_chapter"]=273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169094, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=18600, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2810, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=395760, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2810, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [273]={ + ["next_chapter"]=274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=178951, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=19685, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2820, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2820, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [274]={ + ["next_chapter"]=275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=189703, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=20867, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2830, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=401410, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2830, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [275]={ + ["next_chapter"]=276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=201389, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=22153, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2840, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=404250, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2840, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [276]={ + ["next_chapter"]=277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=214049, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=23545, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2850, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=407100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2850, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [277]={ + ["next_chapter"]=278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=227721, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=25049, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2860, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=409960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2860, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [278]={ + ["next_chapter"]=279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=242445, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=26669, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2870, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=412830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2870, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [279]={ + ["next_chapter"]=280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=258258, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=28408, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2880, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=415710, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2880, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=402300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=27, + ["unit"]=0 + } + }, + [280]={ + ["next_chapter"]=281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=275200, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=30272, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2890, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2890, + ["unit"]=0 + }, + ["chapter_drop"]=14, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [281]={ + ["next_chapter"]=282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=293311, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=32264, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2900, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=421500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2900, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [282]={ + ["next_chapter"]=283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=312628, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=34389, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2910, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=424410, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2910, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [283]={ + ["next_chapter"]=284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=333192, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=36651, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2920, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=427330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2920, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [284]={ + ["next_chapter"]=285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355040, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=39054, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2930, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=430260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2930, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [285]={ + ["next_chapter"]=286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=378212, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=41603, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2940, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=433200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2940, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [286]={ + ["next_chapter"]=287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=402746, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=44302, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2950, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436150, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2950, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [287]={ + ["next_chapter"]=288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=428682, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=47155, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2960, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=439110, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2960, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [288]={ + ["next_chapter"]=289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=456059, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=50166, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2970, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=442080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2970, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [289]={ + ["next_chapter"]=290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=484915, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=53341, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2980, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=445060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2980, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=431200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=28, + ["unit"]=0 + } + }, + [290]={ + ["next_chapter"]=291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=515289, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=56682, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=2990, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=448050, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=2990, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [291]={ + ["next_chapter"]=292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=547221, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=60194, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451050, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3000, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [292]={ + ["next_chapter"]=293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=580749, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=63882, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3010, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=454060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3010, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [293]={ + ["next_chapter"]=294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=615913, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=67750, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3020, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=457080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3020, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [294]={ + ["next_chapter"]=295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=652750, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=71803, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3030, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=460110, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3030, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [295]={ + ["next_chapter"]=296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=691300, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=76043, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3040, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=463150, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3040, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [296]={ + ["next_chapter"]=297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=731603, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=80476, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3050, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3050, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [297]={ + ["next_chapter"]=298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=773696, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=85107, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3060, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=469260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3060, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [298]={ + ["next_chapter"]=299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=817620, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=89938, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3070, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=472330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3070, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [299]={ + ["next_chapter"]=300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=863412, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=94975, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3080, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=475410, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3080, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=461100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=29, + ["unit"]=0 + } + }, + [300]={ + ["next_chapter"]=301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=911112, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=100222, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3090, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=478500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3090, + ["unit"]=0 + }, + ["chapter_drop"]=15, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [301]={ + ["next_chapter"]=302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=960758, + ["unit"]=0 + }, + ["hp_coefficient"]={ + ["value"]=105683, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3100, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3100, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [302]={ + ["next_chapter"]=303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1012, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=111363, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3110, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=484710, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3110, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [303]={ + ["next_chapter"]=304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1066, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=117265, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3120, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=487830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3120, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [304]={ + ["next_chapter"]=305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=123394, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3130, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=490960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3130, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [305]={ + ["next_chapter"]=306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1180, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=129755, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3140, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=494100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3140, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [306]={ + ["next_chapter"]=307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1240, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=136351, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3150, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=497250, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3150, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [307]={ + ["next_chapter"]=308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1302, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=143187, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3160, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=500410, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [308]={ + ["next_chapter"]=309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1366, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=150267, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3170, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=503580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3170, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [309]={ + ["next_chapter"]=310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1433, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=157595, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3180, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506760, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3180, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=30, + ["unit"]=0 + } + }, + [310]={ + ["next_chapter"]=311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1502, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=165176, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3190, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=509950, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3190, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [311]={ + ["next_chapter"]=312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1573, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=173014, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3200, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=513150, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3200, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [312]={ + ["next_chapter"]=313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1646, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=181113, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3210, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3210, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [313]={ + ["next_chapter"]=314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1723, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=189478, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3220, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=519580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3220, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [314]={ + ["next_chapter"]=315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=198113, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3230, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=522810, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3230, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [315]={ + ["next_chapter"]=316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1882, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=207021, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3240, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=526050, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3240, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [316]={ + ["next_chapter"]=317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1966, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=216208, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3250, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=529300, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3250, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [317]={ + ["next_chapter"]=318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2052, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=225678, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3260, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=532560, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3260, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [318]={ + ["next_chapter"]=319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2140, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=235435, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3270, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=535830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3270, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [319]={ + ["next_chapter"]=320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2232, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=245482, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3280, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=539110, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3280, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=523900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=31, + ["unit"]=0 + } + }, + [320]={ + ["next_chapter"]=321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=2326, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=255826, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3290, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=542400, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3290, + ["unit"]=0 + }, + ["chapter_drop"]=16, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [321]={ + ["next_chapter"]=322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2422, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=266469, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3300, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=545700, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3300, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [322]={ + ["next_chapter"]=323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2522, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=277416, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3310, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=549010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3310, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [323]={ + ["next_chapter"]=324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2624, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=288672, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3320, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3320, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [324]={ + ["next_chapter"]=325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2729, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=300240, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3330, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=555660, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3330, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [325]={ + ["next_chapter"]=326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2838, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=312125, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3340, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=559000, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3340, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [326]={ + ["next_chapter"]=327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2948, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=324331, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3350, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=562350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3350, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [327]={ + ["next_chapter"]=328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3062, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=336863, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3360, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=565710, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3360, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [328]={ + ["next_chapter"]=329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3179, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=349725, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3370, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=569080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3370, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [329]={ + ["next_chapter"]=330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3299, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=362920, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3380, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=572460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3380, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=556800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=32, + ["unit"]=0 + } + }, + [330]={ + ["next_chapter"]=331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=3422, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=376454, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3390, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=575850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3390, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [331]={ + ["next_chapter"]=332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3548, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=390331, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3400, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=579250, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3400, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [332]={ + ["next_chapter"]=333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3678, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=404554, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3410, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=582660, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3410, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [333]={ + ["next_chapter"]=334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3810, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=419129, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3420, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=586080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3420, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [334]={ + ["next_chapter"]=335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3946, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=434059, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3430, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=589510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3430, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [335]={ + ["next_chapter"]=336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4085, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=449349, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3440, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=592950, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3440, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [336]={ + ["next_chapter"]=337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4227, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=465003, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3450, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=596400, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3450, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [337]={ + ["next_chapter"]=338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4373, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=481025, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3460, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=599860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3460, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [338]={ + ["next_chapter"]=339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4522, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=497420, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3470, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=603330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3470, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [339]={ + ["next_chapter"]=340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4674, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=514191, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3480, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=606810, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3480, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=590700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=33, + ["unit"]=0 + } + }, + [340]={ + ["next_chapter"]=341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=4830, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=531344, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3490, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=610300, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3490, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [341]={ + ["next_chapter"]=342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4990, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=548882, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3500, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=613800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3500, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [342]={ + ["next_chapter"]=343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5153, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=566810, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3510, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=617310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3510, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [343]={ + ["next_chapter"]=344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5319, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=585132, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3520, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=620830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3520, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [344]={ + ["next_chapter"]=345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5490, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=603852, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3530, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=624360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3530, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [345]={ + ["next_chapter"]=346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5663, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=622975, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3540, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=627900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3540, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [346]={ + ["next_chapter"]=347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5841, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=642505, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3550, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=631450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3550, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [347]={ + ["next_chapter"]=348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6022, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=662446, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3560, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=635010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3560, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [348]={ + ["next_chapter"]=349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6207, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=682802, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3570, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=638580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3570, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [349]={ + ["next_chapter"]=350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6396, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=703578, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3580, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=642160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3580, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=625600, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=34, + ["unit"]=0 + } + }, + [350]={ + ["next_chapter"]=351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=6589, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=724778, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3590, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=645750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3590, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [351]={ + ["next_chapter"]=352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6786, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=746406, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3600, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=649350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3600, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [352]={ + ["next_chapter"]=353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6986, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=768467, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3610, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=652960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3610, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [353]={ + ["next_chapter"]=354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7191, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=790964, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3620, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=656580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3620, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [354]={ + ["next_chapter"]=355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7399, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=813903, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3630, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=660210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3630, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [355]={ + ["next_chapter"]=356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7612, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=837287, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3640, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=663850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3640, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [356]={ + ["next_chapter"]=357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7828, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=861121, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3650, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=667500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3650, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [357]={ + ["next_chapter"]=358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8049, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=885408, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3660, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=671160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3660, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [358]={ + ["next_chapter"]=359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8274, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=910155, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3670, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=674830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3670, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [359]={ + ["next_chapter"]=360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8503, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=935363, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3680, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=678510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3680, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=661500, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=35, + ["unit"]=0 + } + }, + [360]={ + ["next_chapter"]=361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=8737, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=961038, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3690, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3690, + ["unit"]=0 + }, + ["chapter_drop"]=17, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [361]={ + ["next_chapter"]=362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8974, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=987185, + ["unit"]=1 + }, + ["gold_reward"]={ + ["value"]=3700, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=685900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3700, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [362]={ + ["next_chapter"]=363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9216, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1014, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3710, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=689610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3710, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [363]={ + ["next_chapter"]=364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9463, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1041, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3720, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=693330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3720, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [364]={ + ["next_chapter"]=365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9714, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1068, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3730, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=697060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3730, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [365]={ + ["next_chapter"]=366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9969, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1097, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3740, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=700800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3740, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [366]={ + ["next_chapter"]=367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10228, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1125, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3750, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=704550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3750, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [367]={ + ["next_chapter"]=368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10493, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1154, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3760, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=708310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3760, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [368]={ + ["next_chapter"]=369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10761, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1184, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3770, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=712080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3770, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [369]={ + ["next_chapter"]=370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11035, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1214, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3780, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=715860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3780, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=698400, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [370]={ + ["next_chapter"]=371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=11313, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1244, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3790, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=719650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3790, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [371]={ + ["next_chapter"]=372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11595, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1276, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3800, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=723450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3800, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [372]={ + ["next_chapter"]=373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11883, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1307, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3810, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=727260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3810, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [373]={ + ["next_chapter"]=374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12175, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1339, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3820, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=731080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3820, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [374]={ + ["next_chapter"]=375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12472, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1372, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3830, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=734910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3830, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [375]={ + ["next_chapter"]=376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12774, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1405, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3840, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=738750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3840, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [376]={ + ["next_chapter"]=377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13080, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1439, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3850, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=742600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3850, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [377]={ + ["next_chapter"]=378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13392, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1473, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3860, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=746460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3860, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [378]={ + ["next_chapter"]=379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13708, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1508, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3870, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=750330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3870, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [379]={ + ["next_chapter"]=380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14030, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1543, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3880, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=754210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3880, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=736300, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=37, + ["unit"]=0 + } + }, + [380]={ + ["next_chapter"]=381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=14356, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1579, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3890, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=758100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3890, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [381]={ + ["next_chapter"]=382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14688, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1616, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3900, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=762000, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3900, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [382]={ + ["next_chapter"]=383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15024, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1653, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3910, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=765910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3910, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [383]={ + ["next_chapter"]=384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15366, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1690, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3920, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=769830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3920, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [384]={ + ["next_chapter"]=385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15713, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1728, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3930, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=773760, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3930, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [385]={ + ["next_chapter"]=386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16065, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1767, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3940, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=777700, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3940, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [386]={ + ["next_chapter"]=387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16423, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1806, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3950, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=781650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3950, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [387]={ + ["next_chapter"]=388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16785, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1846, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3960, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=785610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3960, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [388]={ + ["next_chapter"]=389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17153, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1887, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3970, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=789580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3970, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [389]={ + ["next_chapter"]=390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17527, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1928, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3980, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=793560, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3980, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=775200, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=38, + ["unit"]=0 + } + }, + [390]={ + ["next_chapter"]=391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=17906, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=1970, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=3990, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=797550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=3990, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [391]={ + ["next_chapter"]=392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18290, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2012, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=801550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4000, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [392]={ + ["next_chapter"]=393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18680, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2055, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4010, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=805560, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4010, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [393]={ + ["next_chapter"]=394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19075, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2098, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4020, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=809580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4020, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [394]={ + ["next_chapter"]=395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19476, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2142, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4030, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=813610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4030, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [395]={ + ["next_chapter"]=396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19882, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2187, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4040, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=817650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4040, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [396]={ + ["next_chapter"]=397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20294, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2232, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4050, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=821700, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4050, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [397]={ + ["next_chapter"]=398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20712, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2278, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4060, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=825760, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4060, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [398]={ + ["next_chapter"]=399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21136, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2325, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4070, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=829830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4070, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [399]={ + ["next_chapter"]=400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21565, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2372, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4080, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=833910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4080, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=815100, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=39, + ["unit"]=0 + } + }, + [400]={ + ["next_chapter"]=401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=22000, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2640, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4090, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=838000, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4090, + ["unit"]=0 + }, + ["chapter_drop"]=18, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [401]={ + ["next_chapter"]=402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22001, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2640, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4100, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=842100, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4100, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [402]={ + ["next_chapter"]=403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22007, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2641, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4110, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=846210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4110, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [403]={ + ["next_chapter"]=404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22024, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2643, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4120, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=850330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4120, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [404]={ + ["next_chapter"]=405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22056, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2647, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4130, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=854460, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4130, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [405]={ + ["next_chapter"]=406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22110, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2653, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4140, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=858600, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4140, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [406]={ + ["next_chapter"]=407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22190, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2663, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4150, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=862750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4150, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [407]={ + ["next_chapter"]=408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22301, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2676, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4160, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=866910, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4160, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [408]={ + ["next_chapter"]=409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22450, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2694, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4170, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=871080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4170, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [409]={ + ["next_chapter"]=410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22640, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2717, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4180, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=875260, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4180, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=40, + ["unit"]=0 + } + }, + [410]={ + ["next_chapter"]=411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=22878, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2745, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4190, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=879450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4190, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [411]={ + ["next_chapter"]=412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23169, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2780, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4200, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=883650, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4200, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [412]={ + ["next_chapter"]=413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23517, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2822, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4210, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=887860, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4210, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [413]={ + ["next_chapter"]=414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23929, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2871, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4220, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=892080, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4220, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [414]={ + ["next_chapter"]=415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24409, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2929, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4230, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=896310, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4230, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [415]={ + ["next_chapter"]=416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24963, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=2996, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4240, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=900550, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4240, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [416]={ + ["next_chapter"]=417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25596, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=3072, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4250, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=904800, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4250, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [417]={ + ["next_chapter"]=418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26314, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=3158, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4260, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=909060, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4260, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [418]={ + ["next_chapter"]=419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27120, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=3254, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4270, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=913330, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4270, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [419]={ + ["next_chapter"]=420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28022, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=3363, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4280, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=917610, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4280, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=897900, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=41, + ["unit"]=0 + } + }, + [420]={ + ["next_chapter"]=421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=29024, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=3483, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4290, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=921900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4290, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [421]={ + ["next_chapter"]=422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30131, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=3616, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4300, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=926200, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4300, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [422]={ + ["next_chapter"]=423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31349, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=3762, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4310, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=930510, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4310, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [423]={ + ["next_chapter"]=424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32683, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=3922, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4320, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=934830, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4320, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [424]={ + ["next_chapter"]=425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34137, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=4096, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4330, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=939160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4330, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [425]={ + ["next_chapter"]=426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35719, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=4286, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4340, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=943500, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4340, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [426]={ + ["next_chapter"]=427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37432, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=4492, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4350, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=947850, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4350, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [427]={ + ["next_chapter"]=428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39282, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=4714, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4360, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=952210, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4360, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [428]={ + ["next_chapter"]=429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41274, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=4953, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4370, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=956580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4370, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [429]={ + ["next_chapter"]=430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43414, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=5210, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4380, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=960960, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4380, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=940800, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=42, + ["unit"]=0 + } + }, + [430]={ + ["next_chapter"]=431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=45706, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=5485, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4390, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=965350, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4390, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [431]={ + ["next_chapter"]=432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48156, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=5779, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4400, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=969750, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4400, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [432]={ + ["next_chapter"]=433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50770, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=6092, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4410, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=974160, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4410, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [433]={ + ["next_chapter"]=434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53553, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=6426, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4420, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=978580, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4420, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [434]={ + ["next_chapter"]=435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56509, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=6781, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4430, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=983010, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4430, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [435]={ + ["next_chapter"]=436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59644, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=7157, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4440, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=987450, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4440, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [436]={ + ["next_chapter"]=437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62964, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=7556, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4450, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=991900, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4450, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [437]={ + ["next_chapter"]=438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66473, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=7977, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4460, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=996360, + ["unit"]=0 + }, + ["idle_gold"]={ + ["value"]=4460, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [438]={ + ["next_chapter"]=439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70178, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=8421, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4470, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1001, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4470, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [439]={ + ["next_chapter"]=440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74082, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=8890, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4480, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1005, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4480, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=984700, + ["unit"]=0 + }, + ["grasp_mastery_reward"]={ + ["value"]=43, + ["unit"]=0 + } + }, + [440]={ + ["next_chapter"]=441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=78192, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=9383, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4490, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1010, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4490, + ["unit"]=0 + }, + ["chapter_drop"]=19, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [441]={ + ["next_chapter"]=442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82513, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=9902, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4500, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1014, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4500, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [442]={ + ["next_chapter"]=443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87049, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=10446, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4510, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1019, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4510, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [443]={ + ["next_chapter"]=444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91807, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=11017, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4520, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1023, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4520, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [444]={ + ["next_chapter"]=445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96792, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=11615, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4530, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1028, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4530, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [445]={ + ["next_chapter"]=446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102008, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=12241, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4540, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1032, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4540, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [446]={ + ["next_chapter"]=447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107461, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=12895, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4550, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1037, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4550, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [447]={ + ["next_chapter"]=448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113157, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=13579, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4560, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1042, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4560, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [448]={ + ["next_chapter"]=449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119100, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=14292, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4570, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1046, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4570, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [449]={ + ["next_chapter"]=450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125296, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=15035, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4580, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1051, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4580, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=44, + ["unit"]=0 + } + }, + [450]={ + ["next_chapter"]=451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=131750, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=15810, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4590, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1055, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4590, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [451]={ + ["next_chapter"]=452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138468, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=16616, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4600, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1060, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4600, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [452]={ + ["next_chapter"]=453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145454, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=17454, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4610, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1064, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4610, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [453]={ + ["next_chapter"]=454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152714, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=18326, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4620, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1069, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4620, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [454]={ + ["next_chapter"]=455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160253, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=19230, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4630, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1074, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4630, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [455]={ + ["next_chapter"]=456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168077, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=20169, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4640, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1078, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4640, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [456]={ + ["next_chapter"]=457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176191, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=21143, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4650, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1083, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4650, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [457]={ + ["next_chapter"]=458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=184599, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=22152, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4660, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1088, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4660, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [458]={ + ["next_chapter"]=459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=193308, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=23197, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4670, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1092, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4670, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [459]={ + ["next_chapter"]=460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=202323, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=24279, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4680, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1097, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4680, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=45, + ["unit"]=0 + } + }, + [460]={ + ["next_chapter"]=461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=211648, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=25398, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4690, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1102, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4690, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [461]={ + ["next_chapter"]=462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=221289, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=26555, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4700, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1106, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4700, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [462]={ + ["next_chapter"]=463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=231252, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=27750, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4710, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1111, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4710, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [463]={ + ["next_chapter"]=464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=241541, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=28985, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4720, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1116, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4720, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [464]={ + ["next_chapter"]=465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=252162, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=30259, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4730, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1121, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4730, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [465]={ + ["next_chapter"]=466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=263121, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=31574, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4740, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1125, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4740, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [466]={ + ["next_chapter"]=467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=274421, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=32931, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4750, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1130, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4750, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [467]={ + ["next_chapter"]=468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=286070, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=34328, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4760, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1135, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4760, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [468]={ + ["next_chapter"]=469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=298071, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=35769, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4770, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1140, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4770, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [469]={ + ["next_chapter"]=470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=310431, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=37252, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4780, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4780, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1122, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=46, + ["unit"]=0 + } + }, + [470]={ + ["next_chapter"]=471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=323154, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=38778, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4790, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1149, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4790, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [471]={ + ["next_chapter"]=472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=336246, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=40350, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1154, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4800, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [472]={ + ["next_chapter"]=473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=349712, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=41965, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4810, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1159, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4810, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [473]={ + ["next_chapter"]=474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=363557, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=43627, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4820, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1164, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4820, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [474]={ + ["next_chapter"]=475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=377787, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=45334, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4830, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1168, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4830, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [475]={ + ["next_chapter"]=476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=392406, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=47089, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4840, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1173, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4840, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [476]={ + ["next_chapter"]=477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=407421, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=48891, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4850, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1178, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4850, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [477]={ + ["next_chapter"]=478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=422836, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=50740, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4860, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1183, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4860, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [478]={ + ["next_chapter"]=479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=438657, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=52639, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4870, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1188, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4870, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [479]={ + ["next_chapter"]=480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=454888, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=54587, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4880, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1193, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4880, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=47, + ["unit"]=0 + } + }, + [480]={ + ["next_chapter"]=481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=471536, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=56584, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4890, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1198, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4890, + ["unit"]=0 + }, + ["chapter_drop"]=20, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [481]={ + ["next_chapter"]=482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=488605, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=58633, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4900, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1203, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4900, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [482]={ + ["next_chapter"]=483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=506101, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=60732, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4910, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1207, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4910, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [483]={ + ["next_chapter"]=484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=524029, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=62883, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4920, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1212, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4920, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [484]={ + ["next_chapter"]=485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=542394, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=65087, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4930, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1217, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4930, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [485]={ + ["next_chapter"]=486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=561202, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=67344, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4940, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1222, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4940, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [486]={ + ["next_chapter"]=487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=580457, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=69655, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4950, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1227, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4950, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [487]={ + ["next_chapter"]=488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600166, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=72020, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4960, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1232, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4960, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [488]={ + ["next_chapter"]=489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=620332, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=74440, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4970, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1237, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4970, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [489]={ + ["next_chapter"]=490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=640963, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=76916, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4980, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1242, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4980, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1219, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=48, + ["unit"]=0 + } + }, + [490]={ + ["next_chapter"]=491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=662062, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=79447, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=4990, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1247, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4990, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [491]={ + ["next_chapter"]=492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=683635, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=82036, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1252, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [492]={ + ["next_chapter"]=493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=705688, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=84683, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1257, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [493]={ + ["next_chapter"]=494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=728225, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=87387, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1262, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [494]={ + ["next_chapter"]=495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=751253, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=90150, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1267, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [495]={ + ["next_chapter"]=496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=774775, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=92973, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1272, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [496]={ + ["next_chapter"]=497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=798798, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=95856, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1277, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [497]={ + ["next_chapter"]=498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=823327, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=98799, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1282, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [498]={ + ["next_chapter"]=499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=848367, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=101804, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1287, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5020, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [499]={ + ["next_chapter"]=500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=873923, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=104871, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1292, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5070, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1269, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=49, + ["unit"]=0 + } + }, + [500]={ + ["next_chapter"]=501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=117000, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1297, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5120, + ["unit"]=0 + }, + ["chapter_drop"]=21, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [501]={ + ["next_chapter"]=502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=900032, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=117004, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1302, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5170, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [502]={ + ["next_chapter"]=503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=900257, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=117033, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1307, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5220, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [503]={ + ["next_chapter"]=504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=900867, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=117113, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1312, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5270, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [504]={ + ["next_chapter"]=505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=902054, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=117267, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1317, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5320, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [505]={ + ["next_chapter"]=506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=904013, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=117522, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1322, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5370, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [506]={ + ["next_chapter"]=507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=906934, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=117901, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1327, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5420, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [507]={ + ["next_chapter"]=508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=911010, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=118431, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1332, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5470, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [508]={ + ["next_chapter"]=509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=916435, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=119137, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1337, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5520, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [509]={ + ["next_chapter"]=510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=923401, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=120042, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1342, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5580, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=50, + ["unit"]=0 + } + }, + [510]={ + ["next_chapter"]=511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=932100, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=121173, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1347, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5640, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [511]={ + ["next_chapter"]=512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=942725, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=122554, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1352, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5700, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [512]={ + ["next_chapter"]=513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=955469, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=124211, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1357, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5760, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [513]={ + ["next_chapter"]=514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=970524, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=126168, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1362, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5820, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [514]={ + ["next_chapter"]=515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=988082, + ["unit"]=1 + }, + ["hp_coefficient"]={ + ["value"]=128451, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1367, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5880, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [515]={ + ["next_chapter"]=516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1008, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=131084, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1372, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5940, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [516]={ + ["next_chapter"]=517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1031, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=134093, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1378, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [517]={ + ["next_chapter"]=518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1058, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=137502, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1384, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6060, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [518]={ + ["next_chapter"]=519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1087, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=141337, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1390, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6120, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [519]={ + ["next_chapter"]=520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1120, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=145623, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1396, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6180, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1377, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=51, + ["unit"]=0 + } + }, + [520]={ + ["next_chapter"]=521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1157, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=150384, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1402, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6240, + ["unit"]=0 + }, + ["chapter_drop"]=22, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [521]={ + ["next_chapter"]=522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1197, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=155646, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1408, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6300, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [522]={ + ["next_chapter"]=523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1242, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=161434, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1414, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6360, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [523]={ + ["next_chapter"]=524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1291, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=167773, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1420, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6420, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [524]={ + ["next_chapter"]=525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1344, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=174688, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1426, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6480, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [525]={ + ["next_chapter"]=526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1402, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=182203, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1432, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6540, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [526]={ + ["next_chapter"]=527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1464, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=190345, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1438, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6610, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [527]={ + ["next_chapter"]=528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1532, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=199137, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6680, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [528]={ + ["next_chapter"]=529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1605, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=208606, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1450, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6750, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [529]={ + ["next_chapter"]=530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1683, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=218775, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1456, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6820, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=52, + ["unit"]=0 + } + }, + [530]={ + ["next_chapter"]=531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1767, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=229671, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1462, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6890, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [531]={ + ["next_chapter"]=532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1856, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=241318, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1468, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6960, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [532]={ + ["next_chapter"]=533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1952, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=253741, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1475, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7030, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [533]={ + ["next_chapter"]=534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2054, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=266965, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1482, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7100, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [534]={ + ["next_chapter"]=535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2162, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=281016, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1489, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7170, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [535]={ + ["next_chapter"]=536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2276, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=295917, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1496, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7240, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [536]={ + ["next_chapter"]=537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2398, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=311695, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1503, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7310, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [537]={ + ["next_chapter"]=538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2526, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=328375, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7380, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [538]={ + ["next_chapter"]=539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2661, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=345981, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1517, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7450, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [539]={ + ["next_chapter"]=540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2804, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=364538, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1524, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7520, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1510, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=53, + ["unit"]=0 + } + }, + [540]={ + ["next_chapter"]=541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=2954, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=384072, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1531, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7600, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [541]={ + ["next_chapter"]=542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3112, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=404607, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1538, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7680, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [542]={ + ["next_chapter"]=543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3278, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=426169, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1545, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7760, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [543]={ + ["next_chapter"]=544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3452, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=448783, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1552, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7840, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [544]={ + ["next_chapter"]=545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3634, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=472473, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1559, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7920, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [545]={ + ["next_chapter"]=546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3825, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=497265, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1567, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [546]={ + ["next_chapter"]=547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4024, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=523183, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1575, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8080, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [547]={ + ["next_chapter"]=548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4233, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=550253, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1583, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8160, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [548]={ + ["next_chapter"]=549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4450, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=578500, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1591, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8240, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [549]={ + ["next_chapter"]=550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4677, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=607949, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1599, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8320, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1586, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=54, + ["unit"]=0 + } + }, + [550]={ + ["next_chapter"]=551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=4913, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=638625, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1607, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8400, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [551]={ + ["next_chapter"]=552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5158, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=670553, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1615, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8480, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [552]={ + ["next_chapter"]=553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5414, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=703757, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1623, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8560, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [553]={ + ["next_chapter"]=554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5679, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=738264, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1631, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8650, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [554]={ + ["next_chapter"]=555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5955, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=774097, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1639, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8740, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [555]={ + ["next_chapter"]=556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6241, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=811283, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1647, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8830, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [556]={ + ["next_chapter"]=557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6537, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=849846, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1655, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8920, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [557]={ + ["next_chapter"]=558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6845, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=889810, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1664, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9010, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [558]={ + ["next_chapter"]=559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7163, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=931202, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1673, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9100, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [559]={ + ["next_chapter"]=560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7493, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=974047, + ["unit"]=2 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1682, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9190, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1671, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=55, + ["unit"]=0 + } + }, + [560]={ + ["next_chapter"]=561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=7834, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1018, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1691, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9280, + ["unit"]=0 + }, + ["chapter_drop"]=23, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [561]={ + ["next_chapter"]=562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8186, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1064, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1700, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9370, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [562]={ + ["next_chapter"]=563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8550, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1112, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1709, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9460, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [563]={ + ["next_chapter"]=564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8927, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1160, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1718, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9550, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [564]={ + ["next_chapter"]=565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9315, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1211, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1727, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9650, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [565]={ + ["next_chapter"]=566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9715, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1263, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1736, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9750, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [566]={ + ["next_chapter"]=567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10129, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1317, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1745, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9850, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [567]={ + ["next_chapter"]=568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10554, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1372, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1754, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9950, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [568]={ + ["next_chapter"]=569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10993, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1429, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10050, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [569]={ + ["next_chapter"]=570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11445, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1488, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1774, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10200, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1764, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=56, + ["unit"]=0 + } + }, + [570]={ + ["next_chapter"]=571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=11910, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1548, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1784, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10300, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [571]={ + ["next_chapter"]=572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12389, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1611, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1794, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10400, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [572]={ + ["next_chapter"]=573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12881, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1675, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1804, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10500, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [573]={ + ["next_chapter"]=574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13387, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1740, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1814, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10600, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [574]={ + ["next_chapter"]=575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13908, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1808, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1824, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10700, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [575]={ + ["next_chapter"]=576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14442, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1877, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1834, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10800, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [576]={ + ["next_chapter"]=577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14991, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=1949, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10900, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [577]={ + ["next_chapter"]=578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15555, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2022, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1854, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11000, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [578]={ + ["next_chapter"]=579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16133, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2097, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1864, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11100, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [579]={ + ["next_chapter"]=580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16727, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2174, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1874, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11200, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1867, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=57, + ["unit"]=0 + } + }, + [580]={ + ["next_chapter"]=581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=17335, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2254, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1884, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11300, + ["unit"]=0 + }, + ["chapter_drop"]=24, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [581]={ + ["next_chapter"]=582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17959, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2335, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1894, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11400, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [582]={ + ["next_chapter"]=583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18599, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2418, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1904, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11500, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [583]={ + ["next_chapter"]=584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19254, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2503, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1914, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11600, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [584]={ + ["next_chapter"]=585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19926, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2590, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1924, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11700, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [585]={ + ["next_chapter"]=586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20613, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2680, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1934, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11800, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [586]={ + ["next_chapter"]=587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21317, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2771, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11900, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [587]={ + ["next_chapter"]=588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22038, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2865, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1954, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12000, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [588]={ + ["next_chapter"]=589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22775, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=2961, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1964, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12100, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [589]={ + ["next_chapter"]=590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23530, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3059, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1974, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12200, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=58, + ["unit"]=0 + } + }, + [590]={ + ["next_chapter"]=591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=24301, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3159, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1984, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12300, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [591]={ + ["next_chapter"]=592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25090, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3262, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1994, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12400, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [592]={ + ["next_chapter"]=593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25896, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3366, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2004, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12500, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [593]={ + ["next_chapter"]=594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26720, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3474, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2014, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12600, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [594]={ + ["next_chapter"]=595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27562, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3583, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2024, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12700, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [595]={ + ["next_chapter"]=596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28422, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3695, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2034, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12800, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [596]={ + ["next_chapter"]=597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29300, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3809, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=12900, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [597]={ + ["next_chapter"]=598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30197, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=3926, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2054, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13000, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [598]={ + ["next_chapter"]=599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31112, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4045, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2064, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13100, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [599]={ + ["next_chapter"]=600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32047, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4166, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2074, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13200, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2103, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=59, + ["unit"]=0 + } + }, + [600]={ + ["next_chapter"]=601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=33000, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4620, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2084, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13300, + ["unit"]=0 + }, + ["chapter_drop"]=25, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [601]={ + ["next_chapter"]=602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33001, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4620, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2094, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13400, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [602]={ + ["next_chapter"]=603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33005, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4621, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2104, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13500, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [603]={ + ["next_chapter"]=604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33015, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4622, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2114, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13600, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [604]={ + ["next_chapter"]=605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33036, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4625, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2124, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13700, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [605]={ + ["next_chapter"]=606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33071, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4630, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2134, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13800, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [606]={ + ["next_chapter"]=607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33122, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4637, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=13900, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [607]={ + ["next_chapter"]=608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33194, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4647, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2154, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14000, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [608]={ + ["next_chapter"]=609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33290, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4661, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2164, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14100, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [609]={ + ["next_chapter"]=610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33413, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4678, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2174, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14200, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2236, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [610]={ + ["next_chapter"]=611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=33567, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4699, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2184, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14300, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [611]={ + ["next_chapter"]=612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33755, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4726, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2194, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14400, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [612]={ + ["next_chapter"]=613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33980, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4757, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2204, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14500, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [613]={ + ["next_chapter"]=614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34246, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4794, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2214, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14600, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [614]={ + ["next_chapter"]=615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34556, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4838, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2224, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14700, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [615]={ + ["next_chapter"]=616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34914, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4888, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2234, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14800, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [616]={ + ["next_chapter"]=617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35322, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=4945, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=14900, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [617]={ + ["next_chapter"]=618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35786, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5010, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2254, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=15000, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [618]={ + ["next_chapter"]=619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36307, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5083, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2264, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=15200, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [619]={ + ["next_chapter"]=620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36889, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5164, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2274, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=15400, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2379, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=61, + ["unit"]=0 + } + }, + [620]={ + ["next_chapter"]=621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=37536, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5255, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2284, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=15600, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [621]={ + ["next_chapter"]=622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38251, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5355, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2294, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=15800, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [622]={ + ["next_chapter"]=623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39037, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5465, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2304, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=16000, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [623]={ + ["next_chapter"]=624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39899, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5586, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2314, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=16200, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [624]={ + ["next_chapter"]=625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40838, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5717, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2324, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=16400, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [625]={ + ["next_chapter"]=626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41859, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=5860, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2334, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=16600, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [626]={ + ["next_chapter"]=627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42966, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=6015, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=16800, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [627]={ + ["next_chapter"]=628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44160, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=6182, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2354, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=17000, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [628]={ + ["next_chapter"]=629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45447, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=6363, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2364, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=17200, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [629]={ + ["next_chapter"]=630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46829, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=6556, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2374, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=17400, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2535, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=62, + ["unit"]=0 + } + }, + [630]={ + ["next_chapter"]=631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=48309, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=6763, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2384, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=17600, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [631]={ + ["next_chapter"]=632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49891, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=6985, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2394, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=17800, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [632]={ + ["next_chapter"]=633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51579, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=7221, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2404, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=18000, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [633]={ + ["next_chapter"]=634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53376, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=7473, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2414, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=18200, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [634]={ + ["next_chapter"]=635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55285, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=7740, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2424, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=18400, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [635]={ + ["next_chapter"]=636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57310, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=8023, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2434, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=18600, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [636]={ + ["next_chapter"]=637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59454, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=8324, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=18800, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [637]={ + ["next_chapter"]=638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61720, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=8641, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2454, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=19000, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [638]={ + ["next_chapter"]=639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64112, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=8976, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2464, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=19200, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [639]={ + ["next_chapter"]=640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66634, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=9329, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2474, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=19400, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2711, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=63, + ["unit"]=0 + } + }, + [640]={ + ["next_chapter"]=641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=69288, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=9700, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2484, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=19600, + ["unit"]=0 + }, + ["chapter_drop"]=26, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [641]={ + ["next_chapter"]=642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72078, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=10091, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2494, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=19800, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [642]={ + ["next_chapter"]=643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75008, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=10501, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2514, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [643]={ + ["next_chapter"]=644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78080, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=10931, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2534, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=20200, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [644]={ + ["next_chapter"]=645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81299, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=11382, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2554, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=20400, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [645]={ + ["next_chapter"]=646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84668, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=11854, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2574, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=20600, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [646]={ + ["next_chapter"]=647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88190, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=12347, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2594, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=20800, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [647]={ + ["next_chapter"]=648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91868, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=12861, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2614, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=21000, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [648]={ + ["next_chapter"]=649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95706, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=13399, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2634, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=21200, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [649]={ + ["next_chapter"]=650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99707, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=13959, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2654, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=21400, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=2907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=64, + ["unit"]=0 + } + }, + [650]={ + ["next_chapter"]=651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=103875, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=14543, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2674, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=21600, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [651]={ + ["next_chapter"]=652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108213, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=15150, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2694, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=21800, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [652]={ + ["next_chapter"]=653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112725, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=15781, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2714, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=22000, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [653]={ + ["next_chapter"]=654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117413, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=16438, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2734, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=22200, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [654]={ + ["next_chapter"]=655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122282, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=17119, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2754, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=22400, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [655]={ + ["next_chapter"]=656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127335, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=17827, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2774, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=22600, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [656]={ + ["next_chapter"]=657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132574, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=18560, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2794, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=22800, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [657]={ + ["next_chapter"]=658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138004, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=19321, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2814, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=23000, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [658]={ + ["next_chapter"]=659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143629, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=20108, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2834, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=23200, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [659]={ + ["next_chapter"]=660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=149450, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=20923, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2854, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=23400, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3123, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=65, + ["unit"]=0 + } + }, + [660]={ + ["next_chapter"]=661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=155472, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=21766, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2874, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=23600, + ["unit"]=0 + }, + ["chapter_drop"]=27, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [661]={ + ["next_chapter"]=662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161698, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=22638, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2894, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=23800, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [662]={ + ["next_chapter"]=663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168132, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=23538, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2914, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=24000, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [663]={ + ["next_chapter"]=664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174777, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=24469, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2934, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=24200, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [664]={ + ["next_chapter"]=665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=181636, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=25429, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2954, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=24400, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [665]={ + ["next_chapter"]=666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=188712, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=26420, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2974, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=24600, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [666]={ + ["next_chapter"]=667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=196010, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=27441, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2994, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=24800, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [667]={ + ["next_chapter"]=668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=203533, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=28495, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3014, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=25000, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [668]={ + ["next_chapter"]=669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=211283, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=29580, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3034, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=25300, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [669]={ + ["next_chapter"]=670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=219265, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=30697, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3054, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=25600, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3359, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=66, + ["unit"]=0 + } + }, + [670]={ + ["next_chapter"]=671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=227481, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=31847, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3074, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=25900, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [671]={ + ["next_chapter"]=672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=235936, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=33031, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3094, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=26200, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [672]={ + ["next_chapter"]=673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=244632, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=34248, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3114, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=26500, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [673]={ + ["next_chapter"]=674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=253573, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=35500, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3134, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=26800, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [674]={ + ["next_chapter"]=675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=262762, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=36787, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3154, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=27100, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [675]={ + ["next_chapter"]=676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=272203, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=38108, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3174, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=27400, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [676]={ + ["next_chapter"]=677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=281899, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=39466, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3194, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=27700, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [677]={ + ["next_chapter"]=678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=291854, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=40860, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3214, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=28000, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [678]={ + ["next_chapter"]=679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=302071, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=42290, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3234, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=28300, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [679]={ + ["next_chapter"]=680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=312553, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=43757, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3254, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=28600, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3618, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=67, + ["unit"]=0 + } + }, + [680]={ + ["next_chapter"]=681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=323304, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=45263, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3274, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=28900, + ["unit"]=0 + }, + ["chapter_drop"]=28, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [681]={ + ["next_chapter"]=682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=334327, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=46806, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3294, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=29200, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [682]={ + ["next_chapter"]=683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=345626, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=48388, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3314, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=29500, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [683]={ + ["next_chapter"]=684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357203, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=50008, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3334, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=29800, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [684]={ + ["next_chapter"]=685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=369063, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=51669, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3364, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=30100, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [685]={ + ["next_chapter"]=686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=381209, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=53369, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3394, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=30400, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [686]={ + ["next_chapter"]=687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=393644, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=55110, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3424, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=30700, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [687]={ + ["next_chapter"]=688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=406371, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=56892, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3454, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=31000, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [688]={ + ["next_chapter"]=689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=419395, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=58715, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3484, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=31300, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [689]={ + ["next_chapter"]=690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=432717, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=60580, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3514, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=31600, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=3907, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=68, + ["unit"]=0 + } + }, + [690]={ + ["next_chapter"]=691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=446343, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=62488, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=31900, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [691]={ + ["next_chapter"]=692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=460275, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=64438, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3574, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=32200, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [692]={ + ["next_chapter"]=693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=474516, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=66432, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3604, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=32500, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [693]={ + ["next_chapter"]=694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=489070, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=68470, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3634, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=32800, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [694]={ + ["next_chapter"]=695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=503941, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=70552, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3664, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=33100, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [695]={ + ["next_chapter"]=696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=519132, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=72678, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3694, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=33400, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [696]={ + ["next_chapter"]=697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=534645, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=74850, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3724, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=33700, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [697]={ + ["next_chapter"]=698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=550486, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=77068, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3754, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=34000, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [698]={ + ["next_chapter"]=699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=566656, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=79332, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3784, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=34300, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [699]={ + ["next_chapter"]=700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=583160, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=81642, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3814, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=34600, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4226, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=69, + ["unit"]=0 + } + }, + [700]={ + ["next_chapter"]=701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=34900, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [701]={ + ["next_chapter"]=702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600004, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90001, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3874, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=35200, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [702]={ + ["next_chapter"]=703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600035, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90005, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3904, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=35600, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [703]={ + ["next_chapter"]=704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600119, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90018, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3934, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=36000, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [704]={ + ["next_chapter"]=705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600283, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90042, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3964, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=36400, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [705]={ + ["next_chapter"]=706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600553, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90083, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3994, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=36800, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [706]={ + ["next_chapter"]=707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600955, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90143, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4024, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=37200, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [707]={ + ["next_chapter"]=708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=601517, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90228, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4054, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=37600, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [708]={ + ["next_chapter"]=709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=602264, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90340, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4084, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=38000, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [709]={ + ["next_chapter"]=710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=603224, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90484, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4114, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=38400, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4575, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=70, + ["unit"]=0 + } + }, + [710]={ + ["next_chapter"]=711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=604422, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90663, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=38800, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [711]={ + ["next_chapter"]=712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=605886, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=90883, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4174, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=39200, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [712]={ + ["next_chapter"]=713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=607642, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=91146, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4204, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=39600, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [713]={ + ["next_chapter"]=714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=609716, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=91457, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [714]={ + ["next_chapter"]=715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=612135, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=91820, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4284, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=40400, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [715]={ + ["next_chapter"]=716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=614925, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=92239, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4324, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=40800, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [716]={ + ["next_chapter"]=717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=618113, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=92717, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4364, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=41200, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [717]={ + ["next_chapter"]=718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=621726, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=93259, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4404, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=41600, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [718]={ + ["next_chapter"]=719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=625790, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=93869, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=42000, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [719]={ + ["next_chapter"]=720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=630332, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=94550, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4484, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=42400, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=4963, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=71, + ["unit"]=0 + } + }, + [720]={ + ["next_chapter"]=721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=635378, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=95307, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4524, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=42800, + ["unit"]=0 + }, + ["chapter_drop"]=29, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [721]={ + ["next_chapter"]=722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=640954, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=96143, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4564, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=43200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [722]={ + ["next_chapter"]=723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=647088, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=97063, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4604, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=43600, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [723]={ + ["next_chapter"]=724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=653805, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=98071, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=44000, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [724]={ + ["next_chapter"]=725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=661133, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=99170, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4684, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=44400, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [725]={ + ["next_chapter"]=726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=669097, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=100365, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4724, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=44800, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [726]={ + ["next_chapter"]=727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=677725, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=101659, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4764, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=45200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [727]={ + ["next_chapter"]=728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=687043, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=103056, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4804, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=45700, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [728]={ + ["next_chapter"]=729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=697077, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=104561, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=46200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [729]={ + ["next_chapter"]=730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=707854, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=106178, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4884, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=46700, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5391, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=72, + ["unit"]=0 + } + }, + [730]={ + ["next_chapter"]=731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=719400, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=107910, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4924, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=47200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [731]={ + ["next_chapter"]=732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=731742, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=109761, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4964, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=47700, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [732]={ + ["next_chapter"]=733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=744907, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=111736, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5004, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=48200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [733]={ + ["next_chapter"]=734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=758921, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=113838, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=48700, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [734]={ + ["next_chapter"]=735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=773811, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=116072, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5084, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=49200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [735]={ + ["next_chapter"]=736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=789603, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=118440, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5124, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=49700, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [736]={ + ["next_chapter"]=737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=806323, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=120948, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5174, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=50200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [737]={ + ["next_chapter"]=738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=823999, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=123600, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5224, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=50700, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [738]={ + ["next_chapter"]=739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=842656, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=126398, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5274, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=51200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [739]={ + ["next_chapter"]=740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=862322, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=129348, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5324, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=51700, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=5863, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=73, + ["unit"]=0 + } + }, + [740]={ + ["next_chapter"]=741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=883022, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=132453, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5374, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=52200, + ["unit"]=0 + }, + ["chapter_drop"]=30, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [741]={ + ["next_chapter"]=742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=904784, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=135718, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5424, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=52700, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [742]={ + ["next_chapter"]=743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=927634, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=139145, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5474, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=53200, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [743]={ + ["next_chapter"]=744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=951598, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=142740, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5524, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=53700, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [744]={ + ["next_chapter"]=745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=976703, + ["unit"]=2 + }, + ["hp_coefficient"]={ + ["value"]=146505, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5574, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=54200, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [745]={ + ["next_chapter"]=746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1003, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=150446, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5624, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=54700, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [746]={ + ["next_chapter"]=747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1030, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=154566, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5674, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=55200, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [747]={ + ["next_chapter"]=748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1059, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=158869, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5724, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=55800, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [748]={ + ["next_chapter"]=749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1089, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=163359, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5774, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=56400, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [749]={ + ["next_chapter"]=750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1120, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=168041, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5824, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=57000, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6385, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=74, + ["unit"]=0 + } + }, + [750]={ + ["next_chapter"]=751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=1153, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=172917, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5874, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=57600, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [751]={ + ["next_chapter"]=752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1187, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=177992, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5924, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=58200, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [752]={ + ["next_chapter"]=753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1222, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=183270, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5974, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=58800, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [753]={ + ["next_chapter"]=754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1258, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=188755, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6024, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=59400, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [754]={ + ["next_chapter"]=755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1296, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=194451, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6084, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [755]={ + ["next_chapter"]=756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1336, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=200362, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=60600, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [756]={ + ["next_chapter"]=757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1377, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=206492, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6204, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=61200, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [757]={ + ["next_chapter"]=758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1419, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=212845, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6264, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=61800, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [758]={ + ["next_chapter"]=759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1463, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=219424, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6324, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=62400, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [759]={ + ["next_chapter"]=760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1508, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=226235, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6384, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=63000, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=6961, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=75, + ["unit"]=0 + } + }, + [760]={ + ["next_chapter"]=761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1555, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=233280, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=63600, + ["unit"]=0 + }, + ["chapter_drop"]=31, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [761]={ + ["next_chapter"]=762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1604, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=240564, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6504, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=64200, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [762]={ + ["next_chapter"]=763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1654, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=248091, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6564, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=64800, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [763]={ + ["next_chapter"]=764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1706, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=255865, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6624, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=65400, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [764]={ + ["next_chapter"]=765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1759, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=263889, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6684, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=66100, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [765]={ + ["next_chapter"]=766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1814, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=272168, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=66800, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [766]={ + ["next_chapter"]=767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1871, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=280706, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6804, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=67500, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [767]={ + ["next_chapter"]=768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1930, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=289506, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6864, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=68200, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [768]={ + ["next_chapter"]=769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1990, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=298573, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6924, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=68900, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [769]={ + ["next_chapter"]=770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2053, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=307911, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6984, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=69600, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=76, + ["unit"]=0 + } + }, + [770]={ + ["next_chapter"]=771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=2117, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=317523, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7054, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=70300, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [771]={ + ["next_chapter"]=772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2183, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=327414, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7124, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=71000, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [772]={ + ["next_chapter"]=773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2251, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=337588, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7194, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=71700, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [773]={ + ["next_chapter"]=774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2320, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=348048, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7264, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=72400, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [774]={ + ["next_chapter"]=775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2392, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=358799, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7334, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=73100, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [775]={ + ["next_chapter"]=776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2466, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=369844, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7404, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=73800, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [776]={ + ["next_chapter"]=777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2541, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=381187, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7474, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=74500, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [777]={ + ["next_chapter"]=778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2619, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=392834, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=75200, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [778]={ + ["next_chapter"]=779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2699, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=404786, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7614, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=76000, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [779]={ + ["next_chapter"]=780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2780, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=417049, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7684, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=76800, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=8300, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=77, + ["unit"]=0 + } + }, + [780]={ + ["next_chapter"]=781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=2864, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=429627, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7754, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=77600, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [781]={ + ["next_chapter"]=782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2950, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=442523, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7824, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=78400, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [782]={ + ["next_chapter"]=783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3038, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=455741, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7894, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=79200, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [783]={ + ["next_chapter"]=784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3129, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=469285, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7974, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [784]={ + ["next_chapter"]=785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3221, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=483160, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8054, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=80800, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [785]={ + ["next_chapter"]=786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3316, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=497370, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8134, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=81600, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [786]={ + ["next_chapter"]=787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3413, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=511917, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8214, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=82400, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [787]={ + ["next_chapter"]=788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3512, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=526807, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8294, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=83200, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [788]={ + ["next_chapter"]=789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3614, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=542043, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8374, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=84000, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [789]={ + ["next_chapter"]=790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3718, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=557629, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8454, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=84800, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9076, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=78, + ["unit"]=0 + } + }, + [790]={ + ["next_chapter"]=791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=3824, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=573570, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8534, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=85600, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [791]={ + ["next_chapter"]=792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3932, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=589869, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8614, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=86500, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [792]={ + ["next_chapter"]=793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4044, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=606530, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8694, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=87400, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [793]={ + ["next_chapter"]=794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4157, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=623557, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8774, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=88300, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [794]={ + ["next_chapter"]=795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4273, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=640954, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8854, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=89200, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [795]={ + ["next_chapter"]=796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4392, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=658725, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=90100, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [796]={ + ["next_chapter"]=797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4512, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=676875, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9034, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=91000, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [797]={ + ["next_chapter"]=798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4636, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=695406, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9124, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=91900, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [798]={ + ["next_chapter"]=799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4762, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=714324, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9214, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=92800, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [799]={ + ["next_chapter"]=800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4891, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=733632, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9304, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=93700, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=9932, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=79, + ["unit"]=0 + } + }, + [800]={ + ["next_chapter"]=801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=5022, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=753333, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9394, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=94600, + ["unit"]=0 + }, + ["chapter_drop"]=32, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [801]={ + ["next_chapter"]=802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5156, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=773433, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9484, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=95500, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [802]={ + ["next_chapter"]=803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5293, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=793935, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9574, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=96500, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [803]={ + ["next_chapter"]=804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5432, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=814842, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9664, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=97500, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [804]={ + ["next_chapter"]=805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5574, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=836160, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9754, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=98500, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [805]={ + ["next_chapter"]=806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5719, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=857891, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=99500, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [806]={ + ["next_chapter"]=807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5867, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=880041, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=100500, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [807]={ + ["next_chapter"]=808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6017, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=902612, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=102000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [808]={ + ["next_chapter"]=809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6171, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=925609, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=103000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [809]={ + ["next_chapter"]=810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6327, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=949036, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=104000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=10878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=80, + ["unit"]=0 + } + }, + [810]={ + ["next_chapter"]=811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=6486, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=972897, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=105000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [811]={ + ["next_chapter"]=812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6648, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=997195, + ["unit"]=3 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=106000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [812]={ + ["next_chapter"]=813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6813, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1022, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=107000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [813]={ + ["next_chapter"]=814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6981, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1047, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=108000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [814]={ + ["next_chapter"]=815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7152, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1073, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=109000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [815]={ + ["next_chapter"]=816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7326, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1099, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=110000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [816]={ + ["next_chapter"]=817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7503, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1125, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=111000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [817]={ + ["next_chapter"]=818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7683, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1152, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=112000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [818]={ + ["next_chapter"]=819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7866, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1180, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=113000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [819]={ + ["next_chapter"]=820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8052, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1208, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=114000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=11928, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=81, + ["unit"]=0 + } + }, + [820]={ + ["next_chapter"]=821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=8242, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1236, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=115000, + ["unit"]=0 + }, + ["chapter_drop"]=33, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [821]={ + ["next_chapter"]=822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8434, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1265, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=116000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [822]={ + ["next_chapter"]=823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8630, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1295, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=117000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [823]={ + ["next_chapter"]=824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8829, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1324, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=118000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [824]={ + ["next_chapter"]=825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9032, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1355, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=119000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [825]={ + ["next_chapter"]=826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9237, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1386, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=120000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [826]={ + ["next_chapter"]=827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9446, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1417, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=121000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [827]={ + ["next_chapter"]=828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9658, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1449, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=122000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [828]={ + ["next_chapter"]=829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9874, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1481, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=123000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [829]={ + ["next_chapter"]=830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10093, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1514, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=124000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=13078, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=82, + ["unit"]=0 + } + }, + [830]={ + ["next_chapter"]=831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=10316, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1547, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=125000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [831]={ + ["next_chapter"]=832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10542, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1581, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=126000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [832]={ + ["next_chapter"]=833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10771, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1616, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=127000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [833]={ + ["next_chapter"]=834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11004, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1651, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=128000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [834]={ + ["next_chapter"]=835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11240, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1686, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=129000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [835]={ + ["next_chapter"]=836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11480, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1722, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=130000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [836]={ + ["next_chapter"]=837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11724, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1759, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=131000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [837]={ + ["next_chapter"]=838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11971, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1796, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=132000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [838]={ + ["next_chapter"]=839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12222, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1833, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=133000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [839]={ + ["next_chapter"]=840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12476, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1871, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=134000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=14328, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=83, + ["unit"]=0 + } + }, + [840]={ + ["next_chapter"]=841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=12735, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1910, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=135000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [841]={ + ["next_chapter"]=842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12996, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1949, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=136000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [842]={ + ["next_chapter"]=843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13262, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=1989, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=137000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [843]={ + ["next_chapter"]=844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13531, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2030, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=138000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [844]={ + ["next_chapter"]=845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13805, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2071, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=139000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [845]={ + ["next_chapter"]=846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14082, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2112, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=140000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [846]={ + ["next_chapter"]=847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14363, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2154, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=141000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [847]={ + ["next_chapter"]=848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14647, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2197, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=142000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [848]={ + ["next_chapter"]=849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14936, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2240, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=143000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [849]={ + ["next_chapter"]=850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15228, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2284, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=144000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=15678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=84, + ["unit"]=0 + } + }, + [850]={ + ["next_chapter"]=851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=15525, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2329, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=145000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [851]={ + ["next_chapter"]=852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15825, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2374, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=146000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [852]={ + ["next_chapter"]=853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16130, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2419, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=147000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [853]={ + ["next_chapter"]=854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16439, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2466, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=148000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [854]={ + ["next_chapter"]=855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16751, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2513, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=149000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [855]={ + ["next_chapter"]=856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17068, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2560, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=150000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [856]={ + ["next_chapter"]=857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17389, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2608, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=152000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [857]={ + ["next_chapter"]=858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17714, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2657, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=154000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [858]={ + ["next_chapter"]=859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18043, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2706, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=156000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [859]={ + ["next_chapter"]=860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18376, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2756, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=158000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=17128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=85, + ["unit"]=0 + } + }, + [860]={ + ["next_chapter"]=861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=18713, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2807, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=160000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [861]={ + ["next_chapter"]=862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19055, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2858, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=162000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [862]={ + ["next_chapter"]=863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19401, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2910, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=164000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [863]={ + ["next_chapter"]=864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19752, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=2963, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=166000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [864]={ + ["next_chapter"]=865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20106, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3016, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=168000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [865]={ + ["next_chapter"]=866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20465, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3070, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=170000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [866]={ + ["next_chapter"]=867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20829, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3124, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=172000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [867]={ + ["next_chapter"]=868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21196, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3179, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=174000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [868]={ + ["next_chapter"]=869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21569, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3235, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=176000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [869]={ + ["next_chapter"]=870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21945, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3292, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=178000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=18728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=86, + ["unit"]=0 + } + }, + [870]={ + ["next_chapter"]=871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=22326, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3349, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=180000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [871]={ + ["next_chapter"]=872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22712, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3407, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=182000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [872]={ + ["next_chapter"]=873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23102, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3465, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=184000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [873]={ + ["next_chapter"]=874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23497, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3525, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=186000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [874]={ + ["next_chapter"]=875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23896, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3584, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=188000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [875]={ + ["next_chapter"]=876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24300, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3645, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=190000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [876]={ + ["next_chapter"]=877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24709, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3706, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=192000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [877]={ + ["next_chapter"]=878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25122, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3768, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=194000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [878]={ + ["next_chapter"]=879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25540, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3831, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=196000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [879]={ + ["next_chapter"]=880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25963, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3894, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=198000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=20528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=87, + ["unit"]=0 + } + }, + [880]={ + ["next_chapter"]=881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=26390, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=3959, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [881]={ + ["next_chapter"]=882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26823, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4023, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=202000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [882]={ + ["next_chapter"]=883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27260, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4089, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=204000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [883]={ + ["next_chapter"]=884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27702, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4155, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=206000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [884]={ + ["next_chapter"]=885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28148, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4222, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=208000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [885]={ + ["next_chapter"]=886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28600, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4290, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=210000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [886]={ + ["next_chapter"]=887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29056, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4358, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=212000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [887]={ + ["next_chapter"]=888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29518, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4428, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=214000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [888]={ + ["next_chapter"]=889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29984, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4498, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=216000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [889]={ + ["next_chapter"]=890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30456, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4568, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=218000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=22528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=88, + ["unit"]=0 + } + }, + [890]={ + ["next_chapter"]=891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=30932, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4640, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=220000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [891]={ + ["next_chapter"]=892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31413, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4712, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=222000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [892]={ + ["next_chapter"]=893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31900, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4785, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=224000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [893]={ + ["next_chapter"]=894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32392, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4859, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=226000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [894]={ + ["next_chapter"]=895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32888, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=4933, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=228000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [895]={ + ["next_chapter"]=896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33390, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5009, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=230000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [896]={ + ["next_chapter"]=897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33897, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5085, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=232000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [897]={ + ["next_chapter"]=898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34410, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5161, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=234000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [898]={ + ["next_chapter"]=899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34927, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5239, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=236000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [899]={ + ["next_chapter"]=900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35450, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5317, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=238000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=24728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=89, + ["unit"]=0 + } + }, + [900]={ + ["next_chapter"]=901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=35978, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5397, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=240000, + ["unit"]=0 + }, + ["chapter_drop"]=34, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [901]={ + ["next_chapter"]=902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36511, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5477, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=242000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [902]={ + ["next_chapter"]=903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37050, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5557, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=244000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [903]={ + ["next_chapter"]=904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37594, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5639, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=246000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [904]={ + ["next_chapter"]=905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38143, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5721, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=248000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [905]={ + ["next_chapter"]=906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38698, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5805, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=250000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [906]={ + ["next_chapter"]=907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39258, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5889, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=253000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [907]={ + ["next_chapter"]=908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39824, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=5974, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=256000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [908]={ + ["next_chapter"]=909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40395, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6059, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=259000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [909]={ + ["next_chapter"]=910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40972, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6146, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=262000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=27128, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=90, + ["unit"]=0 + } + }, + [910]={ + ["next_chapter"]=911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=41554, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6233, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=265000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [911]={ + ["next_chapter"]=912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42142, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6321, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=268000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [912]={ + ["next_chapter"]=913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42735, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6410, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=271000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [913]={ + ["next_chapter"]=914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43335, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6500, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=274000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [914]={ + ["next_chapter"]=915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43939, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6591, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=277000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [915]={ + ["next_chapter"]=916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44550, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6682, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=280000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [916]={ + ["next_chapter"]=917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45166, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6775, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=283000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [917]={ + ["next_chapter"]=918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45788, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6868, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=286000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [918]={ + ["next_chapter"]=919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46415, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=6962, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=289000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [919]={ + ["next_chapter"]=920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47049, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7057, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=292000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=29778, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=91, + ["unit"]=0 + } + }, + [920]={ + ["next_chapter"]=921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=47688, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7153, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=295000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [921]={ + ["next_chapter"]=922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48333, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7250, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=298000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [922]={ + ["next_chapter"]=923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48984, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7348, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=301000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [923]={ + ["next_chapter"]=924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49641, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7446, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=304000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [924]={ + ["next_chapter"]=925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50303, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7545, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=307000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [925]={ + ["next_chapter"]=926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50972, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7646, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=310000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [926]={ + ["next_chapter"]=927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51646, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7747, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=313000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [927]={ + ["next_chapter"]=928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52327, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7849, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=316000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [928]={ + ["next_chapter"]=929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53014, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=7952, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=319000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [929]={ + ["next_chapter"]=930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53706, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8056, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=322000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=32728, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=92, + ["unit"]=0 + } + }, + [930]={ + ["next_chapter"]=931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=54405, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8161, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=325000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [931]={ + ["next_chapter"]=932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55110, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8267, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=328000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [932]={ + ["next_chapter"]=933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55821, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8373, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=331000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [933]={ + ["next_chapter"]=934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56538, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8481, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=334000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [934]={ + ["next_chapter"]=935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57262, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8589, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=337000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [935]={ + ["next_chapter"]=936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57991, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8699, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=340000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [936]={ + ["next_chapter"]=937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58727, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8809, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=343000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [937]={ + ["next_chapter"]=938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59469, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=8920, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=346000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [938]={ + ["next_chapter"]=939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60217, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9033, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=349000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [939]={ + ["next_chapter"]=940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60972, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9146, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=352000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=35978, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=93, + ["unit"]=0 + } + }, + [940]={ + ["next_chapter"]=941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=61733, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9260, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=356000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [941]={ + ["next_chapter"]=942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62500, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9375, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=360000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [942]={ + ["next_chapter"]=943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63274, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9491, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=364000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [943]={ + ["next_chapter"]=944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64054, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9608, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=368000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [944]={ + ["next_chapter"]=945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64841, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9726, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=372000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [945]={ + ["next_chapter"]=946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65634, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9845, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=376000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [946]={ + ["next_chapter"]=947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66433, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=9965, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=380000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [947]={ + ["next_chapter"]=948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67239, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=10086, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=384000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [948]={ + ["next_chapter"]=949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68052, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=10208, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=388000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [949]={ + ["next_chapter"]=950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68871, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=10331, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=392000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=39538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=94, + ["unit"]=0 + } + }, + [950]={ + ["next_chapter"]=951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=69697, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=10455, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=396000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [951]={ + ["next_chapter"]=952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70530, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=10579, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [952]={ + ["next_chapter"]=953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71369, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=10705, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=404000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [953]={ + ["next_chapter"]=954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72215, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=10832, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=408000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [954]={ + ["next_chapter"]=955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73067, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=10960, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=412000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [955]={ + ["next_chapter"]=956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73927, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=11089, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=416000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [956]={ + ["next_chapter"]=957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74793, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=11219, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=420000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [957]={ + ["next_chapter"]=958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75665, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=11350, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=424000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [958]={ + ["next_chapter"]=959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76545, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=11482, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=428000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [959]={ + ["next_chapter"]=960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77432, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=11615, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=432000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=43498, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=95, + ["unit"]=0 + } + }, + [960]={ + ["next_chapter"]=961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=78325, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=11749, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=436000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [961]={ + ["next_chapter"]=962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79225, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=11884, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=440000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [962]={ + ["next_chapter"]=963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80132, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=12020, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=444000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [963]={ + ["next_chapter"]=964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81047, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=12157, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=448000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [964]={ + ["next_chapter"]=965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81968, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=12295, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=452000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [965]={ + ["next_chapter"]=966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82896, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=12434, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=457000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [966]={ + ["next_chapter"]=967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83831, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=12575, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=462000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [967]={ + ["next_chapter"]=968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84773, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=12716, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=467000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [968]={ + ["next_chapter"]=969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85723, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=12858, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=472000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [969]={ + ["next_chapter"]=970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86679, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=13002, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=477000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=47858, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=96, + ["unit"]=0 + } + }, + [970]={ + ["next_chapter"]=971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=87643, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=13146, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=482000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [971]={ + ["next_chapter"]=972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88613, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=13292, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=487000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [972]={ + ["next_chapter"]=973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89591, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=13439, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=492000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [973]={ + ["next_chapter"]=974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90576, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=13586, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=497000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [974]={ + ["next_chapter"]=975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91569, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=13735, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=502000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [975]={ + ["next_chapter"]=976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92568, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=13885, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=507000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [976]={ + ["next_chapter"]=977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93575, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=14036, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=512000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [977]={ + ["next_chapter"]=978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94590, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=14188, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=517000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [978]={ + ["next_chapter"]=979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95611, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=14342, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=522000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [979]={ + ["next_chapter"]=980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96640, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=14496, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=527000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=52678, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=97, + ["unit"]=0 + } + }, + [980]={ + ["next_chapter"]=981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=97677, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=14651, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=532000, + ["unit"]=0 + }, + ["chapter_drop"]=35, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [981]={ + ["next_chapter"]=982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98720, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=14808, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=537000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [982]={ + ["next_chapter"]=983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99772, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=14966, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=542000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [983]={ + ["next_chapter"]=984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100830, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=15125, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=547000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [984]={ + ["next_chapter"]=985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101897, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=15285, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=552000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [985]={ + ["next_chapter"]=986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102971, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=15446, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=558000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [986]={ + ["next_chapter"]=987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104052, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=15608, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=564000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [987]={ + ["next_chapter"]=988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105141, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=15771, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=570000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [988]={ + ["next_chapter"]=989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106237, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=15936, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=576000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [989]={ + ["next_chapter"]=990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107342, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=16101, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=582000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=57998, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=98, + ["unit"]=0 + } + }, + [990]={ + ["next_chapter"]=991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=108454, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=16268, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=588000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [991]={ + ["next_chapter"]=992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109573, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=16436, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=594000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [992]={ + ["next_chapter"]=993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110700, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=16605, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [993]={ + ["next_chapter"]=994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111836, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=16775, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=606000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [994]={ + ["next_chapter"]=995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112978, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=16947, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=612000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [995]={ + ["next_chapter"]=996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114129, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=17119, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=618000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [996]={ + ["next_chapter"]=997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115287, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=17293, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=624000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [997]={ + ["next_chapter"]=998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116454, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=17468, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=630000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [998]={ + ["next_chapter"]=999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117628, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=17644, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=636000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [999]={ + ["next_chapter"]=1000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118810, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=17821, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=642000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=63878, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=99, + ["unit"]=0 + } + }, + [1000]={ + ["next_chapter"]=1001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=120000, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19200, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=648000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1001]={ + ["next_chapter"]=1002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120000, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19200, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=654000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1002]={ + ["next_chapter"]=1003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120002, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19200, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=661000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1003]={ + ["next_chapter"]=1004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120008, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19201, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=668000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1004]={ + ["next_chapter"]=1005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120018, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19203, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=675000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1005]={ + ["next_chapter"]=1006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120036, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19206, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=682000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1006]={ + ["next_chapter"]=1007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120062, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19210, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=689000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1007]={ + ["next_chapter"]=1008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120098, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19216, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=696000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1008]={ + ["next_chapter"]=1009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120147, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19224, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=703000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1009]={ + ["next_chapter"]=1010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120209, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19233, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=710000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=70358, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=100, + ["unit"]=0 + } + }, + [1010]={ + ["next_chapter"]=1011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=120287, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19246, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=717000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1011]={ + ["next_chapter"]=1012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120382, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19261, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=724000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1012]={ + ["next_chapter"]=1013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120496, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19279, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=731000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1013]={ + ["next_chapter"]=1014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120631, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19301, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=738000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1014]={ + ["next_chapter"]=1015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120788, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19326, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=745000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1015]={ + ["next_chapter"]=1016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120969, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19355, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=752000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1016]={ + ["next_chapter"]=1017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121176, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19388, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=760000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1017]={ + ["next_chapter"]=1018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121410, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19426, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=768000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1018]={ + ["next_chapter"]=1019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121674, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19468, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=776000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1019]={ + ["next_chapter"]=1020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121969, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19515, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=784000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=77528, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=101, + ["unit"]=0 + } + }, + [1020]={ + ["next_chapter"]=1021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=122296, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19567, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=792000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1021]={ + ["next_chapter"]=1022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122658, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19625, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1022]={ + ["next_chapter"]=1023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123056, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19689, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=808000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1023]={ + ["next_chapter"]=1024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123492, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19759, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=816000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1024]={ + ["next_chapter"]=1025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123968, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19835, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=824000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1025]={ + ["next_chapter"]=1026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124485, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=19918, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=832000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1026]={ + ["next_chapter"]=1027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125045, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=20007, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=840000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1027]={ + ["next_chapter"]=1028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125650, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=20104, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=848000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1028]={ + ["next_chapter"]=1029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126301, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=20208, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=856000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1029]={ + ["next_chapter"]=1030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127001, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=20320, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=865000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=85448, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=102, + ["unit"]=0 + } + }, + [1030]={ + ["next_chapter"]=1031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=127750, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=20440, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=874000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1031]={ + ["next_chapter"]=1032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128551, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=20568, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=883000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1032]={ + ["next_chapter"]=1033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129406, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=20705, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=892000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1033]={ + ["next_chapter"]=1034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130315, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=20850, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=901000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1034]={ + ["next_chapter"]=1035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131282, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=21005, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82644, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=910000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1035]={ + ["next_chapter"]=1036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132307, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=21169, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83544, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=919000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1036]={ + ["next_chapter"]=1037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133392, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=21343, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84444, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=928000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1037]={ + ["next_chapter"]=1038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134539, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=21526, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85344, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=937000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1038]={ + ["next_chapter"]=1039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135750, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=21720, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86244, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=946000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1039]={ + ["next_chapter"]=1040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137027, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=21924, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87144, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=955000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=94188, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=103, + ["unit"]=0 + } + }, + [1040]={ + ["next_chapter"]=1041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=138371, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=22139, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88044, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=965000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1041]={ + ["next_chapter"]=1042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139783, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=22365, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88944, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=975000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1042]={ + ["next_chapter"]=1043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141266, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=22603, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89844, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=985000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1043]={ + ["next_chapter"]=1044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142822, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=22851, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=0 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=995000, + ["unit"]=0 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1044]={ + ["next_chapter"]=1045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144451, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=23112, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1005, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1045]={ + ["next_chapter"]=1046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146157, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=23385, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1020, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1046]={ + ["next_chapter"]=1047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147939, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=23670, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1030, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1047]={ + ["next_chapter"]=1048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=149801, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=23968, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1040, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1048]={ + ["next_chapter"]=1049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151744, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=24279, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1050, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1049]={ + ["next_chapter"]=1050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153770, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=24603, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=103838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=104, + ["unit"]=0 + } + }, + [1050]={ + ["next_chapter"]=1051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=155880, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=24941, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1070, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1051]={ + ["next_chapter"]=1052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158076, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=25292, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1080, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1052]={ + ["next_chapter"]=1053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160360, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=25658, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1053]={ + ["next_chapter"]=1054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162734, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=26037, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1100, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1054]={ + ["next_chapter"]=1055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165198, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=26432, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1110, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1055]={ + ["next_chapter"]=1056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=167756, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=26841, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1056]={ + ["next_chapter"]=1057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=170409, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=27265, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1130, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1057]={ + ["next_chapter"]=1058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=173158, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=27705, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1058]={ + ["next_chapter"]=1059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176005, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=28161, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1150, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1059]={ + ["next_chapter"]=1060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=178952, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=28632, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1160, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=114538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=105, + ["unit"]=0 + } + }, + [1060]={ + ["next_chapter"]=1061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=182001, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=29120, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1170, + ["unit"]=1 + }, + ["chapter_drop"]=36, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1061]={ + ["next_chapter"]=1062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=185153, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=29624, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1062]={ + ["next_chapter"]=1063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=188410, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=30146, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1190, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1063]={ + ["next_chapter"]=1064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=191773, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=30684, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1200, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1064]={ + ["next_chapter"]=1065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=195246, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=31239, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1065]={ + ["next_chapter"]=1066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=198828, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=31813, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1220, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1066]={ + ["next_chapter"]=1067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=202523, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=32404, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1230, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1067]={ + ["next_chapter"]=1068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=206331, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=33013, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1068]={ + ["next_chapter"]=1069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=210255, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=33641, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1069]={ + ["next_chapter"]=1070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=214295, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=34287, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1260, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=126238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=106, + ["unit"]=0 + } + }, + [1070]={ + ["next_chapter"]=1071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=218455, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=34953, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1270, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1071]={ + ["next_chapter"]=1072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=222735, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=35638, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1280, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1072]={ + ["next_chapter"]=1073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=227137, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=36342, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1290, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1073]={ + ["next_chapter"]=1074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=231663, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=37066, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1300, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1074]={ + ["next_chapter"]=1075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=236315, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=37810, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1310, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1075]={ + ["next_chapter"]=1076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=241095, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=38575, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1320, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1076]={ + ["next_chapter"]=1077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=246004, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=39361, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1330, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1077]={ + ["next_chapter"]=1078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=251043, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=40167, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1078]={ + ["next_chapter"]=1079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=256215, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=40994, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1350, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1079]={ + ["next_chapter"]=1080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=261522, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=41844, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1360, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=138938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=107, + ["unit"]=0 + } + }, + [1080]={ + ["next_chapter"]=1081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=266964, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=42714, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1081]={ + ["next_chapter"]=1082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=272545, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=43607, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1380, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1082]={ + ["next_chapter"]=1083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=278265, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=44522, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1083]={ + ["next_chapter"]=1084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=284126, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=45460, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1400, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1084]={ + ["next_chapter"]=1085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=290130, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=46421, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1410, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1085]={ + ["next_chapter"]=1086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=296278, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=47405, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1420, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1086]={ + ["next_chapter"]=1087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=302574, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=48412, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1430, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1087]={ + ["next_chapter"]=1088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=309017, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=49443, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1088]={ + ["next_chapter"]=1089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=315610, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=50498, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1450, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1089]={ + ["next_chapter"]=1090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=322354, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=51577, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1460, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=152638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=108, + ["unit"]=0 + } + }, + [1090]={ + ["next_chapter"]=1091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=329252, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=52680, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1470, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1091]={ + ["next_chapter"]=1092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=336305, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=53809, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1092]={ + ["next_chapter"]=1093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=343515, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=54962, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1093]={ + ["next_chapter"]=1094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350883, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=56141, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1500, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1094]={ + ["next_chapter"]=1095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=358411, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=57346, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1095]={ + ["next_chapter"]=1096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=366101, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=58576, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1096]={ + ["next_chapter"]=1097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=373955, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=59833, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1560, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1097]={ + ["next_chapter"]=1098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=381974, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=61116, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1580, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1098]={ + ["next_chapter"]=1099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=390160, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=62426, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1600, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1099]={ + ["next_chapter"]=1100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=398515, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=63762, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1620, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=167338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=109, + ["unit"]=0 + } + }, + [1100]={ + ["next_chapter"]=1101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=407040, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=65126, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1640, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1101]={ + ["next_chapter"]=1102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=415738, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=66518, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1660, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1102]={ + ["next_chapter"]=1103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=424609, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=67937, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1680, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1103]={ + ["next_chapter"]=1104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=433656, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=69385, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1700, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1104]={ + ["next_chapter"]=1105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=442881, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=70861, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1720, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1105]={ + ["next_chapter"]=1106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=452285, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=72366, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1740, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1106]={ + ["next_chapter"]=1107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=461869, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=73899, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1760, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1107]={ + ["next_chapter"]=1108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=471636, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=75462, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1780, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1108]={ + ["next_chapter"]=1109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=481588, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=77054, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1109]={ + ["next_chapter"]=1110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=491725, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=78676, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=183738, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=110, + ["unit"]=0 + } + }, + [1110]={ + ["next_chapter"]=1111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=502050, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=80328, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1840, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1111]={ + ["next_chapter"]=1112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=512565, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=82010, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1860, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1112]={ + ["next_chapter"]=1113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=523271, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=83723, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1880, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1113]={ + ["next_chapter"]=1114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=534169, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=85467, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1900, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1114]={ + ["next_chapter"]=1115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=545262, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=87242, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1920, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1115]={ + ["next_chapter"]=1116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=556552, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=89048, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1940, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1116]={ + ["next_chapter"]=1117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=568040, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=90886, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1117]={ + ["next_chapter"]=1118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=579727, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=92756, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=1980, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1118]={ + ["next_chapter"]=1119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=591616, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=94659, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1119]={ + ["next_chapter"]=1120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=603708, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=96593, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2020, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=202138, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=111, + ["unit"]=0 + } + }, + [1120]={ + ["next_chapter"]=1121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=616005, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=98561, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2040, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1121]={ + ["next_chapter"]=1122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=628509, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=100561, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1122]={ + ["next_chapter"]=1123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=641221, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=102595, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2080, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1123]={ + ["next_chapter"]=1124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=654143, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=104663, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2100, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1124]={ + ["next_chapter"]=1125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=667277, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=106764, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2120, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1125]={ + ["next_chapter"]=1126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=680625, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=108900, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2140, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1126]={ + ["next_chapter"]=1127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=694188, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=111070, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2160, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1127]={ + ["next_chapter"]=1128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=707968, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=113275, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2180, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1128]={ + ["next_chapter"]=1129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=721967, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=115515, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2200, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1129]={ + ["next_chapter"]=1130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=736186, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=117790, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2220, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=222538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=112, + ["unit"]=0 + } + }, + [1130]={ + ["next_chapter"]=1131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=750627, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=120100, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2240, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1131]={ + ["next_chapter"]=1132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=765292, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=122447, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2260, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1132]={ + ["next_chapter"]=1133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=780183, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=124829, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2280, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1133]={ + ["next_chapter"]=1134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=795301, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=127248, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2300, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1134]={ + ["next_chapter"]=1135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=810648, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=129704, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2320, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1135]={ + ["next_chapter"]=1136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=826226, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=132196, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2340, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1136]={ + ["next_chapter"]=1137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=842036, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=134726, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2360, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1137]={ + ["next_chapter"]=1138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=858081, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=137293, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2380, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1138]={ + ["next_chapter"]=1139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=874362, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=139898, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2400, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1139]={ + ["next_chapter"]=1140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=890880, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=142541, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2420, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=244938, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=113, + ["unit"]=0 + } + }, + [1140]={ + ["next_chapter"]=1141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=907638, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=145222, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2440, + ["unit"]=1 + }, + ["chapter_drop"]=37, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1141]={ + ["next_chapter"]=1142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=924637, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=147942, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2460, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1142]={ + ["next_chapter"]=1143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=941878, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=150701, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2480, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1143]={ + ["next_chapter"]=1144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=959364, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=153498, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1144]={ + ["next_chapter"]=1145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=977097, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=156335, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2530, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1145]={ + ["next_chapter"]=1146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=995077, + ["unit"]=3 + }, + ["hp_coefficient"]={ + ["value"]=159212, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2560, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1146]={ + ["next_chapter"]=1147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1013, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=162129, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2590, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1147]={ + ["next_chapter"]=1148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1032, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=165086, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2620, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1148]={ + ["next_chapter"]=1149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1051, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=168084, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2650, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1149]={ + ["next_chapter"]=1150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1070, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=171122, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2680, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=269338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=114, + ["unit"]=0 + } + }, + [1150]={ + ["next_chapter"]=1151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1089, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=174202, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2710, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1151]={ + ["next_chapter"]=1152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1108, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=177322, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2740, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1152]={ + ["next_chapter"]=1153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1128, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=180485, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2770, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1153]={ + ["next_chapter"]=1154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1148, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=183689, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2800, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1154]={ + ["next_chapter"]=1155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1168, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=186935, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2830, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1155]={ + ["next_chapter"]=1156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1189, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=190224, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2860, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1156]={ + ["next_chapter"]=1157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1210, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=193556, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2890, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1157]={ + ["next_chapter"]=1158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1231, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=196930, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2920, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1158]={ + ["next_chapter"]=1159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1252, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=200348, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2950, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1159]={ + ["next_chapter"]=1160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1274, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=203809, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=2980, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=296438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=115, + ["unit"]=0 + } + }, + [1160]={ + ["next_chapter"]=1161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1296, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=207315, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3010, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1161]={ + ["next_chapter"]=1162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1318, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=210864, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3040, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1162]={ + ["next_chapter"]=1163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1340, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=214457, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3070, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1163]={ + ["next_chapter"]=1164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1363, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=218096, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3100, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1164]={ + ["next_chapter"]=1165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1386, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=221779, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3130, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1165]={ + ["next_chapter"]=1166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1409, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=225507, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1166]={ + ["next_chapter"]=1167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1433, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=229281, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3190, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1167]={ + ["next_chapter"]=1168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1457, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=233101, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3220, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1168]={ + ["next_chapter"]=1169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1481, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=236966, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3250, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1169]={ + ["next_chapter"]=1170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1505, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=240878, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=278744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3280, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=326538, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=116, + ["unit"]=0 + } + }, + [1170]={ + ["next_chapter"]=1171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=1530, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=244836, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3310, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1171]={ + ["next_chapter"]=1172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1555, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=248842, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=284744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3340, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1172]={ + ["next_chapter"]=1173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1581, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=252894, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3370, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1173]={ + ["next_chapter"]=1174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1606, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=256994, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=290744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3400, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1174]={ + ["next_chapter"]=1175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1632, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=261141, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3430, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1175]={ + ["next_chapter"]=1176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1658, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=265337, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3460, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1176]={ + ["next_chapter"]=1177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1685, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=269580, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3490, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1177]={ + ["next_chapter"]=1178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1712, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=273873, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3520, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1178]={ + ["next_chapter"]=1179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1739, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=278214, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3560, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1179]={ + ["next_chapter"]=1180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1766, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=282603, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3600, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=359638, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=117, + ["unit"]=0 + } + }, + [1180]={ + ["next_chapter"]=1181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1794, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=287043, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=311744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3640, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1181]={ + ["next_chapter"]=1182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1822, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=291532, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=314744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3680, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1182]={ + ["next_chapter"]=1183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1850, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=296070, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=317744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3720, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1183]={ + ["next_chapter"]=1184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1879, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=300659, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3760, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1184]={ + ["next_chapter"]=1185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1908, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=305299, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3800, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1185]={ + ["next_chapter"]=1186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1937, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=309989, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=326744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3840, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1186]={ + ["next_chapter"]=1187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1967, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=314730, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3880, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1187]={ + ["next_chapter"]=1188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1997, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=319522, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3920, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1188]={ + ["next_chapter"]=1189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2027, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=324366, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=3960, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1189]={ + ["next_chapter"]=1190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2058, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=329261, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=396038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=118, + ["unit"]=0 + } + }, + [1190]={ + ["next_chapter"]=1191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=2089, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=334209, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=343744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4040, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1191]={ + ["next_chapter"]=1192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2120, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=339209, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=347744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4080, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1192]={ + ["next_chapter"]=1193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2152, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=344262, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=351744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4120, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1193]={ + ["next_chapter"]=1194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2184, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=349368, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=355744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4160, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1194]={ + ["next_chapter"]=1195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2216, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=354526, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=359744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4200, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1195]={ + ["next_chapter"]=1196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2248, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=359739, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=363744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4240, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1196]={ + ["next_chapter"]=1197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2281, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=365004, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=367744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4280, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1197]={ + ["next_chapter"]=1198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2315, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=370324, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=371744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4320, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1198]={ + ["next_chapter"]=1199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2348, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=375699, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=375744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4360, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1199]={ + ["next_chapter"]=1200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2382, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=381128, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=379744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4400, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=436438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=119, + ["unit"]=0 + } + }, + [1200]={ + ["next_chapter"]=1201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2416, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=386611, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=383744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4440, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1201]={ + ["next_chapter"]=1202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2451, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=392150, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=387744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4480, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1202]={ + ["next_chapter"]=1203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2486, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=397744, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=391744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4520, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1203]={ + ["next_chapter"]=1204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2521, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=403394, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=395744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4570, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1204]={ + ["next_chapter"]=1205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2557, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=409100, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=399744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4620, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1205]={ + ["next_chapter"]=1206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2593, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=414862, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=403744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4670, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1206]={ + ["next_chapter"]=1207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2629, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=420680, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=407744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4720, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1207]={ + ["next_chapter"]=1208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2666, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=426555, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=411744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4770, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1208]={ + ["next_chapter"]=1209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2703, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=432488, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=415744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4820, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1209]={ + ["next_chapter"]=1210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2740, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=438477, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=419744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4870, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=480838, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=120, + ["unit"]=0 + } + }, + [1210]={ + ["next_chapter"]=1211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=2778, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=444524, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=423744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4920, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1211]={ + ["next_chapter"]=1212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2816, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=450629, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=427744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=4970, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1212]={ + ["next_chapter"]=1213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2855, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=456793, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=432744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5020, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1213]={ + ["next_chapter"]=1214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2894, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=463014, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=437744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5070, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1214]={ + ["next_chapter"]=1215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2933, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=469295, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=442744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5120, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1215]={ + ["next_chapter"]=1216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2973, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=475634, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=447744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5170, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1216]={ + ["next_chapter"]=1217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3013, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=482032, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=452744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5220, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1217]={ + ["next_chapter"]=1218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3053, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=488490, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=457744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5270, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1218]={ + ["next_chapter"]=1219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3094, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=495008, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=462744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5320, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1219]={ + ["next_chapter"]=1220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3135, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=501586, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=467744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5370, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=530038, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=121, + ["unit"]=0 + } + }, + [1220]={ + ["next_chapter"]=1221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=3176, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=508224, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=472744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5420, + ["unit"]=1 + }, + ["chapter_drop"]=38, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1221]={ + ["next_chapter"]=1222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3218, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=514923, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=477744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5470, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1222]={ + ["next_chapter"]=1223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3261, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=521683, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=482744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5520, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1223]={ + ["next_chapter"]=1224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3303, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=528504, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=487744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5580, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1224]={ + ["next_chapter"]=1225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3346, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=535386, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=492744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5640, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1225]={ + ["next_chapter"]=1226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3390, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=542330, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=497744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5700, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1226]={ + ["next_chapter"]=1227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3433, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=549337, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=502744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5760, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1227]={ + ["next_chapter"]=1228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3478, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=556405, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=507744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5820, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1228]={ + ["next_chapter"]=1229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3522, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=563536, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=512744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5880, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1229]={ + ["next_chapter"]=1230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3567, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=570730, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=517744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=5940, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=584238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=122, + ["unit"]=0 + } + }, + [1230]={ + ["next_chapter"]=1231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=3612, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=577987, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=523744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1231]={ + ["next_chapter"]=1232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3658, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=585307, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=529744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6060, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1232]={ + ["next_chapter"]=1233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3704, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=592691, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=535744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6120, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1233]={ + ["next_chapter"]=1234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3751, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=600139, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=541744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6180, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1234]={ + ["next_chapter"]=1235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3798, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=607651, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=547744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6240, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1235]={ + ["next_chapter"]=1236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3845, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=615227, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=553744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6300, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1236]={ + ["next_chapter"]=1237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3893, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=622868, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=559744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6360, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1237]={ + ["next_chapter"]=1238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3941, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=630575, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=565744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6420, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1238]={ + ["next_chapter"]=1239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3990, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=638346, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=571744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6480, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1239]={ + ["next_chapter"]=1240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4039, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=646183, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=577744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6540, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=644238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=123, + ["unit"]=0 + } + }, + [1240]={ + ["next_chapter"]=1241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=4088, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=654087, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=583744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6610, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1241]={ + ["next_chapter"]=1242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4138, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=662056, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=589744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6680, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1242]={ + ["next_chapter"]=1243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4188, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=670091, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=595744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6750, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1243]={ + ["next_chapter"]=1244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4239, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=678194, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=601744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6820, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1244]={ + ["next_chapter"]=1245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4290, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=686363, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=607744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6890, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1245]={ + ["next_chapter"]=1246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4341, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=694599, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=613744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=6960, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1246]={ + ["next_chapter"]=1247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4393, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=702903, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=620744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7030, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1247]={ + ["next_chapter"]=1248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4445, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=711275, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=627744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7100, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1248]={ + ["next_chapter"]=1249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4498, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=719715, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=634744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7170, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1249]={ + ["next_chapter"]=1250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4551, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=728223, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=641744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7240, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=710338, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=124, + ["unit"]=0 + } + }, + [1250]={ + ["next_chapter"]=1251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=4605, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=736800, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=648744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7310, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1251]={ + ["next_chapter"]=1252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4659, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=745446, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=655744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7380, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1252]={ + ["next_chapter"]=1253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4714, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=754161, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=662744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7450, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1253]={ + ["next_chapter"]=1254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4768, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=762945, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=669744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7520, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1254]={ + ["next_chapter"]=1255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4824, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=771799, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=676744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7600, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1255]={ + ["next_chapter"]=1256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4880, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=780723, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=683744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7680, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1256]={ + ["next_chapter"]=1257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4936, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=789717, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=690744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7760, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1257]={ + ["next_chapter"]=1258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4992, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=798782, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=697744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7840, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1258]={ + ["next_chapter"]=1259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5049, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=807918, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=704744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=7920, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1259]={ + ["next_chapter"]=1260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5107, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=817124, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=712744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=783438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=125, + ["unit"]=0 + } + }, + [1260]={ + ["next_chapter"]=1261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=5165, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=826402, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=720744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8080, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1261]={ + ["next_chapter"]=1262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5223, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=835752, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=728744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8160, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1262]={ + ["next_chapter"]=1263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5282, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=845174, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=736744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8240, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1263]={ + ["next_chapter"]=1264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5342, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=854668, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=744744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8320, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1264]={ + ["next_chapter"]=1265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5401, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=864234, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=752744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8400, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1265]={ + ["next_chapter"]=1266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5462, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=873873, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=760744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8480, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1266]={ + ["next_chapter"]=1267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5522, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=883585, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=768744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8560, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1267]={ + ["next_chapter"]=1268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5584, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=893371, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=776744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8650, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1268]={ + ["next_chapter"]=1269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5645, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=903230, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=784744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8740, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1269]={ + ["next_chapter"]=1270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5707, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=913162, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=792744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8830, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=864238, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=126, + ["unit"]=0 + } + }, + [1270]={ + ["next_chapter"]=1271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=5770, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=923169, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=800744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=8920, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1271]={ + ["next_chapter"]=1272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5833, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=933251, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=809744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9010, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1272]={ + ["next_chapter"]=1273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5896, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=943407, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=818744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9100, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1273]={ + ["next_chapter"]=1274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5960, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=953638, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=827744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9190, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1274]={ + ["next_chapter"]=1275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6025, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=963944, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=836744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9280, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1275]={ + ["next_chapter"]=1276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6090, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=974326, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=845744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9370, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1276]={ + ["next_chapter"]=1277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6155, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=984783, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=854744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9460, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1277]={ + ["next_chapter"]=1278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6221, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=995317, + ["unit"]=4 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=863744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9550, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1278]={ + ["next_chapter"]=1279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6287, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1006, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=872744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9650, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1279]={ + ["next_chapter"]=1280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6354, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1017, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=881744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9750, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=953438, + ["unit"]=1 + }, + ["grasp_mastery_reward"]={ + ["value"]=127, + ["unit"]=0 + } + }, + [1280]={ + ["next_chapter"]=1281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6421, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1027, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=890744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9850, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1281]={ + ["next_chapter"]=1282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6489, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=899744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=9950, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1282]={ + ["next_chapter"]=1283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6557, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1049, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=909744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10050, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1283]={ + ["next_chapter"]=1284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6626, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1060, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=919744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10200, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1284]={ + ["next_chapter"]=1285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6695, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1071, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=929744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10300, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1285]={ + ["next_chapter"]=1286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6765, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1082, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=939744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10400, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1286]={ + ["next_chapter"]=1287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6835, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1094, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=949744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10500, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1287]={ + ["next_chapter"]=1288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6906, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1105, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=959744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10600, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1288]={ + ["next_chapter"]=1289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6977, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1116, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=969744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10700, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1289]={ + ["next_chapter"]=1290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7048, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1128, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=979744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10800, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1052, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=128, + ["unit"]=0 + } + }, + [1290]={ + ["next_chapter"]=1291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=7121, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1139, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=989744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=10900, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1291]={ + ["next_chapter"]=1292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7193, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1151, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=999744, + ["unit"]=1 + }, + ["idle_gold"]={ + ["value"]=11000, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1292]={ + ["next_chapter"]=1293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7266, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1163, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1010, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11100, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1293]={ + ["next_chapter"]=1294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7340, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1174, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1020, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11200, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1294]={ + ["next_chapter"]=1295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7414, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1186, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1030, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11300, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1295]={ + ["next_chapter"]=1296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7489, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1198, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1040, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11400, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1296]={ + ["next_chapter"]=1297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7564, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1210, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1050, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11500, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1297]={ + ["next_chapter"]=1298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7640, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1222, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1060, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11600, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1298]={ + ["next_chapter"]=1299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7716, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1235, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1070, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11700, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1299]={ + ["next_chapter"]=1300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7793, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1247, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1080, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11800, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1161, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=129, + ["unit"]=0 + } + }, + [1300]={ + ["next_chapter"]=1301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=7870, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1259, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11900, + ["unit"]=1 + }, + ["chapter_drop"]=39, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1301]={ + ["next_chapter"]=1302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7948, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1272, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1100, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1302]={ + ["next_chapter"]=1303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8026, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1284, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1110, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12100, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1303]={ + ["next_chapter"]=1304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8105, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1297, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1120, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1304]={ + ["next_chapter"]=1305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8184, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1309, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1130, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12300, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1305]={ + ["next_chapter"]=1306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8264, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1322, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1140, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1306]={ + ["next_chapter"]=1307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8344, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1335, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1150, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12500, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1307]={ + ["next_chapter"]=1308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8425, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1348, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1160, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1308]={ + ["next_chapter"]=1309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8507, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1361, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1170, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12700, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1309]={ + ["next_chapter"]=1310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8589, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1374, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1180, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=130, + ["unit"]=0 + } + }, + [1310]={ + ["next_chapter"]=1311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=8671, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1387, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=12900, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1311]={ + ["next_chapter"]=1312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8754, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1401, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1200, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1312]={ + ["next_chapter"]=1313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8838, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1414, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1210, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13100, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1313]={ + ["next_chapter"]=1314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8922, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1428, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1220, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1314]={ + ["next_chapter"]=1315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9007, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1441, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1230, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13300, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1315]={ + ["next_chapter"]=1316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9092, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1455, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1240, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1316]={ + ["next_chapter"]=1317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9177, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1468, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1250, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13500, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1317]={ + ["next_chapter"]=1318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9264, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1482, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1260, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1318]={ + ["next_chapter"]=1319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9350, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1496, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1270, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13700, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1319]={ + ["next_chapter"]=1320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9438, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1510, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=131, + ["unit"]=0 + } + }, + [1320]={ + ["next_chapter"]=1321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=9526, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1524, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=13900, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1321]={ + ["next_chapter"]=1322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9614, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1538, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1300, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1322]={ + ["next_chapter"]=1323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9703, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1553, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1310, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14100, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1323]={ + ["next_chapter"]=1324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9793, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1567, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1320, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1324]={ + ["next_chapter"]=1325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9883, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1581, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1330, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14300, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1325]={ + ["next_chapter"]=1326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9974, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1596, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1340, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1326]={ + ["next_chapter"]=1327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10065, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1610, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1350, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14500, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1327]={ + ["next_chapter"]=1328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10157, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1625, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1360, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1328]={ + ["next_chapter"]=1329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10249, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1640, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1370, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14700, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1329]={ + ["next_chapter"]=1330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10342, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1655, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1380, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1548, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=132, + ["unit"]=0 + } + }, + [1330]={ + ["next_chapter"]=1331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=10435, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1670, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=14900, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1331]={ + ["next_chapter"]=1332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10529, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1685, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1400, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=15000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1332]={ + ["next_chapter"]=1333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10624, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1700, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1410, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=15200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1333]={ + ["next_chapter"]=1334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10719, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1715, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1420, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=15400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1334]={ + ["next_chapter"]=1335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10815, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1730, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1430, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=15600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1335]={ + ["next_chapter"]=1336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10911, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1746, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1440, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=15800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1336]={ + ["next_chapter"]=1337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11008, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1761, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1450, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=16000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1337]={ + ["next_chapter"]=1338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11106, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1777, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1460, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=16200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1338]={ + ["next_chapter"]=1339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11204, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1793, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1470, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=16400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1339]={ + ["next_chapter"]=1340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11303, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1808, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1480, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=16600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1697, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=133, + ["unit"]=0 + } + }, + [1340]={ + ["next_chapter"]=1341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=11402, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1824, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=16800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1341]={ + ["next_chapter"]=1342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11502, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1840, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1500, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=17000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1342]={ + ["next_chapter"]=1343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11602, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1856, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1510, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=17200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1343]={ + ["next_chapter"]=1344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11703, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1872, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1520, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=17400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1344]={ + ["next_chapter"]=1345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11805, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1889, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1530, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=17600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1345]={ + ["next_chapter"]=1346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11907, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1905, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1540, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=17800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1346]={ + ["next_chapter"]=1347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12010, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1922, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1550, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=18000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1347]={ + ["next_chapter"]=1348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12113, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1938, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1560, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=18200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1348]={ + ["next_chapter"]=1349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12217, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1955, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1570, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=18400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1349]={ + ["next_chapter"]=1350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12322, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1971, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1580, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=18600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=1865, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=134, + ["unit"]=0 + } + }, + [1350]={ + ["next_chapter"]=1351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=12427, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=1988, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=18800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1351]={ + ["next_chapter"]=1352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12533, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2005, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1600, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=19000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1352]={ + ["next_chapter"]=1353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12639, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2022, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1610, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=19200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1353]={ + ["next_chapter"]=1354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12746, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2039, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1620, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=19400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1354]={ + ["next_chapter"]=1355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12854, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2057, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1630, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=19600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1355]={ + ["next_chapter"]=1356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12962, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2074, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1640, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=19800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1356]={ + ["next_chapter"]=1357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13071, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2091, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1660, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1357]={ + ["next_chapter"]=1358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13180, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2109, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1680, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=20200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1358]={ + ["next_chapter"]=1359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13290, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2126, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1700, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=20400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1359]={ + ["next_chapter"]=1360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13401, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2144, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1720, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=20600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2053, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=135, + ["unit"]=0 + } + }, + [1360]={ + ["next_chapter"]=1361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=13512, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2162, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1740, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=20800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1361]={ + ["next_chapter"]=1362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13624, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2180, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1760, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=21000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1362]={ + ["next_chapter"]=1363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13737, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2198, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1780, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=21200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1363]={ + ["next_chapter"]=1364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13850, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2216, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1800, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=21400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1364]={ + ["next_chapter"]=1365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13964, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2234, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1820, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=21600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1365]={ + ["next_chapter"]=1366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14078, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2252, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1840, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=21800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1366]={ + ["next_chapter"]=1367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14193, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2271, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1860, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=22000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1367]={ + ["next_chapter"]=1368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14309, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2289, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1880, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=22200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1368]={ + ["next_chapter"]=1369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14425, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2308, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1900, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=22400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1369]={ + ["next_chapter"]=1370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14542, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2327, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1920, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=22600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2261, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=136, + ["unit"]=0 + } + }, + [1370]={ + ["next_chapter"]=1371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=14659, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2346, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1940, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=22800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1371]={ + ["next_chapter"]=1372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14778, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2364, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1960, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=23000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1372]={ + ["next_chapter"]=1373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14896, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2383, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1980, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=23200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1373]={ + ["next_chapter"]=1374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15016, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2403, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=23400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1374]={ + ["next_chapter"]=1375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15136, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2422, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2020, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=23600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1375]={ + ["next_chapter"]=1376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15257, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2441, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2040, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=23800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1376]={ + ["next_chapter"]=1377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15378, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2461, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2060, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=24000, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1377]={ + ["next_chapter"]=1378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15500, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2480, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2080, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=24200, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1378]={ + ["next_chapter"]=1379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15623, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2500, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2100, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=24400, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1379]={ + ["next_chapter"]=1380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15746, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2519, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2120, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=24600, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2489, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=137, + ["unit"]=0 + } + }, + [1380]={ + ["next_chapter"]=1381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=15870, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2539, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2140, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=24800, + ["unit"]=1 + }, + ["chapter_drop"]=40, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1381]={ + ["next_chapter"]=1382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15995, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2559, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2160, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=25000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1382]={ + ["next_chapter"]=1383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16120, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2579, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2180, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=25300, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1383]={ + ["next_chapter"]=1384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16246, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2599, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2200, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=25600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1384]={ + ["next_chapter"]=1385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16373, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2620, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2220, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=25900, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1385]={ + ["next_chapter"]=1386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16500, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2640, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2240, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=26200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1386]={ + ["next_chapter"]=1387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16628, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2661, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2260, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=26500, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1387]={ + ["next_chapter"]=1388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16757, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2681, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2280, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=26800, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1388]={ + ["next_chapter"]=1389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16886, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2702, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2300, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=27100, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1389]={ + ["next_chapter"]=1390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17016, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2723, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2320, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=27400, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=2737, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=138, + ["unit"]=0 + } + }, + [1390]={ + ["next_chapter"]=1391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=17147, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2744, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2340, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=27700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1391]={ + ["next_chapter"]=1392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17278, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2765, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2360, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=28000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1392]={ + ["next_chapter"]=1393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17410, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2786, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2380, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=28300, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1393]={ + ["next_chapter"]=1394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17543, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2807, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2400, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=28600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1394]={ + ["next_chapter"]=1395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17676, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2828, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2420, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=28900, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1395]={ + ["next_chapter"]=1396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17810, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2850, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2440, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=29200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1396]={ + ["next_chapter"]=1397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17945, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2871, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2460, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=29500, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1397]={ + ["next_chapter"]=1398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18080, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2893, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2480, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=29800, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1398]={ + ["next_chapter"]=1399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18216, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2915, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2510, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=30100, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1399]={ + ["next_chapter"]=1400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18353, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2936, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2540, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=30400, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3014, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=139, + ["unit"]=0 + } + }, + [1400]={ + ["next_chapter"]=1401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=18491, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2958, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2570, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=30700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1401]={ + ["next_chapter"]=1402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18629, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=2981, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2600, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=31000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1402]={ + ["next_chapter"]=1403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18767, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3003, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2630, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=31300, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1403]={ + ["next_chapter"]=1404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18907, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3025, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2660, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=31600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1404]={ + ["next_chapter"]=1405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19047, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3048, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=31900, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1405]={ + ["next_chapter"]=1406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19188, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3070, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2720, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=32200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1406]={ + ["next_chapter"]=1407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19330, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3093, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2750, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=32500, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1407]={ + ["next_chapter"]=1408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19472, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3116, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2780, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=32800, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1408]={ + ["next_chapter"]=1409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19615, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3138, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2810, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=33100, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1409]={ + ["next_chapter"]=1410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19759, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3161, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2840, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=33400, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3321, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=140, + ["unit"]=0 + } + }, + [1410]={ + ["next_chapter"]=1411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=19903, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3184, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2870, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=33700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1411]={ + ["next_chapter"]=1412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20048, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3208, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2900, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=34000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1412]={ + ["next_chapter"]=1413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20194, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3231, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2930, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=34300, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1413]={ + ["next_chapter"]=1414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20341, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3254, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2960, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=34600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1414]={ + ["next_chapter"]=1415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20488, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3278, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=34900, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1415]={ + ["next_chapter"]=1416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20636, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3302, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3020, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=35200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1416]={ + ["next_chapter"]=1417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20784, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3326, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3050, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=35600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1417]={ + ["next_chapter"]=1418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20934, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3349, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3080, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=36000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1418]={ + ["next_chapter"]=1419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21084, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3373, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3110, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=36400, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1419]={ + ["next_chapter"]=1420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21235, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3398, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3140, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=36800, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=3658, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=141, + ["unit"]=0 + } + }, + [1420]={ + ["next_chapter"]=1421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=21386, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3422, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3170, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=37200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1421]={ + ["next_chapter"]=1422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21538, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3446, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3200, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=37600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1422]={ + ["next_chapter"]=1423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21691, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3471, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3230, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=38000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1423]={ + ["next_chapter"]=1424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21845, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3495, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3260, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=38400, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1424]={ + ["next_chapter"]=1425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22000, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3520, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=38800, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1425]={ + ["next_chapter"]=1426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22155, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3545, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3320, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=39200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1426]={ + ["next_chapter"]=1427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22311, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3570, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3350, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=39600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1427]={ + ["next_chapter"]=1428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22467, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3595, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1428]={ + ["next_chapter"]=1429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22625, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3620, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3430, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=40400, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1429]={ + ["next_chapter"]=1430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22783, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3645, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3470, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=40800, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=142, + ["unit"]=0 + } + }, + [1430]={ + ["next_chapter"]=1431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=22942, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3671, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3510, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=41200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1431]={ + ["next_chapter"]=1432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23101, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3696, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3550, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=41600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1432]={ + ["next_chapter"]=1433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23262, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3722, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=42000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1433]={ + ["next_chapter"]=1434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23423, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3748, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3630, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=42400, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1434]={ + ["next_chapter"]=1435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23585, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3774, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3670, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=42800, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1435]={ + ["next_chapter"]=1436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23747, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3800, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3710, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=43200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1436]={ + ["next_chapter"]=1437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23910, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3826, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3750, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=43600, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1437]={ + ["next_chapter"]=1438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24074, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3852, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=44000, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1438]={ + ["next_chapter"]=1439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24239, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3878, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3830, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=44400, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1439]={ + ["next_chapter"]=1440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24405, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3905, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3870, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=44800, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4442, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=143, + ["unit"]=0 + } + }, + [1440]={ + ["next_chapter"]=1441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=24571, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3931, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3910, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=45200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1441]={ + ["next_chapter"]=1442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24738, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3958, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3950, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=45700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1442]={ + ["next_chapter"]=1443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24906, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=3985, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=46200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1443]={ + ["next_chapter"]=1444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25075, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4012, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4030, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=46700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1444]={ + ["next_chapter"]=1445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25244, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4039, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4070, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=47200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1445]={ + ["next_chapter"]=1446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25414, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4066, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4110, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=47700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1446]={ + ["next_chapter"]=1447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25585, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4094, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4150, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=48200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1447]={ + ["next_chapter"]=1448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25757, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4121, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=48700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1448]={ + ["next_chapter"]=1449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25929, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4149, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4230, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=49200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1449]={ + ["next_chapter"]=1450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26103, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4176, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4270, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=49700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=4894, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=144, + ["unit"]=0 + } + }, + [1450]={ + ["next_chapter"]=1451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=26277, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4204, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4320, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=50200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1451]={ + ["next_chapter"]=1452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26451, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4232, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4370, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=50700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1452]={ + ["next_chapter"]=1453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26627, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4260, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4420, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=51200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1453]={ + ["next_chapter"]=1454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26803, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4289, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4470, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=51700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1454]={ + ["next_chapter"]=1455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26980, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4317, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4520, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=52200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1455]={ + ["next_chapter"]=1456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27158, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4345, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4570, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=52700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1456]={ + ["next_chapter"]=1457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27337, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4374, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4620, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=53200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1457]={ + ["next_chapter"]=1458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27516, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4403, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4670, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=53700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1458]={ + ["next_chapter"]=1459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27696, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4431, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4720, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=54200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1459]={ + ["next_chapter"]=1460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27878, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4460, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4770, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=54700, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5396, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=145, + ["unit"]=0 + } + }, + [1460]={ + ["next_chapter"]=1461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=28059, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4489, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4820, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=55200, + ["unit"]=1 + }, + ["chapter_drop"]=41, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1461]={ + ["next_chapter"]=1462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28242, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4519, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4870, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=55800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1462]={ + ["next_chapter"]=1463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28425, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4548, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4920, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=56400, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1463]={ + ["next_chapter"]=1464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28610, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4578, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4970, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=57000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1464]={ + ["next_chapter"]=1465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28795, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4607, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5020, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=57600, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1465]={ + ["next_chapter"]=1466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28980, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4637, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5070, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=58200, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1466]={ + ["next_chapter"]=1467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29167, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4667, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5120, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=58800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1467]={ + ["next_chapter"]=1468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29354, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4697, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5170, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=59400, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1468]={ + ["next_chapter"]=1469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29543, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4727, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5230, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1469]={ + ["next_chapter"]=1470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29732, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4757, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=60600, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=5948, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=146, + ["unit"]=0 + } + }, + [1470]={ + ["next_chapter"]=1471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=29921, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4787, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5350, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=61200, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1471]={ + ["next_chapter"]=1472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30112, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4818, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5410, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=61800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1472]={ + ["next_chapter"]=1473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30303, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4849, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5470, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=62400, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1473]={ + ["next_chapter"]=1474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30496, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4879, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5530, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=63000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1474]={ + ["next_chapter"]=1475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30689, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4910, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=63600, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1475]={ + ["next_chapter"]=1476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30883, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4941, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5650, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=64200, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1476]={ + ["next_chapter"]=1477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31077, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=4972, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5710, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=64800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1477]={ + ["next_chapter"]=1478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31273, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5004, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5770, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=65400, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1478]={ + ["next_chapter"]=1479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31469, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5035, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5830, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=66100, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1479]={ + ["next_chapter"]=1480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31666, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5067, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=66800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=6560, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=147, + ["unit"]=0 + } + }, + [1480]={ + ["next_chapter"]=1481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=31864, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5098, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5950, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=67500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1481]={ + ["next_chapter"]=1482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32063, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5130, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6010, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=68200, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1482]={ + ["next_chapter"]=1483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32263, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5162, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6070, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=68900, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1483]={ + ["next_chapter"]=1484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32463, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5194, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6130, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=69600, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1484]={ + ["next_chapter"]=1485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32665, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5226, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6200, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=70300, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1485]={ + ["next_chapter"]=1486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32867, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5259, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6270, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=71000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1486]={ + ["next_chapter"]=1487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33070, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5291, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6340, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=71700, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1487]={ + ["next_chapter"]=1488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33273, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5324, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6410, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=72400, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1488]={ + ["next_chapter"]=1489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33478, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5357, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6480, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=73100, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1489]={ + ["next_chapter"]=1490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33684, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5389, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6550, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=73800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7235, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=148, + ["unit"]=0 + } + }, + [1490]={ + ["next_chapter"]=1491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=33890, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5422, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6620, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=74500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1491]={ + ["next_chapter"]=1492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34097, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5456, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=75200, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1492]={ + ["next_chapter"]=1493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34305, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5489, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6760, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=76000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1493]={ + ["next_chapter"]=1494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34514, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5522, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6830, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=76800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1494]={ + ["next_chapter"]=1495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34724, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5556, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6900, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=77600, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1495]={ + ["next_chapter"]=1496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34934, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5589, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6970, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=78400, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1496]={ + ["next_chapter"]=1497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35146, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5623, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7040, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=79200, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1497]={ + ["next_chapter"]=1498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35358, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5657, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7120, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1498]={ + ["next_chapter"]=1499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35571, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5691, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7200, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=80800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1499]={ + ["next_chapter"]=1500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35785, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=5726, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7280, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=81600, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=7980, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=149, + ["unit"]=0 + } + }, + [1500]={ + ["next_chapter"]=1501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=36000, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6120, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7360, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=82400, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1501]={ + ["next_chapter"]=1502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36000, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6120, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7440, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=83200, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1502]={ + ["next_chapter"]=1503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36001, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6120, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7520, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=84000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1503]={ + ["next_chapter"]=1504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36002, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6120, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7600, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=84800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1504]={ + ["next_chapter"]=1505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36005, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6121, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7680, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=85600, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1505]={ + ["next_chapter"]=1506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36009, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6122, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7760, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=86500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1506]={ + ["next_chapter"]=1507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36015, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6123, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7840, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=87400, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1507]={ + ["next_chapter"]=1508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36025, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6124, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7920, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=88300, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1508]={ + ["next_chapter"]=1509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36037, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6126, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=89200, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1509]={ + ["next_chapter"]=1510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36052, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6129, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=90100, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=8804, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=150, + ["unit"]=0 + } + }, + [1510]={ + ["next_chapter"]=1511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=36072, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6132, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8180, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=91000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1511]={ + ["next_chapter"]=1512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36095, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6136, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8270, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=91900, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1512]={ + ["next_chapter"]=1513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36124, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6141, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8360, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=92800, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1513]={ + ["next_chapter"]=1514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36158, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6147, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8450, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=93700, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1514]={ + ["next_chapter"]=1515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36197, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6153, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8540, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=94600, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1515]={ + ["next_chapter"]=1516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36242, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6161, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8630, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=95500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1516]={ + ["next_chapter"]=1517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36294, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6170, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8720, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=96500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1517]={ + ["next_chapter"]=1518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36352, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6180, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8810, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=97500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1518]={ + ["next_chapter"]=1519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36418, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6191, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8900, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=98500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1519]={ + ["next_chapter"]=1520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36492, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6204, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=99500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=9714, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=151, + ["unit"]=0 + } + }, + [1520]={ + ["next_chapter"]=1521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=36574, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6218, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=100500, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1521]={ + ["next_chapter"]=1522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36664, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6233, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=102000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1522]={ + ["next_chapter"]=1523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36764, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6250, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=103000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1523]={ + ["next_chapter"]=1524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36873, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6268, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=104000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1524]={ + ["next_chapter"]=1525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36991, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6289, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=105000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1525]={ + ["next_chapter"]=1526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37121, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6310, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=106000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1526]={ + ["next_chapter"]=1527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37260, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6334, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=107000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1527]={ + ["next_chapter"]=1528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37412, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6360, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=108000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1528]={ + ["next_chapter"]=1529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37574, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6388, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=109000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1529]={ + ["next_chapter"]=1530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37749, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6417, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=110000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=10719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=152, + ["unit"]=0 + } + }, + [1530]={ + ["next_chapter"]=1531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=37936, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6449, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=111000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1531]={ + ["next_chapter"]=1532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38136, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6483, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=112000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1532]={ + ["next_chapter"]=1533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38350, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6519, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=113000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1533]={ + ["next_chapter"]=1534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38577, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6558, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=114000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1534]={ + ["next_chapter"]=1535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38819, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6599, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=115000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1535]={ + ["next_chapter"]=1536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39075, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6643, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=116000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1536]={ + ["next_chapter"]=1537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39346, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6689, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=117000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1537]={ + ["next_chapter"]=1538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39632, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6738, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=118000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1538]={ + ["next_chapter"]=1539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39935, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6789, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=119000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1539]={ + ["next_chapter"]=1540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40254, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6843, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=120000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=11829, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=153, + ["unit"]=0 + } + }, + [1540]={ + ["next_chapter"]=1541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=40590, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6900, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=121000, + ["unit"]=1 + }, + ["chapter_drop"]=42, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1541]={ + ["next_chapter"]=1542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40942, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=6960, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=122000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1542]={ + ["next_chapter"]=1543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41313, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7023, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=123000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1543]={ + ["next_chapter"]=1544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41702, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7089, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=124000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1544]={ + ["next_chapter"]=1545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42109, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7158, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=125000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1545]={ + ["next_chapter"]=1546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42535, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7231, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=126000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1546]={ + ["next_chapter"]=1547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42980, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7307, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=127000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1547]={ + ["next_chapter"]=1548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43445, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7386, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=128000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1548]={ + ["next_chapter"]=1549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43931, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7468, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=129000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1549]={ + ["next_chapter"]=1550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44437, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7554, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=130000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=13039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=154, + ["unit"]=0 + } + }, + [1550]={ + ["next_chapter"]=1551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=44964, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7644, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=131000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1551]={ + ["next_chapter"]=1552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45513, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7737, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=132000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1552]={ + ["next_chapter"]=1553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46083, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7834, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=133000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1553]={ + ["next_chapter"]=1554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46676, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=7935, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=134000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1554]={ + ["next_chapter"]=1555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47292, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=8040, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=135000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1555]={ + ["next_chapter"]=1556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47931, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=8148, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=136000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1556]={ + ["next_chapter"]=1557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48594, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=8261, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=137000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1557]={ + ["next_chapter"]=1558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49281, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=8378, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=138000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1558]={ + ["next_chapter"]=1559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49992, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=8499, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=139000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1559]={ + ["next_chapter"]=1560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50728, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=8624, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=140000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=14349, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=155, + ["unit"]=0 + } + }, + [1560]={ + ["next_chapter"]=1561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=51490, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=8753, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=141000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1561]={ + ["next_chapter"]=1562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52277, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=8887, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=142000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1562]={ + ["next_chapter"]=1563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53091, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=9025, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=143000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1563]={ + ["next_chapter"]=1564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53931, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=9168, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=144000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1564]={ + ["next_chapter"]=1565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54799, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=9316, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=145000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1565]={ + ["next_chapter"]=1566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55694, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=9468, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=146000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1566]={ + ["next_chapter"]=1567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56617, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=9625, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=147000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1567]={ + ["next_chapter"]=1568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57568, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=9787, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=148000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1568]={ + ["next_chapter"]=1569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58549, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=9953, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=149000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1569]={ + ["next_chapter"]=1570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59558, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=10125, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=150000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=15759, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=156, + ["unit"]=0 + } + }, + [1570]={ + ["next_chapter"]=1571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=60597, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=10302, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=152000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1571]={ + ["next_chapter"]=1572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61667, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=10483, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=154000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1572]={ + ["next_chapter"]=1573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62766, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=10670, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=156000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1573]={ + ["next_chapter"]=1574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63897, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=10863, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=158000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1574]={ + ["next_chapter"]=1575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65059, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=11060, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=160000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1575]={ + ["next_chapter"]=1576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66254, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=11263, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=162000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1576]={ + ["next_chapter"]=1577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67480, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=11472, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=164000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1577]={ + ["next_chapter"]=1578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68739, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=11686, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=166000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1578]={ + ["next_chapter"]=1579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70031, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=11905, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=168000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1579]={ + ["next_chapter"]=1580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71357, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=12131, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=170000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=17279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=157, + ["unit"]=0 + } + }, + [1580]={ + ["next_chapter"]=1581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=72717, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=12362, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=172000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1581]={ + ["next_chapter"]=1582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74111, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=12599, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=174000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1582]={ + ["next_chapter"]=1583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75540, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=12842, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=176000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1583]={ + ["next_chapter"]=1584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77004, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=13091, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=178000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1584]={ + ["next_chapter"]=1585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78504, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=13346, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=180000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1585]={ + ["next_chapter"]=1586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80040, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=13607, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=182000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1586]={ + ["next_chapter"]=1587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81613, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=13874, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=184000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1587]={ + ["next_chapter"]=1588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83223, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=14148, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=186000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1588]={ + ["next_chapter"]=1589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84870, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=14428, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=188000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1589]={ + ["next_chapter"]=1590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86555, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=14714, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=190000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=18999, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=158, + ["unit"]=0 + } + }, + [1590]={ + ["next_chapter"]=1591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=88278, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=15007, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=192000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1591]={ + ["next_chapter"]=1592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90040, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=15307, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=194000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1592]={ + ["next_chapter"]=1593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91841, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=15613, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=196000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1593]={ + ["next_chapter"]=1594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93682, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=15926, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=198000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1594]={ + ["next_chapter"]=1595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95563, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=16246, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1595]={ + ["next_chapter"]=1596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97484, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=16572, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=202000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1596]={ + ["next_chapter"]=1597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99446, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=16906, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=204000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1597]={ + ["next_chapter"]=1598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101450, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=17246, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=206000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1598]={ + ["next_chapter"]=1599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103495, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=17594, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=208000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1599]={ + ["next_chapter"]=1600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105582, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=17949, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=210000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=20919, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=159, + ["unit"]=0 + } + }, + [1600]={ + ["next_chapter"]=1601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=107712, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=18311, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=212000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1601]={ + ["next_chapter"]=1602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109885, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=18680, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=214000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1602]={ + ["next_chapter"]=1603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112101, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=19057, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=216000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1603]={ + ["next_chapter"]=1604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114362, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=19441, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=218000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1604]={ + ["next_chapter"]=1605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116666, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=19833, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=220000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1605]={ + ["next_chapter"]=1606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119016, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=20233, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=222000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1606]={ + ["next_chapter"]=1607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121410, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=20640, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=224000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1607]={ + ["next_chapter"]=1608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123850, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=21055, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=226000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1608]={ + ["next_chapter"]=1609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126336, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=21477, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=228000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1609]={ + ["next_chapter"]=1610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128869, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=21908, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=230000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=23039, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=160, + ["unit"]=0 + } + }, + [1610]={ + ["next_chapter"]=1611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=131449, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=22346, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=232000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1611]={ + ["next_chapter"]=1612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134076, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=22793, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=234000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1612]={ + ["next_chapter"]=1613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136750, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=23248, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=236000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1613]={ + ["next_chapter"]=1614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139473, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=23710, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=238000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1614]={ + ["next_chapter"]=1615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142244, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=24182, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=240000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1615]={ + ["next_chapter"]=1616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145065, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=24661, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=242000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1616]={ + ["next_chapter"]=1617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147935, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=25149, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=244000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1617]={ + ["next_chapter"]=1618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150855, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=25645, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=246000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1618]={ + ["next_chapter"]=1619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153825, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=26150, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=248000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1619]={ + ["next_chapter"]=1620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156846, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=26664, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=250000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=25359, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=161, + ["unit"]=0 + } + }, + [1620]={ + ["next_chapter"]=1621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=159918, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=27186, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=253000, + ["unit"]=1 + }, + ["chapter_drop"]=43, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1621]={ + ["next_chapter"]=1622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=163042, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=27717, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=256000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1622]={ + ["next_chapter"]=1623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166218, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=28257, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=259000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1623]={ + ["next_chapter"]=1624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169446, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=28806, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=262000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1624]={ + ["next_chapter"]=1625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=172728, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=29364, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=265000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1625]={ + ["next_chapter"]=1626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176063, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=29931, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=268000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1626]={ + ["next_chapter"]=1627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179451, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=30507, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=271000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1627]={ + ["next_chapter"]=1628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=182894, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=31092, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=274000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1628]={ + ["next_chapter"]=1629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=186391, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=31686, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=277000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1629]={ + ["next_chapter"]=1630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=189943, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=32290, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=280000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=27889, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=162, + ["unit"]=0 + } + }, + [1630]={ + ["next_chapter"]=1631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=193551, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=32904, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=283000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1631]={ + ["next_chapter"]=1632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=197215, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=33527, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=286000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1632]={ + ["next_chapter"]=1633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=200935, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=34159, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=289000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1633]={ + ["next_chapter"]=1634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=204712, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=34801, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=292000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1634]={ + ["next_chapter"]=1635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=208547, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=35453, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=295000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1635]={ + ["next_chapter"]=1636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=212438, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=36115, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=298000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1636]={ + ["next_chapter"]=1637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=216388, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=36786, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=301000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1637]={ + ["next_chapter"]=1638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=220397, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=37467, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=304000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1638]={ + ["next_chapter"]=1639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=224464, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=38159, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=307000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1639]={ + ["next_chapter"]=1640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=228591, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=38860, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=310000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=30719, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=163, + ["unit"]=0 + } + }, + [1640]={ + ["next_chapter"]=1641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=232778, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=39572, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=313000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1641]={ + ["next_chapter"]=1642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=237025, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=40294, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=316000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1642]={ + ["next_chapter"]=1643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=241332, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=41026, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=319000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1643]={ + ["next_chapter"]=1644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=245701, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=41769, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=322000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1644]={ + ["next_chapter"]=1645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=250131, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=42522, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=325000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1645]={ + ["next_chapter"]=1646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=254623, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=43286, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=328000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1646]={ + ["next_chapter"]=1647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=259177, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=44060, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=331000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1647]={ + ["next_chapter"]=1648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=263795, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=44845, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=334000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1648]={ + ["next_chapter"]=1649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=268475, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=45641, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=337000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1649]={ + ["next_chapter"]=1650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=273220, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=46447, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=340000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=33849, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=164, + ["unit"]=0 + } + }, + [1650]={ + ["next_chapter"]=1651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=278028, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=47265, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=343000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1651]={ + ["next_chapter"]=1652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=282901, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=48093, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=346000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1652]={ + ["next_chapter"]=1653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=287839, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=48933, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=349000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1653]={ + ["next_chapter"]=1654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=292842, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=49783, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=352000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1654]={ + ["next_chapter"]=1655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=297911, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=50645, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=356000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1655]={ + ["next_chapter"]=1656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=303047, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=51518, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=360000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1656]={ + ["next_chapter"]=1657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=308249, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=52402, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=364000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1657]={ + ["next_chapter"]=1658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=313518, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=53298, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=368000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1658]={ + ["next_chapter"]=1659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=318855, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=54205, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=372000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1659]={ + ["next_chapter"]=1660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=324259, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=55124, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=376000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=37279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=165, + ["unit"]=0 + } + }, + [1660]={ + ["next_chapter"]=1661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=329732, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=56054, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=380000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1661]={ + ["next_chapter"]=1662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=335274, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=56997, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=384000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1662]={ + ["next_chapter"]=1663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=340886, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=57951, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=388000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1663]={ + ["next_chapter"]=1664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=346567, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=58916, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=392000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1664]={ + ["next_chapter"]=1665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352318, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=59894, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=396000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1665]={ + ["next_chapter"]=1666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=358139, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=60884, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1666]={ + ["next_chapter"]=1667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=364032, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=61885, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=404000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1667]={ + ["next_chapter"]=1668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=369996, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=62899, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=408000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1668]={ + ["next_chapter"]=1669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=376032, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=63925, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=412000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1669]={ + ["next_chapter"]=1670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=382140, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=64964, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=416000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=41079, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=166, + ["unit"]=0 + } + }, + [1670]={ + ["next_chapter"]=1671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=388321, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=66015, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=420000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1671]={ + ["next_chapter"]=1672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=394575, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=67078, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=424000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1672]={ + ["next_chapter"]=1673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=400903, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=68153, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=428000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1673]={ + ["next_chapter"]=1674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=407304, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=69242, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=432000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1674]={ + ["next_chapter"]=1675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=413781, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=70343, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=436000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1675]={ + ["next_chapter"]=1676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=420332, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=71456, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=440000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1676]={ + ["next_chapter"]=1677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=426958, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=72583, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=444000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1677]={ + ["next_chapter"]=1678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=433660, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=73722, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=448000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1678]={ + ["next_chapter"]=1679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=440438, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=74874, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=452000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1679]={ + ["next_chapter"]=1680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=447293, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=76040, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=457000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=45279, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=167, + ["unit"]=0 + } + }, + [1680]={ + ["next_chapter"]=1681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=454224, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=77218, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=462000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1681]={ + ["next_chapter"]=1682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=461234, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=78410, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=467000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1682]={ + ["next_chapter"]=1683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=468321, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=79615, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=472000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1683]={ + ["next_chapter"]=1684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=475486, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=80833, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=477000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1684]={ + ["next_chapter"]=1685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=482730, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=82064, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=482000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1685]={ + ["next_chapter"]=1686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=490053, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=83309, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=487000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1686]={ + ["next_chapter"]=1687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=497456, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=84568, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=492000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1687]={ + ["next_chapter"]=1688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=504939, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=85840, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=497000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1688]={ + ["next_chapter"]=1689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=512503, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=87125, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=502000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1689]={ + ["next_chapter"]=1690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=520147, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=88425, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=507000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=49899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=168, + ["unit"]=0 + } + }, + [1690]={ + ["next_chapter"]=1691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=527873, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=89738, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=512000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1691]={ + ["next_chapter"]=1692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=535680, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=91066, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=517000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1692]={ + ["next_chapter"]=1693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=543570, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=92407, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=522000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1693]={ + ["next_chapter"]=1694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=551542, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=93762, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=527000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1694]={ + ["next_chapter"]=1695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=559597, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=95131, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=532000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1695]={ + ["next_chapter"]=1696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=567736, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=96515, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=537000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1696]={ + ["next_chapter"]=1697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=575958, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=97913, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=542000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1697]={ + ["next_chapter"]=1698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=584265, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=99325, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=547000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1698]={ + ["next_chapter"]=1699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=592657, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=100752, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=552000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1699]={ + ["next_chapter"]=1700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=601134, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=102193, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=558000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=55019, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=169, + ["unit"]=0 + } + }, + [1700]={ + ["next_chapter"]=1701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=609696, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=103648, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=564000, + ["unit"]=1 + }, + ["chapter_drop"]=44, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1701]={ + ["next_chapter"]=1702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=618345, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=105119, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=570000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1702]={ + ["next_chapter"]=1703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=627080, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=106604, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=576000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1703]={ + ["next_chapter"]=1704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=635902, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=108103, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=582000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1704]={ + ["next_chapter"]=1705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=644811, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=109618, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=588000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1705]={ + ["next_chapter"]=1706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=653808, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=111147, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=594000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1706]={ + ["next_chapter"]=1707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=662893, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=112692, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1707]={ + ["next_chapter"]=1708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=672067, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=114251, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=606000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1708]={ + ["next_chapter"]=1709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=681330, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=115826, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=612000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1709]={ + ["next_chapter"]=1710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=690682, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=117416, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=618000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=60659, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=170, + ["unit"]=0 + } + }, + [1710]={ + ["next_chapter"]=1711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=700125, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=119021, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=624000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1711]={ + ["next_chapter"]=1712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=709658, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=120642, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=630000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1712]={ + ["next_chapter"]=1713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=719281, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=122278, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=636000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1713]={ + ["next_chapter"]=1714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=728996, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=123929, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=642000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1714]={ + ["next_chapter"]=1715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=738802, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=125596, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=648000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1715]={ + ["next_chapter"]=1716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=748701, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=127279, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=654000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1716]={ + ["next_chapter"]=1717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=758692, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=128978, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=661000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1717]={ + ["next_chapter"]=1718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=768776, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=130692, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=668000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1718]={ + ["next_chapter"]=1719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=778953, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=132422, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=675000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1719]={ + ["next_chapter"]=1720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=789224, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=134168, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=682000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=66899, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=171, + ["unit"]=0 + } + }, + [1720]={ + ["next_chapter"]=1721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=799589, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=135930, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=689000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1721]={ + ["next_chapter"]=1722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=810049, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=137708, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=696000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1722]={ + ["next_chapter"]=1723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=820604, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=139503, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=703000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1723]={ + ["next_chapter"]=1724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=831255, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=141313, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=710000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1724]={ + ["next_chapter"]=1725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=842002, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=143140, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=717000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1725]={ + ["next_chapter"]=1726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=852845, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=144984, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=724000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1726]={ + ["next_chapter"]=1727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=863784, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=146843, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=731000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1727]={ + ["next_chapter"]=1728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=874821, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=148720, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=738000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1728]={ + ["next_chapter"]=1729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=885956, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=150612, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=745000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1729]={ + ["next_chapter"]=1730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=897189, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=152522, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=752000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=73789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=172, + ["unit"]=0 + } + }, + [1730]={ + ["next_chapter"]=1731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=908520, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=154448, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=760000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1731]={ + ["next_chapter"]=1732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=919950, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=156392, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=768000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1732]={ + ["next_chapter"]=1733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=931480, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=158352, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=776000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1733]={ + ["next_chapter"]=1734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=943109, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=160329, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=784000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1734]={ + ["next_chapter"]=1735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=954839, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=162323, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=792000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1735]={ + ["next_chapter"]=1736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=966669, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=164334, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1736]={ + ["next_chapter"]=1737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=978601, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=166362, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=808000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1737]={ + ["next_chapter"]=1738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=990634, + ["unit"]=4 + }, + ["hp_coefficient"]={ + ["value"]=168408, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=816000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1738]={ + ["next_chapter"]=1739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1003, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=170471, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=824000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1739]={ + ["next_chapter"]=1740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1015, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=172551, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=832000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=81389, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=173, + ["unit"]=0 + } + }, + [1740]={ + ["next_chapter"]=1741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=1027, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=174649, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=840000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1741]={ + ["next_chapter"]=1742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1040, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=176764, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=848000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1742]={ + ["next_chapter"]=1743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1052, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=178897, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=856000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1743]={ + ["next_chapter"]=1744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1065, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=181048, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=865000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1744]={ + ["next_chapter"]=1745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1078, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=183217, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=874000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1745]={ + ["next_chapter"]=1746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1091, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=185403, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=883000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1746]={ + ["next_chapter"]=1747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1104, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=187607, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=892000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1747]={ + ["next_chapter"]=1748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1117, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=189830, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=901000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1748]={ + ["next_chapter"]=1749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1130, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=192070, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81790, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=910000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1749]={ + ["next_chapter"]=1750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1143, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=194328, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82690, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=919000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=89789, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=174, + ["unit"]=0 + } + }, + [1750]={ + ["next_chapter"]=1751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1157, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=196605, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83590, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=928000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1751]={ + ["next_chapter"]=1752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1170, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=198900, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84490, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=937000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1752]={ + ["next_chapter"]=1753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1184, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=201213, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85390, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=946000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1753]={ + ["next_chapter"]=1754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1197, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=203545, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86290, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=955000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1754]={ + ["next_chapter"]=1755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1211, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=205895, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87190, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=965000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1755]={ + ["next_chapter"]=1756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1225, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=208264, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88090, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=975000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1756]={ + ["next_chapter"]=1757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1239, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=210652, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88990, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=985000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1757]={ + ["next_chapter"]=1758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1253, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=213058, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=1 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=995000, + ["unit"]=1 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1758]={ + ["next_chapter"]=1759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1268, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=215483, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1005, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1759]={ + ["next_chapter"]=1760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1282, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=217927, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1020, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=99069, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=175, + ["unit"]=0 + } + }, + [1760]={ + ["next_chapter"]=1761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1296, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=220390, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1030, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1761]={ + ["next_chapter"]=1762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1311, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=222872, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1040, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1762]={ + ["next_chapter"]=1763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1326, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=225373, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1050, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1763]={ + ["next_chapter"]=1764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1341, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=227893, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1764]={ + ["next_chapter"]=1765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1355, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=230432, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1070, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1765]={ + ["next_chapter"]=1766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1371, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=232991, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1080, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1766]={ + ["next_chapter"]=1767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1386, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=235569, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1767]={ + ["next_chapter"]=1768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1401, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=238166, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1100, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1768]={ + ["next_chapter"]=1769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1416, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=240783, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1110, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1769]={ + ["next_chapter"]=1770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1432, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=243420, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=109369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=176, + ["unit"]=0 + } + }, + [1770]={ + ["next_chapter"]=1771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1448, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=246076, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1130, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1771]={ + ["next_chapter"]=1772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1463, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=248752, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1772]={ + ["next_chapter"]=1773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1479, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=251448, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1150, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1773]={ + ["next_chapter"]=1774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1495, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=254164, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1160, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1774]={ + ["next_chapter"]=1775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1511, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=256900, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1170, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1775]={ + ["next_chapter"]=1776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1527, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=259656, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1776]={ + ["next_chapter"]=1777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1544, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=262431, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1190, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1777]={ + ["next_chapter"]=1778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1560, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=265228, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1200, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1778]={ + ["next_chapter"]=1779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1577, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=268044, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1779]={ + ["next_chapter"]=1780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1593, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=270881, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1220, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=120669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=177, + ["unit"]=0 + } + }, + [1780]={ + ["next_chapter"]=1781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1610, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=273738, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1230, + ["unit"]=2 + }, + ["chapter_drop"]=45, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1781]={ + ["next_chapter"]=1782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1627, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=276615, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1782]={ + ["next_chapter"]=1783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1644, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=279513, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1783]={ + ["next_chapter"]=1784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1661, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=282432, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1260, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1784]={ + ["next_chapter"]=1785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1679, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=285372, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1270, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1785]={ + ["next_chapter"]=1786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1696, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=288332, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1280, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1786]={ + ["next_chapter"]=1787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1714, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=291313, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1290, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1787]={ + ["next_chapter"]=1788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1731, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=294315, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1300, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1788]={ + ["next_chapter"]=1789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1749, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=297338, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1310, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1789]={ + ["next_chapter"]=1790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1767, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=300382, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1320, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=132969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=178, + ["unit"]=0 + } + }, + [1790]={ + ["next_chapter"]=1791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1785, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=303447, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1330, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1791]={ + ["next_chapter"]=1792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=306534, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1792]={ + ["next_chapter"]=1793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1821, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=309641, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1350, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1793]={ + ["next_chapter"]=1794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1840, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=312770, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1360, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1794]={ + ["next_chapter"]=1795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1858, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=315921, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1795]={ + ["next_chapter"]=1796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1877, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=319093, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1380, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1796]={ + ["next_chapter"]=1797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1896, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=322287, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1797]={ + ["next_chapter"]=1798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1915, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=325502, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1400, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1798]={ + ["next_chapter"]=1799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1934, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=328739, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1410, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1799]={ + ["next_chapter"]=1800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1953, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=331997, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1420, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=146269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=179, + ["unit"]=0 + } + }, + [1800]={ + ["next_chapter"]=1801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1972, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=335278, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1430, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1801]={ + ["next_chapter"]=1802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1992, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=338581, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1802]={ + ["next_chapter"]=1803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2011, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=341905, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1450, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1803]={ + ["next_chapter"]=1804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2031, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=345252, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1460, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1804]={ + ["next_chapter"]=1805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2051, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=348621, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1470, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1805]={ + ["next_chapter"]=1806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2071, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=352012, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1806]={ + ["next_chapter"]=1807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2091, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=355425, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1807]={ + ["next_chapter"]=1808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2111, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=358861, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1500, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1808]={ + ["next_chapter"]=1809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2131, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=362319, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1809]={ + ["next_chapter"]=1810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2152, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=365800, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=160569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=180, + ["unit"]=0 + } + }, + [1810]={ + ["next_chapter"]=1811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=2172, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=369303, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1560, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1811]={ + ["next_chapter"]=1812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2193, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=372829, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1580, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1812]={ + ["next_chapter"]=1813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2214, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=376378, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1600, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1813]={ + ["next_chapter"]=1814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2235, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=379950, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1620, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1814]={ + ["next_chapter"]=1815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2256, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=383544, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1640, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1815]={ + ["next_chapter"]=1816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2277, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=387162, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1660, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1816]={ + ["next_chapter"]=1817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2299, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=390802, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1680, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1817]={ + ["next_chapter"]=1818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2320, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=394466, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1700, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1818]={ + ["next_chapter"]=1819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2342, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=398153, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1720, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1819]={ + ["next_chapter"]=1820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2364, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=401863, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1740, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=176169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=181, + ["unit"]=0 + } + }, + [1820]={ + ["next_chapter"]=1821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=2386, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=405596, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1760, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1821]={ + ["next_chapter"]=1822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2408, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=409353, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1780, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1822]={ + ["next_chapter"]=1823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2430, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=413133, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1823]={ + ["next_chapter"]=1824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2453, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=416937, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1824]={ + ["next_chapter"]=1825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2475, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=420764, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1840, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1825]={ + ["next_chapter"]=1826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2498, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=424616, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1860, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1826]={ + ["next_chapter"]=1827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2521, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=428490, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1880, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1827]={ + ["next_chapter"]=1828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2543, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=432389, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1900, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1828]={ + ["next_chapter"]=1829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2567, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=436312, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1920, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1829]={ + ["next_chapter"]=1830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2590, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=440259, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1940, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=193769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=182, + ["unit"]=0 + } + }, + [1830]={ + ["next_chapter"]=1831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=2613, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=444229, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1831]={ + ["next_chapter"]=1832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2637, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=448224, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=1980, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1832]={ + ["next_chapter"]=1833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2660, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=452243, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1833]={ + ["next_chapter"]=1834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2684, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=456287, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2020, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1834]={ + ["next_chapter"]=1835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2708, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=460355, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2040, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1835]={ + ["next_chapter"]=1836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2732, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=464447, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1836]={ + ["next_chapter"]=1837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2756, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=468563, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2080, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1837]={ + ["next_chapter"]=1838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2781, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=472705, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2100, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1838]={ + ["next_chapter"]=1839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2805, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=476871, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2120, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1839]={ + ["next_chapter"]=1840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2830, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=481061, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2140, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=213369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=183, + ["unit"]=0 + } + }, + [1840]={ + ["next_chapter"]=1841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=2855, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=485277, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2160, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1841]={ + ["next_chapter"]=1842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2880, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=489517, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2180, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1842]={ + ["next_chapter"]=1843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2905, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=493782, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2200, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1843]={ + ["next_chapter"]=1844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2930, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=498072, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2220, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1844]={ + ["next_chapter"]=1845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2955, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=502388, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2240, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1845]={ + ["next_chapter"]=1846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2981, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=506728, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2260, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1846]={ + ["next_chapter"]=1847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3006, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=511094, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2280, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1847]={ + ["next_chapter"]=1848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3032, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=515485, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2300, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1848]={ + ["next_chapter"]=1849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3058, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=519902, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2320, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1849]={ + ["next_chapter"]=1850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3084, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=524343, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2340, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=234969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=184, + ["unit"]=0 + } + }, + [1850]={ + ["next_chapter"]=1851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=3111, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=528811, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2360, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1851]={ + ["next_chapter"]=1852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3137, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=533304, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2380, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1852]={ + ["next_chapter"]=1853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3164, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=537823, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2400, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1853]={ + ["next_chapter"]=1854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3190, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=542367, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2420, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1854]={ + ["next_chapter"]=1855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3217, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=546937, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2440, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1855]={ + ["next_chapter"]=1856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3244, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=551533, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2460, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1856]={ + ["next_chapter"]=1857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3272, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=556156, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2480, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1857]={ + ["next_chapter"]=1858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3299, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=560804, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1858]={ + ["next_chapter"]=1859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3326, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=565478, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2530, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1859]={ + ["next_chapter"]=1860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3354, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=570178, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2560, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=258569, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=185, + ["unit"]=0 + } + }, + [1860]={ + ["next_chapter"]=1861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=3382, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=574905, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2590, + ["unit"]=2 + }, + ["chapter_drop"]=46, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1861]={ + ["next_chapter"]=1862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3410, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=579658, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2620, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1862]={ + ["next_chapter"]=1863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3438, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=584438, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2650, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1863]={ + ["next_chapter"]=1864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3466, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=589244, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2680, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1864]={ + ["next_chapter"]=1865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3495, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=594076, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2710, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1865]={ + ["next_chapter"]=1866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3523, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=598935, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2740, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1866]={ + ["next_chapter"]=1867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3552, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=603821, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2770, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1867]={ + ["next_chapter"]=1868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3581, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=608734, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2800, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1868]={ + ["next_chapter"]=1869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3610, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=613673, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2830, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1869]={ + ["next_chapter"]=1870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3639, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=618639, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2860, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=284469, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=186, + ["unit"]=0 + } + }, + [1870]={ + ["next_chapter"]=1871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=3668, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=623633, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2890, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1871]={ + ["next_chapter"]=1872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3698, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=628653, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2920, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1872]={ + ["next_chapter"]=1873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3728, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=633701, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2950, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1873]={ + ["next_chapter"]=1874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3758, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=638775, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=2980, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1874]={ + ["next_chapter"]=1875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3788, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=643877, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3010, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1875]={ + ["next_chapter"]=1876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3818, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=649007, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3040, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1876]={ + ["next_chapter"]=1877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3848, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=654164, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3070, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1877]={ + ["next_chapter"]=1878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3879, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=659348, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3100, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1878]={ + ["next_chapter"]=1879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3909, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=664560, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3130, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1879]={ + ["next_chapter"]=1880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3940, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=669799, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=313369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=187, + ["unit"]=0 + } + }, + [1880]={ + ["next_chapter"]=1881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=3971, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=675067, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3190, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1881]={ + ["next_chapter"]=1882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4002, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=680362, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3220, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1882]={ + ["next_chapter"]=1883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4033, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=685685, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3250, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1883]={ + ["next_chapter"]=1884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4065, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=691036, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3280, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1884]={ + ["next_chapter"]=1885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4097, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=696415, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3310, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1885]={ + ["next_chapter"]=1886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4128, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=701822, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3340, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1886]={ + ["next_chapter"]=1887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4160, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=707257, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3370, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1887]={ + ["next_chapter"]=1888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4192, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=712720, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3400, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1888]={ + ["next_chapter"]=1889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4225, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=718212, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3430, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1889]={ + ["next_chapter"]=1890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4257, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=723732, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3460, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=345269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=188, + ["unit"]=0 + } + }, + [1890]={ + ["next_chapter"]=1891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=4290, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=729280, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3490, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1891]={ + ["next_chapter"]=1892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4323, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=734857, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3520, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1892]={ + ["next_chapter"]=1893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4356, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=740463, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3560, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1893]={ + ["next_chapter"]=1894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4389, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=746097, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3600, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1894]={ + ["next_chapter"]=1895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4422, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=751760, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3640, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1895]={ + ["next_chapter"]=1896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4456, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=757452, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3680, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1896]={ + ["next_chapter"]=1897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4489, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=763173, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3720, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1897]={ + ["next_chapter"]=1898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4523, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=768923, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3760, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1898]={ + ["next_chapter"]=1899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4557, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=774702, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3800, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1899]={ + ["next_chapter"]=1900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4591, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=780509, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3840, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=380169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=189, + ["unit"]=0 + } + }, + [1900]={ + ["next_chapter"]=1901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=4626, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=786347, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3880, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1901]={ + ["next_chapter"]=1902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4660, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=792213, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3920, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1902]={ + ["next_chapter"]=1903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4695, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=798109, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=3960, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1903]={ + ["next_chapter"]=1904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4730, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=804034, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1904]={ + ["next_chapter"]=1905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4765, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=809988, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4040, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1905]={ + ["next_chapter"]=1906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4800, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=815972, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4080, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1906]={ + ["next_chapter"]=1907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4835, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=821986, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4120, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1907]={ + ["next_chapter"]=1908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4871, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=828029, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4160, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1908]={ + ["next_chapter"]=1909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4906, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=834103, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4200, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1909]={ + ["next_chapter"]=1910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4942, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=840206, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4240, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=418969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=190, + ["unit"]=0 + } + }, + [1910]={ + ["next_chapter"]=1911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=4978, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=846339, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4280, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1911]={ + ["next_chapter"]=1912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5015, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=852502, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4320, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1912]={ + ["next_chapter"]=1913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5051, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=858695, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4360, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1913]={ + ["next_chapter"]=1914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5088, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=864918, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4400, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1914]={ + ["next_chapter"]=1915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5125, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=871171, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4440, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1915]={ + ["next_chapter"]=1916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5161, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=877455, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4480, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1916]={ + ["next_chapter"]=1917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5199, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=883769, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4520, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1917]={ + ["next_chapter"]=1918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5236, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=890113, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4570, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1918]={ + ["next_chapter"]=1919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5273, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=896488, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4620, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1919]={ + ["next_chapter"]=1920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5311, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=902894, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4670, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=461769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=191, + ["unit"]=0 + } + }, + [1920]={ + ["next_chapter"]=1921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=5349, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=909330, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4720, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1921]={ + ["next_chapter"]=1922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5387, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=915797, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4770, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1922]={ + ["next_chapter"]=1923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5425, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=922294, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4820, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1923]={ + ["next_chapter"]=1924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5464, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=928823, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4870, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1924]={ + ["next_chapter"]=1925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5502, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=935382, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4920, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1925]={ + ["next_chapter"]=1926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5541, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=941973, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=4970, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1926]={ + ["next_chapter"]=1927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5580, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=948594, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5020, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1927]={ + ["next_chapter"]=1928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5619, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=955247, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5070, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1928]={ + ["next_chapter"]=1929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5658, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=961931, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=441890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5120, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1929]={ + ["next_chapter"]=1930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5698, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=968646, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5170, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=508969, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=192, + ["unit"]=0 + } + }, + [1930]={ + ["next_chapter"]=1931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=5738, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=975393, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5220, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1931]={ + ["next_chapter"]=1932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5777, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=982171, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5270, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1932]={ + ["next_chapter"]=1933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5818, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=988981, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5320, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1933]={ + ["next_chapter"]=1934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5858, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=995822, + ["unit"]=5 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5370, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1934]={ + ["next_chapter"]=1935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5898, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1003, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5420, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1935]={ + ["next_chapter"]=1936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5939, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1010, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5470, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1936]={ + ["next_chapter"]=1937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5980, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1017, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5520, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1937]={ + ["next_chapter"]=1938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6021, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1024, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=486890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5580, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1938]={ + ["next_chapter"]=1939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6062, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1031, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=491890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5640, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1939]={ + ["next_chapter"]=1940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6103, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=496890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5700, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=561169, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=193, + ["unit"]=0 + } + }, + [1940]={ + ["next_chapter"]=1941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=6145, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1045, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=501890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5760, + ["unit"]=2 + }, + ["chapter_drop"]=47, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1941]={ + ["next_chapter"]=1942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6186, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5820, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1942]={ + ["next_chapter"]=1943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6228, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1059, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=511890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5880, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1943]={ + ["next_chapter"]=1944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6271, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1066, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=5940, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1944]={ + ["next_chapter"]=1945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6313, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1073, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=522890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1945]={ + ["next_chapter"]=1946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6355, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1080, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=528890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6060, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1946]={ + ["next_chapter"]=1947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6398, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1088, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6120, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1947]={ + ["next_chapter"]=1948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6441, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1095, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6180, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1948]={ + ["next_chapter"]=1949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6484, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1102, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6240, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1949]={ + ["next_chapter"]=1950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6527, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1110, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6300, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=618769, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=194, + ["unit"]=0 + } + }, + [1950]={ + ["next_chapter"]=1951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=6571, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1117, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=558890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6360, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1951]={ + ["next_chapter"]=1952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6614, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1124, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6420, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1952]={ + ["next_chapter"]=1953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6658, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1132, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=570890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6480, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1953]={ + ["next_chapter"]=1954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6702, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1139, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=576890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6540, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1954]={ + ["next_chapter"]=1955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6747, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1147, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=582890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6610, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1955]={ + ["next_chapter"]=1956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6791, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1154, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=588890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6680, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1956]={ + ["next_chapter"]=1957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6836, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1162, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=594890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6750, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1957]={ + ["next_chapter"]=1958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6880, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1170, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=600890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6820, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1958]={ + ["next_chapter"]=1959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6926, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1177, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=606890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6890, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1959]={ + ["next_chapter"]=1960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6971, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1185, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=612890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=6960, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=682369, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=195, + ["unit"]=0 + } + }, + [1960]={ + ["next_chapter"]=1961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=7016, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1193, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=619890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7030, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1961]={ + ["next_chapter"]=1962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7062, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1201, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=626890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7100, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1962]={ + ["next_chapter"]=1963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7108, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1208, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=633890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7170, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1963]={ + ["next_chapter"]=1964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7154, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1216, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=640890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7240, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1964]={ + ["next_chapter"]=1965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7200, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1224, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=647890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7310, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1965]={ + ["next_chapter"]=1966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7246, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1232, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7380, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1966]={ + ["next_chapter"]=1967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7293, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1240, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=661890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7450, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1967]={ + ["next_chapter"]=1968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7340, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1248, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=668890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7520, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1968]={ + ["next_chapter"]=1969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7387, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1256, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=675890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7600, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1969]={ + ["next_chapter"]=1970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7434, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1264, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7680, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=752669, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [1970]={ + ["next_chapter"]=1971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=7481, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1272, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=689890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7760, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1971]={ + ["next_chapter"]=1972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7529, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1280, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=696890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7840, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1972]={ + ["next_chapter"]=1973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7577, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1288, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=703890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=7920, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1973]={ + ["next_chapter"]=1974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7625, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1296, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=711890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1974]={ + ["next_chapter"]=1975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7673, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1304, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=719890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8080, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1975]={ + ["next_chapter"]=1976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7722, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1313, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=727890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8160, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1976]={ + ["next_chapter"]=1977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7770, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1321, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=735890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8240, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1977]={ + ["next_chapter"]=1978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7819, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1329, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=743890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8320, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1978]={ + ["next_chapter"]=1979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7868, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1338, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=751890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8400, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1979]={ + ["next_chapter"]=1980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7917, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1346, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=759890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8480, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=830269, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=197, + ["unit"]=0 + } + }, + [1980]={ + ["next_chapter"]=1981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=7967, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1354, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=767890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8560, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1981]={ + ["next_chapter"]=1982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8016, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1363, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=775890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8650, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1982]={ + ["next_chapter"]=1983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8066, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1371, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=783890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8740, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1983]={ + ["next_chapter"]=1984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8116, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1380, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=791890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8830, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1984]={ + ["next_chapter"]=1985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8167, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1388, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=8920, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1985]={ + ["next_chapter"]=1986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8217, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1397, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=808890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9010, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1986]={ + ["next_chapter"]=1987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8268, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1406, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=817890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9100, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1987]={ + ["next_chapter"]=1988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8319, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1414, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=826890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9190, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1988]={ + ["next_chapter"]=1989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8370, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1423, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=835890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9280, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1989]={ + ["next_chapter"]=1990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8421, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1432, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=844890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9370, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=915869, + ["unit"]=2 + }, + ["grasp_mastery_reward"]={ + ["value"]=198, + ["unit"]=0 + } + }, + [1990]={ + ["next_chapter"]=1991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=8473, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1440, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=853890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9460, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1991]={ + ["next_chapter"]=1992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8525, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1449, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=862890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9550, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1992]={ + ["next_chapter"]=1993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8577, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1458, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=871890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9650, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1993]={ + ["next_chapter"]=1994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8629, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1467, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=880890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9750, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1994]={ + ["next_chapter"]=1995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8681, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1476, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=889890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9850, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1995]={ + ["next_chapter"]=1996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8734, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1485, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=898890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=9950, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1996]={ + ["next_chapter"]=1997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8787, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1494, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=908890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10050, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1997]={ + ["next_chapter"]=1998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8840, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1503, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=918890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10200, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1998]={ + ["next_chapter"]=1999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8893, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1512, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=928890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10300, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [1999]={ + ["next_chapter"]=2000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8946, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1521, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=938890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10400, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1010, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=199, + ["unit"]=0 + } + }, + [2000]={ + ["next_chapter"]=2001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=948890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10500, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2001]={ + ["next_chapter"]=2002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=958890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10600, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2002]={ + ["next_chapter"]=2003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=968890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10700, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2003]={ + ["next_chapter"]=2004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=978890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10800, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2004]={ + ["next_chapter"]=2005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=988890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=10900, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2005]={ + ["next_chapter"]=2006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=998890, + ["unit"]=2 + }, + ["idle_gold"]={ + ["value"]=11000, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2006]={ + ["next_chapter"]=2007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9001, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1009, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11100, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2007]={ + ["next_chapter"]=2008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9001, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1019, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11200, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2008]={ + ["next_chapter"]=2009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9002, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1029, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11300, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2009]={ + ["next_chapter"]=2010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9003, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1039, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11400, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1115, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=200, + ["unit"]=0 + } + }, + [2010]={ + ["next_chapter"]=2011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=9004, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1621, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1049, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11500, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2011]={ + ["next_chapter"]=2012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9005, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1621, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1059, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11600, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2012]={ + ["next_chapter"]=2013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9006, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1621, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1069, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11700, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2013]={ + ["next_chapter"]=2014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9008, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1621, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1079, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11800, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2014]={ + ["next_chapter"]=2015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9010, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1622, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11900, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2015]={ + ["next_chapter"]=2016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9012, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1622, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1099, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12000, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2016]={ + ["next_chapter"]=2017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9014, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1623, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1109, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12100, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2017]={ + ["next_chapter"]=2018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9017, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1623, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1119, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12200, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2018]={ + ["next_chapter"]=2019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9021, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1624, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1129, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12300, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2019]={ + ["next_chapter"]=2020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9024, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1624, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1139, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12400, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=201, + ["unit"]=0 + } + }, + [2020]={ + ["next_chapter"]=2021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=9028, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1625, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1149, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12500, + ["unit"]=2 + }, + ["chapter_drop"]=48, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2021]={ + ["next_chapter"]=2022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9033, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1626, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1159, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2022]={ + ["next_chapter"]=2023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9038, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1627, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1169, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12700, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2023]={ + ["next_chapter"]=2024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9043, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1628, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1179, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2024]={ + ["next_chapter"]=2025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9049, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1629, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=12900, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2025]={ + ["next_chapter"]=2026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9055, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1630, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1199, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2026]={ + ["next_chapter"]=2027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9062, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1631, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1209, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13100, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2027]={ + ["next_chapter"]=2028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9069, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1632, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1219, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2028]={ + ["next_chapter"]=2029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9077, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1634, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1229, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13300, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2029]={ + ["next_chapter"]=2030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9086, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1635, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1239, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1355, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=202, + ["unit"]=0 + } + }, + [2030]={ + ["next_chapter"]=2031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=9095, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1637, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1249, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13500, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2031]={ + ["next_chapter"]=2032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9105, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1639, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1259, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2032]={ + ["next_chapter"]=2033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9116, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1641, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1269, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13700, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2033]={ + ["next_chapter"]=2034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9127, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1643, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1279, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2034]={ + ["next_chapter"]=2035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9139, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1645, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=13900, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2035]={ + ["next_chapter"]=2036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9151, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1647, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1299, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2036]={ + ["next_chapter"]=2037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9165, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1650, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1309, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14100, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2037]={ + ["next_chapter"]=2038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9179, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1652, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1319, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2038]={ + ["next_chapter"]=2039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9194, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1655, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1329, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14300, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2039]={ + ["next_chapter"]=2040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9209, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1658, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1339, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=203, + ["unit"]=0 + } + }, + [2040]={ + ["next_chapter"]=2041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=9226, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1661, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1349, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14500, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2041]={ + ["next_chapter"]=2042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9243, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1664, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1359, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2042]={ + ["next_chapter"]=2043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9261, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1667, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1369, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14700, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2043]={ + ["next_chapter"]=2044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9281, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1670, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1379, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2044]={ + ["next_chapter"]=2045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9301, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1674, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=14900, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2045]={ + ["next_chapter"]=2046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9321, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1678, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1399, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=15000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2046]={ + ["next_chapter"]=2047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9343, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1682, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1409, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=15200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2047]={ + ["next_chapter"]=2048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9366, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1686, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1419, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=15400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2048]={ + ["next_chapter"]=2049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9390, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1690, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1429, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=15600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2049]={ + ["next_chapter"]=2050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9415, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1695, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1439, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=15800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=204, + ["unit"]=0 + } + }, + [2050]={ + ["next_chapter"]=2051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=9441, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1699, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1449, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=16000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2051]={ + ["next_chapter"]=2052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9468, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1704, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1459, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=16200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2052]={ + ["next_chapter"]=2053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9496, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1709, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1469, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=16400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2053]={ + ["next_chapter"]=2054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9525, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1715, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1479, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=16600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2054]={ + ["next_chapter"]=2055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9556, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1720, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=16800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2055]={ + ["next_chapter"]=2056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9587, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1726, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1499, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=17000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2056]={ + ["next_chapter"]=2057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9620, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1732, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1509, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=17200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2057]={ + ["next_chapter"]=2058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9653, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1738, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1519, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=17400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2058]={ + ["next_chapter"]=2059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9688, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1744, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1529, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=17600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2059]={ + ["next_chapter"]=2060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9725, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1750, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1539, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=17800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1795, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=205, + ["unit"]=0 + } + }, + [2060]={ + ["next_chapter"]=2061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=9762, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1757, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1549, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=18000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2061]={ + ["next_chapter"]=2062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9801, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1764, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1559, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=18200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2062]={ + ["next_chapter"]=2063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9841, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1771, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1569, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=18400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2063]={ + ["next_chapter"]=2064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9882, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1779, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1579, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=18600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2064]={ + ["next_chapter"]=2065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9925, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1786, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=18800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2065]={ + ["next_chapter"]=2066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9969, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1794, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1599, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=19000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2066]={ + ["next_chapter"]=2067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10014, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1803, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1609, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=19200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2067]={ + ["next_chapter"]=2068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10061, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1811, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1619, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=19400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2068]={ + ["next_chapter"]=2069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10109, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1820, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1629, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=19600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2069]={ + ["next_chapter"]=2070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10159, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1829, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1639, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=19800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=1975, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=206, + ["unit"]=0 + } + }, + [2070]={ + ["next_chapter"]=2071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=10210, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1838, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1659, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2071]={ + ["next_chapter"]=2072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10263, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1847, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1679, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=20200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2072]={ + ["next_chapter"]=2073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10317, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1857, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1699, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=20400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2073]={ + ["next_chapter"]=2074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10372, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1867, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1719, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=20600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2074]={ + ["next_chapter"]=2075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10430, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1877, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1739, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=20800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2075]={ + ["next_chapter"]=2076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10488, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1888, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1759, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=21000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2076]={ + ["next_chapter"]=2077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10549, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1899, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1779, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=21200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2077]={ + ["next_chapter"]=2078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10611, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1910, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1799, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=21400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2078]={ + ["next_chapter"]=2079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10674, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1921, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1819, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=21600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2079]={ + ["next_chapter"]=2080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10739, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1933, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1839, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=21800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2175, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=207, + ["unit"]=0 + } + }, + [2080]={ + ["next_chapter"]=2081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=10806, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1945, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1859, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=22000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2081]={ + ["next_chapter"]=2082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10875, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1957, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1879, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=22200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2082]={ + ["next_chapter"]=2083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10945, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1970, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1899, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=22400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2083]={ + ["next_chapter"]=2084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11017, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1983, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1919, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=22600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2084]={ + ["next_chapter"]=2085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11091, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=1996, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1939, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=22800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2085]={ + ["next_chapter"]=2086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11167, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2010, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1959, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=23000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2086]={ + ["next_chapter"]=2087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11244, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2024, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1979, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=23200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2087]={ + ["next_chapter"]=2088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11323, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2038, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1999, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=23400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2088]={ + ["next_chapter"]=2089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11404, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2053, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2019, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=23600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2089]={ + ["next_chapter"]=2090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11487, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2068, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2039, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=23800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2395, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=208, + ["unit"]=0 + } + }, + [2090]={ + ["next_chapter"]=2091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=11572, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2083, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2059, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=24000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2091]={ + ["next_chapter"]=2092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11659, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2099, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2079, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=24200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2092]={ + ["next_chapter"]=2093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11747, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2114, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2099, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=24400, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2093]={ + ["next_chapter"]=2094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11838, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2131, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2119, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=24600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2094]={ + ["next_chapter"]=2095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11930, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2147, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2139, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=24800, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2095]={ + ["next_chapter"]=2096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12025, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2164, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2159, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=25000, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2096]={ + ["next_chapter"]=2097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12121, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2182, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2179, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=25300, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2097]={ + ["next_chapter"]=2098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12220, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2200, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2199, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=25600, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2098]={ + ["next_chapter"]=2099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12321, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2218, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2219, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=25900, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2099]={ + ["next_chapter"]=2100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12423, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2236, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2239, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=26200, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2635, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=209, + ["unit"]=0 + } + }, + [2100]={ + ["next_chapter"]=2101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=12528, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2255, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2259, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=26500, + ["unit"]=2 + }, + ["chapter_drop"]=49, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2101]={ + ["next_chapter"]=2102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12635, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2274, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2279, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=26800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2102]={ + ["next_chapter"]=2103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12744, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2294, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2299, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=27100, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2103]={ + ["next_chapter"]=2104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12855, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2314, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2319, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=27400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2104]={ + ["next_chapter"]=2105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12969, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2334, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2339, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=27700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2105]={ + ["next_chapter"]=2106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13084, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2355, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2359, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=28000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2106]={ + ["next_chapter"]=2107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13202, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2376, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2379, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=28300, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2107]={ + ["next_chapter"]=2108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13322, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2398, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2399, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=28600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2108]={ + ["next_chapter"]=2109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13444, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2420, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2419, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=28900, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2109]={ + ["next_chapter"]=2110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13569, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2442, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2439, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=29200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2900, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=210, + ["unit"]=0 + } + }, + [2110]={ + ["next_chapter"]=2111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=13696, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2465, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2459, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=29500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2111]={ + ["next_chapter"]=2112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13825, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2489, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2479, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=29800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2112]={ + ["next_chapter"]=2113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13957, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2512, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2509, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=30100, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2113]={ + ["next_chapter"]=2114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14091, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2536, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2539, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=30400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2114]={ + ["next_chapter"]=2115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14227, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2561, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2569, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=30700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2115]={ + ["next_chapter"]=2116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14366, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2599, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=31000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2116]={ + ["next_chapter"]=2117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14507, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2611, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2629, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=31300, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2117]={ + ["next_chapter"]=2118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14650, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2637, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2659, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=31600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2118]={ + ["next_chapter"]=2119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14797, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2663, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=31900, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2119]={ + ["next_chapter"]=2120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14945, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2690, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2719, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=32200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3195, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=211, + ["unit"]=0 + } + }, + [2120]={ + ["next_chapter"]=2121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=15096, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2717, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2749, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=32500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2121]={ + ["next_chapter"]=2122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15250, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2745, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2779, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=32800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2122]={ + ["next_chapter"]=2123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15406, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2773, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2809, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=33100, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2123]={ + ["next_chapter"]=2124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15565, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2802, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2839, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=33400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2124]={ + ["next_chapter"]=2125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15727, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2831, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2869, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=33700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2125]={ + ["next_chapter"]=2126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15891, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2860, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2899, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=34000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2126]={ + ["next_chapter"]=2127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16057, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2890, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2929, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=34300, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2127]={ + ["next_chapter"]=2128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16227, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2921, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2959, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=34600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2128]={ + ["next_chapter"]=2129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16399, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2952, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=34900, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2129]={ + ["next_chapter"]=2130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16574, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=2983, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3019, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=35200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=212, + ["unit"]=0 + } + }, + [2130]={ + ["next_chapter"]=2131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=16751, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3015, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3049, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=35600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2131]={ + ["next_chapter"]=2132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16931, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3048, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3079, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=36000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2132]={ + ["next_chapter"]=2133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17114, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3081, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3109, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=36400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2133]={ + ["next_chapter"]=2134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17300, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3114, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3139, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=36800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2134]={ + ["next_chapter"]=2135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17489, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3148, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3169, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=37200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2135]={ + ["next_chapter"]=2136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17680, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3182, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3199, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=37600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2136]={ + ["next_chapter"]=2137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17875, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3217, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3229, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=38000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2137]={ + ["next_chapter"]=2138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18072, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3253, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3259, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=38400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2138]={ + ["next_chapter"]=2139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18272, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3289, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=38800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2139]={ + ["next_chapter"]=2140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18475, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3325, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3319, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=39200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3876, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=213, + ["unit"]=0 + } + }, + [2140]={ + ["next_chapter"]=2141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=18681, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3363, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3349, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=39600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2141]={ + ["next_chapter"]=2142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18890, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3400, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2142]={ + ["next_chapter"]=2143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19102, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3438, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3429, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=40400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2143]={ + ["next_chapter"]=2144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19317, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3477, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3469, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=40800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2144]={ + ["next_chapter"]=2145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19535, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3516, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3509, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=41200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2145]={ + ["next_chapter"]=2146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19756, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3556, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3549, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=41600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2146]={ + ["next_chapter"]=2147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19980, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3596, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=42000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2147]={ + ["next_chapter"]=2148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20207, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3637, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3629, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=42400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2148]={ + ["next_chapter"]=2149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20437, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3679, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3669, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=42800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2149]={ + ["next_chapter"]=2150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20670, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3721, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3709, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=43200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4272, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=214, + ["unit"]=0 + } + }, + [2150]={ + ["next_chapter"]=2151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=20907, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3763, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3749, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=43600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2151]={ + ["next_chapter"]=2152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21147, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3806, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=44000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2152]={ + ["next_chapter"]=2153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21390, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3850, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3829, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=44400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2153]={ + ["next_chapter"]=2154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21636, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3894, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3869, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=44800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2154]={ + ["next_chapter"]=2155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21885, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3939, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3909, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=45200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2155]={ + ["next_chapter"]=2156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22138, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=3985, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3949, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=45700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2156]={ + ["next_chapter"]=2157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22394, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4031, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=46200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2157]={ + ["next_chapter"]=2158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22653, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4078, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4029, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=46700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2158]={ + ["next_chapter"]=2159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22916, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4125, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4069, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=47200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2159]={ + ["next_chapter"]=2160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23181, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4173, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4109, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=47700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4708, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=215, + ["unit"]=0 + } + }, + [2160]={ + ["next_chapter"]=2161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=23451, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4221, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4149, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=48200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2161]={ + ["next_chapter"]=2162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23723, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4270, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=48700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2162]={ + ["next_chapter"]=2163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23999, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4229, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=49200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2163]={ + ["next_chapter"]=2164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24279, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4370, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4269, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=49700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2164]={ + ["next_chapter"]=2165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24562, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4421, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4319, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=50200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2165]={ + ["next_chapter"]=2166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24848, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4473, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4369, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=50700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2166]={ + ["next_chapter"]=2167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25138, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4525, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4419, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=51200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2167]={ + ["next_chapter"]=2168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25432, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4578, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4469, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=51700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2168]={ + ["next_chapter"]=2169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25728, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4631, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4519, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=52200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2169]={ + ["next_chapter"]=2170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26029, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4685, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4569, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=52700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5190, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [2170]={ + ["next_chapter"]=2171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=26333, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4740, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4619, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=53200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2171]={ + ["next_chapter"]=2172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26641, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4795, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4669, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=53700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2172]={ + ["next_chapter"]=2173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26952, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4851, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4719, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=54200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2173]={ + ["next_chapter"]=2174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27267, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4908, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4769, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=54700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2174]={ + ["next_chapter"]=2175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27586, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=4965, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4819, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=55200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2175]={ + ["next_chapter"]=2176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27908, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5023, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4869, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=55800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2176]={ + ["next_chapter"]=2177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28234, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5082, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4919, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=56400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2177]={ + ["next_chapter"]=2178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28564, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5141, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4969, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=57000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2178]={ + ["next_chapter"]=2179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28897, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5201, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5019, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=57600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2179]={ + ["next_chapter"]=2180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29234, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5262, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5069, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=58200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5722, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=217, + ["unit"]=0 + } + }, + [2180]={ + ["next_chapter"]=2181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=29575, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5324, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5119, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=58800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2181]={ + ["next_chapter"]=2182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29920, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5386, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5169, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=59400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2182]={ + ["next_chapter"]=2183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30269, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5448, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5229, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2183]={ + ["next_chapter"]=2184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30621, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5512, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=60600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2184]={ + ["next_chapter"]=2185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30978, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5576, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5349, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=61200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2185]={ + ["next_chapter"]=2186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31338, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5641, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5409, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=61800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2186]={ + ["next_chapter"]=2187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31702, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5706, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5469, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=62400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2187]={ + ["next_chapter"]=2188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32070, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5773, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5529, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=63000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2188]={ + ["next_chapter"]=2189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32442, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5840, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=63600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2189]={ + ["next_chapter"]=2190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32818, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5907, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5649, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=64200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6310, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=218, + ["unit"]=0 + } + }, + [2190]={ + ["next_chapter"]=2191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=33199, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=5976, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5709, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=64800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2191]={ + ["next_chapter"]=2192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33583, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6045, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5769, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=65400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2192]={ + ["next_chapter"]=2193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33971, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6115, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5829, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=66100, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2193]={ + ["next_chapter"]=2194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34363, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6185, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=66800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2194]={ + ["next_chapter"]=2195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34759, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6257, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5949, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=67500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2195]={ + ["next_chapter"]=2196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35160, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6329, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6009, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=68200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2196]={ + ["next_chapter"]=2197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35564, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6402, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6069, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=68900, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2197]={ + ["next_chapter"]=2198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35973, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6475, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6129, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=69600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2198]={ + ["next_chapter"]=2199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36386, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6549, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6199, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=70300, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2199]={ + ["next_chapter"]=2200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36803, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6624, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6269, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=71000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6958, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=219, + ["unit"]=0 + } + }, + [2200]={ + ["next_chapter"]=2201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=37224, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6700, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6339, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=71700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2201]={ + ["next_chapter"]=2202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37649, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6777, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6409, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=72400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2202]={ + ["next_chapter"]=2203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38079, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6854, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6479, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=73100, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2203]={ + ["next_chapter"]=2204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38513, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=6932, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6549, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=73800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2204]={ + ["next_chapter"]=2205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38952, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7011, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6619, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=74500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2205]={ + ["next_chapter"]=2206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39394, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7091, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=75200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2206]={ + ["next_chapter"]=2207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39841, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7171, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6759, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=76000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2207]={ + ["next_chapter"]=2208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7253, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6829, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=76800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2208]={ + ["next_chapter"]=2209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40748, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7335, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6899, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=77600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2209]={ + ["next_chapter"]=2210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41208, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7417, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6969, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=78400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7675, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=220, + ["unit"]=0 + } + }, + [2210]={ + ["next_chapter"]=2211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=41673, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7501, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7039, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=79200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2211]={ + ["next_chapter"]=2212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42142, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7586, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7119, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2212]={ + ["next_chapter"]=2213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42615, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7671, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7199, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=80800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2213]={ + ["next_chapter"]=2214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43093, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7757, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7279, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=81600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2214]={ + ["next_chapter"]=2215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43576, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7844, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7359, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=82400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2215]={ + ["next_chapter"]=2216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44063, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=7931, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7439, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=83200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2216]={ + ["next_chapter"]=2217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44554, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8020, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7519, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=84000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2217]={ + ["next_chapter"]=2218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45050, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8109, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7599, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=84800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2218]={ + ["next_chapter"]=2219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45551, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8199, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7679, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=85600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2219]={ + ["next_chapter"]=2220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46056, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8290, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7759, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=86500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8467, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=221, + ["unit"]=0 + } + }, + [2220]={ + ["next_chapter"]=2221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=46566, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8382, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7839, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=87400, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2221]={ + ["next_chapter"]=2222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47081, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8475, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7919, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=88300, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2222]={ + ["next_chapter"]=2223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47600, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8568, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7999, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=89200, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2223]={ + ["next_chapter"]=2224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48124, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8662, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=90100, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2224]={ + ["next_chapter"]=2225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48653, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8757, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8179, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=91000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2225]={ + ["next_chapter"]=2226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49186, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8854, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8269, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=91900, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2226]={ + ["next_chapter"]=2227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49724, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=8950, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8359, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=92800, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2227]={ + ["next_chapter"]=2228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50267, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9048, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8449, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=93700, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2228]={ + ["next_chapter"]=2229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50815, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9147, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8539, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=94600, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2229]={ + ["next_chapter"]=2230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51368, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9246, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8629, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=95500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9341, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=222, + ["unit"]=0 + } + }, + [2230]={ + ["next_chapter"]=2231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=51925, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9347, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8719, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=96500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2231]={ + ["next_chapter"]=2232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52488, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9448, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8809, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=97500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2232]={ + ["next_chapter"]=2233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53055, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9550, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8899, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=98500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2233]={ + ["next_chapter"]=2234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53627, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9653, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=99500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2234]={ + ["next_chapter"]=2235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54204, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9757, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=100500, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2235]={ + ["next_chapter"]=2236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54786, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9861, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=102000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2236]={ + ["next_chapter"]=2237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55373, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=9967, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=103000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2237]={ + ["next_chapter"]=2238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55965, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10074, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=104000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2238]={ + ["next_chapter"]=2239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56562, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10181, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=105000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2239]={ + ["next_chapter"]=2240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57164, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10290, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=106000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10306, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=223, + ["unit"]=0 + } + }, + [2240]={ + ["next_chapter"]=2241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=57771, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10399, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=107000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2241]={ + ["next_chapter"]=2242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58383, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10509, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=108000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2242]={ + ["next_chapter"]=2243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59001, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10620, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=109000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2243]={ + ["next_chapter"]=2244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59623, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10732, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=110000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2244]={ + ["next_chapter"]=2245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60250, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10845, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=111000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2245]={ + ["next_chapter"]=2246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60883, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=10959, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=112000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2246]={ + ["next_chapter"]=2247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61521, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=11074, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=113000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2247]={ + ["next_chapter"]=2248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62164, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=11190, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=114000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2248]={ + ["next_chapter"]=2249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62813, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=11306, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=115000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2249]={ + ["next_chapter"]=2250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63466, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=11424, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=116000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=11376, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=224, + ["unit"]=0 + } + }, + [2250]={ + ["next_chapter"]=2251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=64125, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=11543, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=117000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2251]={ + ["next_chapter"]=2252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64789, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=11662, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=118000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2252]={ + ["next_chapter"]=2253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65459, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=11783, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=119000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2253]={ + ["next_chapter"]=2254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66133, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=11904, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=120000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2254]={ + ["next_chapter"]=2255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66814, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=12026, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=121000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2255]={ + ["next_chapter"]=2256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67499, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=12150, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=122000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2256]={ + ["next_chapter"]=2257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68190, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=12274, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=123000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2257]={ + ["next_chapter"]=2258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68886, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=12400, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=124000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2258]={ + ["next_chapter"]=2259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69588, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=12526, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=125000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2259]={ + ["next_chapter"]=2260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70295, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=12653, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=126000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12546, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=225, + ["unit"]=0 + } + }, + [2260]={ + ["next_chapter"]=2261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=71008, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=12781, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=127000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2261]={ + ["next_chapter"]=2262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71726, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=12911, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=128000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2262]={ + ["next_chapter"]=2263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72450, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=13041, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=129000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2263]={ + ["next_chapter"]=2264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73179, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=13172, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=130000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2264]={ + ["next_chapter"]=2265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73914, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=13305, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=131000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2265]={ + ["next_chapter"]=2266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74655, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=13438, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=132000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2266]={ + ["next_chapter"]=2267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75401, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=13572, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=133000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2267]={ + ["next_chapter"]=2268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76153, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=13707, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=134000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2268]={ + ["next_chapter"]=2269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76910, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=13844, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=135000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2269]={ + ["next_chapter"]=2270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77673, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=13981, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=136000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=226, + ["unit"]=0 + } + }, + [2270]={ + ["next_chapter"]=2271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=78442, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=14119, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=137000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2271]={ + ["next_chapter"]=2272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79216, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=14259, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=138000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2272]={ + ["next_chapter"]=2273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79996, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=14399, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=139000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2273]={ + ["next_chapter"]=2274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80782, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=14541, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=140000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2274]={ + ["next_chapter"]=2275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81574, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=14683, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=141000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2275]={ + ["next_chapter"]=2276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82371, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=14827, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=142000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2276]={ + ["next_chapter"]=2277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83175, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=14971, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=143000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2277]={ + ["next_chapter"]=2278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83984, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=15117, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=144000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2278]={ + ["next_chapter"]=2279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84799, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=15264, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=145000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2279]={ + ["next_chapter"]=2280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85620, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=15412, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=146000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=15186, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=227, + ["unit"]=0 + } + }, + [2280]={ + ["next_chapter"]=2281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=86447, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=15560, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=147000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2281]={ + ["next_chapter"]=2282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87279, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=15710, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=148000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2282]={ + ["next_chapter"]=2283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88118, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=15861, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=149000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2283]={ + ["next_chapter"]=2284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88963, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=16013, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=150000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2284]={ + ["next_chapter"]=2285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89813, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=16166, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=152000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2285]={ + ["next_chapter"]=2286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90670, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=16321, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=154000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2286]={ + ["next_chapter"]=2287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91533, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=16476, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=156000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2287]={ + ["next_chapter"]=2288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92402, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=16632, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=158000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2288]={ + ["next_chapter"]=2289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93276, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=16790, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=160000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2289]={ + ["next_chapter"]=2290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94157, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=16948, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=162000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16656, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=228, + ["unit"]=0 + } + }, + [2290]={ + ["next_chapter"]=2291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=95044, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=17108, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=164000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2291]={ + ["next_chapter"]=2292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95938, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=17269, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=166000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2292]={ + ["next_chapter"]=2293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96837, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=17431, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=168000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2293]={ + ["next_chapter"]=2294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97742, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=17594, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=170000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2294]={ + ["next_chapter"]=2295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98654, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=17758, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=172000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2295]={ + ["next_chapter"]=2296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99572, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=17923, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=174000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2296]={ + ["next_chapter"]=2297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100496, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=18089, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=176000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2297]={ + ["next_chapter"]=2298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101427, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=18257, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=178000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2298]={ + ["next_chapter"]=2299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102364, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=18425, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=180000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2299]={ + ["next_chapter"]=2300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103307, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=18595, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=182000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=18296, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=229, + ["unit"]=0 + } + }, + [2300]={ + ["next_chapter"]=2301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=104256, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=18766, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=184000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2301]={ + ["next_chapter"]=2302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105212, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=18938, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=186000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2302]={ + ["next_chapter"]=2303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106174, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=19111, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=188000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2303]={ + ["next_chapter"]=2304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107142, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=19286, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=190000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2304]={ + ["next_chapter"]=2305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108117, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=19461, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=192000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2305]={ + ["next_chapter"]=2306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109099, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=19638, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=194000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2306]={ + ["next_chapter"]=2307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110086, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=19816, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=196000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2307]={ + ["next_chapter"]=2308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111081, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=19995, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=198000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2308]={ + ["next_chapter"]=2309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112081, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=20175, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2309]={ + ["next_chapter"]=2310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113089, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=20356, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=202000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=20136, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=230, + ["unit"]=0 + } + }, + [2310]={ + ["next_chapter"]=2311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=114103, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=20538, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=204000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2311]={ + ["next_chapter"]=2312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115123, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=20722, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=206000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2312]={ + ["next_chapter"]=2313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116150, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=20907, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=208000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2313]={ + ["next_chapter"]=2314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117184, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=21093, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=210000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2314]={ + ["next_chapter"]=2315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118224, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=21280, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=212000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2315]={ + ["next_chapter"]=2316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119271, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=21469, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=214000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2316]={ + ["next_chapter"]=2317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120324, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=21658, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=216000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2317]={ + ["next_chapter"]=2318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121384, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=21849, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=218000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2318]={ + ["next_chapter"]=2319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122451, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=22041, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=220000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2319]={ + ["next_chapter"]=2320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123525, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=22235, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=222000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=22176, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=231, + ["unit"]=0 + } + }, + [2320]={ + ["next_chapter"]=2321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=124606, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=22429, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=224000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2321]={ + ["next_chapter"]=2322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125693, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=22625, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=226000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2322]={ + ["next_chapter"]=2323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126787, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=22822, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=228000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2323]={ + ["next_chapter"]=2324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127887, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=23020, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=230000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2324]={ + ["next_chapter"]=2325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128995, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=23219, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=232000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2325]={ + ["next_chapter"]=2326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130110, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=23420, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=234000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2326]={ + ["next_chapter"]=2327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131231, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=23622, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=236000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2327]={ + ["next_chapter"]=2328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132359, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=23825, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=238000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2328]={ + ["next_chapter"]=2329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133494, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=24029, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=240000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2329]={ + ["next_chapter"]=2330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134637, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=24235, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=242000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=232, + ["unit"]=0 + } + }, + [2330]={ + ["next_chapter"]=2331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=135786, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=24441, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=244000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2331]={ + ["next_chapter"]=2332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136942, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=24650, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=246000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2332]={ + ["next_chapter"]=2333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138105, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=24859, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=248000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2333]={ + ["next_chapter"]=2334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139275, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=25070, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=250000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2334]={ + ["next_chapter"]=2335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140452, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=25281, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=253000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2335]={ + ["next_chapter"]=2336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141636, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=25495, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=256000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2336]={ + ["next_chapter"]=2337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142828, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=25709, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=259000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2337]={ + ["next_chapter"]=2338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144026, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=25925, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=262000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2338]={ + ["next_chapter"]=2339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145232, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=26142, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=265000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2339]={ + ["next_chapter"]=2340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146445, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=26360, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=268000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=26856, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=233, + ["unit"]=0 + } + }, + [2340]={ + ["next_chapter"]=2341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=147665, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=26580, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=271000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2341]={ + ["next_chapter"]=2342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148892, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=26800, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=274000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2342]={ + ["next_chapter"]=2343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150126, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=27023, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=277000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2343]={ + ["next_chapter"]=2344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151368, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=27246, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=280000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2344]={ + ["next_chapter"]=2345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152616, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=27471, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=283000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2345]={ + ["next_chapter"]=2346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153872, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=27697, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=286000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2346]={ + ["next_chapter"]=2347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155136, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=27924, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=289000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2347]={ + ["next_chapter"]=2348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156407, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=28153, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=292000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2348]={ + ["next_chapter"]=2349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157685, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=28383, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=295000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2349]={ + ["next_chapter"]=2350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158970, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=28615, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=298000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=29566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=234, + ["unit"]=0 + } + }, + [2350]={ + ["next_chapter"]=2351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=160263, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=28847, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=301000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2351]={ + ["next_chapter"]=2352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161563, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=29081, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=304000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2352]={ + ["next_chapter"]=2353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162871, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=29317, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=307000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2353]={ + ["next_chapter"]=2354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=164186, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=29553, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=310000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2354]={ + ["next_chapter"]=2355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165509, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=29792, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=313000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2355]={ + ["next_chapter"]=2356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166839, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=30031, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=316000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2356]={ + ["next_chapter"]=2357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168176, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=30272, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=319000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2357]={ + ["next_chapter"]=2358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169522, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=30514, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=322000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2358]={ + ["next_chapter"]=2359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=170874, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=30757, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=325000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2359]={ + ["next_chapter"]=2360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=172234, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=31002, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=328000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=32576, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=235, + ["unit"]=0 + } + }, + [2360]={ + ["next_chapter"]=2361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=173602, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=31248, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=331000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2361]={ + ["next_chapter"]=2362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174978, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=31496, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=334000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2362]={ + ["next_chapter"]=2363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176361, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=31745, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=337000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2363]={ + ["next_chapter"]=2364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=177752, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=31995, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=340000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2364]={ + ["next_chapter"]=2365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179150, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=32247, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=343000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2365]={ + ["next_chapter"]=2366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=180556, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=32500, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=346000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2366]={ + ["next_chapter"]=2367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=181970, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=32755, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=349000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2367]={ + ["next_chapter"]=2368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=183392, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=33011, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=352000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2368]={ + ["next_chapter"]=2369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=184822, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=33268, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=356000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2369]={ + ["next_chapter"]=2370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=186259, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=33527, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=360000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=35886, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=236, + ["unit"]=0 + } + }, + [2370]={ + ["next_chapter"]=2371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=187704, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=33787, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=364000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2371]={ + ["next_chapter"]=2372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=189157, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=34048, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=368000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2372]={ + ["next_chapter"]=2373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=190617, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=34311, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=372000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2373]={ + ["next_chapter"]=2374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=192086, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=34575, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=376000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2374]={ + ["next_chapter"]=2375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=193562, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=34841, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=380000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2375]={ + ["next_chapter"]=2376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=195047, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=35108, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=384000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2376]={ + ["next_chapter"]=2377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=196539, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=35377, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=388000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2377]={ + ["next_chapter"]=2378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=198040, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=35647, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=392000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2378]={ + ["next_chapter"]=2379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=199548, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=35919, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=396000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2379]={ + ["next_chapter"]=2380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=201064, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=36192, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=39526, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=237, + ["unit"]=0 + } + }, + [2380]={ + ["next_chapter"]=2381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=202588, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=36466, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=404000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2381]={ + ["next_chapter"]=2382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=204121, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=36742, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=408000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2382]={ + ["next_chapter"]=2383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=205661, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=37019, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=412000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2383]={ + ["next_chapter"]=2384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=207210, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=37298, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=416000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2384]={ + ["next_chapter"]=2385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=208766, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=37578, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=420000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2385]={ + ["next_chapter"]=2386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=210331, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=37860, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=424000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2386]={ + ["next_chapter"]=2387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=211904, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=38143, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=428000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2387]={ + ["next_chapter"]=2388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=213485, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=38427, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=432000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2388]={ + ["next_chapter"]=2389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=215074, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=38713, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=436000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2389]={ + ["next_chapter"]=2390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=216672, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=39001, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=440000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=43566, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=238, + ["unit"]=0 + } + }, + [2390]={ + ["next_chapter"]=2391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=218277, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=39290, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=444000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2391]={ + ["next_chapter"]=2392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=219891, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=39580, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=448000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2392]={ + ["next_chapter"]=2393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=221514, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=39872, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=452000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2393]={ + ["next_chapter"]=2394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=223144, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=40166, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=457000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2394]={ + ["next_chapter"]=2395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=224783, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=40461, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=462000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2395]={ + ["next_chapter"]=2396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=226430, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=40757, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=467000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2396]={ + ["next_chapter"]=2397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=228086, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=41055, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=472000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2397]={ + ["next_chapter"]=2398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=229750, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=41355, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=477000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2398]={ + ["next_chapter"]=2399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=231422, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=41656, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=482000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2399]={ + ["next_chapter"]=2400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=233103, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=41959, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=487000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=48006, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=239, + ["unit"]=0 + } + }, + [2400]={ + ["next_chapter"]=2401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=234792, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=42263, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=492000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2401]={ + ["next_chapter"]=2402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=236490, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=42568, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=497000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2402]={ + ["next_chapter"]=2403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=238196, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=42875, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=502000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2403]={ + ["next_chapter"]=2404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=239911, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=43184, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=507000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2404]={ + ["next_chapter"]=2405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=241634, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=43494, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=512000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2405]={ + ["next_chapter"]=2406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=243365, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=43806, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=517000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2406]={ + ["next_chapter"]=2407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=245106, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=44119, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=522000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2407]={ + ["next_chapter"]=2408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=246855, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=44434, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=527000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2408]={ + ["next_chapter"]=2409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=248612, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=44750, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=532000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2409]={ + ["next_chapter"]=2410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=250378, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=45068, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=537000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=52926, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=240, + ["unit"]=0 + } + }, + [2410]={ + ["next_chapter"]=2411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=252153, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=45388, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=542000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2411]={ + ["next_chapter"]=2412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=253937, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=45709, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=547000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2412]={ + ["next_chapter"]=2413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=255729, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=46031, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=552000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2413]={ + ["next_chapter"]=2414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=257530, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=46355, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=558000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2414]={ + ["next_chapter"]=2415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=259340, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=46681, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=564000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2415]={ + ["next_chapter"]=2416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=261158, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=47008, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=570000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2416]={ + ["next_chapter"]=2417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=262985, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=47337, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=576000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2417]={ + ["next_chapter"]=2418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=264821, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=47668, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=582000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2418]={ + ["next_chapter"]=2419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=266666, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=48000, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=588000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2419]={ + ["next_chapter"]=2420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=268520, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=48334, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=594000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=58346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=241, + ["unit"]=0 + } + }, + [2420]={ + ["next_chapter"]=2421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=270382, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=48669, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2421]={ + ["next_chapter"]=2422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=272254, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=49006, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=606000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2422]={ + ["next_chapter"]=2423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=274134, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=49344, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=612000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2423]={ + ["next_chapter"]=2424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=276024, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=49684, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=618000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2424]={ + ["next_chapter"]=2425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=277922, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=50026, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=624000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2425]={ + ["next_chapter"]=2426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=279829, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=50369, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=630000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2426]={ + ["next_chapter"]=2427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=281745, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=50714, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=636000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2427]={ + ["next_chapter"]=2428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=283671, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=51061, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=642000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2428]={ + ["next_chapter"]=2429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=285605, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=51409, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=648000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2429]={ + ["next_chapter"]=2430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=287548, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=51759, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=654000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=64346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=242, + ["unit"]=0 + } + }, + [2430]={ + ["next_chapter"]=2431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=289501, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=52110, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=661000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2431]={ + ["next_chapter"]=2432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=291462, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=52463, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=668000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2432]={ + ["next_chapter"]=2433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=293433, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=52818, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=675000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2433]={ + ["next_chapter"]=2434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=295413, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=53174, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=682000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2434]={ + ["next_chapter"]=2435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=297402, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=53532, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=689000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2435]={ + ["next_chapter"]=2436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=299400, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=53892, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=696000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2436]={ + ["next_chapter"]=2437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=301407, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=54253, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=703000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2437]={ + ["next_chapter"]=2438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=303424, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=54616, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=710000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2438]={ + ["next_chapter"]=2439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=305450, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=54981, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=717000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2439]={ + ["next_chapter"]=2440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=307485, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=55347, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=724000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=70956, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=243, + ["unit"]=0 + } + }, + [2440]={ + ["next_chapter"]=2441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=309529, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=55715, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=731000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2441]={ + ["next_chapter"]=2442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=311583, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=56085, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=738000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2442]={ + ["next_chapter"]=2443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=313646, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=56456, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=745000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2443]={ + ["next_chapter"]=2444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=315718, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=56829, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=752000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2444]={ + ["next_chapter"]=2445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=317800, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=57204, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=760000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2445]={ + ["next_chapter"]=2446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=319891, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=57580, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=768000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2446]={ + ["next_chapter"]=2447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=321992, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=57959, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=776000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2447]={ + ["next_chapter"]=2448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=324102, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=58338, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=784000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2448]={ + ["next_chapter"]=2449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=326222, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=58720, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=792000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2449]={ + ["next_chapter"]=2450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=328350, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=59103, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=78266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=244, + ["unit"]=0 + } + }, + [2450]={ + ["next_chapter"]=2451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=330489, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=59488, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=808000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2451]={ + ["next_chapter"]=2452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=332637, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=59875, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=816000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2452]={ + ["next_chapter"]=2453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=334795, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=60263, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=824000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2453]={ + ["next_chapter"]=2454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=336962, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=60653, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=832000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2454]={ + ["next_chapter"]=2455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=339138, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=61045, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=840000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2455]={ + ["next_chapter"]=2456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=341325, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=61438, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=848000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2456]={ + ["next_chapter"]=2457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=343521, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=61834, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=856000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2457]={ + ["next_chapter"]=2458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=345726, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=62231, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=865000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2458]={ + ["next_chapter"]=2459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=347942, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=62630, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=874000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2459]={ + ["next_chapter"]=2460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350167, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=63030, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=883000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=86346, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=245, + ["unit"]=0 + } + }, + [2460]={ + ["next_chapter"]=2461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=352401, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=63432, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=892000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2461]={ + ["next_chapter"]=2462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354646, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=63836, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=901000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2462]={ + ["next_chapter"]=2463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=356900, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=64242, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81789, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=910000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2463]={ + ["next_chapter"]=2464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=359164, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=64650, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82689, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=919000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2464]={ + ["next_chapter"]=2465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=361438, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=65059, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83589, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=928000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2465]={ + ["next_chapter"]=2466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=363721, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=65470, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84489, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=937000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2466]={ + ["next_chapter"]=2467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=366015, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=65883, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85389, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=946000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2467]={ + ["next_chapter"]=2468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=368318, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=66297, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86289, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=955000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2468]={ + ["next_chapter"]=2469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=370631, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=66714, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87189, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=965000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2469]={ + ["next_chapter"]=2470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=372955, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=67132, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88089, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=975000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=95266, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=246, + ["unit"]=0 + } + }, + [2470]={ + ["next_chapter"]=2471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=375288, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=67552, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88989, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=985000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2471]={ + ["next_chapter"]=2472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=377631, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=67973, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=2 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=995000, + ["unit"]=2 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2472]={ + ["next_chapter"]=2473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=379983, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=68397, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1005, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2473]={ + ["next_chapter"]=2474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=382346, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=68822, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1020, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2474]={ + ["next_chapter"]=2475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=384719, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=69249, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1030, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2475]={ + ["next_chapter"]=2476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=387102, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=69678, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1040, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2476]={ + ["next_chapter"]=2477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=389495, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=70109, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1050, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2477]={ + ["next_chapter"]=2478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=391899, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=70542, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2478]={ + ["next_chapter"]=2479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=394312, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=70976, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1070, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2479]={ + ["next_chapter"]=2480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=396735, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=71412, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1080, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=105116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=247, + ["unit"]=0 + } + }, + [2480]={ + ["next_chapter"]=2481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=399169, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=71850, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2481]={ + ["next_chapter"]=2482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=401612, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=72290, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2482]={ + ["next_chapter"]=2483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=404066, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=72732, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1110, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2483]={ + ["next_chapter"]=2484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=406530, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=73175, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2484]={ + ["next_chapter"]=2485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=409004, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=73621, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1130, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2485]={ + ["next_chapter"]=2486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=411489, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=74068, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2486]={ + ["next_chapter"]=2487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=413984, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=74517, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1150, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2487]={ + ["next_chapter"]=2488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=416489, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=74968, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1160, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2488]={ + ["next_chapter"]=2489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=419004, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=75421, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1170, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2489]={ + ["next_chapter"]=2490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=421530, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=75875, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=116016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=248, + ["unit"]=0 + } + }, + [2490]={ + ["next_chapter"]=2491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=424066, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=76332, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1190, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2491]={ + ["next_chapter"]=2492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=426612, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=76790, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2492]={ + ["next_chapter"]=2493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=429169, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=77250, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2493]={ + ["next_chapter"]=2494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=431736, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=77712, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1220, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2494]={ + ["next_chapter"]=2495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=434314, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=78176, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1230, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2495]={ + ["next_chapter"]=2496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=436902, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=78642, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2496]={ + ["next_chapter"]=2497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=439500, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=79110, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2497]={ + ["next_chapter"]=2498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=442110, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=79580, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1260, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2498]={ + ["next_chapter"]=2499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=444729, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=80051, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1270, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2499]={ + ["next_chapter"]=2500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=447359, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=80525, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1280, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=127916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=249, + ["unit"]=0 + } + }, + [2500]={ + ["next_chapter"]=2501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=450000, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85500, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1290, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2501]={ + ["next_chapter"]=2502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450000, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85500, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2502]={ + ["next_chapter"]=2503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450001, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85500, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1310, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2503]={ + ["next_chapter"]=2504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450002, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85500, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1320, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2504]={ + ["next_chapter"]=2505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450005, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85501, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1330, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2505]={ + ["next_chapter"]=2506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450010, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85502, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2506]={ + ["next_chapter"]=2507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450017, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85503, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1350, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2507]={ + ["next_chapter"]=2508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450026, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85505, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1360, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2508]={ + ["next_chapter"]=2509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450039, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85507, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2509]={ + ["next_chapter"]=2510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450056, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85511, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1380, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=140816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=250, + ["unit"]=0 + } + }, + [2510]={ + ["next_chapter"]=2511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=450076, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85515, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2511]={ + ["next_chapter"]=2512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450102, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85519, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2512]={ + ["next_chapter"]=2513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450132, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85525, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1410, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2513]={ + ["next_chapter"]=2514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450168, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85532, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1420, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2514]={ + ["next_chapter"]=2515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450210, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85540, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1430, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2515]={ + ["next_chapter"]=2516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450258, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85549, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2516]={ + ["next_chapter"]=2517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450313, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85559, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1450, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2517]={ + ["next_chapter"]=2518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450375, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85571, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1460, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2518]={ + ["next_chapter"]=2519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450446, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85585, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1470, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2519]={ + ["next_chapter"]=2520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450524, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85600, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=154716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=251, + ["unit"]=0 + } + }, + [2520]={ + ["next_chapter"]=2521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=450611, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85616, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2521]={ + ["next_chapter"]=2522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450708, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85634, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2522]={ + ["next_chapter"]=2523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450814, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85655, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2523]={ + ["next_chapter"]=2524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450930, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85677, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2524]={ + ["next_chapter"]=2525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=451056, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85701, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1560, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2525]={ + ["next_chapter"]=2526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=451194, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85727, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1580, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2526]={ + ["next_chapter"]=2527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=451343, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85755, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2527]={ + ["next_chapter"]=2528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=451504, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85786, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1620, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2528]={ + ["next_chapter"]=2529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=451677, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85819, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1640, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2529]={ + ["next_chapter"]=2530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=451863, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85854, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1660, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=169616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=252, + ["unit"]=0 + } + }, + [2530]={ + ["next_chapter"]=2531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=452063, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85892, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1680, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2531]={ + ["next_chapter"]=2532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=452276, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85932, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2532]={ + ["next_chapter"]=2533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=452503, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=85976, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1720, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2533]={ + ["next_chapter"]=2534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=452746, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86022, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1740, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2534]={ + ["next_chapter"]=2535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=453003, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86071, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1760, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2535]={ + ["next_chapter"]=2536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=453276, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86122, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1780, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2536]={ + ["next_chapter"]=2537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=453565, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86177, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2537]={ + ["next_chapter"]=2538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=453870, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86235, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2538]={ + ["next_chapter"]=2539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=454192, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86297, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1840, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2539]={ + ["next_chapter"]=2540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=454532, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86361, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1860, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=186416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=253, + ["unit"]=0 + } + }, + [2540]={ + ["next_chapter"]=2541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=454890, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86429, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1880, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2541]={ + ["next_chapter"]=2542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=455266, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86500, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2542]={ + ["next_chapter"]=2543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=455660, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86575, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1920, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2543]={ + ["next_chapter"]=2544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=456074, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86654, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1940, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2544]={ + ["next_chapter"]=2545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=456508, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86737, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2545]={ + ["next_chapter"]=2546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=456962, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86823, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=1980, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2546]={ + ["next_chapter"]=2547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=457436, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=86913, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2547]={ + ["next_chapter"]=2548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=457932, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87007, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2020, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2548]={ + ["next_chapter"]=2549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=458449, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87105, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2040, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2549]={ + ["next_chapter"]=2550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=458988, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87208, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=205216, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=254, + ["unit"]=0 + } + }, + [2550]={ + ["next_chapter"]=2551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=459550, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87315, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2080, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2551]={ + ["next_chapter"]=2552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=460135, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87426, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2552]={ + ["next_chapter"]=2553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=460742, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87541, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2120, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2553]={ + ["next_chapter"]=2554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=461374, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87661, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2140, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2554]={ + ["next_chapter"]=2555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=462030, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87786, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2160, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2555]={ + ["next_chapter"]=2556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=462711, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=87915, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2180, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2556]={ + ["next_chapter"]=2557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=463417, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=88049, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2557]={ + ["next_chapter"]=2558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=464149, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=88188, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2220, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2558]={ + ["next_chapter"]=2559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=464907, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=88332, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2240, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2559]={ + ["next_chapter"]=2560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=465691, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=88481, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2260, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=226016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=255, + ["unit"]=0 + } + }, + [2560]={ + ["next_chapter"]=2561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=466502, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=88635, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2280, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2561]={ + ["next_chapter"]=2562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=467341, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=88795, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2562]={ + ["next_chapter"]=2563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=468208, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=88960, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2320, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2563]={ + ["next_chapter"]=2564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=469104, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=89130, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2340, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2564]={ + ["next_chapter"]=2565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=470028, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=89305, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2360, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2565]={ + ["next_chapter"]=2566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=470981, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=89486, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2380, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2566]={ + ["next_chapter"]=2567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=471965, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=89673, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2567]={ + ["next_chapter"]=2568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=472978, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=89866, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2420, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2568]={ + ["next_chapter"]=2569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=474023, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=90064, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2440, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2569]={ + ["next_chapter"]=2570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=475098, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=90269, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2460, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=248816, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=256, + ["unit"]=0 + } + }, + [2570]={ + ["next_chapter"]=2571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=476205, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=90479, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2480, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2571]={ + ["next_chapter"]=2572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=477344, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=90695, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2572]={ + ["next_chapter"]=2573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=478516, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=90918, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2530, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2573]={ + ["next_chapter"]=2574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=479721, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=91147, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2560, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2574]={ + ["next_chapter"]=2575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=480959, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=91382, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2590, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2575]={ + ["next_chapter"]=2576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=482231, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=91624, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2620, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2576]={ + ["next_chapter"]=2577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=483538, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=91872, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2650, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2577]={ + ["next_chapter"]=2578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=484879, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=92127, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2680, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2578]={ + ["next_chapter"]=2579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=486256, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=92389, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2710, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2579]={ + ["next_chapter"]=2580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=487668, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=92657, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2740, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=273616, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=257, + ["unit"]=0 + } + }, + [2580]={ + ["next_chapter"]=2581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=489117, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=92932, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2770, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2581]={ + ["next_chapter"]=2582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=490602, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=93214, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2582]={ + ["next_chapter"]=2583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=492125, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=93504, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2830, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2583]={ + ["next_chapter"]=2584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=493685, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=93800, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2860, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2584]={ + ["next_chapter"]=2585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=495283, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=94104, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2890, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2585]={ + ["next_chapter"]=2586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=496919, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=94415, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2920, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2586]={ + ["next_chapter"]=2587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=498595, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=94733, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2950, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2587]={ + ["next_chapter"]=2588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=500310, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=95059, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=2980, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2588]={ + ["next_chapter"]=2589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=502064, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=95392, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3010, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2589]={ + ["next_chapter"]=2590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=503860, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=95733, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3040, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=301316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=258, + ["unit"]=0 + } + }, + [2590]={ + ["next_chapter"]=2591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=505696, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=96082, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3070, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2591]={ + ["next_chapter"]=2592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=507573, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=96439, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2592]={ + ["next_chapter"]=2593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=509492, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=96803, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3130, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2593]={ + ["next_chapter"]=2594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=511453, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=97176, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2594]={ + ["next_chapter"]=2595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=513457, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=97557, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3190, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2595]={ + ["next_chapter"]=2596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=515503, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=97946, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3220, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2596]={ + ["next_chapter"]=2597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=517594, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=98343, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3250, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2597]={ + ["next_chapter"]=2598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=519728, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=98748, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3280, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2598]={ + ["next_chapter"]=2599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=521907, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=99162, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3310, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2599]={ + ["next_chapter"]=2600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=524131, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=99585, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3340, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=332016, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=259, + ["unit"]=0 + } + }, + [2600]={ + ["next_chapter"]=2601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=526400, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=100016, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3370, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2601]={ + ["next_chapter"]=2602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=528715, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=100456, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2602]={ + ["next_chapter"]=2603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=531076, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=100904, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3430, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2603]={ + ["next_chapter"]=2604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=533484, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=101362, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3460, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2604]={ + ["next_chapter"]=2605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=535940, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=101829, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3490, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2605]={ + ["next_chapter"]=2606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=538443, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=102304, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3520, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2606]={ + ["next_chapter"]=2607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=540994, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=102789, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3560, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2607]={ + ["next_chapter"]=2608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=543593, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=103283, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2608]={ + ["next_chapter"]=2609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=546242, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=103786, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3640, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2609]={ + ["next_chapter"]=2610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=548940, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=104299, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3680, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=365716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=260, + ["unit"]=0 + } + }, + [2610]={ + ["next_chapter"]=2611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=551688, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=104821, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3720, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2611]={ + ["next_chapter"]=2612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=554487, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=105353, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3760, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2612]={ + ["next_chapter"]=2613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=557336, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=105894, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2613]={ + ["next_chapter"]=2614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=560237, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=106445, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3840, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2614]={ + ["next_chapter"]=2615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=563190, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=107006, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3880, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2615]={ + ["next_chapter"]=2616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=566195, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=107577, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3920, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2616]={ + ["next_chapter"]=2617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=569252, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=108158, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=3960, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2617]={ + ["next_chapter"]=2618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=572363, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=108749, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2618]={ + ["next_chapter"]=2619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=575528, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=109350, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4040, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2619]={ + ["next_chapter"]=2620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=578746, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=109962, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4080, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=402916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=261, + ["unit"]=0 + } + }, + [2620]={ + ["next_chapter"]=2621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=582019, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=110584, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4120, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2621]={ + ["next_chapter"]=2622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=585347, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=111216, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4160, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2622]={ + ["next_chapter"]=2623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=588731, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=111859, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2623]={ + ["next_chapter"]=2624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=592170, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=112512, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4240, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2624]={ + ["next_chapter"]=2625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=595666, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=113177, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4280, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2625]={ + ["next_chapter"]=2626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=599219, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=113852, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4320, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2626]={ + ["next_chapter"]=2627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=602829, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=114537, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4360, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2627]={ + ["next_chapter"]=2628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=606496, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=115234, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2628]={ + ["next_chapter"]=2629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=610222, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=115942, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4440, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2629]={ + ["next_chapter"]=2630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=614007, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=116661, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4480, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=444116, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=262, + ["unit"]=0 + } + }, + [2630]={ + ["next_chapter"]=2631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=617851, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=117392, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4520, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2631]={ + ["next_chapter"]=2632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=621754, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=118133, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4570, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2632]={ + ["next_chapter"]=2633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=625718, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=118886, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4620, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2633]={ + ["next_chapter"]=2634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=629741, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=119651, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4670, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2634]={ + ["next_chapter"]=2635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=633826, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=120427, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4720, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2635]={ + ["next_chapter"]=2636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=637973, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=121215, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4770, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2636]={ + ["next_chapter"]=2637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=642181, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=122014, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4820, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2637]={ + ["next_chapter"]=2638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=646451, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=122826, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4870, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2638]={ + ["next_chapter"]=2639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=650785, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=123649, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4920, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2639]={ + ["next_chapter"]=2640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=655181, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=124484, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=4970, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=489316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=263, + ["unit"]=0 + } + }, + [2640]={ + ["next_chapter"]=2641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=659642, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=125332, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5020, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2641]={ + ["next_chapter"]=2642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=664166, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=126192, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5070, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2642]={ + ["next_chapter"]=2643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=668755, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=127063, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=441889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5120, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2643]={ + ["next_chapter"]=2644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=673409, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=127948, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5170, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2644]={ + ["next_chapter"]=2645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=678129, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=128845, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5220, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2645]={ + ["next_chapter"]=2646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=682915, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=129754, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5270, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2646]={ + ["next_chapter"]=2647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=687767, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=130676, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5320, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2647]={ + ["next_chapter"]=2648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=692686, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=131610, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5370, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2648]={ + ["next_chapter"]=2649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=697673, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=132558, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5420, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2649]={ + ["next_chapter"]=2650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=702727, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=133518, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5470, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=539516, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=264, + ["unit"]=0 + } + }, + [2650]={ + ["next_chapter"]=2651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=707850, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=134492, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5520, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2651]={ + ["next_chapter"]=2652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=713041, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=135478, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=486889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5580, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2652]={ + ["next_chapter"]=2653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=718302, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=136477, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=491889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5640, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2653]={ + ["next_chapter"]=2654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=723632, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=137490, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=496889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2654]={ + ["next_chapter"]=2655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=729033, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=138516, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=501889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5760, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2655]={ + ["next_chapter"]=2656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=734504, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=139556, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5820, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2656]={ + ["next_chapter"]=2657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=740046, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=140609, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=511889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5880, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2657]={ + ["next_chapter"]=2658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=745660, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=141675, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=5940, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2658]={ + ["next_chapter"]=2659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=751345, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=142756, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=522889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2659]={ + ["next_chapter"]=2660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=757103, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=143850, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=528889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6060, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=594716, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=265, + ["unit"]=0 + } + }, + [2660]={ + ["next_chapter"]=2661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=762934, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=144958, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6120, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2661]={ + ["next_chapter"]=2662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=768839, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=146079, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6180, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2662]={ + ["next_chapter"]=2663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=774817, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=147215, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6240, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2663]={ + ["next_chapter"]=2664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=780869, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=148365, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2664]={ + ["next_chapter"]=2665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=786996, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=149529, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=558889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6360, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2665]={ + ["next_chapter"]=2666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=793198, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=150708, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6420, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2666]={ + ["next_chapter"]=2667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=799476, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=151900, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=570889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6480, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2667]={ + ["next_chapter"]=2668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805830, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=153108, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=576889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6540, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2668]={ + ["next_chapter"]=2669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=812261, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=154330, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=582889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6610, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2669]={ + ["next_chapter"]=2670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=818768, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=155566, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=588889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6680, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=655916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=266, + ["unit"]=0 + } + }, + [2670]={ + ["next_chapter"]=2671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=825353, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=156817, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=594889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6750, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2671]={ + ["next_chapter"]=2672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=832016, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=158083, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=600889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6820, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2672]={ + ["next_chapter"]=2673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=838757, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=159364, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=606889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6890, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2673]={ + ["next_chapter"]=2674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=845578, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=160660, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=612889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=6960, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2674]={ + ["next_chapter"]=2675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=852477, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=161971, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=619889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7030, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2675]={ + ["next_chapter"]=2676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=859456, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=163297, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=626889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2676]={ + ["next_chapter"]=2677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=866516, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=164638, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=633889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7170, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2677]={ + ["next_chapter"]=2678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=873656, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=165995, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=640889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7240, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2678]={ + ["next_chapter"]=2679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=880877, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=167367, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=647889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7310, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2679]={ + ["next_chapter"]=2680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=888180, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=168754, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7380, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=723416, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=267, + ["unit"]=0 + } + }, + [2680]={ + ["next_chapter"]=2681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=895565, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=170157, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=661889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7450, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2681]={ + ["next_chapter"]=2682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=903032, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=171576, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=668889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7520, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2682]={ + ["next_chapter"]=2683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=910583, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=173011, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=675889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2683]={ + ["next_chapter"]=2684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=918216, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=174461, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7680, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2684]={ + ["next_chapter"]=2685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=925934, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=175927, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=689889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7760, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2685]={ + ["next_chapter"]=2686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=933736, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=177410, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=696889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7840, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2686]={ + ["next_chapter"]=2687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=941623, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=178908, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=703889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=7920, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2687]={ + ["next_chapter"]=2688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=949595, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=180423, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=711889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2688]={ + ["next_chapter"]=2689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=957653, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=181954, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=719889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8080, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2689]={ + ["next_chapter"]=2690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=965797, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=183501, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=727889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8160, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=797916, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=268, + ["unit"]=0 + } + }, + [2690]={ + ["next_chapter"]=2691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=974028, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=185065, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=735889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8240, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2691]={ + ["next_chapter"]=2692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=982345, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=186646, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=743889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8320, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2692]={ + ["next_chapter"]=2693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=990751, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=188243, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=751889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2693]={ + ["next_chapter"]=2694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=999244, + ["unit"]=5 + }, + ["hp_coefficient"]={ + ["value"]=189856, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=759889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8480, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2694]={ + ["next_chapter"]=2695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1008, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=191487, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=767889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8560, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2695]={ + ["next_chapter"]=2696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1016, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=193134, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=775889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8650, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2696]={ + ["next_chapter"]=2697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1025, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=194799, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=783889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8740, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2697]={ + ["next_chapter"]=2698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1034, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=196480, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=791889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8830, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2698]={ + ["next_chapter"]=2699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1043, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=198179, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=8920, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2699]={ + ["next_chapter"]=2700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1052, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=199895, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=808889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9010, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=880316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=269, + ["unit"]=0 + } + }, + [2700]={ + ["next_chapter"]=2701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1061, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=201628, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=817889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2701]={ + ["next_chapter"]=2702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1070, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=203379, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=826889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9190, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2702]={ + ["next_chapter"]=2703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1080, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=205147, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=835889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9280, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2703]={ + ["next_chapter"]=2704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1089, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=206933, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=844889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9370, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2704]={ + ["next_chapter"]=2705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1099, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=208736, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=853889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9460, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2705]={ + ["next_chapter"]=2706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1108, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=210557, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=862889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9550, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2706]={ + ["next_chapter"]=2707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1118, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=212396, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=871889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9650, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2707]={ + ["next_chapter"]=2708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1128, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=214253, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=880889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9750, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2708]={ + ["next_chapter"]=2709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1138, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=216128, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=889889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9850, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2709]={ + ["next_chapter"]=2710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1147, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=218021, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=898889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=9950, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=971316, + ["unit"]=3 + }, + ["grasp_mastery_reward"]={ + ["value"]=270, + ["unit"]=0 + } + }, + [2710]={ + ["next_chapter"]=2711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=1158, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=219933, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=908889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10050, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2711]={ + ["next_chapter"]=2712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1168, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=221862, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=918889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2712]={ + ["next_chapter"]=2713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1178, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=223810, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=928889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2713]={ + ["next_chapter"]=2714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1188, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=225777, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=938889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2714]={ + ["next_chapter"]=2715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1199, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=227762, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=948889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2715]={ + ["next_chapter"]=2716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1209, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=229765, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=958889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2716]={ + ["next_chapter"]=2717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1220, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=231788, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=968889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2717]={ + ["next_chapter"]=2718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1231, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=233829, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=978889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2718]={ + ["next_chapter"]=2719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1242, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=235889, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=988889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=10900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2719]={ + ["next_chapter"]=2720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1252, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=237968, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=998889, + ["unit"]=3 + }, + ["idle_gold"]={ + ["value"]=11000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=271, + ["unit"]=0 + } + }, + [2720]={ + ["next_chapter"]=2721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=1264, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=240066, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1009, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2721]={ + ["next_chapter"]=2722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1275, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=242184, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1019, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2722]={ + ["next_chapter"]=2723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1286, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=244320, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1029, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2723]={ + ["next_chapter"]=2724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1297, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=246476, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1039, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2724]={ + ["next_chapter"]=2725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1309, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=248651, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1049, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2725]={ + ["next_chapter"]=2726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1320, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=250846, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1059, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2726]={ + ["next_chapter"]=2727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1332, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=253061, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1069, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2727]={ + ["next_chapter"]=2728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1344, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=255295, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1079, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2728]={ + ["next_chapter"]=2729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1356, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=257549, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2729]={ + ["next_chapter"]=2730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1367, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=259822, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1099, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=272, + ["unit"]=0 + } + }, + [2730]={ + ["next_chapter"]=2731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1380, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=262116, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1109, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2731]={ + ["next_chapter"]=2732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1392, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=264430, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1119, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2732]={ + ["next_chapter"]=2733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1404, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=266764, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1129, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2733]={ + ["next_chapter"]=2734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1416, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=269118, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1139, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2734]={ + ["next_chapter"]=2735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1429, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=271492, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1149, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2735]={ + ["next_chapter"]=2736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1442, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=273887, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1159, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2736]={ + ["next_chapter"]=2737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1454, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=276302, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1169, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2737]={ + ["next_chapter"]=2738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1467, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=278738, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1179, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2738]={ + ["next_chapter"]=2739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1480, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=281194, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=12900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2739]={ + ["next_chapter"]=2740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1493, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=283671, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1199, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=273, + ["unit"]=0 + } + }, + [2740]={ + ["next_chapter"]=2741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1506, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=286169, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1209, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2741]={ + ["next_chapter"]=2742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1519, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=288688, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1219, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2742]={ + ["next_chapter"]=2743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1533, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=291228, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1229, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2743]={ + ["next_chapter"]=2744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1546, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=293789, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1239, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2744]={ + ["next_chapter"]=2745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1560, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=296371, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1249, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2745]={ + ["next_chapter"]=2746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1574, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=298974, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1259, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2746]={ + ["next_chapter"]=2747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1587, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=301599, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1269, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2747]={ + ["next_chapter"]=2748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1601, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=304245, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1279, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2748]={ + ["next_chapter"]=2749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1615, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=306912, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=13900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2749]={ + ["next_chapter"]=2750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1629, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=309602, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1299, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1435, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=274, + ["unit"]=0 + } + }, + [2750]={ + ["next_chapter"]=2751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1644, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=312313, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1309, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2751]={ + ["next_chapter"]=2752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1658, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=315045, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1319, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2752]={ + ["next_chapter"]=2753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1673, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=317800, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1329, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2753]={ + ["next_chapter"]=2754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1687, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=320576, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1339, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2754]={ + ["next_chapter"]=2755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1702, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=323375, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1349, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2755]={ + ["next_chapter"]=2756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1717, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=326195, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1359, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2756]={ + ["next_chapter"]=2757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1732, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=329038, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1369, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2757]={ + ["next_chapter"]=2758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1747, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=331903, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1379, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2758]={ + ["next_chapter"]=2759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=334791, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=14900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2759]={ + ["next_chapter"]=2760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1777, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=337701, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1399, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=15000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1576, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=275, + ["unit"]=0 + } + }, + [2760]={ + ["next_chapter"]=2761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1793, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=340633, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1409, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=15200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2761]={ + ["next_chapter"]=2762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1808, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=343588, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1419, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=15400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2762]={ + ["next_chapter"]=2763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1824, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=346566, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1429, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=15600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2763]={ + ["next_chapter"]=2764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1840, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=349567, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1439, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=15800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2764]={ + ["next_chapter"]=2765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1856, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=352591, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1449, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=16000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2765]={ + ["next_chapter"]=2766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1872, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=355637, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1459, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=16200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2766]={ + ["next_chapter"]=2767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1888, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=358707, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1469, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=16400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2767]={ + ["next_chapter"]=2768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1904, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=361800, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1479, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=16600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2768]={ + ["next_chapter"]=2769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1921, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=364916, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=16800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2769]={ + ["next_chapter"]=2770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1937, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=368056, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1499, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=17000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=276, + ["unit"]=0 + } + }, + [2770]={ + ["next_chapter"]=2771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1954, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=371218, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1509, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=17200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2771]={ + ["next_chapter"]=2772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1971, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=374405, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1519, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=17400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2772]={ + ["next_chapter"]=2773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1987, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=377615, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1529, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=17600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2773]={ + ["next_chapter"]=2774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2004, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=380849, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1539, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=17800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2774]={ + ["next_chapter"]=2775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2022, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=384106, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1549, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=18000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2775]={ + ["next_chapter"]=2776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2039, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=387387, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1559, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=18200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2776]={ + ["next_chapter"]=2777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2056, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=390693, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1569, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=18400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2777]={ + ["next_chapter"]=2778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2074, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=394022, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1579, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=18600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2778]={ + ["next_chapter"]=2779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2091, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=397376, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=18800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2779]={ + ["next_chapter"]=2780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2109, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=400753, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1599, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=19000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=277, + ["unit"]=0 + } + }, + [2780]={ + ["next_chapter"]=2781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2127, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=404155, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1609, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=19200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2781]={ + ["next_chapter"]=2782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2145, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=407582, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1619, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=19400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2782]={ + ["next_chapter"]=2783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2163, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=411032, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1629, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=19600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2783]={ + ["next_chapter"]=2784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2182, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=414508, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1639, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=19800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2784]={ + ["next_chapter"]=2785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2200, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=418008, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1659, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2785]={ + ["next_chapter"]=2786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2219, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=421533, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1679, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=20200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2786]={ + ["next_chapter"]=2787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2237, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=425082, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1699, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=20400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2787]={ + ["next_chapter"]=2788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2256, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=428657, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1719, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=20600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2788]={ + ["next_chapter"]=2789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2275, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=432256, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1739, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=20800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2789]={ + ["next_chapter"]=2790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2294, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=435881, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1759, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=21000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2092, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=278, + ["unit"]=0 + } + }, + [2790]={ + ["next_chapter"]=2791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=2313, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=439531, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1779, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=21200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2791]={ + ["next_chapter"]=2792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2333, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=443206, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1799, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=21400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2792]={ + ["next_chapter"]=2793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2352, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=446906, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1819, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=21600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2793]={ + ["next_chapter"]=2794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2372, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=450632, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1839, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=21800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2794]={ + ["next_chapter"]=2795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2391, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=454383, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1859, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=22000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2795]={ + ["next_chapter"]=2796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2411, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=458160, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1879, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=22200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2796]={ + ["next_chapter"]=2797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2431, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=461963, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1899, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=22400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2797]={ + ["next_chapter"]=2798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2452, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=465791, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1919, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=22600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2798]={ + ["next_chapter"]=2799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2472, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=469646, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1939, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=22800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2799]={ + ["next_chapter"]=2800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2492, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=473526, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1959, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=23000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2304, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=279, + ["unit"]=0 + } + }, + [2800]={ + ["next_chapter"]=2801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=2513, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=477432, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1979, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=23200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2801]={ + ["next_chapter"]=2802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2533, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=481364, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1999, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=23400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2802]={ + ["next_chapter"]=2803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2554, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=485323, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2019, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=23600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2803]={ + ["next_chapter"]=2804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2575, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=489308, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2039, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=23800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2804]={ + ["next_chapter"]=2805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2596, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=493319, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2059, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=24000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2805]={ + ["next_chapter"]=2806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2618, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=497357, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2079, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=24200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2806]={ + ["next_chapter"]=2807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2639, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=501421, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2099, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=24400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2807]={ + ["next_chapter"]=2808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2661, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=505512, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2119, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=24600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2808]={ + ["next_chapter"]=2809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2682, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=509630, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2139, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=24800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2809]={ + ["next_chapter"]=2810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2704, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=513775, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2159, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=25000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2536, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=280, + ["unit"]=0 + } + }, + [2810]={ + ["next_chapter"]=2811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=2726, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=517946, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2179, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=25300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2811]={ + ["next_chapter"]=2812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2748, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=522145, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2199, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=25600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2812]={ + ["next_chapter"]=2813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2770, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=526370, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2219, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=25900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2813]={ + ["next_chapter"]=2814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2793, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=530623, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2239, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=26200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2814]={ + ["next_chapter"]=2815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2815, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=534903, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2259, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=26500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2815]={ + ["next_chapter"]=2816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2838, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=539210, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2279, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=26800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2816]={ + ["next_chapter"]=2817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2861, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=543545, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2299, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=27100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2817]={ + ["next_chapter"]=2818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2884, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=547907, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2319, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=27400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2818]={ + ["next_chapter"]=2819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2907, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=552297, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2339, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=27700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2819]={ + ["next_chapter"]=2820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2930, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=556715, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2359, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=28000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=2789, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=281, + ["unit"]=0 + } + }, + [2820]={ + ["next_chapter"]=2821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2953, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=561160, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2379, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=28300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2821]={ + ["next_chapter"]=2822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2977, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=565634, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2399, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=28600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2822]={ + ["next_chapter"]=2823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3001, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=570135, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2419, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=28900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2823]={ + ["next_chapter"]=2824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3025, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=574664, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2439, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=29200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2824]={ + ["next_chapter"]=2825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3049, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=579221, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2459, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=29500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2825]={ + ["next_chapter"]=2826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3073, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=583807, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2479, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=29800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2826]={ + ["next_chapter"]=2827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3097, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=588421, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2509, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=30100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2827]={ + ["next_chapter"]=2828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3121, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=593063, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2539, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=30400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2828]={ + ["next_chapter"]=2829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3146, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=597734, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2569, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=30700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2829]={ + ["next_chapter"]=2830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3171, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=602433, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2599, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=31000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3072, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=282, + ["unit"]=0 + } + }, + [2830]={ + ["next_chapter"]=2831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=3196, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=607161, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2629, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=31300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2831]={ + ["next_chapter"]=2832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3221, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=611918, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2659, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=31600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2832]={ + ["next_chapter"]=2833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3246, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=616704, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=31900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2833]={ + ["next_chapter"]=2834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3271, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=621518, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2719, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=32200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2834]={ + ["next_chapter"]=2835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3297, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=626362, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2749, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=32500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2835]={ + ["next_chapter"]=2836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3322, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=631234, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2779, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=32800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2836]={ + ["next_chapter"]=2837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3348, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=636136, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2809, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=33100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2837]={ + ["next_chapter"]=2838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3374, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=641067, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2839, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=33400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2838]={ + ["next_chapter"]=2839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3400, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=646028, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2869, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=33700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2839]={ + ["next_chapter"]=2840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3426, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=651018, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2899, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=34000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3385, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=283, + ["unit"]=0 + } + }, + [2840]={ + ["next_chapter"]=2841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=656037, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2929, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=34300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2841]={ + ["next_chapter"]=2842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3479, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=661086, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2959, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=34600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2842]={ + ["next_chapter"]=2843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3506, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=666165, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=34900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2843]={ + ["next_chapter"]=2844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3533, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=671273, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3019, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=35200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2844]={ + ["next_chapter"]=2845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3560, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=676411, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3049, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=35600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2845]={ + ["next_chapter"]=2846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3587, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=681580, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3079, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=36000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2846]={ + ["next_chapter"]=2847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3615, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=686778, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3109, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=36400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2847]={ + ["next_chapter"]=2848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3642, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=692006, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3139, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=36800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2848]={ + ["next_chapter"]=2849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3670, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=697265, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3169, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=37200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2849]={ + ["next_chapter"]=2850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3698, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=702554, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3199, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=37600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=284, + ["unit"]=0 + } + }, + [2850]={ + ["next_chapter"]=2851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=3726, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=707874, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3229, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=38000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2851]={ + ["next_chapter"]=2852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3754, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=713223, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3259, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=38400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2852]={ + ["next_chapter"]=2853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3782, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=718604, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=38800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2853]={ + ["next_chapter"]=2854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3811, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=724015, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3319, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=39200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2854]={ + ["next_chapter"]=2855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3839, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=729457, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3349, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=39600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2855]={ + ["next_chapter"]=2856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3868, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=734930, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2856]={ + ["next_chapter"]=2857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3897, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=740433, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3429, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=40400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2857]={ + ["next_chapter"]=2858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3926, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=745968, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3469, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=40800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2858]={ + ["next_chapter"]=2859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3955, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=751533, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3509, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=41200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2859]={ + ["next_chapter"]=2860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3985, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=757130, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3549, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=41600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4108, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=285, + ["unit"]=0 + } + }, + [2860]={ + ["next_chapter"]=2861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=4015, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=762758, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=42000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2861]={ + ["next_chapter"]=2862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4044, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=768418, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3629, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=42400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2862]={ + ["next_chapter"]=2863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4074, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=774109, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3669, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=42800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2863]={ + ["next_chapter"]=2864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4104, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=779831, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3709, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=43200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2864]={ + ["next_chapter"]=2865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4135, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=785586, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3749, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=43600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2865]={ + ["next_chapter"]=2866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4165, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=791371, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=44000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2866]={ + ["next_chapter"]=2867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4196, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=797189, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3829, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=44400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2867]={ + ["next_chapter"]=2868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4227, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=803038, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3869, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=44800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2868]={ + ["next_chapter"]=2869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4257, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=808920, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3909, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=45200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2869]={ + ["next_chapter"]=2870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4289, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=814833, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3949, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=45700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4528, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=286, + ["unit"]=0 + } + }, + [2870]={ + ["next_chapter"]=2871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=4320, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=820779, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=46200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2871]={ + ["next_chapter"]=2872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4351, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=826757, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4029, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=46700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2872]={ + ["next_chapter"]=2873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4383, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=832767, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4069, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=47200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2873]={ + ["next_chapter"]=2874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4415, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=838810, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4109, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=47700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2874]={ + ["next_chapter"]=2875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4447, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=844885, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4149, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=48200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2875]={ + ["next_chapter"]=2876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4479, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=850992, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=48700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2876]={ + ["next_chapter"]=2877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4511, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=857132, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4229, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=49200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2877]={ + ["next_chapter"]=2878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4544, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=863306, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4269, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=49700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2878]={ + ["next_chapter"]=2879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4576, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=869511, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4319, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=50200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2879]={ + ["next_chapter"]=2880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4609, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=875750, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4369, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=50700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=4990, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=287, + ["unit"]=0 + } + }, + [2880]={ + ["next_chapter"]=2881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=4642, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=882022, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4419, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=51200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2881]={ + ["next_chapter"]=2882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4675, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=888327, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4469, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=51700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2882]={ + ["next_chapter"]=2883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4709, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=894665, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4519, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=52200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2883]={ + ["next_chapter"]=2884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4742, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=901036, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4569, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=52700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2884]={ + ["next_chapter"]=2885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4776, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=907441, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4619, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=53200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2885]={ + ["next_chapter"]=2886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4810, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=913879, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4669, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=53700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2886]={ + ["next_chapter"]=2887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4844, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=920351, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4719, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=54200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2887]={ + ["next_chapter"]=2888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4878, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=926856, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4769, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=54700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2888]={ + ["next_chapter"]=2889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4913, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=933395, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4819, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=55200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2889]={ + ["next_chapter"]=2890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4947, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=939968, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4869, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=55800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=5502, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=288, + ["unit"]=0 + } + }, + [2890]={ + ["next_chapter"]=2891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=4982, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=946575, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4919, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=56400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2891]={ + ["next_chapter"]=2892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5017, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=953215, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4969, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=57000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2892]={ + ["next_chapter"]=2893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5052, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=959890, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5019, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=57600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2893]={ + ["next_chapter"]=2894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5087, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=966599, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5069, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=58200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2894]={ + ["next_chapter"]=2895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5123, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=973342, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5119, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=58800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2895]={ + ["next_chapter"]=2896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5159, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=980119, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5169, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=59400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2896]={ + ["next_chapter"]=2897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5194, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=986931, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5229, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2897]={ + ["next_chapter"]=2898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5230, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=993777, + ["unit"]=6 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=60600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2898]={ + ["next_chapter"]=2899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5267, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5349, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=61200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2899]={ + ["next_chapter"]=2900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5303, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1008, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5409, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=61800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6066, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=289, + ["unit"]=0 + } + }, + [2900]={ + ["next_chapter"]=2901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=5340, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1015, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5469, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=62400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2901]={ + ["next_chapter"]=2902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5376, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1022, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5529, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=63000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2902]={ + ["next_chapter"]=2903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5413, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1029, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=63600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2903]={ + ["next_chapter"]=2904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5450, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5649, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=64200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2904]={ + ["next_chapter"]=2905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5488, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1043, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5709, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=64800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2905]={ + ["next_chapter"]=2906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5525, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5769, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=65400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2906]={ + ["next_chapter"]=2907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5563, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1057, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5829, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=66100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2907]={ + ["next_chapter"]=2908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5601, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1064, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=66800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2908]={ + ["next_chapter"]=2909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5639, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1071, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5949, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=67500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2909]={ + ["next_chapter"]=2910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5677, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1079, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6009, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=68200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=6690, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=290, + ["unit"]=0 + } + }, + [2910]={ + ["next_chapter"]=2911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=5716, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1086, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6069, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=68900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2911]={ + ["next_chapter"]=2912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5754, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1093, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6129, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=69600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2912]={ + ["next_chapter"]=2913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5793, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1101, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6199, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=70300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2913]={ + ["next_chapter"]=2914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5832, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1108, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6269, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=71000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2914]={ + ["next_chapter"]=2915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5871, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1116, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6339, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=71700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2915]={ + ["next_chapter"]=2916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5911, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1123, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6409, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=72400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2916]={ + ["next_chapter"]=2917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5950, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1131, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6479, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=73100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2917]={ + ["next_chapter"]=2918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5990, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1138, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6549, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=73800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2918]={ + ["next_chapter"]=2919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6030, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1146, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6619, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=74500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2919]={ + ["next_chapter"]=2920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6070, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1153, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=75200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=7379, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=291, + ["unit"]=0 + } + }, + [2920]={ + ["next_chapter"]=2921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=6110, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1161, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6759, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=76000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2921]={ + ["next_chapter"]=2922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6151, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1169, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6829, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=76800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2922]={ + ["next_chapter"]=2923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6192, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1176, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6899, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=77600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2923]={ + ["next_chapter"]=2924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6232, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1184, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6969, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=78400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2924]={ + ["next_chapter"]=2925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6274, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1192, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7039, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=79200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2925]={ + ["next_chapter"]=2926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6315, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7119, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2926]={ + ["next_chapter"]=2927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6356, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1208, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7199, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=80800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2927]={ + ["next_chapter"]=2928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6398, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1216, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7279, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=81600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2928]={ + ["next_chapter"]=2929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6440, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1224, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7359, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=82400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2929]={ + ["next_chapter"]=2930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6482, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1232, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7439, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=83200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8139, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=292, + ["unit"]=0 + } + }, + [2930]={ + ["next_chapter"]=2931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=6524, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1240, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7519, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=84000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2931]={ + ["next_chapter"]=2932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6567, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1248, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7599, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=84800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2932]={ + ["next_chapter"]=2933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6609, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1256, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7679, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=85600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2933]={ + ["next_chapter"]=2934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6652, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1264, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7759, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=86500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2934]={ + ["next_chapter"]=2935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6695, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1272, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7839, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=87400, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2935]={ + ["next_chapter"]=2936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6739, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1280, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7919, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=88300, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2936]={ + ["next_chapter"]=2937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6782, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1289, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7999, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=89200, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2937]={ + ["next_chapter"]=2938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6826, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1297, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=90100, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2938]={ + ["next_chapter"]=2939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6870, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1305, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8179, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=91000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2939]={ + ["next_chapter"]=2940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6914, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1314, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8269, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=91900, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=8979, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=293, + ["unit"]=0 + } + }, + [2940]={ + ["next_chapter"]=2941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=6958, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1322, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8359, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=92800, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2941]={ + ["next_chapter"]=2942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7003, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1330, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8449, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=93700, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2942]={ + ["next_chapter"]=2943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7047, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1339, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8539, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=94600, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2943]={ + ["next_chapter"]=2944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7092, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1347, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8629, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=95500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2944]={ + ["next_chapter"]=2945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7137, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1356, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8719, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=96500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2945]={ + ["next_chapter"]=2946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7182, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1365, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8809, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=97500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2946]={ + ["next_chapter"]=2947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7228, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1373, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8899, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=98500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2947]={ + ["next_chapter"]=2948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7274, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1382, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=99500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2948]={ + ["next_chapter"]=2949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7320, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1391, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=100500, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2949]={ + ["next_chapter"]=2950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7366, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1399, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=102000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=9907, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=294, + ["unit"]=0 + } + }, + [2950]={ + ["next_chapter"]=2951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=7412, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1408, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=103000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2951]={ + ["next_chapter"]=2952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7458, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1417, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=104000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2952]={ + ["next_chapter"]=2953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7505, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1426, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=105000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2953]={ + ["next_chapter"]=2954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7552, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1435, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=106000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2954]={ + ["next_chapter"]=2955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7599, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1444, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=107000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2955]={ + ["next_chapter"]=2956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7647, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1453, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=108000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2956]={ + ["next_chapter"]=2957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7694, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1462, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=109000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2957]={ + ["next_chapter"]=2958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7742, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1471, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=110000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2958]={ + ["next_chapter"]=2959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7790, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1480, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=111000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2959]={ + ["next_chapter"]=2960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7838, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1489, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=112000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=10937, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=295, + ["unit"]=0 + } + }, + [2960]={ + ["next_chapter"]=2961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=7886, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1498, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=113000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2961]={ + ["next_chapter"]=2962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7935, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1508, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=114000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2962]={ + ["next_chapter"]=2963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7984, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1517, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=115000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2963]={ + ["next_chapter"]=2964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8033, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1526, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=116000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2964]={ + ["next_chapter"]=2965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8082, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1536, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=117000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2965]={ + ["next_chapter"]=2966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8132, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1545, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=118000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2966]={ + ["next_chapter"]=2967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8181, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1554, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=119000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2967]={ + ["next_chapter"]=2968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8231, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1564, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=120000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2968]={ + ["next_chapter"]=2969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8281, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1573, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=121000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2969]={ + ["next_chapter"]=2970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8332, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1583, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=122000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=12067, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=296, + ["unit"]=0 + } + }, + [2970]={ + ["next_chapter"]=2971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=8382, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1593, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=123000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2971]={ + ["next_chapter"]=2972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8433, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1602, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=124000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2972]={ + ["next_chapter"]=2973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8484, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1612, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=125000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2973]={ + ["next_chapter"]=2974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8535, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1622, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=126000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2974]={ + ["next_chapter"]=2975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8586, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1631, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=127000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2975]={ + ["next_chapter"]=2976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8638, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1641, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=128000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2976]={ + ["next_chapter"]=2977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8690, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1651, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=129000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2977]={ + ["next_chapter"]=2978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8742, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1661, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=130000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2978]={ + ["next_chapter"]=2979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8794, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1671, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=131000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2979]={ + ["next_chapter"]=2980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8847, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1681, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=132000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=13297, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=297, + ["unit"]=0 + } + }, + [2980]={ + ["next_chapter"]=2981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=8899, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1691, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=133000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2981]={ + ["next_chapter"]=2982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8952, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1701, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=134000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2982]={ + ["next_chapter"]=2983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9005, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1711, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=135000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2983]={ + ["next_chapter"]=2984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9059, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1721, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=136000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2984]={ + ["next_chapter"]=2985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9112, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1731, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=137000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2985]={ + ["next_chapter"]=2986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9166, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1742, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=138000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2986]={ + ["next_chapter"]=2987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9220, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1752, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=139000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2987]={ + ["next_chapter"]=2988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9274, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1762, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=140000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2988]={ + ["next_chapter"]=2989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9329, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1772, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=141000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2989]={ + ["next_chapter"]=2990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9383, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1783, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=142000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=14627, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=298, + ["unit"]=0 + } + }, + [2990]={ + ["next_chapter"]=2991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=9438, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1793, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=143000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2991]={ + ["next_chapter"]=2992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9494, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1804, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=144000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2992]={ + ["next_chapter"]=2993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9549, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1814, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=145000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2993]={ + ["next_chapter"]=2994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9604, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1825, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=146000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2994]={ + ["next_chapter"]=2995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9660, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1835, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=147000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2995]={ + ["next_chapter"]=2996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9716, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1846, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=148000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2996]={ + ["next_chapter"]=2997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9773, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1857, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=149000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2997]={ + ["next_chapter"]=2998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9829, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1868, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=150000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2998]={ + ["next_chapter"]=2999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9886, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1878, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=152000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [2999]={ + ["next_chapter"]=3000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9943, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=1889, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=154000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=16057, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=299, + ["unit"]=0 + } + }, + [3000]={ + ["next_chapter"]=3001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=156000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3001]={ + ["next_chapter"]=3002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=158000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3002]={ + ["next_chapter"]=3003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=160000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3003]={ + ["next_chapter"]=3004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=162000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3004]={ + ["next_chapter"]=3005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=164000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3005]={ + ["next_chapter"]=3006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=166000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3006]={ + ["next_chapter"]=3007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=168000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3007]={ + ["next_chapter"]=3008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=170000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3008]={ + ["next_chapter"]=3009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=172000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3009]={ + ["next_chapter"]=3010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10001, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=174000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=17617, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=300, + ["unit"]=0 + } + }, + [3010]={ + ["next_chapter"]=3011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=10001, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=176000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3011]={ + ["next_chapter"]=3012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10001, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=178000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3012]={ + ["next_chapter"]=3013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10002, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=180000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3013]={ + ["next_chapter"]=3014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10002, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=182000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3014]={ + ["next_chapter"]=3015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10002, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=184000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3015]={ + ["next_chapter"]=3016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10003, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=186000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3016]={ + ["next_chapter"]=3017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10004, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=188000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3017]={ + ["next_chapter"]=3018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10004, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=190000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3018]={ + ["next_chapter"]=3019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10005, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=192000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3019]={ + ["next_chapter"]=3020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10006, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=194000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=19377, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=301, + ["unit"]=0 + } + }, + [3020]={ + ["next_chapter"]=3021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=10007, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=196000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3021]={ + ["next_chapter"]=3022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10008, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2002, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=198000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3022]={ + ["next_chapter"]=3023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10009, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2002, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3023]={ + ["next_chapter"]=3024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10011, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2002, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=202000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3024]={ + ["next_chapter"]=3025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10012, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2002, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=204000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3025]={ + ["next_chapter"]=3026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10014, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2003, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=206000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3026]={ + ["next_chapter"]=3027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10015, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2003, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=208000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3027]={ + ["next_chapter"]=3028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10017, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2003, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=210000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3028]={ + ["next_chapter"]=3029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10019, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2004, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=212000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3029]={ + ["next_chapter"]=3030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10021, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2004, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=214000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=21337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=302, + ["unit"]=0 + } + }, + [3030]={ + ["next_chapter"]=3031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=10024, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2005, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=216000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3031]={ + ["next_chapter"]=3032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10026, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2005, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=218000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3032]={ + ["next_chapter"]=3033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10029, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2006, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=220000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3033]={ + ["next_chapter"]=3034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10032, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2006, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=222000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3034]={ + ["next_chapter"]=3035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10035, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2007, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=224000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3035]={ + ["next_chapter"]=3036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10038, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2008, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=226000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3036]={ + ["next_chapter"]=3037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10041, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2008, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=228000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3037]={ + ["next_chapter"]=3038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10045, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2009, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=230000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3038]={ + ["next_chapter"]=3039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10048, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2010, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=232000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3039]={ + ["next_chapter"]=3040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10052, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2010, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=234000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=23497, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=303, + ["unit"]=0 + } + }, + [3040]={ + ["next_chapter"]=3041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=10056, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2011, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=236000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3041]={ + ["next_chapter"]=3042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10061, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2012, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=238000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3042]={ + ["next_chapter"]=3043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10065, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2013, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=240000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3043]={ + ["next_chapter"]=3044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10070, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2014, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=242000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3044]={ + ["next_chapter"]=3045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10075, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=244000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3045]={ + ["next_chapter"]=3046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10080, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=246000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3046]={ + ["next_chapter"]=3047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10086, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=248000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3047]={ + ["next_chapter"]=3048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10091, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2018, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=250000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3048]={ + ["next_chapter"]=3049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10097, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2019, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=253000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3049]={ + ["next_chapter"]=3050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10104, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2021, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=256000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=25857, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=304, + ["unit"]=0 + } + }, + [3050]={ + ["next_chapter"]=3051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=10110, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2022, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=259000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3051]={ + ["next_chapter"]=3052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10117, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2023, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=262000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3052]={ + ["next_chapter"]=3053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10124, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2025, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=265000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3053]={ + ["next_chapter"]=3054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10131, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2026, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=268000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3054]={ + ["next_chapter"]=3055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10139, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2028, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=271000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3055]={ + ["next_chapter"]=3056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10146, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2029, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=274000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3056]={ + ["next_chapter"]=3057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10155, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2031, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=277000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3057]={ + ["next_chapter"]=3058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10163, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2033, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=280000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3058]={ + ["next_chapter"]=3059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10172, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2034, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=283000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3059]={ + ["next_chapter"]=3060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10181, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2036, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=286000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=28447, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=305, + ["unit"]=0 + } + }, + [3060]={ + ["next_chapter"]=3061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=10190, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2038, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=289000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3061]={ + ["next_chapter"]=3062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10200, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2040, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=292000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3062]={ + ["next_chapter"]=3063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10210, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2042, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=295000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3063]={ + ["next_chapter"]=3064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10220, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2044, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=298000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3064]={ + ["next_chapter"]=3065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10231, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2046, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=301000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3065]={ + ["next_chapter"]=3066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10242, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2048, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=304000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3066]={ + ["next_chapter"]=3067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10253, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2051, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=307000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3067]={ + ["next_chapter"]=3068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10265, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2053, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=310000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3068]={ + ["next_chapter"]=3069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10277, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2055, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=313000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3069]={ + ["next_chapter"]=3070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10289, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2058, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=316000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=31337, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=306, + ["unit"]=0 + } + }, + [3070]={ + ["next_chapter"]=3071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=10302, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2060, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=319000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3071]={ + ["next_chapter"]=3072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10315, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2063, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=322000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3072]={ + ["next_chapter"]=3073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10328, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2066, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=325000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3073]={ + ["next_chapter"]=3074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10342, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2068, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=328000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3074]={ + ["next_chapter"]=3075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10357, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2071, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=331000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3075]={ + ["next_chapter"]=3076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10371, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2074, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=334000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3076]={ + ["next_chapter"]=3077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10386, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2077, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=337000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3077]={ + ["next_chapter"]=3078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10402, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2080, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=340000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3078]={ + ["next_chapter"]=3079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10418, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2084, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=343000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3079]={ + ["next_chapter"]=3080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10434, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2087, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=346000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=34527, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=307, + ["unit"]=0 + } + }, + [3080]={ + ["next_chapter"]=3081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=10451, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2090, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=349000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3081]={ + ["next_chapter"]=3082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10468, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2094, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=352000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3082]={ + ["next_chapter"]=3083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10485, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2097, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=356000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3083]={ + ["next_chapter"]=3084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10503, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2101, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=360000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3084]={ + ["next_chapter"]=3085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10522, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2104, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=364000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3085]={ + ["next_chapter"]=3086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10540, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2108, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=368000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3086]={ + ["next_chapter"]=3087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10560, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2112, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=372000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3087]={ + ["next_chapter"]=3088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10579, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2116, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=376000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3088]={ + ["next_chapter"]=3089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10600, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2120, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=380000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3089]={ + ["next_chapter"]=3090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10620, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2124, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=384000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=38017, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=308, + ["unit"]=0 + } + }, + [3090]={ + ["next_chapter"]=3091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=10642, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2128, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=388000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3091]={ + ["next_chapter"]=3092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10663, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2133, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=392000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3092]={ + ["next_chapter"]=3093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10685, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2137, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=396000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3093]={ + ["next_chapter"]=3094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10708, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2142, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3094]={ + ["next_chapter"]=3095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10731, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2146, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=404000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3095]={ + ["next_chapter"]=3096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10754, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2151, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=408000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3096]={ + ["next_chapter"]=3097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10779, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2156, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=412000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3097]={ + ["next_chapter"]=3098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10803, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2161, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=416000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3098]={ + ["next_chapter"]=3099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10828, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2166, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=420000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3099]={ + ["next_chapter"]=3100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10854, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2171, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=424000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=41897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=309, + ["unit"]=0 + } + }, + [3100]={ + ["next_chapter"]=3101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=10880, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2176, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=428000, + ["unit"]=3 + }, + ["chapter_drop"]=50, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3101]={ + ["next_chapter"]=3102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10907, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2181, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=432000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3102]={ + ["next_chapter"]=3103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10934, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2187, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=436000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3103]={ + ["next_chapter"]=3104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10962, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2192, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=440000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3104]={ + ["next_chapter"]=3105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10990, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2198, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=444000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3105]={ + ["next_chapter"]=3106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11019, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2204, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=448000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3106]={ + ["next_chapter"]=3107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11048, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2210, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=452000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3107]={ + ["next_chapter"]=3108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11078, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2216, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=457000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3108]={ + ["next_chapter"]=3109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11109, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2222, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=462000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3109]={ + ["next_chapter"]=3110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11140, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2228, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=467000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=46177, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=310, + ["unit"]=0 + } + }, + [3110]={ + ["next_chapter"]=3111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=11171, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2234, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=472000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3111]={ + ["next_chapter"]=3112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11204, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2241, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=477000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3112]={ + ["next_chapter"]=3113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11236, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2247, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=482000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3113]={ + ["next_chapter"]=3114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11270, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2254, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=487000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3114]={ + ["next_chapter"]=3115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11304, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2261, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=492000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3115]={ + ["next_chapter"]=3116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11338, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2268, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=497000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3116]={ + ["next_chapter"]=3117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11374, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2275, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=502000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3117]={ + ["next_chapter"]=3118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11409, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2282, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=507000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3118]={ + ["next_chapter"]=3119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11446, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2289, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=512000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3119]={ + ["next_chapter"]=3120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11483, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2297, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=517000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=50897, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=311, + ["unit"]=0 + } + }, + [3120]={ + ["next_chapter"]=3121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=11521, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2304, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=522000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3121]={ + ["next_chapter"]=3122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11559, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2312, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=527000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3122]={ + ["next_chapter"]=3123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11598, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2320, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=532000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3123]={ + ["next_chapter"]=3124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11638, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2328, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=537000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3124]={ + ["next_chapter"]=3125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11678, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2336, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=542000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3125]={ + ["next_chapter"]=3126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11719, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2344, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=547000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3126]={ + ["next_chapter"]=3127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11760, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2352, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=552000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3127]={ + ["next_chapter"]=3128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11803, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2361, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=558000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3128]={ + ["next_chapter"]=3129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11845, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2369, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=564000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3129]={ + ["next_chapter"]=3130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11889, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2378, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=570000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=56117, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=312, + ["unit"]=0 + } + }, + [3130]={ + ["next_chapter"]=3131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=11933, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2387, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=576000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3131]={ + ["next_chapter"]=3132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11978, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2396, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=582000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3132]={ + ["next_chapter"]=3133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12024, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2405, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=588000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3133]={ + ["next_chapter"]=3134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12070, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2414, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=594000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3134]={ + ["next_chapter"]=3135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12117, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2423, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3135]={ + ["next_chapter"]=3136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12165, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2433, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=606000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3136]={ + ["next_chapter"]=3137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12214, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2443, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=612000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3137]={ + ["next_chapter"]=3138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12263, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2453, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=618000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3138]={ + ["next_chapter"]=3139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12313, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2463, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=624000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3139]={ + ["next_chapter"]=3140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12363, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2473, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=630000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=61877, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=313, + ["unit"]=0 + } + }, + [3140]={ + ["next_chapter"]=3141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=12415, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2483, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=636000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3141]={ + ["next_chapter"]=3142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12467, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2493, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=642000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3142]={ + ["next_chapter"]=3143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12520, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2504, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=648000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3143]={ + ["next_chapter"]=3144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12573, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2515, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=654000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3144]={ + ["next_chapter"]=3145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12628, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2526, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=661000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3145]={ + ["next_chapter"]=3146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12683, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2537, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=668000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3146]={ + ["next_chapter"]=3147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12739, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2548, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=675000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3147]={ + ["next_chapter"]=3148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12795, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2559, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=682000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3148]={ + ["next_chapter"]=3149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12853, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2571, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=689000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3149]={ + ["next_chapter"]=3150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12911, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2582, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=696000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=68237, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=314, + ["unit"]=0 + } + }, + [3150]={ + ["next_chapter"]=3151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=12970, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2594, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=703000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3151]={ + ["next_chapter"]=3152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13030, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2606, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=710000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3152]={ + ["next_chapter"]=3153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13090, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2618, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=717000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3153]={ + ["next_chapter"]=3154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13152, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2630, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=724000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3154]={ + ["next_chapter"]=3155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13214, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2643, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=731000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3155]={ + ["next_chapter"]=3156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13277, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2655, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=738000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3156]={ + ["next_chapter"]=3157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13341, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2668, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=745000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3157]={ + ["next_chapter"]=3158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13406, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2681, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=752000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3158]={ + ["next_chapter"]=3159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13471, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2694, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=760000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3159]={ + ["next_chapter"]=3160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13537, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2707, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=768000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=75267, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=315, + ["unit"]=0 + } + }, + [3160]={ + ["next_chapter"]=3161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=13604, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2721, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=776000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3161]={ + ["next_chapter"]=3162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13672, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2734, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=784000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3162]={ + ["next_chapter"]=3163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13741, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2748, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=792000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3163]={ + ["next_chapter"]=3164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13811, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2762, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3164]={ + ["next_chapter"]=3165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13882, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2776, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=808000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3165]={ + ["next_chapter"]=3166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13953, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2791, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=816000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3166]={ + ["next_chapter"]=3167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14025, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2805, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=824000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3167]={ + ["next_chapter"]=3168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14099, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2820, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=832000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3168]={ + ["next_chapter"]=3169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14173, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2835, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=840000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3169]={ + ["next_chapter"]=3170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14248, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2850, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=848000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=83027, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=316, + ["unit"]=0 + } + }, + [3170]={ + ["next_chapter"]=3171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=14323, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2865, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=856000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3171]={ + ["next_chapter"]=3172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14400, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2880, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=865000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3172]={ + ["next_chapter"]=3173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14478, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2896, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=874000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3173]={ + ["next_chapter"]=3174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14556, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2911, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=883000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3174]={ + ["next_chapter"]=3175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14636, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2927, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=892000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3175]={ + ["next_chapter"]=3176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14716, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2943, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=901000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3176]={ + ["next_chapter"]=3177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14798, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2960, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81789, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=910000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3177]={ + ["next_chapter"]=3178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14880, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2976, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82689, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=919000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3178]={ + ["next_chapter"]=3179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14963, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=2993, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83589, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=928000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3179]={ + ["next_chapter"]=3180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15047, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3009, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84489, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=937000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=91587, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=317, + ["unit"]=0 + } + }, + [3180]={ + ["next_chapter"]=3181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=15132, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3026, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85389, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=946000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3181]={ + ["next_chapter"]=3182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15218, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3044, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86289, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=955000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3182]={ + ["next_chapter"]=3183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15305, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3061, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87189, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=965000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3183]={ + ["next_chapter"]=3184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15393, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3079, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88089, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=975000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3184]={ + ["next_chapter"]=3185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15482, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3096, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88989, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=985000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3185]={ + ["next_chapter"]=3186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15572, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3114, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=3 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=995000, + ["unit"]=3 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3186]={ + ["next_chapter"]=3187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15663, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3133, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1005, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3187]={ + ["next_chapter"]=3188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15754, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3151, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1020, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3188]={ + ["next_chapter"]=3189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15847, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3169, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1030, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3189]={ + ["next_chapter"]=3190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15941, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3188, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1040, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=101047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=318, + ["unit"]=0 + } + }, + [3190]={ + ["next_chapter"]=3191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=16036, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3207, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1050, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3191]={ + ["next_chapter"]=3192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16132, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3226, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3192]={ + ["next_chapter"]=3193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16229, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3246, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1070, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3193]={ + ["next_chapter"]=3194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16326, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3265, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1080, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3194]={ + ["next_chapter"]=3195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16425, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3285, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3195]={ + ["next_chapter"]=3196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16525, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3305, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3196]={ + ["next_chapter"]=3197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16626, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3325, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1110, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3197]={ + ["next_chapter"]=3198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16728, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3346, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3198]={ + ["next_chapter"]=3199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16831, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3366, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1130, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3199]={ + ["next_chapter"]=3200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16935, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3387, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=111547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=319, + ["unit"]=0 + } + }, + [3200]={ + ["next_chapter"]=3201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=17040, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3408, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1150, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3201]={ + ["next_chapter"]=3202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17146, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3429, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1160, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3202]={ + ["next_chapter"]=3203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17253, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3451, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1170, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3203]={ + ["next_chapter"]=3204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17362, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3472, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3204]={ + ["next_chapter"]=3205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17471, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3494, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1190, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3205]={ + ["next_chapter"]=3206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17581, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3516, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3206]={ + ["next_chapter"]=3207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17693, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3539, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3207]={ + ["next_chapter"]=3208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17805, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3561, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1220, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3208]={ + ["next_chapter"]=3209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17919, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3584, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1230, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3209]={ + ["next_chapter"]=3210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18034, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3607, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=123047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=320, + ["unit"]=0 + } + }, + [3210]={ + ["next_chapter"]=3211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=18150, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3630, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3211]={ + ["next_chapter"]=3212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18267, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3653, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1260, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3212]={ + ["next_chapter"]=3213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18385, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3677, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1270, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3213]={ + ["next_chapter"]=3214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18504, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3701, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1280, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3214]={ + ["next_chapter"]=3215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18624, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3725, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1290, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3215]={ + ["next_chapter"]=3216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18746, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3749, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3216]={ + ["next_chapter"]=3217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18868, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3774, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1310, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3217]={ + ["next_chapter"]=3218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18992, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3798, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1320, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3218]={ + ["next_chapter"]=3219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19117, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3823, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1330, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3219]={ + ["next_chapter"]=3220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19243, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3849, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=135547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=321, + ["unit"]=0 + } + }, + [3220]={ + ["next_chapter"]=3221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=19370, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3874, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1350, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3221]={ + ["next_chapter"]=3222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19499, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3900, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1360, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3222]={ + ["next_chapter"]=3223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19628, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3926, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3223]={ + ["next_chapter"]=3224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19759, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3952, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1380, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3224]={ + ["next_chapter"]=3225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19891, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=3978, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3225]={ + ["next_chapter"]=3226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20024, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4005, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3226]={ + ["next_chapter"]=3227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20158, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4032, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1410, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3227]={ + ["next_chapter"]=3228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20293, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4059, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1420, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3228]={ + ["next_chapter"]=3229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20430, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4086, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1430, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3229]={ + ["next_chapter"]=3230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20568, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4114, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=149047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=322, + ["unit"]=0 + } + }, + [3230]={ + ["next_chapter"]=3231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=20707, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4141, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1450, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3231]={ + ["next_chapter"]=3232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20847, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4169, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1460, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3232]={ + ["next_chapter"]=3233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20989, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4198, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1470, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3233]={ + ["next_chapter"]=3234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21131, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4226, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3234]={ + ["next_chapter"]=3235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21275, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4255, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3235]={ + ["next_chapter"]=3236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21421, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4284, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3236]={ + ["next_chapter"]=3237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21567, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4313, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3237]={ + ["next_chapter"]=3238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21715, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4343, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3238]={ + ["next_chapter"]=3239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21864, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4373, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1560, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3239]={ + ["next_chapter"]=3240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22014, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4403, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1580, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=163547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=323, + ["unit"]=0 + } + }, + [3240]={ + ["next_chapter"]=3241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=22165, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4433, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3241]={ + ["next_chapter"]=3242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22318, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4464, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1620, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3242]={ + ["next_chapter"]=3243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22472, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4494, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1640, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3243]={ + ["next_chapter"]=3244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22627, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4525, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1660, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3244]={ + ["next_chapter"]=3245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22784, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4557, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1680, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3245]={ + ["next_chapter"]=3246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22941, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4588, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3246]={ + ["next_chapter"]=3247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23101, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4620, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1720, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3247]={ + ["next_chapter"]=3248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23261, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4652, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1740, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3248]={ + ["next_chapter"]=3249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23423, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4685, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1760, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3249]={ + ["next_chapter"]=3250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23586, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4717, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1780, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=179547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=324, + ["unit"]=0 + } + }, + [3250]={ + ["next_chapter"]=3251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=23750, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4750, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3251]={ + ["next_chapter"]=3252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23916, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4783, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3252]={ + ["next_chapter"]=3253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24083, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4817, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1840, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3253]={ + ["next_chapter"]=3254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24251, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4850, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1860, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3254]={ + ["next_chapter"]=3255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24421, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4884, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1880, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3255]={ + ["next_chapter"]=3256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24592, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4918, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3256]={ + ["next_chapter"]=3257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24764, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4953, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1920, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3257]={ + ["next_chapter"]=3258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24938, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=4988, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1940, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3258]={ + ["next_chapter"]=3259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25113, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5023, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3259]={ + ["next_chapter"]=3260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25289, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5058, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=1980, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=197547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=325, + ["unit"]=0 + } + }, + [3260]={ + ["next_chapter"]=3261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=25467, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5093, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3261]={ + ["next_chapter"]=3262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25646, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5129, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2020, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3262]={ + ["next_chapter"]=3263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25827, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5165, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2040, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3263]={ + ["next_chapter"]=3264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26008, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5202, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3264]={ + ["next_chapter"]=3265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26192, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5238, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2080, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3265]={ + ["next_chapter"]=3266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26376, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5275, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3266]={ + ["next_chapter"]=3267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26563, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5313, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2120, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3267]={ + ["next_chapter"]=3268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26750, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5350, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2140, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3268]={ + ["next_chapter"]=3269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26939, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5388, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2160, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3269]={ + ["next_chapter"]=3270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27129, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5426, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2180, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=217547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=326, + ["unit"]=0 + } + }, + [3270]={ + ["next_chapter"]=3271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=27321, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5464, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3271]={ + ["next_chapter"]=3272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27514, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5503, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2220, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3272]={ + ["next_chapter"]=3273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27709, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5542, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2240, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3273]={ + ["next_chapter"]=3274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27905, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5581, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2260, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3274]={ + ["next_chapter"]=3275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28102, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5620, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2280, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3275]={ + ["next_chapter"]=3276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28301, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5660, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3276]={ + ["next_chapter"]=3277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28502, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5700, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2320, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3277]={ + ["next_chapter"]=3278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28703, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5741, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2340, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3278]={ + ["next_chapter"]=3279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28907, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5781, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2360, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3279]={ + ["next_chapter"]=3280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29112, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5822, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2380, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=239547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=327, + ["unit"]=0 + } + }, + [3280]={ + ["next_chapter"]=3281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=29318, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5864, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3281]={ + ["next_chapter"]=3282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29525, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5905, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2420, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3282]={ + ["next_chapter"]=3283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29735, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5947, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2440, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3283]={ + ["next_chapter"]=3284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29945, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=5989, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2460, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3284]={ + ["next_chapter"]=3285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30158, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6032, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2480, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3285]={ + ["next_chapter"]=3286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30371, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6074, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3286]={ + ["next_chapter"]=3287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30586, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6117, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2530, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3287]={ + ["next_chapter"]=3288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30803, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6161, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2560, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3288]={ + ["next_chapter"]=3289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31021, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6204, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2590, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3289]={ + ["next_chapter"]=3290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31241, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6248, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2620, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=263547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=328, + ["unit"]=0 + } + }, + [3290]={ + ["next_chapter"]=3291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=31462, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6292, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2650, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3291]={ + ["next_chapter"]=3292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31685, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6337, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2680, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3292]={ + ["next_chapter"]=3293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31909, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6382, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2710, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3293]={ + ["next_chapter"]=3294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32135, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6427, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2740, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3294]={ + ["next_chapter"]=3295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32363, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6473, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2770, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3295]={ + ["next_chapter"]=3296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32592, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6518, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3296]={ + ["next_chapter"]=3297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32822, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6564, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2830, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3297]={ + ["next_chapter"]=3298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33054, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6611, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2860, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3298]={ + ["next_chapter"]=3299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33288, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6658, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2890, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3299]={ + ["next_chapter"]=3300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33523, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6705, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2920, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=290047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=329, + ["unit"]=0 + } + }, + [3300]={ + ["next_chapter"]=3301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=33760, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6752, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2950, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3301]={ + ["next_chapter"]=3302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33998, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6800, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=2980, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3302]={ + ["next_chapter"]=3303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34238, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6848, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3010, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3303]={ + ["next_chapter"]=3304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34480, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6896, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3040, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3304]={ + ["next_chapter"]=3305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34723, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6945, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3070, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3305]={ + ["next_chapter"]=3306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34968, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=6994, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3306]={ + ["next_chapter"]=3307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35214, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7043, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3130, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3307]={ + ["next_chapter"]=3308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35462, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7092, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3308]={ + ["next_chapter"]=3309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35712, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7142, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3190, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3309]={ + ["next_chapter"]=3310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35963, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7193, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3220, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=319547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=330, + ["unit"]=0 + } + }, + [3310]={ + ["next_chapter"]=3311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=36216, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7243, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3250, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3311]={ + ["next_chapter"]=3312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36471, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7294, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3280, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3312]={ + ["next_chapter"]=3313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36727, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7345, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3310, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3313]={ + ["next_chapter"]=3314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36985, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7397, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3340, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3314]={ + ["next_chapter"]=3315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37244, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7449, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3370, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3315]={ + ["next_chapter"]=3316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37505, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7501, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3316]={ + ["next_chapter"]=3317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37768, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7554, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3430, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3317]={ + ["next_chapter"]=3318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38032, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7606, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3460, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3318]={ + ["next_chapter"]=3319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38299, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7660, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3490, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3319]={ + ["next_chapter"]=3320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38566, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7713, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3520, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=352047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=331, + ["unit"]=0 + } + }, + [3320]={ + ["next_chapter"]=3321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=38836, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7767, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3560, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3321]={ + ["next_chapter"]=3322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39107, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7821, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3322]={ + ["next_chapter"]=3323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39380, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7876, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3640, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3323]={ + ["next_chapter"]=3324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39654, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7931, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3680, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3324]={ + ["next_chapter"]=3325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39931, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=7986, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3720, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3325]={ + ["next_chapter"]=3326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40209, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8042, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3760, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3326]={ + ["next_chapter"]=3327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40488, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8098, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3327]={ + ["next_chapter"]=3328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40770, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8154, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3840, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3328]={ + ["next_chapter"]=3329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41053, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8211, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3880, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3329]={ + ["next_chapter"]=3330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41338, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8268, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3920, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=387647, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=332, + ["unit"]=0 + } + }, + [3330]={ + ["next_chapter"]=3331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=41625, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8325, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=3960, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3331]={ + ["next_chapter"]=3332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41913, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8383, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3332]={ + ["next_chapter"]=3333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42203, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8441, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4040, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3333]={ + ["next_chapter"]=3334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42495, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8499, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4080, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3334]={ + ["next_chapter"]=3335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42789, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8558, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4120, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3335]={ + ["next_chapter"]=3336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43084, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8617, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4160, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3336]={ + ["next_chapter"]=3337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43381, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8676, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3337]={ + ["next_chapter"]=3338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43680, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8736, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4240, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3338]={ + ["next_chapter"]=3339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43981, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8796, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4280, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3339]={ + ["next_chapter"]=3340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44283, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8857, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4320, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=427247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=333, + ["unit"]=0 + } + }, + [3340]={ + ["next_chapter"]=3341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=44588, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8918, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4360, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3341]={ + ["next_chapter"]=3342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44894, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=8979, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3342]={ + ["next_chapter"]=3343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45201, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9040, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4440, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3343]={ + ["next_chapter"]=3344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45511, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9102, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4480, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3344]={ + ["next_chapter"]=3345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45823, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9165, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4520, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3345]={ + ["next_chapter"]=3346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46136, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9227, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4570, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3346]={ + ["next_chapter"]=3347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46451, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9290, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4620, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3347]={ + ["next_chapter"]=3348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46768, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9354, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4670, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3348]={ + ["next_chapter"]=3349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47087, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9417, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4720, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3349]={ + ["next_chapter"]=3350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47408, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9482, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4770, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=470847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=334, + ["unit"]=0 + } + }, + [3350]={ + ["next_chapter"]=3351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=47730, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9546, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4820, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3351]={ + ["next_chapter"]=3352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48054, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9611, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4870, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3352]={ + ["next_chapter"]=3353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48381, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9676, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4920, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3353]={ + ["next_chapter"]=3354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48709, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9742, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=4970, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3354]={ + ["next_chapter"]=3355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49038, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9808, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5020, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3355]={ + ["next_chapter"]=3356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49370, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9874, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5070, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3356]={ + ["next_chapter"]=3357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49704, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=9941, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=441889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5120, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3357]={ + ["next_chapter"]=3358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50039, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10008, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5170, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3358]={ + ["next_chapter"]=3359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50377, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10075, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5220, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3359]={ + ["next_chapter"]=3360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50716, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10143, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5270, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=519047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=335, + ["unit"]=0 + } + }, + [3360]={ + ["next_chapter"]=3361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=51057, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10211, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5320, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3361]={ + ["next_chapter"]=3362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51400, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10280, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5370, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3362]={ + ["next_chapter"]=3363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51745, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10349, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5420, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3363]={ + ["next_chapter"]=3364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52092, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10418, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5470, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3364]={ + ["next_chapter"]=3365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52441, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10488, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5520, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3365]={ + ["next_chapter"]=3366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52792, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10558, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=486889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5580, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3366]={ + ["next_chapter"]=3367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53145, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10629, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=491889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5640, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3367]={ + ["next_chapter"]=3368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53499, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10700, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=496889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3368]={ + ["next_chapter"]=3369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53856, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10771, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=501889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5760, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3369]={ + ["next_chapter"]=3370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54214, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10843, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5820, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=572247, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=336, + ["unit"]=0 + } + }, + [3370]={ + ["next_chapter"]=3371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=54575, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10915, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=511889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5880, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3371]={ + ["next_chapter"]=3372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54937, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=10987, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=5940, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3372]={ + ["next_chapter"]=3373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55301, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11060, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=522889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3373]={ + ["next_chapter"]=3374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55668, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11134, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=528889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6060, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3374]={ + ["next_chapter"]=3375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56036, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11207, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6120, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3375]={ + ["next_chapter"]=3376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56406, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11281, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6180, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3376]={ + ["next_chapter"]=3377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56778, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11356, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6240, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3377]={ + ["next_chapter"]=3378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57153, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11431, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3378]={ + ["next_chapter"]=3379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57529, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11506, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=558889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6360, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3379]={ + ["next_chapter"]=3380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57907, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11581, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6420, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=631047, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=337, + ["unit"]=0 + } + }, + [3380]={ + ["next_chapter"]=3381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=58287, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11657, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=570889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6480, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3381]={ + ["next_chapter"]=3382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58670, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11734, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=576889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6540, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3382]={ + ["next_chapter"]=3383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59054, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11811, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=582889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6610, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3383]={ + ["next_chapter"]=3384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59440, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11888, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=588889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6680, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3384]={ + ["next_chapter"]=3385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59828, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=11966, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=594889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6750, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3385]={ + ["next_chapter"]=3386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60219, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12044, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=600889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6820, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3386]={ + ["next_chapter"]=3387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60611, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12122, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=606889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6890, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3387]={ + ["next_chapter"]=3388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61005, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12201, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=612889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=6960, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3388]={ + ["next_chapter"]=3389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61402, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12280, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=619889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7030, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3389]={ + ["next_chapter"]=3390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61800, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12360, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=626889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=695847, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=338, + ["unit"]=0 + } + }, + [3390]={ + ["next_chapter"]=3391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=62201, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12440, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=633889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7170, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3391]={ + ["next_chapter"]=3392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62603, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12521, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=640889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7240, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3392]={ + ["next_chapter"]=3393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63008, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12602, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=647889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7310, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3393]={ + ["next_chapter"]=3394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63415, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12683, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7380, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3394]={ + ["next_chapter"]=3395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63823, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12765, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=661889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7450, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3395]={ + ["next_chapter"]=3396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64234, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12847, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=668889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7520, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3396]={ + ["next_chapter"]=3397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64647, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=12929, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=675889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3397]={ + ["next_chapter"]=3398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65062, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13012, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7680, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3398]={ + ["next_chapter"]=3399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65479, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13096, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=689889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7760, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3399]={ + ["next_chapter"]=3400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65899, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13180, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=696889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7840, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=767547, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=339, + ["unit"]=0 + } + }, + [3400]={ + ["next_chapter"]=3401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=66320, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13264, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=703889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=7920, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3401]={ + ["next_chapter"]=3402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66743, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13349, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=711889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3402]={ + ["next_chapter"]=3403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67169, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13434, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=719889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8080, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3403]={ + ["next_chapter"]=3404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67597, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13519, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=727889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8160, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3404]={ + ["next_chapter"]=3405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68027, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13605, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=735889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8240, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3405]={ + ["next_chapter"]=3406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68459, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13692, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=743889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8320, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3406]={ + ["next_chapter"]=3407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68893, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13779, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=751889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3407]={ + ["next_chapter"]=3408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69329, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13866, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=759889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8480, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3408]={ + ["next_chapter"]=3409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69767, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=13953, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=767889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8560, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3409]={ + ["next_chapter"]=3410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70208, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14042, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=775889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8650, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=846747, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=340, + ["unit"]=0 + } + }, + [3410]={ + ["next_chapter"]=3411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=70650, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14130, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=783889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8740, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3411]={ + ["next_chapter"]=3412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71095, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14219, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=791889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8830, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3412]={ + ["next_chapter"]=3413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71542, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14308, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=8920, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3413]={ + ["next_chapter"]=3414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71992, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14398, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=808889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9010, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3414]={ + ["next_chapter"]=3415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72443, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14489, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=817889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3415]={ + ["next_chapter"]=3416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72897, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14579, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=826889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9190, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3416]={ + ["next_chapter"]=3417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73352, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14670, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=835889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9280, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3417]={ + ["next_chapter"]=3418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73810, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14762, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=844889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9370, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3418]={ + ["next_chapter"]=3419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74270, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14854, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=853889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9460, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3419]={ + ["next_chapter"]=3420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74733, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=14947, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=862889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9550, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=934147, + ["unit"]=4 + }, + ["grasp_mastery_reward"]={ + ["value"]=341, + ["unit"]=0 + } + }, + [3420]={ + ["next_chapter"]=3421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=75197, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15039, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=871889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9650, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3421]={ + ["next_chapter"]=3422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75664, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15133, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=880889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9750, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3422]={ + ["next_chapter"]=3423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76133, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15227, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=889889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9850, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3423]={ + ["next_chapter"]=3424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76605, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15321, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=898889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=9950, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3424]={ + ["next_chapter"]=3425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77078, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15416, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=908889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10050, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3425]={ + ["next_chapter"]=3426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77554, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15511, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=918889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3426]={ + ["next_chapter"]=3427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78032, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15606, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=928889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3427]={ + ["next_chapter"]=3428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78512, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15702, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=938889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3428]={ + ["next_chapter"]=3429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78994, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15799, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=948889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3429]={ + ["next_chapter"]=3430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79479, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15896, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=958889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1031, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=342, + ["unit"]=0 + } + }, + [3430]={ + ["next_chapter"]=3431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=79966, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=15993, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=968889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3431]={ + ["next_chapter"]=3432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80455, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16091, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=978889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3432]={ + ["next_chapter"]=3433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80947, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16189, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=988889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=10900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3433]={ + ["next_chapter"]=3434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81441, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16288, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=998889, + ["unit"]=4 + }, + ["idle_gold"]={ + ["value"]=11000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3434]={ + ["next_chapter"]=3435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81937, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16387, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1009, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3435]={ + ["next_chapter"]=3436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82435, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16487, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1019, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3436]={ + ["next_chapter"]=3437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82936, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16587, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1029, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3437]={ + ["next_chapter"]=3438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83439, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16688, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1039, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3438]={ + ["next_chapter"]=3439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83944, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16789, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1049, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3439]={ + ["next_chapter"]=3440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84452, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16890, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1059, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1138, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=343, + ["unit"]=0 + } + }, + [3440]={ + ["next_chapter"]=3441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=84962, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=16992, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1069, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3441]={ + ["next_chapter"]=3442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85474, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17095, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1079, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3442]={ + ["next_chapter"]=3443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85989, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17198, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3443]={ + ["next_chapter"]=3444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86506, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17301, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1099, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3444]={ + ["next_chapter"]=3445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87025, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17405, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1109, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3445]={ + ["next_chapter"]=3446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87547, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17509, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1119, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3446]={ + ["next_chapter"]=3447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88071, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17614, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1129, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3447]={ + ["next_chapter"]=3448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88597, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17719, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1139, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3448]={ + ["next_chapter"]=3449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89126, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17825, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1149, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3449]={ + ["next_chapter"]=3450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89657, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=17931, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1159, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1255, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=344, + ["unit"]=0 + } + }, + [3450]={ + ["next_chapter"]=3451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=90190, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18038, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1169, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3451]={ + ["next_chapter"]=3452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90726, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18145, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1179, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3452]={ + ["next_chapter"]=3453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91264, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18253, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=12900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3453]={ + ["next_chapter"]=3454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91805, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18361, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1199, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3454]={ + ["next_chapter"]=3455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92347, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18469, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1209, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3455]={ + ["next_chapter"]=3456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92893, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18579, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1219, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3456]={ + ["next_chapter"]=3457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93441, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18688, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1229, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3457]={ + ["next_chapter"]=3458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93991, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18798, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1239, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3458]={ + ["next_chapter"]=3459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94543, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=18909, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1249, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3459]={ + ["next_chapter"]=3460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95098, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19020, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1259, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=345, + ["unit"]=0 + } + }, + [3460]={ + ["next_chapter"]=3461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=95656, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19131, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1269, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3461]={ + ["next_chapter"]=3462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96216, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19243, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1279, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3462]={ + ["next_chapter"]=3463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96778, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19356, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=13900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3463]={ + ["next_chapter"]=3464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97343, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19469, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1299, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3464]={ + ["next_chapter"]=3465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97910, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19582, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1309, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3465]={ + ["next_chapter"]=3466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98479, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19696, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1319, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3466]={ + ["next_chapter"]=3467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99051, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19810, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1329, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3467]={ + ["next_chapter"]=3468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99626, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=19925, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1339, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3468]={ + ["next_chapter"]=3469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100203, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20041, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1349, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3469]={ + ["next_chapter"]=3470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100782, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20156, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1359, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=346, + ["unit"]=0 + } + }, + [3470]={ + ["next_chapter"]=3471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=101364, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20273, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1369, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3471]={ + ["next_chapter"]=3472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101949, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20390, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1379, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3472]={ + ["next_chapter"]=3473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102536, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20507, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=14900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3473]={ + ["next_chapter"]=3474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103125, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20625, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1399, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=15000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3474]={ + ["next_chapter"]=3475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103717, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20743, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1409, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=15200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3475]={ + ["next_chapter"]=3476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104311, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20862, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1419, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=15400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3476]={ + ["next_chapter"]=3477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104908, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=20982, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1429, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=15600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3477]={ + ["next_chapter"]=3478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105508, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=21102, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1439, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=15800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3478]={ + ["next_chapter"]=3479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106110, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=21222, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1449, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=16000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3479]={ + ["next_chapter"]=3480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106714, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=21343, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1459, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=16200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1666, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=347, + ["unit"]=0 + } + }, + [3480]={ + ["next_chapter"]=3481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=107321, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=21464, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1469, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=16400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3481]={ + ["next_chapter"]=3482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107930, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=21586, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1479, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=16600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3482]={ + ["next_chapter"]=3483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108543, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=21709, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=16800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3483]={ + ["next_chapter"]=3484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109157, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=21831, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1499, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=17000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3484]={ + ["next_chapter"]=3485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109774, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=21955, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1509, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=17200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3485]={ + ["next_chapter"]=3486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110394, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=22079, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1519, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=17400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3486]={ + ["next_chapter"]=3487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111016, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=22203, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1529, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=17600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3487]={ + ["next_chapter"]=3488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111641, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=22328, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1539, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=17800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3488]={ + ["next_chapter"]=3489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112269, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=22454, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1549, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=18000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3489]={ + ["next_chapter"]=3490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112899, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=22580, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1559, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=18200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=1830, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=348, + ["unit"]=0 + } + }, + [3490]={ + ["next_chapter"]=3491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=113531, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=22706, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1569, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=18400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3491]={ + ["next_chapter"]=3492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114166, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=22833, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1579, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=18600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3492]={ + ["next_chapter"]=3493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114804, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=22961, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=18800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3493]={ + ["next_chapter"]=3494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115444, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=23089, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1599, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=19000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3494]={ + ["next_chapter"]=3495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116087, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=23217, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1609, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=19200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3495]={ + ["next_chapter"]=3496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116733, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=23347, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1619, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=19400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3496]={ + ["next_chapter"]=3497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117381, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=23476, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1629, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=19600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3497]={ + ["next_chapter"]=3498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118032, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=23606, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1639, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=19800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3498]={ + ["next_chapter"]=3499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118685, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=23737, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1659, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3499]={ + ["next_chapter"]=3500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119341, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=23868, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1679, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=20200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2014, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=349, + ["unit"]=0 + } + }, + [3500]={ + ["next_chapter"]=3501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=120000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1699, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=20400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3501]={ + ["next_chapter"]=3502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1719, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=20600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3502]={ + ["next_chapter"]=3503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1739, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=20800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3503]={ + ["next_chapter"]=3504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1759, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=21000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3504]={ + ["next_chapter"]=3505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1779, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=21200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3505]={ + ["next_chapter"]=3506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120001, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1799, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=21400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3506]={ + ["next_chapter"]=3507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120001, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1819, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=21600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3507]={ + ["next_chapter"]=3508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120002, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25200, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1839, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=21800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3508]={ + ["next_chapter"]=3509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120003, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25201, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1859, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=22000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3509]={ + ["next_chapter"]=3510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120004, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25201, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1879, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=22200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2218, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=350, + ["unit"]=0 + } + }, + [3510]={ + ["next_chapter"]=3511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=120005, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25201, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1899, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=22400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3511]={ + ["next_chapter"]=3512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120007, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25202, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1919, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=22600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3512]={ + ["next_chapter"]=3513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120009, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25202, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1939, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=22800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3513]={ + ["next_chapter"]=3514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120012, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25203, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1959, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=23000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3514]={ + ["next_chapter"]=3515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120015, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25203, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1979, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=23200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3515]={ + ["next_chapter"]=3516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120018, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25204, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1999, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=23400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3516]={ + ["next_chapter"]=3517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120022, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25205, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2019, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=23600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3517]={ + ["next_chapter"]=3518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120027, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25206, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2039, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=23800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3518]={ + ["next_chapter"]=3519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120032, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25207, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2059, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=24000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3519]={ + ["next_chapter"]=3520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120037, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25208, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2079, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=24200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2442, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=351, + ["unit"]=0 + } + }, + [3520]={ + ["next_chapter"]=3521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=120044, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25209, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2099, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=24400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3521]={ + ["next_chapter"]=3522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120050, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25211, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2119, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=24600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3522]={ + ["next_chapter"]=3523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120058, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25212, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2139, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=24800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3523]={ + ["next_chapter"]=3524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120066, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25214, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2159, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=25000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3524]={ + ["next_chapter"]=3525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120075, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25216, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2179, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=25300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3525]={ + ["next_chapter"]=3526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120085, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25218, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2199, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=25600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3526]={ + ["next_chapter"]=3527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120096, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25220, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2219, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=25900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3527]={ + ["next_chapter"]=3528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120107, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25222, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2239, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=26200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3528]={ + ["next_chapter"]=3529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120119, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25225, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2259, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=26500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3529]={ + ["next_chapter"]=3530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120133, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25228, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2279, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=26800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2686, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=352, + ["unit"]=0 + } + }, + [3530]={ + ["next_chapter"]=3531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=120147, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25231, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2299, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=27100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3531]={ + ["next_chapter"]=3532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120162, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25234, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2319, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=27400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3532]={ + ["next_chapter"]=3533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120178, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25237, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2339, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=27700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3533]={ + ["next_chapter"]=3534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120195, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25241, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2359, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=28000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3534]={ + ["next_chapter"]=3535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120214, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25245, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2379, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=28300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3535]={ + ["next_chapter"]=3536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120233, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25249, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2399, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=28600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3536]={ + ["next_chapter"]=3537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120254, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25253, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2419, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=28900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3537]={ + ["next_chapter"]=3538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120276, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25258, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2439, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=29200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3538]={ + ["next_chapter"]=3539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120299, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25263, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2459, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=29500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3539]={ + ["next_chapter"]=3540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120323, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25268, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2479, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=29800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=2957, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=353, + ["unit"]=0 + } + }, + [3540]={ + ["next_chapter"]=3541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=120348, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25273, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2509, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=30100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3541]={ + ["next_chapter"]=3542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120375, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25279, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2539, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=30400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3542]={ + ["next_chapter"]=3543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120403, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25285, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2569, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=30700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3543]={ + ["next_chapter"]=3544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120433, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25291, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2599, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=31000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3544]={ + ["next_chapter"]=3545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120463, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25297, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2629, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=31300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3545]={ + ["next_chapter"]=3546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120496, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25304, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2659, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=31600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3546]={ + ["next_chapter"]=3547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120530, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25311, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=31900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3547]={ + ["next_chapter"]=3548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120565, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25319, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2719, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=32200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3548]={ + ["next_chapter"]=3549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120602, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25326, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2749, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=32500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3549]={ + ["next_chapter"]=3550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120640, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25334, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2779, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=32800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=354, + ["unit"]=0 + } + }, + [3550]={ + ["next_chapter"]=3551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=120680, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25343, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2809, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=33100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3551]={ + ["next_chapter"]=3552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120722, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25352, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2839, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=33400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3552]={ + ["next_chapter"]=3553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120765, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25361, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2869, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=33700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3553]={ + ["next_chapter"]=3554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120810, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25370, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2899, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=34000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3554]={ + ["next_chapter"]=3555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120857, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25380, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2929, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=34300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3555]={ + ["next_chapter"]=3556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120905, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25390, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2959, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=34600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3556]={ + ["next_chapter"]=3557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120955, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25401, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=34900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3557]={ + ["next_chapter"]=3558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121007, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25412, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3019, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=35200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3558]={ + ["next_chapter"]=3559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121061, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25423, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3049, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=35600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3559]={ + ["next_chapter"]=3560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121117, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25435, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3079, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=36000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=355, + ["unit"]=0 + } + }, + [3560]={ + ["next_chapter"]=3561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=121175, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25447, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3109, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=36400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3561]={ + ["next_chapter"]=3562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121235, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25459, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3139, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=36800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3562]={ + ["next_chapter"]=3563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121297, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25472, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3169, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=37200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3563]={ + ["next_chapter"]=3564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121360, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25486, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3199, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=37600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3564]={ + ["next_chapter"]=3565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121426, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25499, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3229, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=38000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3565]={ + ["next_chapter"]=3566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121494, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25514, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3259, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=38400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3566]={ + ["next_chapter"]=3567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121564, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25528, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=38800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3567]={ + ["next_chapter"]=3568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121636, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25544, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3319, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=39200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3568]={ + ["next_chapter"]=3569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121711, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25559, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3349, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=39600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3569]={ + ["next_chapter"]=3570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121787, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25575, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=3953, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=356, + ["unit"]=0 + } + }, + [3570]={ + ["next_chapter"]=3571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=121866, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25592, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3429, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=40400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3571]={ + ["next_chapter"]=3572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121947, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25609, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3469, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=40800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3572]={ + ["next_chapter"]=3573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122030, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25626, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3509, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=41200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3573]={ + ["next_chapter"]=3574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122116, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25644, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3549, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=41600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3574]={ + ["next_chapter"]=3575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122204, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25663, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=42000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3575]={ + ["next_chapter"]=3576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122295, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25682, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3629, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=42400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3576]={ + ["next_chapter"]=3577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122388, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25701, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3669, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=42800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3577]={ + ["next_chapter"]=3578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122484, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25722, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3709, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=43200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3578]={ + ["next_chapter"]=3579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122582, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25742, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3749, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=43600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3579]={ + ["next_chapter"]=3580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122682, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25763, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=44000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4357, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=357, + ["unit"]=0 + } + }, + [3580]={ + ["next_chapter"]=3581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=122785, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25785, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3829, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=44400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3581]={ + ["next_chapter"]=3582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122891, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25807, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3869, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=44800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3582]={ + ["next_chapter"]=3583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122999, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25830, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3909, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=45200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3583]={ + ["next_chapter"]=3584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123111, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25853, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3949, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=45700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3584]={ + ["next_chapter"]=3585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123224, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25877, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=46200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3585]={ + ["next_chapter"]=3586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123341, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25902, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4029, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=46700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3586]={ + ["next_chapter"]=3587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123460, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25927, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4069, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=47200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3587]={ + ["next_chapter"]=3588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123582, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25952, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4109, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=47700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3588]={ + ["next_chapter"]=3589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123707, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=25979, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4149, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=48200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3589]={ + ["next_chapter"]=3590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123835, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26005, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=48700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=4801, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=358, + ["unit"]=0 + } + }, + [3590]={ + ["next_chapter"]=3591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=123966, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26033, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4229, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=49200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3591]={ + ["next_chapter"]=3592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124099, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26061, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4269, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=49700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3592]={ + ["next_chapter"]=3593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124236, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26090, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4319, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=50200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3593]={ + ["next_chapter"]=3594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124376, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26119, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4369, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=50700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3594]={ + ["next_chapter"]=3595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124518, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26149, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4419, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=51200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3595]={ + ["next_chapter"]=3596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124664, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26179, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4469, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=51700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3596]={ + ["next_chapter"]=3597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124813, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26211, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4519, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=52200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3597]={ + ["next_chapter"]=3598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124965, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26243, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4569, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=52700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3598]={ + ["next_chapter"]=3599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125120, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26275, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4619, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=53200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3599]={ + ["next_chapter"]=3600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125278, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26308, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4669, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=53700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5293, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=359, + ["unit"]=0 + } + }, + [3600]={ + ["next_chapter"]=3601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=125440, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26342, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4719, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=54200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3601]={ + ["next_chapter"]=3602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125605, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26377, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4769, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=54700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3602]={ + ["next_chapter"]=3603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125773, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26412, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4819, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=55200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3603]={ + ["next_chapter"]=3604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125944, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26448, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4869, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=55800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3604]={ + ["next_chapter"]=3605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126119, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26485, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4919, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=56400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3605]={ + ["next_chapter"]=3606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126297, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26522, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4969, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=57000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3606]={ + ["next_chapter"]=3607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126479, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26561, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5019, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=57600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3607]={ + ["next_chapter"]=3608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126664, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26599, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5069, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=58200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3608]={ + ["next_chapter"]=3609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126853, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26639, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5119, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=58800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3609]={ + ["next_chapter"]=3610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127045, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26679, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5169, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=59400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=5835, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=360, + ["unit"]=0 + } + }, + [3610]={ + ["next_chapter"]=3611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=127241, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26721, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5229, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3611]={ + ["next_chapter"]=3612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127440, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26762, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=60600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3612]={ + ["next_chapter"]=3613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127643, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26805, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5349, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=61200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3613]={ + ["next_chapter"]=3614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127849, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26848, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5409, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=61800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3614]={ + ["next_chapter"]=3615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128060, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26893, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5469, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=62400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3615]={ + ["next_chapter"]=3616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128274, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26937, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5529, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=63000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3616]={ + ["next_chapter"]=3617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128491, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=26983, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=63600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3617]={ + ["next_chapter"]=3618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128713, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27030, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5649, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=64200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3618]={ + ["next_chapter"]=3619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128938, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27077, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5709, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=64800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3619]={ + ["next_chapter"]=3620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129167, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27125, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5769, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=65400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=6435, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=361, + ["unit"]=0 + } + }, + [3620]={ + ["next_chapter"]=3621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=129400, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27174, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5829, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=66100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3621]={ + ["next_chapter"]=3622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129637, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27224, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=66800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3622]={ + ["next_chapter"]=3623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129878, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27274, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5949, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=67500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3623]={ + ["next_chapter"]=3624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130123, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27326, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6009, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=68200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3624]={ + ["next_chapter"]=3625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130372, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27378, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6069, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=68900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3625]={ + ["next_chapter"]=3626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130625, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27431, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6129, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=69600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3626]={ + ["next_chapter"]=3627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130882, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27485, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6199, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=70300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3627]={ + ["next_chapter"]=3628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131143, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27540, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6269, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=71000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3628]={ + ["next_chapter"]=3629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131409, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27596, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6339, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=71700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3629]={ + ["next_chapter"]=3630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131678, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27652, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6409, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=72400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7096, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=362, + ["unit"]=0 + } + }, + [3630]={ + ["next_chapter"]=3631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=131952, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27710, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6479, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=73100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3631]={ + ["next_chapter"]=3632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132230, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27768, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6549, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=73800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3632]={ + ["next_chapter"]=3633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132512, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27827, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6619, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=74500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3633]={ + ["next_chapter"]=3634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132798, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27888, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=75200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3634]={ + ["next_chapter"]=3635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133089, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=27949, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6759, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=76000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3635]={ + ["next_chapter"]=3636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133384, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28011, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6829, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=76800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3636]={ + ["next_chapter"]=3637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133684, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28074, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6899, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=77600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3637]={ + ["next_chapter"]=3638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133988, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28138, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6969, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=78400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3638]={ + ["next_chapter"]=3639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134297, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28202, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7039, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=79200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3639]={ + ["next_chapter"]=3640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134610, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28268, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7119, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=7827, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=363, + ["unit"]=0 + } + }, + [3640]={ + ["next_chapter"]=3641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=134927, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28335, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7199, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=80800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3641]={ + ["next_chapter"]=3642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135250, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28402, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7279, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=81600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3642]={ + ["next_chapter"]=3643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135576, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28471, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7359, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=82400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3643]={ + ["next_chapter"]=3644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135908, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28541, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7439, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=83200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3644]={ + ["next_chapter"]=3645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136244, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28611, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7519, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=84000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3645]={ + ["next_chapter"]=3646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136585, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28683, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7599, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=84800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3646]={ + ["next_chapter"]=3647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136930, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28755, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7679, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=85600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3647]={ + ["next_chapter"]=3648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137280, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28829, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7759, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=86500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3648]={ + ["next_chapter"]=3649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137635, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28903, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7839, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=87400, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3649]={ + ["next_chapter"]=3650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137995, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=28979, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7919, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=88300, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=8635, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=364, + ["unit"]=0 + } + }, + [3650]={ + ["next_chapter"]=3651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=138360, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29056, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7999, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=89200, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3651]={ + ["next_chapter"]=3652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138730, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29133, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=90100, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3652]={ + ["next_chapter"]=3653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139104, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29212, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8179, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=91000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3653]={ + ["next_chapter"]=3654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139484, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29292, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8269, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=91900, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3654]={ + ["next_chapter"]=3655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139868, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29372, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8359, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=92800, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3655]={ + ["next_chapter"]=3656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140258, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29454, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8449, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=93700, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3656]={ + ["next_chapter"]=3657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140653, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29537, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8539, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=94600, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3657]={ + ["next_chapter"]=3658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141052, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29621, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8629, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=95500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3658]={ + ["next_chapter"]=3659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141457, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29706, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8719, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=96500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3659]={ + ["next_chapter"]=3660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141867, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29792, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8809, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=97500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=9527, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=365, + ["unit"]=0 + } + }, + [3660]={ + ["next_chapter"]=3661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=142282, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29879, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8899, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=98500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3661]={ + ["next_chapter"]=3662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142703, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=29968, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=99500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3662]={ + ["next_chapter"]=3663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143128, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30057, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=100500, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3663]={ + ["next_chapter"]=3664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143559, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30147, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=102000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3664]={ + ["next_chapter"]=3665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143996, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30239, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=103000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3665]={ + ["next_chapter"]=3666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144437, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30332, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=104000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3666]={ + ["next_chapter"]=3667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144884, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30426, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=105000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3667]={ + ["next_chapter"]=3668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145337, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30521, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=106000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3668]={ + ["next_chapter"]=3669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145794, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30617, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=107000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3669]={ + ["next_chapter"]=3670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146258, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30714, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=108000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=10512, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=366, + ["unit"]=0 + } + }, + [3670]={ + ["next_chapter"]=3671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=146727, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30813, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=109000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3671]={ + ["next_chapter"]=3672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147201, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=30912, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=110000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3672]={ + ["next_chapter"]=3673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147681, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31013, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=111000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3673]={ + ["next_chapter"]=3674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148167, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31115, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=112000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3674]={ + ["next_chapter"]=3675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148658, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31218, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=113000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3675]={ + ["next_chapter"]=3676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=149155, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31323, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=114000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3676]={ + ["next_chapter"]=3677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=149658, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31428, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=115000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3677]={ + ["next_chapter"]=3678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150166, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31535, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=116000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3678]={ + ["next_chapter"]=3679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150680, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31643, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=117000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3679]={ + ["next_chapter"]=3680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151200, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31752, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=118000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=11602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=367, + ["unit"]=0 + } + }, + [3680]={ + ["next_chapter"]=3681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=151726, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31862, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=119000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3681]={ + ["next_chapter"]=3682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152258, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=31974, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=120000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3682]={ + ["next_chapter"]=3683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152795, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=32087, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=121000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3683]={ + ["next_chapter"]=3684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153339, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=32201, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=122000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3684]={ + ["next_chapter"]=3685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153889, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=32317, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=123000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3685]={ + ["next_chapter"]=3686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154444, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=32433, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=124000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3686]={ + ["next_chapter"]=3687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155006, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=32551, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=125000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3687]={ + ["next_chapter"]=3688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155573, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=32670, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=126000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3688]={ + ["next_chapter"]=3689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156147, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=32791, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=127000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3689]={ + ["next_chapter"]=3690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156727, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=32913, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=128000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=12792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=368, + ["unit"]=0 + } + }, + [3690]={ + ["next_chapter"]=3691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=157313, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=33036, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=129000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3691]={ + ["next_chapter"]=3692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157905, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=33160, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=130000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3692]={ + ["next_chapter"]=3693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158504, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=33286, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=131000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3693]={ + ["next_chapter"]=3694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159108, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=33413, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=132000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3694]={ + ["next_chapter"]=3695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159720, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=33541, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=133000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3695]={ + ["next_chapter"]=3696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160337, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=33671, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=134000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3696]={ + ["next_chapter"]=3697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160961, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=33802, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=135000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3697]={ + ["next_chapter"]=3698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161591, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=33934, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=136000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3698]={ + ["next_chapter"]=3699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162227, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=34068, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=137000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3699]={ + ["next_chapter"]=3700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162870, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=34203, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=138000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=14082, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=369, + ["unit"]=0 + } + }, + [3700]={ + ["next_chapter"]=3701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=163520, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=34339, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=139000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3701]={ + ["next_chapter"]=3702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=164176, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=34477, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=140000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3702]={ + ["next_chapter"]=3703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=164839, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=34616, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=141000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3703]={ + ["next_chapter"]=3704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165508, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=34757, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=142000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3704]={ + ["next_chapter"]=3705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166184, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=34899, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=143000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3705]={ + ["next_chapter"]=3706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166866, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=35042, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=144000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3706]={ + ["next_chapter"]=3707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=167555, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=35187, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=145000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3707]={ + ["next_chapter"]=3708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168251, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=35333, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=146000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3708]={ + ["next_chapter"]=3709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168954, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=35480, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=147000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3709]={ + ["next_chapter"]=3710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169664, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=35629, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=148000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=15472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=370, + ["unit"]=0 + } + }, + [3710]={ + ["next_chapter"]=3711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=170380, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=35780, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=149000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3711]={ + ["next_chapter"]=3712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=171103, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=35932, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=150000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3712]={ + ["next_chapter"]=3713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=171833, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=36085, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=152000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3713]={ + ["next_chapter"]=3714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=172570, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=36240, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=154000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3714]={ + ["next_chapter"]=3715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=173314, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=36396, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=156000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3715]={ + ["next_chapter"]=3716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174065, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=36554, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=158000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3716]={ + ["next_chapter"]=3717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174823, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=36713, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=160000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3717]={ + ["next_chapter"]=3718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=175588, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=36873, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=162000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3718]={ + ["next_chapter"]=3719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176360, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=37036, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=164000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3719]={ + ["next_chapter"]=3720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=177139, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=37199, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=166000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=16962, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=371, + ["unit"]=0 + } + }, + [3720]={ + ["next_chapter"]=3721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=177925, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=37364, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=168000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3721]={ + ["next_chapter"]=3722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=178719, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=37531, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=170000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3722]={ + ["next_chapter"]=3723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179519, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=37699, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=172000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3723]={ + ["next_chapter"]=3724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=180327, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=37869, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=174000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3724]={ + ["next_chapter"]=3725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=181142, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=38040, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=176000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3725]={ + ["next_chapter"]=3726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=181965, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=38213, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=178000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3726]={ + ["next_chapter"]=3727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=182795, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=38387, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=180000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3727]={ + ["next_chapter"]=3728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=183632, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=38563, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=182000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3728]={ + ["next_chapter"]=3729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=184477, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=38740, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=184000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3729]={ + ["next_chapter"]=3730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=185329, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=38919, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=186000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=18642, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=372, + ["unit"]=0 + } + }, + [3730]={ + ["next_chapter"]=3731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=186188, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=39100, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=188000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3731]={ + ["next_chapter"]=3732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=187056, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=39282, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=190000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3732]={ + ["next_chapter"]=3733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=187930, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=39465, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=192000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3733]={ + ["next_chapter"]=3734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=188812, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=39651, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=194000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3734]={ + ["next_chapter"]=3735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=189702, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=39837, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=196000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3735]={ + ["next_chapter"]=3736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=190600, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=40026, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=198000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3736]={ + ["next_chapter"]=3737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=191505, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=40216, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3737]={ + ["next_chapter"]=3738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=192418, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=40408, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=202000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3738]={ + ["next_chapter"]=3739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=193338, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=40601, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=204000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3739]={ + ["next_chapter"]=3740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=194266, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=40796, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=206000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=20522, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=373, + ["unit"]=0 + } + }, + [3740]={ + ["next_chapter"]=3741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=195203, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=40993, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=208000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3741]={ + ["next_chapter"]=3742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=196147, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=41191, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=210000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3742]={ + ["next_chapter"]=3743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=197098, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=41391, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=212000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3743]={ + ["next_chapter"]=3744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=198058, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=41592, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=214000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3744]={ + ["next_chapter"]=3745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=199026, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=41795, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=216000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3745]={ + ["next_chapter"]=3746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=200001, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=42000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=218000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3746]={ + ["next_chapter"]=3747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=200985, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=42207, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=220000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3747]={ + ["next_chapter"]=3748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=201977, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=42415, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=222000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3748]={ + ["next_chapter"]=3749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=202976, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=42625, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=224000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3749]={ + ["next_chapter"]=3750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=203984, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=42837, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=226000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=22602, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=374, + ["unit"]=0 + } + }, + [3750]={ + ["next_chapter"]=3751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=205000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=43050, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=228000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3751]={ + ["next_chapter"]=3752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=206024, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=43265, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=230000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3752]={ + ["next_chapter"]=3753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=207056, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=43482, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=232000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3753]={ + ["next_chapter"]=3754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=208097, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=43700, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=234000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3754]={ + ["next_chapter"]=3755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=209146, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=43921, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=236000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3755]={ + ["next_chapter"]=3756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=210203, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=44143, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=238000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3756]={ + ["next_chapter"]=3757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=211268, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=44366, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=240000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3757]={ + ["next_chapter"]=3758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=212342, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=44592, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=242000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3758]={ + ["next_chapter"]=3759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=213424, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=44819, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=244000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3759]={ + ["next_chapter"]=3760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=214514, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=45048, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=246000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=24882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=375, + ["unit"]=0 + } + }, + [3760]={ + ["next_chapter"]=3761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=215613, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=45279, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=248000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3761]={ + ["next_chapter"]=3762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=216721, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=45511, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=250000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3762]={ + ["next_chapter"]=3763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=217837, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=45746, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=253000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3763]={ + ["next_chapter"]=3764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=218961, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=45982, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=256000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3764]={ + ["next_chapter"]=3765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=220095, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=46220, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=259000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3765]={ + ["next_chapter"]=3766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=221236, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=46460, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=262000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3766]={ + ["next_chapter"]=3767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=222387, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=46701, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=265000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3767]={ + ["next_chapter"]=3768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=223546, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=46945, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=268000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3768]={ + ["next_chapter"]=3769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=224714, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=47190, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=271000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3769]={ + ["next_chapter"]=3770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=225890, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=47437, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=274000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=27362, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=376, + ["unit"]=0 + } + }, + [3770]={ + ["next_chapter"]=3771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=227076, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=47686, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=277000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3771]={ + ["next_chapter"]=3772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=228270, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=47937, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=280000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3772]={ + ["next_chapter"]=3773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=229473, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=48189, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=283000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3773]={ + ["next_chapter"]=3774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=230685, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=48444, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=286000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3774]={ + ["next_chapter"]=3775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=231905, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=48700, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=289000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3775]={ + ["next_chapter"]=3776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=233135, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=48958, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=292000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3776]={ + ["next_chapter"]=3777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=234374, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=49218, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=295000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3777]={ + ["next_chapter"]=3778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=235621, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=49480, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=200000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=298000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3778]={ + ["next_chapter"]=3779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=236878, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=49744, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=301000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3779]={ + ["next_chapter"]=3780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=238144, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=50010, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=304000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=30132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=377, + ["unit"]=0 + } + }, + [3780]={ + ["next_chapter"]=3781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=239419, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=50278, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=307000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3781]={ + ["next_chapter"]=3782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=240703, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=50548, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=310000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3782]={ + ["next_chapter"]=3783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=241996, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=50819, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=313000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3783]={ + ["next_chapter"]=3784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=243299, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=51093, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=316000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3784]={ + ["next_chapter"]=3785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=244610, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=51368, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=319000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3785]={ + ["next_chapter"]=3786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=245931, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=51646, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=322000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3786]={ + ["next_chapter"]=3787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=247261, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=51925, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=325000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3787]={ + ["next_chapter"]=3788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=248601, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=52206, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=328000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3788]={ + ["next_chapter"]=3789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=249950, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=52490, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=331000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3789]={ + ["next_chapter"]=3790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=251308, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=52775, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=334000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=33202, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=378, + ["unit"]=0 + } + }, + [3790]={ + ["next_chapter"]=3791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=252676, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=53062, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=337000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3791]={ + ["next_chapter"]=3792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=254053, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=53351, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=340000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3792]={ + ["next_chapter"]=3793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=255440, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=53642, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=343000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3793]={ + ["next_chapter"]=3794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=256836, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=53936, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=346000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3794]={ + ["next_chapter"]=3795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=258242, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=54231, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=349000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3795]={ + ["next_chapter"]=3796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=259658, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=54528, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=352000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3796]={ + ["next_chapter"]=3797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=261083, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=54827, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=356000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3797]={ + ["next_chapter"]=3798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=262518, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=55129, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=360000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3798]={ + ["next_chapter"]=3799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=263962, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=55432, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=364000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3799]={ + ["next_chapter"]=3800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=265416, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=55737, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=368000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=36572, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=379, + ["unit"]=0 + } + }, + [3800]={ + ["next_chapter"]=3801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=266880, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=56045, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=372000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3801]={ + ["next_chapter"]=3802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=268354, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=56354, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=376000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3802]={ + ["next_chapter"]=3803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=269837, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=56666, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=380000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3803]={ + ["next_chapter"]=3804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=271331, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=56979, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=384000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3804]={ + ["next_chapter"]=3805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=272834, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=57295, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=388000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3805]={ + ["next_chapter"]=3806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=274347, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=57613, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=392000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3806]={ + ["next_chapter"]=3807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=275870, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=57933, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=396000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3807]={ + ["next_chapter"]=3808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=277403, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=58255, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3808]={ + ["next_chapter"]=3809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=278947, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=58579, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=404000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3809]={ + ["next_chapter"]=3810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=280500, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=58905, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=408000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=40292, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=380, + ["unit"]=0 + } + }, + [3810]={ + ["next_chapter"]=3811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=282063, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=59233, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=412000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3811]={ + ["next_chapter"]=3812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=283636, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=59564, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=416000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3812]={ + ["next_chapter"]=3813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=285220, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=59896, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=420000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3813]={ + ["next_chapter"]=3814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=286814, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=60231, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=424000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3814]={ + ["next_chapter"]=3815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=288418, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=60568, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=428000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3815]={ + ["next_chapter"]=3816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=290032, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=60907, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=432000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3816]={ + ["next_chapter"]=3817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=291656, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=61248, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=436000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3817]={ + ["next_chapter"]=3818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=293291, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=61591, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=440000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3818]={ + ["next_chapter"]=3819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=294936, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=61937, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=444000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3819]={ + ["next_chapter"]=3820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=296592, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=62284, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=448000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=44412, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=381, + ["unit"]=0 + } + }, + [3820]={ + ["next_chapter"]=3821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=298258, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=62634, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=452000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3821]={ + ["next_chapter"]=3822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=299934, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=62986, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=457000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3822]={ + ["next_chapter"]=3823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=301621, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=63340, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=462000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3823]={ + ["next_chapter"]=3824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=303319, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=63697, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=467000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3824]={ + ["next_chapter"]=3825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=305026, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=64056, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=472000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3825]={ + ["next_chapter"]=3826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=306745, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=64416, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=477000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3826]={ + ["next_chapter"]=3827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=308474, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=64780, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=482000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3827]={ + ["next_chapter"]=3828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=310214, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=65145, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=487000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3828]={ + ["next_chapter"]=3829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=311964, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=65512, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=492000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3829]={ + ["next_chapter"]=3830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=313725, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=65882, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=400000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=497000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=48932, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=382, + ["unit"]=0 + } + }, + [3830]={ + ["next_chapter"]=3831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=315497, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=66254, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=502000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3831]={ + ["next_chapter"]=3832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=317280, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=66629, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=507000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3832]={ + ["next_chapter"]=3833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=319073, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=67005, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=512000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3833]={ + ["next_chapter"]=3834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=320878, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=67384, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=517000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3834]={ + ["next_chapter"]=3835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=322693, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=67765, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=522000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3835]={ + ["next_chapter"]=3836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=324519, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=68149, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=527000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3836]={ + ["next_chapter"]=3837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=326356, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=68535, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=532000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3837]={ + ["next_chapter"]=3838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=328204, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=68923, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=537000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3838]={ + ["next_chapter"]=3839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=330063, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=69313, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=542000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3839]={ + ["next_chapter"]=3840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=331933, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=69706, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=547000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=53952, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=383, + ["unit"]=0 + } + }, + [3840]={ + ["next_chapter"]=3841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=333814, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=70101, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=552000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3841]={ + ["next_chapter"]=3842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=335706, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=70498, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=558000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3842]={ + ["next_chapter"]=3843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=337609, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=70898, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=564000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3843]={ + ["next_chapter"]=3844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=339524, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=71300, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=570000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3844]={ + ["next_chapter"]=3845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=341449, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=71704, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=576000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3845]={ + ["next_chapter"]=3846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=343386, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=72111, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=582000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3846]={ + ["next_chapter"]=3847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=345334, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=72520, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=588000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3847]={ + ["next_chapter"]=3848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=347294, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=72932, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=500000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=594000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3848]={ + ["next_chapter"]=3849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=349264, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=73346, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3849]={ + ["next_chapter"]=3850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351247, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=73762, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=606000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=59472, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=384, + ["unit"]=0 + } + }, + [3850]={ + ["next_chapter"]=3851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=353240, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=74180, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=612000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3851]={ + ["next_chapter"]=3852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355245, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=74601, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=618000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3852]={ + ["next_chapter"]=3853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357261, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=75025, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=624000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3853]={ + ["next_chapter"]=3854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=359289, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=75451, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=630000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3854]={ + ["next_chapter"]=3855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=361329, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=75879, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=636000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3855]={ + ["next_chapter"]=3856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=363379, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=76310, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=642000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3856]={ + ["next_chapter"]=3857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=365442, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=76743, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=648000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3857]={ + ["next_chapter"]=3858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=367516, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=77178, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=654000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3858]={ + ["next_chapter"]=3859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=369602, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=77616, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=661000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3859]={ + ["next_chapter"]=3860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=371699, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=78057, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=668000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=65592, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=385, + ["unit"]=0 + } + }, + [3860]={ + ["next_chapter"]=3861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=373809, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=78500, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=675000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3861]={ + ["next_chapter"]=3862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=375930, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=78945, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=682000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3862]={ + ["next_chapter"]=3863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=378062, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=79393, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=689000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3863]={ + ["next_chapter"]=3864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=380207, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=79843, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=600000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=696000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3864]={ + ["next_chapter"]=3865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=382363, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=80296, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=703000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3865]={ + ["next_chapter"]=3866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=384532, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=80752, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=710000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3866]={ + ["next_chapter"]=3867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=386712, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=81209, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=717000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3867]={ + ["next_chapter"]=3868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=388904, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=81670, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=724000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3868]={ + ["next_chapter"]=3869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=391108, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=82133, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=731000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3869]={ + ["next_chapter"]=3870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=393324, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=82598, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=738000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=72342, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=386, + ["unit"]=0 + } + }, + [3870]={ + ["next_chapter"]=3871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=395552, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=83066, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=745000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3871]={ + ["next_chapter"]=3872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=397793, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=83536, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=752000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3872]={ + ["next_chapter"]=3873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=400045, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=84009, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=760000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3873]={ + ["next_chapter"]=3874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=402309, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=84485, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=768000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3874]={ + ["next_chapter"]=3875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=404586, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=84963, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=776000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3875]={ + ["next_chapter"]=3876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=406875, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=85444, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=784000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3876]={ + ["next_chapter"]=3877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=409176, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=85927, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=700000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=792000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3877]={ + ["next_chapter"]=3878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=411490, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=86413, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3878]={ + ["next_chapter"]=3879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=413815, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=86901, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=808000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3879]={ + ["next_chapter"]=3880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=416153, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=87392, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=816000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=79792, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=387, + ["unit"]=0 + } + }, + [3880]={ + ["next_chapter"]=3881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=418504, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=87886, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=824000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3881]={ + ["next_chapter"]=3882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=420866, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=88382, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=832000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3882]={ + ["next_chapter"]=3883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=423242, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=88881, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=840000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3883]={ + ["next_chapter"]=3884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=425629, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=89382, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=848000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3884]={ + ["next_chapter"]=3885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=428030, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=89886, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=856000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3885]={ + ["next_chapter"]=3886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=430442, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=90393, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=865000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3886]={ + ["next_chapter"]=3887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=432868, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=90902, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=874000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3887]={ + ["next_chapter"]=3888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=435306, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=91414, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=883000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3888]={ + ["next_chapter"]=3889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=437756, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=91929, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=800000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=892000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3889]={ + ["next_chapter"]=3890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=440219, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=92446, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=901000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=88032, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=388, + ["unit"]=0 + } + }, + [3890]={ + ["next_chapter"]=3891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=442695, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=92966, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81789, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=910000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3891]={ + ["next_chapter"]=3892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=445184, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=93489, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82689, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=919000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3892]={ + ["next_chapter"]=3893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=447685, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=94014, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83589, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=928000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3893]={ + ["next_chapter"]=3894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450200, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=94542, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84489, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=937000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3894]={ + ["next_chapter"]=3895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=452727, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=95073, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85389, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=946000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3895]={ + ["next_chapter"]=3896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=455267, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=95606, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86289, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=955000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3896]={ + ["next_chapter"]=3897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=457819, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=96142, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87189, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=965000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3897]={ + ["next_chapter"]=3898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=460385, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=96681, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88089, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=975000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3898]={ + ["next_chapter"]=3899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=462964, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=97222, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88989, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=985000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3899]={ + ["next_chapter"]=3900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=465555, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=97767, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=900000, + ["unit"]=4 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=995000, + ["unit"]=4 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=97132, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=389, + ["unit"]=0 + } + }, + [3900]={ + ["next_chapter"]=3901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=468160, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=98314, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1005, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3901]={ + ["next_chapter"]=3902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=470778, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=98863, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1020, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3902]={ + ["next_chapter"]=3903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=473409, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=99416, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1030, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3903]={ + ["next_chapter"]=3904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=476052, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=99971, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1040, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3904]={ + ["next_chapter"]=3905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=478710, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=100529, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1050, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3905]={ + ["next_chapter"]=3906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=481380, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=101090, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3906]={ + ["next_chapter"]=3907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=484063, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=101653, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1070, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3907]={ + ["next_chapter"]=3908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=486760, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=102220, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1080, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3908]={ + ["next_chapter"]=3909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=489470, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=102789, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3909]={ + ["next_chapter"]=3910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=492194, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=103361, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1100, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=107182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=390, + ["unit"]=0 + } + }, + [3910]={ + ["next_chapter"]=3911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=494930, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=103935, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1110, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3911]={ + ["next_chapter"]=3912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=497680, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=104513, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3912]={ + ["next_chapter"]=3913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=500444, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=105093, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1130, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3913]={ + ["next_chapter"]=3914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=503221, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=105676, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3914]={ + ["next_chapter"]=3915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=506011, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=106262, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1150, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3915]={ + ["next_chapter"]=3916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=508815, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=106851, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1160, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3916]={ + ["next_chapter"]=3917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=511633, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=107443, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1170, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3917]={ + ["next_chapter"]=3918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=514464, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=108037, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3918]={ + ["next_chapter"]=3919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=517308, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=108635, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1190, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3919]={ + ["next_chapter"]=3920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=520167, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=109235, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1200, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=118282, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=391, + ["unit"]=0 + } + }, + [3920]={ + ["next_chapter"]=3921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=523039, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=109838, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3921]={ + ["next_chapter"]=3922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=525924, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=110444, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1220, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3922]={ + ["next_chapter"]=3923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=528824, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=111053, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1230, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3923]={ + ["next_chapter"]=3924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=531737, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=111665, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3924]={ + ["next_chapter"]=3925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=534664, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=112279, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3925]={ + ["next_chapter"]=3926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=537605, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=112897, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1260, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3926]={ + ["next_chapter"]=3927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=540560, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=113518, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1270, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3927]={ + ["next_chapter"]=3928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=543528, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=114141, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1280, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3928]={ + ["next_chapter"]=3929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=546511, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=114767, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1290, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3929]={ + ["next_chapter"]=3930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=549508, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=115397, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1300, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=130382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=392, + ["unit"]=0 + } + }, + [3930]={ + ["next_chapter"]=3931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=552518, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=116029, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1310, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3931]={ + ["next_chapter"]=3932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=555543, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=116664, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1320, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3932]={ + ["next_chapter"]=3933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=558581, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=117302, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1330, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3933]={ + ["next_chapter"]=3934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=561634, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=117943, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3934]={ + ["next_chapter"]=3935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=564701, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=118587, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1350, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3935]={ + ["next_chapter"]=3936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=567782, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=119234, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1360, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3936]={ + ["next_chapter"]=3937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=570877, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=119884, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3937]={ + ["next_chapter"]=3938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=573987, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=120537, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1380, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3938]={ + ["next_chapter"]=3939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=577111, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=121193, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3939]={ + ["next_chapter"]=3940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=580249, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=121852, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1400, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=143482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=393, + ["unit"]=0 + } + }, + [3940]={ + ["next_chapter"]=3941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=583401, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=122514, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1410, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3941]={ + ["next_chapter"]=3942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=586568, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=123179, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1420, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3942]={ + ["next_chapter"]=3943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=589749, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=123847, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1430, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3943]={ + ["next_chapter"]=3944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=592944, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=124518, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3944]={ + ["next_chapter"]=3945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=596154, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=125192, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1450, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3945]={ + ["next_chapter"]=3946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=599379, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=125870, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1460, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3946]={ + ["next_chapter"]=3947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=602618, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=126550, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1470, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3947]={ + ["next_chapter"]=3948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=605872, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=127233, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3948]={ + ["next_chapter"]=3949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=609140, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=127919, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3949]={ + ["next_chapter"]=3950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=612423, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=128609, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1500, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=157582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=394, + ["unit"]=0 + } + }, + [3950]={ + ["next_chapter"]=3951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=615720, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=129301, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3951]={ + ["next_chapter"]=3952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=619032, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=129997, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3952]={ + ["next_chapter"]=3953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=622359, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=130695, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1560, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3953]={ + ["next_chapter"]=3954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=625701, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=131397, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1580, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3954]={ + ["next_chapter"]=3955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=629057, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=132102, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1600, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3955]={ + ["next_chapter"]=3956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=632428, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=132810, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1620, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3956]={ + ["next_chapter"]=3957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=635814, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=133521, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1640, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3957]={ + ["next_chapter"]=3958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=639215, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=134235, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1660, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3958]={ + ["next_chapter"]=3959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=642631, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=134953, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1680, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3959]={ + ["next_chapter"]=3960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=646062, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=135673, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1700, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=172782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=395, + ["unit"]=0 + } + }, + [3960]={ + ["next_chapter"]=3961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=649508, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=136397, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1720, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3961]={ + ["next_chapter"]=3962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=652969, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=137123, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1740, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3962]={ + ["next_chapter"]=3963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=656445, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=137853, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1760, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3963]={ + ["next_chapter"]=3964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=659935, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=138586, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1780, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3964]={ + ["next_chapter"]=3965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=663442, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=139323, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3965]={ + ["next_chapter"]=3966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=666963, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=140062, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3966]={ + ["next_chapter"]=3967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=670499, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=140805, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1840, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3967]={ + ["next_chapter"]=3968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=674051, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=141551, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1860, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3968]={ + ["next_chapter"]=3969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=677618, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=142300, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1880, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3969]={ + ["next_chapter"]=3970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=681200, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=143052, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1900, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=189982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=396, + ["unit"]=0 + } + }, + [3970]={ + ["next_chapter"]=3971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=684797, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=143807, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1920, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3971]={ + ["next_chapter"]=3972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=688410, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=144566, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1940, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3972]={ + ["next_chapter"]=3973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=692038, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=145328, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3973]={ + ["next_chapter"]=3974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=695682, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=146093, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=1980, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3974]={ + ["next_chapter"]=3975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=699341, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=146862, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3975]={ + ["next_chapter"]=3976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=703015, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=147633, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2020, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3976]={ + ["next_chapter"]=3977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=706705, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=148408, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2040, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3977]={ + ["next_chapter"]=3978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=710410, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=149186, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3978]={ + ["next_chapter"]=3979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=714132, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=149968, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2080, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3979]={ + ["next_chapter"]=3980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=717868, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=150752, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2100, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=209182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=397, + ["unit"]=0 + } + }, + [3980]={ + ["next_chapter"]=3981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=721620, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=151540, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2120, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3981]={ + ["next_chapter"]=3982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=725388, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=152332, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2140, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3982]={ + ["next_chapter"]=3983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=729172, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=153126, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2160, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3983]={ + ["next_chapter"]=3984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=732972, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=153924, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2180, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3984]={ + ["next_chapter"]=3985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=736787, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=154725, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2200, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3985]={ + ["next_chapter"]=3986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=740618, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=155530, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2220, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3986]={ + ["next_chapter"]=3987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=744464, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=156338, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2240, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3987]={ + ["next_chapter"]=3988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=748327, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=157149, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2260, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3988]={ + ["next_chapter"]=3989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=752206, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=157963, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2280, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3989]={ + ["next_chapter"]=3990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=756100, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=158781, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2300, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=230382, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=398, + ["unit"]=0 + } + }, + [3990]={ + ["next_chapter"]=3991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=760011, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=159602, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2320, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3991]={ + ["next_chapter"]=3992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=763937, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=160427, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2340, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3992]={ + ["next_chapter"]=3993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=767879, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=161255, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2360, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3993]={ + ["next_chapter"]=3994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=771838, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=162086, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2380, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3994]={ + ["next_chapter"]=3995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=775813, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=162921, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2400, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3995]={ + ["next_chapter"]=3996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=779803, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=163759, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2420, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3996]={ + ["next_chapter"]=3997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=783810, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=164600, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2440, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3997]={ + ["next_chapter"]=3998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=787833, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=165445, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2460, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3998]={ + ["next_chapter"]=3999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=791873, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=166293, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2480, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [3999]={ + ["next_chapter"]=4000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=795928, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=167145, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=253582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=399, + ["unit"]=0 + } + }, + [4000]={ + ["next_chapter"]=4001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=800000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2530, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4001]={ + ["next_chapter"]=4002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2560, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4002]={ + ["next_chapter"]=4003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800000, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2590, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4003]={ + ["next_chapter"]=4004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800001, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2620, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4004]={ + ["next_chapter"]=4005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800002, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176000, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2650, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4005]={ + ["next_chapter"]=4006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800004, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2680, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4006]={ + ["next_chapter"]=4007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800006, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176001, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2710, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4007]={ + ["next_chapter"]=4008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800010, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176002, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2740, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4008]={ + ["next_chapter"]=4009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800015, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176003, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2770, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4009]={ + ["next_chapter"]=4010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800022, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176005, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2800, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=278882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=400, + ["unit"]=0 + } + }, + [4010]={ + ["next_chapter"]=4011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=800030, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176007, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2830, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4011]={ + ["next_chapter"]=4012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800039, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176009, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2860, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4012]={ + ["next_chapter"]=4013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800051, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176011, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2890, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4013]={ + ["next_chapter"]=4014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800065, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176014, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2920, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4014]={ + ["next_chapter"]=4015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800081, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176018, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2950, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4015]={ + ["next_chapter"]=4016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800100, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176022, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=2980, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4016]={ + ["next_chapter"]=4017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800121, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176027, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3010, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4017]={ + ["next_chapter"]=4018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800145, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176032, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3040, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4018]={ + ["next_chapter"]=4019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800173, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176038, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3070, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4019]={ + ["next_chapter"]=4020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800203, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176045, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3100, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=307182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=401, + ["unit"]=0 + } + }, + [4020]={ + ["next_chapter"]=4021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=800237, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176052, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3130, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4021]={ + ["next_chapter"]=4022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800274, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176060, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4022]={ + ["next_chapter"]=4023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800315, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176069, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3190, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4023]={ + ["next_chapter"]=4024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800360, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176079, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3220, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4024]={ + ["next_chapter"]=4025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800409, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176090, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3250, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4025]={ + ["next_chapter"]=4026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800463, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176102, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3280, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4026]={ + ["next_chapter"]=4027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800520, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176114, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3310, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4027]={ + ["next_chapter"]=4028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800583, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176128, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3340, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4028]={ + ["next_chapter"]=4029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800650, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176143, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3370, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4029]={ + ["next_chapter"]=4030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800722, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176159, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3400, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=338482, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=402, + ["unit"]=0 + } + }, + [4030]={ + ["next_chapter"]=4031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=800799, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176176, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3430, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4031]={ + ["next_chapter"]=4032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800882, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176194, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3460, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4032]={ + ["next_chapter"]=4033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800970, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176213, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3490, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4033]={ + ["next_chapter"]=4034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801064, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176234, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3520, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4034]={ + ["next_chapter"]=4035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801163, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176256, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3560, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4035]={ + ["next_chapter"]=4036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801269, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176279, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3600, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4036]={ + ["next_chapter"]=4037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801381, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176304, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3640, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4037]={ + ["next_chapter"]=4038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801499, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176330, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3680, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4038]={ + ["next_chapter"]=4039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801624, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176357, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3720, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4039]={ + ["next_chapter"]=4040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801756, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176386, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3760, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=372782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=403, + ["unit"]=0 + } + }, + [4040]={ + ["next_chapter"]=4041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=801894, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176417, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3800, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4041]={ + ["next_chapter"]=4042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802040, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176449, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3840, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4042]={ + ["next_chapter"]=4043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802193, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176482, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3880, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4043]={ + ["next_chapter"]=4044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802353, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176518, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3920, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4044]={ + ["next_chapter"]=4045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802521, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176555, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=3960, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4045]={ + ["next_chapter"]=4046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802697, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176593, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4046]={ + ["next_chapter"]=4047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802881, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176634, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4040, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4047]={ + ["next_chapter"]=4048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803073, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176676, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4080, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4048]={ + ["next_chapter"]=4049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803274, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176720, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4120, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4049]={ + ["next_chapter"]=4050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803482, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176766, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4160, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=410782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=404, + ["unit"]=0 + } + }, + [4050]={ + ["next_chapter"]=4051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=803700, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176814, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4200, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4051]={ + ["next_chapter"]=4052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803926, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176864, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4240, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4052]={ + ["next_chapter"]=4053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804162, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176916, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4280, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4053]={ + ["next_chapter"]=4054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804407, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=176969, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4320, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4054]={ + ["next_chapter"]=4055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804661, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177025, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4360, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4055]={ + ["next_chapter"]=4056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804925, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177083, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4400, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4056]={ + ["next_chapter"]=4057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805198, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177144, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4440, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4057]={ + ["next_chapter"]=4058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805482, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177206, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4480, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4058]={ + ["next_chapter"]=4059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805775, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177271, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4520, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4059]={ + ["next_chapter"]=4060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=806079, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177337, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4570, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=452782, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=405, + ["unit"]=0 + } + }, + [4060]={ + ["next_chapter"]=4061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=806394, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177407, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4620, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4061]={ + ["next_chapter"]=4062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=806719, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177478, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4670, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4062]={ + ["next_chapter"]=4063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=807055, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177552, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4720, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4063]={ + ["next_chapter"]=4064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=807401, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177628, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4770, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4064]={ + ["next_chapter"]=4065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=807759, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177707, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4820, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4065]={ + ["next_chapter"]=4066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=808129, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177788, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4870, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4066]={ + ["next_chapter"]=4067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=808510, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177872, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4920, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4067]={ + ["next_chapter"]=4068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=808903, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=177959, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=4000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=4970, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4068]={ + ["next_chapter"]=4069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=809307, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178048, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5020, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4069]={ + ["next_chapter"]=4070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=809724, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178139, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5070, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=498982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=406, + ["unit"]=0 + } + }, + [4070]={ + ["next_chapter"]=4071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=810153, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178234, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=441889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5120, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4071]={ + ["next_chapter"]=4072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=810594, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178331, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5170, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4072]={ + ["next_chapter"]=4073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=811048, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178431, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5220, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4073]={ + ["next_chapter"]=4074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=811515, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178533, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5270, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4074]={ + ["next_chapter"]=4075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=811995, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178639, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5320, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4075]={ + ["next_chapter"]=4076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=812488, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178747, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5370, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4076]={ + ["next_chapter"]=4077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=812994, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178859, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5420, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4077]={ + ["next_chapter"]=4078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=813513, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=178973, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5470, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4078]={ + ["next_chapter"]=4079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=814047, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=179090, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5520, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4079]={ + ["next_chapter"]=4080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=814594, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=179211, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=486889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5580, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=550182, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=407, + ["unit"]=0 + } + }, + [4080]={ + ["next_chapter"]=4081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=815155, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=179334, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=491889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5640, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4081]={ + ["next_chapter"]=4082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=815731, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=179461, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=496889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5700, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4082]={ + ["next_chapter"]=4083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=816320, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=179591, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=501889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5760, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4083]={ + ["next_chapter"]=4084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=816925, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=179723, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5820, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4084]={ + ["next_chapter"]=4085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=817544, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=179860, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=511889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5880, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4085]={ + ["next_chapter"]=4086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=818178, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=179999, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=5940, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4086]={ + ["next_chapter"]=4087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=818827, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=180142, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=522889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4087]={ + ["next_chapter"]=4088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=819492, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=180288, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=528889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6060, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4088]={ + ["next_chapter"]=4089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=820172, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=180438, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6120, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4089]={ + ["next_chapter"]=4090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=820867, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=180591, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6180, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=606582, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=408, + ["unit"]=0 + } + }, + [4090]={ + ["next_chapter"]=4091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=821578, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=180747, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6240, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4091]={ + ["next_chapter"]=4092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=822306, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=180907, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6300, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4092]={ + ["next_chapter"]=4093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=823049, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=181071, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=558889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6360, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4093]={ + ["next_chapter"]=4094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=823809, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=181238, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6420, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4094]={ + ["next_chapter"]=4095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=824585, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=181409, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=570889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6480, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4095]={ + ["next_chapter"]=4096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=825378, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=181583, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=576889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6540, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4096]={ + ["next_chapter"]=4097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=826188, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=181761, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=582889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6610, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4097]={ + ["next_chapter"]=4098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=827015, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=181943, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=588889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6680, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4098]={ + ["next_chapter"]=4099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=827859, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=182129, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=594889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6750, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4099]={ + ["next_chapter"]=4100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=828721, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=182319, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=600889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6820, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=668982, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=409, + ["unit"]=0 + } + }, + [4100]={ + ["next_chapter"]=4101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=829600, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=182512, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=606889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6890, + ["unit"]=5 + }, + ["chapter_drop"]=51, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4101]={ + ["next_chapter"]=4102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=830497, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=182709, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=612889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=6960, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4102]={ + ["next_chapter"]=4103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=831412, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=182911, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=619889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7030, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4103]={ + ["next_chapter"]=4104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=832345, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=183116, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=626889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4104]={ + ["next_chapter"]=4105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=833296, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=183325, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=633889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7170, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4105]={ + ["next_chapter"]=4106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=834266, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=183538, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=640889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7240, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4106]={ + ["next_chapter"]=4107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=835254, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=183756, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=647889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7310, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4107]={ + ["next_chapter"]=4108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=836261, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=183977, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7380, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4108]={ + ["next_chapter"]=4109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=837287, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=184203, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=661889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7450, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4109]={ + ["next_chapter"]=4110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=838333, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=184433, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=668889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7520, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=737882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=410, + ["unit"]=0 + } + }, + [4110]={ + ["next_chapter"]=4111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=839398, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=184667, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=675889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4111]={ + ["next_chapter"]=4112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=840482, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=184906, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7680, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4112]={ + ["next_chapter"]=4113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=841586, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=185149, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=689889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7760, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4113]={ + ["next_chapter"]=4114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=842710, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=185396, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=696889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7840, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4114]={ + ["next_chapter"]=4115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=843854, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=185648, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=7000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=703889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=7920, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4115]={ + ["next_chapter"]=4116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=845018, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=185904, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=711889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4116]={ + ["next_chapter"]=4117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=846203, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=186165, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=719889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8080, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4117]={ + ["next_chapter"]=4118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=847408, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=186430, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=727889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8160, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4118]={ + ["next_chapter"]=4119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=848634, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=186699, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=735889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8240, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4119]={ + ["next_chapter"]=4120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=849881, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=186974, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=743889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8320, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=813882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=411, + ["unit"]=0 + } + }, + [4120]={ + ["next_chapter"]=4121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=851149, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=187253, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=751889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4121]={ + ["next_chapter"]=4122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=852438, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=187536, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=759889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8480, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4122]={ + ["next_chapter"]=4123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=853749, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=187825, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=767889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8560, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4123]={ + ["next_chapter"]=4124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=855082, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=188118, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=775889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8650, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4124]={ + ["next_chapter"]=4125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=856436, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=188416, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=783889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8740, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4125]={ + ["next_chapter"]=4126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=857813, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=188719, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=791889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8830, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4126]={ + ["next_chapter"]=4127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=859211, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=189026, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=8000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=8920, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4127]={ + ["next_chapter"]=4128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=860632, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=189339, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=808889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9010, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4128]={ + ["next_chapter"]=4129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=862076, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=189657, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=817889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4129]={ + ["next_chapter"]=4130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=863542, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=189979, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=826889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9190, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=897882, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=412, + ["unit"]=0 + } + }, + [4130]={ + ["next_chapter"]=4131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=865031, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=190307, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=835889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9280, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4131]={ + ["next_chapter"]=4132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=866543, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=190640, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=844889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9370, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4132]={ + ["next_chapter"]=4133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=868079, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=190977, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=853889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9460, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4133]={ + ["next_chapter"]=4134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=869638, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=191320, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=862889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9550, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4134]={ + ["next_chapter"]=4135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=871221, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=191669, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=871889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9650, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4135]={ + ["next_chapter"]=4136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=872827, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=192022, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=880889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9750, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4136]={ + ["next_chapter"]=4137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=874457, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=192381, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=889889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9850, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4137]={ + ["next_chapter"]=4138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=876112, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=192745, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=9000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=898889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=9950, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4138]={ + ["next_chapter"]=4139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=877791, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=193114, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=908889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10050, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4139]={ + ["next_chapter"]=4140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=879494, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=193489, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=918889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=990682, + ["unit"]=5 + }, + ["grasp_mastery_reward"]={ + ["value"]=413, + ["unit"]=0 + } + }, + [4140]={ + ["next_chapter"]=4141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=881222, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=193869, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=928889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4141]={ + ["next_chapter"]=4142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=882975, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=194255, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=938889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4142]={ + ["next_chapter"]=4143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=884753, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=194646, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=948889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4143]={ + ["next_chapter"]=4144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=886557, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=195042, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=958889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4144]={ + ["next_chapter"]=4145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=888385, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=195445, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=968889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4145]={ + ["next_chapter"]=4146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=890239, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=195853, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=978889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4146]={ + ["next_chapter"]=4147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=892119, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=196266, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=988889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=10900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4147]={ + ["next_chapter"]=4148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=894025, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=196686, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=998889, + ["unit"]=5 + }, + ["idle_gold"]={ + ["value"]=11000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4148]={ + ["next_chapter"]=4149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=895957, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=197111, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1009, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4149]={ + ["next_chapter"]=4150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=897915, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=197541, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1019, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1094, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=414, + ["unit"]=0 + } + }, + [4150]={ + ["next_chapter"]=4151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=899900, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=197978, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1029, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4151]={ + ["next_chapter"]=4152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=901911, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=198420, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1039, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4152]={ + ["next_chapter"]=4153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=903950, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=198869, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1049, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4153]={ + ["next_chapter"]=4154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=906015, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=199323, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1059, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4154]={ + ["next_chapter"]=4155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=908107, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=199784, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1069, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4155]={ + ["next_chapter"]=4156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=910227, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=200250, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1079, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4156]={ + ["next_chapter"]=4157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=912374, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=200722, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1089, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=11900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4157]={ + ["next_chapter"]=4158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=914549, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=201201, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1099, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4158]={ + ["next_chapter"]=4159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=916752, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=201685, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1109, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4159]={ + ["next_chapter"]=4160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=918982, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=202176, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1119, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1207, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=415, + ["unit"]=0 + } + }, + [4160]={ + ["next_chapter"]=4161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=921242, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=202673, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1129, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4161]={ + ["next_chapter"]=4162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=923529, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=203176, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1139, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4162]={ + ["next_chapter"]=4163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=925845, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=203686, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1149, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4163]={ + ["next_chapter"]=4164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=928190, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=204202, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1159, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4164]={ + ["next_chapter"]=4165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=930564, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=204724, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1169, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4165]={ + ["next_chapter"]=4166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=932967, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=205253, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1179, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4166]={ + ["next_chapter"]=4167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=935399, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=205788, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1189, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=12900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4167]={ + ["next_chapter"]=4168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=937861, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=206329, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1199, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4168]={ + ["next_chapter"]=4169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=940352, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=206878, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1209, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4169]={ + ["next_chapter"]=4170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=942874, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=207432, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1219, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=416, + ["unit"]=0 + } + }, + [4170]={ + ["next_chapter"]=4171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=945425, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=207993, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1229, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4171]={ + ["next_chapter"]=4172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=948006, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=208561, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1239, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4172]={ + ["next_chapter"]=4173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=950618, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=209136, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1249, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4173]={ + ["next_chapter"]=4174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=953260, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=209717, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1259, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4174]={ + ["next_chapter"]=4175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=955934, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=210305, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1269, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4175]={ + ["next_chapter"]=4176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=958638, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=210900, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1279, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4176]={ + ["next_chapter"]=4177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=961373, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=211502, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1289, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=13900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4177]={ + ["next_chapter"]=4178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=964139, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=212111, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1299, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4178]={ + ["next_chapter"]=4179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=966937, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=212726, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1309, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4179]={ + ["next_chapter"]=4180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=969766, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=213349, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1319, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=417, + ["unit"]=0 + } + }, + [4180]={ + ["next_chapter"]=4181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=972627, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=213978, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1329, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4181]={ + ["next_chapter"]=4182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=975520, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=214614, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1339, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4182]={ + ["next_chapter"]=4183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=978446, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=215258, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1349, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4183]={ + ["next_chapter"]=4184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=981403, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=215909, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1359, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4184]={ + ["next_chapter"]=4185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=984393, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=216567, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1369, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4185]={ + ["next_chapter"]=4186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=987416, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=217232, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1379, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4186]={ + ["next_chapter"]=4187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=990472, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=217904, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1389, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=14900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4187]={ + ["next_chapter"]=4188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=993560, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=218583, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1399, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=15000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4188]={ + ["next_chapter"]=4189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=996682, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=219270, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1409, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=15200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4189]={ + ["next_chapter"]=4190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=999838, + ["unit"]=6 + }, + ["hp_coefficient"]={ + ["value"]=219964, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1419, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=15400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1606, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=418, + ["unit"]=0 + } + }, + [4190]={ + ["next_chapter"]=4191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=220666, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1429, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=15600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4191]={ + ["next_chapter"]=4192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=221375, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1439, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=15800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4192]={ + ["next_chapter"]=4193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=222091, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1449, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=16000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4193]={ + ["next_chapter"]=4194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1013, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=222815, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1459, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=16200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4194]={ + ["next_chapter"]=4195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1016, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=223547, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1469, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=16400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4195]={ + ["next_chapter"]=4196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1019, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224286, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1479, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=16600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4196]={ + ["next_chapter"]=4197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1023, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225032, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1489, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=16800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4197]={ + ["next_chapter"]=4198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1026, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225787, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1499, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=17000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4198]={ + ["next_chapter"]=4199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1030, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226549, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1509, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=17200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4199]={ + ["next_chapter"]=4200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1033, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227318, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1519, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=17400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1762, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=419, + ["unit"]=0 + } + }, + [4200]={ + ["next_chapter"]=4201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1037, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228096, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1529, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=17600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4201]={ + ["next_chapter"]=4202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1040, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228881, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1539, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=17800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4202]={ + ["next_chapter"]=4203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1044, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229675, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1549, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=18000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4203]={ + ["next_chapter"]=4204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1048, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230476, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1559, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=18200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4204]={ + ["next_chapter"]=4205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1051, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=231285, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1569, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=18400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4205]={ + ["next_chapter"]=4206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1055, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=232102, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1579, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=18600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4206]={ + ["next_chapter"]=4207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1059, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=232927, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1589, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=18800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4207]={ + ["next_chapter"]=4208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1063, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=233760, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1599, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=19000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4208]={ + ["next_chapter"]=4209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1066, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=234601, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1609, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=19200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4209]={ + ["next_chapter"]=4210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1070, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=235450, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1619, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=19400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1938, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=420, + ["unit"]=0 + } + }, + [4210]={ + ["next_chapter"]=4211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=236308, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1629, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=19600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4211]={ + ["next_chapter"]=4212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1078, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=237173, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1639, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=19800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4212]={ + ["next_chapter"]=4213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1082, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=238047, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1659, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4213]={ + ["next_chapter"]=4214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1086, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=238929, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1679, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=20200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4214]={ + ["next_chapter"]=4215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1090, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=239820, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1699, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=20400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4215]={ + ["next_chapter"]=4216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1094, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=240719, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1719, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=20600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4216]={ + ["next_chapter"]=4217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1098, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=241626, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1739, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=20800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4217]={ + ["next_chapter"]=4218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1102, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=242542, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1759, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=21000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4218]={ + ["next_chapter"]=4219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1107, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=243466, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1779, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=21200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4219]={ + ["next_chapter"]=4220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1111, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=244399, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1799, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=21400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=421, + ["unit"]=0 + } + }, + [4220]={ + ["next_chapter"]=4221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=1115, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=245340, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1819, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=21600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4221]={ + ["next_chapter"]=4222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1119, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=246290, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1839, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=21800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4222]={ + ["next_chapter"]=4223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1124, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=247248, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1859, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=22000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4223]={ + ["next_chapter"]=4224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1128, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=248215, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1879, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=22200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4224]={ + ["next_chapter"]=4225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1133, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=249191, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1899, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=22400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4225]={ + ["next_chapter"]=4226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1137, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=250176, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1919, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=22600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4226]={ + ["next_chapter"]=4227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1142, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=251169, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1939, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=22800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4227]={ + ["next_chapter"]=4228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1146, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=252171, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1959, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=23000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4228]={ + ["next_chapter"]=4229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1151, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=253183, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1979, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=23200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4229]={ + ["next_chapter"]=4230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1155, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=254203, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1999, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=23400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2350, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=422, + ["unit"]=0 + } + }, + [4230]={ + ["next_chapter"]=4231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=1160, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=255232, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2019, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=23600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4231]={ + ["next_chapter"]=4232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1165, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=256269, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2039, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=23800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4232]={ + ["next_chapter"]=4233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1170, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=257316, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2059, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=24000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4233]={ + ["next_chapter"]=4234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1174, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=258372, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2079, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=24200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4234]={ + ["next_chapter"]=4235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1179, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=259438, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2099, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=24400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4235]={ + ["next_chapter"]=4236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1184, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=260512, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2119, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=24600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4236]={ + ["next_chapter"]=4237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1189, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=261595, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2139, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=24800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4237]={ + ["next_chapter"]=4238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1194, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=262688, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2159, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=25000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4238]={ + ["next_chapter"]=4239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1199, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=263790, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2179, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=25300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4239]={ + ["next_chapter"]=4240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1204, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=264901, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2199, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=25600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2586, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=423, + ["unit"]=0 + } + }, + [4240]={ + ["next_chapter"]=4241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1209, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=266022, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2219, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=25900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4241]={ + ["next_chapter"]=4242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1214, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=267152, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2239, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=26200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4242]={ + ["next_chapter"]=4243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1220, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=268291, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2259, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=26500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4243]={ + ["next_chapter"]=4244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1225, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=269440, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2279, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=26800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4244]={ + ["next_chapter"]=4245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1230, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=270598, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2299, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=27100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4245]={ + ["next_chapter"]=4246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1235, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=271766, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2319, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=27400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4246]={ + ["next_chapter"]=4247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1241, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=272944, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2339, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=27700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4247]={ + ["next_chapter"]=4248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1246, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=274131, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2359, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=28000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4248]={ + ["next_chapter"]=4249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1251, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=275327, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2379, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=28300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4249]={ + ["next_chapter"]=4250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1257, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=276534, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2399, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=28600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=424, + ["unit"]=0 + } + }, + [4250]={ + ["next_chapter"]=4251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1263, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=277750, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2419, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=28900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4251]={ + ["next_chapter"]=4252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1268, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=278976, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2439, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=29200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4252]={ + ["next_chapter"]=4253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1274, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=280212, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2459, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=29500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4253]={ + ["next_chapter"]=4254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1279, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=281457, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2479, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=29800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4254]={ + ["next_chapter"]=4255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1285, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=282713, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2509, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=30100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4255]={ + ["next_chapter"]=4256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1291, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=283978, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2539, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=30400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4256]={ + ["next_chapter"]=4257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1297, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=285253, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2569, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=30700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4257]={ + ["next_chapter"]=4258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1302, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=286539, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2599, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=31000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4258]={ + ["next_chapter"]=4259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1308, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=287834, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2629, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=31300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4259]={ + ["next_chapter"]=4260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1314, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=289139, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2659, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=31600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3134, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=425, + ["unit"]=0 + } + }, + [4260]={ + ["next_chapter"]=4261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1320, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=290455, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2689, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=31900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4261]={ + ["next_chapter"]=4262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1326, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=291781, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2719, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=32200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4262]={ + ["next_chapter"]=4263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1332, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=293117, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2749, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=32500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4263]={ + ["next_chapter"]=4264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1338, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=294463, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2779, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=32800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4264]={ + ["next_chapter"]=4265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1345, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=295819, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2809, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=33100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4265]={ + ["next_chapter"]=4266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1351, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=297186, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2839, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=33400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4266]={ + ["next_chapter"]=4267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1357, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=298563, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2869, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=33700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4267]={ + ["next_chapter"]=4268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1363, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=299950, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2899, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=34000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4268]={ + ["next_chapter"]=4269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1370, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=301348, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2929, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=34300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4269]={ + ["next_chapter"]=4270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1376, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=302757, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2959, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=34600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3453, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=426, + ["unit"]=0 + } + }, + [4270]={ + ["next_chapter"]=4271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1383, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=304176, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2989, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=34900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4271]={ + ["next_chapter"]=4272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1389, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=305605, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3019, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=35200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4272]={ + ["next_chapter"]=4273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1396, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=307045, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3049, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=35600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4273]={ + ["next_chapter"]=4274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1402, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=308496, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3079, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=36000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4274]={ + ["next_chapter"]=4275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1409, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=309957, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3109, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=36400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4275]={ + ["next_chapter"]=4276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1416, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=311429, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3139, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=36800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4276]={ + ["next_chapter"]=4277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1422, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=312912, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3169, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=37200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4277]={ + ["next_chapter"]=4278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1429, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=314406, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3199, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=37600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4278]={ + ["next_chapter"]=4279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1436, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=315910, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3229, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=38000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4279]={ + ["next_chapter"]=4280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1443, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=317425, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3259, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=38400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3802, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=427, + ["unit"]=0 + } + }, + [4280]={ + ["next_chapter"]=4281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1450, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=318951, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3289, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=38800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4281]={ + ["next_chapter"]=4282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1457, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=320489, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3319, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=39200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4282]={ + ["next_chapter"]=4283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1464, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=322037, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=30000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3349, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=39600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4283]={ + ["next_chapter"]=4284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1471, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=323596, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3389, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4284]={ + ["next_chapter"]=4285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1478, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=325166, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3429, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=40400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4285]={ + ["next_chapter"]=4286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1485, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=326747, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3469, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=40800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4286]={ + ["next_chapter"]=4287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1492, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=328339, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3509, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=41200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4287]={ + ["next_chapter"]=4288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=329943, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3549, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=41600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4288]={ + ["next_chapter"]=4289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1507, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=331558, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3589, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=42000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4289]={ + ["next_chapter"]=4290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1514, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=333184, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3629, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=42400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4190, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=428, + ["unit"]=0 + } + }, + [4290]={ + ["next_chapter"]=4291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1522, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=334821, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3669, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=42800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4291]={ + ["next_chapter"]=4292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1529, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=336470, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3709, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=43200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4292]={ + ["next_chapter"]=4293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1537, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=338130, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3749, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=43600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4293]={ + ["next_chapter"]=4294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1545, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=339801, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3789, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=44000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4294]={ + ["next_chapter"]=4295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1552, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=341484, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3829, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=44400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4295]={ + ["next_chapter"]=4296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1560, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=343179, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3869, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=44800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4296]={ + ["next_chapter"]=4297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1568, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=344884, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3909, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=45200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4297]={ + ["next_chapter"]=4298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1575, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=346602, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3949, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=45700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4298]={ + ["next_chapter"]=4299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1583, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=348331, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3989, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=46200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4299]={ + ["next_chapter"]=4300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1591, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=350072, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4029, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=46700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4618, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=429, + ["unit"]=0 + } + }, + [4300]={ + ["next_chapter"]=4301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=351824, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4069, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=47200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4301]={ + ["next_chapter"]=4302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1607, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=353588, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4109, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=47700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4302]={ + ["next_chapter"]=4303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1615, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=355364, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4149, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=48200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4303]={ + ["next_chapter"]=4304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1623, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=357152, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4189, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=48700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4304]={ + ["next_chapter"]=4305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1632, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=358951, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4229, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=49200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4305]={ + ["next_chapter"]=4306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1640, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=360763, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=40000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4269, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=49700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4306]={ + ["next_chapter"]=4307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1648, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=362586, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4319, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=50200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4307]={ + ["next_chapter"]=4308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1656, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=364421, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4369, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=50700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4308]={ + ["next_chapter"]=4309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1665, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=366268, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4419, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=51200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4309]={ + ["next_chapter"]=4310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1673, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=368128, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4469, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=51700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5090, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=430, + ["unit"]=0 + } + }, + [4310]={ + ["next_chapter"]=4311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1682, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=369999, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4519, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=52200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4311]={ + ["next_chapter"]=4312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1690, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=371882, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4569, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=52700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4312]={ + ["next_chapter"]=4313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1699, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=373778, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4619, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=53200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4313]={ + ["next_chapter"]=4314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1708, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=375686, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4669, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=53700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4314]={ + ["next_chapter"]=4315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1716, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=377606, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4719, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=54200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4315]={ + ["next_chapter"]=4316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1725, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=379538, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4769, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=54700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4316]={ + ["next_chapter"]=4317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1734, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=381483, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4819, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=55200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4317]={ + ["next_chapter"]=4318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1743, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=383440, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4869, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=55800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4318]={ + ["next_chapter"]=4319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1752, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=385409, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4919, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=56400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4319]={ + ["next_chapter"]=4320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1761, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=387391, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4969, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=57000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=431, + ["unit"]=0 + } + }, + [4320]={ + ["next_chapter"]=4321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1770, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=389385, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5019, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=57600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4321]={ + ["next_chapter"]=4322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1779, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=391392, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5069, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=58200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4322]={ + ["next_chapter"]=4323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1788, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=393411, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5119, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=58800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4323]={ + ["next_chapter"]=4324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1797, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=395443, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=50000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5169, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=59400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4324]={ + ["next_chapter"]=4325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1807, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=397488, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5229, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4325]={ + ["next_chapter"]=4326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1816, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=399545, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5289, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=60600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4326]={ + ["next_chapter"]=4327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1826, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=401615, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5349, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=61200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4327]={ + ["next_chapter"]=4328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1835, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=403697, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5409, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=61800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4328]={ + ["next_chapter"]=4329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1845, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=405793, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5469, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=62400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4329]={ + ["next_chapter"]=4330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1854, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=407901, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5529, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=63000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6188, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=432, + ["unit"]=0 + } + }, + [4330]={ + ["next_chapter"]=4331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=1864, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=410022, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5589, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=63600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4331]={ + ["next_chapter"]=4332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1873, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=412156, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5649, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=64200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4332]={ + ["next_chapter"]=4333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1883, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=414303, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5709, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=64800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4333]={ + ["next_chapter"]=4334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1893, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=416462, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5769, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=65400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4334]={ + ["next_chapter"]=4335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1903, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=418635, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5829, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=66100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4335]={ + ["next_chapter"]=4336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1913, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=420821, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5889, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=66800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4336]={ + ["next_chapter"]=4337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1923, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=423020, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5949, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=67500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4337]={ + ["next_chapter"]=4338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1933, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=425232, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6009, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=68200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4338]={ + ["next_chapter"]=4339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1943, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=427457, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6069, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=68900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4339]={ + ["next_chapter"]=4340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1953, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=429696, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=60000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6129, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=69600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6824, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=433, + ["unit"]=0 + } + }, + [4340]={ + ["next_chapter"]=4341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1963, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=431948, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6199, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=70300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4341]={ + ["next_chapter"]=4342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=434213, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6269, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=71000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4342]={ + ["next_chapter"]=4343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1984, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=436491, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6339, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=71700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4343]={ + ["next_chapter"]=4344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1994, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=438783, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6409, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=72400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4344]={ + ["next_chapter"]=4345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2005, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=441088, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6479, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=73100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4345]={ + ["next_chapter"]=4346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2015, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=443406, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6549, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=73800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4346]={ + ["next_chapter"]=4347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2026, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=445738, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6619, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=74500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4347]={ + ["next_chapter"]=4348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2037, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=448084, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6689, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=75200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4348]={ + ["next_chapter"]=4349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2047, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=450443, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6759, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=76000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4349]={ + ["next_chapter"]=4350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2058, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=452816, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6829, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=76800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7527, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=434, + ["unit"]=0 + } + }, + [4350]={ + ["next_chapter"]=4351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=2069, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=455202, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6899, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=77600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4351]={ + ["next_chapter"]=4352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2080, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=457602, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6969, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=78400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4352]={ + ["next_chapter"]=4353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2091, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=460016, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=70000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7039, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=79200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4353]={ + ["next_chapter"]=4354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2102, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=462443, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7119, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4354]={ + ["next_chapter"]=4355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2113, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=464884, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7199, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=80800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4355]={ + ["next_chapter"]=4356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2124, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=467340, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7279, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=81600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4356]={ + ["next_chapter"]=4357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2135, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=469809, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7359, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=82400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4357]={ + ["next_chapter"]=4358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2147, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=472291, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7439, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=83200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4358]={ + ["next_chapter"]=4359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2158, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=474788, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7519, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=84000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4359]={ + ["next_chapter"]=4360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2170, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=477299, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7599, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=84800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8303, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=435, + ["unit"]=0 + } + }, + [4360]={ + ["next_chapter"]=4361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2181, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=479824, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7679, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=85600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4361]={ + ["next_chapter"]=4362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2193, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=482363, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7759, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=86500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4362]={ + ["next_chapter"]=4363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2204, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=484916, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7839, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=87400, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4363]={ + ["next_chapter"]=4364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2216, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=487483, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7919, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=88300, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4364]={ + ["next_chapter"]=4365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2228, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=490064, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=80000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7999, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=89200, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4365]={ + ["next_chapter"]=4366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2239, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=492660, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8089, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=90100, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4366]={ + ["next_chapter"]=4367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2251, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=495270, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8179, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=91000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4367]={ + ["next_chapter"]=4368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2263, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=497894, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8269, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=91900, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4368]={ + ["next_chapter"]=4369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2275, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=500532, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8359, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=92800, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4369]={ + ["next_chapter"]=4370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2287, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=503185, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8449, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=93700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9159, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=436, + ["unit"]=0 + } + }, + [4370]={ + ["next_chapter"]=4371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=2299, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=505852, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8539, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=94600, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4371]={ + ["next_chapter"]=4372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2312, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=508534, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8629, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=95500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4372]={ + ["next_chapter"]=4373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2324, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=511230, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8719, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=96500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4373]={ + ["next_chapter"]=4374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2336, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=513941, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8809, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=97500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4374]={ + ["next_chapter"]=4375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2348, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=516666, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8899, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=98500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4375]={ + ["next_chapter"]=4376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2361, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=519406, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=90000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8989, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=99500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4376]={ + ["next_chapter"]=4377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2373, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=522161, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=100500, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9089, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=100500, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4377]={ + ["next_chapter"]=4378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2386, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=524930, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=101505, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9191, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=101505, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4378]={ + ["next_chapter"]=4379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2399, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=527714, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=102520, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9293, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=102520, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4379]={ + ["next_chapter"]=4380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2411, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=530513, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=103545, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9397, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=103545, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10105, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=437, + ["unit"]=0 + } + }, + [4380]={ + ["next_chapter"]=4381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=2424, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=533326, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=104581, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9502, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=104581, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4381]={ + ["next_chapter"]=4382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2437, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=536155, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=105627, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9607, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=105627, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4382]={ + ["next_chapter"]=4383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2450, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=538998, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=106683, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9714, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=106683, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4383]={ + ["next_chapter"]=4384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2463, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=541856, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=107750, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9822, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=107750, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4384]={ + ["next_chapter"]=4385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2476, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=544730, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=108827, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9930, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=108827, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4385]={ + ["next_chapter"]=4386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2489, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=547618, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=109915, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10040, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=109915, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4386]={ + ["next_chapter"]=4387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=550521, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=111015, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10151, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=111015, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4387]={ + ["next_chapter"]=4388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2516, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=553439, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=112125, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10263, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=112125, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4388]={ + ["next_chapter"]=4389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2529, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=556373, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=113246, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10377, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=113246, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4389]={ + ["next_chapter"]=4390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2542, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=559322, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=114378, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10491, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=114378, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11150, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=438, + ["unit"]=0 + } + }, + [4390]={ + ["next_chapter"]=4391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=2556, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=562285, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=115522, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10607, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=115522, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4391]={ + ["next_chapter"]=4392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2569, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=565264, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=116677, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10723, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=116677, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4392]={ + ["next_chapter"]=4393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2583, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=568259, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=117844, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10841, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=117844, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4393]={ + ["next_chapter"]=4394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2597, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=571268, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=119023, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10960, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=119023, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4394]={ + ["next_chapter"]=4395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2610, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=574293, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=120213, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11080, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=120213, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4395]={ + ["next_chapter"]=4396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2624, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=577334, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=121415, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11202, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=121415, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4396]={ + ["next_chapter"]=4397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2638, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=580390, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=122629, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11324, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=122629, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4397]={ + ["next_chapter"]=4398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2652, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=583461, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=123855, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11448, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=123855, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4398]={ + ["next_chapter"]=4399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2666, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=586548, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=125094, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11573, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=125094, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4399]={ + ["next_chapter"]=4400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2680, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=589650, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=126345, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11700, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=126345, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12306, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=439, + ["unit"]=0 + } + }, + [4400]={ + ["next_chapter"]=4401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=2694, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=592768, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=127608, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11827, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=127608, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4401]={ + ["next_chapter"]=4402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2709, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=595902, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=128884, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11956, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=128884, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4402]={ + ["next_chapter"]=4403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2723, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=599051, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=130173, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12086, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=130173, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4403]={ + ["next_chapter"]=4404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2737, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=602216, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=131475, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12218, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=131475, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4404]={ + ["next_chapter"]=4405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2752, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=605396, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=132790, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12351, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=132790, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4405]={ + ["next_chapter"]=4406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2766, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=608593, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=134118, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12485, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=134118, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4406]={ + ["next_chapter"]=4407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2781, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=611805, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=135459, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12620, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=135459, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4407]={ + ["next_chapter"]=4408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2796, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=615033, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=136813, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12757, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=136813, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4408]={ + ["next_chapter"]=4409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2810, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=618278, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=138182, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12895, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=138182, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4409]={ + ["next_chapter"]=4410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2825, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=621538, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=139563, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13035, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=139563, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=13582, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=440, + ["unit"]=0 + } + }, + [4410]={ + ["next_chapter"]=4411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=2840, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=624814, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=140959, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13176, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=140959, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4411]={ + ["next_chapter"]=4412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2855, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=628106, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=142369, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13318, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=142369, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4412]={ + ["next_chapter"]=4413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2870, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=631414, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=143792, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13462, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=143792, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4413]={ + ["next_chapter"]=4414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2885, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=634738, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=145230, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13607, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=145230, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4414]={ + ["next_chapter"]=4415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2900, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=638078, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=146682, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13754, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=146682, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4415]={ + ["next_chapter"]=4416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2916, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=641435, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=148149, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13902, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=148149, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4416]={ + ["next_chapter"]=4417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2931, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=644807, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=149631, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14052, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=149631, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4417]={ + ["next_chapter"]=4418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2946, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=648196, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=151127, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14203, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=151127, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4418]={ + ["next_chapter"]=4419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2962, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=651602, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=152638, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14355, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=152638, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4419]={ + ["next_chapter"]=4420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2977, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=655023, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=154165, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14510, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=154165, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=441, + ["unit"]=0 + } + }, + [4420]={ + ["next_chapter"]=4421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=2993, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=658461, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=155706, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14665, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=155706, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4421]={ + ["next_chapter"]=4422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3009, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=661915, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=157263, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14822, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=157263, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4422]={ + ["next_chapter"]=4423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=665386, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=158836, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14981, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=158836, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4423]={ + ["next_chapter"]=4424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3040, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=668874, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=160424, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15142, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=160424, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4424]={ + ["next_chapter"]=4425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3056, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=672377, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=162029, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15304, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=162029, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4425]={ + ["next_chapter"]=4426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3072, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=675898, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=163649, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15467, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=163649, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4426]={ + ["next_chapter"]=4427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=679435, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=165285, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15633, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=165285, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4427]={ + ["next_chapter"]=4428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3104, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=682988, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=166938, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15800, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=166938, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4428]={ + ["next_chapter"]=4429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3121, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=686559, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=168608, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15968, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=168608, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4429]={ + ["next_chapter"]=4430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3137, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=690146, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=170294, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16139, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=170294, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=16548, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=442, + ["unit"]=0 + } + }, + [4430]={ + ["next_chapter"]=4431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=3153, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=693750, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=171997, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16311, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=171997, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4431]={ + ["next_chapter"]=4432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3170, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=697370, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=173717, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16484, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=173717, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4432]={ + ["next_chapter"]=4433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3186, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=701008, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=175454, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16660, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=175454, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4433]={ + ["next_chapter"]=4434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3203, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=704662, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=177208, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16837, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=177208, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4434]={ + ["next_chapter"]=4435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3220, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=708333, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=178981, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17016, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=178981, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4435]={ + ["next_chapter"]=4436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3236, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=712021, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=180770, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17197, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=180770, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4436]={ + ["next_chapter"]=4437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3253, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=715727, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=182578, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17379, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=182578, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4437]={ + ["next_chapter"]=4438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3270, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=719449, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=184404, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17564, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=184404, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4438]={ + ["next_chapter"]=4439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3287, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=723188, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=186248, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17750, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=186248, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4439]={ + ["next_chapter"]=4440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3304, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=726945, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=188110, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17938, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=188110, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=18268, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=443, + ["unit"]=0 + } + }, + [4440]={ + ["next_chapter"]=4441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=3321, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=730718, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=189991, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18128, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=189991, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4441]={ + ["next_chapter"]=4442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3339, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=734509, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=191891, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18320, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=191891, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4442]={ + ["next_chapter"]=4443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3356, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=738317, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=193810, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18514, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=193810, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4443]={ + ["next_chapter"]=4444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3373, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=742142, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=195748, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18709, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=195748, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4444]={ + ["next_chapter"]=4445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3391, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=745985, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=197706, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18907, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=197706, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4445]={ + ["next_chapter"]=4446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3408, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=749845, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=199683, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19107, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=199683, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4446]={ + ["next_chapter"]=4447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3426, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=753722, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=201680, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19309, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=201680, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4447]={ + ["next_chapter"]=4448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3444, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=757617, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=203697, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19512, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=203697, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4448]={ + ["next_chapter"]=4449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3461, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=761529, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=205733, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19718, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=205733, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4449]={ + ["next_chapter"]=4450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3479, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=765459, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=207791, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19926, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=207791, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=20168, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=444, + ["unit"]=0 + } + }, + [4450]={ + ["next_chapter"]=4451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=3497, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=769406, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=209869, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20136, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=209869, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4451]={ + ["next_chapter"]=4452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3515, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=773371, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=211967, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20348, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=211967, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4452]={ + ["next_chapter"]=4453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3533, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=777353, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=214087, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20562, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=214087, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4453]={ + ["next_chapter"]=4454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3552, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=781353, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=216228, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20778, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=216228, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4454]={ + ["next_chapter"]=4455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3570, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=785371, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=218390, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20996, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=218390, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4455]={ + ["next_chapter"]=4456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3588, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=789407, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=220574, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21217, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=220574, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4456]={ + ["next_chapter"]=4457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3607, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=793460, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=222780, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21440, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=222780, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4457]={ + ["next_chapter"]=4458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3625, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=797531, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=225008, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21665, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=225008, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4458]={ + ["next_chapter"]=4459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3644, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=801620, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=227258, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21892, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=227258, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4459]={ + ["next_chapter"]=4460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3662, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=805727, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=229530, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22121, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=229530, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=22267, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=445, + ["unit"]=0 + } + }, + [4460]={ + ["next_chapter"]=4461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=3681, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=809852, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=231826, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22353, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=231826, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4461]={ + ["next_chapter"]=4462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3700, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=813995, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=234144, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22587, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=234144, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4462]={ + ["next_chapter"]=4463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3719, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=818156, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=236485, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22824, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=236485, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4463]={ + ["next_chapter"]=4464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3738, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=822335, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=238850, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23063, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=238850, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4464]={ + ["next_chapter"]=4465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3757, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=826532, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=241239, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23304, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=241239, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4465]={ + ["next_chapter"]=4466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3776, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=830747, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=243651, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23548, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=243651, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4466]={ + ["next_chapter"]=4467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3795, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=834980, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=246088, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23794, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=246088, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4467]={ + ["next_chapter"]=4468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3815, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=839231, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=248548, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24042, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=248548, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4468]={ + ["next_chapter"]=4469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3834, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=843501, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=251034, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24293, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=251034, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4469]={ + ["next_chapter"]=4470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3854, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=847789, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=253544, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24547, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=253544, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=24585, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=446, + ["unit"]=0 + } + }, + [4470]={ + ["next_chapter"]=4471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=3873, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=852095, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=256080, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24803, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=256080, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4471]={ + ["next_chapter"]=4472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3893, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=856420, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=258641, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25062, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=258641, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4472]={ + ["next_chapter"]=4473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3913, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=860763, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=261227, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25323, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=261227, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4473]={ + ["next_chapter"]=4474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3932, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=865125, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=263839, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25587, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=263839, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4474]={ + ["next_chapter"]=4475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3952, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=869505, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=266478, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25853, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=266478, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4475]={ + ["next_chapter"]=4476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3972, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=873903, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=269142, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26122, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=269142, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4476]={ + ["next_chapter"]=4477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3992, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=878320, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=271834, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26394, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=271834, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4477]={ + ["next_chapter"]=4478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4013, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=882756, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=274552, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26669, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=274552, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4478]={ + ["next_chapter"]=4479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4033, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=887210, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=277298, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26946, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=277298, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4479]={ + ["next_chapter"]=4480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4053, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=891683, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=280071, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27226, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=280071, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=27146, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=447, + ["unit"]=0 + } + }, + [4480]={ + ["next_chapter"]=4481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=4074, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=896175, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=282871, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27509, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=282871, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4481]={ + ["next_chapter"]=4482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4094, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=900686, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=285700, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27795, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=285700, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4482]={ + ["next_chapter"]=4483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4115, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=905215, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=288557, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28083, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=288557, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4483]={ + ["next_chapter"]=4484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4135, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=909763, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=291443, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28375, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=291443, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4484]={ + ["next_chapter"]=4485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4156, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=914330, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=294357, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28669, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=294357, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4485]={ + ["next_chapter"]=4486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4177, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=918916, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=297301, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28966, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=297301, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4486]={ + ["next_chapter"]=4487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4198, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=923521, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=300274, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29267, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=300274, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4487]={ + ["next_chapter"]=4488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4219, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=928144, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=303276, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29570, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=303276, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4488]={ + ["next_chapter"]=4489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4240, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=932787, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=306309, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29876, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=306309, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4489]={ + ["next_chapter"]=4490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4261, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=937449, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=309372, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30185, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=309372, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=29975, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=448, + ["unit"]=0 + } + }, + [4490]={ + ["next_chapter"]=4491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=4282, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=942130, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=312466, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30498, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=312466, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4491]={ + ["next_chapter"]=4492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4304, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=946830, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=315591, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30814, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=315591, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4492]={ + ["next_chapter"]=4493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4325, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=951550, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=318746, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31132, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=318746, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4493]={ + ["next_chapter"]=4494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4347, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=956288, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=321934, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31454, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=321934, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4494]={ + ["next_chapter"]=4495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4368, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=961046, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=325153, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31779, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=325153, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4495]={ + ["next_chapter"]=4496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4390, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=965823, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=328405, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32108, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=328405, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4496]={ + ["next_chapter"]=4497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4412, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=970620, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=331689, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32439, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=331689, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4497]={ + ["next_chapter"]=4498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4434, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=975436, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=335006, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32774, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=335006, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4498]={ + ["next_chapter"]=4499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4456, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=980271, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=338356, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33113, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=338356, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4499]={ + ["next_chapter"]=4500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4478, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=985126, + ["unit"]=7 + }, + ["gold_reward"]={ + ["value"]=341739, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33455, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=341739, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=33099, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=449, + ["unit"]=0 + } + }, + [4500]={ + ["next_chapter"]=4501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=345157, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33800, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=345157, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4501]={ + ["next_chapter"]=4502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=348608, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34148, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=348608, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4502]={ + ["next_chapter"]=4503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=352094, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34500, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=352094, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4503]={ + ["next_chapter"]=4504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=355615, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34856, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=355615, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4504]={ + ["next_chapter"]=4505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=359172, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35215, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=359172, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4505]={ + ["next_chapter"]=4506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=362763, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35578, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=362763, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4506]={ + ["next_chapter"]=4507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=366391, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35944, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=366391, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4507]={ + ["next_chapter"]=4508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=370055, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36314, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=370055, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4508]={ + ["next_chapter"]=4509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=373755, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36688, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=373755, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4509]={ + ["next_chapter"]=4510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=377493, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37066, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=377493, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=36551, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=450, + ["unit"]=0 + } + }, + [4510]={ + ["next_chapter"]=4511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=381268, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37447, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=381268, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4511]={ + ["next_chapter"]=4512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=385080, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37832, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=385080, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4512]={ + ["next_chapter"]=4513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=388931, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38221, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=388931, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4513]={ + ["next_chapter"]=4514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=392821, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38614, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=392821, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4514]={ + ["next_chapter"]=4515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=396749, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39011, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=396749, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4515]={ + ["next_chapter"]=4516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=400716, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39411, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=400716, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4516]={ + ["next_chapter"]=4517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=404723, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39816, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=404723, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4517]={ + ["next_chapter"]=4518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=408771, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40225, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=408771, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4518]={ + ["next_chapter"]=4519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=412858, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40638, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=412858, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4519]={ + ["next_chapter"]=4520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=416987, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41055, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=416987, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=40364, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=451, + ["unit"]=0 + } + }, + [4520]={ + ["next_chapter"]=4521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=4501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=421157, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41476, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=421157, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4521]={ + ["next_chapter"]=4522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=425368, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41901, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=425368, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4522]={ + ["next_chapter"]=4523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=429622, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42331, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=429622, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4523]={ + ["next_chapter"]=4524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=433918, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42765, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=433918, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4524]={ + ["next_chapter"]=4525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=438258, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43203, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=438258, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4525]={ + ["next_chapter"]=4526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=442640, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43646, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=442640, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4526]={ + ["next_chapter"]=4527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=447067, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44093, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=447067, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4527]={ + ["next_chapter"]=4528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=451537, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44544, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=451537, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4528]={ + ["next_chapter"]=4529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=456053, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45000, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=456053, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4529]={ + ["next_chapter"]=4530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4503, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=460613, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45461, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=460613, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=44575, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=452, + ["unit"]=0 + } + }, + [4530]={ + ["next_chapter"]=4531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=4503, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=465219, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45926, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=465219, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4531]={ + ["next_chapter"]=4532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4503, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=469871, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46396, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=469871, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4532]={ + ["next_chapter"]=4533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4504, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=474570, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46870, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=474570, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4533]={ + ["next_chapter"]=4534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4504, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=479316, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47350, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=479316, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4534]={ + ["next_chapter"]=4535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4504, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=484109, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47834, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=484109, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4535]={ + ["next_chapter"]=4536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4505, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=488950, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48323, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=488950, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4536]={ + ["next_chapter"]=4537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4505, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=493840, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48817, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=493840, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4537]={ + ["next_chapter"]=4538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4505, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=498778, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49315, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=498778, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4538]={ + ["next_chapter"]=4539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=503766, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49819, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=503766, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4539]={ + ["next_chapter"]=4540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=508803, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50328, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=508803, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=49227, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=453, + ["unit"]=0 + } + }, + [4540]={ + ["next_chapter"]=4541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=4507, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=513891, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50842, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=513891, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4541]={ + ["next_chapter"]=4542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4507, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=519030, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51361, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=519030, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4542]={ + ["next_chapter"]=4543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4508, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=524221, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51885, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=524221, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4543]={ + ["next_chapter"]=4544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4509, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=529463, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52415, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=529463, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4544]={ + ["next_chapter"]=4545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4509, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=534757, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52949, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=534757, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4545]={ + ["next_chapter"]=4546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4510, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=540105, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53489, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=540105, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4546]={ + ["next_chapter"]=4547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4511, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=545506, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54035, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=545506, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4547]={ + ["next_chapter"]=4548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4511, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=550961, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54586, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=550961, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4548]={ + ["next_chapter"]=4549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4512, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=556471, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55142, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=556471, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4549]={ + ["next_chapter"]=4550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4513, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=562035, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55704, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=562035, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=54366, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=454, + ["unit"]=0 + } + }, + [4550]={ + ["next_chapter"]=4551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=4514, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=567656, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56272, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=567656, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4551]={ + ["next_chapter"]=4552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4514, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=573332, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56845, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=573332, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4552]={ + ["next_chapter"]=4553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4515, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=579066, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57425, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=579066, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4553]={ + ["next_chapter"]=4554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4516, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1039, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=584856, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58009, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=584856, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4554]={ + ["next_chapter"]=4555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4517, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1039, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=590705, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58600, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=590705, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4555]={ + ["next_chapter"]=4556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4518, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1039, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=596612, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59197, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=596612, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4556]={ + ["next_chapter"]=4557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4519, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1039, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=602578, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59799, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=602578, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4557]={ + ["next_chapter"]=4558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4520, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1040, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=608604, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60408, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=608604, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4558]={ + ["next_chapter"]=4559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4521, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1040, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=614690, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61023, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=614690, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4559]={ + ["next_chapter"]=4560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4522, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1040, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=620837, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61643, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=620837, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=60043, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=455, + ["unit"]=0 + } + }, + [4560]={ + ["next_chapter"]=4561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=4523, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1040, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=627045, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62270, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=627045, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4561]={ + ["next_chapter"]=4562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4525, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=633316, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62904, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=633316, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4562]={ + ["next_chapter"]=4563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4526, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=639649, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63543, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=639649, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4563]={ + ["next_chapter"]=4564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4527, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=646045, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64189, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=646045, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4564]={ + ["next_chapter"]=4565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4528, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1042, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=652506, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64842, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=652506, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4565]={ + ["next_chapter"]=4566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4530, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1042, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=659031, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65501, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=659031, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4566]={ + ["next_chapter"]=4567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4531, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1042, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=665621, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66167, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=665621, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4567]={ + ["next_chapter"]=4568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4532, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1042, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=672277, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66839, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=672277, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4568]={ + ["next_chapter"]=4569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4534, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1043, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=679000, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67518, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=679000, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4569]={ + ["next_chapter"]=4570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4535, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1043, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=685790, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68204, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=685790, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=66313, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=456, + ["unit"]=0 + } + }, + [4570]={ + ["next_chapter"]=4571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=4537, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1044, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=692648, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68896, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=692648, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4571]={ + ["next_chapter"]=4572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4539, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1044, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=699574, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69596, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=699574, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4572]={ + ["next_chapter"]=4573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4540, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1044, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=706570, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70302, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=706570, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4573]={ + ["next_chapter"]=4574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4542, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1045, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=713636, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71016, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=713636, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4574]={ + ["next_chapter"]=4575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4544, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1045, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=720772, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71737, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=720772, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4575]={ + ["next_chapter"]=4576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4546, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1045, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=727980, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72465, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=727980, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4576]={ + ["next_chapter"]=4577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4547, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1046, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=735260, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73200, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=735260, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4577]={ + ["next_chapter"]=4578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4549, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1046, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=742612, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73943, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=742612, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4578]={ + ["next_chapter"]=4579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4551, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1047, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=750039, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74693, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=750039, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4579]={ + ["next_chapter"]=4580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4553, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1047, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=757539, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75450, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=757539, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=73240, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=457, + ["unit"]=0 + } + }, + [4580]={ + ["next_chapter"]=4581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=4555, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1048, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=765114, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76215, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=765114, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4581]={ + ["next_chapter"]=4582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4557, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1048, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=772765, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76988, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=772765, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4582]={ + ["next_chapter"]=4583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4560, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1049, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=780493, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77769, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=780493, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4583]={ + ["next_chapter"]=4584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4562, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1049, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=788298, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78557, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=788298, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4584]={ + ["next_chapter"]=4585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4564, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=796181, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79353, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=796181, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4585]={ + ["next_chapter"]=4586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4566, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=804143, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80157, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=804143, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4586]={ + ["next_chapter"]=4587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4569, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=812184, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80969, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=812184, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4587]={ + ["next_chapter"]=4588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4571, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=820306, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81790, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=820306, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4588]={ + ["next_chapter"]=4589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4574, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=828509, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82618, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=828509, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4589]={ + ["next_chapter"]=4590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4576, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=836794, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83455, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=836794, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=80891, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=458, + ["unit"]=0 + } + }, + [4590]={ + ["next_chapter"]=4591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=4579, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=845162, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84300, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=845162, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4591]={ + ["next_chapter"]=4592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4581, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=853614, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85154, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=853614, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4592]={ + ["next_chapter"]=4593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4584, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=862150, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86016, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=862150, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4593]={ + ["next_chapter"]=4594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4587, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1055, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=870771, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86887, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=870771, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4594]={ + ["next_chapter"]=4595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4590, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1056, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=879479, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87766, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=879479, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4595]={ + ["next_chapter"]=4596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4593, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1056, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=888274, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88655, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=888274, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4596]={ + ["next_chapter"]=4597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4596, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1057, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=897157, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89552, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=897157, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4597]={ + ["next_chapter"]=4598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4599, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1058, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=906128, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90458, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=906128, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4598]={ + ["next_chapter"]=4599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4602, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1058, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=915190, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91373, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=915190, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4599]={ + ["next_chapter"]=4600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4605, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1059, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=924341, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92297, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=924341, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=89343, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=459, + ["unit"]=0 + } + }, + [4600]={ + ["next_chapter"]=4601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=4608, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1060, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=933585, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93231, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=933585, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4601]={ + ["next_chapter"]=4602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4611, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1061, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=942921, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94174, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=942921, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4602]={ + ["next_chapter"]=4603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4615, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1061, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=952350, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95126, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=952350, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4603]={ + ["next_chapter"]=4604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4618, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1062, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=961873, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96088, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=961873, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4604]={ + ["next_chapter"]=4605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4621, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1063, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=971492, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97060, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=971492, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4605]={ + ["next_chapter"]=4606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4625, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=981207, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98041, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=981207, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4606]={ + ["next_chapter"]=4607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4629, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1065, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=991019, + ["unit"]=5 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99032, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=991019, + ["unit"]=5 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4607]={ + ["next_chapter"]=4608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4632, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1065, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1001, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100033, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1001, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4608]={ + ["next_chapter"]=4609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4636, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1066, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1011, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101044, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1011, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4609]={ + ["next_chapter"]=4610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4640, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1021, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102065, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1021, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=98678, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=460, + ["unit"]=0 + } + }, + [4610]={ + ["next_chapter"]=4611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=4644, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1068, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1031, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103096, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1031, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4611]={ + ["next_chapter"]=4612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4648, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1069, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1042, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104138, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1042, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4612]={ + ["next_chapter"]=4613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4652, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1070, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1052, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105190, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1052, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4613]={ + ["next_chapter"]=4614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4656, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1071, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1063, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106252, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1063, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4614]={ + ["next_chapter"]=4615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4660, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1072, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1073, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107325, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1073, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4615]={ + ["next_chapter"]=4616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4664, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1073, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1084, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108409, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1084, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4616]={ + ["next_chapter"]=4617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4669, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1074, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1095, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109504, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1095, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4617]={ + ["next_chapter"]=4618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4673, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1075, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1106, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110609, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1106, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4618]={ + ["next_chapter"]=4619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4677, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1076, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1117, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111726, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1117, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4619]={ + ["next_chapter"]=4620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4682, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1077, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1128, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112854, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1128, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=108991, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=461, + ["unit"]=0 + } + }, + [4620]={ + ["next_chapter"]=4621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=4687, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1078, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1139, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113993, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1139, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4621]={ + ["next_chapter"]=4622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4691, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1079, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1151, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115144, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1151, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4622]={ + ["next_chapter"]=4623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4696, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1080, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1162, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116306, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1162, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4623]={ + ["next_chapter"]=4624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4701, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1081, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1174, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117479, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1174, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4624]={ + ["next_chapter"]=4625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4706, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1082, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1185, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118665, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1185, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4625]={ + ["next_chapter"]=4626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4711, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1084, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1197, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119862, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1197, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4626]={ + ["next_chapter"]=4627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4716, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1085, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1209, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121071, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1209, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4627]={ + ["next_chapter"]=4628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4721, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1086, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1221, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122293, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1221, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4628]={ + ["next_chapter"]=4629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4726, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1087, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1234, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123526, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1234, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4629]={ + ["next_chapter"]=4630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4732, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1088, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1246, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124772, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1246, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=120383, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=462, + ["unit"]=0 + } + }, + [4630]={ + ["next_chapter"]=4631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=4737, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1090, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1258, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126030, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1258, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4631]={ + ["next_chapter"]=4632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4743, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1091, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1271, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127301, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1271, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4632]={ + ["next_chapter"]=4633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4748, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1092, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1284, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128585, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1284, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4633]={ + ["next_chapter"]=4634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4754, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1093, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1296, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129881, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1296, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4634]={ + ["next_chapter"]=4635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4760, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1095, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1309, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131191, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1309, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4635]={ + ["next_chapter"]=4636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4766, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1096, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1323, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132513, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1323, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4636]={ + ["next_chapter"]=4637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4772, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1097, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1336, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133849, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1336, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4637]={ + ["next_chapter"]=4638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4778, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1099, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1349, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135198, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1349, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4638]={ + ["next_chapter"]=4639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4784, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1100, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1363, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136561, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1363, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4639]={ + ["next_chapter"]=4640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4790, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1102, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1376, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137937, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1376, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=132966, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=463, + ["unit"]=0 + } + }, + [4640]={ + ["next_chapter"]=4641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=4796, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1103, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1390, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139327, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4641]={ + ["next_chapter"]=4642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4803, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1105, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1404, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140731, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1404, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4642]={ + ["next_chapter"]=4643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4809, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1106, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1418, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142149, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1418, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4643]={ + ["next_chapter"]=4644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4816, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1108, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1432, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143581, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1432, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4644]={ + ["next_chapter"]=4645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4822, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1109, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1446, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145027, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1446, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4645]={ + ["next_chapter"]=4646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4829, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1111, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1461, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146488, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1461, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4646]={ + ["next_chapter"]=4647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4836, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1112, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1475, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147964, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1475, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4647]={ + ["next_chapter"]=4648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4843, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1114, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1490, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149454, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4648]={ + ["next_chapter"]=4649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4850, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1116, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1505, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150959, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1505, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4649]={ + ["next_chapter"]=4650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4857, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1117, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1520, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152479, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=146866, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=464, + ["unit"]=0 + } + }, + [4650]={ + ["next_chapter"]=4651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=4865, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1119, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1535, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154015, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1535, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4651]={ + ["next_chapter"]=4652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4872, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1121, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1551, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155565, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1551, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4652]={ + ["next_chapter"]=4653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4879, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1122, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1566, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157132, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1566, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4653]={ + ["next_chapter"]=4654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4887, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1124, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1582, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158714, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1582, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4654]={ + ["next_chapter"]=4655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4894, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1126, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1598, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160311, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1598, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4655]={ + ["next_chapter"]=4656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4902, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1128, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1614, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161925, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1614, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4656]={ + ["next_chapter"]=4657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4910, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1129, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1630, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163555, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1630, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4657]={ + ["next_chapter"]=4658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4918, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1131, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1646, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165201, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1646, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4658]={ + ["next_chapter"]=4659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4926, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1133, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1663, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166864, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1663, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4659]={ + ["next_chapter"]=4660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4934, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1135, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1679, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168543, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1679, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=162220, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=465, + ["unit"]=0 + } + }, + [4660]={ + ["next_chapter"]=4661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=4942, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1696, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170239, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1696, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4661]={ + ["next_chapter"]=4662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4951, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1139, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1713, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171952, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1713, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4662]={ + ["next_chapter"]=4663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4959, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1141, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1730, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173682, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1730, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4663]={ + ["next_chapter"]=4664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4968, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1143, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1747, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175430, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1747, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4664]={ + ["next_chapter"]=4665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4976, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1145, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1765, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177194, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1765, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4665]={ + ["next_chapter"]=4666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4985, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1147, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1783, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178977, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1783, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4666]={ + ["next_chapter"]=4667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4994, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1149, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1800, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180777, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4667]={ + ["next_chapter"]=4668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1151, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1818, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182596, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1818, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4668]={ + ["next_chapter"]=4669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1153, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1837, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184432, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1837, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4669]={ + ["next_chapter"]=4670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5021, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1855, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186287, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1855, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=179180, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=466, + ["unit"]=0 + } + }, + [4670]={ + ["next_chapter"]=4671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=5031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1157, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1873, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188161, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1873, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4671]={ + ["next_chapter"]=4672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5040, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1159, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1892, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190053, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1892, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4672]={ + ["next_chapter"]=4673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5050, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1161, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1911, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191964, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1911, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4673]={ + ["next_chapter"]=4674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5059, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1164, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1930, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193894, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1930, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4674]={ + ["next_chapter"]=4675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5069, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1166, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1950, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195844, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1950, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4675]={ + ["next_chapter"]=4676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5079, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1168, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1969, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197813, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1969, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4676]={ + ["next_chapter"]=4677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5089, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1170, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1989, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199802, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=1989, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4677]={ + ["next_chapter"]=4678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5099, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1173, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2009, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201810, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2009, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4678]={ + ["next_chapter"]=4679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5109, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2029, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203839, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2029, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4679]={ + ["next_chapter"]=4680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5119, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1177, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2049, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205888, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2049, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=197915, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=467, + ["unit"]=0 + } + }, + [4680]={ + ["next_chapter"]=4681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=5130, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1180, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2069, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207958, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2069, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4681]={ + ["next_chapter"]=4682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5140, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1182, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2090, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210048, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2090, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4682]={ + ["next_chapter"]=4683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5151, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1185, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2111, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212159, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2111, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4683]={ + ["next_chapter"]=4684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5162, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1187, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2132, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214291, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2132, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4684]={ + ["next_chapter"]=4685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5173, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2154, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216445, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2154, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4685]={ + ["next_chapter"]=4686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5184, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1192, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2175, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218620, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2175, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4686]={ + ["next_chapter"]=4687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5195, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1195, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2197, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220816, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2197, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4687]={ + ["next_chapter"]=4688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5206, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1197, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2219, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223035, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2219, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4688]={ + ["next_chapter"]=4689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5218, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1200, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2241, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225276, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2241, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4689]={ + ["next_chapter"]=4690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5229, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1203, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2263, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227540, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2263, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=218610, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=468, + ["unit"]=0 + } + }, + [4690]={ + ["next_chapter"]=4691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=5241, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1205, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2286, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229826, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2286, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4691]={ + ["next_chapter"]=4692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5253, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1208, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2309, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232134, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2309, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4692]={ + ["next_chapter"]=4693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5264, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1211, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2332, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234466, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2332, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4693]={ + ["next_chapter"]=4694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1214, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2355, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236822, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2355, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4694]={ + ["next_chapter"]=4695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5289, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1216, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2379, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239200, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2379, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4695]={ + ["next_chapter"]=4696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5301, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1219, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2403, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241603, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2403, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4696]={ + ["next_chapter"]=4697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5313, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1222, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2427, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244030, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2427, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4697]={ + ["next_chapter"]=4698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5326, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1225, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2451, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246481, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2451, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4698]={ + ["next_chapter"]=4699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5338, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1228, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2475, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248956, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2475, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4699]={ + ["next_chapter"]=4700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5351, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1231, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2500, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251456, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=241470, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=469, + ["unit"]=0 + } + }, + [4700]={ + ["next_chapter"]=4701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=5364, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1234, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2525, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253981, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2525, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4701]={ + ["next_chapter"]=4702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5377, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1237, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2550, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256532, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2550, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4702]={ + ["next_chapter"]=4703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5390, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1240, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2576, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259108, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2576, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4703]={ + ["next_chapter"]=4704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5403, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1243, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2602, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261709, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2602, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4704]={ + ["next_chapter"]=4705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5417, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1246, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2628, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264337, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2628, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4705]={ + ["next_chapter"]=4706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5430, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1249, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2654, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266991, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2654, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4706]={ + ["next_chapter"]=4707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5444, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1252, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2681, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269672, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2681, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4707]={ + ["next_chapter"]=4708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5458, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1255, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2707, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272379, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2707, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4708]={ + ["next_chapter"]=4709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5472, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1259, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2734, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275113, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2734, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4709]={ + ["next_chapter"]=4710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5486, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1262, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2762, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277875, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2762, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=266722, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=470, + ["unit"]=0 + } + }, + [4710]={ + ["next_chapter"]=4711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=5500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1265, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2789, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280664, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2789, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4711]={ + ["next_chapter"]=4712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5515, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1268, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2817, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283482, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2817, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4712]={ + ["next_chapter"]=4713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5529, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1272, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286327, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2845, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4713]={ + ["next_chapter"]=4714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5544, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1275, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2874, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289201, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2874, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4714]={ + ["next_chapter"]=4715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5558, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1278, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2903, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292104, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2903, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4715]={ + ["next_chapter"]=4716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5573, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1282, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2932, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295035, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2932, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4716]={ + ["next_chapter"]=4717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5588, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1285, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2961, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=297996, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2961, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4717]={ + ["next_chapter"]=4718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5604, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1289, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2991, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300987, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=2991, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4718]={ + ["next_chapter"]=4719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5619, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1292, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3020, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304007, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3020, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4719]={ + ["next_chapter"]=4720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5634, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1296, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3051, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307058, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3051, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=294615, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=471, + ["unit"]=0 + } + }, + [4720]={ + ["next_chapter"]=4721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=5650, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1299, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3081, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310139, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3081, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4721]={ + ["next_chapter"]=4722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5666, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1303, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3112, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313251, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3112, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4722]={ + ["next_chapter"]=4723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5682, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1307, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3143, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316394, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3143, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4723]={ + ["next_chapter"]=4724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5698, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1310, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3175, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319569, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3175, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4724]={ + ["next_chapter"]=4725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5714, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1314, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3206, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322775, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3206, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4725]={ + ["next_chapter"]=4726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5730, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1318, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3238, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=326014, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3238, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4726]={ + ["next_chapter"]=4727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5747, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1322, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3271, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329284, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3271, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4727]={ + ["next_chapter"]=4728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5763, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1326, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3303, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332588, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3303, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4728]={ + ["next_chapter"]=4729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5780, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1329, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3336, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335924, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3336, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4729]={ + ["next_chapter"]=4730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5797, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1333, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3370, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339294, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3370, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=325427, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=472, + ["unit"]=0 + } + }, + [4730]={ + ["next_chapter"]=4731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=5814, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1337, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3404, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342698, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3404, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4731]={ + ["next_chapter"]=4732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5831, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1341, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3438, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346135, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3438, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4732]={ + ["next_chapter"]=4733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5849, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1345, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3472, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349607, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3472, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4733]={ + ["next_chapter"]=4734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5866, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1349, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3507, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=353114, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3507, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4734]={ + ["next_chapter"]=4735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5884, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1353, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3542, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356656, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3542, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4735]={ + ["next_chapter"]=4736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5902, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1357, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3577, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360233, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3577, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4736]={ + ["next_chapter"]=4737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5920, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1362, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3613, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=363846, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3613, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4737]={ + ["next_chapter"]=4738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5938, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1366, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3649, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=367495, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3649, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4738]={ + ["next_chapter"]=4739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5956, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1370, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3686, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=371180, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3686, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4739]={ + ["next_chapter"]=4740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1374, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3722, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374903, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3722, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=359463, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=473, + ["unit"]=0 + } + }, + [4740]={ + ["next_chapter"]=4741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=5993, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1378, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3760, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378662, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3760, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4741]={ + ["next_chapter"]=4742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1383, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3797, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382460, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3797, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4742]={ + ["next_chapter"]=4743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1387, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3835, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386295, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3835, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4743]={ + ["next_chapter"]=4744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6050, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1391, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3874, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390168, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3874, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4744]={ + ["next_chapter"]=4745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6069, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1396, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3912, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394081, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3912, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4745]={ + ["next_chapter"]=4746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1400, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3951, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398032, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3951, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4746]={ + ["next_chapter"]=4747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6108, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1405, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3991, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402023, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=3991, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4747]={ + ["next_chapter"]=4748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6127, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1409, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4031, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406054, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4031, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4748]={ + ["next_chapter"]=4749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6147, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1414, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4071, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410125, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4071, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4749]={ + ["next_chapter"]=4750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6167, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1418, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4112, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414237, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4112, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=397059, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=474, + ["unit"]=0 + } + }, + [4750]={ + ["next_chapter"]=4751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6188, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1423, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4153, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418390, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4153, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4751]={ + ["next_chapter"]=4752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6208, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1428, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4195, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422584, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4195, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4752]={ + ["next_chapter"]=4753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6228, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1433, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4236, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426821, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4236, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4753]={ + ["next_chapter"]=4754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6249, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1437, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4279, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431100, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4279, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4754]={ + ["next_chapter"]=4755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6270, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1442, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4322, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=435421, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4322, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4755]={ + ["next_chapter"]=4756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6291, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1447, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4365, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=439786, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4365, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4756]={ + ["next_chapter"]=4757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6312, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1452, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4408, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=444195, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4408, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4757]={ + ["next_chapter"]=4758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6333, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1457, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4453, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=448647, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4453, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4758]={ + ["next_chapter"]=4759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6355, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1462, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4497, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=453144, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4497, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4759]={ + ["next_chapter"]=4760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6376, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1467, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4542, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=457686, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4542, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=438589, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=475, + ["unit"]=0 + } + }, + [4760]={ + ["next_chapter"]=4761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=6398, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1472, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4587, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=462274, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4587, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4761]={ + ["next_chapter"]=4762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6420, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1477, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4633, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466907, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4633, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4762]={ + ["next_chapter"]=4763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6442, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1482, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4680, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471587, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4680, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4763]={ + ["next_chapter"]=4764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6465, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1487, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4726, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476313, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4726, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4764]={ + ["next_chapter"]=4765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6487, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1492, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4774, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481087, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4774, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4765]={ + ["next_chapter"]=4766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6510, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1497, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4821, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=485908, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4821, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4766]={ + ["next_chapter"]=4767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6533, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1503, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4870, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=490778, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4870, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4767]={ + ["next_chapter"]=4768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6556, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1508, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4918, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=495697, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4918, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4768]={ + ["next_chapter"]=4769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6579, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1513, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4968, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=500664, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=4968, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4769]={ + ["next_chapter"]=4770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6602, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1519, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5017, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=505681, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5017, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=484464, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=476, + ["unit"]=0 + } + }, + [4770]={ + ["next_chapter"]=4771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=6626, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1524, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5067, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=510749, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5067, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4771]={ + ["next_chapter"]=4772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6649, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1529, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5118, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=515867, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5118, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4772]={ + ["next_chapter"]=4773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6673, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1535, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5169, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=521036, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5169, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4773]={ + ["next_chapter"]=4774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6697, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1540, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5221, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=526257, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5221, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4774]={ + ["next_chapter"]=4775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6722, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1546, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5273, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=531530, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5273, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4775]={ + ["next_chapter"]=4776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6746, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1552, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5326, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=536856, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5326, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4776]={ + ["next_chapter"]=4777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6771, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1557, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5379, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=542235, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5379, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4777]={ + ["next_chapter"]=4778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6795, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1563, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5433, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=547668, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5433, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4778]={ + ["next_chapter"]=4779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6820, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1569, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5487, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=553156, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5487, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4779]={ + ["next_chapter"]=4780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6846, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1574, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5542, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=558698, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5542, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=535138, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=477, + ["unit"]=0 + } + }, + [4780]={ + ["next_chapter"]=4781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=6871, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1580, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5598, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564295, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5598, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4781]={ + ["next_chapter"]=4782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6896, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1586, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5654, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=569949, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5654, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4782]={ + ["next_chapter"]=4783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6922, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1592, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5710, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=575659, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5710, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4783]={ + ["next_chapter"]=4784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6948, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1598, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5767, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=581426, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5767, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4784]={ + ["next_chapter"]=4785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1604, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5825, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=587251, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5825, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4785]={ + ["next_chapter"]=4786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1610, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5883, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=593134, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5883, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4786]={ + ["next_chapter"]=4787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7027, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1616, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5942, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=599076, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=5942, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4787]={ + ["next_chapter"]=4788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7053, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1622, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6001, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=605078, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6001, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4788]={ + ["next_chapter"]=4789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7080, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1628, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6061, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=611139, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6061, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4789]={ + ["next_chapter"]=4790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7107, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1635, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6122, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=617261, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6122, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=591114, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=478, + ["unit"]=0 + } + }, + [4790]={ + ["next_chapter"]=4791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=7134, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1641, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6183, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=623444, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6183, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4791]={ + ["next_chapter"]=4792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7161, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1647, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6245, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=629689, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6245, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4792]={ + ["next_chapter"]=4793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7189, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1653, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6308, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=635997, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6308, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4793]={ + ["next_chapter"]=4794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7217, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1660, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6371, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=642367, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6371, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4794]={ + ["next_chapter"]=4795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7245, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1666, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6434, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=648802, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6434, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4795]={ + ["next_chapter"]=4796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7273, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1673, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6499, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=655300, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6499, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4796]={ + ["next_chapter"]=4797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7301, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1679, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6564, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=661864, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6564, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4797]={ + ["next_chapter"]=4798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7329, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1686, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6629, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=668493, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6629, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4798]={ + ["next_chapter"]=4799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7358, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1692, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6696, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=675189, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6696, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4799]={ + ["next_chapter"]=4800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7387, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1699, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6762, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=681951, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6762, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=652946, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=479, + ["unit"]=0 + } + }, + [4800]={ + ["next_chapter"]=4801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=7416, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1706, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6830, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=688781, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6830, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4801]={ + ["next_chapter"]=4802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7445, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1712, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6898, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=695680, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6898, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4802]={ + ["next_chapter"]=4803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7475, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1719, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6967, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=702647, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=6967, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4803]={ + ["next_chapter"]=4804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7504, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1726, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7037, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=709684, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7037, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4804]={ + ["next_chapter"]=4805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7534, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1733, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7107, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=716792, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7107, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4805]={ + ["next_chapter"]=4806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7564, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1740, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7179, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=723970, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7179, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4806]={ + ["next_chapter"]=4807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7594, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1747, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7250, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=731221, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7250, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4807]={ + ["next_chapter"]=4808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7625, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1754, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7323, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=738543, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7323, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4808]={ + ["next_chapter"]=4809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7656, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1761, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7396, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=745939, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7396, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4809]={ + ["next_chapter"]=4810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7686, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1768, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7470, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=753409, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7470, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=721247, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=480, + ["unit"]=0 + } + }, + [4810]={ + ["next_chapter"]=4811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=7717, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1775, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7545, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=760954, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7545, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4811]={ + ["next_chapter"]=4812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7749, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1782, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7620, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=768574, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7620, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4812]={ + ["next_chapter"]=4813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7780, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1789, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7696, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=776271, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7696, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4813]={ + ["next_chapter"]=4814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7812, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1797, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7773, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=784044, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7773, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4814]={ + ["next_chapter"]=4815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7844, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1804, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7851, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=791895, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7851, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4815]={ + ["next_chapter"]=4816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7876, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1811, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7930, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799825, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=7930, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4816]={ + ["next_chapter"]=4817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7908, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1819, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8009, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=807833, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8009, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4817]={ + ["next_chapter"]=4818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7940, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1826, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8089, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=815922, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8089, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4818]={ + ["next_chapter"]=4819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7973, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1834, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8170, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=824092, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8170, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4819]={ + ["next_chapter"]=4820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1841, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8252, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=832344, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8252, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=796694, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=481, + ["unit"]=0 + } + }, + [4820]={ + ["next_chapter"]=4821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=8039, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1849, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8334, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=840678, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8334, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4821]={ + ["next_chapter"]=4822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8072, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1857, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8417, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=849095, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8417, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4822]={ + ["next_chapter"]=4823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8106, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1864, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8502, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=857597, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8502, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4823]={ + ["next_chapter"]=4824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8139, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1872, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8587, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=866183, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8587, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4824]={ + ["next_chapter"]=4825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8173, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1880, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8672, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=874856, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8672, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4825]={ + ["next_chapter"]=4826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8207, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1888, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8759, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=883615, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8759, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4826]={ + ["next_chapter"]=4827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8242, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1896, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8847, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=892462, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8847, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4827]={ + ["next_chapter"]=4828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8276, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1904, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8935, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=901397, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=8935, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4828]={ + ["next_chapter"]=4829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8311, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1912, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9025, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=910421, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9025, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4829]={ + ["next_chapter"]=4830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8346, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1920, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9115, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=919536, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9115, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=880035, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=482, + ["unit"]=0 + } + }, + [4830]={ + ["next_chapter"]=4831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=8381, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1928, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9206, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=928742, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9206, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4831]={ + ["next_chapter"]=4832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8417, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1936, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9298, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=938040, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9298, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4832]={ + ["next_chapter"]=4833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8452, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1944, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9391, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=947431, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9391, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4833]={ + ["next_chapter"]=4834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8488, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1952, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9485, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=956916, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9485, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4834]={ + ["next_chapter"]=4835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8524, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1961, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9580, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=966496, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9580, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4835]={ + ["next_chapter"]=4836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8560, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1969, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9676, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=976172, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9676, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4836]={ + ["next_chapter"]=4837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8597, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1977, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9772, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=985944, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9772, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4837]={ + ["next_chapter"]=4838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8633, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1986, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9870, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=995814, + ["unit"]=6 + }, + ["idle_gold"]={ + ["value"]=9870, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4838]={ + ["next_chapter"]=4839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8670, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=1994, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9969, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1006, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9969, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4839]={ + ["next_chapter"]=4840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8707, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2003, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10068, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1016, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10068, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=972095, + ["unit"]=6 + }, + ["grasp_mastery_reward"]={ + ["value"]=483, + ["unit"]=0 + } + }, + [4840]={ + ["next_chapter"]=4841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=8745, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2011, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10169, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1026, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10169, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4841]={ + ["next_chapter"]=4842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8782, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2020, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10271, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1036, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10271, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4842]={ + ["next_chapter"]=4843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8820, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2029, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10374, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1047, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10374, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4843]={ + ["next_chapter"]=4844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8858, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10477, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1057, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10477, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4844]={ + ["next_chapter"]=4845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8896, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2046, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10582, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1068, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10582, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4845]={ + ["next_chapter"]=4846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8935, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2055, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10688, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1078, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10688, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4846]={ + ["next_chapter"]=4847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10795, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1089, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10795, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4847]={ + ["next_chapter"]=4848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2073, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10903, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1100, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=10903, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4848]={ + ["next_chapter"]=4849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9052, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2082, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11012, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1111, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11012, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4849]={ + ["next_chapter"]=4850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9091, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2091, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11122, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1122, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11122, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1074, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=484, + ["unit"]=0 + } + }, + [4850]={ + ["next_chapter"]=4851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=9131, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2100, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11233, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1133, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11233, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4851]={ + ["next_chapter"]=4852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9170, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2109, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11345, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1145, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11345, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4852]={ + ["next_chapter"]=4853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9210, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2118, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11459, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1156, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11459, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4853]={ + ["next_chapter"]=4854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9251, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2128, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11573, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1168, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11573, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4854]={ + ["next_chapter"]=4855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9291, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2137, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11689, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1180, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11689, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4855]={ + ["next_chapter"]=4856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9332, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2146, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11806, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1191, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11806, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4856]={ + ["next_chapter"]=4857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9373, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2156, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11924, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1203, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=11924, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4857]={ + ["next_chapter"]=4858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9414, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2165, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12043, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1215, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=12043, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4858]={ + ["next_chapter"]=4859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9455, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12164, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1227, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=12164, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4859]={ + ["next_chapter"]=4860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9497, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2184, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12285, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1240, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=12285, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1186, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=485, + ["unit"]=0 + } + }, + [4860]={ + ["next_chapter"]=4861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=9539, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2194, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12408, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1252, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=12408, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4861]={ + ["next_chapter"]=4862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9581, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2204, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12532, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1265, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=12532, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4862]={ + ["next_chapter"]=4863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9623, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2213, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12658, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1277, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=12658, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4863]={ + ["next_chapter"]=4864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9666, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2223, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12784, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1290, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=12784, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4864]={ + ["next_chapter"]=4865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9709, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2233, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12912, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1303, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=12912, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4865]={ + ["next_chapter"]=4866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9752, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2243, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13041, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1316, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=13041, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4866]={ + ["next_chapter"]=4867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9795, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2253, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13172, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1329, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=13172, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4867]={ + ["next_chapter"]=4868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9839, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2263, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13303, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1343, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=13303, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4868]={ + ["next_chapter"]=4869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9882, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2273, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13436, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1356, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=13436, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4869]={ + ["next_chapter"]=4870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9926, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2283, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13571, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1370, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=13571, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1310, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=486, + ["unit"]=0 + } + }, + [4870]={ + ["next_chapter"]=4871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=9971, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2293, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13706, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1383, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=13706, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4871]={ + ["next_chapter"]=4872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10015, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2303, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13844, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1397, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=13844, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4872]={ + ["next_chapter"]=4873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10060, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2314, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13982, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1411, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=13982, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4873]={ + ["next_chapter"]=4874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10105, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2324, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14122, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1425, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=14122, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4874]={ + ["next_chapter"]=4875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10150, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2334, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14263, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1439, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=14263, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4875]={ + ["next_chapter"]=4876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10195, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2345, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14406, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1454, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=14406, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4876]={ + ["next_chapter"]=4877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10241, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2355, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14550, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1468, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=14550, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4877]={ + ["next_chapter"]=4878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10287, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2366, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14695, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1483, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=14695, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4878]={ + ["next_chapter"]=4879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10333, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2377, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14842, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1498, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=14842, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4879]={ + ["next_chapter"]=4880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10380, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2387, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1513, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=14991, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1447, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=487, + ["unit"]=0 + } + }, + [4880]={ + ["next_chapter"]=4881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=10426, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2398, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15140, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1528, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=15140, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4881]={ + ["next_chapter"]=4882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10473, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2409, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15292, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1543, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=15292, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4882]={ + ["next_chapter"]=4883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10520, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2420, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15445, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1559, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=15445, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4883]={ + ["next_chapter"]=4884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10568, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2431, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15599, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1574, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=15599, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4884]={ + ["next_chapter"]=4885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10615, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2442, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15755, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1590, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=15755, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4885]={ + ["next_chapter"]=4886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10663, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2453, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15913, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1606, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=15913, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4886]={ + ["next_chapter"]=4887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10711, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2464, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16072, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1622, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=16072, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4887]={ + ["next_chapter"]=4888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10760, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2475, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16233, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1638, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=16233, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4888]={ + ["next_chapter"]=4889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10808, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2486, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16395, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1655, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=16395, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4889]={ + ["next_chapter"]=4890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10857, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2497, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16559, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1671, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=16559, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1599, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=488, + ["unit"]=0 + } + }, + [4890]={ + ["next_chapter"]=4891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=10906, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2508, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16724, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1688, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=16724, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4891]={ + ["next_chapter"]=4892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10956, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16892, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1705, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=16892, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4892]={ + ["next_chapter"]=4893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2531, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17061, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1722, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=17061, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4893]={ + ["next_chapter"]=4894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11055, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2543, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17231, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1739, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=17231, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4894]={ + ["next_chapter"]=4895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11106, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2554, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17404, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1757, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=17404, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4895]={ + ["next_chapter"]=4896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11156, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2566, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17578, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1774, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=17578, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4896]={ + ["next_chapter"]=4897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11207, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2578, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17753, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1792, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=17753, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4897]={ + ["next_chapter"]=4898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11258, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2589, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17931, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1810, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=17931, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4898]={ + ["next_chapter"]=4899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11309, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2601, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18110, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1828, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=18110, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4899]={ + ["next_chapter"]=4900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11360, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2613, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18291, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1846, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=18291, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1766, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=489, + ["unit"]=0 + } + }, + [4900]={ + ["next_chapter"]=4901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=11412, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2625, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18474, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1865, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=18474, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4901]={ + ["next_chapter"]=4902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11464, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2637, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18659, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1883, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=18659, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4902]={ + ["next_chapter"]=4903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11516, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2649, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18846, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1902, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=18846, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4903]={ + ["next_chapter"]=4904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11569, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2661, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19034, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1921, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=19034, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4904]={ + ["next_chapter"]=4905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11621, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2673, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19224, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1941, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=19224, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4905]={ + ["next_chapter"]=4906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11674, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2685, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19417, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1960, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=19417, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4906]={ + ["next_chapter"]=4907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11728, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2697, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19611, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1980, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=19611, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4907]={ + ["next_chapter"]=4908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11781, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2710, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19807, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1999, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=19807, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4908]={ + ["next_chapter"]=4909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11835, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2722, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20005, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2019, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=20005, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4909]={ + ["next_chapter"]=4910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11889, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2735, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20205, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2040, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=20205, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=1951, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=490, + ["unit"]=0 + } + }, + [4910]={ + ["next_chapter"]=4911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=11943, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2747, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20407, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2060, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=20407, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4911]={ + ["next_chapter"]=4912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11998, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2760, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20611, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2081, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=20611, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4912]={ + ["next_chapter"]=4913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12053, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2772, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20817, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2101, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=20817, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4913]={ + ["next_chapter"]=4914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12108, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21025, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2123, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=21025, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4914]={ + ["next_chapter"]=4915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12163, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2798, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21236, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2144, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=21236, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4915]={ + ["next_chapter"]=4916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12219, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2810, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21448, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2165, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=21448, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4916]={ + ["next_chapter"]=4917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12275, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2823, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21662, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2187, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=21662, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4917]={ + ["next_chapter"]=4918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12331, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2836, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21879, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2209, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=21879, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4918]={ + ["next_chapter"]=4919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12388, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2849, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22098, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2231, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=22098, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4919]={ + ["next_chapter"]=4920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12444, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2862, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22319, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2253, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=22319, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2155, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=491, + ["unit"]=0 + } + }, + [4920]={ + ["next_chapter"]=4921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=12502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2875, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22542, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2276, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=22542, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4921]={ + ["next_chapter"]=4922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12559, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2889, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22767, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2298, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=22767, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4922]={ + ["next_chapter"]=4923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12616, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2902, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22995, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2321, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=22995, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4923]={ + ["next_chapter"]=4924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12674, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2915, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23225, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2345, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=23225, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4924]={ + ["next_chapter"]=4925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12732, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2928, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23457, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2368, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=23457, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4925]={ + ["next_chapter"]=4926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12791, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2942, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23692, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2392, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=23692, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4926]={ + ["next_chapter"]=4927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12849, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2955, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23929, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2416, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=23929, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4927]={ + ["next_chapter"]=4928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12908, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2969, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24168, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2440, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=24168, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4928]={ + ["next_chapter"]=4929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12967, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2983, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24410, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2464, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=24410, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4929]={ + ["next_chapter"]=4930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13027, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=2996, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24654, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2489, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=24654, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2380, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=492, + ["unit"]=0 + } + }, + [4930]={ + ["next_chapter"]=4931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=13087, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3010, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24900, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2514, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=24900, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4931]={ + ["next_chapter"]=4932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13147, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3024, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25149, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2539, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=25149, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4932]={ + ["next_chapter"]=4933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13207, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3038, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25401, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2564, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=25401, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4933]={ + ["next_chapter"]=4934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13268, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3052, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25655, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2590, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=25655, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4934]={ + ["next_chapter"]=4935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13329, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3066, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25912, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2616, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=25912, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4935]={ + ["next_chapter"]=4936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13390, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3080, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26171, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2642, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=26171, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4936]={ + ["next_chapter"]=4937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13451, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3094, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26432, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2669, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=26432, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4937]={ + ["next_chapter"]=4938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13513, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3108, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26697, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2695, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=26697, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4938]={ + ["next_chapter"]=4939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13575, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3122, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26964, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2722, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=26964, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4939]={ + ["next_chapter"]=4940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13637, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3137, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27233, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2749, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=27233, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2629, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=493, + ["unit"]=0 + } + }, + [4940]={ + ["next_chapter"]=4941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=13700, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3151, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27506, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2777, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=27506, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4941]={ + ["next_chapter"]=4942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13763, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3165, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27781, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2805, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=27781, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4942]={ + ["next_chapter"]=4943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13826, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3180, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28058, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2833, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=28058, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4943]={ + ["next_chapter"]=4944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13889, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3195, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28339, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2861, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=28339, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4944]={ + ["next_chapter"]=4945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13953, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3209, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28622, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2890, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=28622, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4945]={ + ["next_chapter"]=4946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14017, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3224, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28909, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2919, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=28909, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4946]={ + ["next_chapter"]=4947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14081, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3239, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29198, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2948, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=29198, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4947]={ + ["next_chapter"]=4948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14146, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3254, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29490, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2977, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=29490, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4948]={ + ["next_chapter"]=4949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14211, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3268, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29785, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3007, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=29785, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4949]={ + ["next_chapter"]=4950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14276, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3283, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30082, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3037, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=30082, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=2904, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=494, + ["unit"]=0 + } + }, + [4950]={ + ["next_chapter"]=4951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=14342, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3299, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30383, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3068, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=30383, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4951]={ + ["next_chapter"]=4952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14407, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3314, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30687, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3098, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=30687, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4952]={ + ["next_chapter"]=4953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14473, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3329, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30994, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3129, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=30994, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4953]={ + ["next_chapter"]=4954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14540, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3344, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31304, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3161, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=31304, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4954]={ + ["next_chapter"]=4955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14606, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3359, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31617, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3192, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=31617, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4955]={ + ["next_chapter"]=4956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14673, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3375, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31933, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3224, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=31933, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4956]={ + ["next_chapter"]=4957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14740, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3390, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32252, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3256, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=32252, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4957]={ + ["next_chapter"]=4958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14808, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3406, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32575, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3289, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=32575, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4958]={ + ["next_chapter"]=4959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14876, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3421, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32901, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3322, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=32901, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4959]={ + ["next_chapter"]=4960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14944, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3437, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33230, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3355, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=33230, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3208, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=495, + ["unit"]=0 + } + }, + [4960]={ + ["next_chapter"]=4961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=15012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3453, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33562, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3389, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=33562, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4961]={ + ["next_chapter"]=4962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15081, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3469, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33898, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3423, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=33898, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4962]={ + ["next_chapter"]=4963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15150, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3485, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34237, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3457, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=34237, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4963]={ + ["next_chapter"]=4964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15219, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34579, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3491, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=34579, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4964]={ + ["next_chapter"]=4965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15289, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3516, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34925, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3526, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=34925, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4965]={ + ["next_chapter"]=4966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15359, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3533, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35274, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3562, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=35274, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4966]={ + ["next_chapter"]=4967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15429, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3549, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35627, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3597, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=35627, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4967]={ + ["next_chapter"]=4968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3565, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35983, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3633, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=35983, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4968]={ + ["next_chapter"]=4969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15570, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3581, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36343, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3670, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=36343, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4969]={ + ["next_chapter"]=4970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15641, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3598, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36706, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3706, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=36706, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3544, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=496, + ["unit"]=0 + } + }, + [4970]={ + ["next_chapter"]=4971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=15713, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3614, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37073, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3743, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=37073, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4971]={ + ["next_chapter"]=4972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15785, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3630, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37444, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3781, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=37444, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4972]={ + ["next_chapter"]=4973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15857, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3647, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37819, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3819, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=37819, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4973]={ + ["next_chapter"]=4974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15929, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3664, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38197, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3857, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=38197, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4974]={ + ["next_chapter"]=4975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38579, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3895, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=38579, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4975]={ + ["next_chapter"]=4976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16075, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3697, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38964, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3934, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=38964, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4976]={ + ["next_chapter"]=4977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16148, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3714, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39354, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3974, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=39354, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4977]={ + ["next_chapter"]=4978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16221, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3731, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39748, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4013, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=39748, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4978]={ + ["next_chapter"]=4979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16295, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3748, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40145, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4054, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=40145, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4979]={ + ["next_chapter"]=4980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16369, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3765, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40547, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4094, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=40547, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=3914, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=497, + ["unit"]=0 + } + }, + [4980]={ + ["next_chapter"]=4981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=16444, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3782, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40952, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4135, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=40952, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4981]={ + ["next_chapter"]=4982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16519, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3799, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41362, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4176, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=41362, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4982]={ + ["next_chapter"]=4983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16594, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3817, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41775, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4218, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=41775, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4983]={ + ["next_chapter"]=4984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16669, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3834, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42193, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4260, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=42193, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4984]={ + ["next_chapter"]=4985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16745, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3851, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42615, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4303, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=42615, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4985]={ + ["next_chapter"]=4986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16821, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3869, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43041, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4346, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=43041, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4986]={ + ["next_chapter"]=4987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16897, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3886, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43471, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4390, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=43471, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4987]={ + ["next_chapter"]=4988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3904, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43906, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4433, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=43906, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4988]={ + ["next_chapter"]=4989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17051, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3922, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44345, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4478, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=44345, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4989]={ + ["next_chapter"]=4990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17128, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3940, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44789, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4523, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=44789, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=498, + ["unit"]=0 + } + }, + [4990]={ + ["next_chapter"]=4991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=17206, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3957, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45237, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4568, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=45237, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4991]={ + ["next_chapter"]=4992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17284, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3975, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45689, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4614, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=45689, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4992]={ + ["next_chapter"]=4993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17362, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=3993, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46146, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4660, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=46146, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4993]={ + ["next_chapter"]=4994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17441, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4011, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46607, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4706, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=46607, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4994]={ + ["next_chapter"]=4995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17520, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4030, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47073, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4753, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=47073, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4995]={ + ["next_chapter"]=4996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17599, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4048, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47544, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4801, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=47544, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4996]={ + ["next_chapter"]=4997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17679, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4066, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48020, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4849, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=48020, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4997]={ + ["next_chapter"]=4998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17758, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4084, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48500, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4897, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=48500, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4998]={ + ["next_chapter"]=4999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17839, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4103, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48985, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4946, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=48985, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [4999]={ + ["next_chapter"]=5000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17919, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4121, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49475, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4996, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=49475, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=4776, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=499, + ["unit"]=0 + } + }, + [5000]={ + ["next_chapter"]=5001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49969, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5046, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=49969, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + } +} +local config = { +data=chapter1,count=5000 +} +return config \ No newline at end of file diff --git a/lua/app/config/chapter1.lua.meta b/lua/app/config/chapter1.lua.meta new file mode 100644 index 00000000..c1158819 --- /dev/null +++ b/lua/app/config/chapter1.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0bc04e38a7190d6418bf4445c8802092 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/chapter2.lua b/lua/app/config/chapter2.lua new file mode 100644 index 00000000..d4a1bd0e --- /dev/null +++ b/lua/app/config/chapter2.lua @@ -0,0 +1,175506 @@ +local chapter2 = { + [5001]={ + ["next_chapter"]=5002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50469, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5096, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=50469, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5002]={ + ["next_chapter"]=5003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50974, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5147, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=50974, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5003]={ + ["next_chapter"]=5004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51483, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5199, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=51483, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5004]={ + ["next_chapter"]=5005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51998, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5251, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=51998, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5005]={ + ["next_chapter"]=5006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52518, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5303, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=52518, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5006]={ + ["next_chapter"]=5007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53043, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5356, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=53043, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5007]={ + ["next_chapter"]=5008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53574, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5410, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=53574, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5008]={ + ["next_chapter"]=5009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54110, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5464, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=54110, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5009]={ + ["next_chapter"]=5010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54651, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5519, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=54651, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5276, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=500, + ["unit"]=0 + } + }, + [5010]={ + ["next_chapter"]=5011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55197, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5574, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=55197, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5011]={ + ["next_chapter"]=5012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55749, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5630, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=55749, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5012]={ + ["next_chapter"]=5013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56307, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5686, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=56307, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5013]={ + ["next_chapter"]=5014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56870, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5743, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=56870, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5014]={ + ["next_chapter"]=5015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=57438, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5800, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=57438, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5015]={ + ["next_chapter"]=5016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58013, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5858, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=58013, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5016]={ + ["next_chapter"]=5017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58593, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5917, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=58593, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5017]={ + ["next_chapter"]=5018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59179, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5976, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=59179, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5018]={ + ["next_chapter"]=5019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59771, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6036, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=59771, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5019]={ + ["next_chapter"]=5020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=60368, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6096, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=60368, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=5828, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=501, + ["unit"]=0 + } + }, + [5020]={ + ["next_chapter"]=5021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=18003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=60972, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6157, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=60972, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5021]={ + ["next_chapter"]=5022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=61582, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6219, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=61582, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5022]={ + ["next_chapter"]=5023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=62198, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6281, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=62198, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5023]={ + ["next_chapter"]=5024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=62820, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6344, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=62820, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5024]={ + ["next_chapter"]=5025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18005, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=63448, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6407, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=63448, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5025]={ + ["next_chapter"]=5026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18005, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=64082, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6471, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=64082, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5026]={ + ["next_chapter"]=5027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=64723, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6536, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=64723, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5027]={ + ["next_chapter"]=5028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18007, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4322, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=65370, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6601, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=65370, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5028]={ + ["next_chapter"]=5029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18007, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4322, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=66024, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6667, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=66024, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5029]={ + ["next_chapter"]=5030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18008, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4322, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=66684, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6734, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=66684, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=6438, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=502, + ["unit"]=0 + } + }, + [5030]={ + ["next_chapter"]=5031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=18009, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4322, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=67351, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6801, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=67351, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5031]={ + ["next_chapter"]=5032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4322, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=68025, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6869, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=68025, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5032]={ + ["next_chapter"]=5033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18011, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4323, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=68705, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6938, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=68705, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5033]={ + ["next_chapter"]=5034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4323, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=69392, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7008, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=69392, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5034]={ + ["next_chapter"]=5035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18013, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4323, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=70086, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7078, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=70086, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5035]={ + ["next_chapter"]=5036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18014, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4323, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=70787, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7148, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=70787, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5036]={ + ["next_chapter"]=5037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18016, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4324, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=71495, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7220, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=71495, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5037]={ + ["next_chapter"]=5038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18017, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4324, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=72209, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7292, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=72209, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5038]={ + ["next_chapter"]=5039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18018, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4324, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=72932, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7365, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=72932, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5039]={ + ["next_chapter"]=5040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18020, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4325, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=73661, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7439, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=73661, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7111, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=503, + ["unit"]=0 + } + }, + [5040]={ + ["next_chapter"]=5041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=18022, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4325, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=74397, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7513, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=74397, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5041]={ + ["next_chapter"]=5042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18023, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4326, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=75141, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7588, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=75141, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5042]={ + ["next_chapter"]=5043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18025, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4326, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=75893, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7664, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=75893, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5043]={ + ["next_chapter"]=5044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18027, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4326, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=76652, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7741, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=76652, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5044]={ + ["next_chapter"]=5045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18029, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4327, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=77418, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7818, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=77418, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5045]={ + ["next_chapter"]=5046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4327, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=78193, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7896, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=78193, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5046]={ + ["next_chapter"]=5047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18033, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=78974, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7975, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=78974, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5047]={ + ["next_chapter"]=5048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18035, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=79764, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8055, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=79764, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5048]={ + ["next_chapter"]=5049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18037, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4329, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=80562, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8136, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=80562, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5049]={ + ["next_chapter"]=5050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18040, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4329, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=81367, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8217, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=81367, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=7855, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=504, + ["unit"]=0 + } + }, + [5050]={ + ["next_chapter"]=5051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=18042, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4330, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=82181, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8299, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=82181, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5051]={ + ["next_chapter"]=5052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18045, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4331, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=83003, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8382, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=83003, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5052]={ + ["next_chapter"]=5053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18047, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4331, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=83833, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8466, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=83833, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5053]={ + ["next_chapter"]=5054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18050, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4332, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=84671, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8551, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=84671, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5054]={ + ["next_chapter"]=5055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18053, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4333, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=85518, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8636, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=85518, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5055]={ + ["next_chapter"]=5056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18056, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4333, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=86373, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8723, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=86373, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5056]={ + ["next_chapter"]=5057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18059, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4334, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=87237, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8810, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=87237, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5057]={ + ["next_chapter"]=5058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18062, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4335, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=88109, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8898, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=88109, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5058]={ + ["next_chapter"]=5059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18066, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4336, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=88990, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8987, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=88990, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5059]={ + ["next_chapter"]=5060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18069, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4337, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=89880, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9077, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=89880, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=8677, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=505, + ["unit"]=0 + } + }, + [5060]={ + ["next_chapter"]=5061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=18073, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4337, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=90779, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9168, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=90779, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5061]={ + ["next_chapter"]=5062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18076, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4338, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=91687, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9259, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=91687, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5062]={ + ["next_chapter"]=5063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18080, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4339, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=92604, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9352, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=92604, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5063]={ + ["next_chapter"]=5064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18084, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4340, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=93530, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9445, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=93530, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5064]={ + ["next_chapter"]=5065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4341, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=94465, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9540, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=94465, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5065]={ + ["next_chapter"]=5066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18092, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4342, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=95410, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9635, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=95410, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5066]={ + ["next_chapter"]=5067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18097, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4343, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=96364, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9732, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=96364, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5067]={ + ["next_chapter"]=5068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18101, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4344, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=97327, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9829, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=97327, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5068]={ + ["next_chapter"]=5069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18106, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4345, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=98301, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9927, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=98301, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5069]={ + ["next_chapter"]=5070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18110, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4346, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=99284, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10027, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=99284, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=9585, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=506, + ["unit"]=0 + } + }, + [5070]={ + ["next_chapter"]=5071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=18115, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4348, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=100277, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10127, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=100277, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5071]={ + ["next_chapter"]=5072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18120, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4349, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=101279, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10228, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=101279, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5072]={ + ["next_chapter"]=5073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18125, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4350, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=102292, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10330, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=102292, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5073]={ + ["next_chapter"]=5074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18131, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4351, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=103315, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10434, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=103315, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5074]={ + ["next_chapter"]=5075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18136, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4353, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=104348, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10538, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=104348, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5075]={ + ["next_chapter"]=5076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18142, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4354, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=105392, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10643, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=105392, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5076]={ + ["next_chapter"]=5077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18147, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4355, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=106446, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10750, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=106446, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5077]={ + ["next_chapter"]=5078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18153, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4357, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=107510, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10857, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=107510, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5078]={ + ["next_chapter"]=5079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18159, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4358, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=108585, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10966, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=108585, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5079]={ + ["next_chapter"]=5080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18166, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4360, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=109671, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11076, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=109671, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=10588, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=507, + ["unit"]=0 + } + }, + [5080]={ + ["next_chapter"]=5081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=18172, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4361, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=110768, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11186, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=110768, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5081]={ + ["next_chapter"]=5082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18179, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4363, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=111875, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11298, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=111875, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5082]={ + ["next_chapter"]=5083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18185, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4364, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=112994, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11411, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=112994, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5083]={ + ["next_chapter"]=5084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18192, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4366, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=114124, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11525, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=114124, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5084]={ + ["next_chapter"]=5085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18199, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4368, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=115265, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11641, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=115265, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5085]={ + ["next_chapter"]=5086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18206, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4370, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=116418, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11757, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=116418, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5086]={ + ["next_chapter"]=5087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18214, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4371, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=117582, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11875, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=117582, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5087]={ + ["next_chapter"]=5088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18221, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4373, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=118758, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11993, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=118758, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5088]={ + ["next_chapter"]=5089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18229, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4375, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=119946, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12113, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=119946, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5089]={ + ["next_chapter"]=5090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18237, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4377, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=121145, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12235, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=121145, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=11695, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=508, + ["unit"]=0 + } + }, + [5090]={ + ["next_chapter"]=5091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=18245, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4379, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=122356, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12357, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=122356, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5091]={ + ["next_chapter"]=5092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18253, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4381, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=123580, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12481, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=123580, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5092]={ + ["next_chapter"]=5093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18262, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4383, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=124816, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12605, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=124816, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5093]={ + ["next_chapter"]=5094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18270, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4385, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=126064, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12731, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=126064, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5094]={ + ["next_chapter"]=5095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18279, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4387, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=127325, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12859, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=127325, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5095]={ + ["next_chapter"]=5096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18288, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4389, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=128598, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12987, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=128598, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5096]={ + ["next_chapter"]=5097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18297, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4391, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=129884, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13117, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=129884, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5097]={ + ["next_chapter"]=5098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18307, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4394, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=131183, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13248, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=131183, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5098]={ + ["next_chapter"]=5099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18316, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4396, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=132495, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13381, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=132495, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5099]={ + ["next_chapter"]=5100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18326, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4398, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=133819, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13515, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=133819, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=12919, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=509, + ["unit"]=0 + } + }, + [5100]={ + ["next_chapter"]=5101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=18336, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4401, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=135158, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13650, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=135158, + ["unit"]=6 + }, + ["chapter_drop"]=52, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5101]={ + ["next_chapter"]=5102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18346, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4403, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=136509, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13786, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=136509, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5102]={ + ["next_chapter"]=5103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18357, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4406, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=137874, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13924, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=137874, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5103]={ + ["next_chapter"]=5104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18367, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4408, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=139253, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14063, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=139253, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5104]={ + ["next_chapter"]=5105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18378, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4411, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=140646, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14204, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=140646, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5105]={ + ["next_chapter"]=5106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18389, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4413, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=142052, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14346, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=142052, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5106]={ + ["next_chapter"]=5107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18400, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4416, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=143473, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14490, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=143473, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5107]={ + ["next_chapter"]=5108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18412, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4419, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=144907, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14635, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=144907, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5108]={ + ["next_chapter"]=5109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18423, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4422, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=146356, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14781, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=146356, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5109]={ + ["next_chapter"]=5110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18435, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4424, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=147820, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14929, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=147820, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=14270, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=510, + ["unit"]=0 + } + }, + [5110]={ + ["next_chapter"]=5111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=18447, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4427, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=149298, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15078, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=149298, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5111]={ + ["next_chapter"]=5112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18460, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4430, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=150791, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15229, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=150791, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5112]={ + ["next_chapter"]=5113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18472, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4433, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=152299, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15381, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=152299, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5113]={ + ["next_chapter"]=5114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18485, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4436, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=153822, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15535, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=153822, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5114]={ + ["next_chapter"]=5115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18498, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4439, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=155360, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15690, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=155360, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5115]={ + ["next_chapter"]=5116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18511, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4443, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=156914, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15847, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=156914, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5116]={ + ["next_chapter"]=5117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18524, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4446, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=158483, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16006, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=158483, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5117]={ + ["next_chapter"]=5118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18538, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4449, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=160068, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16166, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=160068, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5118]={ + ["next_chapter"]=5119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18552, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4452, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=161668, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16327, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=161668, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5119]={ + ["next_chapter"]=5120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18566, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4456, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=163285, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16491, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=163285, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15763, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=511, + ["unit"]=0 + } + }, + [5120]={ + ["next_chapter"]=5121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=18581, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4459, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=164918, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16656, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=164918, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5121]={ + ["next_chapter"]=5122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18595, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4463, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=166567, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16822, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=166567, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5122]={ + ["next_chapter"]=5123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18610, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4466, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=168233, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16990, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=168233, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5123]={ + ["next_chapter"]=5124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18625, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4470, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=169915, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17160, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=169915, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5124]={ + ["next_chapter"]=5125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18641, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4474, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=171614, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17332, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=171614, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5125]={ + ["next_chapter"]=5126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18656, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4478, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=173331, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17505, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=173331, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5126]={ + ["next_chapter"]=5127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18672, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4481, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=175064, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17680, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=175064, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5127]={ + ["next_chapter"]=5128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18688, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4485, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=176814, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17857, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=176814, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5128]={ + ["next_chapter"]=5129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18705, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4489, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=178583, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18036, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=178583, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5129]={ + ["next_chapter"]=5130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18721, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4493, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=180368, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18216, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=180368, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=17412, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=512, + ["unit"]=0 + } + }, + [5130]={ + ["next_chapter"]=5131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=18738, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4497, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=182172, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18398, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=182172, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5131]={ + ["next_chapter"]=5132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18755, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4501, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=183994, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18582, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=183994, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5132]={ + ["next_chapter"]=5133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18773, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4505, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=185834, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18768, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=185834, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5133]={ + ["next_chapter"]=5134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18790, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4510, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=187692, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18956, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=187692, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5134]={ + ["next_chapter"]=5135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18808, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4514, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=189569, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19145, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=189569, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5135]={ + ["next_chapter"]=5136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18827, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4518, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=191465, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19337, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=191465, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5136]={ + ["next_chapter"]=5137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18845, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4523, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=193379, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19530, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=193379, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5137]={ + ["next_chapter"]=5138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18864, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4527, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=195313, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19726, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=195313, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5138]={ + ["next_chapter"]=5139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18883, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4532, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=197266, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19923, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=197266, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5139]={ + ["next_chapter"]=5140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18902, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4537, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=199239, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20122, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=199239, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=19234, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=513, + ["unit"]=0 + } + }, + [5140]={ + ["next_chapter"]=5141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=18922, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4541, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=201231, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20323, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=201231, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5141]={ + ["next_chapter"]=5142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18942, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4546, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=203244, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20527, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=203244, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5142]={ + ["next_chapter"]=5143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18962, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4551, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=205276, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20732, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=205276, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5143]={ + ["next_chapter"]=5144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18983, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4556, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=207329, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20939, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=207329, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5144]={ + ["next_chapter"]=5145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4561, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=209402, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21149, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=209402, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5145]={ + ["next_chapter"]=5146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4566, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=211496, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21360, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=211496, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5146]={ + ["next_chapter"]=5147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19046, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4571, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=213611, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21574, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=213611, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5147]={ + ["next_chapter"]=5148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19067, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4576, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=215747, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21789, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=215747, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5148]={ + ["next_chapter"]=5149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19089, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4581, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=217905, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22007, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=217905, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5149]={ + ["next_chapter"]=5150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19111, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4587, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=220084, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22227, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=220084, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=514, + ["unit"]=0 + } + }, + [5150]={ + ["next_chapter"]=5151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=19134, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4592, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=222285, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22450, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=222285, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5151]={ + ["next_chapter"]=5152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19157, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4598, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=224507, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22674, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=224507, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5152]={ + ["next_chapter"]=5153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19180, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4603, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=226753, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22901, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=226753, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5153]={ + ["next_chapter"]=5154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19203, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4609, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=229020, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23130, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=229020, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5154]={ + ["next_chapter"]=5155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19227, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4615, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=231310, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23361, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=231310, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5155]={ + ["next_chapter"]=5156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19251, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4620, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=233623, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23595, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=233623, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5156]={ + ["next_chapter"]=5157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19276, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4626, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=235960, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23831, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=235960, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5157]={ + ["next_chapter"]=5158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19300, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4632, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=238319, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24069, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=238319, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5158]={ + ["next_chapter"]=5159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19325, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4638, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=240702, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24310, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=240702, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5159]={ + ["next_chapter"]=5160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19351, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4644, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=243109, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24553, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=243109, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=23469, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=515, + ["unit"]=0 + } + }, + [5160]={ + ["next_chapter"]=5161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=19376, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4650, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=245540, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24799, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=245540, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5161]={ + ["next_chapter"]=5162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19402, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4657, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=247996, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25047, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=247996, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5162]={ + ["next_chapter"]=5163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19429, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4663, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=250476, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25297, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=250476, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5163]={ + ["next_chapter"]=5164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19455, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4669, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=252981, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25550, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=252981, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5164]={ + ["next_chapter"]=5165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19482, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4676, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=255510, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25805, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=255510, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5165]={ + ["next_chapter"]=5166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19509, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4682, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=258066, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26064, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=258066, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5166]={ + ["next_chapter"]=5167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19537, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4689, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=260646, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26324, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=260646, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5167]={ + ["next_chapter"]=5168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19565, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4696, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=263253, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26587, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=263253, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5168]={ + ["next_chapter"]=5169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19593, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4702, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=265885, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26853, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=265885, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5169]={ + ["next_chapter"]=5170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19622, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4709, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=268544, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27122, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=268544, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=25925, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=516, + ["unit"]=0 + } + }, + [5170]={ + ["next_chapter"]=5171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=19651, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4716, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=271229, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27393, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=271229, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5171]={ + ["next_chapter"]=5172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19680, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4723, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=273942, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27667, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=273942, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5172]={ + ["next_chapter"]=5173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19710, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4730, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=276681, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27944, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=276681, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5173]={ + ["next_chapter"]=5174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19740, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4738, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=279448, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28223, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=279448, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5174]={ + ["next_chapter"]=5175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19770, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4745, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=282242, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28505, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=282242, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5175]={ + ["next_chapter"]=5176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19801, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4752, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=285065, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28790, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=285065, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5176]={ + ["next_chapter"]=5177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19832, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4760, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=287916, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29078, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=287916, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5177]={ + ["next_chapter"]=5178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19863, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4767, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=290795, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29369, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=290795, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5178]={ + ["next_chapter"]=5179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19895, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4775, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=293703, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29663, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=293703, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5179]={ + ["next_chapter"]=5180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19927, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4782, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=296640, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29960, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=296640, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=28637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=517, + ["unit"]=0 + } + }, + [5180]={ + ["next_chapter"]=5181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=19960, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4790, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=299606, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30259, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=299606, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5181]={ + ["next_chapter"]=5182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19992, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4798, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=302602, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30562, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=302602, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5182]={ + ["next_chapter"]=5183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20026, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4806, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=305628, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30867, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=305628, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5183]={ + ["next_chapter"]=5184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20059, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4814, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=308684, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31176, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=308684, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5184]={ + ["next_chapter"]=5185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20093, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4822, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=311771, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31488, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=311771, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5185]={ + ["next_chapter"]=5186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20127, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4831, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=314889, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31803, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=314889, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5186]={ + ["next_chapter"]=5187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20162, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4839, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=318038, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32121, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=318038, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5187]={ + ["next_chapter"]=5188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20197, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4847, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=321218, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32442, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=321218, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5188]={ + ["next_chapter"]=5189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20233, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4856, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=324430, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32766, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=324430, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5189]={ + ["next_chapter"]=5190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20268, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4864, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=327675, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33094, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=327675, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=31633, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=518, + ["unit"]=0 + } + }, + [5190]={ + ["next_chapter"]=5191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=20305, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4873, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=330951, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33425, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=330951, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5191]={ + ["next_chapter"]=5192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20341, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4882, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=334261, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33759, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=334261, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5192]={ + ["next_chapter"]=5193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20378, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4891, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=337604, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34097, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=337604, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5193]={ + ["next_chapter"]=5194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20416, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4900, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=340980, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34438, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=340980, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5194]={ + ["next_chapter"]=5195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20453, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4909, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=344389, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34782, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=344389, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5195]={ + ["next_chapter"]=5196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20491, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4918, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=347833, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35130, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=347833, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5196]={ + ["next_chapter"]=5197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20530, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4927, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=351312, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35481, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=351312, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5197]={ + ["next_chapter"]=5198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20569, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4937, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=354825, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35836, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=354825, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5198]={ + ["next_chapter"]=5199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20608, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4946, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=358373, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36195, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=358373, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5199]={ + ["next_chapter"]=5200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20648, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4955, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=361957, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36557, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=361957, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=34943, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=519, + ["unit"]=0 + } + }, + [5200]={ + ["next_chapter"]=5201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=20688, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4965, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=365576, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36922, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=365576, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5201]={ + ["next_chapter"]=5202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20729, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4975, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=369232, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37291, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=369232, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5202]={ + ["next_chapter"]=5203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20769, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4985, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=372924, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37664, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=372924, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5203]={ + ["next_chapter"]=5204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20811, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=4995, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=376654, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38041, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=376654, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5204]={ + ["next_chapter"]=5205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20853, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=380420, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38421, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=380420, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5205]={ + ["next_chapter"]=5206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20895, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5015, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=384224, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38806, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=384224, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5206]={ + ["next_chapter"]=5207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20937, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5025, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=388067, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39194, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=388067, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5207]={ + ["next_chapter"]=5208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20980, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=391947, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39586, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=391947, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5208]={ + ["next_chapter"]=5209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5046, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=395867, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39981, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=395867, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5209]={ + ["next_chapter"]=5210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21067, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5056, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=399825, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40381, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=399825, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=38598, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=520, + ["unit"]=0 + } + }, + [5210]={ + ["next_chapter"]=5211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=21112, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=403824, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40785, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=403824, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5211]={ + ["next_chapter"]=5212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21156, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5078, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=407862, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41193, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=407862, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5212]={ + ["next_chapter"]=5213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21201, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5088, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=411941, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41605, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=411941, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5213]={ + ["next_chapter"]=5214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21247, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5099, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=416060, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42021, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=416060, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5214]={ + ["next_chapter"]=5215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21293, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5110, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=420221, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42441, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=420221, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5215]={ + ["next_chapter"]=5216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21339, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5121, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=424423, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42866, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=424423, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5216]={ + ["next_chapter"]=5217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21386, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5133, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=428667, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43294, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=428667, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5217]={ + ["next_chapter"]=5218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21433, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5144, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=432954, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43727, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=432954, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5218]={ + ["next_chapter"]=5219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21481, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=437283, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44165, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=437283, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5219]={ + ["next_chapter"]=5220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21529, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5167, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=441656, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44606, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=441656, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=42637, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=521, + ["unit"]=0 + } + }, + [5220]={ + ["next_chapter"]=5221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=21578, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5179, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=446073, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45052, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=446073, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5221]={ + ["next_chapter"]=5222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21627, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=450533, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45503, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=450533, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5222]={ + ["next_chapter"]=5223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21676, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5202, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=455039, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45958, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=455039, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5223]={ + ["next_chapter"]=5224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21726, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5214, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=459589, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46417, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=459589, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5224]={ + ["next_chapter"]=5225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21776, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5226, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=464185, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46882, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=464185, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5225]={ + ["next_chapter"]=5226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21827, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5239, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=468827, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47350, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=468827, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5226]={ + ["next_chapter"]=5227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21879, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5251, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=473515, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47824, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=473515, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5227]={ + ["next_chapter"]=5228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21930, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5263, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=478250, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48302, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=478250, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5228]={ + ["next_chapter"]=5229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21982, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5276, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=483033, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48785, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=483033, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5229]={ + ["next_chapter"]=5230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22035, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5288, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=487863, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49273, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=487863, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=47097, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=522, + ["unit"]=0 + } + }, + [5230]={ + ["next_chapter"]=5231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=22088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5301, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=492742, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49766, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=492742, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5231]={ + ["next_chapter"]=5232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22142, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5314, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=497669, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50264, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=497669, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5232]={ + ["next_chapter"]=5233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22196, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5327, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=502646, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50766, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=502646, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5233]={ + ["next_chapter"]=5234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22250, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5340, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=507672, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51274, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=507672, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5234]={ + ["next_chapter"]=5235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22305, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5353, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=512749, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51787, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=512749, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5235]={ + ["next_chapter"]=5236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22361, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5367, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=517876, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52304, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=517876, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5236]={ + ["next_chapter"]=5237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22416, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5380, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=523055, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52828, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=523055, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5237]={ + ["next_chapter"]=5238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22473, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5393, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=528286, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53356, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=528286, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5238]={ + ["next_chapter"]=5239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22530, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5407, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=533569, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53889, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=533569, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5239]={ + ["next_chapter"]=5240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22587, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5421, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=538904, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54428, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=538904, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=52025, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=523, + ["unit"]=0 + } + }, + [5240]={ + ["next_chapter"]=5241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=22645, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5435, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=544293, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54973, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=544293, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5241]={ + ["next_chapter"]=5242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22703, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5449, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=549736, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55522, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=549736, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5242]={ + ["next_chapter"]=5243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22762, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5463, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=555234, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56078, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=555234, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5243]={ + ["next_chapter"]=5244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22821, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5477, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=560786, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56638, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=560786, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5244]={ + ["next_chapter"]=5245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22881, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5491, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=566394, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57205, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=566394, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5245]={ + ["next_chapter"]=5246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22941, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5506, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=572058, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57777, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=572058, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5246]={ + ["next_chapter"]=5247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=577778, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58355, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=577778, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5247]={ + ["next_chapter"]=5248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23063, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5535, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=583556, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58938, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=583556, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5248]={ + ["next_chapter"]=5249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23125, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5550, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=589392, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59527, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=589392, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5249]={ + ["next_chapter"]=5250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23187, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5565, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=595286, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60123, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=595286, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=57468, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=524, + ["unit"]=0 + } + }, + [5250]={ + ["next_chapter"]=5251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=23250, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5580, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=601238, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60724, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=601238, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5251]={ + ["next_chapter"]=5252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23313, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5595, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=607251, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61331, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=607251, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5252]={ + ["next_chapter"]=5253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23377, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5610, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=613323, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61945, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=613323, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5253]={ + ["next_chapter"]=5254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23441, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5626, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=619457, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62564, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=619457, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5254]={ + ["next_chapter"]=5255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5641, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=625651, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63190, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=625651, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5255]={ + ["next_chapter"]=5256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23571, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5657, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=631908, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63822, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=631908, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5256]={ + ["next_chapter"]=5257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23637, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5673, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=638227, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64460, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=638227, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5257]={ + ["next_chapter"]=5258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23703, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5689, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=644609, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65104, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=644609, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5258]={ + ["next_chapter"]=5259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23770, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5705, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=651055, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65756, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=651055, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5259]={ + ["next_chapter"]=5260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23838, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5721, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=657566, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66413, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=657566, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=63480, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=525, + ["unit"]=0 + } + }, + [5260]={ + ["next_chapter"]=5261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=23906, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5737, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=664141, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67077, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=664141, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5261]={ + ["next_chapter"]=5262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5754, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=670783, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67748, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=670783, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5262]={ + ["next_chapter"]=5263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24043, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5770, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=677491, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68425, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=677491, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5263]={ + ["next_chapter"]=5264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24112, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5787, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=684265, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69110, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=684265, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5264]={ + ["next_chapter"]=5265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24182, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5804, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=691108, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69801, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=691108, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5265]={ + ["next_chapter"]=5266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24253, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5821, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=698019, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70499, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=698019, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5266]={ + ["next_chapter"]=5267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24324, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5838, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=704999, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71204, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=704999, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5267]={ + ["next_chapter"]=5268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24395, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5855, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=712049, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71916, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=712049, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5268]={ + ["next_chapter"]=5269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24468, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5872, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=719170, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72635, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=719170, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5269]={ + ["next_chapter"]=5270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24540, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5890, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=726362, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73361, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=726362, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=70122, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=526, + ["unit"]=0 + } + }, + [5270]={ + ["next_chapter"]=5271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=24613, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5907, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=733625, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74095, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=733625, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5271]={ + ["next_chapter"]=5272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24687, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5925, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=740961, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74836, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=740961, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5272]={ + ["next_chapter"]=5273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24762, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5943, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=748371, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75584, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=748371, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5273]={ + ["next_chapter"]=5274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24836, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5961, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=755855, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76340, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=755855, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5274]={ + ["next_chapter"]=5275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24912, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5979, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=763413, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77104, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=763413, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5275]={ + ["next_chapter"]=5276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24988, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=5997, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=771047, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77875, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=771047, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5276]={ + ["next_chapter"]=5277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25064, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6015, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=778758, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78653, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=778758, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5277]={ + ["next_chapter"]=5278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25141, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6034, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=786545, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79440, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=786545, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5278]={ + ["next_chapter"]=5279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25219, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6053, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=794411, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80234, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=794411, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5279]={ + ["next_chapter"]=5280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25297, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6071, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=802355, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81037, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=802355, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=77458, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=527, + ["unit"]=0 + } + }, + [5280]={ + ["next_chapter"]=5281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=25376, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6090, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=810379, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81847, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=810379, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5281]={ + ["next_chapter"]=5282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25455, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6109, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=818482, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82666, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=818482, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5282]={ + ["next_chapter"]=5283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25535, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6128, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=826667, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83492, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=826667, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5283]={ + ["next_chapter"]=5284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25616, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6148, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=834934, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84327, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=834934, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5284]={ + ["next_chapter"]=5285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25697, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6167, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=843283, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85171, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=843283, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5285]={ + ["next_chapter"]=5286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25778, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6187, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=851716, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86022, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=851716, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5286]={ + ["next_chapter"]=5287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25860, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6206, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=860233, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86882, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=860233, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5287]={ + ["next_chapter"]=5288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25943, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6226, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=868836, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87751, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=868836, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5288]={ + ["next_chapter"]=5289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26026, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6246, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=877524, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88629, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=877524, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5289]={ + ["next_chapter"]=5290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26110, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6266, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=886299, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89515, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=886299, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=85562, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=528, + ["unit"]=0 + } + }, + [5290]={ + ["next_chapter"]=5291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=26195, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6287, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=895162, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90410, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=895162, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5291]={ + ["next_chapter"]=5292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26280, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6307, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=904114, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91314, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=904114, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5292]={ + ["next_chapter"]=5293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26365, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=913155, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92228, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=913155, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5293]={ + ["next_chapter"]=5294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26452, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6348, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=922286, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93150, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=922286, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5294]={ + ["next_chapter"]=5295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26538, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6369, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=931509, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94081, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=931509, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5295]={ + ["next_chapter"]=5296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26626, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6390, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=940824, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95022, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=940824, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5296]={ + ["next_chapter"]=5297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26714, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6411, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=950233, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95972, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=950233, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5297]={ + ["next_chapter"]=5298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26803, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6433, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=959735, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96932, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=959735, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5298]={ + ["next_chapter"]=5299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26892, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6454, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=969332, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97902, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=969332, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5299]={ + ["next_chapter"]=5300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26982, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6476, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=979026, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98881, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=979026, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=94513, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=529, + ["unit"]=0 + } + }, + [5300]={ + ["next_chapter"]=5301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=27072, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6497, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=988816, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99869, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=988816, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5301]={ + ["next_chapter"]=5302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27163, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6519, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=998704, + ["unit"]=6 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100868, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=998704, + ["unit"]=6 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5302]={ + ["next_chapter"]=5303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27255, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6541, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1009, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101877, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1009, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5303]={ + ["next_chapter"]=5304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27347, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6563, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1019, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102896, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1019, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5304]={ + ["next_chapter"]=5305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27440, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6586, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1029, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103924, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1029, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5305]={ + ["next_chapter"]=5306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27533, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6608, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1039, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104964, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1039, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5306]={ + ["next_chapter"]=5307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27627, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6631, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1050, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106013, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1050, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5307]={ + ["next_chapter"]=5308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27722, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6653, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1060, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107074, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5308]={ + ["next_chapter"]=5309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27817, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6676, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1071, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108144, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1071, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5309]={ + ["next_chapter"]=5310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27913, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6699, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1081, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109226, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1081, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=104401, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=530, + ["unit"]=0 + } + }, + [5310]={ + ["next_chapter"]=5311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=28010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6722, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1092, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110318, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1092, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5311]={ + ["next_chapter"]=5312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28107, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6746, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1103, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111421, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1103, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5312]={ + ["next_chapter"]=5313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28205, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6769, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1114, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112535, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1114, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5313]={ + ["next_chapter"]=5314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28303, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6793, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1125, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113661, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1125, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5314]={ + ["next_chapter"]=5315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28402, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6817, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1137, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114797, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1137, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5315]={ + ["next_chapter"]=5316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6840, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1148, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115945, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1148, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5316]={ + ["next_chapter"]=5317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28602, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6865, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1159, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117105, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1159, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5317]={ + ["next_chapter"]=5318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28703, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6889, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1171, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118276, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1171, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5318]={ + ["next_chapter"]=5319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28805, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6913, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1183, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119459, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1183, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5319]={ + ["next_chapter"]=5320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28907, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6938, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1195, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120653, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1195, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=115324, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=531, + ["unit"]=0 + } + }, + [5320]={ + ["next_chapter"]=5321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=29010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6962, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1207, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121860, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1207, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5321]={ + ["next_chapter"]=5322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29114, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=6987, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1219, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123078, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1219, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5322]={ + ["next_chapter"]=5323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29218, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7012, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1231, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124309, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1231, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5323]={ + ["next_chapter"]=5324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29323, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1243, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125552, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1243, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5324]={ + ["next_chapter"]=5325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29428, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7063, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1256, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126808, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1256, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5325]={ + ["next_chapter"]=5326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29534, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7088, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1268, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128076, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1268, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5326]={ + ["next_chapter"]=5327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29641, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7114, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1281, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129357, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1281, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5327]={ + ["next_chapter"]=5328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29749, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7140, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1294, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130650, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1294, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5328]={ + ["next_chapter"]=5329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29857, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7166, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1307, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131957, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1307, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5329]={ + ["next_chapter"]=5330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29965, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7192, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1320, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133276, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1320, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=127389, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=532, + ["unit"]=0 + } + }, + [5330]={ + ["next_chapter"]=5331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=30075, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7218, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1333, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134609, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1333, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5331]={ + ["next_chapter"]=5332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30185, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7244, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1346, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135955, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1346, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5332]={ + ["next_chapter"]=5333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30296, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7271, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1360, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137315, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1360, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5333]={ + ["next_chapter"]=5334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30407, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7298, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1373, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138688, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1373, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5334]={ + ["next_chapter"]=5335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30519, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7325, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1387, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140075, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1387, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5335]={ + ["next_chapter"]=5336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30632, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7352, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1401, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141476, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1401, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5336]={ + ["next_chapter"]=5337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30746, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7379, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1415, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142890, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1415, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5337]={ + ["next_chapter"]=5338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30860, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7406, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1429, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144319, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1429, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5338]={ + ["next_chapter"]=5339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7434, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1443, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145763, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1443, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5339]={ + ["next_chapter"]=5340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31090, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7462, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1458, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147220, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1458, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=140717, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=533, + ["unit"]=0 + } + }, + [5340]={ + ["next_chapter"]=5341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=31206, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7489, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1472, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148692, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1472, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5341]={ + ["next_chapter"]=5342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31323, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7518, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1487, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150179, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1487, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5342]={ + ["next_chapter"]=5343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31441, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7546, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1502, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151681, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1502, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5343]={ + ["next_chapter"]=5344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31559, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7574, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1517, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153198, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1517, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5344]={ + ["next_chapter"]=5345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31678, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7603, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1532, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154730, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1532, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5345]={ + ["next_chapter"]=5346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31797, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7631, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1547, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156277, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1547, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5346]={ + ["next_chapter"]=5347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31918, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7660, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1563, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157840, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1563, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5347]={ + ["next_chapter"]=5348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32039, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7689, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1578, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159418, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1578, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5348]={ + ["next_chapter"]=5349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32160, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7719, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1594, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161013, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1594, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5349]={ + ["next_chapter"]=5350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32283, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7748, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1610, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162623, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1610, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=155439, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=534, + ["unit"]=0 + } + }, + [5350]={ + ["next_chapter"]=5351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=32406, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7777, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1626, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164249, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1626, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5351]={ + ["next_chapter"]=5352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32530, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7807, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1643, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165891, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1643, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5352]={ + ["next_chapter"]=5353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32654, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7837, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1659, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167550, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1659, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5353]={ + ["next_chapter"]=5354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32780, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7867, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1676, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169226, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1676, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5354]={ + ["next_chapter"]=5355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32906, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7897, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1692, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170918, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1692, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5355]={ + ["next_chapter"]=5356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33032, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7928, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1709, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172627, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1709, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5356]={ + ["next_chapter"]=5357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33160, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7958, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1726, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174354, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1726, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5357]={ + ["next_chapter"]=5358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33288, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=7989, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1744, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176097, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1744, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5358]={ + ["next_chapter"]=5359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33417, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8020, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1761, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177858, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1761, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5359]={ + ["next_chapter"]=5360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33546, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8051, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1779, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179637, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1779, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=171702, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=535, + ["unit"]=0 + } + }, + [5360]={ + ["next_chapter"]=5361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=33676, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8082, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1796, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181433, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1796, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5361]={ + ["next_chapter"]=5362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33807, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8114, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1814, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183248, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1814, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5362]={ + ["next_chapter"]=5363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33939, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8145, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1832, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185080, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1832, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5363]={ + ["next_chapter"]=5364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34072, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8177, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1851, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186931, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1851, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5364]={ + ["next_chapter"]=5365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34205, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8209, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1869, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188800, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1869, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5365]={ + ["next_chapter"]=5366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34339, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8241, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1888, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190688, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1888, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5366]={ + ["next_chapter"]=5367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34473, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8274, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1907, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192595, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1907, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5367]={ + ["next_chapter"]=5368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34609, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8306, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1926, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194521, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1926, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5368]={ + ["next_chapter"]=5369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34745, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8339, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1945, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196466, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1945, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5369]={ + ["next_chapter"]=5370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34882, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8372, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1965, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198431, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1965, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=189665, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=536, + ["unit"]=0 + } + }, + [5370]={ + ["next_chapter"]=5371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=35019, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8405, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1984, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200415, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=1984, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5371]={ + ["next_chapter"]=5372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35158, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8438, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2004, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202419, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2004, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5372]={ + ["next_chapter"]=5373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35297, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8471, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2024, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204444, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2024, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5373]={ + ["next_chapter"]=5374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35437, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8505, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2044, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206488, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2044, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5374]={ + ["next_chapter"]=5375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35577, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8539, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2065, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208553, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2065, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5375]={ + ["next_chapter"]=5376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35719, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8573, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2086, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210638, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2086, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5376]={ + ["next_chapter"]=5377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35861, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8607, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2106, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212745, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2106, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5377]={ + ["next_chapter"]=5378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8641, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2127, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214872, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2127, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5378]={ + ["next_chapter"]=5379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36147, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8675, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2149, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217021, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2149, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5379]={ + ["next_chapter"]=5380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36292, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8710, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2170, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219191, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2170, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=209509, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=537, + ["unit"]=0 + } + }, + [5380]={ + ["next_chapter"]=5381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=36437, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8745, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2192, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221383, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2192, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5381]={ + ["next_chapter"]=5382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36583, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8780, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2214, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223597, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2214, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5382]={ + ["next_chapter"]=5383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36730, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8815, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2236, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225833, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2236, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5383]={ + ["next_chapter"]=5384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36877, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8851, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2258, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228091, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2258, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5384]={ + ["next_chapter"]=5385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37025, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8886, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2281, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230372, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2281, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5385]={ + ["next_chapter"]=5386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37174, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8922, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2304, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232676, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2304, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5386]={ + ["next_chapter"]=5387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37324, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8958, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2327, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235003, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2327, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5387]={ + ["next_chapter"]=5388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37475, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=8994, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2350, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237353, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2350, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5388]={ + ["next_chapter"]=5389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37626, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9030, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2374, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239726, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2374, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5389]={ + ["next_chapter"]=5390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37778, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2397, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242124, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2397, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=231428, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=538, + ["unit"]=0 + } + }, + [5390]={ + ["next_chapter"]=5391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=37931, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9103, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2421, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244545, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2421, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5391]={ + ["next_chapter"]=5392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38085, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9140, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2445, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246990, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2445, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5392]={ + ["next_chapter"]=5393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38239, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9177, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2470, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249460, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2470, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5393]={ + ["next_chapter"]=5394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38395, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9215, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2495, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251955, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2495, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5394]={ + ["next_chapter"]=5395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38551, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9252, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2520, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254474, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2520, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5395]={ + ["next_chapter"]=5396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38708, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9290, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2545, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257019, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2545, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5396]={ + ["next_chapter"]=5397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38865, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2570, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259589, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2570, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5397]={ + ["next_chapter"]=5398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9366, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2596, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262185, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2596, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5398]={ + ["next_chapter"]=5399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39183, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9404, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2622, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264807, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2622, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5399]={ + ["next_chapter"]=5400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39343, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9442, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2648, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267455, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2648, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=255640, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=539, + ["unit"]=0 + } + }, + [5400]={ + ["next_chapter"]=5401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=39504, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9481, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2675, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270130, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2675, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5401]={ + ["next_chapter"]=5402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39666, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2701, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272831, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2701, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5402]={ + ["next_chapter"]=5403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39828, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9559, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2728, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275559, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2728, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5403]={ + ["next_chapter"]=5404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39991, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9598, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2756, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=278315, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2756, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5404]={ + ["next_chapter"]=5405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40156, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9637, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2783, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281098, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2783, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5405]={ + ["next_chapter"]=5406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40321, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9677, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2811, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283909, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2811, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5406]={ + ["next_chapter"]=5407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40486, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9717, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2839, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286748, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2839, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5407]={ + ["next_chapter"]=5408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40653, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9757, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2867, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289616, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2867, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5408]={ + ["next_chapter"]=5409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40820, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9797, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2896, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292512, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2896, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5409]={ + ["next_chapter"]=5410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40988, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9837, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2925, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295437, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2925, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=282386, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=540, + ["unit"]=0 + } + }, + [5410]={ + ["next_chapter"]=5411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=41157, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9878, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2954, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298391, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2954, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5411]={ + ["next_chapter"]=5412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41327, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9919, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2984, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301375, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=2984, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5412]={ + ["next_chapter"]=5413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41498, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=9960, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3014, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304389, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3014, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5413]={ + ["next_chapter"]=5414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41670, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3044, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307433, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3044, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5414]={ + ["next_chapter"]=5415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41842, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10042, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3074, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310507, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3074, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5415]={ + ["next_chapter"]=5416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42015, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10084, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3105, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313612, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3105, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5416]={ + ["next_chapter"]=5417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42189, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10125, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3136, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316749, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3136, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5417]={ + ["next_chapter"]=5418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42364, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10167, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3167, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319916, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3167, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5418]={ + ["next_chapter"]=5419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42540, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10210, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3199, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323115, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3199, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5419]={ + ["next_chapter"]=5420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42716, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10252, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3231, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=326346, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3231, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=311930, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=541, + ["unit"]=0 + } + }, + [5420]={ + ["next_chapter"]=5421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=42894, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10294, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3263, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329610, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3263, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5421]={ + ["next_chapter"]=5422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43072, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10337, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3296, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332906, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3296, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5422]={ + ["next_chapter"]=5423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43251, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10380, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3329, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=336235, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3329, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5423]={ + ["next_chapter"]=5424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43431, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10423, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3362, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339597, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3362, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5424]={ + ["next_chapter"]=5425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43612, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10467, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3396, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342993, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3396, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5425]={ + ["next_chapter"]=5426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43793, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10510, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3430, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346423, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3430, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5426]={ + ["next_chapter"]=5427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43976, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10554, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3464, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349888, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3464, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5427]={ + ["next_chapter"]=5428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44159, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10598, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3499, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=353387, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3499, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5428]={ + ["next_chapter"]=5429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44343, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10642, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3534, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356920, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3534, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5429]={ + ["next_chapter"]=5430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44528, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10687, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3569, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360490, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3569, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=344565, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=542, + ["unit"]=0 + } + }, + [5430]={ + ["next_chapter"]=5431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=44714, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10731, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3605, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=364095, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3605, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5431]={ + ["next_chapter"]=5432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44901, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10776, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3641, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=367735, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3641, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5432]={ + ["next_chapter"]=5433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45089, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10821, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3677, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=371413, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3677, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5433]={ + ["next_chapter"]=5434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45277, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10867, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3714, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=375127, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3714, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5434]={ + ["next_chapter"]=5435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45467, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10912, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3751, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378878, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3751, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5435]={ + ["next_chapter"]=5436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45657, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=10958, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3789, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382667, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3789, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5436]={ + ["next_chapter"]=5437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45848, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3827, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386494, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3827, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5437]={ + ["next_chapter"]=5438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46040, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11050, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3865, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390359, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3865, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5438]={ + ["next_chapter"]=5439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46233, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11096, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3904, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394262, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3904, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5439]={ + ["next_chapter"]=5440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46427, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11143, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3943, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398205, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3943, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=380614, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=543, + ["unit"]=0 + } + }, + [5440]={ + ["next_chapter"]=5441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=46622, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11189, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3982, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402187, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=3982, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5441]={ + ["next_chapter"]=5442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46817, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11236, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4022, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406209, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4022, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5442]={ + ["next_chapter"]=5443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47014, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11283, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4062, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410271, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4062, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5443]={ + ["next_chapter"]=5444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47211, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11331, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4103, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414374, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4103, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5444]={ + ["next_chapter"]=5445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47410, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11378, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4144, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418517, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4144, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5445]={ + ["next_chapter"]=5446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47609, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11426, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4185, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422703, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4185, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5446]={ + ["next_chapter"]=5447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47809, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11474, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4227, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426930, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4227, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5447]={ + ["next_chapter"]=5448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11522, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4269, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431199, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4269, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5448]={ + ["next_chapter"]=5449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48212, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11571, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4312, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=435511, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4312, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5449]={ + ["next_chapter"]=5450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48414, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11619, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4355, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=439866, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4355, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=420434, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=544, + ["unit"]=0 + } + }, + [5450]={ + ["next_chapter"]=5451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=48618, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11668, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4399, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=444265, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4399, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5451]={ + ["next_chapter"]=5452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48823, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11717, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4443, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=448707, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4443, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5452]={ + ["next_chapter"]=5453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49028, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11767, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4487, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=453194, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4487, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5453]={ + ["next_chapter"]=5454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49234, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11816, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4532, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=457726, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4532, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5454]={ + ["next_chapter"]=5455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49442, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4577, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=462304, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4577, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5455]={ + ["next_chapter"]=5456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49650, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11916, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4623, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466927, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4623, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5456]={ + ["next_chapter"]=5457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49859, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=11966, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4669, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471596, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4669, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5457]={ + ["next_chapter"]=5458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50069, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12017, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4716, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476312, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4716, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5458]={ + ["next_chapter"]=5459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50280, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4763, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481075, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4763, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5459]={ + ["next_chapter"]=5460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50492, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12118, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4811, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=485886, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4811, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=464421, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=545, + ["unit"]=0 + } + }, + [5460]={ + ["next_chapter"]=5461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=50705, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12169, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4859, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=490745, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4859, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5461]={ + ["next_chapter"]=5462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50919, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12220, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4907, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=495652, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4907, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5462]={ + ["next_chapter"]=5463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51133, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12272, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4957, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=500609, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=4957, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5463]={ + ["next_chapter"]=5464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51349, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12324, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5006, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=505615, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5006, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5464]={ + ["next_chapter"]=5465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51566, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12376, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5056, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=510671, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5056, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5465]={ + ["next_chapter"]=5466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51783, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12428, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5107, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=515778, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5107, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5466]={ + ["next_chapter"]=5467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12480, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5158, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=520936, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5158, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5467]={ + ["next_chapter"]=5468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52221, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12533, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5209, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=526145, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5209, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5468]={ + ["next_chapter"]=5469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52441, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12586, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5261, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=531406, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5261, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5469]={ + ["next_chapter"]=5470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52662, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12639, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5314, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=536720, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5314, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=513010, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=546, + ["unit"]=0 + } + }, + [5470]={ + ["next_chapter"]=5471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=52885, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12692, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5367, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=542088, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5367, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5471]={ + ["next_chapter"]=5472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53108, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12746, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5421, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=547509, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5421, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5472]={ + ["next_chapter"]=5473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53332, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12800, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5475, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552984, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5475, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5473]={ + ["next_chapter"]=5474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53557, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12854, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5530, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=558513, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5530, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5474]={ + ["next_chapter"]=5475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53783, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12908, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5585, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564099, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5585, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5475]={ + ["next_chapter"]=5476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=12962, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5641, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=569740, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5641, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5476]={ + ["next_chapter"]=5477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54238, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13017, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5697, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=575437, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5697, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5477]={ + ["next_chapter"]=5478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54467, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13072, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5754, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=581191, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5754, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5478]={ + ["next_chapter"]=5479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54696, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13127, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5812, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=587003, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5812, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5479]={ + ["next_chapter"]=5480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54927, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13183, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5870, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=592873, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5870, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=566682, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=547, + ["unit"]=0 + } + }, + [5480]={ + ["next_chapter"]=5481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=55159, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13238, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5929, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=598802, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5929, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5481]={ + ["next_chapter"]=5482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55392, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13294, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5988, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=604790, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=5988, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5482]={ + ["next_chapter"]=5483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55625, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13350, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6048, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=610838, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6048, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5483]={ + ["next_chapter"]=5484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55860, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13406, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6108, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=616946, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6108, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5484]={ + ["next_chapter"]=5485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56096, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13463, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6169, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=623116, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6169, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5485]={ + ["next_chapter"]=5486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56332, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6231, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=629347, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6231, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5486]={ + ["next_chapter"]=5487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56570, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13577, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6293, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=635641, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6293, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5487]={ + ["next_chapter"]=5488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56808, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13634, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6356, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=641997, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6356, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5488]={ + ["next_chapter"]=5489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57048, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13692, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6420, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=648417, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6420, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5489]={ + ["next_chapter"]=5490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57289, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13749, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6484, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654901, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6484, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=625969, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=548, + ["unit"]=0 + } + }, + [5490]={ + ["next_chapter"]=5491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=57530, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13807, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6549, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=661450, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6549, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5491]={ + ["next_chapter"]=5492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57773, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13865, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6615, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=668065, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6615, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5492]={ + ["next_chapter"]=5493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58016, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13924, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6681, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=674745, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6681, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5493]={ + ["next_chapter"]=5494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58261, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=13983, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6747, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=681493, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6747, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5494]={ + ["next_chapter"]=5495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=14041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6815, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=688308, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6815, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5495]={ + ["next_chapter"]=5496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58753, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=14101, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6883, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=695191, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6883, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5496]={ + ["next_chapter"]=5497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=14160, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6952, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=702143, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=6952, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5497]={ + ["next_chapter"]=5498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59249, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=14220, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7021, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=709164, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7021, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5498]={ + ["next_chapter"]=5499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59498, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=14280, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7092, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=716256, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7092, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5499]={ + ["next_chapter"]=5500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59749, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=14340, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7163, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=723418, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7163, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=691459, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=549, + ["unit"]=0 + } + }, + [5500]={ + ["next_chapter"]=5501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7234, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=730653, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7234, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5501]={ + ["next_chapter"]=5502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7307, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=737959, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7307, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5502]={ + ["next_chapter"]=5503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7380, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=745339, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7380, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5503]={ + ["next_chapter"]=5504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7453, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=752792, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7453, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5504]={ + ["next_chapter"]=5505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7528, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=760320, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7528, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5505]={ + ["next_chapter"]=5506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7603, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=767923, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7603, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5506]={ + ["next_chapter"]=5507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7679, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=775603, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7679, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5507]={ + ["next_chapter"]=5508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7756, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=783359, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7756, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5508]={ + ["next_chapter"]=5509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7834, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=791192, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7834, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5509]={ + ["next_chapter"]=5510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7912, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799104, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7912, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=763801, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=550, + ["unit"]=0 + } + }, + [5510]={ + ["next_chapter"]=5511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=60001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7991, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=807095, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=7991, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5511]={ + ["next_chapter"]=5512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8071, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=815166, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8071, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5512]={ + ["next_chapter"]=5513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8152, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=823318, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8152, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5513]={ + ["next_chapter"]=5514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8233, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=831551, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8233, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5514]={ + ["next_chapter"]=5515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8316, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=839866, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8316, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5515]={ + ["next_chapter"]=5516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8399, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=848265, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8399, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5516]={ + ["next_chapter"]=5517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8483, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=856748, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8483, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5517]={ + ["next_chapter"]=5518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8567, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=865315, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8567, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5518]={ + ["next_chapter"]=5519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8653, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=873968, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8653, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5519]={ + ["next_chapter"]=5520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60005, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8740, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=882708, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8740, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=843712, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=551, + ["unit"]=0 + } + }, + [5520]={ + ["next_chapter"]=5521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=60006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8827, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=891535, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8827, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5521]={ + ["next_chapter"]=5522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60007, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8915, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=900451, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=8915, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5522]={ + ["next_chapter"]=5523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60008, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9005, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=909455, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9005, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5523]={ + ["next_chapter"]=5524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60009, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9095, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=918550, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9095, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5524]={ + ["next_chapter"]=5525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9186, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=927735, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9186, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5525]={ + ["next_chapter"]=5526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60011, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15003, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9277, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=937013, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9277, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5526]={ + ["next_chapter"]=5527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60013, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15003, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9370, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=946383, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9370, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5527]={ + ["next_chapter"]=5528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60014, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9464, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=955847, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9464, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5528]={ + ["next_chapter"]=5529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60016, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9558, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=965405, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9558, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5529]={ + ["next_chapter"]=5530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60018, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9654, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=975059, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9654, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=931983, + ["unit"]=7 + }, + ["grasp_mastery_reward"]={ + ["value"]=552, + ["unit"]=0 + } + }, + [5530]={ + ["next_chapter"]=5531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=60019, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9751, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=984810, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9751, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5531]={ + ["next_chapter"]=5532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60021, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9848, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=994658, + ["unit"]=7 + }, + ["idle_gold"]={ + ["value"]=9848, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5532]={ + ["next_chapter"]=5533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15006, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9947, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1005, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9947, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5533]={ + ["next_chapter"]=5534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60026, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15006, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10046, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1015, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10046, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5534]={ + ["next_chapter"]=5535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60028, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15007, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10147, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1025, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10147, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5535]={ + ["next_chapter"]=5536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15008, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10248, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1035, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10248, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5536]={ + ["next_chapter"]=5537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60034, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15008, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10350, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1045, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10350, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5537]={ + ["next_chapter"]=5538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60036, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15009, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10454, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1056, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10454, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5538]={ + ["next_chapter"]=5539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60040, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15010, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10559, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1066, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10559, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5539]={ + ["next_chapter"]=5540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60043, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15011, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10664, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1077, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10664, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=553, + ["unit"]=0 + } + }, + [5540]={ + ["next_chapter"]=5541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=60046, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15012, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10771, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1088, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10771, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5541]={ + ["next_chapter"]=5542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60050, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15012, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10878, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1099, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10878, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5542]={ + ["next_chapter"]=5543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60053, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15013, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10987, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1110, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=10987, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5543]={ + ["next_chapter"]=5544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60057, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15014, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11097, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1121, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=11097, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5544]={ + ["next_chapter"]=5545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60061, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15015, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11208, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1132, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=11208, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5545]={ + ["next_chapter"]=5546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60066, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15016, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11320, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1143, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=11320, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5546]={ + ["next_chapter"]=5547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60070, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15018, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11433, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1155, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=11433, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5547]={ + ["next_chapter"]=5548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60075, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15019, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11548, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1166, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=11548, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5548]={ + ["next_chapter"]=5549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60080, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15020, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11663, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1178, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=11663, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5549]={ + ["next_chapter"]=5550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60085, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15021, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11780, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1190, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=11780, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=554, + ["unit"]=0 + } + }, + [5550]={ + ["next_chapter"]=5551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=60090, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11898, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1202, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=11898, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5551]={ + ["next_chapter"]=5552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60096, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15024, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12017, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1214, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=12017, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5552]={ + ["next_chapter"]=5553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60101, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15025, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12137, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1226, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=12137, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5553]={ + ["next_chapter"]=5554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60107, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15027, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12258, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1238, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=12258, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5554]={ + ["next_chapter"]=5555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60113, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15028, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12381, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1250, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=12381, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5555]={ + ["next_chapter"]=5556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60120, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15030, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12504, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1263, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=12504, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5556]={ + ["next_chapter"]=5557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60126, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15032, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12630, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1276, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=12630, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5557]={ + ["next_chapter"]=5558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60133, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15033, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12756, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1288, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=12756, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5558]={ + ["next_chapter"]=5559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60140, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12883, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1301, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=12883, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5559]={ + ["next_chapter"]=5560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60148, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13012, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1314, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=13012, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1256, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=555, + ["unit"]=0 + } + }, + [5560]={ + ["next_chapter"]=5561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=60156, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15039, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13142, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1327, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=13142, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5561]={ + ["next_chapter"]=5562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60163, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13274, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1341, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=13274, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5562]={ + ["next_chapter"]=5563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60172, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15043, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13406, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1354, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=13406, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5563]={ + ["next_chapter"]=5564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60180, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15045, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13541, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1368, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=13541, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5564]={ + ["next_chapter"]=5565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60189, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15047, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13676, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1381, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=13676, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5565]={ + ["next_chapter"]=5566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60198, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15049, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13813, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1395, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=13813, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5566]={ + ["next_chapter"]=5567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60207, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15052, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13951, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1409, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=13951, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5567]={ + ["next_chapter"]=5568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60217, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15054, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14090, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1423, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=14090, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5568]={ + ["next_chapter"]=5569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60226, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15057, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14231, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1437, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=14231, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5569]={ + ["next_chapter"]=5570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60237, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15059, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14374, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1452, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=14374, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=556, + ["unit"]=0 + } + }, + [5570]={ + ["next_chapter"]=5571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=60247, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15062, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14517, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1466, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=14517, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5571]={ + ["next_chapter"]=5572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60258, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14662, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1481, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=14662, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5572]={ + ["next_chapter"]=5573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60269, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14809, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1496, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=14809, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5573]={ + ["next_chapter"]=5574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60280, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15070, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14957, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1511, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=14957, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5574]={ + ["next_chapter"]=5575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60292, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15073, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15107, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1526, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=15107, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5575]={ + ["next_chapter"]=5576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60304, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15076, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15258, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1541, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=15258, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5576]={ + ["next_chapter"]=5577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60316, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15079, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15410, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1556, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=15410, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5577]={ + ["next_chapter"]=5578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60329, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15082, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15565, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1572, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=15565, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5578]={ + ["next_chapter"]=5579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60342, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15085, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15720, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1588, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=15720, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5579]={ + ["next_chapter"]=5580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60355, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15089, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15877, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1604, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=15877, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1533, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=557, + ["unit"]=0 + } + }, + [5580]={ + ["next_chapter"]=5581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=60369, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15092, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16036, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1620, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=16036, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5581]={ + ["next_chapter"]=5582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60383, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15096, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16197, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1636, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=16197, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5582]={ + ["next_chapter"]=5583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60397, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15099, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16358, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1652, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=16358, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5583]={ + ["next_chapter"]=5584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60412, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15103, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16522, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1669, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=16522, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5584]={ + ["next_chapter"]=5585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60427, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15107, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16687, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1685, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=16687, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5585]={ + ["next_chapter"]=5586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60442, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15111, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16854, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1702, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=16854, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5586]={ + ["next_chapter"]=5587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60458, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17023, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1719, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=17023, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5587]={ + ["next_chapter"]=5588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60474, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15119, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17193, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1736, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=17193, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5588]={ + ["next_chapter"]=5589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60491, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15123, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17365, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1754, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=17365, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5589]={ + ["next_chapter"]=5590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60508, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15127, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17539, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1771, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=17539, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1693, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=558, + ["unit"]=0 + } + }, + [5590]={ + ["next_chapter"]=5591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=60525, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15131, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17714, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1789, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=17714, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5591]={ + ["next_chapter"]=5592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60543, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15136, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17891, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1807, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=17891, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5592]={ + ["next_chapter"]=5593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60561, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15140, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18070, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1825, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=18070, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5593]={ + ["next_chapter"]=5594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60579, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15145, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18251, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1843, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=18251, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5594]={ + ["next_chapter"]=5595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60598, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15150, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18433, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1862, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=18433, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5595]={ + ["next_chapter"]=5596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60617, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15154, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18617, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1880, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=18617, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5596]={ + ["next_chapter"]=5597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60637, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15159, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18804, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1899, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=18804, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5597]={ + ["next_chapter"]=5598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60657, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15164, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18992, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1918, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=18992, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5598]={ + ["next_chapter"]=5599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60678, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15169, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19182, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1937, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=19182, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5599]={ + ["next_chapter"]=5600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60699, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19373, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1957, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=19373, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=559, + ["unit"]=0 + } + }, + [5600]={ + ["next_chapter"]=5601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=60720, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15180, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19567, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1976, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=19567, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5601]={ + ["next_chapter"]=5602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60742, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15185, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19763, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1996, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=19763, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5602]={ + ["next_chapter"]=5603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60764, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15191, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19960, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2016, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=19960, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5603]={ + ["next_chapter"]=5604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60787, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15197, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20160, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2036, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=20160, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5604]={ + ["next_chapter"]=5605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60810, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15202, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20362, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2057, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=20362, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5605]={ + ["next_chapter"]=5606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60833, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15208, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20565, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2077, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=20565, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5606]={ + ["next_chapter"]=5607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60858, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15214, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20771, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2098, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=20771, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5607]={ + ["next_chapter"]=5608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60882, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15221, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20979, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2119, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=20979, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5608]={ + ["next_chapter"]=5609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60907, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15227, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21188, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2140, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=21188, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5609]={ + ["next_chapter"]=5610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60932, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15233, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21400, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2161, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=21400, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2066, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=560, + ["unit"]=0 + } + }, + [5610]={ + ["next_chapter"]=5611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=60958, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15240, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21614, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2183, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=21614, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5611]={ + ["next_chapter"]=5612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60985, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15246, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21830, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2205, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=21830, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5612]={ + ["next_chapter"]=5613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15253, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22049, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2227, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=22049, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5613]={ + ["next_chapter"]=5614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61039, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15260, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22269, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2249, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=22269, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5614]={ + ["next_chapter"]=5615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61067, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15267, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22492, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2272, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=22492, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5615]={ + ["next_chapter"]=5616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61095, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15274, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22717, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2294, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=22717, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5616]={ + ["next_chapter"]=5617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61124, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15281, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22944, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2317, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=22944, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5617]={ + ["next_chapter"]=5618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61153, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15288, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23173, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2341, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=23173, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5618]={ + ["next_chapter"]=5619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61183, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15296, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23405, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2364, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=23405, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5619]={ + ["next_chapter"]=5620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61213, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15303, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23639, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2388, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=23639, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2282, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=561, + ["unit"]=0 + } + }, + [5620]={ + ["next_chapter"]=5621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=61244, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15311, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23876, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2411, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=23876, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5621]={ + ["next_chapter"]=5622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61276, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15319, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24114, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2436, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=24114, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5622]={ + ["next_chapter"]=5623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61307, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15327, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24356, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2460, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=24356, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5623]={ + ["next_chapter"]=5624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61340, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15335, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24599, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2485, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=24599, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5624]={ + ["next_chapter"]=5625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61373, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15343, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24845, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2509, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=24845, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5625]={ + ["next_chapter"]=5626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61406, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15352, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25094, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2534, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=25094, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5626]={ + ["next_chapter"]=5627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61440, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15360, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25344, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2560, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=25344, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5627]={ + ["next_chapter"]=5628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61475, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15369, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25598, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2585, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=25598, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5628]={ + ["next_chapter"]=5629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61510, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15377, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25854, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2611, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=25854, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5629]={ + ["next_chapter"]=5630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61546, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15386, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26112, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2637, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=26112, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2521, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=562, + ["unit"]=0 + } + }, + [5630]={ + ["next_chapter"]=5631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=61582, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15395, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26374, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2664, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=26374, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5631]={ + ["next_chapter"]=5632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61619, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15405, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26637, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2690, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=26637, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5632]={ + ["next_chapter"]=5633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61656, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15414, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26904, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2717, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=26904, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5633]={ + ["next_chapter"]=5634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61694, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15423, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27173, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2744, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=27173, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5634]={ + ["next_chapter"]=5635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61732, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15433, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27444, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2772, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=27444, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5635]={ + ["next_chapter"]=5636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61771, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15443, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27719, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2800, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=27719, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5636]={ + ["next_chapter"]=5637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61811, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15453, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27996, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2828, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=27996, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5637]={ + ["next_chapter"]=5638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61851, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15463, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28276, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2856, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=28276, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5638]={ + ["next_chapter"]=5639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61892, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15473, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28559, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2884, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=28559, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5639]={ + ["next_chapter"]=5640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61934, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15483, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28844, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2913, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=28844, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=2785, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=563, + ["unit"]=0 + } + }, + [5640]={ + ["next_chapter"]=5641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=61976, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15494, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29133, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2942, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=29133, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5641]={ + ["next_chapter"]=5642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62018, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15505, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29424, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2972, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=29424, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5642]={ + ["next_chapter"]=5643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62062, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15515, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29718, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3002, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=29718, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5643]={ + ["next_chapter"]=5644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62105, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15526, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30016, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3032, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=30016, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5644]={ + ["next_chapter"]=5645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62150, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15537, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30316, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3062, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=30316, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5645]={ + ["next_chapter"]=5646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62195, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15549, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30619, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3093, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=30619, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5646]={ + ["next_chapter"]=5647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62241, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15560, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30925, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3123, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=30925, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5647]={ + ["next_chapter"]=5648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62287, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15572, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31234, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3155, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=31234, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5648]={ + ["next_chapter"]=5649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62334, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15584, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31547, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3186, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=31547, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5649]={ + ["next_chapter"]=5650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62382, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15595, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31862, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3218, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=31862, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3076, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=564, + ["unit"]=0 + } + }, + [5650]={ + ["next_chapter"]=5651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=62430, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15608, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32181, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3250, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=32181, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5651]={ + ["next_chapter"]=5652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62479, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15620, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32503, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3283, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=32503, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5652]={ + ["next_chapter"]=5653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62529, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15632, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32828, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3316, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=32828, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5653]={ + ["next_chapter"]=5654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62579, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15645, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33156, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3349, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=33156, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5654]={ + ["next_chapter"]=5655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62630, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15657, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33487, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3382, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=33487, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5655]={ + ["next_chapter"]=5656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62681, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15670, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33822, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3416, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=33822, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5656]={ + ["next_chapter"]=5657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62733, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15683, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34161, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3450, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=34161, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5657]={ + ["next_chapter"]=5658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62786, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15697, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34502, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3485, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=34502, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5658]={ + ["next_chapter"]=5659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62840, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15710, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34847, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3520, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=34847, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5659]={ + ["next_chapter"]=5660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62894, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15724, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35196, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3555, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=35196, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3398, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=565, + ["unit"]=0 + } + }, + [5660]={ + ["next_chapter"]=5661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=62949, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15737, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35548, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3590, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=35548, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5661]={ + ["next_chapter"]=5662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63005, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15751, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35903, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3626, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=35903, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5662]={ + ["next_chapter"]=5663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63061, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15765, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36262, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3662, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=36262, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5663]={ + ["next_chapter"]=5664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63118, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15780, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36625, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3699, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=36625, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5664]={ + ["next_chapter"]=5665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63176, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15794, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36991, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3736, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=36991, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5665]={ + ["next_chapter"]=5666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63234, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15809, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37361, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3773, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=37361, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5666]={ + ["next_chapter"]=5667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63293, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15823, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37734, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3811, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=37734, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5667]={ + ["next_chapter"]=5668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63353, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15838, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38112, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3849, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=38112, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5668]={ + ["next_chapter"]=5669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63414, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15853, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38493, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3888, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=38493, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5669]={ + ["next_chapter"]=5670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63475, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15869, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38878, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3927, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=38878, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=3753, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=566, + ["unit"]=0 + } + }, + [5670]={ + ["next_chapter"]=5671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=63537, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15884, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39267, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3966, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=39267, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5671]={ + ["next_chapter"]=5672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63600, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15900, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39659, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4006, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=39659, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5672]={ + ["next_chapter"]=5673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63664, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15916, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40056, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4046, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=40056, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5673]={ + ["next_chapter"]=5674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63728, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15932, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40456, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4086, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=40456, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5674]={ + ["next_chapter"]=5675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63793, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15948, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40861, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4127, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=40861, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5675]={ + ["next_chapter"]=5676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63859, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15965, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41270, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4168, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=41270, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5676]={ + ["next_chapter"]=5677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63925, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15981, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41682, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4210, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=41682, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5677]={ + ["next_chapter"]=5678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63993, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=15998, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42099, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4252, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=42099, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5678]={ + ["next_chapter"]=5679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64061, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16015, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42520, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4295, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=42520, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5679]={ + ["next_chapter"]=5680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64129, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16032, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42945, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4337, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=42945, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=567, + ["unit"]=0 + } + }, + [5680]={ + ["next_chapter"]=5681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=64199, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16050, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43375, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4381, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=43375, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5681]={ + ["next_chapter"]=5682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64269, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43809, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4425, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=43809, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5682]={ + ["next_chapter"]=5683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64341, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16085, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44247, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4469, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=44247, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5683]={ + ["next_chapter"]=5684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64413, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16103, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44689, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4514, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=44689, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5684]={ + ["next_chapter"]=5685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64485, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16121, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45136, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4559, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=45136, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5685]={ + ["next_chapter"]=5686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64559, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16140, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45587, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4604, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=45587, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5686]={ + ["next_chapter"]=5687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64633, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16158, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46043, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4650, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=46043, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5687]={ + ["next_chapter"]=5688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64708, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16177, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46504, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4697, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=46504, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5688]={ + ["next_chapter"]=5689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64784, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16196, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46969, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4744, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=46969, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5689]={ + ["next_chapter"]=5690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64861, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16215, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47438, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4791, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=47438, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=4580, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=568, + ["unit"]=0 + } + }, + [5690]={ + ["next_chapter"]=5691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=64938, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16235, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47913, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4839, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=47913, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5691]={ + ["next_chapter"]=5692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65017, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16254, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48392, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4888, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=48392, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5692]={ + ["next_chapter"]=5693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65096, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16274, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48876, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4936, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=48876, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5693]={ + ["next_chapter"]=5694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65176, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16294, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49365, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4986, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=49365, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5694]={ + ["next_chapter"]=5695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65257, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16314, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49858, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5036, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=49858, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5695]={ + ["next_chapter"]=5696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65339, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16335, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50357, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5086, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=50357, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5696]={ + ["next_chapter"]=5697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65421, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16355, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50860, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5137, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=50860, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5697]={ + ["next_chapter"]=5698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65505, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16376, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51369, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5188, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=51369, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5698]={ + ["next_chapter"]=5699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65589, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16397, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51883, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5240, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=51883, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5699]={ + ["next_chapter"]=5700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65674, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16419, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52401, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5293, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=52401, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=569, + ["unit"]=0 + } + }, + [5700]={ + ["next_chapter"]=5701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=65760, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16440, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52925, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5345, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=52925, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5701]={ + ["next_chapter"]=5702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65847, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16462, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53455, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5399, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=53455, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5702]={ + ["next_chapter"]=5703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65935, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16484, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53989, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5453, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=53989, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5703]={ + ["next_chapter"]=5704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66023, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16506, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54529, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5507, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=54529, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5704]={ + ["next_chapter"]=5705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66113, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16528, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55074, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5563, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=55074, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5705]={ + ["next_chapter"]=5706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66203, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16551, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55625, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5618, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=55625, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5706]={ + ["next_chapter"]=5707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66294, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16574, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56181, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5674, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=56181, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5707]={ + ["next_chapter"]=5708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66386, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16597, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56743, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5731, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=56743, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5708]={ + ["next_chapter"]=5709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66479, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16620, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=57311, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5788, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=57311, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5709]={ + ["next_chapter"]=5710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66573, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16643, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=57884, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5846, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=57884, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=5588, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=570, + ["unit"]=0 + } + }, + [5710]={ + ["next_chapter"]=5711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=66668, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16667, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58463, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5905, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=58463, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5711]={ + ["next_chapter"]=5712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66764, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16691, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59047, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5964, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=59047, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5712]={ + ["next_chapter"]=5713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66860, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16715, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59638, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6023, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=59638, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5713]={ + ["next_chapter"]=5714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66958, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16739, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=60234, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6084, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=60234, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5714]={ + ["next_chapter"]=5715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67056, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16764, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=60836, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6144, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=60836, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5715]={ + ["next_chapter"]=5716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67156, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16789, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=61445, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6206, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=61445, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5716]={ + ["next_chapter"]=5717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67256, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16814, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=62059, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6268, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=62059, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5717]={ + ["next_chapter"]=5718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67357, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16839, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=62680, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6331, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=62680, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5718]={ + ["next_chapter"]=5719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67459, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16865, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=63307, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6394, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=63307, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5719]={ + ["next_chapter"]=5720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67562, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16891, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=63940, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6458, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=63940, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6173, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=571, + ["unit"]=0 + } + }, + [5720]={ + ["next_chapter"]=5721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=67667, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16917, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=64579, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6522, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=64579, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5721]={ + ["next_chapter"]=5722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67772, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16943, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=65225, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6588, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=65225, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5722]={ + ["next_chapter"]=5723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67878, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16969, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=65877, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6654, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=65877, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5723]={ + ["next_chapter"]=5724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67984, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=16996, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=66536, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6720, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=66536, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5724]={ + ["next_chapter"]=5725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68092, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=67201, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6787, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=67201, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5725]={ + ["next_chapter"]=5726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68201, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17050, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=67873, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6855, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=67873, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5726]={ + ["next_chapter"]=5727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68311, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17078, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=68552, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6924, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=68552, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5727]={ + ["next_chapter"]=5728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68422, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17105, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=69238, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6993, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=69238, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5728]={ + ["next_chapter"]=5729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68534, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17133, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=69930, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7063, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=69930, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5729]={ + ["next_chapter"]=5730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68646, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17162, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=70629, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7134, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=70629, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=6818, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=572, + ["unit"]=0 + } + }, + [5730]={ + ["next_chapter"]=5731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=68760, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=71336, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7205, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=71336, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5731]={ + ["next_chapter"]=5732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68875, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17219, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=72049, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7277, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=72049, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5732]={ + ["next_chapter"]=5733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68991, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17248, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=72769, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7350, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=72769, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5733]={ + ["next_chapter"]=5734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69108, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17277, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=73497, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7423, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=73497, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5734]={ + ["next_chapter"]=5735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69225, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17306, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=74232, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7497, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=74232, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5735]={ + ["next_chapter"]=5736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69344, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17336, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=74974, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7572, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=74974, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5736]={ + ["next_chapter"]=5737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69464, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17366, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=75724, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7648, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=75724, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5737]={ + ["next_chapter"]=5738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69585, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17396, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=76481, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7725, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=76481, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5738]={ + ["next_chapter"]=5739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69707, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17427, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=77246, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7802, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=77246, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5739]={ + ["next_chapter"]=5740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69829, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17457, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=78019, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7880, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=78019, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=7532, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=573, + ["unit"]=0 + } + }, + [5740]={ + ["next_chapter"]=5741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=69953, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17488, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=78799, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7959, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=78799, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5741]={ + ["next_chapter"]=5742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70078, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=79587, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8038, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=79587, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5742]={ + ["next_chapter"]=5743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70204, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17551, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=80383, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8119, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=80383, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5743]={ + ["next_chapter"]=5744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70331, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17583, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=81187, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8200, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=81187, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5744]={ + ["next_chapter"]=5745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70459, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17615, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=81998, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8282, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=81998, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5745]={ + ["next_chapter"]=5746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70588, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17647, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=82818, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8365, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=82818, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5746]={ + ["next_chapter"]=5747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70719, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=83647, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8448, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=83647, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5747]={ + ["next_chapter"]=5748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70850, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17712, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=84483, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8533, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=84483, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5748]={ + ["next_chapter"]=5749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70982, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17746, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=85328, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8618, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=85328, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5749]={ + ["next_chapter"]=5750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71116, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17779, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=86181, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8704, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=86181, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=8320, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=574, + ["unit"]=0 + } + }, + [5750]={ + ["next_chapter"]=5751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=71250, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17813, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=87043, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8791, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=87043, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5751]={ + ["next_chapter"]=5752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71386, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17846, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=87913, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8879, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=87913, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5752]={ + ["next_chapter"]=5753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71522, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17881, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=88793, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8968, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=88793, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5753]={ + ["next_chapter"]=5754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71660, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17915, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=89680, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9058, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=89680, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5754]={ + ["next_chapter"]=5755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71799, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17950, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=90577, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9148, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=90577, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5755]={ + ["next_chapter"]=5756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71939, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=17985, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=91483, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9240, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=91483, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5756]={ + ["next_chapter"]=5757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72080, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18020, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=92398, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9332, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=92398, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5757]={ + ["next_chapter"]=5758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72222, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18055, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=93322, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9426, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=93322, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5758]={ + ["next_chapter"]=5759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72365, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18091, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=94255, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9520, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=94255, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5759]={ + ["next_chapter"]=5760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72509, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18127, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=95198, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9615, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=95198, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=9190, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=575, + ["unit"]=0 + } + }, + [5760]={ + ["next_chapter"]=5761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=72655, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18164, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=96150, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9711, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=96150, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5761]={ + ["next_chapter"]=5762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72801, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18200, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=97111, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9808, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=97111, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5762]={ + ["next_chapter"]=5763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72949, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18237, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=98082, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9906, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=98082, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5763]={ + ["next_chapter"]=5764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73098, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18274, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=99063, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10005, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=99063, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5764]={ + ["next_chapter"]=5765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73248, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18312, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=100054, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10105, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=100054, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5765]={ + ["next_chapter"]=5766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73399, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18350, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=101054, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10206, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=101054, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5766]={ + ["next_chapter"]=5767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73551, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18388, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=102065, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10309, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=102065, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5767]={ + ["next_chapter"]=5768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73705, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18426, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=103085, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10412, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=103085, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5768]={ + ["next_chapter"]=5769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73859, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18465, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=104116, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10516, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=104116, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5769]={ + ["next_chapter"]=5770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74015, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18504, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=105157, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10621, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=105157, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=10152, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=576, + ["unit"]=0 + } + }, + [5770]={ + ["next_chapter"]=5771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=74172, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18543, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=106209, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10727, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=106209, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5771]={ + ["next_chapter"]=5772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74330, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18582, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=107271, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10834, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=107271, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5772]={ + ["next_chapter"]=5773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74489, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18622, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=108344, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10943, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=108344, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5773]={ + ["next_chapter"]=5774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74649, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18662, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=109427, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11052, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=109427, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5774]={ + ["next_chapter"]=5775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74811, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18703, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=110521, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11163, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=110521, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5775]={ + ["next_chapter"]=5776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18743, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=111627, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11274, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=111627, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5776]={ + ["next_chapter"]=5777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75138, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18784, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=112743, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11387, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=112743, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5777]={ + ["next_chapter"]=5778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75303, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18826, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=113870, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11501, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=113870, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5778]={ + ["next_chapter"]=5779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75469, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18867, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=115009, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11616, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=115009, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5779]={ + ["next_chapter"]=5780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75637, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18909, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=116159, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11732, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=116159, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=11214, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=577, + ["unit"]=0 + } + }, + [5780]={ + ["next_chapter"]=5781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=75805, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18951, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=117321, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11849, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=117321, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5781]={ + ["next_chapter"]=5782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75975, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=18994, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=118494, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11968, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=118494, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5782]={ + ["next_chapter"]=5783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76147, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=119679, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12088, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=119679, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5783]={ + ["next_chapter"]=5784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76319, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19080, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=120876, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12208, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=120876, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5784]={ + ["next_chapter"]=5785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76493, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19123, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=122084, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12331, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=122084, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5785]={ + ["next_chapter"]=5786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76667, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19167, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=123305, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12454, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=123305, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5786]={ + ["next_chapter"]=5787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76843, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19211, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=124538, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12578, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=124538, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5787]={ + ["next_chapter"]=5788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77021, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19255, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=125784, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12704, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=125784, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5788]={ + ["next_chapter"]=5789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77199, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19300, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=127042, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12831, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=127042, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5789]={ + ["next_chapter"]=5790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77379, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19345, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=128312, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12960, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=128312, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=12387, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=578, + ["unit"]=0 + } + }, + [5790]={ + ["next_chapter"]=5791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=77560, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19390, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=129595, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13089, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=129595, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5791]={ + ["next_chapter"]=5792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77742, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19436, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=130891, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13220, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=130891, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5792]={ + ["next_chapter"]=5793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77926, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19481, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=132200, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13352, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=132200, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5793]={ + ["next_chapter"]=5794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78111, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19528, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=133522, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13486, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=133522, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5794]={ + ["next_chapter"]=5795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78297, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19574, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=134857, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13621, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=134857, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5795]={ + ["next_chapter"]=5796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78484, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19621, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=136206, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13757, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=136206, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5796]={ + ["next_chapter"]=5797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78673, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19668, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=137568, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13894, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=137568, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5797]={ + ["next_chapter"]=5798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78863, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19716, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=138943, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14033, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=138943, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5798]={ + ["next_chapter"]=5799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79054, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19763, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=140333, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14174, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=140333, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5799]={ + ["next_chapter"]=5800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79246, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19812, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=141736, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14315, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=141736, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=13683, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=579, + ["unit"]=0 + } + }, + [5800]={ + ["next_chapter"]=5801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=79440, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19860, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=143154, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14459, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=143154, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5801]={ + ["next_chapter"]=5802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79635, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19909, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=144585, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14603, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=144585, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5802]={ + ["next_chapter"]=5803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79831, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=19958, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=146031, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14749, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=146031, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5803]={ + ["next_chapter"]=5804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80029, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20007, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=147491, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14897, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=147491, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5804]={ + ["next_chapter"]=5805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80228, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20057, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=148966, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15046, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=148966, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5805]={ + ["next_chapter"]=5806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80428, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20107, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=150456, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15196, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=150456, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5806]={ + ["next_chapter"]=5807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80630, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20157, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=151960, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15348, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=151960, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5807]={ + ["next_chapter"]=5808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80833, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20208, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=153480, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15501, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=153480, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5808]={ + ["next_chapter"]=5809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81037, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20259, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=155015, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15656, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=155015, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5809]={ + ["next_chapter"]=5810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81243, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20311, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=156565, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15813, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=156565, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=15114, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=580, + ["unit"]=0 + } + }, + [5810]={ + ["next_chapter"]=5811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=81450, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20362, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=158131, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15971, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=158131, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5811]={ + ["next_chapter"]=5812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81658, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20414, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=159712, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16131, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=159712, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5812]={ + ["next_chapter"]=5813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81867, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20467, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=161309, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16292, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=161309, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5813]={ + ["next_chapter"]=5814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82078, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=162922, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16455, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=162922, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5814]={ + ["next_chapter"]=5815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82291, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20573, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=164551, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16620, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=164551, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5815]={ + ["next_chapter"]=5816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82504, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20626, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=166197, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16786, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=166197, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5816]={ + ["next_chapter"]=5817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82719, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=167859, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16954, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=167859, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5817]={ + ["next_chapter"]=5818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82936, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20734, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=169537, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17123, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=169537, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5818]={ + ["next_chapter"]=5819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83153, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20788, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=171233, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17295, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=171233, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5819]={ + ["next_chapter"]=5820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83372, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20843, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=172945, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17467, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=172945, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=16696, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=581, + ["unit"]=0 + } + }, + [5820]={ + ["next_chapter"]=5821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=83593, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20898, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=174675, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17642, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=174675, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5821]={ + ["next_chapter"]=5822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83815, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=20954, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=176421, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17819, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=176421, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5822]={ + ["next_chapter"]=5823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84038, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21010, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=178186, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17997, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=178186, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5823]={ + ["next_chapter"]=5824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84263, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21066, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=179967, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18177, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=179967, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5824]={ + ["next_chapter"]=5825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84489, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21122, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=181767, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18358, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=181767, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5825]={ + ["next_chapter"]=5826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84716, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21179, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=183585, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18542, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=183585, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5826]={ + ["next_chapter"]=5827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84945, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21236, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=185421, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18727, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=185421, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5827]={ + ["next_chapter"]=5828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85175, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21294, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=187275, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18915, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=187275, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5828]={ + ["next_chapter"]=5829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85407, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21352, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=189148, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19104, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=189148, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5829]={ + ["next_chapter"]=5830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85640, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21410, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=191039, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19295, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=191039, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=18443, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=582, + ["unit"]=0 + } + }, + [5830]={ + ["next_chapter"]=5831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=85875, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21469, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=192949, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19488, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=192949, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5831]={ + ["next_chapter"]=5832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86111, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21528, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=194879, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19683, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=194879, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5832]={ + ["next_chapter"]=5833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86348, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21587, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=196828, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19880, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=196828, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5833]={ + ["next_chapter"]=5834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86587, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21647, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=198796, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20078, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=198796, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5834]={ + ["next_chapter"]=5835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86827, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21707, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=200784, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20279, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=200784, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5835]={ + ["next_chapter"]=5836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87069, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21767, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=202792, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20482, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=202792, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5836]={ + ["next_chapter"]=5837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87312, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21828, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=204820, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20687, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=204820, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5837]={ + ["next_chapter"]=5838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87556, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21889, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=206868, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20894, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=206868, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5838]={ + ["next_chapter"]=5839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87802, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=21951, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=208937, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21103, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=208937, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5839]={ + ["next_chapter"]=5840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88050, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22012, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=211026, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21314, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=211026, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=20372, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=583, + ["unit"]=0 + } + }, + [5840]={ + ["next_chapter"]=5841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=88299, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22075, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=213136, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21527, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=213136, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5841]={ + ["next_chapter"]=5842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88549, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22137, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=215268, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21742, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=215268, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5842]={ + ["next_chapter"]=5843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88801, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22200, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=217420, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21959, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=217420, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5843]={ + ["next_chapter"]=5844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89055, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22264, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=219594, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22179, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=219594, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5844]={ + ["next_chapter"]=5845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89309, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22327, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=221790, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22401, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=221790, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5845]={ + ["next_chapter"]=5846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89566, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22391, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=224008, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22625, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=224008, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5846]={ + ["next_chapter"]=5847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89824, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22456, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=226248, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22851, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=226248, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5847]={ + ["next_chapter"]=5848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90083, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22521, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=228511, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23080, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=228511, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5848]={ + ["next_chapter"]=5849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90344, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22586, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=230796, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23310, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=230796, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5849]={ + ["next_chapter"]=5850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90606, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22652, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=233104, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23543, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=233104, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=22503, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=584, + ["unit"]=0 + } + }, + [5850]={ + ["next_chapter"]=5851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=90870, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22718, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=235435, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23779, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=235435, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5851]={ + ["next_chapter"]=5852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91135, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22784, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=237789, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24017, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=237789, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5852]={ + ["next_chapter"]=5853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91402, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22851, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=240167, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24257, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=240167, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5853]={ + ["next_chapter"]=5854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91671, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22918, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=242569, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24499, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=242569, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5854]={ + ["next_chapter"]=5855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91941, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=22985, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=244995, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24744, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=244995, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5855]={ + ["next_chapter"]=5856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92212, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23053, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=247445, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24992, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=247445, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5856]={ + ["next_chapter"]=5857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92485, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23121, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=249919, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25242, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=249919, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5857]={ + ["next_chapter"]=5858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92759, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=252418, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25494, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=252418, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5858]={ + ["next_chapter"]=5859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93036, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23259, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=254942, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25749, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=254942, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5859]={ + ["next_chapter"]=5860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93313, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=257492, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26007, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=257492, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=24858, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=585, + ["unit"]=0 + } + }, + [5860]={ + ["next_chapter"]=5861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=93592, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23398, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=260067, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26267, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=260067, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5861]={ + ["next_chapter"]=5862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93873, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23468, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=262667, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26529, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=262667, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5862]={ + ["next_chapter"]=5863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94155, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23539, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=265294, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26795, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=265294, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5863]={ + ["next_chapter"]=5864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94439, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23610, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=267947, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27063, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=267947, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5864]={ + ["next_chapter"]=5865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94725, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23681, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=270626, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27333, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=270626, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5865]={ + ["next_chapter"]=5866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23753, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=273333, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27607, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=273333, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5866]={ + ["next_chapter"]=5867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95300, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23825, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=276066, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27883, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=276066, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5867]={ + ["next_chapter"]=5868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95590, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23898, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=278827, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28161, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=278827, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5868]={ + ["next_chapter"]=5869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95882, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=23970, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=281615, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28443, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=281615, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5869]={ + ["next_chapter"]=5870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96175, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24044, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=284431, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28728, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=284431, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=27458, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=586, + ["unit"]=0 + } + }, + [5870]={ + ["next_chapter"]=5871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=96470, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24118, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=287275, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29015, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=287275, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5871]={ + ["next_chapter"]=5872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96767, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24192, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=290148, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29305, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=290148, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5872]={ + ["next_chapter"]=5873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97065, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24266, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=293050, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29598, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=293050, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5873]={ + ["next_chapter"]=5874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97364, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24341, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=295980, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29894, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=295980, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5874]={ + ["next_chapter"]=5875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97666, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24416, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=298940, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30193, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=298940, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5875]={ + ["next_chapter"]=5876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97969, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24492, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=301929, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30495, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=301929, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5876]={ + ["next_chapter"]=5877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98273, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24568, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=304949, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30800, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=304949, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5877]={ + ["next_chapter"]=5878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98579, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24645, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=307998, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31108, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=307998, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5878]={ + ["next_chapter"]=5879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98887, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24722, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=311078, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31419, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=311078, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5879]={ + ["next_chapter"]=5880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99197, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24799, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=314189, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31733, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=314189, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=30331, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=587, + ["unit"]=0 + } + }, + [5880]={ + ["next_chapter"]=5881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=99508, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24877, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=317331, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32050, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=317331, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5881]={ + ["next_chapter"]=5882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99821, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=24955, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=320504, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32371, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=320504, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5882]={ + ["next_chapter"]=5883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100135, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25034, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=323709, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32695, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=323709, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5883]={ + ["next_chapter"]=5884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100451, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25113, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=326946, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33022, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=326946, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5884]={ + ["next_chapter"]=5885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100769, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25192, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=330216, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33352, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=330216, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5885]={ + ["next_chapter"]=5886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25272, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=333518, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33685, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=333518, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5886]={ + ["next_chapter"]=5887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101409, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25352, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=336853, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34022, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=336853, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5887]={ + ["next_chapter"]=5888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101732, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25433, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=340222, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34362, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=340222, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5888]={ + ["next_chapter"]=5889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102056, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25514, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=343624, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34706, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=343624, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5889]={ + ["next_chapter"]=5890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102382, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25595, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=347060, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35053, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=347060, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=33504, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=588, + ["unit"]=0 + } + }, + [5890]={ + ["next_chapter"]=5891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=102710, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25677, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=350531, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35404, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=350531, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5891]={ + ["next_chapter"]=5892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103039, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25760, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=354036, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35758, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=354036, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5892]={ + ["next_chapter"]=5893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103370, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25843, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=357576, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36115, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=357576, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5893]={ + ["next_chapter"]=5894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103703, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=25926, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=361152, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36476, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=361152, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5894]={ + ["next_chapter"]=5895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104037, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26009, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=364764, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36841, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=364764, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5895]={ + ["next_chapter"]=5896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104374, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26093, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=368411, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37210, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=368411, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5896]={ + ["next_chapter"]=5897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104711, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26178, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=372095, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37582, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=372095, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5897]={ + ["next_chapter"]=5898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105051, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26263, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=375816, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37957, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=375816, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5898]={ + ["next_chapter"]=5899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105392, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26348, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=379574, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38337, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=379574, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5899]={ + ["next_chapter"]=5900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105735, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26434, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=383370, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38720, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=383370, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=37010, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=589, + ["unit"]=0 + } + }, + [5900]={ + ["next_chapter"]=5901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=106080, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=387204, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39108, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=387204, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5901]={ + ["next_chapter"]=5902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106426, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26607, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=391076, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39499, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=391076, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5902]={ + ["next_chapter"]=5903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106775, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26694, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=394987, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39894, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=394987, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5903]={ + ["next_chapter"]=5904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107125, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26781, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=398937, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40293, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=398937, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5904]={ + ["next_chapter"]=5905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107476, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26869, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=402926, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40696, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=402926, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5905]={ + ["next_chapter"]=5906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107830, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=26957, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=406955, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41102, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=406955, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5906]={ + ["next_chapter"]=5907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108185, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27046, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=411025, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41513, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=411025, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5907]={ + ["next_chapter"]=5908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108542, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27135, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=415135, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41929, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=415135, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5908]={ + ["next_chapter"]=5909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108900, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27225, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=419286, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42348, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=419286, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5909]={ + ["next_chapter"]=5910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109261, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27315, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=423479, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42771, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=423479, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=40882, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=590, + ["unit"]=0 + } + }, + [5910]={ + ["next_chapter"]=5911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=109623, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27406, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=427714, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43199, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=427714, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5911]={ + ["next_chapter"]=5912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109987, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27497, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=431991, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43631, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=431991, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5912]={ + ["next_chapter"]=5913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110353, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27588, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=436311, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44067, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=436311, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5913]={ + ["next_chapter"]=5914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110720, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=440674, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44508, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=440674, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5914]={ + ["next_chapter"]=5915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111090, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27772, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=445081, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44953, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=445081, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5915]={ + ["next_chapter"]=5916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111461, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27865, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=449532, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45403, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=449532, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5916]={ + ["next_chapter"]=5917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111834, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=27958, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=454027, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45857, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=454027, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5917]={ + ["next_chapter"]=5918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112208, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28052, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=458567, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46315, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=458567, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5918]={ + ["next_chapter"]=5919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112585, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28146, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=463153, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46778, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=463153, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5919]={ + ["next_chapter"]=5920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112963, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28241, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=467784, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47246, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=467784, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=45159, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=591, + ["unit"]=0 + } + }, + [5920]={ + ["next_chapter"]=5921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=113343, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28336, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=472462, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47719, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=472462, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5921]={ + ["next_chapter"]=5922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113725, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28431, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=477187, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48196, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=477187, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5922]={ + ["next_chapter"]=5923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114109, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28527, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=481959, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48678, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=481959, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5923]={ + ["next_chapter"]=5924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114495, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28624, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=486778, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49165, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=486778, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5924]={ + ["next_chapter"]=5925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114882, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28721, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=491646, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49656, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=491646, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5925]={ + ["next_chapter"]=5926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115271, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28818, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=496563, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50153, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=496563, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5926]={ + ["next_chapter"]=5927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115662, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=28916, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=501528, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50654, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=501528, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5927]={ + ["next_chapter"]=5928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116055, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29014, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=506544, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51161, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=506544, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5928]={ + ["next_chapter"]=5929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116450, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29112, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=511609, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51673, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=511609, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5929]={ + ["next_chapter"]=5930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116847, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29212, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=516725, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52189, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=516725, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=49884, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=592, + ["unit"]=0 + } + }, + [5930]={ + ["next_chapter"]=5931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=117245, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29311, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=521892, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52711, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=521892, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5931]={ + ["next_chapter"]=5932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117645, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29411, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=527111, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53238, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=527111, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5932]={ + ["next_chapter"]=5933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118048, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29512, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=532382, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53771, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=532382, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5933]={ + ["next_chapter"]=5934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118452, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29613, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=537706, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54308, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=537706, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5934]={ + ["next_chapter"]=5935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118857, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29714, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=543083, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54851, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=543083, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5935]={ + ["next_chapter"]=5936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119265, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29816, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=548514, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55400, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=548514, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5936]={ + ["next_chapter"]=5937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119675, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=29919, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=553999, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55954, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=553999, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5937]={ + ["next_chapter"]=5938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120086, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30022, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=559539, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56513, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=559539, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5938]={ + ["next_chapter"]=5939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30125, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=565135, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57079, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=565135, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5939]={ + ["next_chapter"]=5940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120915, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30229, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=570786, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57649, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=570786, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=55102, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=593, + ["unit"]=0 + } + }, + [5940]={ + ["next_chapter"]=5941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=121332, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30333, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=576494, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58226, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=576494, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5941]={ + ["next_chapter"]=5942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121752, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30438, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=582259, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58808, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=582259, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5942]={ + ["next_chapter"]=5943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122173, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30543, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=588081, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59396, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=588081, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5943]={ + ["next_chapter"]=5944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122596, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30649, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=593962, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59990, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=593962, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5944]={ + ["next_chapter"]=5945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123020, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30755, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=599902, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60590, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=599902, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5945]={ + ["next_chapter"]=5946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123447, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30862, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=605901, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61196, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=605901, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5946]={ + ["next_chapter"]=5947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123876, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=30969, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=611960, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61808, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=611960, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5947]={ + ["next_chapter"]=5948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124307, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31077, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=618079, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62426, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=618079, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5948]={ + ["next_chapter"]=5949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124739, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31185, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=624260, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63050, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=624260, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5949]={ + ["next_chapter"]=5950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125174, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31293, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=630503, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63681, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=630503, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=60867, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=594, + ["unit"]=0 + } + }, + [5950]={ + ["next_chapter"]=5951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=125610, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31403, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=636808, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64318, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=636808, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5951]={ + ["next_chapter"]=5952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126048, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31512, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=643176, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64961, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=643176, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5952]={ + ["next_chapter"]=5953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126489, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31622, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=649608, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65610, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=649608, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5953]={ + ["next_chapter"]=5954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126931, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31733, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=656104, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66266, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=656104, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5954]={ + ["next_chapter"]=5955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127375, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31844, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=662665, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66929, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=662665, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5955]={ + ["next_chapter"]=5956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127821, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=31955, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=669291, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67598, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=669291, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5956]={ + ["next_chapter"]=5957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128270, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=675984, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68274, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=675984, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5957]={ + ["next_chapter"]=5958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128720, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32180, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=682744, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68957, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=682744, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5958]={ + ["next_chapter"]=5959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129172, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32293, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=689572, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69647, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=689572, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5959]={ + ["next_chapter"]=5960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129626, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32406, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=696467, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70343, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=696467, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=67235, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=595, + ["unit"]=0 + } + }, + [5960]={ + ["next_chapter"]=5961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=130082, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=703432, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71047, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=703432, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5961]={ + ["next_chapter"]=5962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130540, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32635, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=710466, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71757, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=710466, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5962]={ + ["next_chapter"]=5963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32750, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=717571, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72475, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=717571, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5963]={ + ["next_chapter"]=5964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131462, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=724747, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73199, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=724747, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5964]={ + ["next_chapter"]=5965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131926, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=32982, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=731994, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73931, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=731994, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5965]={ + ["next_chapter"]=5966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132392, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=33098, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=739314, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74671, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=739314, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5966]={ + ["next_chapter"]=5967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132860, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=33215, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=746707, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75417, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=746707, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5967]={ + ["next_chapter"]=5968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133330, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=33333, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=754174, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76172, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=754174, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5968]={ + ["next_chapter"]=5969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133802, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=33451, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=761716, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76933, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=761716, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5969]={ + ["next_chapter"]=5970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134276, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=33569, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=769333, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77703, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=769333, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=74270, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=596, + ["unit"]=0 + } + }, + [5970]={ + ["next_chapter"]=5971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=134753, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=33688, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=777027, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78480, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=777027, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5971]={ + ["next_chapter"]=5972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135231, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=33808, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=784797, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79264, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=784797, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5972]={ + ["next_chapter"]=5973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135711, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=33928, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=792645, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80057, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=792645, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5973]={ + ["next_chapter"]=5974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136193, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=34048, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=800571, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80858, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=800571, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5974]={ + ["next_chapter"]=5975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136677, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=34169, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=808577, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81666, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=808577, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5975]={ + ["next_chapter"]=5976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137164, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=34291, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=816663, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82483, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=816663, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5976]={ + ["next_chapter"]=5977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137652, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=34413, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=824829, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83308, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=824829, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5977]={ + ["next_chapter"]=5978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138143, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=34536, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=833078, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84141, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=833078, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5978]={ + ["next_chapter"]=5979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138635, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=34659, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=841408, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84982, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=841408, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5979]={ + ["next_chapter"]=5980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139130, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=34782, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=849823, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85832, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=849823, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=82040, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=597, + ["unit"]=0 + } + }, + [5980]={ + ["next_chapter"]=5981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=139626, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=34907, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=858321, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86690, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=858321, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5981]={ + ["next_chapter"]=5982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140125, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=35031, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=866904, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87557, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=866904, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5982]={ + ["next_chapter"]=5983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140626, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=35156, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=875573, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88433, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=875573, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5983]={ + ["next_chapter"]=5984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141129, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=35282, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=884329, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89317, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=884329, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5984]={ + ["next_chapter"]=5985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141634, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=35408, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=893172, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90210, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=893172, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5985]={ + ["next_chapter"]=5986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142141, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=35535, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=902104, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91112, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=902104, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5986]={ + ["next_chapter"]=5987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142650, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=35662, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=911125, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92024, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=911125, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5987]={ + ["next_chapter"]=5988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143161, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=35790, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=920236, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92944, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=920236, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5988]={ + ["next_chapter"]=5989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143674, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=35919, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=929438, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93873, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=929438, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5989]={ + ["next_chapter"]=5990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144190, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=36047, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=938733, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94812, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=938733, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=90623, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=598, + ["unit"]=0 + } + }, + [5990]={ + ["next_chapter"]=5991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=144707, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=36177, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=948120, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95760, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=948120, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5991]={ + ["next_chapter"]=5992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145227, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=36307, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=957601, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96718, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=957601, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5992]={ + ["next_chapter"]=5993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145749, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=36437, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=967177, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97685, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=967177, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5993]={ + ["next_chapter"]=5994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146273, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=36568, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=976849, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98662, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=976849, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5994]={ + ["next_chapter"]=5995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146799, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=36700, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=986618, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99648, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=986618, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5995]={ + ["next_chapter"]=5996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147327, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=36832, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=996484, + ["unit"]=7 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100645, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=996484, + ["unit"]=7 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5996]={ + ["next_chapter"]=5997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147857, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=36964, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1006, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101651, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1006, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5997]={ + ["next_chapter"]=5998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148390, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=37097, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1017, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102668, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1017, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5998]={ + ["next_chapter"]=5999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148924, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=37231, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1027, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103694, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1027, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [5999]={ + ["next_chapter"]=6000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=149461, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=37365, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104731, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1037, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=100104, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=599, + ["unit"]=0 + } + }, + [6000]={ + ["next_chapter"]=6001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=150000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1047, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105779, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1047, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6001]={ + ["next_chapter"]=6002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1058, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106837, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1058, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6002]={ + ["next_chapter"]=6003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1068, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107905, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1068, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6003]={ + ["next_chapter"]=6004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1079, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108984, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1079, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6004]={ + ["next_chapter"]=6005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1090, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110074, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6005]={ + ["next_chapter"]=6006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1101, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111175, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1101, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6006]={ + ["next_chapter"]=6007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1112, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112286, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1112, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6007]={ + ["next_chapter"]=6008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1123, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113409, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1123, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6008]={ + ["next_chapter"]=6009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1134, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114543, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1134, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6009]={ + ["next_chapter"]=6010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1145, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115689, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1145, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=110578, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=600, + ["unit"]=0 + } + }, + [6010]={ + ["next_chapter"]=6011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=150002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1157, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116846, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1157, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6011]={ + ["next_chapter"]=6012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1168, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118014, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1168, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6012]={ + ["next_chapter"]=6013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1180, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119194, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6013]={ + ["next_chapter"]=6014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1192, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120386, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1192, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6014]={ + ["next_chapter"]=6015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1204, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121590, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1204, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6015]={ + ["next_chapter"]=6016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150005, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1216, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122806, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1216, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6016]={ + ["next_chapter"]=6017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150007, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1228, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124034, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1228, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6017]={ + ["next_chapter"]=6018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150008, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1240, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125274, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6018]={ + ["next_chapter"]=6019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150009, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1253, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126527, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1253, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6019]={ + ["next_chapter"]=6020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150011, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39003, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1265, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127792, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1265, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=122146, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=601, + ["unit"]=0 + } + }, + [6020]={ + ["next_chapter"]=6021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=150013, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39003, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1278, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129070, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1278, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6021]={ + ["next_chapter"]=6022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150015, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1291, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130361, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1291, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6022]={ + ["next_chapter"]=6023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150017, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1304, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131664, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1304, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6023]={ + ["next_chapter"]=6024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150019, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1317, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132981, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1317, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6024]={ + ["next_chapter"]=6025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150022, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39006, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1330, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134311, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1330, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6025]={ + ["next_chapter"]=6026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150025, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39007, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1343, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135654, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1343, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6026]={ + ["next_chapter"]=6027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150028, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39007, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1357, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137011, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1357, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6027]={ + ["next_chapter"]=6028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39008, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1370, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138381, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6028]={ + ["next_chapter"]=6029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150035, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39009, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1384, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139765, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1384, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6029]={ + ["next_chapter"]=6030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150039, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39010, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1398, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141162, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1398, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=134926, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=602, + ["unit"]=0 + } + }, + [6030]={ + ["next_chapter"]=6031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=150043, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39011, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1412, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142574, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1412, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6031]={ + ["next_chapter"]=6032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150048, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39012, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1426, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144000, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1426, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6032]={ + ["next_chapter"]=6033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150052, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39014, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1440, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145440, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6033]={ + ["next_chapter"]=6034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150057, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39015, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1454, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146894, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1454, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6034]={ + ["next_chapter"]=6035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150063, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39016, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1469, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148363, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1469, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6035]={ + ["next_chapter"]=6036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150069, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39018, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1484, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149846, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1484, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6036]={ + ["next_chapter"]=6037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150075, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39019, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1498, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151345, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1498, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6037]={ + ["next_chapter"]=6038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150081, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39021, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1513, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152858, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1513, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6038]={ + ["next_chapter"]=6039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1529, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154387, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1529, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6039]={ + ["next_chapter"]=6040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150095, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39025, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1544, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155931, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1544, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=149042, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=603, + ["unit"]=0 + } + }, + [6040]={ + ["next_chapter"]=6041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=150102, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39027, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1559, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157490, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1559, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6041]={ + ["next_chapter"]=6042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150110, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39029, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1575, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159065, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1575, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6042]={ + ["next_chapter"]=6043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150119, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39031, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1591, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160656, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1591, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6043]={ + ["next_chapter"]=6044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150127, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39033, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1607, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162262, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1607, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6044]={ + ["next_chapter"]=6045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150136, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1623, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163885, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1623, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6045]={ + ["next_chapter"]=6046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150146, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39038, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1639, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165524, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1639, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6046]={ + ["next_chapter"]=6047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150156, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39040, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1655, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167179, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1655, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6047]={ + ["next_chapter"]=6048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150166, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39043, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1672, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168851, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1672, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6048]={ + ["next_chapter"]=6049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150177, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39046, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1689, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170539, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1689, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6049]={ + ["next_chapter"]=6050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150188, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39049, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1705, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172245, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1705, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=164635, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=604, + ["unit"]=0 + } + }, + [6050]={ + ["next_chapter"]=6051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=150200, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39052, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1722, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173967, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1722, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6051]={ + ["next_chapter"]=6052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150212, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39055, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1740, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175707, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1740, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6052]={ + ["next_chapter"]=6053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150225, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39058, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1757, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177464, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1757, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6053]={ + ["next_chapter"]=6054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150238, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39062, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1775, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179238, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1775, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6054]={ + ["next_chapter"]=6055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150252, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39066, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1792, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181031, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1792, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6055]={ + ["next_chapter"]=6056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150266, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39069, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1810, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182841, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1810, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6056]={ + ["next_chapter"]=6057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150281, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39073, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1828, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184670, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1828, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6057]={ + ["next_chapter"]=6058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150296, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39077, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1847, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186516, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1847, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6058]={ + ["next_chapter"]=6059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150312, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39081, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1865, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188381, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1865, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6059]={ + ["next_chapter"]=6060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150329, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39085, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1884, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190265, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1884, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=181859, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=605, + ["unit"]=0 + } + }, + [6060]={ + ["next_chapter"]=6061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=150346, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39090, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1903, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192168, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1903, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6061]={ + ["next_chapter"]=6062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150363, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39094, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1922, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194090, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1922, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6062]={ + ["next_chapter"]=6063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150381, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39099, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1941, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196030, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1941, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6063]={ + ["next_chapter"]=6064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150400, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39104, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1960, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197991, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6064]={ + ["next_chapter"]=6065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150419, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39109, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1980, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199971, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=1980, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6065]={ + ["next_chapter"]=6066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150439, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39114, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2000, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201970, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2000, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6066]={ + ["next_chapter"]=6067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150460, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39120, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2020, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203990, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2020, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6067]={ + ["next_chapter"]=6068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150481, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39125, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2040, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206030, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2040, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6068]={ + ["next_chapter"]=6069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150503, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39131, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2060, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208090, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6069]={ + ["next_chapter"]=6070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150526, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39137, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2081, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210171, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2081, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=200886, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=606, + ["unit"]=0 + } + }, + [6070]={ + ["next_chapter"]=6071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=150549, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39143, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2102, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212273, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2102, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6071]={ + ["next_chapter"]=6072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150573, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39149, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2123, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214396, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2123, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6072]={ + ["next_chapter"]=6073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150597, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2144, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216540, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2144, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6073]={ + ["next_chapter"]=6074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150622, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39162, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2165, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218705, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2165, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6074]={ + ["next_chapter"]=6075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150648, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39169, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2187, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220892, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2187, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6075]={ + ["next_chapter"]=6076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150675, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39176, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2209, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223101, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2209, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6076]={ + ["next_chapter"]=6077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150702, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39183, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2231, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225332, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2231, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6077]={ + ["next_chapter"]=6078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150730, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2253, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227585, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2253, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6078]={ + ["next_chapter"]=6079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150759, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39197, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2276, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229861, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2276, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6079]={ + ["next_chapter"]=6080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150789, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39205, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2299, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232160, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2299, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=221903, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=607, + ["unit"]=0 + } + }, + [6080]={ + ["next_chapter"]=6081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=150819, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39213, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2322, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234481, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2322, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6081]={ + ["next_chapter"]=6082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150850, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39221, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2345, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236826, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2345, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6082]={ + ["next_chapter"]=6083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150882, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39229, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2368, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239194, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2368, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6083]={ + ["next_chapter"]=6084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150915, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39238, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2392, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241586, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2392, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6084]={ + ["next_chapter"]=6085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150948, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39247, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2416, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244002, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2416, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6085]={ + ["next_chapter"]=6086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150983, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39255, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2440, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246442, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2440, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6086]={ + ["next_chapter"]=6087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151018, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39265, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2464, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248907, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2464, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6087]={ + ["next_chapter"]=6088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151054, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39274, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2489, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251396, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2489, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6088]={ + ["next_chapter"]=6089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151090, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39283, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2514, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253910, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2514, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6089]={ + ["next_chapter"]=6090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151128, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39293, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2539, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256449, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2539, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=245119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=608, + ["unit"]=0 + } + }, + [6090]={ + ["next_chapter"]=6091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=151166, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39303, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2564, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259013, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2564, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6091]={ + ["next_chapter"]=6092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151206, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39313, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2590, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261603, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2590, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6092]={ + ["next_chapter"]=6093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151246, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39324, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2616, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264219, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2616, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6093]={ + ["next_chapter"]=6094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151287, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39335, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2642, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266862, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2642, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6094]={ + ["next_chapter"]=6095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151329, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39346, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2669, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269530, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2669, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6095]={ + ["next_chapter"]=6096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151372, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39357, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2695, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272226, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2695, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6096]={ + ["next_chapter"]=6097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151416, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39368, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2722, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274948, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2722, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6097]={ + ["next_chapter"]=6098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151460, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39380, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2749, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277697, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2749, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6098]={ + ["next_chapter"]=6099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39392, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2777, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280474, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2777, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6099]={ + ["next_chapter"]=6100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151552, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39404, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2805, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283279, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2805, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=270764, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=609, + ["unit"]=0 + } + }, + [6100]={ + ["next_chapter"]=6101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=151600, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39416, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2833, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286112, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2833, + ["unit"]=8 + }, + ["chapter_drop"]=53, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6101]={ + ["next_chapter"]=6102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151648, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39429, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2861, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288973, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2861, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6102]={ + ["next_chapter"]=6103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151698, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39441, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2890, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291863, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2890, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6103]={ + ["next_chapter"]=6104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151748, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39455, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2919, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=294781, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2919, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6104]={ + ["next_chapter"]=6105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151800, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39468, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2948, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=297729, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2948, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6105]={ + ["next_chapter"]=6106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151852, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39482, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2977, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300706, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=2977, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6106]={ + ["next_chapter"]=6107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151906, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39495, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3007, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=303713, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3007, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6107]={ + ["next_chapter"]=6108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151960, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39510, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3037, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=306751, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3037, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6108]={ + ["next_chapter"]=6109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152016, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39524, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3068, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=309818, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3068, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6109]={ + ["next_chapter"]=6110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152072, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39539, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3098, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=312916, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3098, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=299092, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=610, + ["unit"]=0 + } + }, + [6110]={ + ["next_chapter"]=6111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=152130, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39554, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3129, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316045, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3129, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6111]={ + ["next_chapter"]=6112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152188, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39569, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3160, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319206, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6112]={ + ["next_chapter"]=6113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152248, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39584, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3192, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322398, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3192, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6113]={ + ["next_chapter"]=6114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152309, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39600, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3224, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325622, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3224, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6114]={ + ["next_chapter"]=6115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152370, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39616, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3256, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328878, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3256, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6115]={ + ["next_chapter"]=6116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152433, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39633, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3289, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332167, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3289, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6116]={ + ["next_chapter"]=6117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152497, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39649, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3322, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335489, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3322, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6117]={ + ["next_chapter"]=6118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152563, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39666, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3355, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338844, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3355, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6118]={ + ["next_chapter"]=6119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152629, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39684, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3388, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342232, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3388, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6119]={ + ["next_chapter"]=6120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152696, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39701, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3422, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=345654, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3422, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=330384, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=611, + ["unit"]=0 + } + }, + [6120]={ + ["next_chapter"]=6121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=152765, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39719, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3457, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349111, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3457, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6121]={ + ["next_chapter"]=6122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152834, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39737, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3491, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=352602, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3491, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6122]={ + ["next_chapter"]=6123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152905, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39755, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3526, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356128, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3526, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6123]={ + ["next_chapter"]=6124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152977, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39774, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3561, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=359689, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3561, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6124]={ + ["next_chapter"]=6125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153051, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39793, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3597, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=363286, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3597, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6125]={ + ["next_chapter"]=6126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153125, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39813, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3633, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366919, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3633, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6126]={ + ["next_chapter"]=6127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153201, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39832, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3669, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370588, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3669, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6127]={ + ["next_chapter"]=6128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153277, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39852, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3706, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374294, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3706, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6128]={ + ["next_chapter"]=6129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153355, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39872, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3743, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378037, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3743, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6129]={ + ["next_chapter"]=6130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153435, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39893, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3780, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=381817, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3780, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=364949, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=612, + ["unit"]=0 + } + }, + [6130]={ + ["next_chapter"]=6131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=153515, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39914, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3818, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=385636, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3818, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6131]={ + ["next_chapter"]=6132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153597, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39935, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3856, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=389492, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3856, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6132]={ + ["next_chapter"]=6133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153680, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39957, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3895, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=393387, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3895, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6133]={ + ["next_chapter"]=6134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153764, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=39979, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3934, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=397321, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3934, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6134]={ + ["next_chapter"]=6135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153850, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3973, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=401294, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=3973, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6135]={ + ["next_chapter"]=6136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153937, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40024, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4013, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=405307, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4013, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6136]={ + ["next_chapter"]=6137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154025, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40046, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4053, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=409360, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4053, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6137]={ + ["next_chapter"]=6138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154114, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40070, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4094, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=413453, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4094, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6138]={ + ["next_chapter"]=6139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154205, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40093, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4135, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=417588, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4135, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6139]={ + ["next_chapter"]=6140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154297, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40117, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4176, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=421764, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4176, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=403131, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=613, + ["unit"]=0 + } + }, + [6140]={ + ["next_chapter"]=6141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=154390, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40142, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4218, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=425982, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4218, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6141]={ + ["next_chapter"]=6142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154485, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40166, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4260, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=430241, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4260, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6142]={ + ["next_chapter"]=6143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154581, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40191, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4302, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=434544, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4302, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6143]={ + ["next_chapter"]=6144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154679, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40216, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4345, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=438889, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4345, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6144]={ + ["next_chapter"]=6145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154778, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40242, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4389, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=443278, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4389, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6145]={ + ["next_chapter"]=6146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154878, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40268, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4433, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=447711, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4433, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6146]={ + ["next_chapter"]=6147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154979, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40295, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4477, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=452188, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4477, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6147]={ + ["next_chapter"]=6148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155082, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4522, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456710, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4522, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6148]={ + ["next_chapter"]=6149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155187, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40349, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4567, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461277, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4567, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6149]={ + ["next_chapter"]=6150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155293, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40376, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4613, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=465890, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4613, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=445307, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=614, + ["unit"]=0 + } + }, + [6150]={ + ["next_chapter"]=6151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=155400, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40404, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4659, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=470549, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4659, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6151]={ + ["next_chapter"]=6152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155509, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40432, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4705, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=475254, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4705, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6152]={ + ["next_chapter"]=6153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155619, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40461, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4753, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=480007, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4753, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6153]={ + ["next_chapter"]=6154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155731, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40490, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4800, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=484807, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4800, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6154]={ + ["next_chapter"]=6155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155844, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40519, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4848, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=489655, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4848, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6155]={ + ["next_chapter"]=6156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155958, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40549, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4897, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=494551, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4897, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6156]={ + ["next_chapter"]=6157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156074, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40579, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4946, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=499497, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4946, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6157]={ + ["next_chapter"]=6158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156192, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40610, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4995, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=504492, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=4995, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6158]={ + ["next_chapter"]=6159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156311, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40641, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5045, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=509537, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5045, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6159]={ + ["next_chapter"]=6160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156431, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40672, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5095, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=514632, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5095, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=491896, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=615, + ["unit"]=0 + } + }, + [6160]={ + ["next_chapter"]=6161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=156554, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40704, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5146, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=519778, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5146, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6161]={ + ["next_chapter"]=6162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156677, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40736, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5198, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=524976, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5198, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6162]={ + ["next_chapter"]=6163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156802, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40769, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5250, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=530226, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5250, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6163]={ + ["next_chapter"]=6164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156929, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40802, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5302, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=535528, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5302, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6164]={ + ["next_chapter"]=6165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157058, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40835, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5355, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540884, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5355, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6165]={ + ["next_chapter"]=6166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157187, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40869, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5409, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546292, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5409, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6166]={ + ["next_chapter"]=6167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157319, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40903, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5463, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=551755, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5463, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6167]={ + ["next_chapter"]=6168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157452, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40938, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5518, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=557273, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5518, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6168]={ + ["next_chapter"]=6169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157587, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=40973, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5573, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=562846, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5573, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6169]={ + ["next_chapter"]=6170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157723, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41008, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5628, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=568474, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5628, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=543359, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=616, + ["unit"]=0 + } + }, + [6170]={ + ["next_chapter"]=6171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=157861, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41044, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5685, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=574159, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5685, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6171]={ + ["next_chapter"]=6172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41080, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5742, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=579900, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5742, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6172]={ + ["next_chapter"]=6173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158142, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41117, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5799, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=585699, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5799, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6173]={ + ["next_chapter"]=6174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158284, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41154, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5857, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=591556, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5857, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6174]={ + ["next_chapter"]=6175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158429, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41191, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5916, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=597472, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5916, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6175]={ + ["next_chapter"]=6176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158575, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41230, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5975, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=603447, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=5975, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6176]={ + ["next_chapter"]=6177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158723, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41268, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6034, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=609481, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6034, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6177]={ + ["next_chapter"]=6178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158872, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41307, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6095, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=615576, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6095, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6178]={ + ["next_chapter"]=6179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41346, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6156, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=621732, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6156, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6179]={ + ["next_chapter"]=6180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159177, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41386, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6217, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=627949, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6217, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=600207, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=617, + ["unit"]=0 + } + }, + [6180]={ + ["next_chapter"]=6181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=159331, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41426, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6279, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=634228, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6279, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6181]={ + ["next_chapter"]=6182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159488, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41467, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6342, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=640571, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6342, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6182]={ + ["next_chapter"]=6183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159646, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41508, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6406, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=646976, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6406, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6183]={ + ["next_chapter"]=6184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159806, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41549, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6470, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=653446, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6470, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6184]={ + ["next_chapter"]=6185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159967, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41591, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6534, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=659981, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6534, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6185]={ + ["next_chapter"]=6186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160131, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41634, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6600, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=666580, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6600, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6186]={ + ["next_chapter"]=6187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160296, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41677, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6666, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=673246, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6666, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6187]={ + ["next_chapter"]=6188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160463, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41720, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6732, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=679979, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6732, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6188]={ + ["next_chapter"]=6189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160631, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41764, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6800, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=686779, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6800, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6189]={ + ["next_chapter"]=6190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160802, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41809, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6868, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=693646, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6868, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=663002, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=618, + ["unit"]=0 + } + }, + [6190]={ + ["next_chapter"]=6191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=160974, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41853, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6936, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=700583, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=6936, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6191]={ + ["next_chapter"]=6192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161149, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41899, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7006, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=707589, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7006, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6192]={ + ["next_chapter"]=6193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161325, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41944, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7076, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=714665, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7076, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6193]={ + ["next_chapter"]=6194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=41991, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7147, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=721811, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7147, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6194]={ + ["next_chapter"]=6195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161682, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7218, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=729029, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7218, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6195]={ + ["next_chapter"]=6196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161864, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42085, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7290, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=736320, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7290, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6196]={ + ["next_chapter"]=6197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162047, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42132, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7363, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=743683, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7363, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6197]={ + ["next_chapter"]=6198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162233, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42180, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7437, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=751120, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7437, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6198]={ + ["next_chapter"]=6199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162420, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42229, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7511, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=758631, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7511, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6199]={ + ["next_chapter"]=6200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162609, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42278, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7586, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=766217, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7586, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=732366, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=619, + ["unit"]=0 + } + }, + [6200]={ + ["next_chapter"]=6201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=162800, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7662, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=773879, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7662, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6201]={ + ["next_chapter"]=6202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162993, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42378, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7739, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=781618, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7739, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6202]={ + ["next_chapter"]=6203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=163188, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42429, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7816, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=789434, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7816, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6203]={ + ["next_chapter"]=6204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=163385, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42480, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7894, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=797329, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7894, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6204]={ + ["next_chapter"]=6205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=163583, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42532, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7973, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=805302, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=7973, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6205]={ + ["next_chapter"]=6206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=163784, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42584, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8053, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=813355, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8053, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6206]={ + ["next_chapter"]=6207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=163987, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42637, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8134, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=821488, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8134, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6207]={ + ["next_chapter"]=6208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=164192, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42690, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8215, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=829703, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8215, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6208]={ + ["next_chapter"]=6209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=164398, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42744, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8297, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=838000, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8297, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6209]={ + ["next_chapter"]=6210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=164607, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42798, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8380, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=846380, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8380, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=808988, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=620, + ["unit"]=0 + } + }, + [6210]={ + ["next_chapter"]=6211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=164818, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42853, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8464, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=854844, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8464, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6211]={ + ["next_chapter"]=6212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165030, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42908, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8548, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=863393, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8548, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6212]={ + ["next_chapter"]=6213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165245, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=42964, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8634, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=872027, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8634, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6213]={ + ["next_chapter"]=6214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165462, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43020, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8720, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=880747, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8720, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6214]={ + ["next_chapter"]=6215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165681, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43077, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8807, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=889554, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8807, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6215]={ + ["next_chapter"]=6216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165901, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43134, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8896, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=898450, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8896, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6216]={ + ["next_chapter"]=6217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166124, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43192, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8984, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=907434, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=8984, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6217]={ + ["next_chapter"]=6218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166349, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43251, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9074, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=916509, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9074, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6218]={ + ["next_chapter"]=6219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166576, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43310, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9165, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=925674, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9165, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6219]={ + ["next_chapter"]=6220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166806, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43369, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9257, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=934930, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9257, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=893626, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=621, + ["unit"]=0 + } + }, + [6220]={ + ["next_chapter"]=6221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=167037, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43430, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9349, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=944280, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9349, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6221]={ + ["next_chapter"]=6222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=167270, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43490, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9443, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=953723, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9443, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6222]={ + ["next_chapter"]=6223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=167506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43551, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9537, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=963260, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9537, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6223]={ + ["next_chapter"]=6224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=167743, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43613, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9633, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=972892, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9633, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6224]={ + ["next_chapter"]=6225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=167983, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43676, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9729, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=982621, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9729, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6225]={ + ["next_chapter"]=6226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168225, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43739, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9826, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=992448, + ["unit"]=8 + }, + ["idle_gold"]={ + ["value"]=9826, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6226]={ + ["next_chapter"]=6227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168469, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43802, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9924, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1002, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9924, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6227]={ + ["next_chapter"]=6228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168715, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10024, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1012, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10024, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6228]={ + ["next_chapter"]=6229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168964, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43931, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10124, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1023, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10124, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6229]={ + ["next_chapter"]=6230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169214, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=43996, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10225, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1033, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10225, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=987119, + ["unit"]=8 + }, + ["grasp_mastery_reward"]={ + ["value"]=622, + ["unit"]=0 + } + }, + [6230]={ + ["next_chapter"]=6231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=169467, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44061, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10327, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1043, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10327, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6231]={ + ["next_chapter"]=6232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169722, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44128, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10431, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1054, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10431, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6232]={ + ["next_chapter"]=6233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169979, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44195, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10535, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1064, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10535, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6233]={ + ["next_chapter"]=6234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=170239, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44262, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10640, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1075, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10640, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6234]={ + ["next_chapter"]=6235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=170501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44330, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10747, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1085, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10747, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6235]={ + ["next_chapter"]=6236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=170765, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44399, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10854, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1096, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10854, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6236]={ + ["next_chapter"]=6237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=171031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44468, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10963, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1107, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=10963, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6237]={ + ["next_chapter"]=6238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=171299, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44538, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11072, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1118, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11072, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6238]={ + ["next_chapter"]=6239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=171570, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44608, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11183, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1129, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11183, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6239]={ + ["next_chapter"]=6240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=171843, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44679, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11295, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1141, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11295, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=623, + ["unit"]=0 + } + }, + [6240]={ + ["next_chapter"]=6241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=172118, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44751, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11408, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1152, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11408, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6241]={ + ["next_chapter"]=6242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=172396, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44823, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11522, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1164, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11522, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6242]={ + ["next_chapter"]=6243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=172676, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44896, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11637, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1175, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11637, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6243]={ + ["next_chapter"]=6244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=172958, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=44969, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11754, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1187, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11754, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6244]={ + ["next_chapter"]=6245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=173243, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45043, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11871, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1199, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11871, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6245]={ + ["next_chapter"]=6246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=173530, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45118, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11990, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1211, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=11990, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6246]={ + ["next_chapter"]=6247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=173819, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45193, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12110, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1223, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=12110, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6247]={ + ["next_chapter"]=6248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174111, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45269, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12231, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1235, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=12231, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6248]={ + ["next_chapter"]=6249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174405, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45345, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12353, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1248, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=12353, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6249]={ + ["next_chapter"]=6250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174701, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45422, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12477, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1260, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=12477, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=624, + ["unit"]=0 + } + }, + [6250]={ + ["next_chapter"]=6251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=175000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12601, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1273, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=12601, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6251]={ + ["next_chapter"]=6252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=175301, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45578, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12727, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1285, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=12727, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6252]={ + ["next_chapter"]=6253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=175605, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45657, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12855, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1298, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=12855, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6253]={ + ["next_chapter"]=6254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=175911, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45737, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12983, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1311, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=12983, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6254]={ + ["next_chapter"]=6255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176219, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45817, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13113, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1324, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=13113, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6255]={ + ["next_chapter"]=6256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176530, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45898, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13244, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1338, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=13244, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6256]={ + ["next_chapter"]=6257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176844, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=45979, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13377, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1351, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=13377, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6257]={ + ["next_chapter"]=6258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=177159, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46061, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13510, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1365, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=13510, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6258]={ + ["next_chapter"]=6259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=177478, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46144, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13646, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1378, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=13646, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6259]={ + ["next_chapter"]=6260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=177798, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46228, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13782, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1392, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=13782, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=625, + ["unit"]=0 + } + }, + [6260]={ + ["next_chapter"]=6261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=178122, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46312, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13920, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1406, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=13920, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6261]={ + ["next_chapter"]=6262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=178447, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46396, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14059, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1420, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=14059, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6262]={ + ["next_chapter"]=6263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=178776, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46482, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14200, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1434, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=14200, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6263]={ + ["next_chapter"]=6264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179106, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46568, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14342, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1449, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=14342, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6264]={ + ["next_chapter"]=6265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179440, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46654, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14485, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1463, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=14485, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6265]={ + ["next_chapter"]=6266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179775, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46742, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14630, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1478, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=14630, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6266]={ + ["next_chapter"]=6267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=180114, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46830, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14776, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1492, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=14776, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6267]={ + ["next_chapter"]=6268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=180455, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=46918, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14924, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1507, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=14924, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6268]={ + ["next_chapter"]=6269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=180798, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47008, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15073, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1522, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=15073, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6269]={ + ["next_chapter"]=6270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=181144, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47097, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15224, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1538, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=15224, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=626, + ["unit"]=0 + } + }, + [6270]={ + ["next_chapter"]=6271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=181493, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47188, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15376, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1553, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=15376, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6271]={ + ["next_chapter"]=6272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=181844, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47279, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15530, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1569, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=15530, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6272]={ + ["next_chapter"]=6273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=182198, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47371, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15685, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1584, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=15685, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6273]={ + ["next_chapter"]=6274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=182554, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47464, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15842, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1600, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=15842, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6274]={ + ["next_chapter"]=6275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=182913, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47557, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16000, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1616, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=16000, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6275]={ + ["next_chapter"]=6276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=183275, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47652, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16161, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1632, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=16161, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6276]={ + ["next_chapter"]=6277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=183639, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47746, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16322, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1649, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=16322, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6277]={ + ["next_chapter"]=6278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=184006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47842, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16485, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1665, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=16485, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6278]={ + ["next_chapter"]=6279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=184376, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=47938, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16650, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1682, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=16650, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6279]={ + ["next_chapter"]=6280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=184748, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16817, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1698, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=16817, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1623, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=627, + ["unit"]=0 + } + }, + [6280]={ + ["next_chapter"]=6281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=185123, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48132, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16985, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1715, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=16985, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6281]={ + ["next_chapter"]=6282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=185501, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48230, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17155, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1733, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=17155, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6282]={ + ["next_chapter"]=6283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=185881, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48329, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17326, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1750, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=17326, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6283]={ + ["next_chapter"]=6284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=186264, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48429, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17500, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1767, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=17500, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6284]={ + ["next_chapter"]=6285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=186650, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48529, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17675, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1785, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=17675, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6285]={ + ["next_chapter"]=6286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=187039, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48630, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17851, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1803, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=17851, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6286]={ + ["next_chapter"]=6287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=187430, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48732, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18030, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1821, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=18030, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6287]={ + ["next_chapter"]=6288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=187824, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48834, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18210, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1839, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=18210, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6288]={ + ["next_chapter"]=6289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=188221, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=48937, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18392, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1858, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=18392, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6289]={ + ["next_chapter"]=6290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=188620, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18576, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1876, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=18576, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=628, + ["unit"]=0 + } + }, + [6290]={ + ["next_chapter"]=6291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=189022, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49146, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18762, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1895, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=18762, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6291]={ + ["next_chapter"]=6292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=189427, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49251, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18949, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1914, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=18949, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6292]={ + ["next_chapter"]=6293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=189835, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49357, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19139, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1933, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=19139, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6293]={ + ["next_chapter"]=6294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=190246, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49464, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19330, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1952, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=19330, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6294]={ + ["next_chapter"]=6295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=190659, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49571, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19524, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1972, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=19524, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6295]={ + ["next_chapter"]=6296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=191076, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19719, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1992, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=19719, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6296]={ + ["next_chapter"]=6297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=191495, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49789, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19916, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2012, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=19916, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6297]={ + ["next_chapter"]=6298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=191917, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=49898, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20115, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2032, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=20115, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6298]={ + ["next_chapter"]=6299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=192342, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50009, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20316, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2052, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=20316, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6299]={ + ["next_chapter"]=6300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=192769, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50120, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20520, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2072, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=20520, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1981, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=629, + ["unit"]=0 + } + }, + [6300]={ + ["next_chapter"]=6301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=193200, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50232, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20725, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2093, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=20725, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6301]={ + ["next_chapter"]=6302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=193633, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50345, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20932, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2114, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=20932, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6302]={ + ["next_chapter"]=6303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=194070, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50458, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21141, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2135, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=21141, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6303]={ + ["next_chapter"]=6304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=194509, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50572, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21353, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2157, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=21353, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6304]={ + ["next_chapter"]=6305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=194951, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50687, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21566, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2178, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=21566, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6305]={ + ["next_chapter"]=6306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=195396, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50803, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21782, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2200, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=21782, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6306]={ + ["next_chapter"]=6307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=195844, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=50919, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22000, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2222, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=22000, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6307]={ + ["next_chapter"]=6308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=196295, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=51037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22220, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2244, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=22220, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6308]={ + ["next_chapter"]=6309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=196749, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=51155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22442, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2267, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=22442, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6309]={ + ["next_chapter"]=6310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=197206, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=51274, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22666, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2289, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=22666, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=630, + ["unit"]=0 + } + }, + [6310]={ + ["next_chapter"]=6311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=197666, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=51393, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22893, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2312, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=22893, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6311]={ + ["next_chapter"]=6312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=198128, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=51513, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23122, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2335, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=23122, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6312]={ + ["next_chapter"]=6313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=198594, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=51634, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23353, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2359, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=23353, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6313]={ + ["next_chapter"]=6314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=199063, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=51756, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23587, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2382, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=23587, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6314]={ + ["next_chapter"]=6315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=199535, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=51879, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23823, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2406, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=23823, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6315]={ + ["next_chapter"]=6316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=200009, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=52002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24061, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2430, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=24061, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6316]={ + ["next_chapter"]=6317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=200487, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=52127, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24301, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2454, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=24301, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6317]={ + ["next_chapter"]=6318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=200968, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=52252, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24544, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2479, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=24544, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6318]={ + ["next_chapter"]=6319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=201452, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=52377, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24790, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2504, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=24790, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6319]={ + ["next_chapter"]=6320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=201939, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=52504, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25038, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2529, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=25038, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=631, + ["unit"]=0 + } + }, + [6320]={ + ["next_chapter"]=6321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=202429, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=52631, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25288, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2554, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=25288, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6321]={ + ["next_chapter"]=6322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=202922, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=52760, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25541, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2580, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=25541, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6322]={ + ["next_chapter"]=6323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=203418, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=52889, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25796, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2605, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=25796, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6323]={ + ["next_chapter"]=6324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=203917, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=53018, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26054, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2631, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=26054, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6324]={ + ["next_chapter"]=6325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=204420, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=53149, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26315, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2658, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=26315, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6325]={ + ["next_chapter"]=6326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=204925, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=53281, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26578, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2684, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=26578, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6326]={ + ["next_chapter"]=6327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=205434, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=53413, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26844, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2711, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=26844, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6327]={ + ["next_chapter"]=6328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=205945, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=53546, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27112, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2738, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=27112, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6328]={ + ["next_chapter"]=6329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=206460, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=53680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27383, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2766, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=27383, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6329]={ + ["next_chapter"]=6330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=206978, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=53814, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27657, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2793, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=27657, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=632, + ["unit"]=0 + } + }, + [6330]={ + ["next_chapter"]=6331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=207499, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=53950, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27934, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2821, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=27934, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6331]={ + ["next_chapter"]=6332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=208024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=54086, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28213, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2850, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=28213, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6332]={ + ["next_chapter"]=6333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=208551, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=54223, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28495, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2878, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=28495, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6333]={ + ["next_chapter"]=6334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=209082, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=54361, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28780, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2907, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=28780, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6334]={ + ["next_chapter"]=6335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=209616, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=54500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29068, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2936, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=29068, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6335]={ + ["next_chapter"]=6336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=210153, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=54640, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29359, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2965, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=29359, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6336]={ + ["next_chapter"]=6337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=210693, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=54780, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29652, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2995, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=29652, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6337]={ + ["next_chapter"]=6338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=211236, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=54921, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29949, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3025, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=29949, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6338]={ + ["next_chapter"]=6339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=211783, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=55064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30248, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3055, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=30248, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6339]={ + ["next_chapter"]=6340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=212333, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=55207, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30551, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3086, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=30551, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=633, + ["unit"]=0 + } + }, + [6340]={ + ["next_chapter"]=6341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=212886, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=55350, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30856, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3116, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=30856, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6341]={ + ["next_chapter"]=6342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=213443, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=55495, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31165, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3148, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=31165, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6342]={ + ["next_chapter"]=6343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=214003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=55641, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31477, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3179, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=31477, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6343]={ + ["next_chapter"]=6344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=214566, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=55787, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31791, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3211, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=31791, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6344]={ + ["next_chapter"]=6345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=215132, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=55934, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32109, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3243, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=32109, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6345]={ + ["next_chapter"]=6346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=215702, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=56082, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32430, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3275, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=32430, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6346]={ + ["next_chapter"]=6347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=216275, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=56231, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32755, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3308, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=32755, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6347]={ + ["next_chapter"]=6348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=216851, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=56381, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33082, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3341, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=33082, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6348]={ + ["next_chapter"]=6349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=217431, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=56532, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33413, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3375, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=33413, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6349]={ + ["next_chapter"]=6350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=218014, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=56684, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33747, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3408, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=33747, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=634, + ["unit"]=0 + } + }, + [6350]={ + ["next_chapter"]=6351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=218600, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=56836, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34085, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3443, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=34085, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6351]={ + ["next_chapter"]=6352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=219190, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=56989, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34425, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3477, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=34425, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6352]={ + ["next_chapter"]=6353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=219783, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=57144, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34770, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3512, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=34770, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6353]={ + ["next_chapter"]=6354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=220379, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=57299, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35117, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3547, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=35117, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6354]={ + ["next_chapter"]=6355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=220979, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=57455, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35469, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3582, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=35469, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6355]={ + ["next_chapter"]=6356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=221582, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=57611, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35823, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3618, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=35823, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6356]={ + ["next_chapter"]=6357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=222189, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=57769, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36181, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3654, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=36181, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6357]={ + ["next_chapter"]=6358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=222799, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=57928, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36543, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3691, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=36543, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6358]={ + ["next_chapter"]=6359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=223412, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=58087, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36909, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3728, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=36909, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6359]={ + ["next_chapter"]=6360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=224029, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=58248, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37278, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3765, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=37278, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3599, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=635, + ["unit"]=0 + } + }, + [6360]={ + ["next_chapter"]=6361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=224650, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=58409, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37651, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3803, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=37651, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6361]={ + ["next_chapter"]=6362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=225273, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=58571, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38027, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=38027, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6362]={ + ["next_chapter"]=6363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=225901, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=58734, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38407, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3879, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=38407, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6363]={ + ["next_chapter"]=6364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=226531, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=58898, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38791, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3918, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=38791, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6364]={ + ["next_chapter"]=6365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=227166, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=59063, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39179, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3957, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=39179, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6365]={ + ["next_chapter"]=6366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=227803, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=59229, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39571, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3997, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=39571, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6366]={ + ["next_chapter"]=6367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=228445, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=59396, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39967, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4037, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=39967, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6367]={ + ["next_chapter"]=6368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=229089, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=59563, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40367, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4077, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=40367, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6368]={ + ["next_chapter"]=6369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=229738, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=59732, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40770, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4118, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=40770, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6369]={ + ["next_chapter"]=6370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=230389, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=59901, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41178, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4159, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=41178, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=636, + ["unit"]=0 + } + }, + [6370]={ + ["next_chapter"]=6371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=231045, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=60072, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41590, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4201, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=41590, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6371]={ + ["next_chapter"]=6372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=231704, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=60243, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42006, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4243, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=42006, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6372]={ + ["next_chapter"]=6373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=232366, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=60415, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42426, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4285, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=42426, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6373]={ + ["next_chapter"]=6374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=233032, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=60588, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42850, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4328, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=42850, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6374]={ + ["next_chapter"]=6375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=233702, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=60762, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43278, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4371, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=43278, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6375]={ + ["next_chapter"]=6376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=234375, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=60938, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43711, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4415, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=43711, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6376]={ + ["next_chapter"]=6377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=235052, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=61113, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44148, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4459, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=44148, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6377]={ + ["next_chapter"]=6378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=235732, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=61290, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44590, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4504, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=44590, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6378]={ + ["next_chapter"]=6379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=236416, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=61468, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45036, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4549, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=45036, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6379]={ + ["next_chapter"]=6380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=237104, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=61647, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45486, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4594, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=45486, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4391, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=637, + ["unit"]=0 + } + }, + [6380]={ + ["next_chapter"]=6381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=237795, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=61827, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45941, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4640, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=45941, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6381]={ + ["next_chapter"]=6382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=238490, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=62007, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46400, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4686, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=46400, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6382]={ + ["next_chapter"]=6383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=239189, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=62189, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46864, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4733, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=46864, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6383]={ + ["next_chapter"]=6384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=239891, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=62372, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47333, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4781, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=47333, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6384]={ + ["next_chapter"]=6385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=240597, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=62555, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47806, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4828, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=47806, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6385]={ + ["next_chapter"]=6386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=241307, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=62740, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48284, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4877, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=48284, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6386]={ + ["next_chapter"]=6387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=242020, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=62925, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48767, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4925, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=48767, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6387]={ + ["next_chapter"]=6388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=242737, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=63112, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49255, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4975, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=49255, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6388]={ + ["next_chapter"]=6389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=243458, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=63299, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49747, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5024, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=49747, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6389]={ + ["next_chapter"]=6390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=244182, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=63487, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50245, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5075, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=50245, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4851, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=638, + ["unit"]=0 + } + }, + [6390]={ + ["next_chapter"]=6391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=244910, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=63677, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50747, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5125, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=50747, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6391]={ + ["next_chapter"]=6392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=245642, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=63867, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51255, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5177, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=51255, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6392]={ + ["next_chapter"]=6393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=246378, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=64058, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51767, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5228, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=51767, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6393]={ + ["next_chapter"]=6394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=247118, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=64251, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52285, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5281, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=52285, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6394]={ + ["next_chapter"]=6395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=247861, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=64444, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52808, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5334, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=52808, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6395]={ + ["next_chapter"]=6396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=248608, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=64638, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53336, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5387, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=53336, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6396]={ + ["next_chapter"]=6397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=249359, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=64833, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53869, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5441, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=53869, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6397]={ + ["next_chapter"]=6398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=250113, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=65029, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54408, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5495, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=54408, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6398]={ + ["next_chapter"]=6399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=250872, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=65227, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54952, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5550, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=54952, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6399]={ + ["next_chapter"]=6400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=251634, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=65425, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55502, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5606, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=55502, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5358, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=639, + ["unit"]=0 + } + }, + [6400]={ + ["next_chapter"]=6401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=252400, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=65624, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56057, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5662, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=56057, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6401]={ + ["next_chapter"]=6402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=253170, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=65824, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56617, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5718, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=56617, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6402]={ + ["next_chapter"]=6403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=253944, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=66025, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=57183, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5776, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=57183, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6403]={ + ["next_chapter"]=6404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=254721, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=66228, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=57755, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5833, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=57755, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6404]={ + ["next_chapter"]=6405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=255503, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=66431, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58333, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5892, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=58333, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6405]={ + ["next_chapter"]=6406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=256288, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=66635, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58916, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5951, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=58916, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6406]={ + ["next_chapter"]=6407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=257077, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=66840, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59505, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6010, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=59505, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6407]={ + ["next_chapter"]=6408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=257871, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=67046, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=60100, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6070, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=60100, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6408]={ + ["next_chapter"]=6409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=258668, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=67254, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=60701, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6131, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=60701, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6409]={ + ["next_chapter"]=6410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=259469, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=67462, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=61308, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6192, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=61308, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5919, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=640, + ["unit"]=0 + } + }, + [6410]={ + ["next_chapter"]=6411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=260274, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=67671, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=61921, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6254, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=61921, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6411]={ + ["next_chapter"]=6412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=261082, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=67881, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=62541, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6317, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=62541, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6412]={ + ["next_chapter"]=6413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=261895, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=68093, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=63166, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6380, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=63166, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6413]={ + ["next_chapter"]=6414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=262712, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=68305, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=63798, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6444, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=63798, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6414]={ + ["next_chapter"]=6415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=263533, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=68519, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=64436, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6508, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=64436, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6415]={ + ["next_chapter"]=6416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=264357, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=68733, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=65080, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6573, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=65080, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6416]={ + ["next_chapter"]=6417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=265186, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=68948, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=65731, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6639, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=65731, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6417]={ + ["next_chapter"]=6418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=266019, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=69165, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=66388, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6705, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=66388, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6418]={ + ["next_chapter"]=6419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=266855, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=69382, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=67052, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6772, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=67052, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6419]={ + ["next_chapter"]=6420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=267696, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=69601, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=67722, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6840, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=67722, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6538, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=641, + ["unit"]=0 + } + }, + [6420]={ + ["next_chapter"]=6421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=268541, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=69821, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=68400, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6908, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=68400, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6421]={ + ["next_chapter"]=6422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=269390, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=70041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=69084, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6977, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=69084, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6422]={ + ["next_chapter"]=6423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=270242, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=70263, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=69775, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7047, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=69775, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6423]={ + ["next_chapter"]=6424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=271099, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=70486, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=70472, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7118, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=70472, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6424]={ + ["next_chapter"]=6425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=271960, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=70710, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=71177, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7189, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=71177, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6425]={ + ["next_chapter"]=6426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=272825, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=70935, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=71889, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7261, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=71889, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6426]={ + ["next_chapter"]=6427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=273694, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=71160, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=72608, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7333, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=72608, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6427]={ + ["next_chapter"]=6428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=274567, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=71387, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=73334, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7407, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=73334, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6428]={ + ["next_chapter"]=6429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=275444, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=71616, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=74067, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7481, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=74067, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6429]={ + ["next_chapter"]=6430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=276326, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=71845, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=74808, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7556, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=74808, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7222, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=642, + ["unit"]=0 + } + }, + [6430]={ + ["next_chapter"]=6431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=277211, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=72075, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=75556, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7631, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=75556, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6431]={ + ["next_chapter"]=6432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=278101, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=72306, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=76311, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7707, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=76311, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6432]={ + ["next_chapter"]=6433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=278995, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=72539, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=77074, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7785, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=77074, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6433]={ + ["next_chapter"]=6434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=279892, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=72772, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=77845, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7862, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=77845, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6434]={ + ["next_chapter"]=6435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=280794, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=73007, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=78624, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7941, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=78624, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6435]={ + ["next_chapter"]=6436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=281701, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=73242, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=79410, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8020, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=79410, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6436]={ + ["next_chapter"]=6437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=282611, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=73479, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=80204, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8101, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=80204, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6437]={ + ["next_chapter"]=6438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=283526, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=73717, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=81006, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8182, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=81006, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6438]={ + ["next_chapter"]=6439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=284444, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=73956, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=81816, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8263, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=81816, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6439]={ + ["next_chapter"]=6440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=285367, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=74195, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=82634, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8346, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=82634, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=7977, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=643, + ["unit"]=0 + } + }, + [6440]={ + ["next_chapter"]=6441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=286294, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=74437, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=83461, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8430, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=83461, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6441]={ + ["next_chapter"]=6442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=287226, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=74679, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=84295, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8514, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=84295, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6442]={ + ["next_chapter"]=6443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=288161, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=74922, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=85138, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8599, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=85138, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6443]={ + ["next_chapter"]=6444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=289101, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=75166, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=85990, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8685, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=85990, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6444]={ + ["next_chapter"]=6445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=290045, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=75412, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=86849, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8772, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=86849, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6445]={ + ["next_chapter"]=6446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=290994, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=75658, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=87718, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8860, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=87718, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6446]={ + ["next_chapter"]=6447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=291946, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=75906, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=88595, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8948, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=88595, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6447]={ + ["next_chapter"]=6448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=292903, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=76155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=89481, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9038, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=89481, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6448]={ + ["next_chapter"]=6449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=293865, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=76405, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=90376, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9128, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=90376, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6449]={ + ["next_chapter"]=6450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=294830, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=76656, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=91280, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9219, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=91280, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=8812, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=644, + ["unit"]=0 + } + }, + [6450]={ + ["next_chapter"]=6451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=295800, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=76908, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=92192, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9311, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=92192, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6451]={ + ["next_chapter"]=6452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=296774, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=77161, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=93114, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9405, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=93114, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6452]={ + ["next_chapter"]=6453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=297753, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=77416, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=94046, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9499, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=94046, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6453]={ + ["next_chapter"]=6454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=298735, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=77671, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=94986, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9594, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=94986, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6454]={ + ["next_chapter"]=6455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=299723, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=77928, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=95936, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9690, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=95936, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6455]={ + ["next_chapter"]=6456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=300714, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=78186, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=96895, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9786, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=96895, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6456]={ + ["next_chapter"]=6457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=301710, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=78445, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=97864, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9884, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=97864, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6457]={ + ["next_chapter"]=6458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=302710, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=78705, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=98843, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9983, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=98843, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6458]={ + ["next_chapter"]=6459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=303715, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=78966, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=99831, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10083, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=99831, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6459]={ + ["next_chapter"]=6460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=304724, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=79228, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=100830, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10184, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=100830, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=9734, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=645, + ["unit"]=0 + } + }, + [6460]={ + ["next_chapter"]=6461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=305738, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=79492, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=101838, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10286, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=101838, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6461]={ + ["next_chapter"]=6462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=306755, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=79756, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=102856, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10388, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=102856, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6462]={ + ["next_chapter"]=6463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=307778, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=80022, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=103885, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10492, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=103885, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6463]={ + ["next_chapter"]=6464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=308805, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=80289, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=104924, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10597, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=104924, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6464]={ + ["next_chapter"]=6465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=309836, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=80557, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=105973, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10703, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=105973, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6465]={ + ["next_chapter"]=6466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=310871, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=80827, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=107033, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10810, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=107033, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6466]={ + ["next_chapter"]=6467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=311912, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=81097, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=108103, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10918, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=108103, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6467]={ + ["next_chapter"]=6468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=312956, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=81369, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=109184, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11028, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=109184, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6468]={ + ["next_chapter"]=6469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=314005, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=81641, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=110276, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11138, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=110276, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6469]={ + ["next_chapter"]=6470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=315059, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=81915, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=111379, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11249, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=111379, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=10752, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=646, + ["unit"]=0 + } + }, + [6470]={ + ["next_chapter"]=6471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=316117, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=82190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=112492, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11362, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=112492, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6471]={ + ["next_chapter"]=6472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=317179, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=82467, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=113617, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11475, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=113617, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6472]={ + ["next_chapter"]=6473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=318246, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=82744, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=114753, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11590, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=114753, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6473]={ + ["next_chapter"]=6474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=319318, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=83023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=115901, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11706, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=115901, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6474]={ + ["next_chapter"]=6475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=320394, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=83303, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=117060, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11823, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=117060, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6475]={ + ["next_chapter"]=6476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=321475, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=83584, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=118231, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11941, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=118231, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6476]={ + ["next_chapter"]=6477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=322560, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=83866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=119413, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12061, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=119413, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6477]={ + ["next_chapter"]=6478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=323650, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=84149, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=120607, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12181, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=120607, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6478]={ + ["next_chapter"]=6479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=324745, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=84434, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=121813, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12303, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=121813, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6479]={ + ["next_chapter"]=6480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=325844, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=84719, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=123031, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12426, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=123031, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=11877, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=647, + ["unit"]=0 + } + }, + [6480]={ + ["next_chapter"]=6481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=326947, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=85006, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=124261, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12550, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=124261, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6481]={ + ["next_chapter"]=6482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=328055, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=85294, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=125504, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12676, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=125504, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6482]={ + ["next_chapter"]=6483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=329168, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=85584, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=126759, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12803, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=126759, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6483]={ + ["next_chapter"]=6484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=330286, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=85874, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=128027, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12931, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=128027, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6484]={ + ["next_chapter"]=6485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=331408, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=86166, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=129307, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13060, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=129307, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6485]={ + ["next_chapter"]=6486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=332535, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=86459, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=130600, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13191, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=130600, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6486]={ + ["next_chapter"]=6487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=333666, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=86753, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=131906, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13323, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=131906, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6487]={ + ["next_chapter"]=6488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=334802, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=87049, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=133225, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13456, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=133225, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6488]={ + ["next_chapter"]=6489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=335943, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=87345, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=134557, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13590, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=134557, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6489]={ + ["next_chapter"]=6490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=337088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=87643, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=135903, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13726, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=135903, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=13120, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=648, + ["unit"]=0 + } + }, + [6490]={ + ["next_chapter"]=6491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=338238, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=87942, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=137262, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13863, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=137262, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6491]={ + ["next_chapter"]=6492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=339393, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=88242, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=138635, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14002, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=138635, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6492]={ + ["next_chapter"]=6493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=340553, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=88544, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=140021, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14142, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=140021, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6493]={ + ["next_chapter"]=6494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=341717, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=88846, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=141421, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14284, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=141421, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6494]={ + ["next_chapter"]=6495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=342886, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=89150, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=142835, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14426, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=142835, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6495]={ + ["next_chapter"]=6496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=344060, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=89456, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=144264, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14571, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=144264, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6496]={ + ["next_chapter"]=6497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=345238, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=89762, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=145706, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14716, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=145706, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6497]={ + ["next_chapter"]=6498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=346422, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=90070, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=147163, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14864, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=147163, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6498]={ + ["next_chapter"]=6499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=347610, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=90378, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=148635, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15012, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=148635, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6499]={ + ["next_chapter"]=6500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=348802, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=90689, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=150121, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15162, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=150121, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=14492, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=649, + ["unit"]=0 + } + }, + [6500]={ + ["next_chapter"]=6501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=350000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=151623, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15314, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=151623, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6501]={ + ["next_chapter"]=6502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=153139, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15467, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=153139, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6502]={ + ["next_chapter"]=6503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=154670, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15622, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=154670, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6503]={ + ["next_chapter"]=6504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=156217, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15778, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=156217, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6504]={ + ["next_chapter"]=6505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=157779, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15936, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=157779, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6505]={ + ["next_chapter"]=6506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=159357, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16095, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=159357, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6506]={ + ["next_chapter"]=6507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=160950, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16256, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=160950, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6507]={ + ["next_chapter"]=6508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=162560, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16419, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=162560, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6508]={ + ["next_chapter"]=6509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94500, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=164186, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16583, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=164186, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6509]={ + ["next_chapter"]=6510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94501, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=165827, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16749, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=165827, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=16009, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=650, + ["unit"]=0 + } + }, + [6510]={ + ["next_chapter"]=6511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=350004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94501, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=167486, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16916, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=167486, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6511]={ + ["next_chapter"]=6512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350005, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94501, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=169161, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17085, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=169161, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6512]={ + ["next_chapter"]=6513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94502, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=170852, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17256, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=170852, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6513]={ + ["next_chapter"]=6514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350008, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94502, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=172561, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17429, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=172561, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6514]={ + ["next_chapter"]=6515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94503, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=174286, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17603, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=174286, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6515]={ + ["next_chapter"]=6516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94503, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=176029, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17779, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=176029, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6516]={ + ["next_chapter"]=6517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350015, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94504, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=177789, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17957, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=177789, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6517]={ + ["next_chapter"]=6518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350018, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94505, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=179567, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18136, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=179567, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6518]={ + ["next_chapter"]=6519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350021, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94506, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=181363, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18318, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=181363, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6519]={ + ["next_chapter"]=6520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350025, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94507, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=183177, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18501, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=183177, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=17683, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=651, + ["unit"]=0 + } + }, + [6520]={ + ["next_chapter"]=6521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=350029, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94508, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=185008, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18686, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=185008, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6521]={ + ["next_chapter"]=6522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350033, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94509, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=186858, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18873, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=186858, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6522]={ + ["next_chapter"]=6523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350038, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94510, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=188727, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19061, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=188727, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6523]={ + ["next_chapter"]=6524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350044, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94512, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=190614, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19252, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=190614, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6524]={ + ["next_chapter"]=6525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350050, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94513, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=192520, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19445, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=192520, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6525]={ + ["next_chapter"]=6526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350056, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94515, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=194446, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19639, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=194446, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6526]={ + ["next_chapter"]=6527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350063, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94517, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=196390, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19835, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=196390, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6527]={ + ["next_chapter"]=6528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350071, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94519, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=198354, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20034, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=198354, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6528]={ + ["next_chapter"]=6529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350079, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94521, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=200338, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20234, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=200338, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6529]={ + ["next_chapter"]=6530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94524, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=202341, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20436, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=202341, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=19534, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=652, + ["unit"]=0 + } + }, + [6530]={ + ["next_chapter"]=6531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=350097, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94526, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=204364, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20641, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=204364, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6531]={ + ["next_chapter"]=6532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350107, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94529, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=206408, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20847, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=206408, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6532]={ + ["next_chapter"]=6533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350118, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94532, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=208472, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21056, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=208472, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6533]={ + ["next_chapter"]=6534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350129, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94535, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=210557, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21266, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=210557, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6534]={ + ["next_chapter"]=6535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350141, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94538, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=212662, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21479, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=212662, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6535]={ + ["next_chapter"]=6536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350154, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94542, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=214789, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21694, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=214789, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6536]={ + ["next_chapter"]=6537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350168, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94545, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=216937, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21911, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=216937, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6537]={ + ["next_chapter"]=6538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350182, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94549, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=219106, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22130, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=219106, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6538]={ + ["next_chapter"]=6539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350198, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94553, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=221297, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22351, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=221297, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6539]={ + ["next_chapter"]=6540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350214, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94558, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=223510, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22575, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=223510, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=21577, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=653, + ["unit"]=0 + } + }, + [6540]={ + ["next_chapter"]=6541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=350230, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94562, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=225745, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22800, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=225745, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6541]={ + ["next_chapter"]=6542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350248, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94567, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=228003, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23028, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=228003, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6542]={ + ["next_chapter"]=6543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350267, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94572, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=230283, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23259, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=230283, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6543]={ + ["next_chapter"]=6544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350286, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94577, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=232586, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23491, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=232586, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6544]={ + ["next_chapter"]=6545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350307, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94583, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=234912, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23726, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=234912, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6545]={ + ["next_chapter"]=6546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350328, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94589, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=237261, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23963, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=237261, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6546]={ + ["next_chapter"]=6547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350350, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94595, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=239633, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24203, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=239633, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6547]={ + ["next_chapter"]=6548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350374, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94601, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=242030, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24445, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=242030, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6548]={ + ["next_chapter"]=6549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350398, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94607, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=244450, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24689, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=244450, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6549]={ + ["next_chapter"]=6550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350424, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94614, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=246894, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24936, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=246894, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=23835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=654, + ["unit"]=0 + } + }, + [6550]={ + ["next_chapter"]=6551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=350450, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94622, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=249363, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25186, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=249363, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6551]={ + ["next_chapter"]=6552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350478, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94629, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=251857, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25438, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=251857, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6552]={ + ["next_chapter"]=6553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94637, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=254376, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25692, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=254376, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6553]={ + ["next_chapter"]=6554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350536, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94645, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=256919, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25949, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=256919, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6554]={ + ["next_chapter"]=6555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350567, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94653, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=259489, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26208, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=259489, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6555]={ + ["next_chapter"]=6556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350599, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94662, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=262083, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26470, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=262083, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6556]={ + ["next_chapter"]=6557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350632, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94671, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=264704, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26735, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=264704, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6557]={ + ["next_chapter"]=6558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350667, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=267351, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27002, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=267351, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6558]={ + ["next_chapter"]=6559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350702, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94690, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=270025, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27273, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=270025, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6559]={ + ["next_chapter"]=6560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350739, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94700, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=272725, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27545, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=272725, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=26328, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=655, + ["unit"]=0 + } + }, + [6560]={ + ["next_chapter"]=6561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=350778, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94710, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=275452, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27821, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=275452, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6561]={ + ["next_chapter"]=6562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350817, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94721, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=278207, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28099, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=278207, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6562]={ + ["next_chapter"]=6563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350858, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94732, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=280989, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28380, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=280989, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6563]={ + ["next_chapter"]=6564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350900, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94743, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=283799, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28664, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=283799, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6564]={ + ["next_chapter"]=6565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350944, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94755, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=286637, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28950, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=286637, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6565]={ + ["next_chapter"]=6566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350989, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94767, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=289503, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29240, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=289503, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6566]={ + ["next_chapter"]=6567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351035, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94779, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=292398, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29532, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=292398, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6567]={ + ["next_chapter"]=6568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351083, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94792, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=295322, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29828, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=295322, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6568]={ + ["next_chapter"]=6569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351132, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94806, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=298275, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30126, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=298275, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6569]={ + ["next_chapter"]=6570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351183, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94819, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=301258, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30427, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=301258, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=29083, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=656, + ["unit"]=0 + } + }, + [6570]={ + ["next_chapter"]=6571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=351235, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94833, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=304271, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30731, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=304271, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6571]={ + ["next_chapter"]=6572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351288, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94848, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=307313, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31039, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=307313, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6572]={ + ["next_chapter"]=6573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351344, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94863, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=310387, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31349, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=310387, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6573]={ + ["next_chapter"]=6574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351400, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94878, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=313490, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31663, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=313490, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6574]={ + ["next_chapter"]=6575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351459, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94894, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=316625, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31979, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=316625, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6575]={ + ["next_chapter"]=6576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351519, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94910, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=319792, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32299, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=319792, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6576]={ + ["next_chapter"]=6577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351580, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94927, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=322989, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32622, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=322989, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6577]={ + ["next_chapter"]=6578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351644, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94944, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=326219, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32948, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=326219, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6578]={ + ["next_chapter"]=6579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351708, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94961, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=329482, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33278, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=329482, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6579]={ + ["next_chapter"]=6580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351775, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94979, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=332776, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33610, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=332776, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=32126, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=657, + ["unit"]=0 + } + }, + [6580]={ + ["next_chapter"]=6581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=351843, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=94998, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=336104, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33947, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=336104, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6581]={ + ["next_chapter"]=6582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351913, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95017, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=339465, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34286, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=339465, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6582]={ + ["next_chapter"]=6583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351985, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=342860, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34629, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=342860, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6583]={ + ["next_chapter"]=6584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352058, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95056, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=346288, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34975, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=346288, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6584]={ + ["next_chapter"]=6585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352134, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95076, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=349751, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35325, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=349751, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6585]={ + ["next_chapter"]=6586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352211, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95097, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=353249, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35678, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=353249, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6586]={ + ["next_chapter"]=6587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352290, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95118, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=356781, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36035, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=356781, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6587]={ + ["next_chapter"]=6588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352371, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95140, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=360349, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36395, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=360349, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6588]={ + ["next_chapter"]=6589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352453, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95162, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=363953, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36759, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=363953, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6589]={ + ["next_chapter"]=6590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352538, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95185, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=367592, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37127, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=367592, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=35487, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=658, + ["unit"]=0 + } + }, + [6590]={ + ["next_chapter"]=6591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=352624, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95209, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=371268, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37498, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=371268, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6591]={ + ["next_chapter"]=6592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352713, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95232, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=374981, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37873, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=374981, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6592]={ + ["next_chapter"]=6593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352803, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95257, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=378731, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38252, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=378731, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6593]={ + ["next_chapter"]=6594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352896, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95282, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=382518, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38634, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=382518, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6594]={ + ["next_chapter"]=6595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352990, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95307, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=386343, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39021, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=386343, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6595]={ + ["next_chapter"]=6596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353087, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95333, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=390206, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39411, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=390206, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6596]={ + ["next_chapter"]=6597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353185, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95360, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=394109, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39805, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=394109, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6597]={ + ["next_chapter"]=6598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353286, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95387, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=398050, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40203, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=398050, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6598]={ + ["next_chapter"]=6599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353388, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95415, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=402030, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40605, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=402030, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6599]={ + ["next_chapter"]=6600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353493, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95443, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=406050, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41011, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=406050, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=39199, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=659, + ["unit"]=0 + } + }, + [6600]={ + ["next_chapter"]=6601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=353600, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95472, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=410111, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41421, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=410111, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6601]={ + ["next_chapter"]=6602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353709, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95501, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=414212, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41835, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=414212, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6602]={ + ["next_chapter"]=6603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353820, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95531, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=418354, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42254, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=418354, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6603]={ + ["next_chapter"]=6604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353934, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95562, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=422538, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42676, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=422538, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6604]={ + ["next_chapter"]=6605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354050, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95593, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=426763, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43103, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=426763, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6605]={ + ["next_chapter"]=6606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354167, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95625, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=431031, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43534, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=431031, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6606]={ + ["next_chapter"]=6607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354288, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95658, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=435341, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43969, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=435341, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6607]={ + ["next_chapter"]=6608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354410, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95691, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=439694, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44409, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=439694, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6608]={ + ["next_chapter"]=6609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354535, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95724, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=444091, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44853, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=444091, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6609]={ + ["next_chapter"]=6610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354662, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95759, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=448532, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45302, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=448532, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=43300, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=660, + ["unit"]=0 + } + }, + [6610]={ + ["next_chapter"]=6611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=354792, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95794, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=453018, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45755, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=453018, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6611]={ + ["next_chapter"]=6612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354923, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95829, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=457548, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46212, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=457548, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6612]={ + ["next_chapter"]=6613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355058, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=462123, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46674, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=462123, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6613]={ + ["next_chapter"]=6614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355194, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95902, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=466745, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47141, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=466745, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6614]={ + ["next_chapter"]=6615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355334, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95940, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=471412, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47613, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=471412, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6615]={ + ["next_chapter"]=6616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355475, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=95978, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=476126, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48089, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=476126, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6616]={ + ["next_chapter"]=6617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355619, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96017, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=480887, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48570, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=480887, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6617]={ + ["next_chapter"]=6618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355766, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96057, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=485696, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49055, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=485696, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6618]={ + ["next_chapter"]=6619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355915, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96097, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=490553, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49546, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=490553, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6619]={ + ["next_chapter"]=6620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=356067, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96138, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=495459, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50041, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=495459, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=47831, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=661, + ["unit"]=0 + } + }, + [6620]={ + ["next_chapter"]=6621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=356221, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96180, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=500413, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50542, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=500413, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6621]={ + ["next_chapter"]=6622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=356378, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96222, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=505417, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51047, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=505417, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6622]={ + ["next_chapter"]=6623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=356537, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96265, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=510472, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51558, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=510472, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6623]={ + ["next_chapter"]=6624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=356699, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96309, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=515576, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52073, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=515576, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6624]={ + ["next_chapter"]=6625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=356864, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96353, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=520732, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52594, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=520732, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6625]={ + ["next_chapter"]=6626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96398, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=525939, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53120, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=525939, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6626]={ + ["next_chapter"]=6627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357201, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96444, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=531199, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53651, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=531199, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6627]={ + ["next_chapter"]=6628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357374, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96491, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=536511, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54188, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=536511, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6628]={ + ["next_chapter"]=6629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357550, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96538, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=541876, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54729, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=541876, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6629]={ + ["next_chapter"]=6630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357728, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96587, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=547295, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55277, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=547295, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=52835, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=662, + ["unit"]=0 + } + }, + [6630]={ + ["next_chapter"]=6631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=357909, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96635, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=552768, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55830, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=552768, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6631]={ + ["next_chapter"]=6632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=358093, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96685, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=558295, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56388, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=558295, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6632]={ + ["next_chapter"]=6633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=358280, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96736, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=563878, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56952, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=563878, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6633]={ + ["next_chapter"]=6634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=358469, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96787, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=569517, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57521, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=569517, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6634]={ + ["next_chapter"]=6635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=358662, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96839, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=575212, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58096, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=575212, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6635]={ + ["next_chapter"]=6636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=358857, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96891, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=580964, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58677, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=580964, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6636]={ + ["next_chapter"]=6637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=359056, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96945, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=586774, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59264, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=586774, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6637]={ + ["next_chapter"]=6638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=359257, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=96999, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=592642, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59857, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=592642, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6638]={ + ["next_chapter"]=6639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=359461, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97054, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=598568, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60455, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=598568, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6639]={ + ["next_chapter"]=6640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=359668, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97110, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=604554, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61060, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=604554, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=58362, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=663, + ["unit"]=0 + } + }, + [6640]={ + ["next_chapter"]=6641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=359878, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97167, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=610599, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61671, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=610599, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6641]={ + ["next_chapter"]=6642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=360092, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97225, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=616705, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62287, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=616705, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6642]={ + ["next_chapter"]=6643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=360308, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97283, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=622872, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62910, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=622872, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6643]={ + ["next_chapter"]=6644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=360527, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97342, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=629101, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63539, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=629101, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6644]={ + ["next_chapter"]=6645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=360750, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97402, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=635392, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64175, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=635392, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6645]={ + ["next_chapter"]=6646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=360975, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97463, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=641746, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64816, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=641746, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6646]={ + ["next_chapter"]=6647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=361204, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97525, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=648163, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65465, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=648163, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6647]={ + ["next_chapter"]=6648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=361435, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97588, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=654645, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66119, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=654645, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6648]={ + ["next_chapter"]=6649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=361670, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97651, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=661192, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66780, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=661192, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6649]={ + ["next_chapter"]=6650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=361909, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97715, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=667803, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67448, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=667803, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=64468, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=664, + ["unit"]=0 + } + }, + [6650]={ + ["next_chapter"]=6651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=362150, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97781, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=674481, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68123, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=674481, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6651]={ + ["next_chapter"]=6652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=362395, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97847, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=681226, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68804, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=681226, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6652]={ + ["next_chapter"]=6653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=362643, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97913, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=688039, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69492, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=688039, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6653]={ + ["next_chapter"]=6654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=362894, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=97981, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=694919, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70187, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=694919, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6654]={ + ["next_chapter"]=6655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=363148, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98050, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=701868, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70889, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=701868, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6655]={ + ["next_chapter"]=6656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=363406, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98120, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=708887, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71598, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=708887, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6656]={ + ["next_chapter"]=6657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=363667, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=715976, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72314, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=715976, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6657]={ + ["next_chapter"]=6658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=363932, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98262, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=723135, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73037, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=723135, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6658]={ + ["next_chapter"]=6659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=364200, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98334, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=730367, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73767, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=730367, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6659]={ + ["next_chapter"]=6660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=364471, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98407, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=737670, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74505, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=737670, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=71213, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=665, + ["unit"]=0 + } + }, + [6660]={ + ["next_chapter"]=6661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=364746, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98481, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=745047, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75250, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=745047, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6661]={ + ["next_chapter"]=6662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=365024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98556, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=752498, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76002, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=752498, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6662]={ + ["next_chapter"]=6663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=365306, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98632, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=760023, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76762, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=760023, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6663]={ + ["next_chapter"]=6664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=365591, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98709, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=767623, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77530, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=767623, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6664]={ + ["next_chapter"]=6665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=365879, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98787, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=775299, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78305, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=775299, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6665]={ + ["next_chapter"]=6666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=366172, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=783052, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79088, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=783052, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6666]={ + ["next_chapter"]=6667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=366467, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=98946, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=790883, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79879, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=790883, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6667]={ + ["next_chapter"]=6668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=366767, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99027, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=798791, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80678, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=798791, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6668]={ + ["next_chapter"]=6669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=367070, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99109, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=806779, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81485, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=806779, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6669]={ + ["next_chapter"]=6670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=367377, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99192, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=814847, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82300, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=814847, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=78664, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=666, + ["unit"]=0 + } + }, + [6670]={ + ["next_chapter"]=6671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=367687, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99275, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=822996, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83123, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=822996, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6671]={ + ["next_chapter"]=6672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=368001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99360, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=831226, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83954, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=831226, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6672]={ + ["next_chapter"]=6673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=368318, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99446, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=839538, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84793, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=839538, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6673]={ + ["next_chapter"]=6674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=368640, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99533, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=847933, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85641, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=847933, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6674]={ + ["next_chapter"]=6675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=368965, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99621, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=856413, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86498, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=856413, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6675]={ + ["next_chapter"]=6676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=369294, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99709, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=864977, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87363, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=864977, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6676]={ + ["next_chapter"]=6677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=369626, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99799, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=873626, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88236, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=873626, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6677]={ + ["next_chapter"]=6678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=369963, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99890, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=882363, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89119, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=882363, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6678]={ + ["next_chapter"]=6679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=370303, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=99982, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=891186, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90010, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=891186, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6679]={ + ["next_chapter"]=6680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=370647, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100075, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=900098, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90910, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=900098, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=86894, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=667, + ["unit"]=0 + } + }, + [6680]={ + ["next_chapter"]=6681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=370995, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100169, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=909099, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91819, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=909099, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6681]={ + ["next_chapter"]=6682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=371347, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100264, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=918190, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92737, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=918190, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6682]={ + ["next_chapter"]=6683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=371703, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100360, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=927372, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93665, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=927372, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6683]={ + ["next_chapter"]=6684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=372063, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100457, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=936646, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94601, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=936646, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6684]={ + ["next_chapter"]=6685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=372426, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100555, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=946012, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95547, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=946012, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6685]={ + ["next_chapter"]=6686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=372794, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100654, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=955472, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96503, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=955472, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6686]={ + ["next_chapter"]=6687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=373165, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100755, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=965027, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97468, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=965027, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6687]={ + ["next_chapter"]=6688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=373541, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100856, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=974677, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98442, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=974677, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6688]={ + ["next_chapter"]=6689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=373921, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=100959, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=984424, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99427, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=984424, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6689]={ + ["next_chapter"]=6690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=374305, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101062, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=994268, + ["unit"]=8 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100421, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=994268, + ["unit"]=8 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=95985, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=668, + ["unit"]=0 + } + }, + [6690]={ + ["next_chapter"]=6691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=374692, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101167, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1004, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101425, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1004, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6691]={ + ["next_chapter"]=6692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=375084, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101273, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1014, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102440, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1014, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6692]={ + ["next_chapter"]=6693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=375480, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101380, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1024, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103464, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1024, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6693]={ + ["next_chapter"]=6694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=375881, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101488, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1035, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104499, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1035, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6694]={ + ["next_chapter"]=6695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=376285, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101597, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1045, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105544, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1045, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6695]={ + ["next_chapter"]=6696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=376694, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101707, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106599, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6696]={ + ["next_chapter"]=6697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=377106, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101819, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1066, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107665, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1066, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6697]={ + ["next_chapter"]=6698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=377523, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=101931, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1077, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108742, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1077, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6698]={ + ["next_chapter"]=6699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=377945, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102045, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1087, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109829, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1087, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6699]={ + ["next_chapter"]=6700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=378370, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102160, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1098, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110927, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1098, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=106027, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=669, + ["unit"]=0 + } + }, + [6700]={ + ["next_chapter"]=6701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=378800, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102276, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1109, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112037, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1109, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6701]={ + ["next_chapter"]=6702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=379234, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102393, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1120, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113157, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6702]={ + ["next_chapter"]=6703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=379673, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102512, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1132, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114289, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1132, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6703]={ + ["next_chapter"]=6704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=380116, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102631, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1143, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115431, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1143, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6704]={ + ["next_chapter"]=6705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=380563, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102752, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1154, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116586, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1154, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6705]={ + ["next_chapter"]=6706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=381014, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102874, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1166, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117752, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1166, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6706]={ + ["next_chapter"]=6707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=381471, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=102997, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1178, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118929, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1178, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6707]={ + ["next_chapter"]=6708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=381931, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=103121, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1189, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120118, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1189, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6708]={ + ["next_chapter"]=6709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=382396, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=103247, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1201, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121320, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1201, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6709]={ + ["next_chapter"]=6710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=382866, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=103374, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1213, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122533, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1213, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=117119, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=670, + ["unit"]=0 + } + }, + [6710]={ + ["next_chapter"]=6711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=383340, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=103502, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1225, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123758, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1225, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6711]={ + ["next_chapter"]=6712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=383818, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=103631, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1238, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124996, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1238, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6712]={ + ["next_chapter"]=6713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=384301, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=103761, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1250, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126246, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6713]={ + ["next_chapter"]=6714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=384789, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=103893, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1262, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127508, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1262, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6714]={ + ["next_chapter"]=6715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=385281, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=104026, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1275, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128783, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1275, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6715]={ + ["next_chapter"]=6716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=385778, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=104160, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1288, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130071, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1288, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6716]={ + ["next_chapter"]=6717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=386280, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=104296, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1301, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131372, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1301, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6717]={ + ["next_chapter"]=6718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=386786, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=104432, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1314, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132685, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1314, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6718]={ + ["next_chapter"]=6719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=387297, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=104570, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1327, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134012, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1327, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6719]={ + ["next_chapter"]=6720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=387812, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=104709, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1340, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135352, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=129373, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=671, + ["unit"]=0 + } + }, + [6720]={ + ["next_chapter"]=6721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=388333, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=104850, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1354, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136706, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1354, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6721]={ + ["next_chapter"]=6722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=388858, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=104992, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1367, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138073, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1367, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6722]={ + ["next_chapter"]=6723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=389388, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=105135, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1381, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139454, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1381, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6723]={ + ["next_chapter"]=6724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=389922, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=105279, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1395, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140848, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1395, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6724]={ + ["next_chapter"]=6725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=390462, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=105425, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1408, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142257, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1408, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6725]={ + ["next_chapter"]=6726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=391006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=105572, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1423, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143679, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1423, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6726]={ + ["next_chapter"]=6727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=391555, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=105720, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1437, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145116, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1437, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6727]={ + ["next_chapter"]=6728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=392109, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=105870, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1451, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146567, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1451, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6728]={ + ["next_chapter"]=6729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=392668, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=106020, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1466, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148033, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1466, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6729]={ + ["next_chapter"]=6730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=393232, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=106173, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1480, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149513, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=142908, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=672, + ["unit"]=0 + } + }, + [6730]={ + ["next_chapter"]=6731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=393801, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=106326, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1495, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151008, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1495, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6731]={ + ["next_chapter"]=6732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=394375, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=106481, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1510, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152519, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1510, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6732]={ + ["next_chapter"]=6733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=394954, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=106638, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1525, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154044, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1525, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6733]={ + ["next_chapter"]=6734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=395538, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=106795, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1540, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155584, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6734]={ + ["next_chapter"]=6735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=396126, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=106954, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1556, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157140, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1556, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6735]={ + ["next_chapter"]=6736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=396720, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=107114, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1571, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158711, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1571, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6736]={ + ["next_chapter"]=6737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=397319, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=107276, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1587, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160299, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1587, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6737]={ + ["next_chapter"]=6738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=397923, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=107439, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1603, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161902, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1603, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6738]={ + ["next_chapter"]=6739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=398533, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=107604, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1619, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163521, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1619, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6739]={ + ["next_chapter"]=6740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=399147, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=107770, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1635, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165156, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1635, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=157859, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=673, + ["unit"]=0 + } + }, + [6740]={ + ["next_chapter"]=6741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=399766, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=107937, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1652, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166807, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1652, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6741]={ + ["next_chapter"]=6742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=400391, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=108106, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1668, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168475, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1668, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6742]={ + ["next_chapter"]=6743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=401021, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=108276, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1685, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170160, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1685, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6743]={ + ["next_chapter"]=6744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=401656, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=108447, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1702, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171862, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1702, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6744]={ + ["next_chapter"]=6745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=402296, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=108620, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1719, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173580, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1719, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6745]={ + ["next_chapter"]=6746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=402942, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=108794, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1736, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175316, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1736, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6746]={ + ["next_chapter"]=6747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=403593, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=108970, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1753, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177069, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1753, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6747]={ + ["next_chapter"]=6748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=404249, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=109147, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1771, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178840, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1771, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6748]={ + ["next_chapter"]=6749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=404911, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=109326, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1788, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180628, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1788, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6749]={ + ["next_chapter"]=6750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=405578, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=109506, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1806, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182435, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1806, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=174375, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=674, + ["unit"]=0 + } + }, + [6750]={ + ["next_chapter"]=6751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=406250, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=109688, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1824, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184259, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1824, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6751]={ + ["next_chapter"]=6752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=406928, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=109870, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1843, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186102, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1843, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6752]={ + ["next_chapter"]=6753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=407611, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=110055, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1861, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187963, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1861, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6753]={ + ["next_chapter"]=6754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=408299, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=110241, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1880, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189842, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1880, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6754]={ + ["next_chapter"]=6755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=408993, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=110428, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1898, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191741, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1898, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6755]={ + ["next_chapter"]=6756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=409693, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=110617, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1917, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193658, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1917, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6756]={ + ["next_chapter"]=6757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=410398, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=110807, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1937, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195595, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1937, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6757]={ + ["next_chapter"]=6758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=411109, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=110999, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1956, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197551, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1956, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6758]={ + ["next_chapter"]=6759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=411825, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=111193, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1976, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199526, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1976, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6759]={ + ["next_chapter"]=6760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=412546, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=111388, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1995, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201521, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=1995, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=192618, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=675, + ["unit"]=0 + } + }, + [6760]={ + ["next_chapter"]=6761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=413274, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=111584, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203537, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6761]={ + ["next_chapter"]=6762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=414006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=111782, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2035, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205572, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2035, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6762]={ + ["next_chapter"]=6763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=414745, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=111981, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2056, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207628, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2056, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6763]={ + ["next_chapter"]=6764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=415489, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=112182, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2076, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209704, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2076, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6764]={ + ["next_chapter"]=6765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=416239, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=112385, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2097, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211801, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2097, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6765]={ + ["next_chapter"]=6766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=416995, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=112589, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2118, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213919, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2118, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6766]={ + ["next_chapter"]=6767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=417756, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=112794, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2139, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216058, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2139, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6767]={ + ["next_chapter"]=6768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=418523, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=113001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2161, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218219, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2161, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6768]={ + ["next_chapter"]=6769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=419296, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=113210, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2182, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220401, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2182, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6769]={ + ["next_chapter"]=6770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=420074, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=113420, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2204, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222605, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2204, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=212770, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=676, + ["unit"]=0 + } + }, + [6770]={ + ["next_chapter"]=6771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=420859, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=113632, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2226, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224831, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2226, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6771]={ + ["next_chapter"]=6772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=421649, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=113845, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2248, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227079, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2248, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6772]={ + ["next_chapter"]=6773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=422445, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=114060, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2271, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229350, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2271, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6773]={ + ["next_chapter"]=6774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=423247, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=114277, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2294, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231644, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2294, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6774]={ + ["next_chapter"]=6775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=424055, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=114495, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2316, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233960, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2316, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6775]={ + ["next_chapter"]=6776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=424869, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=114715, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2340, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236300, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2340, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6776]={ + ["next_chapter"]=6777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=425688, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=114936, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2363, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238663, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2363, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6777]={ + ["next_chapter"]=6778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=426514, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=115159, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2387, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241049, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2387, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6778]={ + ["next_chapter"]=6779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=427346, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=115383, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2410, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243460, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2410, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6779]={ + ["next_chapter"]=6780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=428184, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=115610, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2435, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245894, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2435, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=235031, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=677, + ["unit"]=0 + } + }, + [6780]={ + ["next_chapter"]=6781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=429027, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=115837, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2459, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248353, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2459, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6781]={ + ["next_chapter"]=6782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=429877, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=116067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2484, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250837, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2484, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6782]={ + ["next_chapter"]=6783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=430733, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=116298, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2508, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253345, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2508, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6783]={ + ["next_chapter"]=6784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=431595, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=116531, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2533, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255879, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2533, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6784]={ + ["next_chapter"]=6785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=432463, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=116765, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2559, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258437, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2559, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6785]={ + ["next_chapter"]=6786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=433337, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=117001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2584, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261022, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2584, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6786]={ + ["next_chapter"]=6787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=434217, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=117239, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2610, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263632, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2610, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6787]={ + ["next_chapter"]=6788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=435104, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=117478, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2636, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266268, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2636, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6788]={ + ["next_chapter"]=6789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=435996, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=117719, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2663, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268931, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2663, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6789]={ + ["next_chapter"]=6790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=436895, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=117962, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2689, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271620, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2689, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=259620, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=678, + ["unit"]=0 + } + }, + [6790]={ + ["next_chapter"]=6791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=437800, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=118206, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2716, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274337, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2716, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6791]={ + ["next_chapter"]=6792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=438712, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=118452, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2743, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277080, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2743, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6792]={ + ["next_chapter"]=6793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=439630, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=118700, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2771, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279851, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2771, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6793]={ + ["next_chapter"]=6794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=440554, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=118949, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2799, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=282649, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2799, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6794]={ + ["next_chapter"]=6795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=441484, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=119201, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2826, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=285476, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2826, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6795]={ + ["next_chapter"]=6796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=442421, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=119454, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2855, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288331, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2855, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6796]={ + ["next_chapter"]=6797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=443364, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=119708, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2883, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291214, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2883, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6797]={ + ["next_chapter"]=6798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=444313, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=119965, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2912, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=294126, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2912, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6798]={ + ["next_chapter"]=6799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=445269, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=120223, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2941, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=297067, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2941, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6799]={ + ["next_chapter"]=6800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=446231, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=120482, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2971, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300038, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=2971, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=286782, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=679, + ["unit"]=0 + } + }, + [6800]={ + ["next_chapter"]=6801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=447200, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=120744, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=303038, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3000, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6801]={ + ["next_chapter"]=6802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=448175, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=121007, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3030, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=306069, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3030, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6802]={ + ["next_chapter"]=6803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=449157, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=121272, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3061, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=309129, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3061, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6803]={ + ["next_chapter"]=6804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450145, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=121539, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3091, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=312221, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3091, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6804]={ + ["next_chapter"]=6805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=451140, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=121808, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3122, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=315343, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3122, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6805]={ + ["next_chapter"]=6806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=452141, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=122078, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3153, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=318496, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3153, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6806]={ + ["next_chapter"]=6807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=453149, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=122350, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3185, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=321681, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3185, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6807]={ + ["next_chapter"]=6808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=454164, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=122624, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3217, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=324898, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3217, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6808]={ + ["next_chapter"]=6809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=455185, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=122900, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3249, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328147, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3249, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6809]={ + ["next_chapter"]=6810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=456213, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=123178, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3281, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331428, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3281, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=316786, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=680, + ["unit"]=0 + } + }, + [6810]={ + ["next_chapter"]=6811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=457248, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=123457, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3314, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334743, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3314, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6811]={ + ["next_chapter"]=6812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=458289, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=123738, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3347, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338090, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3347, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6812]={ + ["next_chapter"]=6813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=459337, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=124021, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3381, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=341471, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3381, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6813]={ + ["next_chapter"]=6814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=460391, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=124306, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3415, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=344886, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3415, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6814]={ + ["next_chapter"]=6815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=461453, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=124592, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3449, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=348335, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3449, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6815]={ + ["next_chapter"]=6816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=462521, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=124881, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3483, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=351818, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3483, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6816]={ + ["next_chapter"]=6817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=463596, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=125171, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3518, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=355336, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3518, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6817]={ + ["next_chapter"]=6818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=464678, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=125463, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3553, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358890, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3553, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6818]={ + ["next_chapter"]=6819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=465767, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=125757, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3589, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362478, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3589, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6819]={ + ["next_chapter"]=6820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=466862, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=126053, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3625, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366103, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3625, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=349929, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=681, + ["unit"]=0 + } + }, + [6820]={ + ["next_chapter"]=6821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=467965, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=126350, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3661, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=369764, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3661, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6821]={ + ["next_chapter"]=6822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=469074, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=126650, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3698, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=373462, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3698, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6822]={ + ["next_chapter"]=6823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=470190, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=126951, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3735, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=377197, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3735, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6823]={ + ["next_chapter"]=6824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=471314, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=127255, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3772, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=380969, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3772, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6824]={ + ["next_chapter"]=6825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=472444, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=127560, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3810, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=384778, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3810, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6825]={ + ["next_chapter"]=6826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=473581, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=127867, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3848, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=388626, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3848, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6826]={ + ["next_chapter"]=6827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=474726, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=128176, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3886, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=392512, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3886, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6827]={ + ["next_chapter"]=6828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=475877, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=128487, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3925, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=396437, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3925, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6828]={ + ["next_chapter"]=6829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=477035, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=128800, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3964, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=400402, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=3964, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6829]={ + ["next_chapter"]=6830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=478201, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=129114, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4004, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=404406, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4004, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=386539, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=682, + ["unit"]=0 + } + }, + [6830]={ + ["next_chapter"]=6831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=479373, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=129431, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4044, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=408450, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4044, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6831]={ + ["next_chapter"]=6832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=480553, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=129749, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4084, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=412534, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4084, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6832]={ + ["next_chapter"]=6833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=481740, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=130070, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4125, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=416660, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4125, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6833]={ + ["next_chapter"]=6834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=482934, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=130392, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4167, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=420826, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4167, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6834]={ + ["next_chapter"]=6835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=484135, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=130716, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4208, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=425035, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4208, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6835]={ + ["next_chapter"]=6836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=485343, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=131043, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4250, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=429285, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4250, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6836]={ + ["next_chapter"]=6837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=486559, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=131371, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4293, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=433578, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4293, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6837]={ + ["next_chapter"]=6838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=487782, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=131701, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4336, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=437913, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4336, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6838]={ + ["next_chapter"]=6839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=489012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=132033, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4379, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=442293, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4379, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6839]={ + ["next_chapter"]=6840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=490250, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=132367, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4423, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446716, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4423, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=426980, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=683, + ["unit"]=0 + } + }, + [6840]={ + ["next_chapter"]=6841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=491494, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=132703, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4467, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451183, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4467, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6841]={ + ["next_chapter"]=6842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=492747, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=133042, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4512, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=455695, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4512, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6842]={ + ["next_chapter"]=6843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=494006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=133382, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4557, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=460251, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4557, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6843]={ + ["next_chapter"]=6844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=495273, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=133724, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4603, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=464854, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4603, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6844]={ + ["next_chapter"]=6845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=496547, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=134068, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4649, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=469503, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4649, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6845]={ + ["next_chapter"]=6846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=497829, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=134414, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4695, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=474198, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4695, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6846]={ + ["next_chapter"]=6847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=499118, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=134762, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4742, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=478940, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4742, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6847]={ + ["next_chapter"]=6848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=500415, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=135112, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4789, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=483729, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4789, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6848]={ + ["next_chapter"]=6849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=501719, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=135464, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4837, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=488566, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4837, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6849]={ + ["next_chapter"]=6850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=503031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=135818, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4886, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=493452, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4886, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=471652, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=684, + ["unit"]=0 + } + }, + [6850]={ + ["next_chapter"]=6851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=504350, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=136175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4935, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=498386, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4935, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6851]={ + ["next_chapter"]=6852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=505677, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=136533, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4984, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=503370, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=4984, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6852]={ + ["next_chapter"]=6853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=507011, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=136893, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5034, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=508404, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5034, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6853]={ + ["next_chapter"]=6854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=508353, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=137255, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5084, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=513488, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5084, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6854]={ + ["next_chapter"]=6855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=509703, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=137620, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5135, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=518623, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5135, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6855]={ + ["next_chapter"]=6856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=511060, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=137986, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5186, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=523809, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5186, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6856]={ + ["next_chapter"]=6857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=512425, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=138355, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5238, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=529047, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5238, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6857]={ + ["next_chapter"]=6858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=513797, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=138725, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5290, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534338, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5290, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6858]={ + ["next_chapter"]=6859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=515178, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=139098, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5343, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=539681, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5343, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6859]={ + ["next_chapter"]=6860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=516566, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=139473, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5397, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=545078, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5397, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=520997, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=685, + ["unit"]=0 + } + }, + [6860]={ + ["next_chapter"]=6861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=517962, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=139850, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5451, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=550529, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5451, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6861]={ + ["next_chapter"]=6862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=519365, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=140229, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5505, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=556034, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5505, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6862]={ + ["next_chapter"]=6863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=520777, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=140610, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5560, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=561594, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5560, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6863]={ + ["next_chapter"]=6864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=522196, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=140993, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5616, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=567210, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5616, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6864]={ + ["next_chapter"]=6865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=523623, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=141378, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5672, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=572882, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5672, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6865]={ + ["next_chapter"]=6866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=525058, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=141766, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5729, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=578611, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5729, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6866]={ + ["next_chapter"]=6867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=526500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=142155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5786, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=584397, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5786, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6867]={ + ["next_chapter"]=6868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=527951, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=142547, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5844, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=590241, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5844, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6868]={ + ["next_chapter"]=6869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=529410, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=142941, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5902, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=596144, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5902, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6869]={ + ["next_chapter"]=6870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=530876, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=143337, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5961, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=602105, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=5961, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=575505, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=686, + ["unit"]=0 + } + }, + [6870]={ + ["next_chapter"]=6871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=532351, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=143735, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6021, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=608126, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6021, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6871]={ + ["next_chapter"]=6872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=533833, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=144135, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6081, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=614207, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6081, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6872]={ + ["next_chapter"]=6873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=535324, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=144537, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6142, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=620349, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6142, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6873]={ + ["next_chapter"]=6874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=536822, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=144942, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6203, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=626553, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6203, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6874]={ + ["next_chapter"]=6875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=538329, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=145349, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6266, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=632818, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6266, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6875]={ + ["next_chapter"]=6876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=539844, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=145758, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6328, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=639147, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6328, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6876]={ + ["next_chapter"]=6877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=541367, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=146169, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6391, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=645538, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6391, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6877]={ + ["next_chapter"]=6878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=542897, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=146582, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6455, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=651993, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6455, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6878]={ + ["next_chapter"]=6879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=544437, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=146998, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6520, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=658513, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6520, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6879]={ + ["next_chapter"]=6880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=545984, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=147416, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6585, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=665099, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6585, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=635715, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=687, + ["unit"]=0 + } + }, + [6880]={ + ["next_chapter"]=6881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=547539, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=147836, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6651, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=671750, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6651, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6881]={ + ["next_chapter"]=6882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=549103, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=148258, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6717, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=678467, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6717, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6882]={ + ["next_chapter"]=6883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=550675, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=148682, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6785, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=685252, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6785, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6883]={ + ["next_chapter"]=6884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=552255, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=149109, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6853, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=692104, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6853, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6884]={ + ["next_chapter"]=6885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=553843, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=149538, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6921, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=699025, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6921, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6885]={ + ["next_chapter"]=6886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=555440, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=149969, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6990, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=706016, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=6990, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6886]={ + ["next_chapter"]=6887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=557045, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=150402, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7060, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=713076, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7060, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6887]={ + ["next_chapter"]=6888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=558658, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=150838, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7131, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=720206, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7131, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6888]={ + ["next_chapter"]=6889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=560280, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=151276, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7202, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=727409, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7202, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6889]={ + ["next_chapter"]=6890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=561910, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=151716, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7274, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=734683, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7274, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=702225, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=688, + ["unit"]=0 + } + }, + [6890]={ + ["next_chapter"]=6891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=563548, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=152158, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7347, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=742029, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7347, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6891]={ + ["next_chapter"]=6892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=565195, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=152603, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7420, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=749450, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7420, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6892]={ + ["next_chapter"]=6893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=566851, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=153050, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7494, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=756944, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7494, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6893]={ + ["next_chapter"]=6894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=568514, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=153499, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7569, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=764514, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7569, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6894]={ + ["next_chapter"]=6895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=570187, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=153950, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7645, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=772159, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7645, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6895]={ + ["next_chapter"]=6896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=571868, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=154404, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7722, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=779880, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7722, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6896]={ + ["next_chapter"]=6897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=573557, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=154860, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7799, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=787679, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7799, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6897]={ + ["next_chapter"]=6898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=575255, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=155319, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7877, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=795556, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7877, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6898]={ + ["next_chapter"]=6899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=576961, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=155780, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7956, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=803512, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=7956, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6899]={ + ["next_chapter"]=6900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=578676, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=156243, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8035, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=811547, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8035, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=775693, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=689, + ["unit"]=0 + } + }, + [6900]={ + ["next_chapter"]=6901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=580400, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=156708, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8115, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=819662, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8115, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6901]={ + ["next_chapter"]=6902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=582132, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=157176, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8197, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=827859, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8197, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6902]={ + ["next_chapter"]=6903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=583873, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=157646, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8279, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=836137, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8279, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6903]={ + ["next_chapter"]=6904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=585623, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=158118, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8361, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=844499, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8361, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6904]={ + ["next_chapter"]=6905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=587381, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=158593, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8445, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=852944, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8445, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6905]={ + ["next_chapter"]=6906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=589148, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=159070, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8529, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=861473, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8529, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6906]={ + ["next_chapter"]=6907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=590924, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=159550, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8615, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=870088, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8615, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6907]={ + ["next_chapter"]=6908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=592709, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=160031, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8701, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=878789, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8701, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6908]={ + ["next_chapter"]=6909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=594502, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=160516, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8788, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=887577, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8788, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6909]={ + ["next_chapter"]=6910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=596305, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=161002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8876, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=896452, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8876, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=856848, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=690, + ["unit"]=0 + } + }, + [6910]={ + ["next_chapter"]=6911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=598116, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=161491, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8965, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=905417, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=8965, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6911]={ + ["next_chapter"]=6912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=599936, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=161983, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9054, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=914471, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9054, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6912]={ + ["next_chapter"]=6913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=601764, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=162476, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9145, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=923616, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9145, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6913]={ + ["next_chapter"]=6914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=603602, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=162973, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9236, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=932852, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9236, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6914]={ + ["next_chapter"]=6915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=605449, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=163471, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9329, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=942180, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9329, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6915]={ + ["next_chapter"]=6916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=607304, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=163972, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9422, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=951602, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9422, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6916]={ + ["next_chapter"]=6917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=609169, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=164476, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9516, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=961118, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9516, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6917]={ + ["next_chapter"]=6918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=611042, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=164981, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9611, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=970729, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9611, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6918]={ + ["next_chapter"]=6919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=612925, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=165490, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9707, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=980437, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9707, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6919]={ + ["next_chapter"]=6920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=614816, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=166000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9804, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=990241, + ["unit"]=9 + }, + ["idle_gold"]={ + ["value"]=9804, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=946493, + ["unit"]=9 + }, + ["grasp_mastery_reward"]={ + ["value"]=691, + ["unit"]=0 + } + }, + [6920]={ + ["next_chapter"]=6921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=616717, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=166514, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9902, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1000, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9902, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6921]={ + ["next_chapter"]=6922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=618626, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=167029, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10001, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1010, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10001, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6922]={ + ["next_chapter"]=6923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=620545, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=167547, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10101, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1020, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10101, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6923]={ + ["next_chapter"]=6924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=622473, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=168068, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10202, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1030, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10202, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6924]={ + ["next_chapter"]=6925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=624410, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=168591, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10304, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1041, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10304, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6925]={ + ["next_chapter"]=6926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=626356, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=169116, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10408, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1051, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10408, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6926]={ + ["next_chapter"]=6927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=628312, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=169644, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10512, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1062, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10512, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6927]={ + ["next_chapter"]=6928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=630276, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=170175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10617, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1072, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10617, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6928]={ + ["next_chapter"]=6929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=632250, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=170707, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10723, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1083, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10723, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6929]={ + ["next_chapter"]=6930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=634233, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=171243, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10830, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1094, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10830, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=692, + ["unit"]=0 + } + }, + [6930]={ + ["next_chapter"]=6931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=636225, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=171781, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10938, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1105, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=10938, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6931]={ + ["next_chapter"]=6932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=638227, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=172321, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11048, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1116, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11048, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6932]={ + ["next_chapter"]=6933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=640238, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=172864, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11158, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1127, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11158, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6933]={ + ["next_chapter"]=6934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=642258, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=173410, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11270, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1138, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11270, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6934]={ + ["next_chapter"]=6935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=644287, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=173958, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11383, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1150, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11383, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6935]={ + ["next_chapter"]=6936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=646326, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=174508, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11496, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1161, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11496, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6936]={ + ["next_chapter"]=6937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=648375, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=175061, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11611, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1173, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11611, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6937]={ + ["next_chapter"]=6938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=650432, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=175617, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11727, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1184, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11727, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6938]={ + ["next_chapter"]=6939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=652500, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=176175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11845, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1196, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11845, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6939]={ + ["next_chapter"]=6940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=654576, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=176736, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11963, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1208, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=11963, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=693, + ["unit"]=0 + } + }, + [6940]={ + ["next_chapter"]=6941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=656662, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=177299, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12083, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1220, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=12083, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6941]={ + ["next_chapter"]=6942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=658758, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=177865, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12204, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1233, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=12204, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6942]={ + ["next_chapter"]=6943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=660863, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=178433, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12326, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1245, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=12326, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6943]={ + ["next_chapter"]=6944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=662978, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=179004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12449, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1257, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=12449, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6944]={ + ["next_chapter"]=6945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=665102, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=179578, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12573, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1270, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=12573, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6945]={ + ["next_chapter"]=6946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=667236, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=180154, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12699, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1283, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=12699, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6946]={ + ["next_chapter"]=6947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=669380, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=180732, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12826, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1295, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=12826, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6947]={ + ["next_chapter"]=6948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=671533, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=181314, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12954, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1308, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=12954, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6948]={ + ["next_chapter"]=6949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=673695, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=181898, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13084, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1321, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=13084, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6949]={ + ["next_chapter"]=6950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=675868, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=182484, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13215, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1335, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=13215, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=694, + ["unit"]=0 + } + }, + [6950]={ + ["next_chapter"]=6951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=678050, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=183074, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13347, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1348, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=13347, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6951]={ + ["next_chapter"]=6952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=680242, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=183665, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13480, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1362, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=13480, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6952]={ + ["next_chapter"]=6953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=682443, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=184260, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13615, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1375, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=13615, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6953]={ + ["next_chapter"]=6954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=684655, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=184857, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13751, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1389, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=13751, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6954]={ + ["next_chapter"]=6955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=686876, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=185457, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13889, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1403, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=13889, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6955]={ + ["next_chapter"]=6956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=689107, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=186059, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14028, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1417, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=14028, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6956]={ + ["next_chapter"]=6957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=691348, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=186664, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14168, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1431, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=14168, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6957]={ + ["next_chapter"]=6958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=693598, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=187272, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14310, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1445, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=14310, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6958]={ + ["next_chapter"]=6959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=695859, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=187882, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14453, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1460, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=14453, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6959]={ + ["next_chapter"]=6960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=698129, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=188495, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14597, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1474, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=14597, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=695, + ["unit"]=0 + } + }, + [6960]={ + ["next_chapter"]=6961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=700410, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=189111, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14743, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1489, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=14743, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6961]={ + ["next_chapter"]=6962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=702700, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=189729, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14891, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1504, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=14891, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6962]={ + ["next_chapter"]=6963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=705000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=190350, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15040, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1519, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=15040, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6963]={ + ["next_chapter"]=6964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=707310, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=190974, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15190, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1534, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=15190, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6964]={ + ["next_chapter"]=6965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=709630, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=191600, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15342, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1550, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=15342, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6965]={ + ["next_chapter"]=6966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=711961, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=192229, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15495, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1565, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=15495, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6966]={ + ["next_chapter"]=6967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=714301, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=192861, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15650, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1581, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=15650, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6967]={ + ["next_chapter"]=6968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=716651, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=193496, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15807, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1596, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=15807, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6968]={ + ["next_chapter"]=6969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=719012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=194133, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15965, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1612, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=15965, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6969]={ + ["next_chapter"]=6970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=721382, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=194773, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16125, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1629, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=16125, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=696, + ["unit"]=0 + } + }, + [6970]={ + ["next_chapter"]=6971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=723763, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=195416, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16286, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1645, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=16286, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6971]={ + ["next_chapter"]=6972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=726154, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=196061, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16449, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1661, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=16449, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6972]={ + ["next_chapter"]=6973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=728555, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=196710, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16613, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1678, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=16613, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6973]={ + ["next_chapter"]=6974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=730966, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=197361, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16779, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1695, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=16779, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6974]={ + ["next_chapter"]=6975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=733387, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=198015, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16947, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1712, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=16947, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6975]={ + ["next_chapter"]=6976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=735819, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=198671, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17117, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1729, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=17117, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6976]={ + ["next_chapter"]=6977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=738261, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=199330, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17288, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1746, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=17288, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6977]={ + ["next_chapter"]=6978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=740713, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=199992, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17461, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1764, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=17461, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6978]={ + ["next_chapter"]=6979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=743175, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=200657, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17635, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1781, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=17635, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6979]={ + ["next_chapter"]=6980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=745648, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=201325, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17812, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1799, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=17812, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=697, + ["unit"]=0 + } + }, + [6980]={ + ["next_chapter"]=6981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=748131, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=201995, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17990, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1817, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=17990, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6981]={ + ["next_chapter"]=6982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=750625, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=202669, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18170, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1835, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=18170, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6982]={ + ["next_chapter"]=6983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=753129, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=203345, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18351, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1853, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=18351, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6983]={ + ["next_chapter"]=6984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=755643, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=204024, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18535, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1872, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=18535, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6984]={ + ["next_chapter"]=6985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=758168, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=204705, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18720, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1891, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=18720, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6985]={ + ["next_chapter"]=6986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=760703, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=205390, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18907, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1910, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=18907, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6986]={ + ["next_chapter"]=6987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=763249, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=206077, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19096, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1929, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=19096, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6987]={ + ["next_chapter"]=6988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=765805, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=206767, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19287, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1948, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=19287, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6988]={ + ["next_chapter"]=6989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=768371, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=207460, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19480, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1968, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=19480, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6989]={ + ["next_chapter"]=6990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=770949, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=208156, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19675, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1987, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=19675, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=1899, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=698, + ["unit"]=0 + } + }, + [6990]={ + ["next_chapter"]=6991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=773536, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=208855, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19872, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2007, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=19872, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6991]={ + ["next_chapter"]=6992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=776135, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=209556, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20071, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2027, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=20071, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6992]={ + ["next_chapter"]=6993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=778744, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=210261, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20271, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2047, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=20271, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6993]={ + ["next_chapter"]=6994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=781363, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=210968, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20474, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2068, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=20474, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6994]={ + ["next_chapter"]=6995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=783994, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=211678, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20679, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2089, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=20679, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6995]={ + ["next_chapter"]=6996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=786635, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=212391, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20885, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2109, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=20885, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6996]={ + ["next_chapter"]=6997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=789286, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=213107, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21094, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2131, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=21094, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6997]={ + ["next_chapter"]=6998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=791949, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=213826, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21305, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2152, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=21305, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6998]={ + ["next_chapter"]=6999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=794622, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=214548, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21518, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2173, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=21518, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [6999]={ + ["next_chapter"]=7000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=797305, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=215272, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21733, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2195, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=21733, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=699, + ["unit"]=0 + } + }, + [7000]={ + ["next_chapter"]=7001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=800000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21951, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2217, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=21951, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7001]={ + ["next_chapter"]=7002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22170, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2239, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=22170, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7002]={ + ["next_chapter"]=7003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22392, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2262, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=22392, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7003]={ + ["next_chapter"]=7004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22616, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2284, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=22616, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7004]={ + ["next_chapter"]=7005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22842, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2307, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=22842, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7005]={ + ["next_chapter"]=7006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800001, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23071, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2330, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=23071, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7006]={ + ["next_chapter"]=7007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23301, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2353, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=23301, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7007]={ + ["next_chapter"]=7008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23534, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2377, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=23534, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7008]={ + ["next_chapter"]=7009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800004, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23770, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2401, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=23770, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7009]={ + ["next_chapter"]=7010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800006, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24007, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2425, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=24007, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2318, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=700, + ["unit"]=0 + } + }, + [7010]={ + ["next_chapter"]=7011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=800008, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24247, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2449, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=24247, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7011]={ + ["next_chapter"]=7012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800011, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224003, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24490, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2473, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=24490, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7012]={ + ["next_chapter"]=7013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800014, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24735, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2498, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=24735, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7013]={ + ["next_chapter"]=7014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800018, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24982, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2523, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=24982, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7014]={ + ["next_chapter"]=7015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800022, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224006, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25232, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2548, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=25232, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7015]={ + ["next_chapter"]=7016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800027, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224008, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25484, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2574, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=25484, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7016]={ + ["next_chapter"]=7017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800033, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224009, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25739, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2600, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=25739, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7017]={ + ["next_chapter"]=7018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800039, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224011, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25996, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2626, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=25996, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7018]={ + ["next_chapter"]=7019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800047, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224013, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26256, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2652, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=26256, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7019]={ + ["next_chapter"]=7020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800055, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224015, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26519, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2678, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=26519, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2560, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=701, + ["unit"]=0 + } + }, + [7020]={ + ["next_chapter"]=7021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=800064, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224018, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26784, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2705, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=26784, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7021]={ + ["next_chapter"]=7022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800074, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224021, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27052, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2732, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=27052, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7022]={ + ["next_chapter"]=7023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800085, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224024, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27323, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2760, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=27323, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7023]={ + ["next_chapter"]=7024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800097, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224027, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27596, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2787, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=27596, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7024]={ + ["next_chapter"]=7025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800111, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224031, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27872, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2815, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=27872, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7025]={ + ["next_chapter"]=7026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800125, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224035, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28150, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2843, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=28150, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7026]={ + ["next_chapter"]=7027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800141, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224039, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28432, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2872, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=28432, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7027]={ + ["next_chapter"]=7028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800157, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224044, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28716, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2900, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=28716, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7028]={ + ["next_chapter"]=7029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800176, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224049, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29003, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2929, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=29003, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7029]={ + ["next_chapter"]=7030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800195, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224055, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29293, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2959, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=29293, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=2828, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=702, + ["unit"]=0 + } + }, + [7030]={ + ["next_chapter"]=7031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=800216, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224060, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29586, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2988, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=29586, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7031]={ + ["next_chapter"]=7032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800238, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29882, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3018, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=29882, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7032]={ + ["next_chapter"]=7033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800262, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224073, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30181, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3048, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=30181, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7033]={ + ["next_chapter"]=7034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800287, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224080, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30483, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3079, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=30483, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7034]={ + ["next_chapter"]=7035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800314, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224088, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30788, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3110, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=30788, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7035]={ + ["next_chapter"]=7036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800343, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224096, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31096, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3141, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=31096, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7036]={ + ["next_chapter"]=7037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800373, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224105, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31407, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3172, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=31407, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7037]={ + ["next_chapter"]=7038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800405, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224113, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31721, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3204, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=31721, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7038]={ + ["next_chapter"]=7039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800439, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224123, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32038, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3236, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=32038, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7039]={ + ["next_chapter"]=7040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800475, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224133, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32358, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3268, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=32358, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3124, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=703, + ["unit"]=0 + } + }, + [7040]={ + ["next_chapter"]=7041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=800512, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224143, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32682, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3301, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=32682, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7041]={ + ["next_chapter"]=7042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800551, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224154, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33009, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3334, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=33009, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7042]={ + ["next_chapter"]=7043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800593, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224166, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33339, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3367, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=33339, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7043]={ + ["next_chapter"]=7044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800636, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224178, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33672, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3401, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=33672, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7044]={ + ["next_chapter"]=7045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800681, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224191, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34009, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3435, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=34009, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7045]={ + ["next_chapter"]=7046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800729, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224204, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34349, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3469, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=34349, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7046]={ + ["next_chapter"]=7047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800779, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224218, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34692, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3504, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=34692, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7047]={ + ["next_chapter"]=7048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800831, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224233, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35039, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3539, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=35039, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7048]={ + ["next_chapter"]=7049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800885, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224248, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35390, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3574, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=35390, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7049]={ + ["next_chapter"]=7050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800941, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224264, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35744, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3610, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=35744, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3451, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=704, + ["unit"]=0 + } + }, + [7050]={ + ["next_chapter"]=7051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=801000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224280, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36101, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3646, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=36101, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7051]={ + ["next_chapter"]=7052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801061, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224297, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36462, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3683, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=36462, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7052]={ + ["next_chapter"]=7053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801125, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224315, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36827, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3719, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=36827, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7053]={ + ["next_chapter"]=7054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801191, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224333, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37195, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3757, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=37195, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7054]={ + ["next_chapter"]=7055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801260, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224353, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37567, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3794, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=37567, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7055]={ + ["next_chapter"]=7056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801331, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224373, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37943, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3832, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=37943, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7056]={ + ["next_chapter"]=7057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801405, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224393, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38322, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3871, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=38322, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7057]={ + ["next_chapter"]=7058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801482, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224415, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38705, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3909, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=38705, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7058]={ + ["next_chapter"]=7059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801561, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224437, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39092, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3948, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=39092, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7059]={ + ["next_chapter"]=7060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801643, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224460, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39483, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3988, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=39483, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=705, + ["unit"]=0 + } + }, + [7060]={ + ["next_chapter"]=7061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=801728, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224484, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39878, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4028, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=39878, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7061]={ + ["next_chapter"]=7062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801816, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224508, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40277, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4068, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=40277, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7062]={ + ["next_chapter"]=7063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801907, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224534, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40680, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4109, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=40680, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7063]={ + ["next_chapter"]=7064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224560, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41086, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4150, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=41086, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7064]={ + ["next_chapter"]=7065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802097, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224587, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41497, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4191, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=41497, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7065]={ + ["next_chapter"]=7066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802197, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224615, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41912, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4233, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=41912, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7066]={ + ["next_chapter"]=7067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802300, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224644, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42331, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4275, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=42331, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7067]={ + ["next_chapter"]=7068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802406, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224674, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42755, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4318, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=42755, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7068]={ + ["next_chapter"]=7069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802515, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224704, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43182, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4361, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=43182, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7069]={ + ["next_chapter"]=7070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802628, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224736, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43614, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4405, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=43614, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=706, + ["unit"]=0 + } + }, + [7070]={ + ["next_chapter"]=7071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=802744, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224768, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44050, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4449, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=44050, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7071]={ + ["next_chapter"]=7072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802863, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224802, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44491, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4494, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=44491, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7072]={ + ["next_chapter"]=7073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=802986, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224836, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44936, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4538, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=44936, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7073]={ + ["next_chapter"]=7074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803112, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224871, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45385, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4584, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=45385, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7074]={ + ["next_chapter"]=7075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803242, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224908, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45839, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4630, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=45839, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7075]={ + ["next_chapter"]=7076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803375, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224945, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46297, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4676, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=46297, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7076]={ + ["next_chapter"]=7077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803512, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=224983, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46760, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4723, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=46760, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7077]={ + ["next_chapter"]=7078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803652, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47228, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4770, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=47228, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7078]={ + ["next_chapter"]=7079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803796, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225063, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47700, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4818, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=47700, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7079]={ + ["next_chapter"]=7080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803944, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225104, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48177, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4866, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=48177, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=4651, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=707, + ["unit"]=0 + } + }, + [7080]={ + ["next_chapter"]=7081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=804096, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225147, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48659, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4915, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=48659, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7081]={ + ["next_chapter"]=7082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804252, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49145, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4964, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=49145, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7082]={ + ["next_chapter"]=7083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804411, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225235, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49637, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5013, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=49637, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7083]={ + ["next_chapter"]=7084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804574, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225281, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50133, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5063, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=50133, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7084]={ + ["next_chapter"]=7085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804742, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50634, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5114, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=50634, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7085]={ + ["next_chapter"]=7086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=804913, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225376, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51141, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5165, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=51141, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7086]={ + ["next_chapter"]=7087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225425, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51652, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5217, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=51652, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7087]={ + ["next_chapter"]=7088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805268, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225475, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52169, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5269, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=52169, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7088]={ + ["next_chapter"]=7089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805452, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225526, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52690, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5322, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=52690, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7089]={ + ["next_chapter"]=7090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805640, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225579, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53217, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5375, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=53217, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5137, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=708, + ["unit"]=0 + } + }, + [7090]={ + ["next_chapter"]=7091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=805832, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225633, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53750, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5429, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=53750, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7091]={ + ["next_chapter"]=7092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=806029, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225688, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54287, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5483, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=54287, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7092]={ + ["next_chapter"]=7093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=806230, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225744, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54830, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5538, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=54830, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7093]={ + ["next_chapter"]=7094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=806435, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225802, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55378, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5593, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=55378, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7094]={ + ["next_chapter"]=7095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=806645, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225861, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55932, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5649, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=55932, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7095]={ + ["next_chapter"]=7096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=806859, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225921, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56491, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5706, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=56491, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7096]={ + ["next_chapter"]=7097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=807078, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=225982, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=57056, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5763, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=57056, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7097]={ + ["next_chapter"]=7098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=807301, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226044, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=57627, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5820, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=57627, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7098]={ + ["next_chapter"]=7099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=807530, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226108, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58203, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5879, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=58203, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7099]={ + ["next_chapter"]=7100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=807762, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226173, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58785, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5937, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=58785, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=5675, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=709, + ["unit"]=0 + } + }, + [7100]={ + ["next_chapter"]=7101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=808000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226240, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59373, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5997, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=59373, + ["unit"]=9 + }, + ["chapter_drop"]=54, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7101]={ + ["next_chapter"]=7102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=808242, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226308, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59967, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6057, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=59967, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7102]={ + ["next_chapter"]=7103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=808490, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226377, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=60566, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6117, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=60566, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7103]={ + ["next_chapter"]=7104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=808742, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226448, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=61172, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6178, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=61172, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7104]={ + ["next_chapter"]=7105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=808999, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=61784, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6240, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=61784, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7105]={ + ["next_chapter"]=7106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=809261, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226593, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=62402, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6303, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=62402, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7106]={ + ["next_chapter"]=7107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=809528, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226668, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=63026, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6366, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=63026, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7107]={ + ["next_chapter"]=7108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=809800, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226744, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=63656, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6429, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=63656, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7108]={ + ["next_chapter"]=7109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=810078, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226822, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=64292, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6494, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=64292, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7109]={ + ["next_chapter"]=7110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=810360, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226901, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=64935, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6558, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=64935, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6269, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=710, + ["unit"]=0 + } + }, + [7110]={ + ["next_chapter"]=7111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=810648, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=226981, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=65585, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6624, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=65585, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7111]={ + ["next_chapter"]=7112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=810941, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227063, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=66240, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6690, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=66240, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7112]={ + ["next_chapter"]=7113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=811239, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227147, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=66903, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6757, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=66903, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7113]={ + ["next_chapter"]=7114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=811543, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227232, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=67572, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6825, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=67572, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7114]={ + ["next_chapter"]=7115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=811852, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227319, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=68248, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6893, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=68248, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7115]={ + ["next_chapter"]=7116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=812167, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227407, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=68930, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6962, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=68930, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7116]={ + ["next_chapter"]=7117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=812487, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227496, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=69619, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7032, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=69619, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7117]={ + ["next_chapter"]=7118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=812813, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227588, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=70316, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7102, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=70316, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7118]={ + ["next_chapter"]=7119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=813144, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=71019, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7173, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=71019, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7119]={ + ["next_chapter"]=7120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=813481, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227775, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=71729, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7245, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=71729, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6925, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=711, + ["unit"]=0 + } + }, + [7120]={ + ["next_chapter"]=7121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=813824, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227871, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=72446, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7317, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=72446, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7121]={ + ["next_chapter"]=7122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=814172, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=227968, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=73171, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7390, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=73171, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7122]={ + ["next_chapter"]=7123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=814527, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228067, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=73902, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7464, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=73902, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7123]={ + ["next_chapter"]=7124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=814887, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228168, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=74641, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7539, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=74641, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7124]={ + ["next_chapter"]=7125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=815253, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228271, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=75388, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7614, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=75388, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7125]={ + ["next_chapter"]=7126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=815625, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228375, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=76142, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7690, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=76142, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7126]={ + ["next_chapter"]=7127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=816003, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228481, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=76903, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7767, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=76903, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7127]={ + ["next_chapter"]=7128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=816387, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228588, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=77672, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7845, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=77672, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7128]={ + ["next_chapter"]=7129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=816777, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228698, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=78449, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7923, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=78449, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7129]={ + ["next_chapter"]=7130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=817174, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228809, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=79233, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8003, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=79233, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=712, + ["unit"]=0 + } + }, + [7130]={ + ["next_chapter"]=7131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=817576, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=228921, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=80026, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8083, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=80026, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7131]={ + ["next_chapter"]=7132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=817985, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229036, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=80826, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8163, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=80826, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7132]={ + ["next_chapter"]=7133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=818400, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229152, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=81634, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8245, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=81634, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7133]={ + ["next_chapter"]=7134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=818821, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229270, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=82451, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8328, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=82451, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7134]={ + ["next_chapter"]=7135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=819249, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229390, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=83275, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8411, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=83275, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7135]={ + ["next_chapter"]=7136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=819683, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229511, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=84108, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8495, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=84108, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7136]={ + ["next_chapter"]=7137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=820124, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229635, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=84949, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8580, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=84949, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7137]={ + ["next_chapter"]=7138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=820571, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229760, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=85798, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8666, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=85798, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7138]={ + ["next_chapter"]=7139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=821025, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=229887, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=86656, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8752, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=86656, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7139]={ + ["next_chapter"]=7140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=821485, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230016, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=87523, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8840, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=87523, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8449, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=713, + ["unit"]=0 + } + }, + [7140]={ + ["next_chapter"]=7141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=821952, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230147, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=88398, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8928, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=88398, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7141]={ + ["next_chapter"]=7142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=822426, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230279, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=89282, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9017, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=89282, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7142]={ + ["next_chapter"]=7143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=822906, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230414, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=90175, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9108, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=90175, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7143]={ + ["next_chapter"]=7144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=823394, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230550, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=91077, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9199, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=91077, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7144]={ + ["next_chapter"]=7145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=823888, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230689, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=91987, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9291, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=91987, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7145]={ + ["next_chapter"]=7146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=824389, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230829, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=92907, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9384, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=92907, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7146]={ + ["next_chapter"]=7147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=824897, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=230971, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=93836, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9477, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=93836, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7147]={ + ["next_chapter"]=7148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=825412, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=231115, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=94775, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9572, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=94775, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7148]={ + ["next_chapter"]=7149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=825934, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=231262, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=95723, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9668, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=95723, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7149]={ + ["next_chapter"]=7150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=826464, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=231410, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=96680, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9765, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=96680, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=714, + ["unit"]=0 + } + }, + [7150]={ + ["next_chapter"]=7151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=827000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=231560, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=97647, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9862, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=97647, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7151]={ + ["next_chapter"]=7152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=827544, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=231712, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=98623, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9961, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=98623, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7152]={ + ["next_chapter"]=7153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=828094, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=231866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=99609, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10061, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=99609, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7153]={ + ["next_chapter"]=7154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=828653, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=232023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=100605, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10161, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=100605, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7154]={ + ["next_chapter"]=7155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=829218, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=232181, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=101611, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10263, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=101611, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7155]={ + ["next_chapter"]=7156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=829791, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=232341, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=102628, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10365, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=102628, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7156]={ + ["next_chapter"]=7157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=830371, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=232504, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=103654, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10469, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=103654, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7157]={ + ["next_chapter"]=7158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=830959, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=232669, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=104690, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10574, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=104690, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7158]={ + ["next_chapter"]=7159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=831554, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=232835, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=105737, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10679, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=105737, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7159]={ + ["next_chapter"]=7160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=832157, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=233004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=106795, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10786, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=106795, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10310, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=715, + ["unit"]=0 + } + }, + [7160]={ + ["next_chapter"]=7161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=832768, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=233175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=107863, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10894, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=107863, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7161]={ + ["next_chapter"]=7162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=833386, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=233348, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=108941, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11003, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=108941, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7162]={ + ["next_chapter"]=7163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=834012, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=233523, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=110031, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11113, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=110031, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7163]={ + ["next_chapter"]=7164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=834646, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=233701, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=111131, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11224, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=111131, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7164]={ + ["next_chapter"]=7165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=835288, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=233881, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=112242, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11336, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=112242, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7165]={ + ["next_chapter"]=7166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=835937, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=234062, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=113365, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11450, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=113365, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7166]={ + ["next_chapter"]=7167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=836594, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=234246, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=114498, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11564, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=114498, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7167]={ + ["next_chapter"]=7168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=837260, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=234433, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=115643, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11680, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=115643, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7168]={ + ["next_chapter"]=7169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=837933, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=234621, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=116800, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11797, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=116800, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7169]={ + ["next_chapter"]=7170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=838614, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=234812, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=117968, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11915, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=117968, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=11388, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=716, + ["unit"]=0 + } + }, + [7170]={ + ["next_chapter"]=7171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=839304, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=235005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=119147, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12034, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=119147, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7171]={ + ["next_chapter"]=7172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=840002, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=235200, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=120339, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12154, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=120339, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7172]={ + ["next_chapter"]=7173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=840708, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=235398, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=121542, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12276, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=121542, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7173]={ + ["next_chapter"]=7174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=841422, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=235598, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=122758, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12399, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=122758, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7174]={ + ["next_chapter"]=7175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=842144, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=235800, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=123985, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12523, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=123985, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7175]={ + ["next_chapter"]=7176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=842875, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=236005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=125225, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12648, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=125225, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7176]={ + ["next_chapter"]=7177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=843614, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=236212, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=126477, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12774, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=126477, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7177]={ + ["next_chapter"]=7178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=844362, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=236421, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=127742, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12902, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=127742, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7178]={ + ["next_chapter"]=7179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=845118, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=236633, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=129020, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13031, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=129020, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7179]={ + ["next_chapter"]=7180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=845883, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=236847, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=130310, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13161, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=130310, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=717, + ["unit"]=0 + } + }, + [7180]={ + ["next_chapter"]=7181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=846656, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=237064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=131613, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13293, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=131613, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7181]={ + ["next_chapter"]=7182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=847438, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=237283, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=132929, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13426, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=132929, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7182]={ + ["next_chapter"]=7183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=848229, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=237504, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=134258, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13560, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=134258, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7183]={ + ["next_chapter"]=7184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=849028, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=237728, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=135601, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13696, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=135601, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7184]={ + ["next_chapter"]=7185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=849836, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=237954, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=136957, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13833, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=136957, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7185]={ + ["next_chapter"]=7186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=850653, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=238183, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=138326, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13971, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=138326, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7186]={ + ["next_chapter"]=7187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=851479, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=238414, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=139710, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14111, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=139710, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7187]={ + ["next_chapter"]=7188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=852314, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=238648, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=141107, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14252, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=141107, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7188]={ + ["next_chapter"]=7189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=853157, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=238884, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=142518, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14394, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=142518, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7189]={ + ["next_chapter"]=7190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=854010, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=239123, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=143943, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14538, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=143943, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13896, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=718, + ["unit"]=0 + } + }, + [7190]={ + ["next_chapter"]=7191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=854872, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=239364, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=145382, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14684, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=145382, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7191]={ + ["next_chapter"]=7192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=855743, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=239608, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=146836, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14830, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=146836, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7192]={ + ["next_chapter"]=7193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=856623, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=239854, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=148305, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14979, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=148305, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7193]={ + ["next_chapter"]=7194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=857512, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=240103, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=149788, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15129, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=149788, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7194]={ + ["next_chapter"]=7195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=858411, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=240355, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=151286, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15280, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=151286, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7195]={ + ["next_chapter"]=7196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=859319, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=240609, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=152798, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15433, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=152798, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7196]={ + ["next_chapter"]=7197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=860236, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=240866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=154326, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15587, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=154326, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7197]={ + ["next_chapter"]=7198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=861163, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=241126, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=155870, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15743, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=155870, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7198]={ + ["next_chapter"]=7199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=862099, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=241388, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=157428, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15900, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=157428, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7199]={ + ["next_chapter"]=7200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=863045, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=241653, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=159003, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16059, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=159003, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=15350, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=719, + ["unit"]=0 + } + }, + [7200]={ + ["next_chapter"]=7201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=864000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=241920, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=160593, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16220, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=160593, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7201]={ + ["next_chapter"]=7202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=864965, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=242190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=162199, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16382, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=162199, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7202]={ + ["next_chapter"]=7203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=865939, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=242463, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=163821, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16546, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=163821, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7203]={ + ["next_chapter"]=7204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=866923, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=242739, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=165459, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16711, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=165459, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7204]={ + ["next_chapter"]=7205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=867917, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=243017, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=167113, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16878, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=167113, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7205]={ + ["next_chapter"]=7206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=868921, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=243298, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=168784, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17047, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=168784, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7206]={ + ["next_chapter"]=7207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=869935, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=243582, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=170472, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17218, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=170472, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7207]={ + ["next_chapter"]=7208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=870958, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=243868, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=172177, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17390, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=172177, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7208]={ + ["next_chapter"]=7209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=871991, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=244158, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=173899, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17564, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=173899, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7209]={ + ["next_chapter"]=7210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=873035, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=244450, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=175638, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17739, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=175638, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16956, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=720, + ["unit"]=0 + } + }, + [7210]={ + ["next_chapter"]=7211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=874088, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=244745, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=177394, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17917, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=177394, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7211]={ + ["next_chapter"]=7212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=875151, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=245042, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=179168, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18096, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=179168, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7212]={ + ["next_chapter"]=7213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=876225, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=245343, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=180960, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18277, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=180960, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7213]={ + ["next_chapter"]=7214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=877309, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=245646, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=182769, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18460, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=182769, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7214]={ + ["next_chapter"]=7215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=878403, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=245953, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=184597, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18644, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=184597, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7215]={ + ["next_chapter"]=7216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=879507, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=246262, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=186443, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18831, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=186443, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7216]={ + ["next_chapter"]=7217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=880622, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=246574, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=188307, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19019, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=188307, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7217]={ + ["next_chapter"]=7218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=881747, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=246889, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=190191, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19209, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=190191, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7218]={ + ["next_chapter"]=7219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=882882, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=247207, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=192092, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19401, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=192092, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7219]={ + ["next_chapter"]=7220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=884028, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=247528, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=194013, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19595, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=194013, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=18730, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=721, + ["unit"]=0 + } + }, + [7220]={ + ["next_chapter"]=7221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=885184, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=247852, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=195954, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19791, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=195954, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7221]={ + ["next_chapter"]=7222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=886351, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=248178, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=197913, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19989, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=197913, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7222]={ + ["next_chapter"]=7223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=887528, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=248508, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=199892, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20189, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=199892, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7223]={ + ["next_chapter"]=7224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=888717, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=248841, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=201891, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20391, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=201891, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7224]={ + ["next_chapter"]=7225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=889915, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=249176, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=203910, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20595, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=203910, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7225]={ + ["next_chapter"]=7226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=891125, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=249515, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=205949, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20801, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=205949, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7226]={ + ["next_chapter"]=7227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=892345, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=249857, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=208009, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21009, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=208009, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7227]={ + ["next_chapter"]=7228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=893577, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=250201, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=210089, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21219, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=210089, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7228]={ + ["next_chapter"]=7229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=894819, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=250549, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=212190, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21431, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=212190, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7229]={ + ["next_chapter"]=7230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=896072, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=250900, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=214311, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21645, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=214311, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=20689, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=722, + ["unit"]=0 + } + }, + [7230]={ + ["next_chapter"]=7231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=897336, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=251254, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=216455, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21862, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=216455, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7231]={ + ["next_chapter"]=7232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=898611, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=251611, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=218619, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22081, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=218619, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7232]={ + ["next_chapter"]=7233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=899897, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=251971, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=220805, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22301, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=220805, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7233]={ + ["next_chapter"]=7234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=901195, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=252335, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=223013, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22524, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=223013, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7234]={ + ["next_chapter"]=7235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=902503, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=252701, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=225244, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22750, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=225244, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7235]={ + ["next_chapter"]=7236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=903823, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=253070, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=227496, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22977, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=227496, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7236]={ + ["next_chapter"]=7237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=905154, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=253443, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=229771, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23207, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=229771, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7237]={ + ["next_chapter"]=7238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=906496, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=253819, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=232069, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23439, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=232069, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7238]={ + ["next_chapter"]=7239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=907850, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=254198, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=234389, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23673, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=234389, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7239]={ + ["next_chapter"]=7240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=909215, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=254580, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=236733, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23910, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=236733, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=22854, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=723, + ["unit"]=0 + } + }, + [7240]={ + ["next_chapter"]=7241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=910592, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=254966, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=239101, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24149, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=239101, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7241]={ + ["next_chapter"]=7242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=911980, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=255354, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=241492, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24391, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=241492, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7242]={ + ["next_chapter"]=7243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=913380, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=255746, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=243906, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24635, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=243906, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7243]={ + ["next_chapter"]=7244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=914791, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=256142, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=246346, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24881, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=246346, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7244]={ + ["next_chapter"]=7245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=916214, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=256540, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=248809, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25130, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=248809, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7245]={ + ["next_chapter"]=7246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=917649, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=256942, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=251297, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25381, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=251297, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7246]={ + ["next_chapter"]=7247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=919095, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=257347, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=253810, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25635, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=253810, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7247]={ + ["next_chapter"]=7248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=920554, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=257755, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=256348, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25891, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=256348, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7248]={ + ["next_chapter"]=7249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=922024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=258167, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=258912, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26150, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=258912, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7249]={ + ["next_chapter"]=7250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=923506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=258582, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=261501, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26412, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=261501, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=25245, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=724, + ["unit"]=0 + } + }, + [7250]={ + ["next_chapter"]=7251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=925000, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=259000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=264116, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26676, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=264116, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7251]={ + ["next_chapter"]=7252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=926506, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=259422, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=266757, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26942, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=266757, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7252]={ + ["next_chapter"]=7253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=928024, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=259847, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=269424, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27212, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=269424, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7253]={ + ["next_chapter"]=7254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=929554, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=260275, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=272119, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27484, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=272119, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7254]={ + ["next_chapter"]=7255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=931097, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=260707, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=274840, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27759, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=274840, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7255]={ + ["next_chapter"]=7256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=932651, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=261142, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=277588, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28036, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=277588, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7256]={ + ["next_chapter"]=7257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=934218, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=261581, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=280364, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28317, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=280364, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7257]={ + ["next_chapter"]=7258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=935797, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=262023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=283168, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28600, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=283168, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7258]={ + ["next_chapter"]=7259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=937388, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=262469, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=286000, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28886, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=286000, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7259]={ + ["next_chapter"]=7260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=938992, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=262918, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=288860, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29175, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=288860, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=27886, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=725, + ["unit"]=0 + } + }, + [7260]={ + ["next_chapter"]=7261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=940608, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=263370, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=291748, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29467, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=291748, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7261]={ + ["next_chapter"]=7262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=942237, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=263826, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=294666, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29761, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=294666, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7262]={ + ["next_chapter"]=7263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=943878, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=264286, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=297612, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30059, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=297612, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7263]={ + ["next_chapter"]=7264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=945532, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=264749, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=300588, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30359, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=300588, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7264]={ + ["next_chapter"]=7265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=947198, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=265215, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=303594, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30663, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=303594, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7265]={ + ["next_chapter"]=7266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=948877, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=265686, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=306630, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30970, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=306630, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7266]={ + ["next_chapter"]=7267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=950569, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=266159, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=309696, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31279, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=309696, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7267]={ + ["next_chapter"]=7268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=952273, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=266637, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=312793, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31592, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=312793, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7268]={ + ["next_chapter"]=7269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=953991, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=267117, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=315921, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31908, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=315921, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7269]={ + ["next_chapter"]=7270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=955721, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=267602, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=319081, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32227, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=319081, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=30803, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=726, + ["unit"]=0 + } + }, + [7270]={ + ["next_chapter"]=7271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=957464, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=268090, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=322271, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32549, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=322271, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7271]={ + ["next_chapter"]=7272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=959220, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=268582, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=325494, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32875, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=325494, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7272]={ + ["next_chapter"]=7273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=960989, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=269077, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=328749, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33204, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=328749, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7273]={ + ["next_chapter"]=7274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=962771, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=269576, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=332037, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33536, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=332037, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7274]={ + ["next_chapter"]=7275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=964567, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=270079, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=335357, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33871, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=335357, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7275]={ + ["next_chapter"]=7276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=966375, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=270585, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=338710, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34210, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=338710, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7276]={ + ["next_chapter"]=7277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=968197, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=271095, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=342098, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34552, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=342098, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7277]={ + ["next_chapter"]=7278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=970031, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=271609, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=345519, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34897, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=345519, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7278]={ + ["next_chapter"]=7279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=971880, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=272126, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=348974, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35246, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=348974, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7279]={ + ["next_chapter"]=7280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=973741, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=272648, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=352464, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35599, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=352464, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=727, + ["unit"]=0 + } + }, + [7280]={ + ["next_chapter"]=7281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=975616, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=273172, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=355988, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35955, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=355988, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7281]={ + ["next_chapter"]=7282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=977504, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=273701, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=359548, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36314, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=359548, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7282]={ + ["next_chapter"]=7283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=979406, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=274234, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=363143, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36677, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=363143, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7283]={ + ["next_chapter"]=7284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=981321, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=274770, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=366775, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37044, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=366775, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7284]={ + ["next_chapter"]=7285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=983250, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=275310, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=370443, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37415, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=370443, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7285]={ + ["next_chapter"]=7286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=985193, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=275854, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=374147, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37789, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=374147, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7286]={ + ["next_chapter"]=7287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=987149, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=276402, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=377889, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38167, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=377889, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7287]={ + ["next_chapter"]=7288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=989119, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=276953, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=381667, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38548, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=381667, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7288]={ + ["next_chapter"]=7289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=991103, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=277509, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=385484, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38934, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=385484, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7289]={ + ["next_chapter"]=7290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=993101, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=278068, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=389339, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39323, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=389339, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=37586, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=728, + ["unit"]=0 + } + }, + [7290]={ + ["next_chapter"]=7291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=995112, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=278631, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=393232, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39716, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=393232, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7291]={ + ["next_chapter"]=7292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=997137, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=279198, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=397165, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40114, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=397165, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7292]={ + ["next_chapter"]=7293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=999177, + ["unit"]=7 + }, + ["hp_coefficient"]={ + ["value"]=279769, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=401136, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40515, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=401136, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7293]={ + ["next_chapter"]=7294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=280344, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=405148, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40920, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=405148, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7294]={ + ["next_chapter"]=7295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=280923, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=409199, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41329, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=409199, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7295]={ + ["next_chapter"]=7296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=281506, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=413291, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41742, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=413291, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7296]={ + ["next_chapter"]=7297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=282093, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=417424, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42160, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=417424, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7297]={ + ["next_chapter"]=7298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=282684, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=421598, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42581, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=421598, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7298]={ + ["next_chapter"]=7299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1012, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=283278, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=425814, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43007, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=425814, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7299]={ + ["next_chapter"]=7300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1014, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=283877, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=430072, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43437, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=430072, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=41518, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=729, + ["unit"]=0 + } + }, + [7300]={ + ["next_chapter"]=7301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1016, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=284480, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=434373, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43872, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=434373, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7301]={ + ["next_chapter"]=7302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=285087, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=438717, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44310, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=438717, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7302]={ + ["next_chapter"]=7303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1020, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=285698, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=443104, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44754, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=443104, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7303]={ + ["next_chapter"]=7304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1023, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=286313, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=447535, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45201, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=447535, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7304]={ + ["next_chapter"]=7305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1025, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=286932, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=452010, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45653, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=452010, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7305]={ + ["next_chapter"]=7306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1027, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=287555, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=456531, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46110, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=456531, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7306]={ + ["next_chapter"]=7307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1029, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=288182, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=461096, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46571, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=461096, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7307]={ + ["next_chapter"]=7308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1031, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=288813, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=465707, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47036, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=465707, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7308]={ + ["next_chapter"]=7309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1034, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=289449, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=470364, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47507, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=470364, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7309]={ + ["next_chapter"]=7310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1036, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=290088, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=475068, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47982, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=475068, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=45862, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=730, + ["unit"]=0 + } + }, + [7310]={ + ["next_chapter"]=7311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=1038, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=290732, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=479818, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48462, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=479818, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7311]={ + ["next_chapter"]=7312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1041, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=291380, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=484616, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48946, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=484616, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7312]={ + ["next_chapter"]=7313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1043, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=292032, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=489463, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49436, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=489463, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7313]={ + ["next_chapter"]=7314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1045, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=292688, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=494357, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49930, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=494357, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7314]={ + ["next_chapter"]=7315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1048, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=293348, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=499301, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50429, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=499301, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7315]={ + ["next_chapter"]=7316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1050, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=294013, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=504294, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50934, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=504294, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7316]={ + ["next_chapter"]=7317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1052, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=294682, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=509337, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51443, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=509337, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7317]={ + ["next_chapter"]=7318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1055, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=295355, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=514430, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51957, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=514430, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7318]={ + ["next_chapter"]=7319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1057, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=296033, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=519574, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52477, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=519574, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7319]={ + ["next_chapter"]=7320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1060, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=296714, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=524770, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53002, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=524770, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=50660, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=731, + ["unit"]=0 + } + }, + [7320]={ + ["next_chapter"]=7321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1062, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=297400, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=530018, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53532, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=530018, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7321]={ + ["next_chapter"]=7322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1065, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=298091, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=535318, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54067, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=535318, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7322]={ + ["next_chapter"]=7323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1067, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=298785, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=540671, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54608, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=540671, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7323]={ + ["next_chapter"]=7324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1070, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=299484, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=546078, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55154, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=546078, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7324]={ + ["next_chapter"]=7325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1072, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=300187, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=551539, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55705, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=551539, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7325]={ + ["next_chapter"]=7326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1075, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=300895, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=557054, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56262, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=557054, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7326]={ + ["next_chapter"]=7327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1077, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=301607, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=562625, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56825, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=562625, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7327]={ + ["next_chapter"]=7328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1080, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=302323, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=568251, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57393, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=568251, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7328]={ + ["next_chapter"]=7329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1082, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=303044, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=573933, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57967, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=573933, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7329]={ + ["next_chapter"]=7330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1085, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=303769, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=579673, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58547, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=579673, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=55960, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=732, + ["unit"]=0 + } + }, + [7330]={ + ["next_chapter"]=7331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1087, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=304499, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=585469, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59132, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=585469, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7331]={ + ["next_chapter"]=7332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1090, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=305233, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=591324, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59724, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=591324, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7332]={ + ["next_chapter"]=7333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1093, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=305971, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=597237, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60321, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=597237, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7333]={ + ["next_chapter"]=7334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1095, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=306714, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=603210, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60924, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=603210, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7334]={ + ["next_chapter"]=7335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1098, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=307462, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=609242, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61533, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=609242, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7335]={ + ["next_chapter"]=7336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1101, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=308214, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=615334, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62149, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=615334, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7336]={ + ["next_chapter"]=7337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1103, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=308970, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=621488, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62770, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=621488, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7337]={ + ["next_chapter"]=7338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1106, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=309731, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=627702, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63398, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=627702, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7338]={ + ["next_chapter"]=7339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1109, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=310496, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=633979, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64032, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=633979, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7339]={ + ["next_chapter"]=7340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1112, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=311266, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=640319, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64672, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=640319, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=61815, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=733, + ["unit"]=0 + } + }, + [7340]={ + ["next_chapter"]=7341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1114, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=312041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=646722, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65319, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=646722, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7341]={ + ["next_chapter"]=7342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1117, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=312820, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=653190, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65972, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=653190, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7342]={ + ["next_chapter"]=7343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1120, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=313604, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=659722, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66632, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=659722, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7343]={ + ["next_chapter"]=7344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1123, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=314392, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=666319, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67298, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=666319, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7344]={ + ["next_chapter"]=7345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1126, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=315185, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=672982, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67971, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=672982, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7345]={ + ["next_chapter"]=7346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1129, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=315983, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=679712, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68651, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=679712, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7346]={ + ["next_chapter"]=7347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1131, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=316785, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=686509, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69337, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=686509, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7347]={ + ["next_chapter"]=7348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1134, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=317592, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=693374, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70031, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=693374, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7348]={ + ["next_chapter"]=7349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=318403, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=700308, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70731, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=700308, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7349]={ + ["next_chapter"]=7350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1140, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=319219, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=707311, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71438, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=707311, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=68282, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=734, + ["unit"]=0 + } + }, + [7350]={ + ["next_chapter"]=7351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=1143, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=320040, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=714384, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72153, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=714384, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7351]={ + ["next_chapter"]=7352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1146, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=320866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=721528, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72874, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=721528, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7352]={ + ["next_chapter"]=7353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1149, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=321696, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=728743, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73603, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=728743, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7353]={ + ["next_chapter"]=7354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1152, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=322531, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=736030, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74339, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=736030, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7354]={ + ["next_chapter"]=7355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=323371, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=743391, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75082, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=743391, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7355]={ + ["next_chapter"]=7356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1158, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=324215, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=750825, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75833, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=750825, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7356]={ + ["next_chapter"]=7357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1161, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=325064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=758333, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76592, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=758333, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7357]={ + ["next_chapter"]=7358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1164, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=325918, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=765916, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77358, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=765916, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7358]={ + ["next_chapter"]=7359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1167, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=326777, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=773575, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78131, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=773575, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7359]={ + ["next_chapter"]=7360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1170, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=327641, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=781311, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78912, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=781311, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=75426, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=735, + ["unit"]=0 + } + }, + [7360]={ + ["next_chapter"]=7361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=1173, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=328509, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=789124, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79702, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=789124, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7361]={ + ["next_chapter"]=7362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1176, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=329383, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=797016, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80499, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=797016, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7362]={ + ["next_chapter"]=7363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1180, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=330261, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=804986, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81304, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=804986, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7363]={ + ["next_chapter"]=7364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1183, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=331144, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=813036, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82117, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=813036, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7364]={ + ["next_chapter"]=7365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1186, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=332032, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=821166, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82938, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=821166, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7365]={ + ["next_chapter"]=7366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1189, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=332925, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=829378, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83767, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=829378, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7366]={ + ["next_chapter"]=7367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1192, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=333822, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=837671, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84605, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=837671, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7367]={ + ["next_chapter"]=7368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1195, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=334725, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=846048, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85451, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=846048, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7368]={ + ["next_chapter"]=7369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1199, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=335633, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=854509, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86305, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=854509, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7369]={ + ["next_chapter"]=7370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1202, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=336545, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=863054, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87168, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=863054, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=83317, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=736, + ["unit"]=0 + } + }, + [7370]={ + ["next_chapter"]=7371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1205, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=337463, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=871684, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88040, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=871684, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7371]={ + ["next_chapter"]=7372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1209, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=338385, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=880401, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88921, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=880401, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7372]={ + ["next_chapter"]=7373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1212, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=339313, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=889205, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89810, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=889205, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7373]={ + ["next_chapter"]=7374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1215, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=340245, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=898097, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90708, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=898097, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7374]={ + ["next_chapter"]=7375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1219, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=341183, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=907078, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91615, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=907078, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7375]={ + ["next_chapter"]=7376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1222, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=342125, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=916149, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92531, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=916149, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7376]={ + ["next_chapter"]=7377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1225, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=343073, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=925310, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93456, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=925310, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7377]={ + ["next_chapter"]=7378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1229, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=344025, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=934563, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94391, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=934563, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7378]={ + ["next_chapter"]=7379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1232, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=344983, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=943909, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95335, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=943909, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7379]={ + ["next_chapter"]=7380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1236, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=345945, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=953348, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96288, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=953348, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=92034, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=737, + ["unit"]=0 + } + }, + [7380]={ + ["next_chapter"]=7381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1239, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=346913, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=962882, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97251, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=962882, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7381]={ + ["next_chapter"]=7382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1242, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=347886, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=972510, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98224, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=972510, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7382]={ + ["next_chapter"]=7383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1246, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=348864, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=982236, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99206, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=982236, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7383]={ + ["next_chapter"]=7384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1249, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=349847, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=992058, + ["unit"]=9 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100198, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=992058, + ["unit"]=9 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7384]={ + ["next_chapter"]=7385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1253, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=350836, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1002, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101200, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1002, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7385]={ + ["next_chapter"]=7386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1257, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=351829, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1012, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102212, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1012, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7386]={ + ["next_chapter"]=7387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1260, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=352828, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1022, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103234, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1022, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7387]={ + ["next_chapter"]=7388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1264, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=353832, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1032, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104266, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1032, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7388]={ + ["next_chapter"]=7389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1267, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=354841, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1043, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105309, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1043, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7389]={ + ["next_chapter"]=7390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1271, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=355855, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1053, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106362, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1053, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=101663, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=738, + ["unit"]=0 + } + }, + [7390]={ + ["next_chapter"]=7391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1275, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=356875, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1064, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107426, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1064, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7391]={ + ["next_chapter"]=7392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1278, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=357899, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1074, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108500, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1074, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7392]={ + ["next_chapter"]=7393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1282, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=358929, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1085, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109585, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1085, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7393]={ + ["next_chapter"]=7394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1286, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=359965, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1096, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110681, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1096, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7394]={ + ["next_chapter"]=7395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1289, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=361005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1107, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111788, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1107, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7395]={ + ["next_chapter"]=7396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1293, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=362051, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1118, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112905, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1118, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7396]={ + ["next_chapter"]=7397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1297, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=363102, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1129, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114034, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1129, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7397]={ + ["next_chapter"]=7398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1301, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=364159, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1140, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115175, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7398]={ + ["next_chapter"]=7399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1304, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=365220, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1152, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116327, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1152, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7399]={ + ["next_chapter"]=7400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1308, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=366287, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1163, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117490, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1163, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=112299, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=739, + ["unit"]=0 + } + }, + [7400]={ + ["next_chapter"]=7401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1312, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=367360, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1175, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118665, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1175, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7401]={ + ["next_chapter"]=7402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1316, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=368438, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1187, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119851, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1187, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7402]={ + ["next_chapter"]=7403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1320, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=369521, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1199, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121050, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1199, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7403]={ + ["next_chapter"]=7404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1324, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=370610, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1210, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122260, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7404]={ + ["next_chapter"]=7405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1328, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=371704, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1223, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123483, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1223, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7405]={ + ["next_chapter"]=7406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1331, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=372803, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1235, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124718, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1235, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7406]={ + ["next_chapter"]=7407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1335, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=373908, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1247, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125965, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1247, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7407]={ + ["next_chapter"]=7408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1339, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=375019, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1260, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127225, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1260, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7408]={ + ["next_chapter"]=7409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1343, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=376135, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1272, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128497, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1272, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7409]={ + ["next_chapter"]=7410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1347, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=377256, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1285, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129782, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1285, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=124048, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=740, + ["unit"]=0 + } + }, + [7410]={ + ["next_chapter"]=7411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1351, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=378383, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1298, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131080, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1298, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7411]={ + ["next_chapter"]=7412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1355, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=379515, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1311, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132391, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1311, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7412]={ + ["next_chapter"]=7413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1359, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=380653, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1324, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133714, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1324, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7413]={ + ["next_chapter"]=7414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1364, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=381797, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1337, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135052, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1337, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7414]={ + ["next_chapter"]=7415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1368, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=382946, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1351, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136402, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1351, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7415]={ + ["next_chapter"]=7416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1372, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=384100, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1364, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137766, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1364, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7416]={ + ["next_chapter"]=7417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1376, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=385261, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1378, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139144, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1378, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7417]={ + ["next_chapter"]=7418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1380, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=386426, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1391, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140535, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1391, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7418]={ + ["next_chapter"]=7419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1384, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=387598, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1405, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141941, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1405, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7419]={ + ["next_chapter"]=7420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1388, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=388775, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1419, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143360, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1419, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=137026, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=741, + ["unit"]=0 + } + }, + [7420]={ + ["next_chapter"]=7421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1393, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=389957, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1434, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144794, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1434, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7421]={ + ["next_chapter"]=7422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1397, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=391145, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1448, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146241, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1448, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7422]={ + ["next_chapter"]=7423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1401, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=392339, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1462, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147704, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1462, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7423]={ + ["next_chapter"]=7424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1405, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=393539, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1477, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149181, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1477, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7424]={ + ["next_chapter"]=7425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1410, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=394744, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1492, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150673, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1492, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7425]={ + ["next_chapter"]=7426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1414, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=395955, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1507, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152179, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1507, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7426]={ + ["next_chapter"]=7427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1418, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=397172, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1522, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153701, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1522, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7427]={ + ["next_chapter"]=7428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1423, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=398394, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1537, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155238, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1537, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7428]={ + ["next_chapter"]=7429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1427, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=399622, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1552, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156791, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1552, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7429]={ + ["next_chapter"]=7430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1432, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=400856, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1568, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158359, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1568, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=151362, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=742, + ["unit"]=0 + } + }, + [7430]={ + ["next_chapter"]=7431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1436, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=402096, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1584, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159942, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1584, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7431]={ + ["next_chapter"]=7432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1441, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=403341, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1599, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161542, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1599, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7432]={ + ["next_chapter"]=7433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1445, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=404592, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1615, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163157, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1615, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7433]={ + ["next_chapter"]=7434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1449, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=405849, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1632, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164789, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1632, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7434]={ + ["next_chapter"]=7435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1454, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=407112, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1648, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166436, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1648, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7435]={ + ["next_chapter"]=7436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1459, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=408381, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1664, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168101, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1664, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7436]={ + ["next_chapter"]=7437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1463, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=409655, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1681, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169782, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1681, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7437]={ + ["next_chapter"]=7438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1468, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=410936, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1698, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171480, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1698, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7438]={ + ["next_chapter"]=7439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1472, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=412222, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1715, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173194, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1715, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7439]={ + ["next_chapter"]=7440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1477, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=413514, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1732, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174926, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1732, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=167198, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=743, + ["unit"]=0 + } + }, + [7440]={ + ["next_chapter"]=7441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=1481, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=414812, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1749, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176676, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1749, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7441]={ + ["next_chapter"]=7442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1486, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=416116, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1767, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178442, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1767, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7442]={ + ["next_chapter"]=7443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1491, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=417426, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1784, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180227, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1784, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7443]={ + ["next_chapter"]=7444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1496, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=418742, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1802, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182029, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1802, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7444]={ + ["next_chapter"]=7445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=420064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1820, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183849, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7445]={ + ["next_chapter"]=7446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=421391, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1838, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185688, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1838, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7446]={ + ["next_chapter"]=7447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=422725, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1857, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187545, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1857, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7447]={ + ["next_chapter"]=7448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1515, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=424065, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1875, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189420, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1875, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7448]={ + ["next_chapter"]=7449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=425410, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1894, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191314, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1894, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7449]={ + ["next_chapter"]=7450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1524, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=426762, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1913, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193228, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1913, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=184691, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=744, + ["unit"]=0 + } + }, + [7450]={ + ["next_chapter"]=7451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=1529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=428120, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1932, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195160, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1932, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7451]={ + ["next_chapter"]=7452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1534, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=429484, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1952, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197111, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1952, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7452]={ + ["next_chapter"]=7453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1539, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=430854, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1971, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199083, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1971, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7453]={ + ["next_chapter"]=7454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1544, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=432230, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=1991, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201073, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=1991, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7454]={ + ["next_chapter"]=7455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1549, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=433612, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2011, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203084, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2011, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7455]={ + ["next_chapter"]=7456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1554, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=435000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2031, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205115, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2031, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7456]={ + ["next_chapter"]=7457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1559, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=436394, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2051, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207166, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2051, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7457]={ + ["next_chapter"]=7458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1564, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=437795, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2072, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209238, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2072, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7458]={ + ["next_chapter"]=7459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1569, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=439201, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2092, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211330, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2092, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7459]={ + ["next_chapter"]=7460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1574, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=440614, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2113, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213443, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2113, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=204014, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=745, + ["unit"]=0 + } + }, + [7460]={ + ["next_chapter"]=7461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1579, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=442033, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2134, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215578, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2134, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7461]={ + ["next_chapter"]=7462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1584, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=443458, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2156, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217734, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2156, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7462]={ + ["next_chapter"]=7463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1589, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=444889, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2177, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219911, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2177, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7463]={ + ["next_chapter"]=7464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1594, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=446326, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2199, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222110, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2199, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7464]={ + ["next_chapter"]=7465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1599, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=447770, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2221, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224331, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2221, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7465]={ + ["next_chapter"]=7466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1604, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=449220, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2243, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226575, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2243, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7466]={ + ["next_chapter"]=7467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1610, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=450676, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2266, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228840, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2266, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7467]={ + ["next_chapter"]=7468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1615, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=452139, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2288, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231129, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2288, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7468]={ + ["next_chapter"]=7469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1620, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=453607, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2311, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233440, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2311, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7469]={ + ["next_chapter"]=7470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1625, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=455082, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2334, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235774, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2334, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=225358, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=746, + ["unit"]=0 + } + }, + [7470]={ + ["next_chapter"]=7471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1631, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=456564, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2358, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238132, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2358, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7471]={ + ["next_chapter"]=7472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1636, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=458051, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2381, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240513, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2381, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7472]={ + ["next_chapter"]=7473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1641, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=459545, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2405, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242919, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2405, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7473]={ + ["next_chapter"]=7474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1647, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=461045, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2429, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245348, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2429, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7474]={ + ["next_chapter"]=7475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1652, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=462552, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2453, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247801, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2453, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7475]={ + ["next_chapter"]=7476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1657, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=464065, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2478, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250279, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2478, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7476]={ + ["next_chapter"]=7477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1663, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=465584, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2503, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=252782, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2503, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7477]={ + ["next_chapter"]=7478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1668, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=467110, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2528, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255310, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2528, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7478]={ + ["next_chapter"]=7479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1674, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=468642, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2553, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257863, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2553, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7479]={ + ["next_chapter"]=7480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1679, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=470181, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2579, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260442, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2579, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=248935, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=747, + ["unit"]=0 + } + }, + [7480]={ + ["next_chapter"]=7481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1685, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=471726, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2604, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263046, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2604, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7481]={ + ["next_chapter"]=7482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1690, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=473278, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2630, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265676, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2630, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7482]={ + ["next_chapter"]=7483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1696, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=474836, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2657, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268333, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2657, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7483]={ + ["next_chapter"]=7484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1701, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=476400, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2683, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271017, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2683, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7484]={ + ["next_chapter"]=7485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1707, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=477971, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2710, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=273727, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2710, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7485]={ + ["next_chapter"]=7486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1713, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=479548, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2737, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=276464, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2737, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7486]={ + ["next_chapter"]=7487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1718, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=481132, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2765, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279229, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2765, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7487]={ + ["next_chapter"]=7488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1724, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=482723, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2792, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=282021, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2792, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7488]={ + ["next_chapter"]=7489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1730, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=484320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2820, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=284841, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2820, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7489]={ + ["next_chapter"]=7490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1735, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=485924, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2848, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287690, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2848, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=274980, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=748, + ["unit"]=0 + } + }, + [7490]={ + ["next_chapter"]=7491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1741, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=487534, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2877, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=290566, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2877, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7491]={ + ["next_chapter"]=7492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1747, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=489151, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2906, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293472, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2906, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7492]={ + ["next_chapter"]=7493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1753, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=490774, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2935, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296407, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2935, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7493]={ + ["next_chapter"]=7494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1759, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=492404, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2964, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299371, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2964, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7494]={ + ["next_chapter"]=7495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1764, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=494040, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=2994, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302365, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=2994, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7495]={ + ["next_chapter"]=7496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1770, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=495684, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3024, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305388, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3024, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7496]={ + ["next_chapter"]=7497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1776, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=497334, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3054, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308442, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3054, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7497]={ + ["next_chapter"]=7498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1782, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=498990, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3084, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=311527, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3084, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7498]={ + ["next_chapter"]=7499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1788, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=500653, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3115, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=314642, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3115, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7499]={ + ["next_chapter"]=7500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1794, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=502323, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3146, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=317788, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3146, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=303749, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=749, + ["unit"]=0 + } + }, + [7500]={ + ["next_chapter"]=7501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3178, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320966, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3178, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7501]={ + ["next_chapter"]=7502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3210, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=324176, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3210, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7502]={ + ["next_chapter"]=7503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3242, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=327417, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3242, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7503]={ + ["next_chapter"]=7504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3274, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=330692, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3274, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7504]={ + ["next_chapter"]=7505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3307, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=333999, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3307, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7505]={ + ["next_chapter"]=7506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3340, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=337339, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3340, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7506]={ + ["next_chapter"]=7507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3373, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=340712, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3373, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7507]={ + ["next_chapter"]=7508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3407, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=344119, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3407, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7508]={ + ["next_chapter"]=7509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522002, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3441, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=347560, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3441, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7509]={ + ["next_chapter"]=7510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522003, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3476, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=351036, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3476, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=335527, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=750, + ["unit"]=0 + } + }, + [7510]={ + ["next_chapter"]=7511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522004, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3510, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354546, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3510, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7511]={ + ["next_chapter"]=7512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522005, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3545, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358092, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3545, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7512]={ + ["next_chapter"]=7513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522007, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3581, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=361673, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3581, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7513]={ + ["next_chapter"]=7514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522009, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3617, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=365289, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3617, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7514]={ + ["next_chapter"]=7515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522011, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3653, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=368942, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3653, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7515]={ + ["next_chapter"]=7516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522013, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3689, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=372632, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3689, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7516]={ + ["next_chapter"]=7517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522016, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3726, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=376358, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3726, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7517]={ + ["next_chapter"]=7518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522019, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3764, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=380122, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3764, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7518]={ + ["next_chapter"]=7519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3801, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=383923, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3801, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7519]={ + ["next_chapter"]=7520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522027, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3839, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=387762, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3839, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=370631, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=751, + ["unit"]=0 + } + }, + [7520]={ + ["next_chapter"]=7521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522032, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3878, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=391640, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3878, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7521]={ + ["next_chapter"]=7522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3916, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=395556, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3916, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7522]={ + ["next_chapter"]=7523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522042, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3956, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=399512, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3956, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7523]={ + ["next_chapter"]=7524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522048, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=3995, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=403507, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=3995, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7524]={ + ["next_chapter"]=7525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522055, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4035, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=407542, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4035, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7525]={ + ["next_chapter"]=7526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522062, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4075, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=411617, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4075, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7526]={ + ["next_chapter"]=7527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522069, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4116, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=415733, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4116, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7527]={ + ["next_chapter"]=7528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522078, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4157, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=419891, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4157, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7528]={ + ["next_chapter"]=7529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522087, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4199, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=424090, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4199, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7529]={ + ["next_chapter"]=7530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522096, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4241, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=428330, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4241, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=409407, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=752, + ["unit"]=0 + } + }, + [7530]={ + ["next_chapter"]=7531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522106, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4283, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=432614, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4283, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7531]={ + ["next_chapter"]=7532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522117, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4326, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436940, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4326, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7532]={ + ["next_chapter"]=7533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522129, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4369, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=441309, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4369, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7533]={ + ["next_chapter"]=7534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522142, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4413, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=445722, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4413, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7534]={ + ["next_chapter"]=7535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4457, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=450180, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4457, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7535]={ + ["next_chapter"]=7536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522169, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4502, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=454681, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4502, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7536]={ + ["next_chapter"]=7537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522184, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4547, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=459228, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4547, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7537]={ + ["next_chapter"]=7538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522200, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4592, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=463821, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4592, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7538]={ + ["next_chapter"]=7539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522216, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4638, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=468459, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4638, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7539]={ + ["next_chapter"]=7540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522234, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4685, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=473143, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4685, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=452240, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=753, + ["unit"]=0 + } + }, + [7540]={ + ["next_chapter"]=7541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522252, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4731, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=477875, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4731, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7541]={ + ["next_chapter"]=7542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522272, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4779, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=482653, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4779, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7542]={ + ["next_chapter"]=7543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522292, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4827, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=487480, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4827, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7543]={ + ["next_chapter"]=7544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522314, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4875, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=492355, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4875, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7544]={ + ["next_chapter"]=7545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522336, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4924, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=497278, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4924, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7545]={ + ["next_chapter"]=7546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522359, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=4973, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=502251, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=4973, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7546]={ + ["next_chapter"]=7547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522384, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5023, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=507274, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5023, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7547]={ + ["next_chapter"]=7548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522409, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5073, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=512346, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5073, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7548]={ + ["next_chapter"]=7549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522436, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5123, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=517470, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5123, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7549]={ + ["next_chapter"]=7550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522464, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5175, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=522645, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5175, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=499555, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=754, + ["unit"]=0 + } + }, + [7550]={ + ["next_chapter"]=7551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522493, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5226, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=527871, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5226, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7551]={ + ["next_chapter"]=7552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522523, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5279, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=533150, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5279, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7552]={ + ["next_chapter"]=7553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522555, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5331, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=538481, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5331, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7553]={ + ["next_chapter"]=7554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522587, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5385, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=543866, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5385, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7554]={ + ["next_chapter"]=7555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522621, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5439, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=549305, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5439, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7555]={ + ["next_chapter"]=7556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522656, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5493, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=554798, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5493, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7556]={ + ["next_chapter"]=7557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522693, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5548, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=560346, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5548, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7557]={ + ["next_chapter"]=7558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522730, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5603, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=565949, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5603, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7558]={ + ["next_chapter"]=7559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522770, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5659, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=571609, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5659, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7559]={ + ["next_chapter"]=7560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522810, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5716, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=577325, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5716, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=551819, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=755, + ["unit"]=0 + } + }, + [7560]={ + ["next_chapter"]=7561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522852, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5773, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=583098, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5773, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7561]={ + ["next_chapter"]=7562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522895, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5831, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=588929, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5831, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7562]={ + ["next_chapter"]=7563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522940, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5889, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=594818, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5889, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7563]={ + ["next_chapter"]=7564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=522986, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=5948, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=600766, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=5948, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7564]={ + ["next_chapter"]=7565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523034, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6008, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=606774, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6008, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7565]={ + ["next_chapter"]=7566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523083, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6068, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=612842, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6068, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7566]={ + ["next_chapter"]=7567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523134, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6128, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=618970, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6128, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7567]={ + ["next_chapter"]=7568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523186, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6190, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=625160, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6190, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7568]={ + ["next_chapter"]=7569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523240, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6252, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=631412, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6252, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7569]={ + ["next_chapter"]=7570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523296, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6314, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=637726, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6314, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=609551, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=756, + ["unit"]=0 + } + }, + [7570]={ + ["next_chapter"]=7571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1805, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523353, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6377, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=644103, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6377, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7571]={ + ["next_chapter"]=7572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1805, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523412, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6441, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=650544, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6441, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7572]={ + ["next_chapter"]=7573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1805, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523472, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6505, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=657049, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6505, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7573]={ + ["next_chapter"]=7574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1805, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523534, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6570, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=663620, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6570, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7574]={ + ["next_chapter"]=7575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1806, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523598, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6636, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=670256, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6636, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7575]={ + ["next_chapter"]=7576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1806, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523664, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6703, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=676959, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6703, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7576]={ + ["next_chapter"]=7577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1806, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523731, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6770, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=683728, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6770, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7577]={ + ["next_chapter"]=7578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1806, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523801, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6837, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=690566, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6837, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7578]={ + ["next_chapter"]=7579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1806, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523872, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6906, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=697471, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6906, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7579]={ + ["next_chapter"]=7580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=523945, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=6975, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=704446, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=6975, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=673324, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=757, + ["unit"]=0 + } + }, + [7580]={ + ["next_chapter"]=7581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524019, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7044, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=711490, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7044, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7581]={ + ["next_chapter"]=7582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524096, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7115, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=718605, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7115, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7582]={ + ["next_chapter"]=7583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7186, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=725791, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7186, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7583]={ + ["next_chapter"]=7584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1808, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524255, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7258, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=733049, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7258, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7584]={ + ["next_chapter"]=7585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1808, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524338, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7330, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=740380, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7330, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7585]={ + ["next_chapter"]=7586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1808, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524422, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7404, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=747784, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7404, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7586]={ + ["next_chapter"]=7587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1809, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524509, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7478, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=755261, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7478, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7587]={ + ["next_chapter"]=7588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1809, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524597, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7553, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=762814, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7553, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7588]={ + ["next_chapter"]=7589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1809, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524688, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7628, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=770442, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7628, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7589]={ + ["next_chapter"]=7590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1810, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524780, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7704, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=778147, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7704, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=743769, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=758, + ["unit"]=0 + } + }, + [7590]={ + ["next_chapter"]=7591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=1810, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524875, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7781, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=785928, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7781, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7591]={ + ["next_chapter"]=7592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1810, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=524972, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7859, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=793787, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7859, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7592]={ + ["next_chapter"]=7593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1811, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525071, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=7938, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=801725, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=7938, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7593]={ + ["next_chapter"]=7594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1811, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525172, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8017, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=809742, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8017, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7594]={ + ["next_chapter"]=7595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1811, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525276, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8097, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=817840, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8097, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7595]={ + ["next_chapter"]=7596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1812, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525381, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8178, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=826018, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8178, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7596]={ + ["next_chapter"]=7597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1812, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525489, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8260, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=834278, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8260, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7597]={ + ["next_chapter"]=7598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1812, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525600, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8343, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=842621, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8343, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7598]={ + ["next_chapter"]=7599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1813, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525712, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8426, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=851047, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8426, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7599]={ + ["next_chapter"]=7600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1813, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525827, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8510, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=859558, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8510, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=821583, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=759, + ["unit"]=0 + } + }, + [7600]={ + ["next_chapter"]=7601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=1814, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=525944, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8596, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=868153, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8596, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7601]={ + ["next_chapter"]=7602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1814, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=526064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8682, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=876835, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8682, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7602]={ + ["next_chapter"]=7603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1814, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=526185, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8768, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=885603, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8768, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7603]={ + ["next_chapter"]=7604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1815, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=526310, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8856, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=894459, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8856, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7604]={ + ["next_chapter"]=7605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1815, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=526436, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=8945, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=903404, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=8945, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7605]={ + ["next_chapter"]=7606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1816, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=526566, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9034, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=912438, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9034, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7606]={ + ["next_chapter"]=7607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1816, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=526697, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9124, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=921562, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9124, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7607]={ + ["next_chapter"]=7608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1817, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=526832, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9216, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=930778, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9216, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7608]={ + ["next_chapter"]=7609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1817, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=526968, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9308, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=940086, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9308, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7609]={ + ["next_chapter"]=7610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1818, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=527108, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9401, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=949487, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9401, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=907539, + ["unit"]=10 + }, + ["grasp_mastery_reward"]={ + ["value"]=760, + ["unit"]=0 + } + }, + [7610]={ + ["next_chapter"]=7611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1818, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=527249, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9495, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=958982, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9495, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7611]={ + ["next_chapter"]=7612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1819, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=527394, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9590, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=968571, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9590, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7612]={ + ["next_chapter"]=7613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1819, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=527541, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9686, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=978257, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9686, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7613]={ + ["next_chapter"]=7614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1820, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=527691, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9783, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=988040, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9783, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7614]={ + ["next_chapter"]=7615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1820, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=527843, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9880, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=997920, + ["unit"]=10 + }, + ["idle_gold"]={ + ["value"]=9880, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7615]={ + ["next_chapter"]=7616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1821, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=527998, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=9979, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1008, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9979, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7616]={ + ["next_chapter"]=7617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1821, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=528156, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10079, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1018, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10079, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7617]={ + ["next_chapter"]=7618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=528317, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10180, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1028, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10180, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7618]={ + ["next_chapter"]=7619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=528480, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10282, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1038, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10282, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7619]={ + ["next_chapter"]=7620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1823, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=528646, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10384, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1049, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10384, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1002, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=761, + ["unit"]=0 + } + }, + [7620]={ + ["next_chapter"]=7621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1824, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=528815, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10488, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1059, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10488, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7621]={ + ["next_chapter"]=7622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1824, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=528987, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10593, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1070, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10593, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7622]={ + ["next_chapter"]=7623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1825, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=529162, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10699, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1081, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10699, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7623]={ + ["next_chapter"]=7624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1825, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=529339, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10806, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1091, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10806, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7624]={ + ["next_chapter"]=7625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1826, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=529520, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=10914, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1102, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=10914, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7625]={ + ["next_chapter"]=7626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1827, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=529703, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11023, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1113, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11023, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7626]={ + ["next_chapter"]=7627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1827, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=529889, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11133, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1124, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11133, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7627]={ + ["next_chapter"]=7628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1828, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=530079, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11245, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1136, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11245, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7628]={ + ["next_chapter"]=7629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1829, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=530271, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11357, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1147, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11357, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7629]={ + ["next_chapter"]=7630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1829, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=530467, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11471, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1159, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11471, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1107, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=762, + ["unit"]=0 + } + }, + [7630]={ + ["next_chapter"]=7631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1830, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=530665, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11586, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1170, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11586, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7631]={ + ["next_chapter"]=7632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1831, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=530866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11701, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1182, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11701, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7632]={ + ["next_chapter"]=7633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1831, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=531071, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11818, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1194, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11818, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7633]={ + ["next_chapter"]=7634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1832, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=531279, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=11937, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1206, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=11937, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7634]={ + ["next_chapter"]=7635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1833, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=531490, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12056, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1218, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=12056, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7635]={ + ["next_chapter"]=7636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1833, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=531704, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12177, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1230, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=12177, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7636]={ + ["next_chapter"]=7637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1834, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=531921, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12298, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1242, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=12298, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7637]={ + ["next_chapter"]=7638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1835, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=532141, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12421, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1255, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=12421, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7638]={ + ["next_chapter"]=7639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1836, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=532365, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12545, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1267, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=12545, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7639]={ + ["next_chapter"]=7640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1837, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=532592, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12671, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1280, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=12671, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1223, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=763, + ["unit"]=0 + } + }, + [7640]={ + ["next_chapter"]=7641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1837, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=532822, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12798, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1293, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=12798, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7641]={ + ["next_chapter"]=7642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1838, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=533056, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=12926, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1305, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=12926, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7642]={ + ["next_chapter"]=7643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1839, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=533293, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13055, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1319, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=13055, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7643]={ + ["next_chapter"]=7644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1840, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=533533, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13185, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1332, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=13185, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7644]={ + ["next_chapter"]=7645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1841, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=533777, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13317, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1345, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=13317, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7645]={ + ["next_chapter"]=7646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1841, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=534024, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13450, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1358, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=13450, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7646]={ + ["next_chapter"]=7647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1842, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=534274, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13585, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1372, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=13585, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7647]={ + ["next_chapter"]=7648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1843, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=534528, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13721, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1386, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=13721, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7648]={ + ["next_chapter"]=7649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1844, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=534786, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13858, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1400, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=13858, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7649]={ + ["next_chapter"]=7650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1845, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=535047, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=13997, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1414, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=13997, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1351, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=764, + ["unit"]=0 + } + }, + [7650]={ + ["next_chapter"]=7651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1846, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=535311, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14137, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1428, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=14137, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7651]={ + ["next_chapter"]=7652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1847, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=535579, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14278, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1442, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=14278, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7652]={ + ["next_chapter"]=7653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1848, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=535851, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14421, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1456, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=14421, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7653]={ + ["next_chapter"]=7654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1849, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=536126, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14565, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1471, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=14565, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7654]={ + ["next_chapter"]=7655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1850, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=536405, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14711, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1486, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=14711, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7655]={ + ["next_chapter"]=7656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1851, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=536687, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=14858, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1501, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=14858, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7656]={ + ["next_chapter"]=7657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1852, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=536973, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15006, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1516, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=15006, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7657]={ + ["next_chapter"]=7658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1853, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=537263, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15156, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1531, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=15156, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7658]={ + ["next_chapter"]=7659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1854, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=537556, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15308, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1546, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=15308, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7659]={ + ["next_chapter"]=7660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1855, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=537854, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15461, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1562, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=15461, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1493, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=765, + ["unit"]=0 + } + }, + [7660]={ + ["next_chapter"]=7661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1856, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=538155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15616, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1577, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=15616, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7661]={ + ["next_chapter"]=7662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1857, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=538459, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15772, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1593, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=15772, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7662]={ + ["next_chapter"]=7663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1858, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=538768, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=15929, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1609, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=15929, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7663]={ + ["next_chapter"]=7664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1859, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=539080, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16089, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1625, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=16089, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7664]={ + ["next_chapter"]=7665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1860, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=539397, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16250, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1641, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=16250, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7665]={ + ["next_chapter"]=7666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1861, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=539717, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16412, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1658, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=16412, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7666]={ + ["next_chapter"]=7667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1862, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=540041, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16576, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1674, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=16576, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7667]={ + ["next_chapter"]=7668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1863, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=540369, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16742, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1691, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=16742, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7668]={ + ["next_chapter"]=7669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1864, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=540701, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=16909, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1708, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=16909, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7669]={ + ["next_chapter"]=7670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1866, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=541037, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17079, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1725, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=17079, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1649, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=766, + ["unit"]=0 + } + }, + [7670]={ + ["next_chapter"]=7671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1867, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=541377, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17249, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1742, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=17249, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7671]={ + ["next_chapter"]=7672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1868, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=541721, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17422, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1760, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=17422, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7672]={ + ["next_chapter"]=7673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1869, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=542069, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17596, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1777, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=17596, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7673]={ + ["next_chapter"]=7674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1870, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=542421, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17772, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1795, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=17772, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7674]={ + ["next_chapter"]=7675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1872, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=542777, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=17950, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1813, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=17950, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7675]={ + ["next_chapter"]=7676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1873, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=543137, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18129, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1831, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=18129, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7676]={ + ["next_chapter"]=7677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1874, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=543502, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18310, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1849, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=18310, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7677]={ + ["next_chapter"]=7678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1875, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=543870, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18494, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1868, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=18494, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7678]={ + ["next_chapter"]=7679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1877, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=544243, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18679, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1887, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=18679, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7679]={ + ["next_chapter"]=7680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1878, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=544620, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=18865, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1905, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=18865, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=1821, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=767, + ["unit"]=0 + } + }, + [7680]={ + ["next_chapter"]=7681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1879, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=545001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19054, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1924, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=19054, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7681]={ + ["next_chapter"]=7682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1881, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=545387, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19244, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1944, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=19244, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7682]={ + ["next_chapter"]=7683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1882, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=545777, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19437, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1963, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=19437, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7683]={ + ["next_chapter"]=7684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1883, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=546171, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19631, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1983, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=19631, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7684]={ + ["next_chapter"]=7685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1885, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=546569, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=19828, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2003, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=19828, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7685]={ + ["next_chapter"]=7686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1886, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=546972, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20026, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2023, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=20026, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7686]={ + ["next_chapter"]=7687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1888, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=547379, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20226, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2043, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=20226, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7687]={ + ["next_chapter"]=7688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1889, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=547791, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20428, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2063, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=20428, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7688]={ + ["next_chapter"]=7689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1890, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=548207, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20633, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2084, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=20633, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7689]={ + ["next_chapter"]=7690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1892, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=548627, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=20839, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2105, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=20839, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2012, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=768, + ["unit"]=0 + } + }, + [7690]={ + ["next_chapter"]=7691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1893, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=549052, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21047, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2126, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=21047, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7691]={ + ["next_chapter"]=7692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1895, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=549481, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21258, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2147, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=21258, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7692]={ + ["next_chapter"]=7693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1896, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=549915, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21470, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2169, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=21470, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7693]={ + ["next_chapter"]=7694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1898, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=550354, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21685, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2190, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=21685, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7694]={ + ["next_chapter"]=7695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1899, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=550797, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=21902, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2212, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=21902, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7695]={ + ["next_chapter"]=7696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1901, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=551244, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22121, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2234, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=22121, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7696]={ + ["next_chapter"]=7697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1902, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=551696, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22342, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2257, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=22342, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7697]={ + ["next_chapter"]=7698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1904, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=552153, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22566, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2279, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=22566, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7698]={ + ["next_chapter"]=7699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1906, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=552615, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=22791, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2302, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=22791, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7699]={ + ["next_chapter"]=7700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1907, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=553081, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23019, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2325, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=23019, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2222, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=769, + ["unit"]=0 + } + }, + [7700]={ + ["next_chapter"]=7701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1909, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=553552, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23249, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2348, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=23249, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7701]={ + ["next_chapter"]=7702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1910, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=554028, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23482, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2372, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=23482, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7702]={ + ["next_chapter"]=7703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1912, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=554508, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23717, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2395, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=23717, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7703]={ + ["next_chapter"]=7704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1914, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=554993, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=23954, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2419, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=23954, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7704]={ + ["next_chapter"]=7705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1915, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=555483, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24193, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2444, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=24193, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7705]={ + ["next_chapter"]=7706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1917, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=555978, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24435, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2468, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=24435, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7706]={ + ["next_chapter"]=7707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1919, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=556478, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24680, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2493, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=24680, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7707]={ + ["next_chapter"]=7708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1921, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=556982, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=24927, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2518, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=24927, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7708]={ + ["next_chapter"]=7709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1922, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=557492, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25176, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2543, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=25176, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7709]={ + ["next_chapter"]=7710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1924, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=558006, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25428, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2568, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=25428, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2455, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=770, + ["unit"]=0 + } + }, + [7710]={ + ["next_chapter"]=7711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1926, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=558525, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25682, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2594, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=25682, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7711]={ + ["next_chapter"]=7712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1928, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=559050, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=25939, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2620, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=25939, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7712]={ + ["next_chapter"]=7713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1930, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=559579, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26198, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2646, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=26198, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7713]={ + ["next_chapter"]=7714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1931, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=560113, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26460, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2672, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=26460, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7714]={ + ["next_chapter"]=7715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1933, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=560653, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26725, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2699, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=26725, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7715]={ + ["next_chapter"]=7716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1935, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=561197, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=26992, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2726, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=26992, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7716]={ + ["next_chapter"]=7717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1937, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=561746, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27262, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2753, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=27262, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7717]={ + ["next_chapter"]=7718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1939, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=562301, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27534, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2781, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=27534, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7718]={ + ["next_chapter"]=7719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1941, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=562861, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=27810, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2809, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=27810, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7719]={ + ["next_chapter"]=7720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1943, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=563426, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28088, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2837, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=28088, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2712, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=771, + ["unit"]=0 + } + }, + [7720]={ + ["next_chapter"]=7721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1945, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=563996, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28369, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2865, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=28369, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7721]={ + ["next_chapter"]=7722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1947, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=564571, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28652, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2894, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=28652, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7722]={ + ["next_chapter"]=7723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1949, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=565151, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=28939, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2923, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=28939, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7723]={ + ["next_chapter"]=7724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1951, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=565737, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29228, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2952, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=29228, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7724]={ + ["next_chapter"]=7725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1953, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=566328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29521, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2982, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=29521, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7725]={ + ["next_chapter"]=7726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1955, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=566925, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=29816, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3011, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=29816, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7726]={ + ["next_chapter"]=7727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1957, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=567526, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30114, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3042, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=30114, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7727]={ + ["next_chapter"]=7728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1959, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=568133, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30415, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3072, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=30415, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7728]={ + ["next_chapter"]=7729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1961, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=568746, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=30719, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3103, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=30719, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7729]={ + ["next_chapter"]=7730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1963, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=569363, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31026, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3134, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=31026, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=2995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=772, + ["unit"]=0 + } + }, + [7730]={ + ["next_chapter"]=7731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1965, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=569987, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31337, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3165, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=31337, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7731]={ + ["next_chapter"]=7732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1968, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=570615, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31650, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3197, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=31650, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7732]={ + ["next_chapter"]=7733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1970, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=571249, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=31967, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3229, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=31967, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7733]={ + ["next_chapter"]=7734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1972, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=571889, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32286, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3261, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=32286, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7734]={ + ["next_chapter"]=7735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1974, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=572534, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32609, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3294, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=32609, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7735]={ + ["next_chapter"]=7736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1976, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=573185, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=32935, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3326, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=32935, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7736]={ + ["next_chapter"]=7737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1979, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=573841, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33265, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3360, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=33265, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7737]={ + ["next_chapter"]=7738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1981, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=574503, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33597, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3393, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=33597, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7738]={ + ["next_chapter"]=7739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1983, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=575170, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=33933, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3427, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=33933, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7739]={ + ["next_chapter"]=7740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1986, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=575843, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34273, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3462, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=34273, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3309, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=773, + ["unit"]=0 + } + }, + [7740]={ + ["next_chapter"]=7741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1988, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=576522, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34615, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3496, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=34615, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7741]={ + ["next_chapter"]=7742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1990, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=577206, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=34961, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3531, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=34961, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7742]={ + ["next_chapter"]=7743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1993, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=577896, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35311, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3566, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=35311, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7743]={ + ["next_chapter"]=7744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1995, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=578592, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=35664, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3602, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=35664, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7744]={ + ["next_chapter"]=7745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1998, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=579294, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36021, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3638, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=36021, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7745]={ + ["next_chapter"]=7746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=580001, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36381, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3674, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=36381, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7746]={ + ["next_chapter"]=7747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=580714, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=36745, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3711, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=36745, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7747]={ + ["next_chapter"]=7748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=581433, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37112, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3748, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=37112, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7748]={ + ["next_chapter"]=7749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=582158, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37483, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3786, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=37483, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7749]={ + ["next_chapter"]=7750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=582888, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=37858, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3824, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=37858, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=3655, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=774, + ["unit"]=0 + } + }, + [7750]={ + ["next_chapter"]=7751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2013, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=583625, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38237, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3862, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=38237, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7751]={ + ["next_chapter"]=7752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2015, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=584367, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=38619, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3901, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=38619, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7752]={ + ["next_chapter"]=7753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=585116, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39005, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3940, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=39005, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7753]={ + ["next_chapter"]=7754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2020, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=585870, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39395, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3979, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=39395, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7754]={ + ["next_chapter"]=7755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2023, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=586631, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=39789, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4019, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=39789, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7755]={ + ["next_chapter"]=7756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2026, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=587397, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40187, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4059, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=40187, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7756]={ + ["next_chapter"]=7757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2028, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=588169, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40589, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4099, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=40589, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7757]={ + ["next_chapter"]=7758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2031, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=588948, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=40995, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4140, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=40995, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7758]={ + ["next_chapter"]=7759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2034, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=589732, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41405, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4182, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=41405, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7759]={ + ["next_chapter"]=7760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2036, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=590523, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=41819, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4224, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=41819, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4037, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=775, + ["unit"]=0 + } + }, + [7760]={ + ["next_chapter"]=7761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=2039, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=591320, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42237, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4266, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=42237, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7761]={ + ["next_chapter"]=7762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2042, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=592123, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=42660, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4309, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=42660, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7762]={ + ["next_chapter"]=7763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2045, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=592932, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43086, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4352, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=43086, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7763]={ + ["next_chapter"]=7764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2047, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=593747, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43517, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4395, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=43517, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7764]={ + ["next_chapter"]=7765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2050, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=594569, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=43952, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4439, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=43952, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7765]={ + ["next_chapter"]=7766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2053, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=595396, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44392, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4484, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=44392, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7766]={ + ["next_chapter"]=7767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=596230, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=44836, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4528, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=44836, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7767]={ + ["next_chapter"]=7768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2059, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=597071, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45284, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4574, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=45284, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7768]={ + ["next_chapter"]=7769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2062, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=597917, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=45737, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4619, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=45737, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7769]={ + ["next_chapter"]=7770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2065, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=598770, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46194, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4666, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=46194, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4459, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=776, + ["unit"]=0 + } + }, + [7770]={ + ["next_chapter"]=7771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2068, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=599630, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=46656, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4712, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=46656, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7771]={ + ["next_chapter"]=7772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2071, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=600496, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47123, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4759, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=47123, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7772]={ + ["next_chapter"]=7773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2074, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=601368, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=47594, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4807, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=47594, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7773]={ + ["next_chapter"]=7774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2077, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=602246, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48070, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4855, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=48070, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7774]={ + ["next_chapter"]=7775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2080, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=603131, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=48551, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4904, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=48551, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7775]={ + ["next_chapter"]=7776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2083, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=604023, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49036, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4953, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=49036, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7776]={ + ["next_chapter"]=7777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2086, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=604921, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=49526, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5002, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=49526, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7777]={ + ["next_chapter"]=7778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2089, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=605826, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50022, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5052, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=50022, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7778]={ + ["next_chapter"]=7779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2092, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=606737, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=50522, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5103, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=50522, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7779]={ + ["next_chapter"]=7780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2095, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=607654, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51027, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5154, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=51027, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=4926, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=777, + ["unit"]=0 + } + }, + [7780]={ + ["next_chapter"]=7781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=2099, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=608579, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=51537, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5205, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=51537, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7781]={ + ["next_chapter"]=7782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2102, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=609510, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52053, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5257, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=52053, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7782]={ + ["next_chapter"]=7783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2105, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=610447, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=52573, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5310, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=52573, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7783]={ + ["next_chapter"]=7784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2108, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=611391, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53099, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5363, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=53099, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7784]={ + ["next_chapter"]=7785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2112, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=612342, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=53630, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5417, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=53630, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7785]={ + ["next_chapter"]=7786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2115, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=613300, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54166, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5471, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=54166, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7786]={ + ["next_chapter"]=7787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2118, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=614265, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=54708, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5526, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=54708, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7787]={ + ["next_chapter"]=7788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2122, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=615236, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55255, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5581, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=55255, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7788]={ + ["next_chapter"]=7789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2125, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=616214, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=55808, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5637, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=55808, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7789]={ + ["next_chapter"]=7790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2128, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=617199, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56366, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5693, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=56366, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=5441, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=778, + ["unit"]=0 + } + }, + [7790]={ + ["next_chapter"]=7791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2132, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=618190, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=56929, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5750, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=56929, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7791]={ + ["next_chapter"]=7792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2135, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=619189, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=57499, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5807, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=57499, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7792]={ + ["next_chapter"]=7793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2139, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=620194, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58074, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5865, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=58074, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7793]={ + ["next_chapter"]=7794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2142, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=621206, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=58654, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5924, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=58654, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7794]={ + ["next_chapter"]=7795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2146, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=622226, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59241, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5983, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=59241, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7795]={ + ["next_chapter"]=7796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2149, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=623252, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=59833, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6043, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=59833, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7796]={ + ["next_chapter"]=7797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2153, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=624285, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=60432, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6104, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=60432, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7797]={ + ["next_chapter"]=7798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2156, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=625325, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=61036, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6165, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=61036, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7798]={ + ["next_chapter"]=7799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2160, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=626372, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=61646, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6226, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=61646, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7799]={ + ["next_chapter"]=7800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2164, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=627427, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=62263, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6289, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=62263, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6011, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=779, + ["unit"]=0 + } + }, + [7800]={ + ["next_chapter"]=7801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=2167, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=628488, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=62885, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6351, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=62885, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7801]={ + ["next_chapter"]=7802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2171, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=629556, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=63514, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6415, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=63514, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7802]={ + ["next_chapter"]=7803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2175, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=630632, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=64149, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6479, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=64149, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7803]={ + ["next_chapter"]=7804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2178, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=631715, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=64791, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6544, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=64791, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7804]={ + ["next_chapter"]=7805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2182, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=632805, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=65439, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6609, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=65439, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7805]={ + ["next_chapter"]=7806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2186, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=633902, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=66093, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6675, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=66093, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7806]={ + ["next_chapter"]=7807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2190, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=635006, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=66754, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6742, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=66754, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7807]={ + ["next_chapter"]=7808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2194, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=636117, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=67422, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6810, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=67422, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7808]={ + ["next_chapter"]=7809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2197, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=637236, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=68096, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6878, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=68096, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7809]={ + ["next_chapter"]=7810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2201, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=638362, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=68777, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6946, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=68777, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=6640, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=780, + ["unit"]=0 + } + }, + [7810]={ + ["next_chapter"]=7811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=2205, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=639496, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=69465, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7016, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=69465, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7811]={ + ["next_chapter"]=7812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2209, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=640636, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=70159, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7086, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=70159, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7812]={ + ["next_chapter"]=7813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2213, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=641785, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=70861, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7157, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=70861, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7813]={ + ["next_chapter"]=7814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2217, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=642940, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=71569, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7229, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=71569, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7814]={ + ["next_chapter"]=7815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2221, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=644103, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=72285, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7301, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=72285, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7815]={ + ["next_chapter"]=7816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2225, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=645273, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=73008, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7374, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=73008, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7816]={ + ["next_chapter"]=7817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2229, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=646451, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=73738, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7448, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=73738, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7817]={ + ["next_chapter"]=7818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2233, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=647636, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=74475, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7522, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=74475, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7818]={ + ["next_chapter"]=7819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2237, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=648829, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=75220, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7597, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=75220, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7819]={ + ["next_chapter"]=7820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2241, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=650029, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=75972, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7673, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=75972, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=7334, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=781, + ["unit"]=0 + } + }, + [7820]={ + ["next_chapter"]=7821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=2246, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=651237, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=76732, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7750, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=76732, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7821]={ + ["next_chapter"]=7822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2250, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=652452, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=77499, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7827, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=77499, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7822]={ + ["next_chapter"]=7823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2254, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=653675, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=78274, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7906, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=78274, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7823]={ + ["next_chapter"]=7824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2258, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=654906, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=79057, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7985, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=79057, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7824]={ + ["next_chapter"]=7825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2263, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=656144, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=79848, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8065, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=79848, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7825]={ + ["next_chapter"]=7826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2267, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=657390, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=80646, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8145, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=80646, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7826]={ + ["next_chapter"]=7827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2271, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=658644, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=81453, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8227, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=81453, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7827]={ + ["next_chapter"]=7828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2276, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=659905, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=82267, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8309, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=82267, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7828]={ + ["next_chapter"]=7829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2280, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=661174, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=83090, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8392, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=83090, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7829]={ + ["next_chapter"]=7830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2284, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=662451, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=83921, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8476, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=83921, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8102, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=782, + ["unit"]=0 + } + }, + [7830]={ + ["next_chapter"]=7831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=2289, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=663736, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=84760, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8561, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=84760, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7831]={ + ["next_chapter"]=7832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2293, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=665028, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=85608, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8646, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=85608, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7832]={ + ["next_chapter"]=7833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2298, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=666328, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=86464, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8733, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=86464, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7833]={ + ["next_chapter"]=7834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2302, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=667636, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=87328, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8820, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=87328, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7834]={ + ["next_chapter"]=7835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2307, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=668952, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=88202, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8908, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=88202, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7835]={ + ["next_chapter"]=7836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2311, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=670276, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=89084, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8997, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=89084, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7836]={ + ["next_chapter"]=7837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2316, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=671608, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=89974, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9087, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=89974, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7837]={ + ["next_chapter"]=7838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2321, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=672948, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=90874, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9178, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=90874, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7838]={ + ["next_chapter"]=7839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2325, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=674295, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=91783, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9270, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=91783, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7839]={ + ["next_chapter"]=7840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2330, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=675651, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=92701, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9363, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=92701, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=8949, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=783, + ["unit"]=0 + } + }, + [7840]={ + ["next_chapter"]=7841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=2335, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=677015, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=93628, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9456, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=93628, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7841]={ + ["next_chapter"]=7842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2339, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=678387, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=94564, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9551, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=94564, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7842]={ + ["next_chapter"]=7843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2344, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=679767, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=95510, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9646, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=95510, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7843]={ + ["next_chapter"]=7844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2349, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=681155, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=96465, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9743, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=96465, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7844]={ + ["next_chapter"]=7845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2354, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=682551, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=97429, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9840, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=97429, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7845]={ + ["next_chapter"]=7846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2358, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=683955, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=98404, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9939, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=98404, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7846]={ + ["next_chapter"]=7847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2363, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=685367, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=99388, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10038, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=99388, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7847]={ + ["next_chapter"]=7848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2368, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=686788, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=100382, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10139, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=100382, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7848]={ + ["next_chapter"]=7849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2373, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=688217, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=101385, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10240, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=101385, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7849]={ + ["next_chapter"]=7850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2378, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=689654, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=102399, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10342, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=102399, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=9885, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=784, + ["unit"]=0 + } + }, + [7850]={ + ["next_chapter"]=7851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=2383, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=691099, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=103423, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10446, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=103423, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7851]={ + ["next_chapter"]=7852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2388, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=692553, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=104458, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10550, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=104458, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7852]={ + ["next_chapter"]=7853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2393, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=694014, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=105502, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10656, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=105502, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7853]={ + ["next_chapter"]=7854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2398, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=695485, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=106557, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10762, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=106557, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7854]={ + ["next_chapter"]=7855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2403, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=696963, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=107623, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10870, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=107623, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7855]={ + ["next_chapter"]=7856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2408, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=698450, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=108699, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10979, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=108699, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7856]={ + ["next_chapter"]=7857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2414, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=699945, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=109786, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11088, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=109786, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7857]={ + ["next_chapter"]=7858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2419, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=701449, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=110884, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11199, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=110884, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7858]={ + ["next_chapter"]=7859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2424, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=702961, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=111993, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11311, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=111993, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7859]={ + ["next_chapter"]=7860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2429, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=704482, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=113113, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11424, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=113113, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=10920, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=785, + ["unit"]=0 + } + }, + [7860]={ + ["next_chapter"]=7861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=2435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=706011, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=114244, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11539, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=114244, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7861]={ + ["next_chapter"]=7862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2440, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=707549, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=115386, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11654, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=115386, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7862]={ + ["next_chapter"]=7863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2445, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=709095, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=116540, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11771, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=116540, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7863]={ + ["next_chapter"]=7864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2451, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=710650, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=117705, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11888, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=117705, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7864]={ + ["next_chapter"]=7865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2456, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=712213, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=118882, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12007, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=118882, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7865]={ + ["next_chapter"]=7866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2461, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=713785, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=120071, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12127, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=120071, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7866]={ + ["next_chapter"]=7867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2467, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=715366, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=121272, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12248, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=121272, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7867]={ + ["next_chapter"]=7868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2472, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=716955, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=122485, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12371, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=122485, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7868]={ + ["next_chapter"]=7869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2478, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=718553, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=123710, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12495, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=123710, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7869]={ + ["next_chapter"]=7870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2483, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=720160, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=124947, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12620, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=124947, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=12062, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=786, + ["unit"]=0 + } + }, + [7870]={ + ["next_chapter"]=7871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2489, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=721775, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=126196, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12746, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=126196, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7871]={ + ["next_chapter"]=7872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2494, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=723400, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=127458, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12873, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=127458, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7872]={ + ["next_chapter"]=7873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=725033, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=128733, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13002, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=128733, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7873]={ + ["next_chapter"]=7874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=726674, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=130020, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13132, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=130020, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7874]={ + ["next_chapter"]=7875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2511, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=728325, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=131320, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13263, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=131320, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7875]={ + ["next_chapter"]=7876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2517, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=729984, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=132633, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13396, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=132633, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7876]={ + ["next_chapter"]=7877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2523, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=731653, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=133960, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13530, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=133960, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7877]={ + ["next_chapter"]=7878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=733330, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=135299, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13665, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=135299, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7878]={ + ["next_chapter"]=7879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2535, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=735016, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=136652, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13802, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=136652, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7879]={ + ["next_chapter"]=7880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2540, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=736711, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=138019, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13940, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=138019, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=13324, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=787, + ["unit"]=0 + } + }, + [7880]={ + ["next_chapter"]=7881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=2546, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=738415, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=139399, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14079, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=139399, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7881]={ + ["next_chapter"]=7882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2552, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=740128, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=140793, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14220, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=140793, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7882]={ + ["next_chapter"]=7883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2558, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=741850, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=142201, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14362, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=142201, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7883]={ + ["next_chapter"]=7884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2564, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=743581, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=143623, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14506, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=143623, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7884]={ + ["next_chapter"]=7885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2570, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=745322, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=145059, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14651, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=145059, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7885]={ + ["next_chapter"]=7886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2576, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=747071, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=146510, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14797, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=146510, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7886]={ + ["next_chapter"]=7887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2582, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=748829, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=147975, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14945, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=147975, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7887]={ + ["next_chapter"]=7888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2588, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=750597, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=149455, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15095, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=149455, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7888]={ + ["next_chapter"]=7889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2594, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=752373, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=150949, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15246, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=150949, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7889]={ + ["next_chapter"]=7890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2601, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=754159, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=152459, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15398, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=152459, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=14718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=788, + ["unit"]=0 + } + }, + [7890]={ + ["next_chapter"]=7891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2607, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=755954, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=153983, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15552, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=153983, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7891]={ + ["next_chapter"]=7892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2613, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=757758, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=155523, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15708, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=155523, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7892]={ + ["next_chapter"]=7893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2619, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=759572, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=157078, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15865, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=157078, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7893]={ + ["next_chapter"]=7894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2625, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=761395, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=158649, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16024, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=158649, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7894]={ + ["next_chapter"]=7895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2632, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=763227, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=160236, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16184, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=160236, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7895]={ + ["next_chapter"]=7896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2638, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=765068, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=161838, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16346, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=161838, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7896]={ + ["next_chapter"]=7897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2645, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=766919, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=163456, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16509, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=163456, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7897]={ + ["next_chapter"]=7898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2651, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=768779, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=165091, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16674, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=165091, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7898]={ + ["next_chapter"]=7899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2657, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=770649, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=166742, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16841, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=166742, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7899]={ + ["next_chapter"]=7900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2664, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=772528, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=168409, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17009, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=168409, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=16258, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=789, + ["unit"]=0 + } + }, + [7900]={ + ["next_chapter"]=7901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=2670, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=774416, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=170093, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17179, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=170093, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7901]={ + ["next_chapter"]=7902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2677, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=776314, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=171794, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17351, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=171794, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7902]={ + ["next_chapter"]=7903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2684, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=778221, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=173512, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17525, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=173512, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7903]={ + ["next_chapter"]=7904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2690, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=780138, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=175247, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17700, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=175247, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7904]={ + ["next_chapter"]=7905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2697, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=782064, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=177000, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17877, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=177000, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7905]={ + ["next_chapter"]=7906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2703, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=784000, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=178770, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18056, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=178770, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7906]={ + ["next_chapter"]=7907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2710, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=785946, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=180557, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18236, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=180557, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7907]={ + ["next_chapter"]=7908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2717, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=787901, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=182363, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18419, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=182363, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7908]={ + ["next_chapter"]=7909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2724, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=789866, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=184187, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18603, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=184187, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7909]={ + ["next_chapter"]=7910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2730, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=791840, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=186029, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18789, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=186029, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=17959, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=790, + ["unit"]=0 + } + }, + [7910]={ + ["next_chapter"]=7911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=2737, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=793824, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=187889, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18977, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=187889, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7911]={ + ["next_chapter"]=7912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2744, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=795818, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=189768, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19167, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=189768, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7912]={ + ["next_chapter"]=7913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2751, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=797822, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=191665, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19358, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=191665, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7913]={ + ["next_chapter"]=7914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2758, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=799835, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=193582, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19552, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=193582, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7914]={ + ["next_chapter"]=7915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2765, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=801858, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=195518, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19747, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=195518, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7915]={ + ["next_chapter"]=7916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2772, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=803891, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=197473, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19945, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=197473, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7916]={ + ["next_chapter"]=7917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2779, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=805934, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=199448, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20144, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=199448, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7917]={ + ["next_chapter"]=7918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2786, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=807986, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=201442, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20346, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=201442, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7918]={ + ["next_chapter"]=7919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2793, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=810049, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=203457, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20549, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=203457, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7919]={ + ["next_chapter"]=7920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=812121, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=205491, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20755, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=205491, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=19838, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=791, + ["unit"]=0 + } + }, + [7920]={ + ["next_chapter"]=7921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2808, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=814203, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=207546, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20962, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=207546, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7921]={ + ["next_chapter"]=7922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2815, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=816295, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=209622, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21172, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=209622, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7922]={ + ["next_chapter"]=7923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=818397, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=211718, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21384, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=211718, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7923]={ + ["next_chapter"]=7924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2829, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=820509, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=213835, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21597, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=213835, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7924]={ + ["next_chapter"]=7925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2837, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=822631, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=215973, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21813, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=215973, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7925]={ + ["next_chapter"]=7926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2844, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=824764, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=218133, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22031, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=218133, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7926]={ + ["next_chapter"]=7927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2851, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=826906, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=220314, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22252, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=220314, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7927]={ + ["next_chapter"]=7928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2859, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=829058, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=222518, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22474, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=222518, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7928]={ + ["next_chapter"]=7929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2866, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=831220, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=224743, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22699, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=224743, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7929]={ + ["next_chapter"]=7930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2874, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=833393, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=226990, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22926, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=226990, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=21913, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=792, + ["unit"]=0 + } + }, + [7930]={ + ["next_chapter"]=7931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=2881, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=835576, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=229260, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23155, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=229260, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7931]={ + ["next_chapter"]=7932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2889, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=837768, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=231553, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23387, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=231553, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7932]={ + ["next_chapter"]=7933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2896, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=839971, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=233868, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23621, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=233868, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7933]={ + ["next_chapter"]=7934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2904, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=842185, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=236207, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23857, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=236207, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7934]={ + ["next_chapter"]=7935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2912, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=844408, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=238569, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24095, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=238569, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7935]={ + ["next_chapter"]=7936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2919, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=846642, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=240955, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24336, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=240955, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7936]={ + ["next_chapter"]=7937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2927, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=848886, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=243364, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24580, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=243364, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7937]={ + ["next_chapter"]=7938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2935, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=851140, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=245798, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24826, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=245798, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7938]={ + ["next_chapter"]=7939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2943, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=853405, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=248256, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25074, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=248256, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7939]={ + ["next_chapter"]=7940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2951, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=855680, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=250738, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25325, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=250738, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=24206, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=793, + ["unit"]=0 + } + }, + [7940]={ + ["next_chapter"]=7941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=2959, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=857966, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=253246, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25578, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=253246, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7941]={ + ["next_chapter"]=7942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2966, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=860262, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=255778, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25834, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=255778, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7942]={ + ["next_chapter"]=7943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2974, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=862568, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=258336, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26092, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=258336, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7943]={ + ["next_chapter"]=7944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2982, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=864885, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=260919, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26353, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=260919, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7944]={ + ["next_chapter"]=7945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2990, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=867212, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=263529, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26616, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=263529, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7945]={ + ["next_chapter"]=7946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2998, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=869550, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=266164, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26883, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=266164, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7946]={ + ["next_chapter"]=7947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=871898, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=268826, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27151, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=268826, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7947]={ + ["next_chapter"]=7948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3015, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=874257, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=271514, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27423, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=271514, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7948]={ + ["next_chapter"]=7949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3023, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=876626, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=274229, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27697, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=274229, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7949]={ + ["next_chapter"]=7950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3031, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=879006, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=276971, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27974, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=276971, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=26738, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=794, + ["unit"]=0 + } + }, + [7950]={ + ["next_chapter"]=7951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=3039, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=881397, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=279741, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28254, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=279741, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7951]={ + ["next_chapter"]=7952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3048, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=883798, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=282538, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28536, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=282538, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7952]={ + ["next_chapter"]=7953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=886210, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=285364, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28822, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=285364, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7953]={ + ["next_chapter"]=7954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3064, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=888633, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=288217, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29110, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=288217, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7954]={ + ["next_chapter"]=7955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3073, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=891066, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=291099, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29401, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=291099, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7955]={ + ["next_chapter"]=7956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3081, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=893511, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=294010, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29695, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=294010, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7956]={ + ["next_chapter"]=7957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3090, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=895965, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=296951, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29992, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=296951, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7957]={ + ["next_chapter"]=7958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3098, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=898431, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=299920, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30292, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=299920, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7958]={ + ["next_chapter"]=7959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3107, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=900908, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=302919, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30595, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=302919, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7959]={ + ["next_chapter"]=7960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3115, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=903395, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=305948, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30901, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=305948, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=29536, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=795, + ["unit"]=0 + } + }, + [7960]={ + ["next_chapter"]=7961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=3124, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=905893, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=309008, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31210, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=309008, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7961]={ + ["next_chapter"]=7962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3132, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=908402, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=312098, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31522, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=312098, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7962]={ + ["next_chapter"]=7963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3141, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=910922, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=315219, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31837, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=315219, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7963]={ + ["next_chapter"]=7964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3150, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=913453, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=318371, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32155, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=318371, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7964]={ + ["next_chapter"]=7965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3159, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=915995, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=321555, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32477, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=321555, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7965]={ + ["next_chapter"]=7966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3167, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=918548, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=324770, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32802, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=324770, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7966]={ + ["next_chapter"]=7967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3176, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=921112, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=328018, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33130, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=328018, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7967]={ + ["next_chapter"]=7968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3185, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=923687, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=331298, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33461, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=331298, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7968]={ + ["next_chapter"]=7969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3194, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=926273, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=334611, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33796, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=334611, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7969]={ + ["next_chapter"]=7970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3203, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=928870, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=337957, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34134, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=337957, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=32626, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=796, + ["unit"]=0 + } + }, + [7970]={ + ["next_chapter"]=7971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=3212, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=931478, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=341337, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34475, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=341337, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7971]={ + ["next_chapter"]=7972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3221, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=934097, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=344750, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34820, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=344750, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7972]={ + ["next_chapter"]=7973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3230, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=936728, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=348198, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35168, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=348198, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7973]={ + ["next_chapter"]=7974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3239, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=939369, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=351680, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35520, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=351680, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7974]={ + ["next_chapter"]=7975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3248, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=942022, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=355197, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35875, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=355197, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7975]={ + ["next_chapter"]=7976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3258, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=944686, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=358749, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36234, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=358749, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7976]={ + ["next_chapter"]=7977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3267, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=947361, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=362336, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36596, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=362336, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7977]={ + ["next_chapter"]=7978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3276, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=950048, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=365960, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36962, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=365960, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7978]={ + ["next_chapter"]=7979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3285, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=952745, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=369619, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37332, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=369619, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7979]={ + ["next_chapter"]=7980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3295, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=955454, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=373315, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37705, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=373315, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=36039, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=797, + ["unit"]=0 + } + }, + [7980]={ + ["next_chapter"]=7981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=3304, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=958175, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=377048, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38082, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=377048, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7981]={ + ["next_chapter"]=7982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3313, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=960907, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=380819, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38463, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=380819, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7982]={ + ["next_chapter"]=7983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3323, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=963650, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=384627, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38847, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=384627, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7983]={ + ["next_chapter"]=7984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3332, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=966404, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=388473, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39236, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=388473, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7984]={ + ["next_chapter"]=7985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3342, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=969170, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=392358, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39628, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=392358, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7985]={ + ["next_chapter"]=7986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3352, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=971948, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=396282, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40024, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=396282, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7986]={ + ["next_chapter"]=7987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3361, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=974737, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=400245, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40425, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=400245, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7987]={ + ["next_chapter"]=7988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3371, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=977537, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=404247, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40829, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=404247, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7988]={ + ["next_chapter"]=7989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3381, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=980349, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=408289, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41237, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=408289, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7989]={ + ["next_chapter"]=7990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3390, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=983173, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=412372, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41650, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=412372, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=39810, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=798, + ["unit"]=0 + } + }, + [7990]={ + ["next_chapter"]=7991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=3400, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=986008, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=416496, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42066, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=416496, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7991]={ + ["next_chapter"]=7992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3410, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=988854, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=420661, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42487, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=420661, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7992]={ + ["next_chapter"]=7993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3420, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=991713, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=424868, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42912, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=424868, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7993]={ + ["next_chapter"]=7994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3430, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=994583, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=429116, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43341, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=429116, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7994]={ + ["next_chapter"]=7995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3440, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=997464, + ["unit"]=8 + }, + ["gold_reward"]={ + ["value"]=433407, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43774, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=433407, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7995]={ + ["next_chapter"]=7996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3450, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1000, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=437742, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44212, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=437742, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7996]={ + ["next_chapter"]=7997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3460, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1003, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=442119, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44654, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=442119, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7997]={ + ["next_chapter"]=7998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3470, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1006, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=446540, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45101, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=446540, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7998]={ + ["next_chapter"]=7999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3480, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1009, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=451006, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45552, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=451006, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [7999]={ + ["next_chapter"]=8000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3490, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1012, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=455516, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46007, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=455516, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=43975, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=799, + ["unit"]=0 + } + }, + [8000]={ + ["next_chapter"]=8001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=460071, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46467, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=460071, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8001]={ + ["next_chapter"]=8002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=464671, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46932, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=464671, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8002]={ + ["next_chapter"]=8003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=469318, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47401, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=469318, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8003]={ + ["next_chapter"]=8004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=474011, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47875, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=474011, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8004]={ + ["next_chapter"]=8005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=478751, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48354, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=478751, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8005]={ + ["next_chapter"]=8006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=483539, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48837, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=483539, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8006]={ + ["next_chapter"]=8007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=488374, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49326, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=488374, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8007]={ + ["next_chapter"]=8008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=493258, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49819, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=493258, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8008]={ + ["next_chapter"]=8009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=498191, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50317, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=498191, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8009]={ + ["next_chapter"]=8010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=503173, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50820, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=503173, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=48575, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=800, + ["unit"]=0 + } + }, + [8010]={ + ["next_chapter"]=8011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=508204, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51329, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=508204, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8011]={ + ["next_chapter"]=8012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=513286, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51842, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=513286, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8012]={ + ["next_chapter"]=8013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=518419, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52360, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=518419, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8013]={ + ["next_chapter"]=8014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=523603, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52884, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=523603, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8014]={ + ["next_chapter"]=8015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=528839, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53413, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=528839, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8015]={ + ["next_chapter"]=8016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=534128, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53947, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=534128, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8016]={ + ["next_chapter"]=8017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=539469, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54486, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=539469, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8017]={ + ["next_chapter"]=8018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=544864, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55031, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=544864, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8018]={ + ["next_chapter"]=8019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=550312, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55582, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=550312, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8019]={ + ["next_chapter"]=8020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=555816, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56137, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=555816, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=53657, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=801, + ["unit"]=0 + } + }, + [8020]={ + ["next_chapter"]=8021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=561374, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56699, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=561374, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8021]={ + ["next_chapter"]=8022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=566988, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57266, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=566988, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8022]={ + ["next_chapter"]=8023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=572657, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57838, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=572657, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8023]={ + ["next_chapter"]=8024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=578384, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58417, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=578384, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8024]={ + ["next_chapter"]=8025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=584168, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59001, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=584168, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8025]={ + ["next_chapter"]=8026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=590009, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59591, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=590009, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8026]={ + ["next_chapter"]=8027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=595910, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60187, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=595910, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8027]={ + ["next_chapter"]=8028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=601869, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60789, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=601869, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8028]={ + ["next_chapter"]=8029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=607887, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61397, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=607887, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8029]={ + ["next_chapter"]=8030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=613966, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62011, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=613966, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=59271, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=802, + ["unit"]=0 + } + }, + [8030]={ + ["next_chapter"]=8031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=620106, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62631, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=620106, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8031]={ + ["next_chapter"]=8032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=626307, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63257, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=626307, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8032]={ + ["next_chapter"]=8033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=632570, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63890, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=632570, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8033]={ + ["next_chapter"]=8034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=638896, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64528, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=638896, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8034]={ + ["next_chapter"]=8035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=645285, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65174, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=645285, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8035]={ + ["next_chapter"]=8036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=651738, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65825, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=651738, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8036]={ + ["next_chapter"]=8037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=658255, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66484, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=658255, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8037]={ + ["next_chapter"]=8038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=664837, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67149, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=664837, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8038]={ + ["next_chapter"]=8039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=671486, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67820, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=671486, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8039]={ + ["next_chapter"]=8040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=678201, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68498, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=678201, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=65472, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=803, + ["unit"]=0 + } + }, + [8040]={ + ["next_chapter"]=8041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=3502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=684983, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69183, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=684983, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8041]={ + ["next_chapter"]=8042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=691833, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69875, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=691833, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8042]={ + ["next_chapter"]=8043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=698751, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70574, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=698751, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8043]={ + ["next_chapter"]=8044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=705738, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71280, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=705738, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8044]={ + ["next_chapter"]=8045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=712796, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71992, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=712796, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8045]={ + ["next_chapter"]=8046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=719924, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72712, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=719924, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8046]={ + ["next_chapter"]=8047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=727123, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73439, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=727123, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8047]={ + ["next_chapter"]=8048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=734394, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74174, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=734394, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8048]={ + ["next_chapter"]=8049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=741738, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74916, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=741738, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8049]={ + ["next_chapter"]=8050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=749155, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75665, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=749155, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=72322, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=804, + ["unit"]=0 + } + }, + [8050]={ + ["next_chapter"]=8051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=3503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=756647, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76421, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=756647, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8051]={ + ["next_chapter"]=8052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=764214, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77186, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=764214, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8052]={ + ["next_chapter"]=8053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=771856, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77957, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=771856, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8053]={ + ["next_chapter"]=8054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=779574, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78737, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=779574, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8054]={ + ["next_chapter"]=8055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=787370, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79524, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=787370, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8055]={ + ["next_chapter"]=8056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=795244, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80320, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=795244, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8056]={ + ["next_chapter"]=8057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=803196, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81123, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=803196, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8057]={ + ["next_chapter"]=8058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=811228, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81934, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=811228, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8058]={ + ["next_chapter"]=8059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=819340, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82753, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=819340, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8059]={ + ["next_chapter"]=8060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=827534, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83581, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=827534, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=79888, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=805, + ["unit"]=0 + } + }, + [8060]={ + ["next_chapter"]=8061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=3505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=835809, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84417, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=835809, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8061]={ + ["next_chapter"]=8062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=844167, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85261, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=844167, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8062]={ + ["next_chapter"]=8063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=852609, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86113, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=852609, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8063]={ + ["next_chapter"]=8064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=861135, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86975, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=861135, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8064]={ + ["next_chapter"]=8065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=869746, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87844, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=869746, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8065]={ + ["next_chapter"]=8066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3507, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=878444, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88723, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=878444, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8066]={ + ["next_chapter"]=8067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3507, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=887228, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89610, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=887228, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8067]={ + ["next_chapter"]=8068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3507, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=896100, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90506, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=896100, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8068]={ + ["next_chapter"]=8069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3508, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=905061, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91411, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=905061, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8069]={ + ["next_chapter"]=8070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3508, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=914112, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92325, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=914112, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=88246, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=806, + ["unit"]=0 + } + }, + [8070]={ + ["next_chapter"]=8071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=3508, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=923253, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93249, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=923253, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8071]={ + ["next_chapter"]=8072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3509, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=932486, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94181, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=932486, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8072]={ + ["next_chapter"]=8073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3509, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=941811, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95123, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=941811, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8073]={ + ["next_chapter"]=8074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3509, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=951229, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96074, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=951229, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8074]={ + ["next_chapter"]=8075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=960741, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97035, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=960741, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8075]={ + ["next_chapter"]=8076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=970348, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98005, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=970348, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8076]={ + ["next_chapter"]=8077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3511, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=980052, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98985, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=980052, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8077]={ + ["next_chapter"]=8078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3511, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=989852, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99975, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=989852, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8078]={ + ["next_chapter"]=8079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3511, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=999751, + ["unit"]=10 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100975, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=999751, + ["unit"]=10 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8079]={ + ["next_chapter"]=8080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3512, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1010, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101985, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1010, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=97479, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=807, + ["unit"]=0 + } + }, + [8080]={ + ["next_chapter"]=8081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=3512, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1020, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103004, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1020, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8081]={ + ["next_chapter"]=8082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3513, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1030, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104034, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1030, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8082]={ + ["next_chapter"]=8083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3513, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1040, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105075, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1040, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8083]={ + ["next_chapter"]=8084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3514, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1051, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106126, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1051, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8084]={ + ["next_chapter"]=8085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3514, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1061, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107187, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1061, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8085]={ + ["next_chapter"]=8086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3515, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1072, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108259, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1072, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8086]={ + ["next_chapter"]=8087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3515, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1083, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109341, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1083, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8087]={ + ["next_chapter"]=8088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3516, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1093, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110435, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1093, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8088]={ + ["next_chapter"]=8089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3516, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1104, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111539, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1104, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8089]={ + ["next_chapter"]=8090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3517, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1115, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112654, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1115, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=107677, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=808, + ["unit"]=0 + } + }, + [8090]={ + ["next_chapter"]=8091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=3517, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1127, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113781, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1127, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8091]={ + ["next_chapter"]=8092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3518, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1138, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114919, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1138, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8092]={ + ["next_chapter"]=8093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1056, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1149, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116068, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1149, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8093]={ + ["next_chapter"]=8094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1056, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1161, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117229, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1161, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8094]={ + ["next_chapter"]=8095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3520, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1056, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1172, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118401, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1172, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8095]={ + ["next_chapter"]=8096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3521, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1056, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1184, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119585, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1184, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8096]={ + ["next_chapter"]=8097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3521, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1056, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1196, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120781, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1196, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8097]={ + ["next_chapter"]=8098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3522, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1208, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121989, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1208, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8098]={ + ["next_chapter"]=8099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3523, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1220, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123208, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1220, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8099]={ + ["next_chapter"]=8100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3523, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1232, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124441, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1232, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=118943, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=809, + ["unit"]=0 + } + }, + [8100]={ + ["next_chapter"]=8101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=3524, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1244, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125685, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1244, + ["unit"]=11 + }, + ["chapter_drop"]=55, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8101]={ + ["next_chapter"]=8102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3525, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1257, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126942, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1257, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8102]={ + ["next_chapter"]=8103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3525, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1269, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128211, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1269, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8103]={ + ["next_chapter"]=8104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3526, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1282, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129493, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1282, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8104]={ + ["next_chapter"]=8105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3527, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1295, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130788, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1295, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8105]={ + ["next_chapter"]=8106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3528, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1308, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132096, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1308, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8106]={ + ["next_chapter"]=8107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1059, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1321, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133417, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1321, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8107]={ + ["next_chapter"]=8108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1059, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1334, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134751, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1334, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8108]={ + ["next_chapter"]=8109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3530, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1059, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1348, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136099, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1348, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8109]={ + ["next_chapter"]=8110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3531, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1059, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1361, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137460, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1361, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=131387, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=810, + ["unit"]=0 + } + }, + [8110]={ + ["next_chapter"]=8111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=3532, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1060, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1375, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138834, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1375, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8111]={ + ["next_chapter"]=8112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3533, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1060, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1388, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140223, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1388, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8112]={ + ["next_chapter"]=8113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3534, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1060, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1402, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141625, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1402, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8113]={ + ["next_chapter"]=8114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3535, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1060, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1416, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143041, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1416, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8114]={ + ["next_chapter"]=8115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3536, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1061, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1430, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144472, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1430, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8115]={ + ["next_chapter"]=8116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3537, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1061, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1445, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145916, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1445, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8116]={ + ["next_chapter"]=8117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3537, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1061, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1459, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147376, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1459, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8117]={ + ["next_chapter"]=8118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3538, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1474, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148849, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1474, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8118]={ + ["next_chapter"]=8119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3539, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1488, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150338, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1488, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8119]={ + ["next_chapter"]=8120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3540, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1503, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151841, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1503, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=145133, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=811, + ["unit"]=0 + } + }, + [8120]={ + ["next_chapter"]=8121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=3541, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1518, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153360, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1518, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8121]={ + ["next_chapter"]=8122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3543, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1063, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1534, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154893, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1534, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8122]={ + ["next_chapter"]=8123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3544, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1063, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1549, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156442, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1549, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8123]={ + ["next_chapter"]=8124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3545, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1063, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1564, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158007, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1564, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8124]={ + ["next_chapter"]=8125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3546, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1580, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159587, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1580, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8125]={ + ["next_chapter"]=8126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3547, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1596, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161182, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1596, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8126]={ + ["next_chapter"]=8127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3548, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1612, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162794, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1612, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8127]={ + ["next_chapter"]=8128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3549, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1628, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164422, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1628, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8128]={ + ["next_chapter"]=8129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3550, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1644, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166066, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1644, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8129]={ + ["next_chapter"]=8130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3552, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1661, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167727, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1661, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=160317, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=812, + ["unit"]=0 + } + }, + [8130]={ + ["next_chapter"]=8131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=3553, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1677, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169404, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1677, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8131]={ + ["next_chapter"]=8132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3554, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1694, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171098, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1694, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8132]={ + ["next_chapter"]=8133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3555, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1067, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1711, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172809, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1711, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8133]={ + ["next_chapter"]=8134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3556, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1067, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1728, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174537, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1728, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8134]={ + ["next_chapter"]=8135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3558, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1067, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1745, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176283, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1745, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8135]={ + ["next_chapter"]=8136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3559, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1068, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1763, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178046, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1763, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8136]={ + ["next_chapter"]=8137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3560, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1068, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1780, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179826, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1780, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8137]={ + ["next_chapter"]=8138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3562, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1069, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1798, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181624, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1798, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8138]={ + ["next_chapter"]=8139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3563, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1069, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1816, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183441, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1816, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8139]={ + ["next_chapter"]=8140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3564, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1069, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1834, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185275, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1834, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=177090, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=813, + ["unit"]=0 + } + }, + [8140]={ + ["next_chapter"]=8141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=3566, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1070, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1853, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187128, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1853, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8141]={ + ["next_chapter"]=8142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3567, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1070, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1871, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188999, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1871, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8142]={ + ["next_chapter"]=8143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3569, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1071, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1890, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190889, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1890, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8143]={ + ["next_chapter"]=8144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3570, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1071, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1909, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192798, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1909, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8144]={ + ["next_chapter"]=8145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3572, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1071, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1928, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194726, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1928, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8145]={ + ["next_chapter"]=8146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3573, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1072, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1947, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196673, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1947, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8146]={ + ["next_chapter"]=8147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3575, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1072, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1967, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198640, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1967, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8147]={ + ["next_chapter"]=8148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3576, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1073, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1986, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200626, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=1986, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8148]={ + ["next_chapter"]=8149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3578, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1073, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2006, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202633, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2006, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8149]={ + ["next_chapter"]=8150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3579, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1074, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2026, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204659, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2026, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=195617, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=814, + ["unit"]=0 + } + }, + [8150]={ + ["next_chapter"]=8151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=3581, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1074, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2047, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206706, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2047, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8151]={ + ["next_chapter"]=8152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3583, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1075, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2067, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208773, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2067, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8152]={ + ["next_chapter"]=8153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3584, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1075, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2088, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210860, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2088, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8153]={ + ["next_chapter"]=8154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3586, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1076, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2109, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212969, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2109, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8154]={ + ["next_chapter"]=8155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3588, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1076, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2130, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215099, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2130, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8155]={ + ["next_chapter"]=8156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3589, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2151, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217250, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2151, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8156]={ + ["next_chapter"]=8157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3591, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2172, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219422, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2172, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8157]={ + ["next_chapter"]=8158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3593, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1078, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2194, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221616, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2194, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8158]={ + ["next_chapter"]=8159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3595, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1078, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2216, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223832, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2216, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8159]={ + ["next_chapter"]=8160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3596, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1079, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2238, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226071, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2238, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=216083, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=815, + ["unit"]=0 + } + }, + [8160]={ + ["next_chapter"]=8161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=3598, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1079, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2261, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228331, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2261, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8161]={ + ["next_chapter"]=8162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3600, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1080, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2283, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230615, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2283, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8162]={ + ["next_chapter"]=8163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3602, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1081, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2306, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232921, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2306, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8163]={ + ["next_chapter"]=8164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3604, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1081, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2329, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235250, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2329, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8164]={ + ["next_chapter"]=8165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3606, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1082, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2353, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237603, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2353, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8165]={ + ["next_chapter"]=8166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3608, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1082, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2376, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239979, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2376, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8166]={ + ["next_chapter"]=8167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3610, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1083, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2400, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242378, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2400, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8167]={ + ["next_chapter"]=8168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3612, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1084, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2424, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244802, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2424, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8168]={ + ["next_chapter"]=8169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3614, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1084, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2448, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247250, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2448, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8169]={ + ["next_chapter"]=8170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3616, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1085, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2473, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249723, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2473, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=238690, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=816, + ["unit"]=0 + } + }, + [8170]={ + ["next_chapter"]=8171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=3618, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1085, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2497, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=252220, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2497, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8171]={ + ["next_chapter"]=8172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3620, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1086, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2522, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254742, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2522, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8172]={ + ["next_chapter"]=8173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3622, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1087, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2547, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257290, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2547, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8173]={ + ["next_chapter"]=8174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3624, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1087, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2573, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259863, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2573, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8174]={ + ["next_chapter"]=8175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3626, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1088, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2599, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262461, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2599, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8175]={ + ["next_chapter"]=8176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1089, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2625, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265086, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2625, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8176]={ + ["next_chapter"]=8177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3631, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1089, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2651, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267737, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2651, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8177]={ + ["next_chapter"]=8178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3633, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1090, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2677, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270414, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2677, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8178]={ + ["next_chapter"]=8179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3635, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1091, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2704, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=273118, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2704, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8179]={ + ["next_chapter"]=8180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3638, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1091, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2731, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275849, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2731, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=263663, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=817, + ["unit"]=0 + } + }, + [8180]={ + ["next_chapter"]=8181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=3640, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1092, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2758, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=278608, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2758, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8181]={ + ["next_chapter"]=8182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3642, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1093, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2786, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281394, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2786, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8182]={ + ["next_chapter"]=8183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3645, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1093, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2814, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=284208, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2814, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8183]={ + ["next_chapter"]=8184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3647, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1094, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2842, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287050, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2842, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8184]={ + ["next_chapter"]=8185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3650, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1095, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2870, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289920, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2870, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8185]={ + ["next_chapter"]=8186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3652, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1096, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2899, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292820, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2899, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8186]={ + ["next_chapter"]=8187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3654, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1096, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2928, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295748, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2928, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8187]={ + ["next_chapter"]=8188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3657, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1097, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2957, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298705, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2957, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8188]={ + ["next_chapter"]=8189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3659, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1098, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2987, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301692, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=2987, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8189]={ + ["next_chapter"]=8190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3662, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3017, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304709, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3017, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=291247, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=818, + ["unit"]=0 + } + }, + [8190]={ + ["next_chapter"]=8191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=3665, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3047, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307756, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3047, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8191]={ + ["next_chapter"]=8192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3667, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1100, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3078, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310834, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3078, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8192]={ + ["next_chapter"]=8193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3670, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1101, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3108, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313942, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3108, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8193]={ + ["next_chapter"]=8194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3673, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1102, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3139, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=317082, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3139, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8194]={ + ["next_chapter"]=8195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3675, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1103, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3171, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320253, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3171, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8195]={ + ["next_chapter"]=8196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3678, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1103, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3203, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323455, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3203, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8196]={ + ["next_chapter"]=8197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3681, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1104, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3235, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=326690, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3235, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8197]={ + ["next_chapter"]=8198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3683, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1105, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3267, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329956, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3267, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8198]={ + ["next_chapter"]=8199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3686, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1106, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3300, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=333256, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3300, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8199]={ + ["next_chapter"]=8200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3689, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1107, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3333, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=336589, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3333, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=321718, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=819, + ["unit"]=0 + } + }, + [8200]={ + ["next_chapter"]=8201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=3692, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1108, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3366, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339954, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3366, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8201]={ + ["next_chapter"]=8202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3695, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1108, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3400, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=343354, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3400, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8202]={ + ["next_chapter"]=8203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3698, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1109, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3434, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346788, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3434, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8203]={ + ["next_chapter"]=8204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3701, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1110, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3468, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350255, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3468, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8204]={ + ["next_chapter"]=8205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3704, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1111, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3503, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=353758, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3503, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8205]={ + ["next_chapter"]=8206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3707, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1112, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3538, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=357296, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3538, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8206]={ + ["next_chapter"]=8207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3710, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1113, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3573, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360869, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3573, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8207]={ + ["next_chapter"]=8208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3713, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1114, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3609, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=364477, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3609, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8208]={ + ["next_chapter"]=8209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3716, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1115, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3645, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=368122, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3645, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8209]={ + ["next_chapter"]=8210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3719, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1116, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3681, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=371803, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3681, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=355377, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=820, + ["unit"]=0 + } + }, + [8210]={ + ["next_chapter"]=8211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=3722, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1117, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3718, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=375521, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3718, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8211]={ + ["next_chapter"]=8212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3725, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1118, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3755, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=379276, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3755, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8212]={ + ["next_chapter"]=8213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3729, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1119, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3793, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=383069, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3793, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8213]={ + ["next_chapter"]=8214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3732, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1120, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3831, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386900, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3831, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8214]={ + ["next_chapter"]=8215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3735, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1121, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3869, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390769, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3869, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8215]={ + ["next_chapter"]=8216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3739, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1122, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3908, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394677, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3908, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8216]={ + ["next_chapter"]=8217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3742, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1123, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3947, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398623, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3947, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8217]={ + ["next_chapter"]=8218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3745, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1124, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3986, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402610, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=3986, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8218]={ + ["next_chapter"]=8219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3749, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1125, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4026, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406636, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4026, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8219]={ + ["next_chapter"]=8220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3752, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1126, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4066, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410702, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4066, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=392558, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=821, + ["unit"]=0 + } + }, + [8220]={ + ["next_chapter"]=8221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=3756, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1127, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4107, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414809, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4107, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8221]={ + ["next_chapter"]=8222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3759, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1128, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4148, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418957, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4148, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8222]={ + ["next_chapter"]=8223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3763, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1129, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4190, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=423147, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4190, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8223]={ + ["next_chapter"]=8224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3766, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1130, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4231, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=427378, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4231, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8224]={ + ["next_chapter"]=8225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3770, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1131, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4274, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431652, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4274, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8225]={ + ["next_chapter"]=8226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3773, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1132, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4317, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=435969, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4317, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8226]={ + ["next_chapter"]=8227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3777, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1133, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4360, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=440328, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4360, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8227]={ + ["next_chapter"]=8228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3781, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1134, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4403, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=444731, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4403, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8228]={ + ["next_chapter"]=8229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3784, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1135, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4447, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=449179, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4447, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8229]={ + ["next_chapter"]=8230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3788, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1136, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4492, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=453671, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4492, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=433628, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=822, + ["unit"]=0 + } + }, + [8230]={ + ["next_chapter"]=8231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=3792, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1138, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4537, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=458207, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4537, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8231]={ + ["next_chapter"]=8232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3796, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1139, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4582, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=462789, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4582, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8232]={ + ["next_chapter"]=8233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1140, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4628, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=467417, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4628, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8233]={ + ["next_chapter"]=8234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4674, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=472091, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4674, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8234]={ + ["next_chapter"]=8235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3808, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1142, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4721, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476812, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4721, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8235]={ + ["next_chapter"]=8236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3811, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1143, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4768, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481580, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4768, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8236]={ + ["next_chapter"]=8237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3815, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1145, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4816, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=486396, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4816, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8237]={ + ["next_chapter"]=8238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3819, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1146, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4864, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=491260, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4864, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8238]={ + ["next_chapter"]=8239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3824, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1147, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4913, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=496173, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4913, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8239]={ + ["next_chapter"]=8240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3828, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1148, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4962, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=501135, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=4962, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=478995, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=823, + ["unit"]=0 + } + }, + [8240]={ + ["next_chapter"]=8241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=3832, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1150, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5011, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506146, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5011, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8241]={ + ["next_chapter"]=8242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3836, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1151, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5061, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=511207, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5061, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8242]={ + ["next_chapter"]=8243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3840, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1152, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5112, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516319, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5112, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8243]={ + ["next_chapter"]=8244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3844, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1153, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5163, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=521483, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5163, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8244]={ + ["next_chapter"]=8245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3849, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1155, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5215, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=526697, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5215, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8245]={ + ["next_chapter"]=8246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3853, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1156, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5267, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=531964, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5267, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8246]={ + ["next_chapter"]=8247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3857, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1157, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5320, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=537284, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5320, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8247]={ + ["next_chapter"]=8248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3862, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1158, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5373, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=542657, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5373, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8248]={ + ["next_chapter"]=8249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3866, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1160, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5427, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=548083, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5427, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8249]={ + ["next_chapter"]=8250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3871, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1161, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5481, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=553564, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5481, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=529108, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=824, + ["unit"]=0 + } + }, + [8250]={ + ["next_chapter"]=8251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=3875, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1163, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5536, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=559100, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5536, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8251]={ + ["next_chapter"]=8252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3880, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1164, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5591, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564691, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5591, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8252]={ + ["next_chapter"]=8253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3884, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1165, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5647, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=570338, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5647, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8253]={ + ["next_chapter"]=8254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3889, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1167, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5703, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=576041, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5703, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8254]={ + ["next_chapter"]=8255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3893, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1168, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5760, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=581802, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5760, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8255]={ + ["next_chapter"]=8256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3898, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1169, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5818, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=587620, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5818, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8256]={ + ["next_chapter"]=8257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3903, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1171, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5876, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=593496, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5876, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8257]={ + ["next_chapter"]=8258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3907, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1172, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5935, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=599431, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5935, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8258]={ + ["next_chapter"]=8259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3912, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1174, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5994, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=605425, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=5994, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8259]={ + ["next_chapter"]=8260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3917, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1175, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6054, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=611479, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6054, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=584465, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=825, + ["unit"]=0 + } + }, + [8260]={ + ["next_chapter"]=8261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=3922, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1177, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6115, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=617594, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6115, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8261]={ + ["next_chapter"]=8262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3927, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6176, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=623770, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6176, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8262]={ + ["next_chapter"]=8263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3932, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1179, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6238, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=630008, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6238, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8263]={ + ["next_chapter"]=8264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3937, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1181, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6300, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=636308, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6300, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8264]={ + ["next_chapter"]=8265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3942, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1182, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6363, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=642671, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6363, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8265]={ + ["next_chapter"]=8266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3947, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1184, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6427, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=649098, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6427, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8266]={ + ["next_chapter"]=8267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3952, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1186, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6491, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=655589, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6491, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8267]={ + ["next_chapter"]=8268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3957, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1187, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6556, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=662145, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6556, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8268]={ + ["next_chapter"]=8269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3962, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1189, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6621, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=668766, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6621, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8269]={ + ["next_chapter"]=8270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3967, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6688, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=675454, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6688, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=645613, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=826, + ["unit"]=0 + } + }, + [8270]={ + ["next_chapter"]=8271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=3972, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1192, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6755, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682208, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6755, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8271]={ + ["next_chapter"]=8272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3978, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1193, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6822, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=689030, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6822, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8272]={ + ["next_chapter"]=8273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3983, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1195, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6890, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=695921, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6890, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8273]={ + ["next_chapter"]=8274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3988, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1196, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6959, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=702880, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=6959, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8274]={ + ["next_chapter"]=8275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3994, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1198, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7029, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=709909, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7029, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8275]={ + ["next_chapter"]=8276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3999, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1200, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7099, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=717008, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7099, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8276]={ + ["next_chapter"]=8277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1201, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7170, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=724178, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7170, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8277]={ + ["next_chapter"]=8278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1203, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7242, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=731420, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7242, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8278]={ + ["next_chapter"]=8279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4016, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1205, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7314, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=738734, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7314, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8279]={ + ["next_chapter"]=8280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4021, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1206, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7387, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=746121, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7387, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=713158, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=827, + ["unit"]=0 + } + }, + [8280]={ + ["next_chapter"]=8281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=4027, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1208, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7461, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=753582, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7461, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8281]={ + ["next_chapter"]=8282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4033, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1210, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7536, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=761118, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7536, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8282]={ + ["next_chapter"]=8283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4038, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1211, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7611, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=768729, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7611, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8283]={ + ["next_chapter"]=8284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4044, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7687, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=776417, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7687, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8284]={ + ["next_chapter"]=8285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4050, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1215, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7764, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=784181, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7764, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8285]={ + ["next_chapter"]=8286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1217, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7842, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=792023, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7842, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8286]={ + ["next_chapter"]=8287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4061, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1218, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7920, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799943, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7920, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8287]={ + ["next_chapter"]=8288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4067, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1220, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7999, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=807942, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=7999, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8288]={ + ["next_chapter"]=8289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4073, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1222, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8079, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=816022, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8079, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8289]={ + ["next_chapter"]=8290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4079, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1224, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8160, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=824182, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8160, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=787770, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=828, + ["unit"]=0 + } + }, + [8290]={ + ["next_chapter"]=8291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=4085, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1226, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8242, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=832424, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8242, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8291]={ + ["next_chapter"]=8292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4091, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1227, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8324, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=840748, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8324, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8292]={ + ["next_chapter"]=8293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4098, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1229, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8407, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=849155, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8407, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8293]={ + ["next_chapter"]=8294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4104, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1231, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8492, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=857647, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8492, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8294]={ + ["next_chapter"]=8295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4110, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1233, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8576, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=866223, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8576, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8295]={ + ["next_chapter"]=8296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4116, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1235, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8662, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=874886, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8662, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8296]={ + ["next_chapter"]=8297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4122, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1237, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8749, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=883634, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8749, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8297]={ + ["next_chapter"]=8298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4129, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1239, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8836, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=892471, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8836, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8298]={ + ["next_chapter"]=8299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4135, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1241, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8925, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=901396, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=8925, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8299]={ + ["next_chapter"]=8300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4142, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1242, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9014, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=910410, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9014, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=870188, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=829, + ["unit"]=0 + } + }, + [8300]={ + ["next_chapter"]=8301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=4148, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1244, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9104, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=919514, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9104, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8301]={ + ["next_chapter"]=8302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1246, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9195, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=928709, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9195, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8302]={ + ["next_chapter"]=8303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4161, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1248, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9287, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=937996, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9287, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8303]={ + ["next_chapter"]=8304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4168, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1250, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9380, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=947376, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9380, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8304]={ + ["next_chapter"]=8305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4174, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1252, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9474, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=956850, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9474, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8305]={ + ["next_chapter"]=8306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4181, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1254, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9568, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=966418, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9568, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8306]={ + ["next_chapter"]=8307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4188, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1256, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9664, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=976082, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9664, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8307]={ + ["next_chapter"]=8308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4194, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1258, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9761, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=985843, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9761, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8308]={ + ["next_chapter"]=8309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4201, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1260, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9858, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=995701, + ["unit"]=11 + }, + ["idle_gold"]={ + ["value"]=9858, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8309]={ + ["next_chapter"]=8310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4208, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1262, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9957, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1006, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9957, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=961229, + ["unit"]=11 + }, + ["grasp_mastery_reward"]={ + ["value"]=830, + ["unit"]=0 + } + }, + [8310]={ + ["next_chapter"]=8311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=4215, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1264, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10057, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1016, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10057, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8311]={ + ["next_chapter"]=8312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4222, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1267, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10157, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1026, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10157, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8312]={ + ["next_chapter"]=8313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4229, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1269, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10259, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1036, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10259, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8313]={ + ["next_chapter"]=8314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4236, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1271, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10361, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1046, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10361, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8314]={ + ["next_chapter"]=8315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4243, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1273, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10465, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1057, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10465, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8315]={ + ["next_chapter"]=8316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4250, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10570, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1068, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10570, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8316]={ + ["next_chapter"]=8317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4257, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1277, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10675, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1078, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10675, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8317]={ + ["next_chapter"]=8318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4265, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1279, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10782, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1089, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10782, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8318]={ + ["next_chapter"]=8319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4272, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1282, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10890, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1100, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10890, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8319]={ + ["next_chapter"]=8320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4279, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1284, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10999, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1111, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=10999, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1062, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=831, + ["unit"]=0 + } + }, + [8320]={ + ["next_chapter"]=8321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=4286, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1286, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11109, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1122, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=11109, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8321]={ + ["next_chapter"]=8322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4294, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1288, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11220, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1133, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=11220, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8322]={ + ["next_chapter"]=8323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4301, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1290, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11332, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1145, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=11332, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8323]={ + ["next_chapter"]=8324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4309, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1293, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11445, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1156, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=11445, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8324]={ + ["next_chapter"]=8325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4316, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1295, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11560, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1168, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=11560, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8325]={ + ["next_chapter"]=8326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4324, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1297, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11675, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1179, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=11675, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8326]={ + ["next_chapter"]=8327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4332, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1299, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11792, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1191, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=11792, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8327]={ + ["next_chapter"]=8328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4339, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1302, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11910, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1203, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=11910, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8328]={ + ["next_chapter"]=8329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4347, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1304, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12029, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1215, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=12029, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8329]={ + ["next_chapter"]=8330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4355, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1306, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12149, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1227, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=12149, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1173, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=832, + ["unit"]=0 + } + }, + [8330]={ + ["next_chapter"]=8331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=4362, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1309, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12271, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1239, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=12271, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8331]={ + ["next_chapter"]=8332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4370, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1311, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12394, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1252, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=12394, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8332]={ + ["next_chapter"]=8333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4378, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1313, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12518, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1264, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=12518, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8333]={ + ["next_chapter"]=8334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4386, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1316, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12643, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1277, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=12643, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8334]={ + ["next_chapter"]=8335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4394, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1318, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12769, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1290, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=12769, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8335]={ + ["next_chapter"]=8336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4402, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1321, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12897, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1303, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=12897, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8336]={ + ["next_chapter"]=8337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4410, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1323, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13026, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1316, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=13026, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8337]={ + ["next_chapter"]=8338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4419, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1326, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13156, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1329, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=13156, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8338]={ + ["next_chapter"]=8339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4427, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1328, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13288, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1342, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=13288, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8339]={ + ["next_chapter"]=8340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13421, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1355, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=13421, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1296, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=833, + ["unit"]=0 + } + }, + [8340]={ + ["next_chapter"]=8341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=4443, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1333, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13555, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1369, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=13555, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8341]={ + ["next_chapter"]=8342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4452, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1335, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13690, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1383, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=13690, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8342]={ + ["next_chapter"]=8343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4460, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1338, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13827, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1397, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=13827, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8343]={ + ["next_chapter"]=8344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4468, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1341, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13965, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1411, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=13965, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8344]={ + ["next_chapter"]=8345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4477, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1343, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14105, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1425, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=14105, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8345]={ + ["next_chapter"]=8346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4486, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1346, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14246, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1439, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=14246, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8346]={ + ["next_chapter"]=8347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4494, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1348, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14389, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1453, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=14389, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8347]={ + ["next_chapter"]=8348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14533, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1468, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=14533, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8348]={ + ["next_chapter"]=8349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4511, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1353, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14678, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1482, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=14678, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8349]={ + ["next_chapter"]=8350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4520, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1356, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14825, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1497, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=14825, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1431, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=834, + ["unit"]=0 + } + }, + [8350]={ + ["next_chapter"]=8351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=4529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1359, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14973, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1512, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=14973, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8351]={ + ["next_chapter"]=8352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4538, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1361, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15123, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1527, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=15123, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8352]={ + ["next_chapter"]=8353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4547, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1364, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15274, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1543, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=15274, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8353]={ + ["next_chapter"]=8354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4556, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1367, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15427, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1558, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=15427, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8354]={ + ["next_chapter"]=8355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4565, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1369, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15581, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1574, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=15581, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8355]={ + ["next_chapter"]=8356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4574, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1372, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15737, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1589, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=15737, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8356]={ + ["next_chapter"]=8357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4583, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1375, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15894, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1605, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=15894, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8357]={ + ["next_chapter"]=8358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4592, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1378, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16053, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1621, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=16053, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8358]={ + ["next_chapter"]=8359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4601, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1380, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16213, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1638, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=16213, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8359]={ + ["next_chapter"]=8360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4610, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1383, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16376, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1654, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=16376, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=835, + ["unit"]=0 + } + }, + [8360]={ + ["next_chapter"]=8361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=4620, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1386, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16539, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1670, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=16539, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8361]={ + ["next_chapter"]=8362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1389, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16705, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1687, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=16705, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8362]={ + ["next_chapter"]=8363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4639, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1392, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16872, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1704, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=16872, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8363]={ + ["next_chapter"]=8364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4648, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1394, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17041, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1721, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=17041, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8364]={ + ["next_chapter"]=8365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4657, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1397, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17211, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1738, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=17211, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8365]={ + ["next_chapter"]=8366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4667, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1400, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17383, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1756, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=17383, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8366]={ + ["next_chapter"]=8367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4677, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1403, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17557, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1773, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=17557, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8367]={ + ["next_chapter"]=8368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4686, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1406, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17732, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1791, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=17732, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8368]={ + ["next_chapter"]=8369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4696, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1409, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17910, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1809, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=17910, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8369]={ + ["next_chapter"]=8370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4706, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1412, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18089, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1827, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=18089, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1746, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=836, + ["unit"]=0 + } + }, + [8370]={ + ["next_chapter"]=8371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=4716, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1415, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18270, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1845, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=18270, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8371]={ + ["next_chapter"]=8372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4726, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1418, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18452, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1864, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=18452, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8372]={ + ["next_chapter"]=8373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4735, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1421, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18637, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1882, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=18637, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8373]={ + ["next_chapter"]=8374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4745, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1424, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18823, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1901, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=18823, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8374]={ + ["next_chapter"]=8375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4756, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1427, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19012, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1920, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=19012, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8375]={ + ["next_chapter"]=8376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4766, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1430, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19202, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1939, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=19202, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8376]={ + ["next_chapter"]=8377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4776, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1433, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19394, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1959, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=19394, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8377]={ + ["next_chapter"]=8378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4786, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1436, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19588, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1978, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=19588, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8378]={ + ["next_chapter"]=8379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4796, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1439, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19784, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1998, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=19784, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8379]={ + ["next_chapter"]=8380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1442, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19981, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2018, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=19981, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1929, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=837, + ["unit"]=0 + } + }, + [8380]={ + ["next_chapter"]=8381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=4817, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1445, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20181, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2038, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=20181, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8381]={ + ["next_chapter"]=8382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4827, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1448, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20383, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2059, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=20383, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8382]={ + ["next_chapter"]=8383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4838, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1451, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20587, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2079, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=20587, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8383]={ + ["next_chapter"]=8384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4848, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1455, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20793, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2100, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=20793, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8384]={ + ["next_chapter"]=8385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4859, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1458, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21001, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2121, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=21001, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8385]={ + ["next_chapter"]=8386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4870, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1461, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21211, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2142, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=21211, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8386]={ + ["next_chapter"]=8387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4880, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1464, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21423, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2164, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=21423, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8387]={ + ["next_chapter"]=8388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4891, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1467, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21637, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2185, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=21637, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8388]={ + ["next_chapter"]=8389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4902, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1471, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21853, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2207, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=21853, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8389]={ + ["next_chapter"]=8390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4913, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1474, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22072, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2229, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=22072, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2131, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=838, + ["unit"]=0 + } + }, + [8390]={ + ["next_chapter"]=8391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=4924, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1477, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22293, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2252, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=22293, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8391]={ + ["next_chapter"]=8392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4935, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1480, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22516, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2274, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=22516, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8392]={ + ["next_chapter"]=8393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4946, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1484, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22741, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2297, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=22741, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8393]={ + ["next_chapter"]=8394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4957, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1487, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22968, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2320, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=22968, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8394]={ + ["next_chapter"]=8395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4968, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1490, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23198, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2343, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=23198, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8395]={ + ["next_chapter"]=8396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4979, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1494, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23430, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2366, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=23430, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8396]={ + ["next_chapter"]=8397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4990, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1497, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23664, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2390, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=23664, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8397]={ + ["next_chapter"]=8398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1501, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23901, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2414, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=23901, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8398]={ + ["next_chapter"]=8399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5013, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1504, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24140, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2438, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=24140, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8399]={ + ["next_chapter"]=8400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5025, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24381, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2462, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=24381, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2354, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=839, + ["unit"]=0 + } + }, + [8400]={ + ["next_chapter"]=8401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=5036, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1511, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24625, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2487, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=24625, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8401]={ + ["next_chapter"]=8402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5048, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1514, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24871, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2512, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=24871, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8402]={ + ["next_chapter"]=8403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5059, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1518, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25120, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2537, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=25120, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8403]={ + ["next_chapter"]=8404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5071, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1521, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25371, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2562, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=25371, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8404]={ + ["next_chapter"]=8405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5083, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1525, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25625, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2588, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=25625, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8405]={ + ["next_chapter"]=8406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5094, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1528, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25881, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2614, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=25881, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8406]={ + ["next_chapter"]=8407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5106, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1532, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26140, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2640, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=26140, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8407]={ + ["next_chapter"]=8408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5118, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1535, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26401, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2667, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=26401, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8408]={ + ["next_chapter"]=8409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5130, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1539, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26665, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2693, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=26665, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8409]={ + ["next_chapter"]=8410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5142, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1543, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26932, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2720, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=26932, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=840, + ["unit"]=0 + } + }, + [8410]={ + ["next_chapter"]=8411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=5154, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1546, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27201, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2747, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=27201, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8411]={ + ["next_chapter"]=8412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5166, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1550, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27473, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2775, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=27473, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8412]={ + ["next_chapter"]=8413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5178, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1554, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27748, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2803, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=27748, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8413]={ + ["next_chapter"]=8414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1557, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28025, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2831, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=28025, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8414]={ + ["next_chapter"]=8415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5203, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1561, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28306, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2859, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=28306, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8415]={ + ["next_chapter"]=8416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5215, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1565, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28589, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2887, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=28589, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8416]={ + ["next_chapter"]=8417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5228, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1568, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28875, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2916, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=28875, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8417]={ + ["next_chapter"]=8418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5240, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1572, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29163, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2945, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=29163, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8418]={ + ["next_chapter"]=8419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5253, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1576, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29455, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2975, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=29455, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8419]={ + ["next_chapter"]=8420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5265, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1580, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29750, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3005, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=29750, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2872, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=841, + ["unit"]=0 + } + }, + [8420]={ + ["next_chapter"]=8421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=5278, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1583, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30047, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3035, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=30047, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8421]={ + ["next_chapter"]=8422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5291, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1587, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30348, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3065, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=30348, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8422]={ + ["next_chapter"]=8423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5304, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1591, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30651, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3096, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=30651, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8423]={ + ["next_chapter"]=8424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5316, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1595, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30957, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3127, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=30957, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8424]={ + ["next_chapter"]=8425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5329, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31267, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3158, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=31267, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8425]={ + ["next_chapter"]=8426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5342, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31580, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3190, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=31580, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8426]={ + ["next_chapter"]=8427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5355, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1607, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31896, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3221, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=31896, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8427]={ + ["next_chapter"]=8428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5369, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1611, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32214, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3254, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=32214, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8428]={ + ["next_chapter"]=8429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5382, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1614, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32537, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3286, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=32537, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8429]={ + ["next_chapter"]=8430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5395, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1618, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32862, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3319, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=32862, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3172, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=842, + ["unit"]=0 + } + }, + [8430]={ + ["next_chapter"]=8431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=5408, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1622, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33191, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3352, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=33191, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8431]={ + ["next_chapter"]=8432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5422, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1626, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33523, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3386, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=33523, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8432]={ + ["next_chapter"]=8433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33858, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3420, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=33858, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8433]={ + ["next_chapter"]=8434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5448, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1635, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34196, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3454, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=34196, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8434]={ + ["next_chapter"]=8435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5462, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1639, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34538, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3488, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=34538, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8435]={ + ["next_chapter"]=8436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5476, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1643, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34884, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3523, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=34884, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8436]={ + ["next_chapter"]=8437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5489, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1647, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35233, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3558, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=35233, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8437]={ + ["next_chapter"]=8438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1651, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35585, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3594, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=35585, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8438]={ + ["next_chapter"]=8439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5517, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1655, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35941, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3630, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=35941, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8439]={ + ["next_chapter"]=8440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5531, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1659, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36300, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3666, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=36300, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3504, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=843, + ["unit"]=0 + } + }, + [8440]={ + ["next_chapter"]=8441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=5544, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1663, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36663, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3703, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=36663, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8441]={ + ["next_chapter"]=8442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5558, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1668, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37030, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3740, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=37030, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8442]={ + ["next_chapter"]=8443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5572, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1672, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37400, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3777, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=37400, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8443]={ + ["next_chapter"]=8444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5587, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1676, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37774, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3815, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=37774, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8444]={ + ["next_chapter"]=8445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5601, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1680, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38152, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3853, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=38152, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8445]={ + ["next_chapter"]=8446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5615, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1684, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38533, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3892, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=38533, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8446]={ + ["next_chapter"]=8447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1689, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38919, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3931, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=38919, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8447]={ + ["next_chapter"]=8448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5644, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1693, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39308, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3970, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=39308, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8448]={ + ["next_chapter"]=8449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5658, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1697, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39701, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4010, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=39701, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8449]={ + ["next_chapter"]=8450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5672, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1702, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40098, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4050, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=40098, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=3871, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=844, + ["unit"]=0 + } + }, + [8450]={ + ["next_chapter"]=8451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=5687, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1706, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40499, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4090, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=40499, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8451]={ + ["next_chapter"]=8452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5702, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1710, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40904, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4131, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=40904, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8452]={ + ["next_chapter"]=8453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5716, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1715, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41313, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4173, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=41313, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8453]={ + ["next_chapter"]=8454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5731, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1719, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41726, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4214, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=41726, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8454]={ + ["next_chapter"]=8455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5746, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1724, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42143, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4256, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=42143, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8455]={ + ["next_chapter"]=8456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5761, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1728, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42565, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4299, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=42565, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8456]={ + ["next_chapter"]=8457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5776, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1733, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42990, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4342, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=42990, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8457]={ + ["next_chapter"]=8458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5791, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1737, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43420, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4385, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=43420, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8458]={ + ["next_chapter"]=8459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5806, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1742, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43854, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4429, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=43854, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8459]={ + ["next_chapter"]=8460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5821, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1746, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44293, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4474, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=44293, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4276, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=845, + ["unit"]=0 + } + }, + [8460]={ + ["next_chapter"]=8461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=5836, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1751, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44736, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4518, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=44736, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8461]={ + ["next_chapter"]=8462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5851, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1755, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45183, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4564, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=45183, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8462]={ + ["next_chapter"]=8463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5867, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1760, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45635, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4609, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=45635, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8463]={ + ["next_chapter"]=8464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5882, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1765, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46091, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4655, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=46091, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8464]={ + ["next_chapter"]=8465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5898, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1769, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46552, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4702, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=46552, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8465]={ + ["next_chapter"]=8466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5913, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1774, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47018, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4749, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=47018, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8466]={ + ["next_chapter"]=8467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5929, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1779, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47488, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4796, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=47488, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8467]={ + ["next_chapter"]=8468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5944, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1783, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47963, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4844, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=47963, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8468]={ + ["next_chapter"]=8469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5960, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1788, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48443, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4893, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=48443, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8469]={ + ["next_chapter"]=8470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5976, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1793, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48927, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4942, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=48927, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=4723, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=846, + ["unit"]=0 + } + }, + [8470]={ + ["next_chapter"]=8471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=5992, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1798, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49416, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4991, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=49416, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8471]={ + ["next_chapter"]=8472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6008, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1802, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49910, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5041, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=49910, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8472]={ + ["next_chapter"]=8473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1807, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50410, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5091, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=50410, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8473]={ + ["next_chapter"]=8474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6040, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1812, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50914, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5142, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=50914, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8474]={ + ["next_chapter"]=8475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1817, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51423, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5194, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=51423, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8475]={ + ["next_chapter"]=8476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6072, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1822, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51937, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5246, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=51937, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8476]={ + ["next_chapter"]=8477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6088, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1827, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52456, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5298, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=52456, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8477]={ + ["next_chapter"]=8478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6105, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1831, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52981, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5351, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=52981, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8478]={ + ["next_chapter"]=8479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6121, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1836, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53511, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5405, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=53511, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8479]={ + ["next_chapter"]=8480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6138, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54046, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5459, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=54046, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5217, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=847, + ["unit"]=0 + } + }, + [8480]={ + ["next_chapter"]=8481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=6154, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54586, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5513, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=54586, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8481]={ + ["next_chapter"]=8482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6171, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1851, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55132, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5568, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=55132, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8482]={ + ["next_chapter"]=8483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6188, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1856, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55684, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5624, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=55684, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8483]={ + ["next_chapter"]=8484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6204, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1861, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56240, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5680, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=56240, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8484]={ + ["next_chapter"]=8485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6221, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1866, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56803, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5737, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=56803, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8485]={ + ["next_chapter"]=8486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6238, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1871, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57371, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5794, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=57371, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8486]={ + ["next_chapter"]=8487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6255, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1876, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57945, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5852, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=57945, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8487]={ + ["next_chapter"]=8488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6272, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1882, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58524, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5911, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=58524, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8488]={ + ["next_chapter"]=8489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6289, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1887, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59109, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5970, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=59109, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8489]={ + ["next_chapter"]=8490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6306, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1892, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59700, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6030, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=59700, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=5763, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=848, + ["unit"]=0 + } + }, + [8490]={ + ["next_chapter"]=8491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6324, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1897, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60297, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6090, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=60297, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8491]={ + ["next_chapter"]=8492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6341, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1902, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60900, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6151, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=60900, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8492]={ + ["next_chapter"]=8493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6358, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1907, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61509, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6212, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=61509, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8493]={ + ["next_chapter"]=8494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6376, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1913, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62124, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6275, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=62124, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8494]={ + ["next_chapter"]=8495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6393, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62746, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6337, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=62746, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8495]={ + ["next_chapter"]=8496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6411, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1923, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63373, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6401, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=63373, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8496]={ + ["next_chapter"]=8497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6429, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1929, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64007, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6465, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=64007, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8497]={ + ["next_chapter"]=8498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6446, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1934, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64647, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6529, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=64647, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8498]={ + ["next_chapter"]=8499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6464, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1939, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65293, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6595, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=65293, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8499]={ + ["next_chapter"]=8500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6482, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=1945, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65946, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6661, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=65946, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=6366, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=849, + ["unit"]=0 + } + }, + [8500]={ + ["next_chapter"]=8501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66606, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6727, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=66606, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8501]={ + ["next_chapter"]=8502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67272, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6794, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=67272, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8502]={ + ["next_chapter"]=8503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67944, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6862, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=67944, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8503]={ + ["next_chapter"]=8504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=68624, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6931, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=68624, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8504]={ + ["next_chapter"]=8505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69310, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7000, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=69310, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8505]={ + ["next_chapter"]=8506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70003, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7070, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=70003, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8506]={ + ["next_chapter"]=8507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70703, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7141, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=70703, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8507]={ + ["next_chapter"]=8508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=71410, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7212, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=71410, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8508]={ + ["next_chapter"]=8509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72124, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7285, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=72124, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8509]={ + ["next_chapter"]=8510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72846, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7357, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=72846, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7032, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=850, + ["unit"]=0 + } + }, + [8510]={ + ["next_chapter"]=8511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=73574, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7431, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=73574, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8511]={ + ["next_chapter"]=8512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=74310, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7505, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=74310, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8512]={ + ["next_chapter"]=8513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=75053, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7580, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=75053, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8513]={ + ["next_chapter"]=8514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=75804, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7656, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=75804, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8514]={ + ["next_chapter"]=8515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=76562, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7733, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=76562, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8515]={ + ["next_chapter"]=8516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=77327, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7810, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=77327, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8516]={ + ["next_chapter"]=8517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78100, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7888, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=78100, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8517]={ + ["next_chapter"]=8518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78881, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7967, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=78881, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8518]={ + ["next_chapter"]=8519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=79670, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8047, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=79670, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8519]={ + ["next_chapter"]=8520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=80467, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8127, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=80467, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=7768, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=851, + ["unit"]=0 + } + }, + [8520]={ + ["next_chapter"]=8521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=81272, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8208, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=81272, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8521]={ + ["next_chapter"]=8522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=82084, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8291, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=82084, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8522]={ + ["next_chapter"]=8523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=82905, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8373, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=82905, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8523]={ + ["next_chapter"]=8524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=83734, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8457, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=83734, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8524]={ + ["next_chapter"]=8525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=84572, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8542, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=84572, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8525]={ + ["next_chapter"]=8526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=85417, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8627, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=85417, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8526]={ + ["next_chapter"]=8527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=86271, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8713, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=86271, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8527]={ + ["next_chapter"]=8528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=87134, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8801, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=87134, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8528]={ + ["next_chapter"]=8529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=88006, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8889, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=88006, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8529]={ + ["next_chapter"]=8530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=88886, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8977, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=88886, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=8581, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=852, + ["unit"]=0 + } + }, + [8530]={ + ["next_chapter"]=8531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=89774, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9067, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=89774, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8531]={ + ["next_chapter"]=8532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=90672, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9158, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=90672, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8532]={ + ["next_chapter"]=8533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=91579, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9249, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=91579, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8533]={ + ["next_chapter"]=8534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=92495, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9342, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=92495, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8534]={ + ["next_chapter"]=8535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=93420, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9435, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=93420, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8535]={ + ["next_chapter"]=8536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=94354, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9530, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=94354, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8536]={ + ["next_chapter"]=8537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=95297, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9625, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=95297, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8537]={ + ["next_chapter"]=8538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=96250, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9721, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=96250, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8538]={ + ["next_chapter"]=8539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=97213, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9818, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=97213, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8539]={ + ["next_chapter"]=8540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=98185, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9917, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=98185, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=9479, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=853, + ["unit"]=0 + } + }, + [8540]={ + ["next_chapter"]=8541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=6503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=99167, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10016, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=99167, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8541]={ + ["next_chapter"]=8542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=100159, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10116, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=100159, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8542]={ + ["next_chapter"]=8543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=101160, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10217, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=101160, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8543]={ + ["next_chapter"]=8544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=102172, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10319, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=102172, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8544]={ + ["next_chapter"]=8545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=103193, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10423, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=103193, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8545]={ + ["next_chapter"]=8546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=104225, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10527, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=104225, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8546]={ + ["next_chapter"]=8547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=105268, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10632, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=105268, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8547]={ + ["next_chapter"]=8548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=106320, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10738, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=106320, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8548]={ + ["next_chapter"]=8549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=107383, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10846, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=107383, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8549]={ + ["next_chapter"]=8550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=108457, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10954, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=108457, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=10470, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=854, + ["unit"]=0 + } + }, + [8550]={ + ["next_chapter"]=8551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=6506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=109542, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11064, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=109542, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8551]={ + ["next_chapter"]=8552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=110637, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11174, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=110637, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8552]={ + ["next_chapter"]=8553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=111744, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11286, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=111744, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8553]={ + ["next_chapter"]=8554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6507, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=112861, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11399, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=112861, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8554]={ + ["next_chapter"]=8555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6507, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=113990, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11513, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=113990, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8555]={ + ["next_chapter"]=8556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6507, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=115130, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11628, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=115130, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8556]={ + ["next_chapter"]=8557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6508, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=116281, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11744, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=116281, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8557]={ + ["next_chapter"]=8558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6508, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=117444, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11862, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=117444, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8558]={ + ["next_chapter"]=8559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6509, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=118618, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11980, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=118618, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8559]={ + ["next_chapter"]=8560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6509, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=119804, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12100, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=119804, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=11566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=855, + ["unit"]=0 + } + }, + [8560]={ + ["next_chapter"]=8561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=6510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=121002, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12221, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=121002, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8561]={ + ["next_chapter"]=8562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=122212, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12343, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=122212, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8562]={ + ["next_chapter"]=8563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=123435, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12467, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=123435, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8563]={ + ["next_chapter"]=8564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6511, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=124669, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12592, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=124669, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8564]={ + ["next_chapter"]=8565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6512, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=125916, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12717, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=125916, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8565]={ + ["next_chapter"]=8566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6512, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=127175, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12845, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=127175, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8566]={ + ["next_chapter"]=8567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6513, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=128446, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12973, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=128446, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8567]={ + ["next_chapter"]=8568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6513, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=129731, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13103, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=129731, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8568]={ + ["next_chapter"]=8569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6514, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=131028, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13234, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=131028, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8569]={ + ["next_chapter"]=8570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6514, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=132339, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13366, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=132339, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=12776, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=856, + ["unit"]=0 + } + }, + [8570]={ + ["next_chapter"]=8571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=6515, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2020, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=133662, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13500, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=133662, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8571]={ + ["next_chapter"]=8572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6516, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2020, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=134999, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13635, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=134999, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8572]={ + ["next_chapter"]=8573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6516, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2020, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=136349, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13771, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=136349, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8573]={ + ["next_chapter"]=8574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6517, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2020, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=137712, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13909, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=137712, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8574]={ + ["next_chapter"]=8575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6518, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2021, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=139089, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14048, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=139089, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8575]={ + ["next_chapter"]=8576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2021, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=140480, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14188, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=140480, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8576]={ + ["next_chapter"]=8577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2021, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=141885, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14330, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=141885, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8577]={ + ["next_chapter"]=8578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6520, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2021, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=143304, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14474, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=143304, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8578]={ + ["next_chapter"]=8579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6521, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2021, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=144737, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14618, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=144737, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8579]={ + ["next_chapter"]=8580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6522, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=146184, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14765, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=146184, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=14112, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=857, + ["unit"]=0 + } + }, + [8580]={ + ["next_chapter"]=8581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=6523, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=147646, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14912, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=147646, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8581]={ + ["next_chapter"]=8582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6523, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=149122, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15061, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=149122, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8582]={ + ["next_chapter"]=8583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6524, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=150614, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15212, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=150614, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8583]={ + ["next_chapter"]=8584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6525, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=152120, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15364, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=152120, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8584]={ + ["next_chapter"]=8585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6526, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=153641, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15518, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=153641, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8585]={ + ["next_chapter"]=8586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6527, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=155177, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15673, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=155177, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8586]={ + ["next_chapter"]=8587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6528, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2024, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=156729, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15830, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=156729, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8587]={ + ["next_chapter"]=8588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2024, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=158296, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15988, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=158296, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8588]={ + ["next_chapter"]=8589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6530, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2024, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=159879, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16148, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=159879, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8589]={ + ["next_chapter"]=8590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6531, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2025, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=161478, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16309, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=161478, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=15589, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=858, + ["unit"]=0 + } + }, + [8590]={ + ["next_chapter"]=8591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=6532, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2025, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=163093, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16472, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=163093, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8591]={ + ["next_chapter"]=8592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6533, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2025, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=164724, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16637, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=164724, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8592]={ + ["next_chapter"]=8593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6534, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2026, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=166371, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16803, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=166371, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8593]={ + ["next_chapter"]=8594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6535, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2026, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=168035, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16972, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=168035, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8594]={ + ["next_chapter"]=8595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6537, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2026, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=169715, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17141, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=169715, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8595]={ + ["next_chapter"]=8596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6538, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2027, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=171412, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17313, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=171412, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8596]={ + ["next_chapter"]=8597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6539, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2027, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=173126, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17486, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=173126, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8597]={ + ["next_chapter"]=8598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6540, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2027, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=174858, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17661, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=174858, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8598]={ + ["next_chapter"]=8599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6541, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2028, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=176606, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17837, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=176606, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8599]={ + ["next_chapter"]=8600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6543, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2028, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=178372, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18016, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=178372, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=17220, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=859, + ["unit"]=0 + } + }, + [8600]={ + ["next_chapter"]=8601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=6544, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2029, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=180156, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18196, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=180156, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8601]={ + ["next_chapter"]=8602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6545, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2029, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=181958, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18378, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=181958, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8602]={ + ["next_chapter"]=8603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6547, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2029, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=183777, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18561, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=183777, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8603]={ + ["next_chapter"]=8604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6548, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2030, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=185615, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18747, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=185615, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8604]={ + ["next_chapter"]=8605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6549, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2030, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=187471, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18935, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=187471, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8605]={ + ["next_chapter"]=8606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6551, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2031, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=189346, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19124, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=189346, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8606]={ + ["next_chapter"]=8607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6552, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2031, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=191239, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19315, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=191239, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8607]={ + ["next_chapter"]=8608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6554, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2032, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=193152, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19508, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=193152, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8608]={ + ["next_chapter"]=8609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6555, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2032, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=195083, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19703, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=195083, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8609]={ + ["next_chapter"]=8610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6557, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2033, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=197034, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19900, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=197034, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=19021, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=860, + ["unit"]=0 + } + }, + [8610]={ + ["next_chapter"]=8611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=6559, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2033, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=199004, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20099, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=199004, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8611]={ + ["next_chapter"]=8612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6560, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2034, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=200994, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20300, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=200994, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8612]={ + ["next_chapter"]=8613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6562, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2034, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=203004, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20503, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=203004, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8613]={ + ["next_chapter"]=8614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6563, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2035, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=205034, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20708, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=205034, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8614]={ + ["next_chapter"]=8615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6565, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2035, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=207085, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20916, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=207085, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8615]={ + ["next_chapter"]=8616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6567, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2036, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=209156, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21125, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=209156, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8616]={ + ["next_chapter"]=8617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6569, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2036, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=211247, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21336, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=211247, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8617]={ + ["next_chapter"]=8618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6570, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2037, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=213360, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21549, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=213360, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8618]={ + ["next_chapter"]=8619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6572, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2037, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=215493, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21765, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=215493, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8619]={ + ["next_chapter"]=8620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6574, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2038, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=217648, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21982, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=217648, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=21011, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=861, + ["unit"]=0 + } + }, + [8620]={ + ["next_chapter"]=8621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=6576, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2039, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=219825, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22202, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=219825, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8621]={ + ["next_chapter"]=8622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6578, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2039, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=222023, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22424, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=222023, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8622]={ + ["next_chapter"]=8623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6580, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=224243, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22649, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=224243, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8623]={ + ["next_chapter"]=8624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6582, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=226486, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22875, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=226486, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8624]={ + ["next_chapter"]=8625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6584, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2041, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=228750, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23104, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=228750, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8625]={ + ["next_chapter"]=8626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6586, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2042, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=231038, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23335, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=231038, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8626]={ + ["next_chapter"]=8627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6588, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2042, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=233348, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23568, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=233348, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8627]={ + ["next_chapter"]=8628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6590, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2043, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=235682, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23804, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=235682, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8628]={ + ["next_chapter"]=8629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6592, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2044, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=238039, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24042, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=238039, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8629]={ + ["next_chapter"]=8630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6594, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2044, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=240419, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24282, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=240419, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=23210, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=862, + ["unit"]=0 + } + }, + [8630]={ + ["next_chapter"]=8631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=6597, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2045, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=242823, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24525, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=242823, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8631]={ + ["next_chapter"]=8632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6599, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2046, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=245251, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24770, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=245251, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8632]={ + ["next_chapter"]=8633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6601, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2046, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=247704, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25018, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=247704, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8633]={ + ["next_chapter"]=8634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6604, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2047, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=250181, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25268, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=250181, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8634]={ + ["next_chapter"]=8635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6606, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2048, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=252683, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25521, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=252683, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8635]={ + ["next_chapter"]=8636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6608, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2049, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=255210, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25776, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=255210, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8636]={ + ["next_chapter"]=8637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6611, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2049, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=257762, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26034, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=257762, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8637]={ + ["next_chapter"]=8638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6613, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=260339, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26294, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=260339, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8638]={ + ["next_chapter"]=8639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6616, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=262943, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26557, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=262943, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8639]={ + ["next_chapter"]=8640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6618, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=265572, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26823, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=265572, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=25638, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=863, + ["unit"]=0 + } + }, + [8640]={ + ["next_chapter"]=8641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=6621, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=268228, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27091, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=268228, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8641]={ + ["next_chapter"]=8642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6623, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=270910, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27362, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=270910, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8642]={ + ["next_chapter"]=8643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6626, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2054, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=273619, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27636, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=273619, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8643]={ + ["next_chapter"]=8644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=276355, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27912, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=276355, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8644]={ + ["next_chapter"]=8645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6631, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2056, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=279119, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28191, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=279119, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8645]={ + ["next_chapter"]=8646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6634, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=281910, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28473, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=281910, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8646]={ + ["next_chapter"]=8647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6637, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=284729, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28758, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=284729, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8647]={ + ["next_chapter"]=8648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6640, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=287577, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29045, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=287577, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8648]={ + ["next_chapter"]=8649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6643, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2059, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=290452, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29336, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=290452, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8649]={ + ["next_chapter"]=8650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6646, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2060, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=293357, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29629, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=293357, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=28320, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=864, + ["unit"]=0 + } + }, + [8650]={ + ["next_chapter"]=8651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=6649, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2061, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=296290, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29925, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=296290, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8651]={ + ["next_chapter"]=8652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6651, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=299253, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30225, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=299253, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8652]={ + ["next_chapter"]=8653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6655, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2063, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=302246, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30527, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=302246, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8653]={ + ["next_chapter"]=8654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6658, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=305268, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30832, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=305268, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8654]={ + ["next_chapter"]=8655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6661, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=308321, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31140, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=308321, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8655]={ + ["next_chapter"]=8656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6664, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=311404, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31452, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=311404, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8656]={ + ["next_chapter"]=8657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6667, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2067, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=314518, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31766, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=314518, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8657]={ + ["next_chapter"]=8658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6670, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2068, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=317663, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32084, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=317663, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8658]={ + ["next_chapter"]=8659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6674, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2069, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=320840, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32405, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=320840, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8659]={ + ["next_chapter"]=8660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6677, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2070, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=324048, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32729, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=324048, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=31283, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=865, + ["unit"]=0 + } + }, + [8660]={ + ["next_chapter"]=8661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6680, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2071, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=327289, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33056, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=327289, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8661]={ + ["next_chapter"]=8662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6684, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2072, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=330562, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33387, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=330562, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8662]={ + ["next_chapter"]=8663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6687, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2073, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=333867, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33721, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=333867, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8663]={ + ["next_chapter"]=8664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6691, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2074, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=337206, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34058, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=337206, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8664]={ + ["next_chapter"]=8665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6694, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2075, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=340578, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34398, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=340578, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8665]={ + ["next_chapter"]=8666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6698, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2076, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=343984, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34742, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=343984, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8666]={ + ["next_chapter"]=8667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6701, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=347424, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35090, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=347424, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8667]={ + ["next_chapter"]=8668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6705, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2079, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=350898, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35441, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=350898, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8668]={ + ["next_chapter"]=8669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6709, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2080, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=354407, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35795, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=354407, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8669]={ + ["next_chapter"]=8670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6712, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2081, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=357951, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36153, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=357951, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=34556, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=866, + ["unit"]=0 + } + }, + [8670]={ + ["next_chapter"]=8671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=6716, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2082, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=361531, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36515, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=361531, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8671]={ + ["next_chapter"]=8672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6720, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2083, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=365146, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36880, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=365146, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8672]={ + ["next_chapter"]=8673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6724, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2084, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=368797, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37249, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=368797, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8673]={ + ["next_chapter"]=8674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6728, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2086, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=372485, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37621, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=372485, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8674]={ + ["next_chapter"]=8675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6732, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2087, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=376210, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37997, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=376210, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8675]={ + ["next_chapter"]=8676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6736, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2088, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=379972, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38377, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=379972, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8676]={ + ["next_chapter"]=8677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6740, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2089, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=383772, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38761, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=383772, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8677]={ + ["next_chapter"]=8678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6744, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2091, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=387610, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39149, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=387610, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8678]={ + ["next_chapter"]=8679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6748, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2092, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=391486, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39540, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=391486, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8679]={ + ["next_chapter"]=8680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6752, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2093, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=395401, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39935, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=395401, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=38171, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=867, + ["unit"]=0 + } + }, + [8680]={ + ["next_chapter"]=8681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6757, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2095, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=399355, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40335, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=399355, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8681]={ + ["next_chapter"]=8682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6761, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2096, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=403348, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40738, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=403348, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8682]={ + ["next_chapter"]=8683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6765, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2097, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=407382, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41146, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=407382, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8683]={ + ["next_chapter"]=8684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6770, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=411456, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41557, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=411456, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8684]={ + ["next_chapter"]=8685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6774, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2100, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=415570, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41973, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=415570, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8685]={ + ["next_chapter"]=8686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6779, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2101, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=419726, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42392, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=419726, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8686]={ + ["next_chapter"]=8687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6783, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2103, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=423923, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42816, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=423923, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8687]={ + ["next_chapter"]=8688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6788, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2104, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=428162, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43244, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=428162, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8688]={ + ["next_chapter"]=8689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6792, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2106, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=432444, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43677, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=432444, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8689]={ + ["next_chapter"]=8690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6797, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2107, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=436768, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44114, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=436768, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=42165, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=868, + ["unit"]=0 + } + }, + [8690]={ + ["next_chapter"]=8691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=6802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2109, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=441136, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44555, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=441136, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8691]={ + ["next_chapter"]=8692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2110, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=445547, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45000, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=445547, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8692]={ + ["next_chapter"]=8693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6811, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2112, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=450003, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45450, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=450003, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8693]={ + ["next_chapter"]=8694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6816, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2113, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=454503, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45905, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=454503, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8694]={ + ["next_chapter"]=8695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6821, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2115, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=459048, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46364, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=459048, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8695]={ + ["next_chapter"]=8696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6826, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2116, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=463638, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46827, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=463638, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8696]={ + ["next_chapter"]=8697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6831, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2118, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=468275, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47296, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=468275, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8697]={ + ["next_chapter"]=8698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6836, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2119, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=472958, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47769, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=472958, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8698]={ + ["next_chapter"]=8699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6842, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2121, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=477687, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48246, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=477687, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8699]={ + ["next_chapter"]=8700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6847, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2122, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=482464, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48729, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=482464, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=46576, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=869, + ["unit"]=0 + } + }, + [8700]={ + ["next_chapter"]=8701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=6852, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2124, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=487289, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49216, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=487289, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8701]={ + ["next_chapter"]=8702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6857, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2126, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=492162, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49708, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=492162, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8702]={ + ["next_chapter"]=8703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6863, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2127, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=497083, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50205, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=497083, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8703]={ + ["next_chapter"]=8704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6868, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2129, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=502054, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50707, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=502054, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8704]={ + ["next_chapter"]=8705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6874, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2131, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=507075, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51215, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=507075, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8705]={ + ["next_chapter"]=8706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6879, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2133, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=512145, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51727, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=512145, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8706]={ + ["next_chapter"]=8707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6885, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2134, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=517267, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52244, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=517267, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8707]={ + ["next_chapter"]=8708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6890, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2136, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=522439, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52766, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=522439, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8708]={ + ["next_chapter"]=8709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6896, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2138, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=527664, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53294, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=527664, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8709]={ + ["next_chapter"]=8710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6902, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2140, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=532940, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53827, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=532940, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=51449, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=870, + ["unit"]=0 + } + }, + [8710]={ + ["next_chapter"]=8711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=6907, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=538270, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54365, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=538270, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8711]={ + ["next_chapter"]=8712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6913, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2143, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=543653, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54909, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=543653, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8712]={ + ["next_chapter"]=8713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6919, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2145, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=549089, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55458, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=549089, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8713]={ + ["next_chapter"]=8714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6925, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2147, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=554580, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56013, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=554580, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8714]={ + ["next_chapter"]=8715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6931, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2149, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=560126, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56573, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=560126, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8715]={ + ["next_chapter"]=8716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6937, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2151, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=565727, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57138, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=565727, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8716]={ + ["next_chapter"]=8717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6943, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2152, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=571384, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57710, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=571384, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8717]={ + ["next_chapter"]=8718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6950, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2154, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=577098, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58287, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=577098, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8718]={ + ["next_chapter"]=8719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6956, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2156, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=582869, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58870, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=582869, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8719]={ + ["next_chapter"]=8720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6962, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2158, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=588698, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59458, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=588698, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=56832, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=871, + ["unit"]=0 + } + }, + [8720]={ + ["next_chapter"]=8721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=6969, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2160, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=594585, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60053, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=594585, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8721]={ + ["next_chapter"]=8722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6975, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2162, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=600531, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60654, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=600531, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8722]={ + ["next_chapter"]=8723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6981, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2164, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=606536, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61260, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=606536, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8723]={ + ["next_chapter"]=8724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6988, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2166, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=612601, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61873, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=612601, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8724]={ + ["next_chapter"]=8725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6995, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2168, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=618727, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62491, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=618727, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8725]={ + ["next_chapter"]=8726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2170, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=624915, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63116, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=624915, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8726]={ + ["next_chapter"]=8727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7008, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2172, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=631164, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63748, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=631164, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8727]={ + ["next_chapter"]=8728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7015, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2175, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=637475, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64385, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=637475, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8728]={ + ["next_chapter"]=8729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7022, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2177, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=643850, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65029, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=643850, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8729]={ + ["next_chapter"]=8730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7028, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2179, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=650289, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65679, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=650289, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=62777, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=872, + ["unit"]=0 + } + }, + [8730]={ + ["next_chapter"]=8731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=7035, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2181, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=656791, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66336, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=656791, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8731]={ + ["next_chapter"]=8732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7042, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2183, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=663359, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66999, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=663359, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8732]={ + ["next_chapter"]=8733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7049, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2185, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=669993, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67669, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=669993, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8733]={ + ["next_chapter"]=8734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7057, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=676693, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68346, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=676693, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8734]={ + ["next_chapter"]=8735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7064, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=683460, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69029, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=683460, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8735]={ + ["next_chapter"]=8736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7071, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2192, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=690294, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69720, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=690294, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8736]={ + ["next_chapter"]=8737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7078, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2194, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=697197, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70417, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=697197, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8737]={ + ["next_chapter"]=8738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7086, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2197, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=704169, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71121, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=704169, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8738]={ + ["next_chapter"]=8739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7093, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2199, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=711211, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71832, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=711211, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8739]={ + ["next_chapter"]=8740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7101, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2201, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=718323, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72551, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=718323, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=69345, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=873, + ["unit"]=0 + } + }, + [8740]={ + ["next_chapter"]=8741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=7108, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2204, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=725506, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73276, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=725506, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8741]={ + ["next_chapter"]=8742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7116, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2206, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=732761, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74009, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=732761, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8742]={ + ["next_chapter"]=8743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7124, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2208, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=740089, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74749, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=740089, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8743]={ + ["next_chapter"]=8744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7131, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2211, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=747490, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75496, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=747490, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8744]={ + ["next_chapter"]=8745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7139, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=754965, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76251, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=754965, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8745]={ + ["next_chapter"]=8746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7147, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2216, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=762515, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77014, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=762515, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8746]={ + ["next_chapter"]=8747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2218, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=770140, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77784, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=770140, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8747]={ + ["next_chapter"]=8748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7163, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=777841, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78562, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=777841, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8748]={ + ["next_chapter"]=8749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7171, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2223, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=785619, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79348, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=785619, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8749]={ + ["next_chapter"]=8750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7179, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2226, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=793476, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80141, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=793476, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=76600, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=874, + ["unit"]=0 + } + }, + [8750]={ + ["next_chapter"]=8751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=7188, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2228, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=801410, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80942, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=801410, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8751]={ + ["next_chapter"]=8752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7196, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2231, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=809425, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81752, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=809425, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8752]={ + ["next_chapter"]=8753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7204, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2233, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=817519, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82569, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=817519, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8753]={ + ["next_chapter"]=8754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7213, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2236, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=825694, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83395, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=825694, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8754]={ + ["next_chapter"]=8755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7221, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2239, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=833951, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84229, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=833951, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8755]={ + ["next_chapter"]=8756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7230, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2241, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=842290, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85071, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=842290, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8756]={ + ["next_chapter"]=8757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7238, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2244, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=850713, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85922, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=850713, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8757]={ + ["next_chapter"]=8758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7247, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2247, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=859220, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86781, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=859220, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8758]={ + ["next_chapter"]=8759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7256, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2249, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=867813, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87649, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=867813, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8759]={ + ["next_chapter"]=8760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7264, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2252, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=876491, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88526, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=876491, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=84615, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=875, + ["unit"]=0 + } + }, + [8760]={ + ["next_chapter"]=8761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=7273, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2255, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=885256, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89411, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=885256, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8761]={ + ["next_chapter"]=8762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7282, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2258, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=894108, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90305, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=894108, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8762]={ + ["next_chapter"]=8763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7291, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2260, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=903049, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91208, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=903049, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8763]={ + ["next_chapter"]=8764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7300, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2263, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=912080, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92120, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=912080, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8764]={ + ["next_chapter"]=8765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7310, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2266, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=921201, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93041, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=921201, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8765]={ + ["next_chapter"]=8766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7319, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2269, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=930413, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93972, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=930413, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8766]={ + ["next_chapter"]=8767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7328, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2272, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=939717, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94911, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=939717, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8767]={ + ["next_chapter"]=8768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7338, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=949114, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95861, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=949114, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8768]={ + ["next_chapter"]=8769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7347, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2278, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=958605, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96819, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=958605, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8769]={ + ["next_chapter"]=8770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7356, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2281, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=968191, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97787, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=968191, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=93467, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=876, + ["unit"]=0 + } + }, + [8770]={ + ["next_chapter"]=8771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=7366, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2283, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=977873, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98765, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=977873, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8771]={ + ["next_chapter"]=8772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7376, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2286, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=987652, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99753, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=987652, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8772]={ + ["next_chapter"]=8773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7385, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2289, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=997528, + ["unit"]=11 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100750, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=997528, + ["unit"]=11 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8773]={ + ["next_chapter"]=8774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7395, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2293, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1008, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101758, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1008, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8774]={ + ["next_chapter"]=8775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7405, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2296, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1018, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102775, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1018, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8775]={ + ["next_chapter"]=8776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7415, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2299, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1028, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103803, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1028, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8776]={ + ["next_chapter"]=8777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7425, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2302, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1038, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104841, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1038, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8777]={ + ["next_chapter"]=8778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2305, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1048, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105890, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1048, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8778]={ + ["next_chapter"]=8779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7445, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2308, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1059, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106949, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1059, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8779]={ + ["next_chapter"]=8780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7456, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2311, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1069, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108018, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1069, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=103246, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=877, + ["unit"]=0 + } + }, + [8780]={ + ["next_chapter"]=8781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=7466, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2314, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1080, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109098, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1080, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8781]={ + ["next_chapter"]=8782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7476, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2318, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1091, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110189, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1091, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8782]={ + ["next_chapter"]=8783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7487, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2321, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1102, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111291, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1102, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8783]={ + ["next_chapter"]=8784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7497, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2324, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1113, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112404, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1113, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8784]={ + ["next_chapter"]=8785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7508, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2327, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1124, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113528, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1124, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8785]={ + ["next_chapter"]=8786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2331, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1135, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114663, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1135, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8786]={ + ["next_chapter"]=8787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2334, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1147, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115810, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1147, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8787]={ + ["next_chapter"]=8788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7540, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2337, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1158, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116968, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1158, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8788]={ + ["next_chapter"]=8789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7551, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2341, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1170, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118138, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1170, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8789]={ + ["next_chapter"]=8790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7562, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2344, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1181, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119319, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1181, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=114048, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=878, + ["unit"]=0 + } + }, + [8790]={ + ["next_chapter"]=8791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=7573, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2348, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1193, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120512, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1193, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8791]={ + ["next_chapter"]=8792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7584, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1205, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121717, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1205, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8792]={ + ["next_chapter"]=8793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7595, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2355, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1217, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122935, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1217, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8793]={ + ["next_chapter"]=8794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7607, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2358, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1229, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124164, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1229, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8794]={ + ["next_chapter"]=8795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7618, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2362, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1242, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125406, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1242, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8795]={ + ["next_chapter"]=8796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7630, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2365, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1254, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126660, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1254, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8796]={ + ["next_chapter"]=8797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7641, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2369, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1267, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127926, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1267, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8797]={ + ["next_chapter"]=8798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7653, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2372, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1279, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129205, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1279, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8798]={ + ["next_chapter"]=8799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7664, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2376, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1292, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130498, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1292, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8799]={ + ["next_chapter"]=8800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7676, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2380, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1305, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131803, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1305, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=125980, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=879, + ["unit"]=0 + } + }, + [8800]={ + ["next_chapter"]=8801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=7688, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2383, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1318, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133121, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1318, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8801]={ + ["next_chapter"]=8802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7700, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2387, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1331, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134452, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1331, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8802]={ + ["next_chapter"]=8803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7712, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2391, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1345, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135796, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1345, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8803]={ + ["next_chapter"]=8804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7724, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2394, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1358, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137154, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1358, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8804]={ + ["next_chapter"]=8805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7736, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2398, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1372, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138526, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1372, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8805]={ + ["next_chapter"]=8806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7748, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2402, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1385, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139911, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1385, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8806]={ + ["next_chapter"]=8807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7761, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2406, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1399, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141310, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1399, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8807]={ + ["next_chapter"]=8808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7773, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2410, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1413, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142723, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1413, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8808]={ + ["next_chapter"]=8809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7786, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2414, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1427, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144150, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1427, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8809]={ + ["next_chapter"]=8810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7798, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2417, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1442, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145592, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1442, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=139160, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=880, + ["unit"]=0 + } + }, + [8810]={ + ["next_chapter"]=8811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=7811, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2421, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1456, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147048, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1456, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8811]={ + ["next_chapter"]=8812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7824, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2425, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1470, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148518, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1470, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8812]={ + ["next_chapter"]=8813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7836, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2429, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1485, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150004, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1485, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8813]={ + ["next_chapter"]=8814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7849, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2433, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1500, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151504, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1500, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8814]={ + ["next_chapter"]=8815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7862, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2437, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1515, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153019, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1515, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8815]={ + ["next_chapter"]=8816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7875, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2441, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1530, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154549, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1530, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8816]={ + ["next_chapter"]=8817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7888, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2445, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1545, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156094, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1545, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8817]={ + ["next_chapter"]=8818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7902, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2450, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1561, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157655, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1561, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8818]={ + ["next_chapter"]=8819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7915, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2454, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1577, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159232, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1577, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8819]={ + ["next_chapter"]=8820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7928, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2458, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1592, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160824, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1592, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=153719, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=881, + ["unit"]=0 + } + }, + [8820]={ + ["next_chapter"]=8821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=7942, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2462, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1608, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162432, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1608, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8821]={ + ["next_chapter"]=8822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7955, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2466, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1624, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164057, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1624, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8822]={ + ["next_chapter"]=8823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7969, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2470, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1641, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165697, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1641, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8823]={ + ["next_chapter"]=8824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7983, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2475, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1657, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167354, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1657, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8824]={ + ["next_chapter"]=8825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7997, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2479, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1674, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169028, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1674, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8825]={ + ["next_chapter"]=8826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2483, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1690, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170718, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1690, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8826]={ + ["next_chapter"]=8827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2488, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1707, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172425, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1707, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8827]={ + ["next_chapter"]=8828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8038, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2492, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1724, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174149, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1724, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8828]={ + ["next_chapter"]=8829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8053, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2496, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1741, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175891, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1741, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8829]={ + ["next_chapter"]=8830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8067, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2501, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1759, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177650, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1759, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=169801, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=882, + ["unit"]=0 + } + }, + [8830]={ + ["next_chapter"]=8831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=8081, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1776, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179426, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1776, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8831]={ + ["next_chapter"]=8832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8096, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2510, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1794, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181221, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1794, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8832]={ + ["next_chapter"]=8833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8110, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2514, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1812, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183033, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1812, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8833]={ + ["next_chapter"]=8834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8125, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2519, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1830, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184863, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1830, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8834]={ + ["next_chapter"]=8835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8139, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2523, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1849, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186712, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1849, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8835]={ + ["next_chapter"]=8836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8154, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2528, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1867, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188579, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1867, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8836]={ + ["next_chapter"]=8837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8169, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2532, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1886, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190465, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1886, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8837]={ + ["next_chapter"]=8838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8184, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2537, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1905, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192369, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1905, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8838]={ + ["next_chapter"]=8839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8199, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2542, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1924, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194293, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1924, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8839]={ + ["next_chapter"]=8840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8214, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2546, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1943, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196236, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1943, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=187566, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=883, + ["unit"]=0 + } + }, + [8840]={ + ["next_chapter"]=8841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=8229, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2551, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1962, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198198, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1962, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8841]={ + ["next_chapter"]=8842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8245, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2556, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1982, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200180, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=1982, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8842]={ + ["next_chapter"]=8843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8260, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2561, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2002, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202182, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2002, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8843]={ + ["next_chapter"]=8844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8276, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2565, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2022, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204204, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2022, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8844]={ + ["next_chapter"]=8845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8291, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2570, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2042, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206246, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2042, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8845]={ + ["next_chapter"]=8846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8307, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2575, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2062, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208308, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2062, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8846]={ + ["next_chapter"]=8847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8323, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2580, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2083, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210392, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2083, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8847]={ + ["next_chapter"]=8848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8338, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2585, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2104, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212495, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2104, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8848]={ + ["next_chapter"]=8849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8354, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2590, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2125, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214620, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2125, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8849]={ + ["next_chapter"]=8850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8370, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2595, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2146, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216767, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2146, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=207190, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=884, + ["unit"]=0 + } + }, + [8850]={ + ["next_chapter"]=8851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=8387, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2168, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218934, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2168, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8851]={ + ["next_chapter"]=8852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8403, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2605, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2189, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221124, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2189, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8852]={ + ["next_chapter"]=8853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8419, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2211, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223335, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2211, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8853]={ + ["next_chapter"]=8854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2615, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2233, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225568, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2233, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8854]={ + ["next_chapter"]=8855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8452, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2620, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2256, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227824, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2256, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8855]={ + ["next_chapter"]=8856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8469, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2625, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2278, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230102, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2278, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8856]={ + ["next_chapter"]=8857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8485, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2301, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232403, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2301, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8857]={ + ["next_chapter"]=8858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2636, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2324, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234727, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2324, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8858]={ + ["next_chapter"]=8859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2641, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2347, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237074, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2347, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8859]={ + ["next_chapter"]=8860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8536, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2646, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2371, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239445, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2371, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=228867, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=885, + ["unit"]=0 + } + }, + [8860]={ + ["next_chapter"]=8861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=8553, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2651, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2394, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241840, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2394, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8861]={ + ["next_chapter"]=8862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8570, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2657, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2418, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244258, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2418, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8862]={ + ["next_chapter"]=8863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8587, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2662, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2443, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246701, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2443, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8863]={ + ["next_chapter"]=8864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8605, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2667, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2467, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249168, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2467, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8864]={ + ["next_chapter"]=8865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8622, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2673, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2492, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251659, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2492, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8865]={ + ["next_chapter"]=8866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8640, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2678, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2517, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254176, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2517, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8866]={ + ["next_chapter"]=8867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8657, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2684, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2542, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256718, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2542, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8867]={ + ["next_chapter"]=8868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8675, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2689, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2567, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259285, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2567, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8868]={ + ["next_chapter"]=8869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8693, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2695, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2593, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261878, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2593, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8869]={ + ["next_chapter"]=8870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8711, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2700, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2619, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264496, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2619, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=252811, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=886, + ["unit"]=0 + } + }, + [8870]={ + ["next_chapter"]=8871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=8729, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2706, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2645, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267141, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2645, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8871]={ + ["next_chapter"]=8872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8747, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2712, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2671, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269813, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2671, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8872]={ + ["next_chapter"]=8873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8765, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2717, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2698, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272511, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2698, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8873]={ + ["next_chapter"]=8874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8783, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2723, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2725, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275236, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2725, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8874]={ + ["next_chapter"]=8875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2729, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2752, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277988, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2752, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8875]={ + ["next_chapter"]=8876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8820, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2734, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2780, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280768, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2780, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8876]={ + ["next_chapter"]=8877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8839, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2740, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2808, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283576, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2808, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8877]={ + ["next_chapter"]=8878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8858, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2746, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2836, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286412, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2836, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8878]={ + ["next_chapter"]=8879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8876, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2752, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2864, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289276, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2864, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8879]={ + ["next_chapter"]=8880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8895, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2758, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2893, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292169, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2893, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=279261, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=887, + ["unit"]=0 + } + }, + [8880]={ + ["next_chapter"]=8881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=8914, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2763, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2922, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295090, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2922, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8881]={ + ["next_chapter"]=8882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8933, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2769, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2951, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298041, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2951, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8882]={ + ["next_chapter"]=8883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8953, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2775, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2980, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301022, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=2980, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8883]={ + ["next_chapter"]=8884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8972, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2781, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3010, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304032, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3010, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8884]={ + ["next_chapter"]=8885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8991, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2787, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3040, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307072, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3040, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8885]={ + ["next_chapter"]=8886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9011, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2793, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3071, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310143, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3071, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8886]={ + ["next_chapter"]=8887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9031, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2799, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3101, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313244, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3101, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8887]={ + ["next_chapter"]=8888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9050, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2806, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3132, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316377, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3132, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8888]={ + ["next_chapter"]=8889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9070, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2812, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3164, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319541, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3164, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8889]={ + ["next_chapter"]=8890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9090, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2818, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3195, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322736, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3195, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=308478, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=888, + ["unit"]=0 + } + }, + [8890]={ + ["next_chapter"]=8891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=9110, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2824, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3227, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325963, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3227, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8891]={ + ["next_chapter"]=8892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9130, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2830, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3260, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329223, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3260, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8892]={ + ["next_chapter"]=8893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9150, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2837, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3292, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332515, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3292, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8893]={ + ["next_chapter"]=8894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9171, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2843, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3325, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335840, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3325, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8894]={ + ["next_chapter"]=8895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2849, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3358, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339199, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3358, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8895]={ + ["next_chapter"]=8896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9212, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2856, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3392, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342591, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3392, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8896]={ + ["next_chapter"]=8897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9232, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2862, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3426, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346017, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3426, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8897]={ + ["next_chapter"]=8898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9253, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2868, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3460, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349477, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3460, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8898]={ + ["next_chapter"]=8899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9274, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2875, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3495, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=352972, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3495, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8899]={ + ["next_chapter"]=8900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9295, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2881, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3530, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356501, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3530, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=340751, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=889, + ["unit"]=0 + } + }, + [8900]={ + ["next_chapter"]=8901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=9316, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2888, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3565, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360066, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3565, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8901]={ + ["next_chapter"]=8902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9337, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2895, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3601, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=363667, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3601, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8902]={ + ["next_chapter"]=8903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9358, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2901, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3637, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=367304, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3637, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8903]={ + ["next_chapter"]=8904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9380, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3673, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370977, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3673, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8904]={ + ["next_chapter"]=8905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9401, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2914, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3710, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374686, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3710, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8905]={ + ["next_chapter"]=8906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9423, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2921, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3747, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378433, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3747, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8906]={ + ["next_chapter"]=8907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9445, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2928, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3784, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382218, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3784, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8907]={ + ["next_chapter"]=8908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9466, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2935, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3822, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386040, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3822, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8908]={ + ["next_chapter"]=8909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9488, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2941, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3860, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=389900, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3860, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8909]={ + ["next_chapter"]=8910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2948, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3899, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=393799, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3899, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=376401, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=890, + ["unit"]=0 + } + }, + [8910]={ + ["next_chapter"]=8911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=9533, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2955, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3938, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=397737, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3938, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8911]={ + ["next_chapter"]=8912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9555, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2962, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3977, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=401715, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=3977, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8912]={ + ["next_chapter"]=8913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9577, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2969, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4017, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=405732, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4017, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8913]={ + ["next_chapter"]=8914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9600, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2976, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4057, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=409789, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4057, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8914]={ + ["next_chapter"]=8915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9622, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2983, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4098, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=413887, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4098, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8915]={ + ["next_chapter"]=8916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9645, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2990, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4139, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418026, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4139, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8916]={ + ["next_chapter"]=8917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9668, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=2997, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4180, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422206, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4180, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8917]={ + ["next_chapter"]=8918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9691, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3004, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4222, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426428, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4222, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8918]={ + ["next_chapter"]=8919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9714, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3011, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4264, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=430692, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4264, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8919]={ + ["next_chapter"]=8920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9737, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4307, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=434999, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4307, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=415781, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=891, + ["unit"]=0 + } + }, + [8920]={ + ["next_chapter"]=8921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=9760, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3026, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4350, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=439349, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4350, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8921]={ + ["next_chapter"]=8922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9783, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3033, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4393, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=443743, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4393, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8922]={ + ["next_chapter"]=8923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4437, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=448180, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4437, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8923]={ + ["next_chapter"]=8924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9830, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3047, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4482, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=452662, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4482, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8924]={ + ["next_chapter"]=8925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9854, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4527, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=457189, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4527, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8925]={ + ["next_chapter"]=8926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9878, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4572, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461760, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4572, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8926]={ + ["next_chapter"]=8927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9902, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3069, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4618, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466378, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4618, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8927]={ + ["next_chapter"]=8928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9926, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4664, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471042, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4664, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8928]={ + ["next_chapter"]=8929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9950, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3084, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4710, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=475752, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4710, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8929]={ + ["next_chapter"]=8930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9974, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3092, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4758, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=480510, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4758, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=459281, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [8930]={ + ["next_chapter"]=8931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=9998, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4805, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=485315, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4805, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8931]={ + ["next_chapter"]=8932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10023, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3107, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4853, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=490168, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4853, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8932]={ + ["next_chapter"]=8933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10047, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3115, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4902, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=495070, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4902, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8933]={ + ["next_chapter"]=8934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10072, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3122, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4951, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=500020, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=4951, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8934]={ + ["next_chapter"]=8935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10097, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3130, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=505021, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8935]={ + ["next_chapter"]=8936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10122, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3138, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5050, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=510071, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5050, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8936]={ + ["next_chapter"]=8937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10147, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3146, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5101, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=515172, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5101, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8937]={ + ["next_chapter"]=8938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10172, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3153, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5152, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=520323, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5152, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8938]={ + ["next_chapter"]=8939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10197, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3161, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5203, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=525527, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5203, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8939]={ + ["next_chapter"]=8940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10223, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3169, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5255, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=530782, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5255, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=507332, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=893, + ["unit"]=0 + } + }, + [8940]={ + ["next_chapter"]=8941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=10248, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3177, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5308, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=536090, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5308, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8941]={ + ["next_chapter"]=8942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10274, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3185, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5361, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=541450, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5361, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8942]={ + ["next_chapter"]=8943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10299, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3193, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5415, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546865, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5415, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8943]={ + ["next_chapter"]=8944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10325, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3201, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5469, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552334, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5469, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8944]={ + ["next_chapter"]=8945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10351, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3209, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5523, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=557857, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5523, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8945]={ + ["next_chapter"]=8946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10377, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3217, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5579, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=563436, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5579, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8946]={ + ["next_chapter"]=8947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10404, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3225, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5634, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=569070, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5634, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8947]={ + ["next_chapter"]=8948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10430, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3233, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5691, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=574761, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5691, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8948]={ + ["next_chapter"]=8949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10456, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3241, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5748, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=580508, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5748, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8949]={ + ["next_chapter"]=8950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10483, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3250, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5805, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=586313, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5805, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=560410, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=894, + ["unit"]=0 + } + }, + [8950]={ + ["next_chapter"]=8951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=10510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3258, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5863, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=592176, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5863, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8951]={ + ["next_chapter"]=8952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10536, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3266, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5922, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=598098, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5922, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8952]={ + ["next_chapter"]=8953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10563, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5981, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=604079, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=5981, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8953]={ + ["next_chapter"]=8954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10590, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3283, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6041, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=610120, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6041, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8954]={ + ["next_chapter"]=8955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10617, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3291, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6101, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=616221, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6101, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8955]={ + ["next_chapter"]=8956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10645, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3300, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6162, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=622383, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6162, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8956]={ + ["next_chapter"]=8957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10672, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3308, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6224, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=628607, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6224, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8957]={ + ["next_chapter"]=8958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10700, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3317, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6286, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=634893, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6286, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8958]={ + ["next_chapter"]=8959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10727, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3325, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6349, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=641242, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6349, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8959]={ + ["next_chapter"]=8960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10755, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3334, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6412, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=647655, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6412, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=619042, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=895, + ["unit"]=0 + } + }, + [8960]={ + ["next_chapter"]=8961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=10783, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3343, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6477, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654131, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6477, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8961]={ + ["next_chapter"]=8962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10811, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6541, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=660672, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6541, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8962]={ + ["next_chapter"]=8963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10839, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3360, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6607, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=667279, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6607, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8963]={ + ["next_chapter"]=8964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10867, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3369, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6673, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=673952, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6673, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8964]={ + ["next_chapter"]=8965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10895, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3378, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6740, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=680692, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6740, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8965]={ + ["next_chapter"]=8966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10924, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3386, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6807, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=687498, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6807, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8966]={ + ["next_chapter"]=8967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10953, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3395, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6875, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=694373, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6875, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8967]={ + ["next_chapter"]=8968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10981, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3404, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6944, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=701317, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=6944, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8968]={ + ["next_chapter"]=8969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3413, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7013, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=708330, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7013, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8969]={ + ["next_chapter"]=8970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11039, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3422, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7083, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=715414, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7083, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=683807, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=896, + ["unit"]=0 + } + }, + [8970]={ + ["next_chapter"]=8971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=11068, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3431, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7154, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=722568, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7154, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8971]={ + ["next_chapter"]=8972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11097, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3440, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7226, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=729793, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7226, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8972]={ + ["next_chapter"]=8973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11127, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3449, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7298, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=737091, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7298, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8973]={ + ["next_chapter"]=8974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11156, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3458, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7371, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=744462, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7371, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8974]={ + ["next_chapter"]=8975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11186, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3468, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7445, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=751907, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7445, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8975]={ + ["next_chapter"]=8976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11216, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3477, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7519, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=759426, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7519, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8976]={ + ["next_chapter"]=8977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11245, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3486, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7594, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=767020, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7594, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8977]={ + ["next_chapter"]=8978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11275, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3495, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7670, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=774690, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7670, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8978]={ + ["next_chapter"]=8979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11305, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7747, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=782437, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7747, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8979]={ + ["next_chapter"]=8980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11336, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3514, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7824, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=790262, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7824, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=755349, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=897, + ["unit"]=0 + } + }, + [8980]={ + ["next_chapter"]=8981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=11366, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3523, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7903, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=798164, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7903, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8981]={ + ["next_chapter"]=8982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11397, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3533, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7982, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=806146, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=7982, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8982]={ + ["next_chapter"]=8983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11427, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3542, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8061, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=814207, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8061, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8983]={ + ["next_chapter"]=8984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11458, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3552, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8142, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=822350, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8142, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8984]={ + ["next_chapter"]=8985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11489, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3562, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8223, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=830573, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8223, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8985]={ + ["next_chapter"]=8986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11520, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3571, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8306, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=838879, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8306, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8986]={ + ["next_chapter"]=8987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11551, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3581, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8389, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=847268, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8389, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8987]={ + ["next_chapter"]=8988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11582, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3590, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8473, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=855740, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8473, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8988]={ + ["next_chapter"]=8989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11613, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8557, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=864298, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8557, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8989]={ + ["next_chapter"]=8990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11645, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8643, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=872941, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8643, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=834375, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=898, + ["unit"]=0 + } + }, + [8990]={ + ["next_chapter"]=8991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=11677, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3620, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8729, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=881670, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8729, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8991]={ + ["next_chapter"]=8992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11708, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8817, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=890487, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8817, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8992]={ + ["next_chapter"]=8993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11740, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3639, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8905, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=899392, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8905, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8993]={ + ["next_chapter"]=8994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11772, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3649, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8994, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=908385, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=8994, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8994]={ + ["next_chapter"]=8995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3659, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9084, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=917469, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9084, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8995]={ + ["next_chapter"]=8996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11837, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3669, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9175, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=926644, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9175, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8996]={ + ["next_chapter"]=8997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11869, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3679, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9266, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=935910, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9266, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8997]={ + ["next_chapter"]=8998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11902, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3689, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9359, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=945270, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9359, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8998]={ + ["next_chapter"]=8999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11934, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3700, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9453, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=954722, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9453, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [8999]={ + ["next_chapter"]=9000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11967, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3710, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9547, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=964269, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9547, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=921669, + ["unit"]=12 + }, + ["grasp_mastery_reward"]={ + ["value"]=899, + ["unit"]=0 + } + }, + [9000]={ + ["next_chapter"]=9001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9643, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=973912, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9643, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9001]={ + ["next_chapter"]=9002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9739, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=983651, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9739, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9002]={ + ["next_chapter"]=9003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9837, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=993488, + ["unit"]=12 + }, + ["idle_gold"]={ + ["value"]=9837, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9003]={ + ["next_chapter"]=9004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9935, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1003, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9935, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9004]={ + ["next_chapter"]=9005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10034, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1013, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10034, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9005]={ + ["next_chapter"]=9006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10135, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1024, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10135, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9006]={ + ["next_chapter"]=9007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10236, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1034, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10236, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9007]={ + ["next_chapter"]=9008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10338, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1044, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10338, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9008]={ + ["next_chapter"]=9009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10442, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1055, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10442, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9009]={ + ["next_chapter"]=9010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10546, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1065, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10546, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1018, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=900, + ["unit"]=0 + } + }, + [9010]={ + ["next_chapter"]=9011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10652, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1076, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10652, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9011]={ + ["next_chapter"]=9012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10758, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1087, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10758, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9012]={ + ["next_chapter"]=9013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10866, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1097, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10866, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9013]={ + ["next_chapter"]=9014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10974, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1108, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=10974, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9014]={ + ["next_chapter"]=9015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11084, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1119, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=11084, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9015]={ + ["next_chapter"]=9016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11195, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1131, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=11195, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9016]={ + ["next_chapter"]=9017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11307, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1142, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=11307, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9017]={ + ["next_chapter"]=9018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11420, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1153, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=11420, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9018]={ + ["next_chapter"]=9019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11534, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1165, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=11534, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9019]={ + ["next_chapter"]=9020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11649, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1177, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=11649, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1125, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=901, + ["unit"]=0 + } + }, + [9020]={ + ["next_chapter"]=9021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11766, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1188, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=11766, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9021]={ + ["next_chapter"]=9022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11884, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1200, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=11884, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9022]={ + ["next_chapter"]=9023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12002, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1212, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12002, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9023]={ + ["next_chapter"]=9024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12122, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1224, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12122, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9024]={ + ["next_chapter"]=9025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12244, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1237, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12244, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9025]={ + ["next_chapter"]=9026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12366, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1249, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12366, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9026]={ + ["next_chapter"]=9027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12490, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1261, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12490, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9027]={ + ["next_chapter"]=9028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12615, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1274, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12615, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9028]={ + ["next_chapter"]=9029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12741, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1287, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12741, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9029]={ + ["next_chapter"]=9030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12868, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1300, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12868, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1242, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=902, + ["unit"]=0 + } + }, + [9030]={ + ["next_chapter"]=9031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=12002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12997, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1313, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=12997, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9031]={ + ["next_chapter"]=9032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13127, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1326, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=13127, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9032]={ + ["next_chapter"]=9033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13258, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1339, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=13258, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9033]={ + ["next_chapter"]=9034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13391, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1352, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=13391, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9034]={ + ["next_chapter"]=9035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13525, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1366, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=13525, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9035]={ + ["next_chapter"]=9036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13660, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1380, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=13660, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9036]={ + ["next_chapter"]=9037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13796, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1393, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=13796, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9037]={ + ["next_chapter"]=9038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13934, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1407, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=13934, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9038]={ + ["next_chapter"]=9039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12004, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14074, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1421, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=14074, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9039]={ + ["next_chapter"]=9040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12004, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14215, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1436, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=14215, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1372, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=903, + ["unit"]=0 + } + }, + [9040]={ + ["next_chapter"]=9041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=12004, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14357, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1450, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=14357, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9041]={ + ["next_chapter"]=9042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12004, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14500, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1465, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=14500, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9042]={ + ["next_chapter"]=9043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14645, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1479, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=14645, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9043]={ + ["next_chapter"]=9044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14792, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1494, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=14792, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9044]={ + ["next_chapter"]=9045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14940, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1509, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=14940, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9045]={ + ["next_chapter"]=9046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12006, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15089, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1524, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=15089, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9046]={ + ["next_chapter"]=9047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12006, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15240, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1539, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=15240, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9047]={ + ["next_chapter"]=9048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15392, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1555, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=15392, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9048]={ + ["next_chapter"]=9049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15546, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1570, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=15546, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9049]={ + ["next_chapter"]=9050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12008, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15702, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1586, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=15702, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1516, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=904, + ["unit"]=0 + } + }, + [9050]={ + ["next_chapter"]=9051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=12008, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3843, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15859, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1602, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=15859, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9051]={ + ["next_chapter"]=9052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12008, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3843, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16017, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1618, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=16017, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9052]={ + ["next_chapter"]=9053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12009, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3843, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16177, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1634, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=16177, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9053]={ + ["next_chapter"]=9054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3843, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16339, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1650, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=16339, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9054]={ + ["next_chapter"]=9055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3843, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16503, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1667, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=16503, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9055]={ + ["next_chapter"]=9056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12011, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3843, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16668, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1683, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=16668, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9056]={ + ["next_chapter"]=9057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12011, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3844, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16834, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1700, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=16834, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9057]={ + ["next_chapter"]=9058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12012, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3844, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17003, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1717, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=17003, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9058]={ + ["next_chapter"]=9059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12012, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3844, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17173, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1734, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=17173, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9059]={ + ["next_chapter"]=9060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12013, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3844, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17344, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1752, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=17344, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1674, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=905, + ["unit"]=0 + } + }, + [9060]={ + ["next_chapter"]=9061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=12014, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3844, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17518, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1769, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=17518, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9061]={ + ["next_chapter"]=9062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12015, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3845, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17693, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1787, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=17693, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9062]={ + ["next_chapter"]=9063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12015, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3845, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17870, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1805, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=17870, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9063]={ + ["next_chapter"]=9064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12016, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3845, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18049, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1823, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=18049, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9064]={ + ["next_chapter"]=9065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12017, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3845, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18229, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1841, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=18229, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9065]={ + ["next_chapter"]=9066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18411, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1860, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=18411, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9066]={ + ["next_chapter"]=9067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18596, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1878, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=18596, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9067]={ + ["next_chapter"]=9068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12019, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18782, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1897, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=18782, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9068]={ + ["next_chapter"]=9069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12020, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18969, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1916, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=18969, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9069]={ + ["next_chapter"]=9070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12021, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3847, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19159, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1935, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=19159, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=1850, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=906, + ["unit"]=0 + } + }, + [9070]={ + ["next_chapter"]=9071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=12022, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3847, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19351, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1954, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=19351, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9071]={ + ["next_chapter"]=9072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12023, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3847, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19544, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1974, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=19544, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9072]={ + ["next_chapter"]=9073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3848, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19740, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1994, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=19740, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9073]={ + ["next_chapter"]=9074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12025, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3848, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19937, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2014, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=19937, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9074]={ + ["next_chapter"]=9075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12026, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3848, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20136, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2034, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=20136, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9075]={ + ["next_chapter"]=9076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12027, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3849, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20338, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2054, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=20338, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9076]={ + ["next_chapter"]=9077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12028, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3849, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20541, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2075, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=20541, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9077]={ + ["next_chapter"]=9078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12029, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3849, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20746, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2095, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=20746, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9078]={ + ["next_chapter"]=9079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12030, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3850, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20954, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2116, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=20954, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9079]={ + ["next_chapter"]=9080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12032, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3850, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21163, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2138, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=21163, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2043, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=907, + ["unit"]=0 + } + }, + [9080]={ + ["next_chapter"]=9081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=12033, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3850, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21375, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2159, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=21375, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9081]={ + ["next_chapter"]=9082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12034, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3851, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21589, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2180, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=21589, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9082]={ + ["next_chapter"]=9083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12035, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3851, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21805, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2202, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=21805, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9083]={ + ["next_chapter"]=9084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12037, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22023, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2224, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=22023, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9084]={ + ["next_chapter"]=9085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12038, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22243, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2247, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=22243, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9085]={ + ["next_chapter"]=9086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12039, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3853, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22465, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2269, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=22465, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9086]={ + ["next_chapter"]=9087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12041, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3853, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22690, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2292, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=22690, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9087]={ + ["next_chapter"]=9088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12042, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3853, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22917, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2315, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=22917, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9088]={ + ["next_chapter"]=9089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12044, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3854, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23146, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2338, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=23146, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9089]={ + ["next_chapter"]=9090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12045, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3854, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23378, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2361, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=23378, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2257, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=908, + ["unit"]=0 + } + }, + [9090]={ + ["next_chapter"]=9091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=12047, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3855, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23611, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2385, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=23611, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9091]={ + ["next_chapter"]=9092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12048, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3855, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23848, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2409, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=23848, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9092]={ + ["next_chapter"]=9093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12050, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3856, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24086, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2433, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=24086, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9093]={ + ["next_chapter"]=9094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12051, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3856, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24327, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2457, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=24327, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9094]={ + ["next_chapter"]=9095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12053, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3857, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24570, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2482, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=24570, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9095]={ + ["next_chapter"]=9096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12055, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3858, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24816, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2506, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=24816, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9096]={ + ["next_chapter"]=9097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12057, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3858, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25064, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2531, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=25064, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9097]={ + ["next_chapter"]=9098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12058, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3859, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25315, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2557, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=25315, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9098]={ + ["next_chapter"]=9099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12060, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3859, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25568, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2582, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=25568, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9099]={ + ["next_chapter"]=9100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12062, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3860, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25823, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2608, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=25823, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=909, + ["unit"]=0 + } + }, + [9100]={ + ["next_chapter"]=9101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=12064, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3860, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26082, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2634, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=26082, + ["unit"]=12 + }, + ["chapter_drop"]=56, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9101]={ + ["next_chapter"]=9102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12066, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3861, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26343, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2661, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=26343, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9102]={ + ["next_chapter"]=9103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12068, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3862, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26606, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2687, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=26606, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9103]={ + ["next_chapter"]=9104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12070, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3862, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26872, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2714, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=26872, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9104]={ + ["next_chapter"]=9105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12072, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3863, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27141, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2741, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=27141, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9105]={ + ["next_chapter"]=9106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12074, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3864, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27412, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2769, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=27412, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9106]={ + ["next_chapter"]=9107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12076, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3864, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27686, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2796, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=27686, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9107]={ + ["next_chapter"]=9108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12078, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3865, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27963, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2824, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=27963, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9108]={ + ["next_chapter"]=9109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12081, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3866, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28243, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2853, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=28243, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9109]={ + ["next_chapter"]=9110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12083, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3867, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28525, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2881, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=28525, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2754, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=910, + ["unit"]=0 + } + }, + [9110]={ + ["next_chapter"]=9111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=12085, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3867, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28810, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2910, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=28810, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9111]={ + ["next_chapter"]=9112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12088, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3868, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29099, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2939, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=29099, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9112]={ + ["next_chapter"]=9113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12090, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3869, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29390, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2968, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=29390, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9113]={ + ["next_chapter"]=9114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12092, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3870, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29683, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2998, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=29683, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9114]={ + ["next_chapter"]=9115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12095, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3870, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29980, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3028, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=29980, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9115]={ + ["next_chapter"]=9116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12097, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3871, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30280, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3058, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=30280, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9116]={ + ["next_chapter"]=9117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12100, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3872, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30583, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3089, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=30583, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9117]={ + ["next_chapter"]=9118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12103, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3873, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30889, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3120, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=30889, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9118]={ + ["next_chapter"]=9119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12105, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3874, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31198, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3151, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=31198, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9119]={ + ["next_chapter"]=9120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12108, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3875, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31510, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3182, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=31510, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3042, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=911, + ["unit"]=0 + } + }, + [9120]={ + ["next_chapter"]=9121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=12111, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3875, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31825, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3214, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=31825, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9121]={ + ["next_chapter"]=9122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12113, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3876, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32143, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3246, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=32143, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9122]={ + ["next_chapter"]=9123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12116, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3877, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32464, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3279, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=32464, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9123]={ + ["next_chapter"]=9124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12119, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3878, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32789, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3312, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=32789, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9124]={ + ["next_chapter"]=9125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12122, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3879, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33117, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3345, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=33117, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9125]={ + ["next_chapter"]=9126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12125, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3880, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33448, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3378, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=33448, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9126]={ + ["next_chapter"]=9127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12128, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3881, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33782, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3412, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=33782, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9127]={ + ["next_chapter"]=9128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12131, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3882, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34120, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3446, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=34120, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9128]={ + ["next_chapter"]=9129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12134, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3883, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34462, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3481, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=34462, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9129]={ + ["next_chapter"]=9130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3884, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34806, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3515, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=34806, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3360, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=912, + ["unit"]=0 + } + }, + [9130]={ + ["next_chapter"]=9131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=12141, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3885, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35154, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3551, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=35154, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9131]={ + ["next_chapter"]=9132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12144, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3886, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35506, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3586, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=35506, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9132]={ + ["next_chapter"]=9133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12147, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3887, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35861, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3622, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=35861, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9133]={ + ["next_chapter"]=9134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12151, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3888, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36219, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3658, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=36219, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9134]={ + ["next_chapter"]=9135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12154, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3889, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36582, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3695, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=36582, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9135]={ + ["next_chapter"]=9136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12157, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3890, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36947, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3732, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=36947, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9136]={ + ["next_chapter"]=9137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12161, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3892, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37317, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3769, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=37317, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9137]={ + ["next_chapter"]=9138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12165, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3893, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37690, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3807, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=37690, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9138]={ + ["next_chapter"]=9139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12168, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3894, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38067, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3845, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=38067, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9139]={ + ["next_chapter"]=9140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12172, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3895, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38448, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3883, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=38448, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3712, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=913, + ["unit"]=0 + } + }, + [9140]={ + ["next_chapter"]=9141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=12176, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3896, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38832, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3922, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=38832, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9141]={ + ["next_chapter"]=9142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12179, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3897, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39220, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3961, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=39220, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9142]={ + ["next_chapter"]=9143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12183, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3899, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39613, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4001, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=39613, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9143]={ + ["next_chapter"]=9144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12187, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3900, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40009, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4041, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=40009, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9144]={ + ["next_chapter"]=9145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3901, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40409, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4081, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=40409, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9145]={ + ["next_chapter"]=9146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12195, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3902, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40813, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4122, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=40813, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9146]={ + ["next_chapter"]=9147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12199, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3904, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41221, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4163, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=41221, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9147]={ + ["next_chapter"]=9148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12203, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3905, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41633, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4205, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=41633, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9148]={ + ["next_chapter"]=9149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12207, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3906, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42050, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4247, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=42050, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9149]={ + ["next_chapter"]=9150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12212, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42470, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4289, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=42470, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4100, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=914, + ["unit"]=0 + } + }, + [9150]={ + ["next_chapter"]=9151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=12216, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3909, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42895, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4332, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=42895, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9151]={ + ["next_chapter"]=9152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12220, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3911, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43324, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4376, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=43324, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9152]={ + ["next_chapter"]=9153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12225, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3912, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43757, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4419, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=43757, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9153]={ + ["next_chapter"]=9154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12229, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3913, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44195, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4464, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=44195, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9154]={ + ["next_chapter"]=9155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12234, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3915, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44636, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4508, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=44636, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9155]={ + ["next_chapter"]=9156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12238, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3916, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45083, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4553, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=45083, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9156]={ + ["next_chapter"]=9157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12243, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45534, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4599, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=45534, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9157]={ + ["next_chapter"]=9158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12248, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3919, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45989, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4645, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=45989, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9158]={ + ["next_chapter"]=9159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12252, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3921, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46449, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4691, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=46449, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9159]={ + ["next_chapter"]=9160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12257, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3922, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46913, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4738, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=46913, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4529, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=915, + ["unit"]=0 + } + }, + [9160]={ + ["next_chapter"]=9161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=12262, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3924, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47383, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4786, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=47383, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9161]={ + ["next_chapter"]=9162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12267, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3925, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47856, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4833, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=47856, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9162]={ + ["next_chapter"]=9163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12272, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3927, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48335, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4882, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=48335, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9163]={ + ["next_chapter"]=9164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12277, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3929, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48818, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4931, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=48818, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9164]={ + ["next_chapter"]=9165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12282, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3930, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49306, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4980, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=49306, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9165]={ + ["next_chapter"]=9166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12287, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3932, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49800, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5030, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=49800, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9166]={ + ["next_chapter"]=9167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12293, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3934, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50298, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5080, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=50298, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9167]={ + ["next_chapter"]=9168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12298, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3935, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50800, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5131, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=50800, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9168]={ + ["next_chapter"]=9169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12303, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3937, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51308, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5182, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=51308, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9169]={ + ["next_chapter"]=9170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12309, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3939, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51822, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5234, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=51822, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5003, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=916, + ["unit"]=0 + } + }, + [9170]={ + ["next_chapter"]=9171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=12314, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3941, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52340, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5286, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=52340, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9171]={ + ["next_chapter"]=9172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12320, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3942, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52863, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5339, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=52863, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9172]={ + ["next_chapter"]=9173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12326, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3944, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53392, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5393, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=53392, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9173]={ + ["next_chapter"]=9174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12331, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3946, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53926, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5446, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=53926, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9174]={ + ["next_chapter"]=9175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12337, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3948, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54465, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5501, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=54465, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9175]={ + ["next_chapter"]=9176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12343, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3950, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55010, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5556, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=55010, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9176]={ + ["next_chapter"]=9177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12349, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3952, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55560, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5612, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=55560, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9177]={ + ["next_chapter"]=9178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12355, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3954, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56115, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5668, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=56115, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9178]={ + ["next_chapter"]=9179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12361, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3956, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56676, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5724, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=56676, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9179]={ + ["next_chapter"]=9180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12367, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3957, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57243, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5782, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=57243, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5526, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=917, + ["unit"]=0 + } + }, + [9180]={ + ["next_chapter"]=9181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=12373, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3959, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57816, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5839, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=57816, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9181]={ + ["next_chapter"]=9182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12380, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3961, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58394, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5898, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=58394, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9182]={ + ["next_chapter"]=9183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12386, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3963, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58978, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5957, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=58978, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9183]={ + ["next_chapter"]=9184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12392, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3966, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59568, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6016, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=59568, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9184]={ + ["next_chapter"]=9185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12399, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3968, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60163, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6076, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=60163, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9185]={ + ["next_chapter"]=9186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12405, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3970, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60765, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6137, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=60765, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9186]={ + ["next_chapter"]=9187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12412, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3972, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61373, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6199, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=61373, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9187]={ + ["next_chapter"]=9188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12419, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3974, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61986, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6261, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=61986, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9188]={ + ["next_chapter"]=9189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12425, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3976, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62606, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6323, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=62606, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9189]={ + ["next_chapter"]=9190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12432, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3978, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63232, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6386, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=63232, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6104, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=918, + ["unit"]=0 + } + }, + [9190]={ + ["next_chapter"]=9191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=12439, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3980, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63864, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6450, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=63864, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9191]={ + ["next_chapter"]=9192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12446, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3983, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64503, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6515, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=64503, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9192]={ + ["next_chapter"]=9193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12453, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3985, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65148, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6580, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=65148, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9193]={ + ["next_chapter"]=9194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12460, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3987, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65800, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6646, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=65800, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9194]={ + ["next_chapter"]=9195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12467, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3990, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66458, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6712, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=66458, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9195]={ + ["next_chapter"]=9196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12475, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3992, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67122, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6779, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=67122, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9196]={ + ["next_chapter"]=9197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12482, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3994, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67793, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6847, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=67793, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9197]={ + ["next_chapter"]=9198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12489, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3997, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=68471, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6916, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=68471, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9198]={ + ["next_chapter"]=9199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12497, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=3999, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69156, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6985, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=69156, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9199]={ + ["next_chapter"]=9200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4001, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69848, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7055, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=69848, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6743, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=919, + ["unit"]=0 + } + }, + [9200]={ + ["next_chapter"]=9201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=12512, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4004, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70546, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7125, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=70546, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9201]={ + ["next_chapter"]=9202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12520, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4006, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=71252, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7196, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=71252, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9202]={ + ["next_chapter"]=9203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12528, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4009, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=71964, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7268, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=71964, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9203]={ + ["next_chapter"]=9204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12535, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4011, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72684, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7341, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=72684, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9204]={ + ["next_chapter"]=9205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12543, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4014, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=73411, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7414, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=73411, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9205]={ + ["next_chapter"]=9206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12551, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=74145, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7489, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=74145, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9206]={ + ["next_chapter"]=9207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12559, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=74886, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7563, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=74886, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9207]={ + ["next_chapter"]=9208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12568, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=75635, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7639, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=75635, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9208]={ + ["next_chapter"]=9209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12576, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4024, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=76391, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7716, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=76391, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9209]={ + ["next_chapter"]=9210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12584, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4027, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=77155, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7793, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=77155, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=920, + ["unit"]=0 + } + }, + [9210]={ + ["next_chapter"]=9211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=12593, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4030, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=77927, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7871, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=77927, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9211]={ + ["next_chapter"]=9212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12601, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4032, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78706, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7949, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=78706, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9212]={ + ["next_chapter"]=9213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12610, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4035, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=79493, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8029, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=79493, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9213]={ + ["next_chapter"]=9214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12618, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4038, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=80288, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8109, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=80288, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9214]={ + ["next_chapter"]=9215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12627, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4041, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=81091, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8190, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=81091, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9215]={ + ["next_chapter"]=9216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12636, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4044, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=81902, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8272, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=81902, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9216]={ + ["next_chapter"]=9217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12645, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4046, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=82721, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8355, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=82721, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9217]={ + ["next_chapter"]=9218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12654, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4049, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=83548, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8438, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=83548, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9218]={ + ["next_chapter"]=9219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12663, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=84384, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8523, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=84384, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9219]={ + ["next_chapter"]=9220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12672, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=85227, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8608, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=85227, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8228, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=921, + ["unit"]=0 + } + }, + [9220]={ + ["next_chapter"]=9221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=12681, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=86080, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8694, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=86080, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9221]={ + ["next_chapter"]=9222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12691, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4061, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=86940, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8781, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=86940, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9222]={ + ["next_chapter"]=9223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12700, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=87810, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8869, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=87810, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9223]={ + ["next_chapter"]=9224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12710, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4067, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=88688, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8957, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=88688, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9224]={ + ["next_chapter"]=9225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12719, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4070, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=89575, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9047, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=89575, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9225]={ + ["next_chapter"]=9226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12729, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4073, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=90471, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9138, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=90471, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9226]={ + ["next_chapter"]=9227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12739, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4076, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=91375, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9229, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=91375, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9227]={ + ["next_chapter"]=9228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12749, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4080, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=92289, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9321, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=92289, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9228]={ + ["next_chapter"]=9229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12759, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4083, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=93212, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9414, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=93212, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9229]={ + ["next_chapter"]=9230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12769, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4086, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=94144, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9509, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=94144, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9088, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=922, + ["unit"]=0 + } + }, + [9230]={ + ["next_chapter"]=9231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=12779, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4089, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=95086, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9604, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=95086, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9231]={ + ["next_chapter"]=9232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12789, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4092, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=96036, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9700, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=96036, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9232]={ + ["next_chapter"]=9233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12799, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4096, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=96997, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9797, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=96997, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9233]={ + ["next_chapter"]=9234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12810, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=97967, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9895, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=97967, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9234]={ + ["next_chapter"]=9235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12820, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4102, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=98946, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9994, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=98946, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9235]={ + ["next_chapter"]=9236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12831, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4106, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=99936, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10094, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=99936, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9236]={ + ["next_chapter"]=9237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12841, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4109, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=100935, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10194, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=100935, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9237]={ + ["next_chapter"]=9238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12852, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4113, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=101945, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10296, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=101945, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9238]={ + ["next_chapter"]=9239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12863, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4116, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=102964, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10399, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=102964, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9239]={ + ["next_chapter"]=9240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12874, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4120, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=103994, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10503, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=103994, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10039, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=923, + ["unit"]=0 + } + }, + [9240]={ + ["next_chapter"]=9241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=12885, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4123, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=105034, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10608, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=105034, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9241]={ + ["next_chapter"]=9242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12896, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4127, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=106084, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10714, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=106084, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9242]={ + ["next_chapter"]=9243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12907, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4130, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=107145, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10822, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=107145, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9243]={ + ["next_chapter"]=9244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12918, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4134, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=108216, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10930, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=108216, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9244]={ + ["next_chapter"]=9245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12930, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4138, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=109298, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11039, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=109298, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9245]={ + ["next_chapter"]=9246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12941, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=110391, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11150, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=110391, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9246]={ + ["next_chapter"]=9247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12953, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4145, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=111495, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11261, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=111495, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9247]={ + ["next_chapter"]=9248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12964, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4149, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=112610, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11374, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=112610, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9248]={ + ["next_chapter"]=9249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12976, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4152, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=113736, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11487, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=113736, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9249]={ + ["next_chapter"]=9250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12988, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4156, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=114874, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11602, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=114874, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11090, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=924, + ["unit"]=0 + } + }, + [9250]={ + ["next_chapter"]=9251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=13000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4160, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=116022, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11718, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=116022, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9251]={ + ["next_chapter"]=9252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13012, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4164, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=117183, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11835, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=117183, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9252]={ + ["next_chapter"]=9253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4168, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=118354, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11954, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=118354, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9253]={ + ["next_chapter"]=9254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13036, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4172, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=119538, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12073, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=119538, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9254]={ + ["next_chapter"]=9255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13049, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4176, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=120733, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12194, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=120733, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9255]={ + ["next_chapter"]=9256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13061, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4180, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=121941, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12316, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=121941, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9256]={ + ["next_chapter"]=9257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13074, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4184, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=123160, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12439, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=123160, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9257]={ + ["next_chapter"]=9258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13086, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4188, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=124392, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12564, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=124392, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9258]={ + ["next_chapter"]=9259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13099, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4192, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=125636, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12689, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=125636, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9259]={ + ["next_chapter"]=9260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13112, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4196, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=126892, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12816, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=126892, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12250, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=925, + ["unit"]=0 + } + }, + [9260]={ + ["next_chapter"]=9261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=13125, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4200, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=128161, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12944, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=128161, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9261]={ + ["next_chapter"]=9262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13138, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4204, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=129443, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13074, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=129443, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9262]={ + ["next_chapter"]=9263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13151, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4208, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=130737, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13204, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=130737, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9263]={ + ["next_chapter"]=9264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13164, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=132044, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13336, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=132044, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9264]={ + ["next_chapter"]=9265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13178, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4217, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=133365, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13470, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=133365, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9265]={ + ["next_chapter"]=9266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=134698, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13605, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=134698, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9266]={ + ["next_chapter"]=9267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13205, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4225, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=136045, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13741, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=136045, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9267]={ + ["next_chapter"]=9268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13218, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4230, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=137406, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13878, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=137406, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9268]={ + ["next_chapter"]=9269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13232, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4234, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=138780, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14017, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=138780, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9269]={ + ["next_chapter"]=9270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13246, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4239, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=140168, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14157, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=140168, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=13531, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=926, + ["unit"]=0 + } + }, + [9270]={ + ["next_chapter"]=9271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=13260, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4243, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=141569, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14299, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=141569, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9271]={ + ["next_chapter"]=9272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13274, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4248, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=142985, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14441, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=142985, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9272]={ + ["next_chapter"]=9273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13288, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4252, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=144415, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14586, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=144415, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9273]={ + ["next_chapter"]=9274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13302, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4257, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=145859, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14732, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=145859, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9274]={ + ["next_chapter"]=9275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13317, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4261, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=147318, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14879, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=147318, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9275]={ + ["next_chapter"]=9276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13331, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4266, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=148791, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15028, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=148791, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9276]={ + ["next_chapter"]=9277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13346, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4271, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=150279, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15178, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=150279, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9277]={ + ["next_chapter"]=9278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13360, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=151782, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15330, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=151782, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9278]={ + ["next_chapter"]=9279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13375, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4280, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=153299, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15483, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=153299, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9279]={ + ["next_chapter"]=9280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13390, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4285, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=154832, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15638, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=154832, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14947, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=927, + ["unit"]=0 + } + }, + [9280]={ + ["next_chapter"]=9281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=13405, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4290, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=156381, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15794, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=156381, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9281]={ + ["next_chapter"]=9282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13420, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4294, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=157944, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15952, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=157944, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9282]={ + ["next_chapter"]=9283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4299, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=159524, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16112, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=159524, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9283]={ + ["next_chapter"]=9284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13451, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4304, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=161119, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16273, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=161119, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9284]={ + ["next_chapter"]=9285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13466, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4309, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=162730, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16436, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=162730, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9285]={ + ["next_chapter"]=9286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13482, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4314, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=164358, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16600, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=164358, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9286]={ + ["next_chapter"]=9287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13497, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4319, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=166001, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16766, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=166001, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9287]={ + ["next_chapter"]=9288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13513, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4324, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=167661, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16934, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=167661, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9288]={ + ["next_chapter"]=9289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4329, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=169338, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17103, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=169338, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9289]={ + ["next_chapter"]=9290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13545, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4334, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=171031, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17274, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=171031, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=16511, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=928, + ["unit"]=0 + } + }, + [9290]={ + ["next_chapter"]=9291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=13561, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4339, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=172742, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17447, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=172742, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9291]={ + ["next_chapter"]=9292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13577, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4345, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=174469, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17621, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=174469, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9292]={ + ["next_chapter"]=9293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13593, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4350, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=176214, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17798, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=176214, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9293]={ + ["next_chapter"]=9294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13610, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4355, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=177976, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17976, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=177976, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9294]={ + ["next_chapter"]=9295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13626, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4360, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=179756, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18155, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=179756, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9295]={ + ["next_chapter"]=9296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13643, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4366, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=181553, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18337, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=181553, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9296]={ + ["next_chapter"]=9297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13660, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4371, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=183369, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18520, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=183369, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9297]={ + ["next_chapter"]=9298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13677, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4377, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=185202, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18705, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=185202, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9298]={ + ["next_chapter"]=9299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13694, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4382, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=187054, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18892, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=187054, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9299]={ + ["next_chapter"]=9300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13711, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4387, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=188925, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19081, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=188925, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=18238, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=929, + ["unit"]=0 + } + }, + [9300]={ + ["next_chapter"]=9301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=13728, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4393, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=190814, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19272, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=190814, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9301]={ + ["next_chapter"]=9302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13745, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4399, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=192722, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19465, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=192722, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9302]={ + ["next_chapter"]=9303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13763, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4404, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=194650, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19660, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=194650, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9303]={ + ["next_chapter"]=9304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13780, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4410, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=196596, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19856, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=196596, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9304]={ + ["next_chapter"]=9305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13798, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4415, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=198562, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20055, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=198562, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9305]={ + ["next_chapter"]=9306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13816, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4421, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=200548, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20255, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=200548, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9306]={ + ["next_chapter"]=9307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13834, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4427, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=202553, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20458, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=202553, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9307]={ + ["next_chapter"]=9308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13852, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4433, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=204579, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20662, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=204579, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9308]={ + ["next_chapter"]=9309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13870, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4438, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=206624, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20869, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=206624, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9309]={ + ["next_chapter"]=9310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13888, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4444, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=208691, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21078, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=208691, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=20147, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=930, + ["unit"]=0 + } + }, + [9310]={ + ["next_chapter"]=9311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=13907, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4450, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=210778, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21289, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=210778, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9311]={ + ["next_chapter"]=9312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13925, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4456, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=212885, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21501, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=212885, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9312]={ + ["next_chapter"]=9313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13944, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4462, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=215014, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21716, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=215014, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9313]={ + ["next_chapter"]=9314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13963, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4468, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=217164, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21934, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=217164, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9314]={ + ["next_chapter"]=9315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13981, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4474, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=219336, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22153, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=219336, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9315]={ + ["next_chapter"]=9316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4480, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=221529, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22374, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=221529, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9316]={ + ["next_chapter"]=9317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14019, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4486, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=223745, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22598, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=223745, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9317]={ + ["next_chapter"]=9318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14039, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4492, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=225982, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22824, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=225982, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9318]={ + ["next_chapter"]=9319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14058, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4499, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=228242, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23052, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=228242, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9319]={ + ["next_chapter"]=9320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14078, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=230524, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23283, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=230524, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=22254, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=931, + ["unit"]=0 + } + }, + [9320]={ + ["next_chapter"]=9321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=14097, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4511, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=232830, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23516, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=232830, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9321]={ + ["next_chapter"]=9322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14117, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4517, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=235158, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23751, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=235158, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9322]={ + ["next_chapter"]=9323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4524, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=237509, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23988, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=237509, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9323]={ + ["next_chapter"]=9324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14157, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4530, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=239884, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24228, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=239884, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9324]={ + ["next_chapter"]=9325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14177, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4537, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=242283, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24471, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=242283, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9325]={ + ["next_chapter"]=9326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14197, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4543, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=244706, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24715, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=244706, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9326]={ + ["next_chapter"]=9327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14217, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4550, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=247153, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24962, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=247153, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9327]={ + ["next_chapter"]=9328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14238, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4556, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=249625, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25212, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=249625, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9328]={ + ["next_chapter"]=9329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14258, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4563, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=252121, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25464, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=252121, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9329]={ + ["next_chapter"]=9330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14279, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4569, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=254642, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25719, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=254642, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=24583, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=932, + ["unit"]=0 + } + }, + [9330]={ + ["next_chapter"]=9331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=14300, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4576, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=257189, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25976, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=257189, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9331]={ + ["next_chapter"]=9332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14321, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4583, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=259761, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26236, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=259761, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9332]={ + ["next_chapter"]=9333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14342, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4589, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=262358, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26498, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=262358, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9333]={ + ["next_chapter"]=9334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14363, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4596, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=264982, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26763, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=264982, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9334]={ + ["next_chapter"]=9335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14385, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=267632, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27031, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=267632, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9335]={ + ["next_chapter"]=9336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14406, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=270308, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27301, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=270308, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9336]={ + ["next_chapter"]=9337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14428, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4617, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=273011, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27574, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=273011, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9337]={ + ["next_chapter"]=9338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14449, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4624, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=275741, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27850, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=275741, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9338]={ + ["next_chapter"]=9339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14471, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4631, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=278498, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28128, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=278498, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9339]={ + ["next_chapter"]=9340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14493, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4638, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=281283, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28410, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=281283, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=27155, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=933, + ["unit"]=0 + } + }, + [9340]={ + ["next_chapter"]=9341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=14515, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4645, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=284096, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28694, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=284096, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9341]={ + ["next_chapter"]=9342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14538, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4652, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=286937, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28981, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=286937, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9342]={ + ["next_chapter"]=9343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14560, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4659, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=289807, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29270, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=289807, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9343]={ + ["next_chapter"]=9344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14583, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4666, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=292705, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29563, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=292705, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9344]={ + ["next_chapter"]=9345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14605, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4674, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=295632, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29859, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=295632, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9345]={ + ["next_chapter"]=9346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14628, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4681, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=298588, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30157, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=298588, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9346]={ + ["next_chapter"]=9347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14651, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4688, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=301574, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30459, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=301574, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9347]={ + ["next_chapter"]=9348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14674, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4696, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=304590, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30764, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=304590, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9348]={ + ["next_chapter"]=9349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14697, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4703, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=307636, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31071, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=307636, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9349]={ + ["next_chapter"]=9350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14721, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4711, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=310712, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31382, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=310712, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=29995, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=934, + ["unit"]=0 + } + }, + [9350]={ + ["next_chapter"]=9351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=14744, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4718, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=313819, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31696, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=313819, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9351]={ + ["next_chapter"]=9352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14768, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4726, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=316957, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32013, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=316957, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9352]={ + ["next_chapter"]=9353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14791, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4733, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=320127, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32333, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=320127, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9353]={ + ["next_chapter"]=9354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14815, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4741, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=323328, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32656, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=323328, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9354]={ + ["next_chapter"]=9355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14839, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4749, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=326561, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32983, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=326561, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9355]={ + ["next_chapter"]=9356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14863, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4756, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=329827, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33313, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=329827, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9356]={ + ["next_chapter"]=9357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14888, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4764, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=333125, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33646, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=333125, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9357]={ + ["next_chapter"]=9358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14912, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4772, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=336456, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33982, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=336456, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9358]={ + ["next_chapter"]=9359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14936, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4780, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=339821, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34322, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=339821, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9359]={ + ["next_chapter"]=9360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14961, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4788, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=343219, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34665, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=343219, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=33134, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=935, + ["unit"]=0 + } + }, + [9360]={ + ["next_chapter"]=9361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=14986, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4796, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=346651, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35012, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=346651, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9361]={ + ["next_chapter"]=9362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15011, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4803, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=350118, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35362, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=350118, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9362]={ + ["next_chapter"]=9363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15036, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4812, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=353619, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35716, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=353619, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9363]={ + ["next_chapter"]=9364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15061, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4820, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=357155, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36073, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=357155, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9364]={ + ["next_chapter"]=9365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15087, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4828, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=360727, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36433, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=360727, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9365]={ + ["next_chapter"]=9366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15112, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4836, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=364334, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36798, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=364334, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9366]={ + ["next_chapter"]=9367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15138, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4844, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=367977, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37166, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=367977, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9367]={ + ["next_chapter"]=9368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15164, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=371657, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37537, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=371657, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9368]={ + ["next_chapter"]=9369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15190, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4861, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=375374, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37913, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=375374, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9369]={ + ["next_chapter"]=9370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15216, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4869, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=379128, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38292, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=379128, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=36600, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=936, + ["unit"]=0 + } + }, + [9370]={ + ["next_chapter"]=9371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=15242, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4877, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=382919, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38675, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=382919, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9371]={ + ["next_chapter"]=9372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15268, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4886, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=386748, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39062, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=386748, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9372]={ + ["next_chapter"]=9373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15295, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4894, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=390616, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39452, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=390616, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9373]={ + ["next_chapter"]=9374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15321, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4903, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=394522, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39847, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=394522, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9374]={ + ["next_chapter"]=9375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15348, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4911, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=398467, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40245, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=398467, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9375]={ + ["next_chapter"]=9376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15375, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4920, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=402452, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40648, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=402452, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9376]={ + ["next_chapter"]=9377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15402, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4929, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=406476, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41054, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=406476, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9377]={ + ["next_chapter"]=9378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15429, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4937, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=410541, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41465, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=410541, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9378]={ + ["next_chapter"]=9379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15457, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4946, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=414646, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41879, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=414646, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9379]={ + ["next_chapter"]=9380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15484, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4955, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=418793, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42298, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=418793, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=40429, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=937, + ["unit"]=0 + } + }, + [9380]={ + ["next_chapter"]=9381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=15512, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4964, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=422981, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42721, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=422981, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9381]={ + ["next_chapter"]=9382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15540, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4973, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=427210, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43148, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=427210, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9382]={ + ["next_chapter"]=9383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15568, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4982, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=431483, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43580, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=431483, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9383]={ + ["next_chapter"]=9384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15596, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=4991, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=435797, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44016, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=435797, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9384]={ + ["next_chapter"]=9385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15624, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5000, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=440155, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44456, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=440155, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9385]={ + ["next_chapter"]=9386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15652, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5009, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=444557, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44900, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=444557, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9386]={ + ["next_chapter"]=9387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15681, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=449002, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45349, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=449002, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9387]={ + ["next_chapter"]=9388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15709, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5027, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=453492, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45803, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=453492, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9388]={ + ["next_chapter"]=9389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15738, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5036, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=458027, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46261, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=458027, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9389]={ + ["next_chapter"]=9390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15767, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5046, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=462608, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46723, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=462608, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=44659, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=938, + ["unit"]=0 + } + }, + [9390]={ + ["next_chapter"]=9391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=15796, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5055, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=467234, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47191, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=467234, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9391]={ + ["next_chapter"]=9392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15826, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=471906, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47663, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=471906, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9392]={ + ["next_chapter"]=9393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15855, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5074, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=476625, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48139, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=476625, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9393]={ + ["next_chapter"]=9394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15885, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5083, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=481391, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48621, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=481391, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9394]={ + ["next_chapter"]=9395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15914, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5093, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=486205, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49107, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=486205, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9395]={ + ["next_chapter"]=9396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15944, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5102, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=491067, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49598, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=491067, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9396]={ + ["next_chapter"]=9397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15974, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5112, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=495978, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50094, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=495978, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9397]={ + ["next_chapter"]=9398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5121, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=500938, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50595, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=500938, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9398]={ + ["next_chapter"]=9399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16035, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5131, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=505947, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51101, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=505947, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9399]={ + ["next_chapter"]=9400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16065, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=511007, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51612, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=511007, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=49332, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=939, + ["unit"]=0 + } + }, + [9400]={ + ["next_chapter"]=9401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=16096, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5151, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=516117, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52128, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=516117, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9401]={ + ["next_chapter"]=9402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16127, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5161, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=521278, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52649, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=521278, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9402]={ + ["next_chapter"]=9403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16158, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5170, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=526491, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53176, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=526491, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9403]={ + ["next_chapter"]=9404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16189, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5180, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=531756, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53707, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=531756, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9404]={ + ["next_chapter"]=9405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16220, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=537073, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54244, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=537073, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9405]={ + ["next_chapter"]=9406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16252, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5200, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=542444, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54787, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=542444, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9406]={ + ["next_chapter"]=9407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16283, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5211, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=547868, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55335, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=547868, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9407]={ + ["next_chapter"]=9408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16315, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=553347, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55888, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=553347, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9408]={ + ["next_chapter"]=9409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16347, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5231, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=558880, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56447, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=558880, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9409]={ + ["next_chapter"]=9410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16379, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5241, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=564469, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57011, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=564469, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=54493, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=940, + ["unit"]=0 + } + }, + [9410]={ + ["next_chapter"]=9411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=16411, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5252, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=570114, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57582, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=570114, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9411]={ + ["next_chapter"]=9412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16443, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5262, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=575815, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58157, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=575815, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9412]={ + ["next_chapter"]=9413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16476, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5272, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=581573, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58739, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=581573, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9413]={ + ["next_chapter"]=9414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16508, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5283, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=587389, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59326, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=587389, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9414]={ + ["next_chapter"]=9415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16541, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5293, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=593263, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59920, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=593263, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9415]={ + ["next_chapter"]=9416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16574, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5304, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=599196, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60519, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=599196, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9416]={ + ["next_chapter"]=9417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16607, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5314, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=605187, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61124, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=605187, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9417]={ + ["next_chapter"]=9418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16641, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5325, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=611239, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61735, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=611239, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9418]={ + ["next_chapter"]=9419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16674, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5336, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=617352, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62353, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=617352, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9419]={ + ["next_chapter"]=9420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16708, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5347, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=623525, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62976, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=623525, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=60194, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=941, + ["unit"]=0 + } + }, + [9420]={ + ["next_chapter"]=9421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=16742, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5357, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=629761, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63606, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=629761, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9421]={ + ["next_chapter"]=9422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16776, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5368, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=636058, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64242, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=636058, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9422]={ + ["next_chapter"]=9423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16810, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5379, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=642419, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64884, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=642419, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9423]={ + ["next_chapter"]=9424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16844, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5390, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=648843, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65533, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=648843, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9424]={ + ["next_chapter"]=9425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16878, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5401, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=655331, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66188, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=655331, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9425]={ + ["next_chapter"]=9426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16913, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5412, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=661885, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66850, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=661885, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9426]={ + ["next_chapter"]=9427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16948, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5423, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=668503, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67519, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=668503, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9427]={ + ["next_chapter"]=9428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16983, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5434, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=675188, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68194, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=675188, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9428]={ + ["next_chapter"]=9429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5446, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=681940, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68876, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=681940, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9429]={ + ["next_chapter"]=9430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17053, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5457, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=688760, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69565, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=688760, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=66491, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=942, + ["unit"]=0 + } + }, + [9430]={ + ["next_chapter"]=9431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=17088, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5468, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=695647, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70260, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=695647, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9431]={ + ["next_chapter"]=9432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17124, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5480, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=702604, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70963, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=702604, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9432]={ + ["next_chapter"]=9433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17160, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5491, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=709630, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71673, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=709630, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9433]={ + ["next_chapter"]=9434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17196, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5503, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=716726, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72389, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=716726, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9434]={ + ["next_chapter"]=9435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17232, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5514, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=723893, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73113, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=723893, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9435]={ + ["next_chapter"]=9436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17268, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5526, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=731132, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73844, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=731132, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9436]={ + ["next_chapter"]=9437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17304, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5537, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=738444, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74583, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=738444, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9437]={ + ["next_chapter"]=9438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17341, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5549, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=745828, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75329, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=745828, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9438]={ + ["next_chapter"]=9439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17378, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5561, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=753286, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76082, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=753286, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9439]={ + ["next_chapter"]=9440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17415, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5573, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=760819, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76843, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=760819, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=73448, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=943, + ["unit"]=0 + } + }, + [9440]={ + ["next_chapter"]=9441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=17452, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5585, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=768427, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77611, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=768427, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9441]={ + ["next_chapter"]=9442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17489, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5596, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=776112, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78387, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=776112, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9442]={ + ["next_chapter"]=9443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17526, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5608, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=783873, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79171, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=783873, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9443]={ + ["next_chapter"]=9444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17564, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5620, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=791712, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79963, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=791712, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9444]={ + ["next_chapter"]=9445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17602, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5633, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=799629, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80763, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=799629, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9445]={ + ["next_chapter"]=9446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17640, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5645, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=807625, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81570, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=807625, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9446]={ + ["next_chapter"]=9447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17678, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5657, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=815701, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82386, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=815701, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9447]={ + ["next_chapter"]=9448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17716, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5669, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=823858, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83210, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=823858, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9448]={ + ["next_chapter"]=9449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17755, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5681, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=832097, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84042, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=832097, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9449]={ + ["next_chapter"]=9450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17793, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5694, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=840418, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84882, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=840418, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=81132, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=944, + ["unit"]=0 + } + }, + [9450]={ + ["next_chapter"]=9451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=17832, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5706, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=848822, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85731, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=848822, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9451]={ + ["next_chapter"]=9452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17871, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5719, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=857310, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86588, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=857310, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9452]={ + ["next_chapter"]=9453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17910, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5731, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=865883, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87454, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=865883, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9453]={ + ["next_chapter"]=9454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17949, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5744, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=874542, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88329, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=874542, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9454]={ + ["next_chapter"]=9455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17989, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5756, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=883288, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89212, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=883288, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9455]={ + ["next_chapter"]=9456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18029, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5769, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=892120, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90104, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=892120, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9456]={ + ["next_chapter"]=9457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18068, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5782, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=901042, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91005, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=901042, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9457]={ + ["next_chapter"]=9458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18108, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5795, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=910052, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91915, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=910052, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9458]={ + ["next_chapter"]=9459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18149, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5808, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=919153, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92834, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=919153, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9459]={ + ["next_chapter"]=9460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18189, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5820, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=928344, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93763, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=928344, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=89620, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=945, + ["unit"]=0 + } + }, + [9460]={ + ["next_chapter"]=9461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=18230, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5833, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=937628, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94700, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=937628, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9461]={ + ["next_chapter"]=9462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18270, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=947004, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95647, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=947004, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9462]={ + ["next_chapter"]=9463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18311, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5860, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=956474, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96604, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=956474, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9463]={ + ["next_chapter"]=9464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18352, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5873, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=966039, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97570, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=966039, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9464]={ + ["next_chapter"]=9465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18393, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5886, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=975699, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98546, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=975699, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9465]={ + ["next_chapter"]=9466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5899, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=985456, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99531, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=985456, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9466]={ + ["next_chapter"]=9467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18476, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5912, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=995311, + ["unit"]=12 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100526, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=995311, + ["unit"]=12 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9467]={ + ["next_chapter"]=9468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18518, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5926, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1005, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101532, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1005, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9468]={ + ["next_chapter"]=9469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18560, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5939, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1015, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102547, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1015, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9469]={ + ["next_chapter"]=9470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18602, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5953, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1025, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103572, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1025, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=98997, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=946, + ["unit"]=0 + } + }, + [9470]={ + ["next_chapter"]=9471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=18645, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5966, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1036, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104608, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1036, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9471]={ + ["next_chapter"]=9472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18687, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5980, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1046, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105654, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1046, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9472]={ + ["next_chapter"]=9473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18730, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=5994, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1057, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106711, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1057, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9473]={ + ["next_chapter"]=9474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18773, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6007, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1067, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107778, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1067, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9474]={ + ["next_chapter"]=9475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18816, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6021, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1078, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108856, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1078, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9475]={ + ["next_chapter"]=9476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18859, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6035, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1089, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109944, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1089, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9476]={ + ["next_chapter"]=9477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18902, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6049, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1099, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111044, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1099, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9477]={ + ["next_chapter"]=9478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18946, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6063, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1110, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112154, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1110, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9478]={ + ["next_chapter"]=9479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18990, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1122, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113276, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1122, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9479]={ + ["next_chapter"]=9480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19034, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6091, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1133, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114408, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1133, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=109354, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=947, + ["unit"]=0 + } + }, + [9480]={ + ["next_chapter"]=9481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=19078, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6105, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1144, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115552, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1144, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9481]={ + ["next_chapter"]=9482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19122, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6119, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1156, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116708, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1156, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9482]={ + ["next_chapter"]=9483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19167, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6133, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1167, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117875, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1167, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9483]={ + ["next_chapter"]=9484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19211, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6148, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1179, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119054, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1179, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9484]={ + ["next_chapter"]=9485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19256, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6162, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1191, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120244, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1191, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9485]={ + ["next_chapter"]=9486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19301, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6176, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1202, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121447, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1202, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9486]={ + ["next_chapter"]=9487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19347, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6191, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1214, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122661, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1214, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9487]={ + ["next_chapter"]=9488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19392, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6205, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1227, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123888, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1227, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9488]={ + ["next_chapter"]=9489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19438, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6220, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1239, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125127, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1239, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9489]={ + ["next_chapter"]=9490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19484, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6235, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1251, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126378, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1251, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=120795, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=948, + ["unit"]=0 + } + }, + [9490]={ + ["next_chapter"]=9491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=19530, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6249, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1264, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127642, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1264, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9491]={ + ["next_chapter"]=9492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19576, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6264, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1276, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128918, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1276, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9492]={ + ["next_chapter"]=9493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19622, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6279, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1289, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130207, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1289, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9493]={ + ["next_chapter"]=9494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19669, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6294, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1302, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131509, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1302, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9494]={ + ["next_chapter"]=9495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19715, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6309, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1315, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132825, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1315, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9495]={ + ["next_chapter"]=9496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19762, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6324, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1328, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134153, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1328, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9496]={ + ["next_chapter"]=9497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19810, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6339, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1342, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135494, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1342, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9497]={ + ["next_chapter"]=9498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19857, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6354, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1355, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136849, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1355, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9498]={ + ["next_chapter"]=9499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19904, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6369, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1368, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138218, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1368, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9499]={ + ["next_chapter"]=9500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19952, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6385, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1382, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139600, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1382, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=133433, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=949, + ["unit"]=0 + } + }, + [9500]={ + ["next_chapter"]=9501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1396, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140996, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1396, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9501]={ + ["next_chapter"]=9502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1410, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142406, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1410, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9502]={ + ["next_chapter"]=9503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1424, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143830, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1424, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9503]={ + ["next_chapter"]=9504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1438, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145268, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1438, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9504]={ + ["next_chapter"]=9505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1453, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146721, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1453, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9505]={ + ["next_chapter"]=9506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1467, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148188, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1467, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9506]={ + ["next_chapter"]=9507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1482, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149670, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1482, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9507]={ + ["next_chapter"]=9508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1497, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151167, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1497, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9508]={ + ["next_chapter"]=9509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1512, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152678, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1512, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9509]={ + ["next_chapter"]=9510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1527, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154205, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1527, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=147393, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=950, + ["unit"]=0 + } + }, + [9510]={ + ["next_chapter"]=9511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1542, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155747, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1542, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9511]={ + ["next_chapter"]=9512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1557, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157305, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1557, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9512]={ + ["next_chapter"]=9513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1573, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158878, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1573, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9513]={ + ["next_chapter"]=9514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1589, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160467, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1589, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9514]={ + ["next_chapter"]=9515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1605, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162071, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1605, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9515]={ + ["next_chapter"]=9516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1621, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163692, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1621, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9516]={ + ["next_chapter"]=9517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1637, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165329, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1637, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9517]={ + ["next_chapter"]=9518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1653, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166982, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1653, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9518]={ + ["next_chapter"]=9519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1670, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168652, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1670, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9519]={ + ["next_chapter"]=9520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1687, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170338, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1687, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=162813, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=951, + ["unit"]=0 + } + }, + [9520]={ + ["next_chapter"]=9521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=20001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1703, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172042, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1703, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9521]={ + ["next_chapter"]=9522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1720, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173762, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1720, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9522]={ + ["next_chapter"]=9523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1738, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175500, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1738, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9523]={ + ["next_chapter"]=9524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1755, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177255, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1755, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9524]={ + ["next_chapter"]=9525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1773, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179027, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1773, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9525]={ + ["next_chapter"]=9526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1790, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180818, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1790, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9526]={ + ["next_chapter"]=9527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1808, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182626, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1808, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9527]={ + ["next_chapter"]=9528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1826, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184452, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1826, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9528]={ + ["next_chapter"]=9529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1845, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186297, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1845, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9529]={ + ["next_chapter"]=9530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1863, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188160, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1863, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=179847, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=952, + ["unit"]=0 + } + }, + [9530]={ + ["next_chapter"]=9531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=20003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1882, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190041, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1882, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9531]={ + ["next_chapter"]=9532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20004, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1900, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191942, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1900, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9532]={ + ["next_chapter"]=9533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20004, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1919, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193861, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1919, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9533]={ + ["next_chapter"]=9534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6602, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1939, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195800, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1939, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9534]={ + ["next_chapter"]=9535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6602, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1958, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197758, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1958, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9535]={ + ["next_chapter"]=9536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6602, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1978, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199735, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1978, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9536]={ + ["next_chapter"]=9537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20006, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6602, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1997, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201733, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=1997, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9537]={ + ["next_chapter"]=9538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20006, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6602, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2017, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203750, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2017, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9538]={ + ["next_chapter"]=9539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6602, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2037, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205787, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2037, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9539]={ + ["next_chapter"]=9540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20008, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2058, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207845, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2058, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=198663, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=953, + ["unit"]=0 + } + }, + [9540]={ + ["next_chapter"]=9541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=20008, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2078, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209924, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2078, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9541]={ + ["next_chapter"]=9542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20009, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2099, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212023, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2099, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9542]={ + ["next_chapter"]=9543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20009, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2120, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214143, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2120, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9543]={ + ["next_chapter"]=9544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2141, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216285, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2141, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9544]={ + ["next_chapter"]=9545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20011, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6604, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2163, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218448, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2163, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9545]={ + ["next_chapter"]=9546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20012, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6604, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2184, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220632, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2184, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9546]={ + ["next_chapter"]=9547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20012, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6604, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2206, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222838, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2206, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9547]={ + ["next_chapter"]=9548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20013, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6604, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2228, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225067, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2228, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9548]={ + ["next_chapter"]=9549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20014, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6605, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2251, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227317, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2251, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9549]={ + ["next_chapter"]=9550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20015, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6605, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2273, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229591, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2273, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=219447, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=954, + ["unit"]=0 + } + }, + [9550]={ + ["next_chapter"]=9551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=20016, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6605, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2296, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231886, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2296, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9551]={ + ["next_chapter"]=9552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20017, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6606, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2319, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234205, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2319, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9552]={ + ["next_chapter"]=9553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6606, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2342, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236547, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2342, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9553]={ + ["next_chapter"]=9554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20019, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6606, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2365, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238913, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2365, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9554]={ + ["next_chapter"]=9555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20020, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6607, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2389, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241302, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2389, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9555]={ + ["next_chapter"]=9556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20021, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6607, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2413, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243715, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2413, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9556]={ + ["next_chapter"]=9557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20022, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6607, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2437, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246152, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2437, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9557]={ + ["next_chapter"]=9558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6608, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2462, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248614, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2462, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9558]={ + ["next_chapter"]=9559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20025, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6608, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2486, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251100, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2486, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9559]={ + ["next_chapter"]=9560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20026, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6609, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2511, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253611, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2511, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=242406, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=955, + ["unit"]=0 + } + }, + [9560]={ + ["next_chapter"]=9561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=20028, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6609, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2536, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256147, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2536, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9561]={ + ["next_chapter"]=9562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20029, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2561, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258708, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2561, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9562]={ + ["next_chapter"]=9563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20031, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2587, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261295, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2587, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9563]={ + ["next_chapter"]=9564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20032, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6611, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2613, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263908, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2613, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9564]={ + ["next_chapter"]=9565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20034, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6611, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2639, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266548, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2639, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9565]={ + ["next_chapter"]=9566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20035, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6612, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2665, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269213, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2665, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9566]={ + ["next_chapter"]=9567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20037, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6612, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2692, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271905, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2692, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9567]={ + ["next_chapter"]=9568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20038, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6613, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2719, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274624, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2719, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9568]={ + ["next_chapter"]=9569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20040, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6613, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2746, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277370, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2746, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9569]={ + ["next_chapter"]=9570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20042, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6614, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2774, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280144, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2774, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=267768, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=956, + ["unit"]=0 + } + }, + [9570]={ + ["next_chapter"]=9571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=20044, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6614, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2801, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=282946, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2801, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9571]={ + ["next_chapter"]=9572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20046, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6615, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2829, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=285775, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2829, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9572]={ + ["next_chapter"]=9573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20048, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6616, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2858, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288633, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2858, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9573]={ + ["next_chapter"]=9574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20050, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6616, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2886, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291519, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2886, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9574]={ + ["next_chapter"]=9575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20052, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6617, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2915, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=294434, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2915, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9575]={ + ["next_chapter"]=9576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20054, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6618, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2944, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=297379, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2944, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9576]={ + ["next_chapter"]=9577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6619, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2974, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300352, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=2974, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9577]={ + ["next_chapter"]=9578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20058, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6619, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3004, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=303356, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3004, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9578]={ + ["next_chapter"]=9579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20061, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6620, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3034, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=306389, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3034, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9579]={ + ["next_chapter"]=9580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20063, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6621, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3064, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=309453, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3064, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=295782, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=957, + ["unit"]=0 + } + }, + [9580]={ + ["next_chapter"]=9581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=20066, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6622, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3095, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=312548, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3095, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9581]={ + ["next_chapter"]=9582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20068, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6622, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3125, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=315673, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3125, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9582]={ + ["next_chapter"]=9583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20071, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6623, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3157, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=318830, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3157, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9583]={ + ["next_chapter"]=9584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20073, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6624, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3188, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322018, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3188, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9584]={ + ["next_chapter"]=9585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20076, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6625, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3220, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325239, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3220, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9585]={ + ["next_chapter"]=9586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20079, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6626, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3252, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328491, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3252, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9586]={ + ["next_chapter"]=9587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20081, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6627, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3285, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331776, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3285, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9587]={ + ["next_chapter"]=9588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20084, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6628, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3318, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335094, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3318, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9588]={ + ["next_chapter"]=9589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20087, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6629, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3351, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338445, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3351, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9589]={ + ["next_chapter"]=9590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20090, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3384, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=341829, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3384, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=326727, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=958, + ["unit"]=0 + } + }, + [9590]={ + ["next_chapter"]=9591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=20093, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6631, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3418, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=345247, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3418, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9591]={ + ["next_chapter"]=9592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20096, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6632, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3452, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=348700, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3452, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9592]={ + ["next_chapter"]=9593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20100, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6633, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3487, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=352187, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3487, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9593]={ + ["next_chapter"]=9594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20103, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6634, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3522, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=355709, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3522, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9594]={ + ["next_chapter"]=9595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20106, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6635, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3557, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=359266, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3557, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9595]={ + ["next_chapter"]=9596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20110, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6636, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3593, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362858, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3593, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9596]={ + ["next_chapter"]=9597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20113, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6637, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3629, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366487, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3629, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9597]={ + ["next_chapter"]=9598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20117, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6639, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3665, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370152, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3665, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9598]={ + ["next_chapter"]=9599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20120, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6640, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3702, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=373853, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3702, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9599]={ + ["next_chapter"]=9600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20124, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6641, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3739, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=377592, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3739, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=360910, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=959, + ["unit"]=0 + } + }, + [9600]={ + ["next_chapter"]=9601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=20128, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6642, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3776, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=381368, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3776, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9601]={ + ["next_chapter"]=9602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20132, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6644, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3814, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=385182, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3814, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9602]={ + ["next_chapter"]=9603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20136, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6645, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3852, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=389033, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3852, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9603]={ + ["next_chapter"]=9604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20140, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6646, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3890, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=392924, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3890, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9604]={ + ["next_chapter"]=9605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20144, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6648, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3929, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=396853, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3929, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9605]={ + ["next_chapter"]=9606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20148, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6649, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3969, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=400821, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=3969, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9606]={ + ["next_chapter"]=9607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20152, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6650, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4008, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=404830, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4008, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9607]={ + ["next_chapter"]=9608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20157, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6652, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4048, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=408878, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4048, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9608]={ + ["next_chapter"]=9609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20161, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6653, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4089, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=412967, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4089, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9609]={ + ["next_chapter"]=9610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20166, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6655, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4130, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=417096, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4130, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=398669, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=960, + ["unit"]=0 + } + }, + [9610]={ + ["next_chapter"]=9611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=20170, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6656, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4171, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=421267, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4171, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9611]={ + ["next_chapter"]=9612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20175, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6658, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4213, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=425480, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4213, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9612]={ + ["next_chapter"]=9613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20180, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6659, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4255, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=429735, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4255, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9613]={ + ["next_chapter"]=9614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20185, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6661, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4297, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=434032, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4297, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9614]={ + ["next_chapter"]=9615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20190, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6663, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4340, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=438373, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4340, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9615]={ + ["next_chapter"]=9616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20195, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6664, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4384, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=442756, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4384, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9616]={ + ["next_chapter"]=9617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20200, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6666, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4428, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=447184, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4428, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9617]={ + ["next_chapter"]=9618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20205, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6668, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4472, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451656, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4472, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9618]={ + ["next_chapter"]=9619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20210, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6669, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4517, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456172, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4517, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9619]={ + ["next_chapter"]=9620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20216, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6671, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4562, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=460734, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4562, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=440379, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=961, + ["unit"]=0 + } + }, + [9620]={ + ["next_chapter"]=9621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=20221, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6673, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4607, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=465341, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4607, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9621]={ + ["next_chapter"]=9622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20227, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6675, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4653, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=469995, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4653, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9622]={ + ["next_chapter"]=9623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20232, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6677, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4700, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=474695, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4700, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9623]={ + ["next_chapter"]=9624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20238, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6679, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4747, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=479442, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4747, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9624]={ + ["next_chapter"]=9625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20244, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6681, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4794, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=484236, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4794, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9625]={ + ["next_chapter"]=9626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20250, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6683, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4842, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=489078, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4842, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9626]={ + ["next_chapter"]=9627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20256, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6684, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4891, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=493969, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4891, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9627]={ + ["next_chapter"]=9628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20262, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6687, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4940, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=498909, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4940, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9628]={ + ["next_chapter"]=9629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20268, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6689, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4989, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=503898, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=4989, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9629]={ + ["next_chapter"]=9630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20275, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6691, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5039, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=508937, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5039, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=486452, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=962, + ["unit"]=0 + } + }, + [9630]={ + ["next_chapter"]=9631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=20281, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6693, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5089, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=514026, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5089, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9631]={ + ["next_chapter"]=9632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20288, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6695, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5140, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=519166, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5140, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9632]={ + ["next_chapter"]=9633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20294, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6697, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5192, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=524358, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5192, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9633]={ + ["next_chapter"]=9634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20301, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6699, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5244, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=529602, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5244, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9634]={ + ["next_chapter"]=9635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20308, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6702, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5296, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534898, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5296, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9635]={ + ["next_chapter"]=9636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20315, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6704, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5349, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540247, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5349, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9636]={ + ["next_chapter"]=9637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20322, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6706, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5402, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=545649, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5402, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9637]={ + ["next_chapter"]=9638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20329, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6709, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5456, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=551106, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5456, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9638]={ + ["next_chapter"]=9639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20336, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6711, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5511, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=556617, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5511, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9639]={ + ["next_chapter"]=9640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20344, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6713, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5566, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=562183, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5566, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=537346, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=963, + ["unit"]=0 + } + }, + [9640]={ + ["next_chapter"]=9641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=20351, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6716, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5622, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=567805, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5622, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9641]={ + ["next_chapter"]=9642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20359, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6718, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5678, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=573483, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5678, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9642]={ + ["next_chapter"]=9643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20367, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6721, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5735, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=579218, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5735, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9643]={ + ["next_chapter"]=9644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20374, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6724, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5792, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=585010, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5792, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9644]={ + ["next_chapter"]=9645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20382, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6726, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5850, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=590860, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5850, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9645]={ + ["next_chapter"]=9646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20390, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6729, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5909, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=596769, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5909, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9646]={ + ["next_chapter"]=9647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20398, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6731, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5968, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=602736, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=5968, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9647]={ + ["next_chapter"]=9648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20407, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6734, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6027, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=608764, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6027, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9648]={ + ["next_chapter"]=9649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20415, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6737, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6088, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=614851, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6088, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9649]={ + ["next_chapter"]=9650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20423, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6740, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6149, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=621000, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6149, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=593564, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=964, + ["unit"]=0 + } + }, + [9650]={ + ["next_chapter"]=9651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=20432, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6743, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6210, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=627210, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6210, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9651]={ + ["next_chapter"]=9652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20441, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6745, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6272, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=633482, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6272, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9652]={ + ["next_chapter"]=9653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20450, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6748, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6335, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=639817, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6335, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9653]={ + ["next_chapter"]=9654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20458, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6751, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6398, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=646215, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6398, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9654]={ + ["next_chapter"]=9655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20467, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6754, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6462, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=652677, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6462, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9655]={ + ["next_chapter"]=9656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20477, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6757, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6527, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=659204, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6527, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9656]={ + ["next_chapter"]=9657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20486, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6760, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6592, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=665796, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6592, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9657]={ + ["next_chapter"]=9658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20495, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6763, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6658, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=672454, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6658, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9658]={ + ["next_chapter"]=9659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6767, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6725, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=679178, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6725, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9659]={ + ["next_chapter"]=9660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20515, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6770, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6792, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=685970, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6792, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=655664, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=965, + ["unit"]=0 + } + }, + [9660]={ + ["next_chapter"]=9661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=20524, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6773, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6860, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=692830, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6860, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9661]={ + ["next_chapter"]=9662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20534, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6776, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6928, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=699758, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6928, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9662]={ + ["next_chapter"]=9663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20544, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6780, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6998, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=706756, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=6998, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9663]={ + ["next_chapter"]=9664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20554, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6783, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7068, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=713823, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7068, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9664]={ + ["next_chapter"]=9665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20565, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6786, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7138, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=720961, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7138, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9665]={ + ["next_chapter"]=9666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20575, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6790, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7210, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=728171, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7210, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9666]={ + ["next_chapter"]=9667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20586, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6793, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7282, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=735453, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7282, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9667]={ + ["next_chapter"]=9668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20596, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6797, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7355, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=742807, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7355, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9668]={ + ["next_chapter"]=9669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20607, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6800, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7428, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=750235, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7428, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9669]={ + ["next_chapter"]=9670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20618, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6804, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7502, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=757738, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7502, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=724261, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=966, + ["unit"]=0 + } + }, + [9670]={ + ["next_chapter"]=9671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=20629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6808, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7577, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=765315, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7577, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9671]={ + ["next_chapter"]=9672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20640, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6811, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7653, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=772968, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7653, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9672]={ + ["next_chapter"]=9673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20651, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6815, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7730, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=780698, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7730, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9673]={ + ["next_chapter"]=9674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20663, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6819, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7807, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=788505, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7807, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9674]={ + ["next_chapter"]=9675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20674, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6823, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7885, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=796390, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7885, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9675]={ + ["next_chapter"]=9676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20686, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6826, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7964, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=804354, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=7964, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9676]={ + ["next_chapter"]=9677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20698, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6830, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8044, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=812397, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8044, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9677]={ + ["next_chapter"]=9678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20710, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6834, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8124, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=820521, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8124, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9678]={ + ["next_chapter"]=9679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20722, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6838, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8205, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=828727, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8205, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9679]={ + ["next_chapter"]=9680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20734, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8287, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=837014, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8287, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=800035, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=967, + ["unit"]=0 + } + }, + [9680]={ + ["next_chapter"]=9681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=20746, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8370, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=845384, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8370, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9681]={ + ["next_chapter"]=9682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20759, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6850, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8454, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=853838, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8454, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9682]={ + ["next_chapter"]=9683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20772, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6855, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8538, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=862376, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8538, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9683]={ + ["next_chapter"]=9684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20784, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6859, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8624, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=871000, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8624, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9684]={ + ["next_chapter"]=9685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20797, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6863, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8710, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=879710, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8710, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9685]={ + ["next_chapter"]=9686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20810, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6867, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8797, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=888507, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8797, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9686]={ + ["next_chapter"]=9687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20824, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6872, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8885, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=897392, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8885, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9687]={ + ["next_chapter"]=9688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20837, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6876, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8974, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=906366, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=8974, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9688]={ + ["next_chapter"]=9689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20851, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6881, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9064, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=915430, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9064, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9689]={ + ["next_chapter"]=9690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20864, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6885, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9154, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=924584, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9154, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=883737, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=968, + ["unit"]=0 + } + }, + [9690]={ + ["next_chapter"]=9691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=20878, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6890, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9246, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=933830, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9246, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9691]={ + ["next_chapter"]=9692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20892, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6894, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9338, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=943168, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9338, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9692]={ + ["next_chapter"]=9693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20906, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6899, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9432, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=952600, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9432, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9693]={ + ["next_chapter"]=9694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20920, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6904, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9526, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=962126, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9526, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9694]={ + ["next_chapter"]=9695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20935, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9621, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=971747, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9621, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9695]={ + ["next_chapter"]=9696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20949, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6913, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9717, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=981464, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9717, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9696]={ + ["next_chapter"]=9697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20964, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9815, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=991279, + ["unit"]=13 + }, + ["idle_gold"]={ + ["value"]=9815, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9697]={ + ["next_chapter"]=9698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20979, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6923, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9913, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1001, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9913, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9698]={ + ["next_chapter"]=9699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20994, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6928, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10012, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1011, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10012, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9699]={ + ["next_chapter"]=9700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21009, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6933, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10112, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1021, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10112, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=976195, + ["unit"]=13 + }, + ["grasp_mastery_reward"]={ + ["value"]=969, + ["unit"]=0 + } + }, + [9700]={ + ["next_chapter"]=9701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=21024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6938, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10213, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1032, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10213, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9701]={ + ["next_chapter"]=9702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21039, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6943, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10315, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1042, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10315, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9702]={ + ["next_chapter"]=9703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21055, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6948, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10418, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1052, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10418, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9703]={ + ["next_chapter"]=9704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21071, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6953, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10523, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1063, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10523, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9704]={ + ["next_chapter"]=9705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21087, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6959, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10628, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1073, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10628, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9705]={ + ["next_chapter"]=9706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21103, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6964, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10734, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1084, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10734, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9706]={ + ["next_chapter"]=9707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21119, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6969, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10841, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1095, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10841, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9707]={ + ["next_chapter"]=9708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21135, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6975, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10950, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1106, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=10950, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9708]={ + ["next_chapter"]=9709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21152, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6980, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11059, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1117, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11059, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9709]={ + ["next_chapter"]=9710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21169, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6986, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11170, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1128, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11170, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1078, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=970, + ["unit"]=0 + } + }, + [9710]={ + ["next_chapter"]=9711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=21185, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6991, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11282, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1139, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11282, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9711]={ + ["next_chapter"]=9712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21202, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=6997, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11394, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1151, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11394, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9712]={ + ["next_chapter"]=9713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21220, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7002, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11508, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1162, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11508, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9713]={ + ["next_chapter"]=9714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21237, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7008, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11624, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1174, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11624, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9714]={ + ["next_chapter"]=9715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21254, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7014, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11740, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1186, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11740, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9715]={ + ["next_chapter"]=9716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21272, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7020, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11857, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1198, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11857, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9716]={ + ["next_chapter"]=9717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21290, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7026, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11976, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1210, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=11976, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9717]={ + ["next_chapter"]=9718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21308, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7032, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12095, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1222, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=12095, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9718]={ + ["next_chapter"]=9719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21326, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7038, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12216, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1234, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=12216, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9719]={ + ["next_chapter"]=9720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21344, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7044, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12339, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1246, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=12339, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1191, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=971, + ["unit"]=0 + } + }, + [9720]={ + ["next_chapter"]=9721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=21363, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12462, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1259, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=12462, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9721]={ + ["next_chapter"]=9722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21382, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7056, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12587, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1271, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=12587, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9722]={ + ["next_chapter"]=9723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21400, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12712, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1284, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=12712, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9723]={ + ["next_chapter"]=9724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21419, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7068, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12840, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1297, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=12840, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9724]={ + ["next_chapter"]=9725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21439, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7075, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12968, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1310, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=12968, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9725]={ + ["next_chapter"]=9726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21458, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7081, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13098, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1323, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=13098, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9726]={ + ["next_chapter"]=9727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21478, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7088, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13229, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1336, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=13229, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9727]={ + ["next_chapter"]=9728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21497, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7094, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13361, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1349, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=13361, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9728]={ + ["next_chapter"]=9729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21517, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7101, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13495, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1363, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=13495, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9729]={ + ["next_chapter"]=9730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21537, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7107, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13629, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1377, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=13629, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1316, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=972, + ["unit"]=0 + } + }, + [9730]={ + ["next_chapter"]=9731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=21557, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7114, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13766, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1390, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=13766, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9731]={ + ["next_chapter"]=9732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21578, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7121, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13903, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1404, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=13903, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9732]={ + ["next_chapter"]=9733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21598, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7127, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14042, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1418, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=14042, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9733]={ + ["next_chapter"]=9734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21619, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7134, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14183, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1432, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=14183, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9734]={ + ["next_chapter"]=9735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21640, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14325, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1447, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=14325, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9735]={ + ["next_chapter"]=9736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21661, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7148, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14468, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1461, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=14468, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9736]={ + ["next_chapter"]=9737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21682, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7155, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14613, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1476, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=14613, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9737]={ + ["next_chapter"]=9738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21704, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7162, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14759, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1491, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=14759, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9738]={ + ["next_chapter"]=9739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21726, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7169, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14906, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1506, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=14906, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9739]={ + ["next_chapter"]=9740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21747, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7177, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15055, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1521, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=15055, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1453, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=973, + ["unit"]=0 + } + }, + [9740]={ + ["next_chapter"]=9741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=21769, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7184, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15206, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1536, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=15206, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9741]={ + ["next_chapter"]=9742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21792, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7191, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15358, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1551, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=15358, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9742]={ + ["next_chapter"]=9743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21814, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7199, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15512, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1567, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=15512, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9743]={ + ["next_chapter"]=9744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21837, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7206, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15667, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1582, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=15667, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9744]={ + ["next_chapter"]=9745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21859, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7214, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15823, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1598, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=15823, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9745]={ + ["next_chapter"]=9746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21882, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15982, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1614, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=15982, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9746]={ + ["next_chapter"]=9747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21906, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7229, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16141, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1630, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=16141, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9747]={ + ["next_chapter"]=9748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21929, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7237, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16303, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1647, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=16303, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9748]={ + ["next_chapter"]=9749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21952, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7244, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16466, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1663, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=16466, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9749]={ + ["next_chapter"]=9750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21976, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7252, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16631, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1680, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=16631, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1605, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=974, + ["unit"]=0 + } + }, + [9750]={ + ["next_chapter"]=9751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=22000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7260, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16797, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1696, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=16797, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9751]={ + ["next_chapter"]=9752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7268, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16965, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1713, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=16965, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9752]={ + ["next_chapter"]=9753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22048, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7276, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17135, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1731, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=17135, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9753]={ + ["next_chapter"]=9754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22073, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7284, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17306, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1748, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=17306, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9754]={ + ["next_chapter"]=9755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22098, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7292, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17479, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1765, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=17479, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9755]={ + ["next_chapter"]=9756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22122, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7300, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17654, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1783, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=17654, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9756]={ + ["next_chapter"]=9757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22147, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7309, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17830, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1801, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=17830, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9757]={ + ["next_chapter"]=9758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22173, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7317, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18009, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1819, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=18009, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9758]={ + ["next_chapter"]=9759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22198, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7325, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18189, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1837, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=18189, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9759]={ + ["next_chapter"]=9760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22224, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7334, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18371, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1855, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=18371, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1773, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=975, + ["unit"]=0 + } + }, + [9760]={ + ["next_chapter"]=9761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=22250, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7342, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18554, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1874, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=18554, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9761]={ + ["next_chapter"]=9762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22276, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18740, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1893, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=18740, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9762]={ + ["next_chapter"]=9763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22302, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7360, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18927, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1912, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=18927, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9763]={ + ["next_chapter"]=9764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22329, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7368, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19116, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1931, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=19116, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9764]={ + ["next_chapter"]=9765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22355, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7377, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19308, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1950, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=19308, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9765]={ + ["next_chapter"]=9766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22382, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7386, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19501, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1970, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=19501, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9766]={ + ["next_chapter"]=9767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22409, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7395, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19696, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1989, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=19696, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9767]={ + ["next_chapter"]=9768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22436, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7404, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19893, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2009, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=19893, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9768]={ + ["next_chapter"]=9769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22464, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7413, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20092, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2029, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=20092, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9769]={ + ["next_chapter"]=9770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22492, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7422, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20292, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2050, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=20292, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=1959, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=976, + ["unit"]=0 + } + }, + [9770]={ + ["next_chapter"]=9771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=22519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7431, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20495, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2070, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=20495, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9771]={ + ["next_chapter"]=9772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22548, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7441, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20700, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2091, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=20700, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9772]={ + ["next_chapter"]=9773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22576, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7450, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20907, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2112, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=20907, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9773]={ + ["next_chapter"]=9774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22604, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7459, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21116, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2133, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=21116, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9774]={ + ["next_chapter"]=9775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22633, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7469, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21328, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2154, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=21328, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9775]={ + ["next_chapter"]=9776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22662, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7478, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21541, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2176, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=21541, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9776]={ + ["next_chapter"]=9777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22691, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7488, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21756, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2197, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=21756, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9777]={ + ["next_chapter"]=9778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22721, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7498, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21974, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2219, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=21974, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9778]={ + ["next_chapter"]=9779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22750, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7508, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22194, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2242, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=22194, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9779]={ + ["next_chapter"]=9780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22780, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7517, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22416, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2264, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=22416, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2164, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=977, + ["unit"]=0 + } + }, + [9780]={ + ["next_chapter"]=9781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=22810, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7527, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22640, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2287, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=22640, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9781]={ + ["next_chapter"]=9782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22840, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7537, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22866, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2309, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=22866, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9782]={ + ["next_chapter"]=9783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22870, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7547, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23095, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2333, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=23095, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9783]={ + ["next_chapter"]=9784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22901, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7557, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23326, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2356, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=23326, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9784]={ + ["next_chapter"]=9785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22932, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7568, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23559, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2379, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=23559, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9785]={ + ["next_chapter"]=9786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22963, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7578, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23795, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2403, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=23795, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9786]={ + ["next_chapter"]=9787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22994, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7588, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24032, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2427, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=24032, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9787]={ + ["next_chapter"]=9788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23026, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24273, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2452, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=24273, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9788]={ + ["next_chapter"]=9789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23058, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7609, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24516, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2476, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=24516, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9789]={ + ["next_chapter"]=9790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23090, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7620, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24761, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2501, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=24761, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2390, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=978, + ["unit"]=0 + } + }, + [9790]={ + ["next_chapter"]=9791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=23122, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25008, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2526, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=25008, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9791]={ + ["next_chapter"]=9792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23154, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7641, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25258, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2551, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=25258, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9792]={ + ["next_chapter"]=9793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23187, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7652, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25511, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2577, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=25511, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9793]={ + ["next_chapter"]=9794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23220, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7662, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25766, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2602, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=25766, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9794]={ + ["next_chapter"]=9795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23253, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7673, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26024, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2628, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=26024, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9795]={ + ["next_chapter"]=9796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23286, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7684, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26284, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2655, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=26284, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9796]={ + ["next_chapter"]=9797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23320, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7695, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26547, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2681, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=26547, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9797]={ + ["next_chapter"]=9798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23353, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7707, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26812, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2708, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=26812, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9798]={ + ["next_chapter"]=9799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23387, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7718, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27080, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2735, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=27080, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9799]={ + ["next_chapter"]=9800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23422, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7729, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27351, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2762, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=27351, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2640, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=979, + ["unit"]=0 + } + }, + [9800]={ + ["next_chapter"]=9801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=23456, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7740, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27625, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2790, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=27625, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9801]={ + ["next_chapter"]=9802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23491, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7752, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27901, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2818, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=27901, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9802]={ + ["next_chapter"]=9803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23526, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7763, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28180, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2846, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=28180, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9803]={ + ["next_chapter"]=9804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23561, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7775, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28462, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2875, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=28462, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9804]={ + ["next_chapter"]=9805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23596, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7787, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28746, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2903, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=28746, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9805]={ + ["next_chapter"]=9806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23632, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7798, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29034, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2932, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=29034, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9806]={ + ["next_chapter"]=9807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23668, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7810, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29324, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2962, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=29324, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9807]={ + ["next_chapter"]=9808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23704, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7822, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29617, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2991, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=29617, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9808]={ + ["next_chapter"]=9809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23740, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7834, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29914, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3021, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=29914, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9809]={ + ["next_chapter"]=9810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23776, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30213, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3051, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=30213, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=2917, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=980, + ["unit"]=0 + } + }, + [9810]={ + ["next_chapter"]=9811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=23813, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7858, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30515, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3082, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=30515, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9811]={ + ["next_chapter"]=9812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23850, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7871, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30820, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3113, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=30820, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9812]={ + ["next_chapter"]=9813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23888, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7883, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31128, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3144, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=31128, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9813]={ + ["next_chapter"]=9814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23925, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7895, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31439, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3175, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=31439, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9814]={ + ["next_chapter"]=9815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23963, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31754, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3207, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=31754, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9815]={ + ["next_chapter"]=9816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7920, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32071, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3239, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=32071, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9816]={ + ["next_chapter"]=9817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24039, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7933, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32392, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3272, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=32392, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9817]={ + ["next_chapter"]=9818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24077, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7946, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32716, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3304, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=32716, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9818]={ + ["next_chapter"]=9819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24116, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7958, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33043, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3337, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=33043, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9819]={ + ["next_chapter"]=9820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7971, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33374, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3371, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=33374, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3222, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=981, + ["unit"]=0 + } + }, + [9820]={ + ["next_chapter"]=9821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=24194, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7984, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33707, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3404, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=33707, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9821]={ + ["next_chapter"]=9822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24234, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=7997, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34044, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3438, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=34044, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9822]={ + ["next_chapter"]=9823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24273, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8010, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34385, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3473, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=34385, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9823]={ + ["next_chapter"]=9824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24313, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34729, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3508, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=34729, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9824]={ + ["next_chapter"]=9825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24354, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8037, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35076, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3543, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=35076, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9825]={ + ["next_chapter"]=9826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24394, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35427, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3578, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=35427, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9826]={ + ["next_chapter"]=9827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8063, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35781, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3614, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=35781, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9827]={ + ["next_chapter"]=9828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24476, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36139, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3650, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=36139, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9828]={ + ["next_chapter"]=9829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24517, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8091, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36500, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3687, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=36500, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9829]={ + ["next_chapter"]=9830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24558, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8104, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36865, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3723, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=36865, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3559, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=982, + ["unit"]=0 + } + }, + [9830]={ + ["next_chapter"]=9831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=24600, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8118, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37234, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3761, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=37234, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9831]={ + ["next_chapter"]=9832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24642, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8132, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37606, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3798, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=37606, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9832]={ + ["next_chapter"]=9833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24684, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8146, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37982, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3836, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=37982, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9833]={ + ["next_chapter"]=9834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24727, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8160, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38362, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3875, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=38362, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9834]={ + ["next_chapter"]=9835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24769, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8174, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38746, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3913, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=38746, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9835]={ + ["next_chapter"]=9836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24812, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8188, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39133, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3952, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=39133, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9836]={ + ["next_chapter"]=9837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24855, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8202, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39525, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3992, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=39525, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9837]={ + ["next_chapter"]=9838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24899, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8217, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39920, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4032, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=39920, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9838]={ + ["next_chapter"]=9839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24943, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8231, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40319, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4072, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=40319, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9839]={ + ["next_chapter"]=9840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24987, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8246, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40722, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4113, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=40722, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=3931, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=983, + ["unit"]=0 + } + }, + [9840]={ + ["next_chapter"]=9841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=25031, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8260, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41129, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4154, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=41129, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9841]={ + ["next_chapter"]=9842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25075, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41541, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4196, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=41541, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9842]={ + ["next_chapter"]=9843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25120, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8290, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41956, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4238, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=41956, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9843]={ + ["next_chapter"]=9844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25165, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8305, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42376, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4280, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=42376, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9844]={ + ["next_chapter"]=9845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25211, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8319, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42799, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4323, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=42799, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9845]={ + ["next_chapter"]=9846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25256, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8335, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43227, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4366, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=43227, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9846]={ + ["next_chapter"]=9847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25302, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8350, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43660, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4410, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=43660, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9847]={ + ["next_chapter"]=9848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25348, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8365, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44096, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4454, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=44096, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9848]={ + ["next_chapter"]=9849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25394, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8380, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44537, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4498, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=44537, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9849]={ + ["next_chapter"]=9850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25441, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8396, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44983, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4543, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=44983, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4343, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=984, + ["unit"]=0 + } + }, + [9850]={ + ["next_chapter"]=9851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=25488, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8411, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45432, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4589, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=45432, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9851]={ + ["next_chapter"]=9852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25535, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8427, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45887, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4635, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=45887, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9852]={ + ["next_chapter"]=9853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25583, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8442, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46346, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4681, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=46346, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9853]={ + ["next_chapter"]=9854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25630, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8458, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46809, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4728, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=46809, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9854]={ + ["next_chapter"]=9855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25678, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8474, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47277, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4775, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=47277, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9855]={ + ["next_chapter"]=9856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25727, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8490, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47750, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4823, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=47750, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9856]={ + ["next_chapter"]=9857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25775, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8506, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48227, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4871, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=48227, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9857]={ + ["next_chapter"]=9858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25824, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8522, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48710, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4920, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=48710, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9858]={ + ["next_chapter"]=9859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25873, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8538, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49197, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4969, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=49197, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9859]={ + ["next_chapter"]=9860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25922, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8554, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49689, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5019, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=49689, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=4797, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=985, + ["unit"]=0 + } + }, + [9860]={ + ["next_chapter"]=9861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=25972, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8571, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50186, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5069, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=50186, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9861]={ + ["next_chapter"]=9862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26022, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8587, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50688, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5119, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=50688, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9862]={ + ["next_chapter"]=9863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26072, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8604, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51194, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5171, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=51194, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9863]={ + ["next_chapter"]=9864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26123, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8620, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51706, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5222, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=51706, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9864]={ + ["next_chapter"]=9865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26173, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8637, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52223, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5275, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=52223, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9865]={ + ["next_chapter"]=9866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26224, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8654, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52746, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5327, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=52746, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9866]={ + ["next_chapter"]=9867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26276, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8671, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53273, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5381, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=53273, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9867]={ + ["next_chapter"]=9868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26327, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8688, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53806, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5434, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=53806, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9868]={ + ["next_chapter"]=9869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26379, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8705, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54344, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5489, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=54344, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9869]={ + ["next_chapter"]=9870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26431, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8722, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54887, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5544, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=54887, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5299, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=986, + ["unit"]=0 + } + }, + [9870]={ + ["next_chapter"]=9871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=26484, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8740, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55436, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5599, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=55436, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9871]={ + ["next_chapter"]=9872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26536, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8757, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55991, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5655, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=55991, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9872]={ + ["next_chapter"]=9873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26589, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8774, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56550, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5712, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=56550, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9873]={ + ["next_chapter"]=9874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26643, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8792, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57116, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5769, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=57116, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9874]={ + ["next_chapter"]=9875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26696, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8810, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57687, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5826, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=57687, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9875]={ + ["next_chapter"]=9876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26750, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8828, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58264, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5885, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=58264, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9876]={ + ["next_chapter"]=9877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8845, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58847, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5944, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=58847, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9877]={ + ["next_chapter"]=9878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26859, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8863, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59435, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6003, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=59435, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9878]={ + ["next_chapter"]=9879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26913, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8881, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60029, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6063, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=60029, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9879]={ + ["next_chapter"]=9880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26968, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8900, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60630, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6124, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=60630, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=5853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=987, + ["unit"]=0 + } + }, + [9880]={ + ["next_chapter"]=9881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=27024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61236, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6185, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=61236, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9881]={ + ["next_chapter"]=9882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27079, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8936, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61848, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6247, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=61848, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9882]={ + ["next_chapter"]=9883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27135, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8955, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62467, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6309, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=62467, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9883]={ + ["next_chapter"]=9884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8973, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63092, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6372, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=63092, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9884]={ + ["next_chapter"]=9885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27248, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=8992, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63723, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6436, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=63723, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9885]={ + ["next_chapter"]=9886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27305, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9010, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64360, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6500, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=64360, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9886]={ + ["next_chapter"]=9887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27362, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9029, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65003, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6565, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=65003, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9887]={ + ["next_chapter"]=9888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27419, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9048, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65653, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6631, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=65653, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9888]={ + ["next_chapter"]=9889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27477, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9067, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66310, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6697, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=66310, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9889]={ + ["next_chapter"]=9890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27535, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9086, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66973, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6764, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=66973, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=6465, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=988, + ["unit"]=0 + } + }, + [9890]={ + ["next_chapter"]=9891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=27593, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9106, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67643, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6832, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=67643, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9891]={ + ["next_chapter"]=9892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27651, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9125, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=68319, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6900, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=68319, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9892]={ + ["next_chapter"]=9893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27710, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9144, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69002, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6969, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=69002, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9893]={ + ["next_chapter"]=9894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27769, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9164, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69692, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7039, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=69692, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9894]={ + ["next_chapter"]=9895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27829, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9184, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70389, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7109, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=70389, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9895]={ + ["next_chapter"]=9896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27889, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9203, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=71093, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7180, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=71093, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9896]={ + ["next_chapter"]=9897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27949, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9223, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=71804, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7252, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=71804, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9897]={ + ["next_chapter"]=9898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28009, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9243, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72522, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7325, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=72522, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9898]={ + ["next_chapter"]=9899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28070, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9263, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=73247, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7398, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=73247, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9899]={ + ["next_chapter"]=9900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28131, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9283, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=73980, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7472, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=73980, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7142, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=989, + ["unit"]=0 + } + }, + [9900]={ + ["next_chapter"]=9901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=28192, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9303, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=74720, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7547, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=74720, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9901]={ + ["next_chapter"]=9902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28254, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9324, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=75467, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7622, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=75467, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9902]={ + ["next_chapter"]=9903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28315, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9344, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=76222, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7698, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=76222, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9903]={ + ["next_chapter"]=9904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28378, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9365, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=76984, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7775, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=76984, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9904]={ + ["next_chapter"]=9905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28440, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9385, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=77754, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7853, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=77754, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9905]={ + ["next_chapter"]=9906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9406, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78531, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7932, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=78531, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9906]={ + ["next_chapter"]=9907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28566, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9427, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=79316, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8011, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=79316, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9907]={ + ["next_chapter"]=9908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28630, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9448, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=80110, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8091, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=80110, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9908]={ + ["next_chapter"]=9909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28693, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9469, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=80911, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8172, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=80911, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9909]={ + ["next_chapter"]=9910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28757, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9490, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=81720, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8254, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=81720, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=7889, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=990, + ["unit"]=0 + } + }, + [9910]={ + ["next_chapter"]=9911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=28822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9511, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=82537, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8336, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=82537, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9911]={ + ["next_chapter"]=9912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28887, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9533, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=83362, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8420, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=83362, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9912]={ + ["next_chapter"]=9913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28952, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9554, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=84196, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8504, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=84196, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9913]={ + ["next_chapter"]=9914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29017, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9576, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=85038, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8589, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=85038, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9914]={ + ["next_chapter"]=9915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29083, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9597, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=85888, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8675, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=85888, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9915]={ + ["next_chapter"]=9916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29149, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9619, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=86747, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8761, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=86747, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9916]={ + ["next_chapter"]=9917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29215, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9641, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=87615, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8849, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=87615, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9917]={ + ["next_chapter"]=9918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29281, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9663, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=88491, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8938, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=88491, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9918]={ + ["next_chapter"]=9919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29348, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9685, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=89376, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9027, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=89376, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9919]={ + ["next_chapter"]=9920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29416, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9707, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=90269, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9117, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=90269, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=8714, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=991, + ["unit"]=0 + } + }, + [9920]={ + ["next_chapter"]=9921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=29483, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9729, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=91172, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9208, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=91172, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9921]={ + ["next_chapter"]=9922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29551, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9752, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=92084, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9300, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=92084, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9922]={ + ["next_chapter"]=9923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29619, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9774, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=93005, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9393, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=93005, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9923]={ + ["next_chapter"]=9924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29688, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9797, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=93935, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9487, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=93935, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9924]={ + ["next_chapter"]=9925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29757, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9820, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=94874, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9582, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=94874, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9925]={ + ["next_chapter"]=9926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29826, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9843, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=95823, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9678, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=95823, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9926]={ + ["next_chapter"]=9927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29896, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9866, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=96781, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9775, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=96781, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9927]={ + ["next_chapter"]=9928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29965, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9889, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=97749, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9873, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=97749, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9928]={ + ["next_chapter"]=9929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30036, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9912, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=98726, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9971, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=98726, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9929]={ + ["next_chapter"]=9930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30106, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9935, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=99714, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10071, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=99714, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=9626, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=992, + ["unit"]=0 + } + }, + [9930]={ + ["next_chapter"]=9931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=30177, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9958, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=100711, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10172, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=100711, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9931]={ + ["next_chapter"]=9932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30248, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=9982, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=101718, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10274, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=101718, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9932]={ + ["next_chapter"]=9933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30320, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10005, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=102735, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10376, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=102735, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9933]={ + ["next_chapter"]=9934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30391, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10029, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=103762, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10480, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=103762, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9934]={ + ["next_chapter"]=9935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30464, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10053, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=104800, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10585, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=104800, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9935]={ + ["next_chapter"]=9936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30536, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=105848, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10691, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=105848, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9936]={ + ["next_chapter"]=9937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30609, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10101, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=106907, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10798, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=106907, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9937]={ + ["next_chapter"]=9938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30682, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10125, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=107976, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10906, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=107976, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9938]={ + ["next_chapter"]=9939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30756, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10149, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=109055, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11015, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=109055, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9939]={ + ["next_chapter"]=9940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30829, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10174, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=110146, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11125, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=110146, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=10633, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=993, + ["unit"]=0 + } + }, + [9940]={ + ["next_chapter"]=9941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=30904, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10198, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=111247, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11236, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=111247, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9941]={ + ["next_chapter"]=9942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30978, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10223, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=112360, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11348, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=112360, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9942]={ + ["next_chapter"]=9943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31053, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10247, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=113483, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11462, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=113483, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9943]={ + ["next_chapter"]=9944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31128, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10272, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=114618, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11576, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=114618, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9944]={ + ["next_chapter"]=9945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31204, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10297, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=115764, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11692, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=115764, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9945]={ + ["next_chapter"]=9946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31280, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10322, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=116922, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11809, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=116922, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9946]={ + ["next_chapter"]=9947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31356, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10347, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=118091, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11927, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=118091, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9947]={ + ["next_chapter"]=9948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31432, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10373, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=119272, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12046, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=119272, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9948]={ + ["next_chapter"]=9949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31509, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10398, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=120465, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12167, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=120465, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9949]={ + ["next_chapter"]=9950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31586, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10424, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=121670, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12289, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=121670, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=11746, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=994, + ["unit"]=0 + } + }, + [9950]={ + ["next_chapter"]=9951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=31664, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10449, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=122886, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12412, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=122886, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9951]={ + ["next_chapter"]=9952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31742, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10475, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=124115, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12536, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=124115, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9952]={ + ["next_chapter"]=9953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31820, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10501, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=125356, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12661, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=125356, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9953]={ + ["next_chapter"]=9954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31899, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10527, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=126610, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12788, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=126610, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9954]={ + ["next_chapter"]=9955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31978, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10553, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=127876, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12915, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=127876, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9955]={ + ["next_chapter"]=9956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32057, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10579, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=129155, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13045, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=129155, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9956]={ + ["next_chapter"]=9957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10605, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=130446, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13175, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=130446, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9957]={ + ["next_chapter"]=9958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32217, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10632, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=131751, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13307, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=131751, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9958]={ + ["next_chapter"]=9959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32297, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10658, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=133068, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13440, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=133068, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9959]={ + ["next_chapter"]=9960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32378, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10685, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=134399, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13574, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=134399, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=12975, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=995, + ["unit"]=0 + } + }, + [9960]={ + ["next_chapter"]=9961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=32459, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10711, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=135743, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13710, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=135743, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9961]={ + ["next_chapter"]=9962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32540, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10738, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=137100, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13847, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=137100, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9962]={ + ["next_chapter"]=9963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32622, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10765, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=138471, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13986, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=138471, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9963]={ + ["next_chapter"]=9964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32704, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10792, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=139856, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14125, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=139856, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9964]={ + ["next_chapter"]=9965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32787, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10820, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=141255, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14267, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=141255, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9965]={ + ["next_chapter"]=9966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32870, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10847, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=142667, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14409, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=142667, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9966]={ + ["next_chapter"]=9967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32953, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10874, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=144094, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14553, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=144094, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9967]={ + ["next_chapter"]=9968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33036, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10902, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=145535, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14699, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=145535, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9968]={ + ["next_chapter"]=9969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33120, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10930, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=146990, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14846, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=146990, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9969]={ + ["next_chapter"]=9970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33205, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10958, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=148460, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14994, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=148460, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=14332, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=996, + ["unit"]=0 + } + }, + [9970]={ + ["next_chapter"]=9971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=33289, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=10985, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=149945, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15144, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=149945, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9971]={ + ["next_chapter"]=9972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33374, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11014, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=151444, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15296, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=151444, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9972]={ + ["next_chapter"]=9973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33460, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11042, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=152959, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15449, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=152959, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9973]={ + ["next_chapter"]=9974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33545, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11070, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=154488, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15603, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=154488, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9974]={ + ["next_chapter"]=9975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33632, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11098, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=156033, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15759, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=156033, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9975]={ + ["next_chapter"]=9976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33718, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11127, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=157593, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15917, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=157593, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9976]={ + ["next_chapter"]=9977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33805, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11156, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=159169, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16076, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=159169, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9977]={ + ["next_chapter"]=9978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33892, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11184, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=160761, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16237, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=160761, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9978]={ + ["next_chapter"]=9979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33980, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=162369, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16399, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=162369, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9979]={ + ["next_chapter"]=9980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34067, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11242, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=163992, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16563, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=163992, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=15831, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=997, + ["unit"]=0 + } + }, + [9980]={ + ["next_chapter"]=9981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=34156, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11271, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=165632, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16729, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=165632, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9981]={ + ["next_chapter"]=9982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34244, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11301, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=167289, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16896, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=167289, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9982]={ + ["next_chapter"]=9983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34333, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11330, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=168961, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17065, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=168961, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9983]={ + ["next_chapter"]=9984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34423, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11360, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=170651, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17236, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=170651, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9984]={ + ["next_chapter"]=9985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34513, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11389, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=172358, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17408, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=172358, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9985]={ + ["next_chapter"]=9986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34603, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11419, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=174081, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17582, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=174081, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9986]={ + ["next_chapter"]=9987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34693, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11449, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=175822, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17758, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=175822, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9987]={ + ["next_chapter"]=9988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34784, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11479, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=177580, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17936, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=177580, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9988]={ + ["next_chapter"]=9989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34875, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11509, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=179356, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18115, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=179356, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9989]={ + ["next_chapter"]=9990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34967, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11539, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=181149, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18296, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=181149, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=17488, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=998, + ["unit"]=0 + } + }, + [9990]={ + ["next_chapter"]=9991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=35059, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11569, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=182961, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18479, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=182961, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9991]={ + ["next_chapter"]=9992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35151, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=184791, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18664, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=184791, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9992]={ + ["next_chapter"]=9993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35244, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11631, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=186638, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18850, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=186638, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9993]={ + ["next_chapter"]=9994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35337, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11661, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=188505, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19039, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=188505, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9994]={ + ["next_chapter"]=9995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35431, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11692, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=190390, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19229, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=190390, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9995]={ + ["next_chapter"]=9996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35525, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11723, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=192294, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19422, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=192294, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9996]={ + ["next_chapter"]=9997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35619, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11754, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=194217, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19616, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=194217, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9997]={ + ["next_chapter"]=9998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35714, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11786, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=196159, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19812, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=196159, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9998]={ + ["next_chapter"]=9999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35809, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11817, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=198121, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20010, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=198121, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [9999]={ + ["next_chapter"]=10000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35904, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11848, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=200102, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20210, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=200102, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=19317, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=999, + ["unit"]=0 + } + }, + [10000]={ + ["next_chapter"]=10001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=36000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11880, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=202103, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20412, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=202103, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + } +} +local config = { +data=chapter2,count=5000 +} +return config \ No newline at end of file diff --git a/lua/app/config/chapter2.lua.meta b/lua/app/config/chapter2.lua.meta new file mode 100644 index 00000000..bbf74613 --- /dev/null +++ b/lua/app/config/chapter2.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 785dd02b9f129eb488783ac22e798f7c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/chapter3.lua b/lua/app/config/chapter3.lua new file mode 100644 index 00000000..2572d91a --- /dev/null +++ b/lua/app/config/chapter3.lua @@ -0,0 +1,175506 @@ +local chapter3 = { + [10001]={ + ["next_chapter"]=10002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36096, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11912, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=204124, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20617, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=204124, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10002]={ + ["next_chapter"]=10003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36193, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11944, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=206165, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20823, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=206165, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10003]={ + ["next_chapter"]=10004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36290, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=11976, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=208227, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21031, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=208227, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10004]={ + ["next_chapter"]=10005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36387, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12008, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=210309, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21241, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=210309, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10005]={ + ["next_chapter"]=10006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36485, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=212412, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21454, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=212412, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10006]={ + ["next_chapter"]=10007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36583, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12072, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=214536, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21668, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=214536, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10007]={ + ["next_chapter"]=10008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36681, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12105, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=216681, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21885, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=216681, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10008]={ + ["next_chapter"]=10009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36780, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12138, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=218848, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22104, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=218848, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10009]={ + ["next_chapter"]=10010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36880, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12170, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=221037, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22325, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=221037, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=21338, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + [10010]={ + ["next_chapter"]=10011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=36979, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12203, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=223247, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22548, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=223247, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10011]={ + ["next_chapter"]=10012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37079, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12236, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=225480, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22773, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=225480, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10012]={ + ["next_chapter"]=10013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37180, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12269, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=227734, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23001, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=227734, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10013]={ + ["next_chapter"]=10014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37281, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12303, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=230012, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23231, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=230012, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10014]={ + ["next_chapter"]=10015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37382, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12336, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=232312, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23464, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=232312, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10015]={ + ["next_chapter"]=10016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37484, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12370, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=234635, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23698, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=234635, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10016]={ + ["next_chapter"]=10017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37586, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12403, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=236981, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23935, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=236981, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10017]={ + ["next_chapter"]=10018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37688, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12437, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=239351, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24174, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=239351, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10018]={ + ["next_chapter"]=10019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37791, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12471, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=241745, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24416, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=241745, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10019]={ + ["next_chapter"]=10020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37894, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=244162, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24660, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=244162, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=23571, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1001, + ["unit"]=0 + } + }, + [10020]={ + ["next_chapter"]=10021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=37998, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12539, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=246604, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24907, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=246604, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10021]={ + ["next_chapter"]=10022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38102, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12574, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=249070, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25156, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=249070, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10022]={ + ["next_chapter"]=10023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38206, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12608, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=251560, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25408, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=251560, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10023]={ + ["next_chapter"]=10024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38311, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12643, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=254076, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25662, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=254076, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10024]={ + ["next_chapter"]=10025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38416, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12677, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=256617, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25918, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=256617, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10025]={ + ["next_chapter"]=10026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38522, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12712, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=259183, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26177, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=259183, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10026]={ + ["next_chapter"]=10027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38628, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12747, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=261775, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26439, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=261775, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10027]={ + ["next_chapter"]=10028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38734, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12782, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=264393, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26704, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=264393, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10028]={ + ["next_chapter"]=10029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38841, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12818, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=267037, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26971, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=267037, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10029]={ + ["next_chapter"]=10030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38949, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12853, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=269707, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27240, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=269707, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=26037, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1002, + ["unit"]=0 + } + }, + [10030]={ + ["next_chapter"]=10031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=39056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12889, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=272404, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27513, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=272404, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10031]={ + ["next_chapter"]=10032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39164, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12924, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=275128, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27788, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=275128, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10032]={ + ["next_chapter"]=10033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39273, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12960, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=277879, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28066, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=277879, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10033]={ + ["next_chapter"]=10034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39382, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=12996, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=280658, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28346, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=280658, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10034]={ + ["next_chapter"]=10035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39491, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13032, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=283465, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28630, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=283465, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10035]={ + ["next_chapter"]=10036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39601, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13068, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=286299, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28916, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=286299, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10036]={ + ["next_chapter"]=10037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39711, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13105, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=289162, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29205, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=289162, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10037]={ + ["next_chapter"]=10038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39821, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=292054, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29497, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=292054, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10038]={ + ["next_chapter"]=10039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39932, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=294974, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29792, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=294974, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10039]={ + ["next_chapter"]=10040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40044, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13214, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=297924, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30090, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=297924, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=28761, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1003, + ["unit"]=0 + } + }, + [10040]={ + ["next_chapter"]=10041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=40155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13251, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=300903, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30391, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=300903, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10041]={ + ["next_chapter"]=10042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40268, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13288, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=303912, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30695, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=303912, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10042]={ + ["next_chapter"]=10043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40380, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13325, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=306952, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31002, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=306952, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10043]={ + ["next_chapter"]=10044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40493, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13363, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=310021, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31312, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=310021, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10044]={ + ["next_chapter"]=10045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40607, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13400, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=313121, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31625, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=313121, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10045]={ + ["next_chapter"]=10046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40720, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13438, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=316253, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31942, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=316253, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10046]={ + ["next_chapter"]=10047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40835, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13475, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=319415, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32261, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=319415, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10047]={ + ["next_chapter"]=10048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40949, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13513, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=322609, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32584, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=322609, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10048]={ + ["next_chapter"]=10049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41065, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13551, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=325835, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32909, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=325835, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10049]={ + ["next_chapter"]=10050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41180, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13589, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=329094, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33238, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=329094, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=31770, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1004, + ["unit"]=0 + } + }, + [10050]={ + ["next_chapter"]=10051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=41296, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13628, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=332385, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33571, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=332385, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10051]={ + ["next_chapter"]=10052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41412, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13666, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=335708, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33907, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=335708, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10052]={ + ["next_chapter"]=10053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13705, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=339066, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34246, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=339066, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10053]={ + ["next_chapter"]=10054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41646, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13743, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=342456, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34588, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=342456, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10054]={ + ["next_chapter"]=10055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41764, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13782, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=345881, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34934, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=345881, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10055]={ + ["next_chapter"]=10056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41882, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13821, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=349340, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35283, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=349340, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10056]={ + ["next_chapter"]=10057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13860, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=352833, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35636, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=352833, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10057]={ + ["next_chapter"]=10058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42120, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13899, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=356361, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35992, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=356361, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10058]={ + ["next_chapter"]=10059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42239, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13939, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=359925, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36352, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=359925, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10059]={ + ["next_chapter"]=10060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42359, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=13978, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=363524, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36716, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=363524, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=35094, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1005, + ["unit"]=0 + } + }, + [10060]={ + ["next_chapter"]=10061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=42479, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=367159, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37083, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=367159, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10061]={ + ["next_chapter"]=10062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42599, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=370831, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37454, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=370831, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10062]={ + ["next_chapter"]=10063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42721, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14098, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=374539, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37828, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=374539, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10063]={ + ["next_chapter"]=10064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42842, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14138, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=378285, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38207, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=378285, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10064]={ + ["next_chapter"]=10065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42964, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=382068, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38589, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=382068, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10065]={ + ["next_chapter"]=10066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43086, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14218, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=385888, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38975, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=385888, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10066]={ + ["next_chapter"]=10067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43209, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14259, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=389747, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39364, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=389747, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10067]={ + ["next_chapter"]=10068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43332, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14300, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=393645, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39758, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=393645, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10068]={ + ["next_chapter"]=10069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43456, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14340, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=397581, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40156, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=397581, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10069]={ + ["next_chapter"]=10070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43580, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14381, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=401557, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40557, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=401557, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=38765, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1006, + ["unit"]=0 + } + }, + [10070]={ + ["next_chapter"]=10071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=43705, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14423, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=405572, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40963, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=405572, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10071]={ + ["next_chapter"]=10072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43830, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14464, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=409628, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41372, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=409628, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10072]={ + ["next_chapter"]=10073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43955, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=413724, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41786, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=413724, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10073]={ + ["next_chapter"]=10074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44081, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14547, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=417862, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42204, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=417862, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10074]={ + ["next_chapter"]=10075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44207, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14588, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=422040, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42626, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=422040, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10075]={ + ["next_chapter"]=10076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44334, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=426261, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43052, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=426261, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10076]={ + ["next_chapter"]=10077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44461, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14672, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=430523, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43483, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=430523, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10077]={ + ["next_chapter"]=10078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44589, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14714, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=434828, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43918, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=434828, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10078]={ + ["next_chapter"]=10079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44717, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14757, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=439177, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44357, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=439177, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10079]={ + ["next_chapter"]=10080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44845, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14799, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=443569, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44800, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=443569, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=42821, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1007, + ["unit"]=0 + } + }, + [10080]={ + ["next_chapter"]=10081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=44974, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=448004, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45248, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=448004, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10081]={ + ["next_chapter"]=10082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45104, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14884, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=452484, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45701, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=452484, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10082]={ + ["next_chapter"]=10083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45234, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14927, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=457009, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46158, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=457009, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10083]={ + ["next_chapter"]=10084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45364, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=14970, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=461579, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46619, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=461579, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10084]={ + ["next_chapter"]=10085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45495, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15013, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=466195, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47086, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=466195, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10085]={ + ["next_chapter"]=10086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45626, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=470857, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47557, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=470857, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10086]={ + ["next_chapter"]=10087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45757, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15100, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=475566, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48032, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=475566, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10087]={ + ["next_chapter"]=10088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45890, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15144, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=480321, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48512, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=480321, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10088]={ + ["next_chapter"]=10089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46022, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15187, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=485124, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48998, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=485124, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10089]={ + ["next_chapter"]=10090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15231, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=489976, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49488, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=489976, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=47301, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1008, + ["unit"]=0 + } + }, + [10090]={ + ["next_chapter"]=10091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=46289, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=494875, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49982, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=494875, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10091]={ + ["next_chapter"]=10092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46422, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15319, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=499824, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50482, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=499824, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10092]={ + ["next_chapter"]=10093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46557, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15364, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=504822, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50987, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=504822, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10093]={ + ["next_chapter"]=10094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46692, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15408, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=509871, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51497, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=509871, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10094]={ + ["next_chapter"]=10095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46827, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15453, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=514969, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52012, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=514969, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10095]={ + ["next_chapter"]=10096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46963, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15498, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=520119, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52532, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=520119, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10096]={ + ["next_chapter"]=10097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47099, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15543, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=525320, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53057, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=525320, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10097]={ + ["next_chapter"]=10098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47235, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15588, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=530573, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53588, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=530573, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10098]={ + ["next_chapter"]=10099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47372, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15633, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=535879, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54124, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=535879, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10099]={ + ["next_chapter"]=10100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15678, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=541238, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54665, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=541238, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=52250, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1009, + ["unit"]=0 + } + }, + [10100]={ + ["next_chapter"]=10101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=47648, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15724, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=546650, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55212, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=546650, + ["unit"]=13 + }, + ["chapter_drop"]=57, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10101]={ + ["next_chapter"]=10102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47786, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15770, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=552117, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55764, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=552117, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10102]={ + ["next_chapter"]=10103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47925, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15815, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=557638, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56321, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=557638, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10103]={ + ["next_chapter"]=10104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48065, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15861, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=563214, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56885, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=563214, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10104]={ + ["next_chapter"]=10105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48205, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=568846, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57453, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=568846, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10105]={ + ["next_chapter"]=10106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48345, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=15954, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=574535, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58028, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=574535, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10106]={ + ["next_chapter"]=10107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48486, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16000, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=580280, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58608, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=580280, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10107]={ + ["next_chapter"]=10108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48627, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16047, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=586083, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59194, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=586083, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10108]={ + ["next_chapter"]=10109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48769, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16094, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=591944, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59786, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=591944, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10109]={ + ["next_chapter"]=10110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48911, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=597863, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60384, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=597863, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=57716, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + [10110]={ + ["next_chapter"]=10111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=49054, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16188, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=603842, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60988, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=603842, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10111]={ + ["next_chapter"]=10112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49197, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16235, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=609880, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61598, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=609880, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10112]={ + ["next_chapter"]=10113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49340, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16282, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=615979, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62214, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=615979, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10113]={ + ["next_chapter"]=10114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49484, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16330, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=622139, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62836, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=622139, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10114]={ + ["next_chapter"]=10115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16378, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=628360, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63464, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=628360, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10115]={ + ["next_chapter"]=10116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49774, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16425, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=634644, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64099, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=634644, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10116]={ + ["next_chapter"]=10117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49919, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16473, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=640990, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64740, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=640990, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10117]={ + ["next_chapter"]=10118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50065, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16522, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=647400, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65387, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=647400, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10118]={ + ["next_chapter"]=10119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50212, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16570, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=653874, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66041, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=653874, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10119]={ + ["next_chapter"]=10120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50359, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16618, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=660413, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66702, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=660413, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=63755, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1011, + ["unit"]=0 + } + }, + [10120]={ + ["next_chapter"]=10121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=50506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16667, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=667017, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67369, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=667017, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10121]={ + ["next_chapter"]=10122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50654, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16716, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=673687, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68042, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=673687, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10122]={ + ["next_chapter"]=10123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16765, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=680424, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68723, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=680424, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10123]={ + ["next_chapter"]=10124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50951, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16814, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=687229, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69410, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=687229, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10124]={ + ["next_chapter"]=10125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51100, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16863, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=694101, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70104, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=694101, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10125]={ + ["next_chapter"]=10126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51250, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16913, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=701042, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70805, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=701042, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10126]={ + ["next_chapter"]=10127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51400, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=16962, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=708052, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71513, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=708052, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10127]={ + ["next_chapter"]=10128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51551, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17012, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=715133, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72228, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=715133, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10128]={ + ["next_chapter"]=10129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51702, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=722284, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72951, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=722284, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10129]={ + ["next_chapter"]=10130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51854, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17112, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=729507, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73680, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=729507, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=70425, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1012, + ["unit"]=0 + } + }, + [10130]={ + ["next_chapter"]=10131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=52006, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17162, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=736802, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74417, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=736802, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10131]={ + ["next_chapter"]=10132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52159, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17212, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=744170, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75161, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=744170, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10132]={ + ["next_chapter"]=10133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52312, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17263, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=751612, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75913, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=751612, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10133]={ + ["next_chapter"]=10134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52465, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17314, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=759128, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76672, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=759128, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10134]={ + ["next_chapter"]=10135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52620, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17364, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=766719, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77439, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=766719, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10135]={ + ["next_chapter"]=10136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52774, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17415, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=774386, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78213, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=774386, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10136]={ + ["next_chapter"]=10137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52929, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17467, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=782130, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78995, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=782130, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10137]={ + ["next_chapter"]=10138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53085, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17518, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=789951, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79785, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=789951, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10138]={ + ["next_chapter"]=10139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53241, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17569, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=797851, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80583, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=797851, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10139]={ + ["next_chapter"]=10140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53397, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17621, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=805830, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81389, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=805830, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=77793, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1013, + ["unit"]=0 + } + }, + [10140]={ + ["next_chapter"]=10141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=53554, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17673, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=813888, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82203, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=813888, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10141]={ + ["next_chapter"]=10142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53712, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17725, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=822027, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83025, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=822027, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10142]={ + ["next_chapter"]=10143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53870, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17777, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=830247, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83855, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=830247, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10143]={ + ["next_chapter"]=10144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54029, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17829, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=838549, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84693, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=838549, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10144]={ + ["next_chapter"]=10145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54188, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17882, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=846935, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85540, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=846935, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10145]={ + ["next_chapter"]=10146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54347, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17935, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=855404, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86396, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=855404, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10146]={ + ["next_chapter"]=10147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54507, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=17987, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=863958, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87260, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=863958, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10147]={ + ["next_chapter"]=10148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54668, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=872598, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88132, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=872598, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10148]={ + ["next_chapter"]=10149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54829, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18093, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=881324, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89014, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=881324, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10149]={ + ["next_chapter"]=10150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54990, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18147, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=890137, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89904, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=890137, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=85932, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1014, + ["unit"]=0 + } + }, + [10150]={ + ["next_chapter"]=10151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=55152, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18200, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=899038, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90803, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=899038, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10151]={ + ["next_chapter"]=10152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55314, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18254, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=908029, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91711, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=908029, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10152]={ + ["next_chapter"]=10153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55477, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18308, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=917109, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92628, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=917109, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10153]={ + ["next_chapter"]=10154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55641, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18362, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=926280, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93554, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=926280, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10154]={ + ["next_chapter"]=10155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55805, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18416, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=935543, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94490, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=935543, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10155]={ + ["next_chapter"]=10156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55969, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18470, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=944898, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95435, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=944898, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10156]={ + ["next_chapter"]=10157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56134, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18524, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=954347, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96389, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=954347, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10157]={ + ["next_chapter"]=10158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56300, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18579, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=963891, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97353, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=963891, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10158]={ + ["next_chapter"]=10159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56466, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18634, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=973530, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98327, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=973530, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10159]={ + ["next_chapter"]=10160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56632, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18689, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=983265, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99310, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=983265, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=94922, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1015, + ["unit"]=0 + } + }, + [10160]={ + ["next_chapter"]=10161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=56799, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18744, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=993098, + ["unit"]=13 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100303, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=993098, + ["unit"]=13 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10161]={ + ["next_chapter"]=10162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56967, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18799, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1003, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101306, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1003, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10162]={ + ["next_chapter"]=10163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57135, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18855, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1013, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102319, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1013, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10163]={ + ["next_chapter"]=10164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57304, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18910, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1023, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103342, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1023, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10164]={ + ["next_chapter"]=10165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57473, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=18966, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1033, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104376, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1033, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10165]={ + ["next_chapter"]=10166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57642, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1044, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105419, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1044, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10166]={ + ["next_chapter"]=10167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57812, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19078, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1054, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106474, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1054, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10167]={ + ["next_chapter"]=10168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57983, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19134, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1065, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107538, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1065, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10168]={ + ["next_chapter"]=10169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58154, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19191, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1075, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108614, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1075, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10169]={ + ["next_chapter"]=10170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58326, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19247, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1086, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109700, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1086, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=104853, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1016, + ["unit"]=0 + } + }, + [10170]={ + ["next_chapter"]=10171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=58498, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19304, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1097, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110797, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1097, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10171]={ + ["next_chapter"]=10172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58670, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19361, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1108, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111905, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1108, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10172]={ + ["next_chapter"]=10173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58843, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19418, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1119, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113024, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1119, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10173]={ + ["next_chapter"]=10174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59017, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19476, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1130, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114154, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1130, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10174]={ + ["next_chapter"]=10175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19533, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1142, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115296, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1142, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10175]={ + ["next_chapter"]=10176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59366, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19591, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1153, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116449, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1153, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10176]={ + ["next_chapter"]=10177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59541, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19649, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1164, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117613, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1164, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10177]={ + ["next_chapter"]=10178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59717, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19707, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1176, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118789, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1176, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10178]={ + ["next_chapter"]=10179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59893, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19765, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1188, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119977, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1188, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10179]={ + ["next_chapter"]=10180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60070, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19823, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1200, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121177, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1200, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=115823, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1017, + ["unit"]=0 + } + }, + [10180]={ + ["next_chapter"]=10181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=60247, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19882, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1212, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122389, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1212, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10181]={ + ["next_chapter"]=10182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60425, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19940, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1224, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123612, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1224, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10182]={ + ["next_chapter"]=10183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60603, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=19999, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1236, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124849, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1236, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10183]={ + ["next_chapter"]=10184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60782, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1248, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126097, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1248, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10184]={ + ["next_chapter"]=10185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60962, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20117, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1261, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127358, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1261, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10185]={ + ["next_chapter"]=10186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61142, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20177, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1274, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128632, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1274, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10186]={ + ["next_chapter"]=10187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61322, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20236, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1286, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129918, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1286, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10187]={ + ["next_chapter"]=10188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20296, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1299, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131217, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1299, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10188]={ + ["next_chapter"]=10189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61685, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20356, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1312, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132529, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1312, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10189]={ + ["next_chapter"]=10190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61867, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20416, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1325, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133855, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1325, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=127941, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1018, + ["unit"]=0 + } + }, + [10190]={ + ["next_chapter"]=10191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=62049, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20476, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1339, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135193, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1339, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10191]={ + ["next_chapter"]=10192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62232, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20537, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1352, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136545, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1352, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10192]={ + ["next_chapter"]=10193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62416, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20597, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1365, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137911, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1365, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10193]={ + ["next_chapter"]=10194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62600, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20658, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1379, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139290, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1379, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10194]={ + ["next_chapter"]=10195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62785, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20719, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1393, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140683, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1393, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10195]={ + ["next_chapter"]=10196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62970, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20780, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1407, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142089, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1407, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10196]={ + ["next_chapter"]=10197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63156, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1421, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143510, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1421, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10197]={ + ["next_chapter"]=10198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63342, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20903, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1435, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144945, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1435, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10198]={ + ["next_chapter"]=10199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=20964, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1449, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146395, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1449, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10199]={ + ["next_chapter"]=10200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63716, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21026, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1464, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147859, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1464, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=141326, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1019, + ["unit"]=0 + } + }, + [10200]={ + ["next_chapter"]=10201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=63904, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21088, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1479, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149337, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1479, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10201]={ + ["next_chapter"]=10202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64092, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21151, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1493, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150831, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1493, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10202]={ + ["next_chapter"]=10203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64281, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1508, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152339, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1508, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10203]={ + ["next_chapter"]=10204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64471, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1523, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153862, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1523, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10204]={ + ["next_chapter"]=10205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64661, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21338, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1539, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155401, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1539, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10205]={ + ["next_chapter"]=10206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64852, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21401, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1554, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156955, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1554, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10206]={ + ["next_chapter"]=10207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65043, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21464, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1570, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158525, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1570, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10207]={ + ["next_chapter"]=10208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65234, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21527, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1585, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160110, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1585, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10208]={ + ["next_chapter"]=10209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65427, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21591, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1601, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161711, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1601, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10209]={ + ["next_chapter"]=10210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65619, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21654, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1617, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163328, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1617, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=156112, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + [10210]={ + ["next_chapter"]=10211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=65813, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21718, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1633, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164961, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1633, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10211]={ + ["next_chapter"]=10212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66006, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21782, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1650, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166611, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1650, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10212]={ + ["next_chapter"]=10213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66201, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1666, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168277, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1666, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10213]={ + ["next_chapter"]=10214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66396, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21911, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1683, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169960, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1683, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10214]={ + ["next_chapter"]=10215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66591, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=21975, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1700, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171659, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1700, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10215]={ + ["next_chapter"]=10216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66787, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1717, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173376, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1717, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10216]={ + ["next_chapter"]=10217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66984, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22105, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1734, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175110, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1734, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10217]={ + ["next_chapter"]=10218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67181, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22170, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1751, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176861, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1751, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10218]={ + ["next_chapter"]=10219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67379, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22235, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1769, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178629, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1769, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10219]={ + ["next_chapter"]=10220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67577, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22300, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1786, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180416, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1786, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=172445, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1021, + ["unit"]=0 + } + }, + [10220]={ + ["next_chapter"]=10221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=67776, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22366, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1804, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182220, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1804, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10221]={ + ["next_chapter"]=10222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67975, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22432, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1822, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184042, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1822, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10222]={ + ["next_chapter"]=10223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68175, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22498, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1840, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185883, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1840, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10223]={ + ["next_chapter"]=10224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68375, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22564, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1859, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187741, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1859, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10224]={ + ["next_chapter"]=10225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68576, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1877, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189619, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1877, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10225]={ + ["next_chapter"]=10226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68778, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22697, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1896, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191515, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1896, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10226]={ + ["next_chapter"]=10227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68980, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22763, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1915, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193430, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1915, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10227]={ + ["next_chapter"]=10228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69183, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22830, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1934, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195364, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1934, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10228]={ + ["next_chapter"]=10229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69386, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22897, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1954, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197318, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1954, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10229]={ + ["next_chapter"]=10230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69590, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=22965, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1973, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199291, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1973, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=190487, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1022, + ["unit"]=0 + } + }, + [10230]={ + ["next_chapter"]=10231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=69794, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23032, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1993, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201284, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=1993, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10231]={ + ["next_chapter"]=10232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69999, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23100, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2013, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203297, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2013, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10232]={ + ["next_chapter"]=10233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70205, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23168, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2033, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205330, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2033, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10233]={ + ["next_chapter"]=10234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70411, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23235, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2053, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207383, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2053, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10234]={ + ["next_chapter"]=10235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70617, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23304, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2074, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209457, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2074, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10235]={ + ["next_chapter"]=10236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70824, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23372, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2095, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211552, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2095, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10236]={ + ["next_chapter"]=10237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71032, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23441, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2116, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213667, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2116, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10237]={ + ["next_chapter"]=10238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71240, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23509, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2137, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215804, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2137, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10238]={ + ["next_chapter"]=10239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71449, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23578, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2158, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217962, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2158, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10239]={ + ["next_chapter"]=10240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71659, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23647, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2180, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220141, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2180, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=210416, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1023, + ["unit"]=0 + } + }, + [10240]={ + ["next_chapter"]=10241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=71869, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23717, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2201, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222343, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2201, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10241]={ + ["next_chapter"]=10242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72079, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23786, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2223, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224566, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2223, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10242]={ + ["next_chapter"]=10243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72290, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23856, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2246, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226812, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2246, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10243]={ + ["next_chapter"]=10244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23926, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2268, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229080, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2268, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10244]={ + ["next_chapter"]=10245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72714, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=23996, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2291, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231371, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2291, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10245]={ + ["next_chapter"]=10246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72927, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2314, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233685, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2314, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10246]={ + ["next_chapter"]=10247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73141, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24136, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2337, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236021, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2337, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10247]={ + ["next_chapter"]=10248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73355, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24207, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2360, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238382, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2360, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10248]={ + ["next_chapter"]=10249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73569, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24278, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2384, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240766, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2384, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10249]={ + ["next_chapter"]=10250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73784, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24349, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2408, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243173, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2408, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=232430, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1024, + ["unit"]=0 + } + }, + [10250]={ + ["next_chapter"]=10251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=74000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24420, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2432, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245605, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2432, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10251]={ + ["next_chapter"]=10252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74216, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24491, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2456, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248061, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2456, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10252]={ + ["next_chapter"]=10253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74433, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24563, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2481, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250542, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2481, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10253]={ + ["next_chapter"]=10254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74651, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24635, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2505, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253047, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2505, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10254]={ + ["next_chapter"]=10255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74869, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24707, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2530, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255577, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2530, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10255]={ + ["next_chapter"]=10256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75087, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24779, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2556, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258133, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2556, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10256]={ + ["next_chapter"]=10257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75306, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24851, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2581, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260715, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2581, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10257]={ + ["next_chapter"]=10258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75526, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24924, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2607, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263322, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2607, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10258]={ + ["next_chapter"]=10259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75746, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=24996, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2633, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265955, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2633, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10259]={ + ["next_chapter"]=10260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75967, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25069, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2660, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268614, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2660, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=256747, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1025, + ["unit"]=0 + } + }, + [10260]={ + ["next_chapter"]=10261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=76189, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25142, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2686, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271301, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2686, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10261]={ + ["next_chapter"]=10262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76411, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25216, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2713, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274014, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2713, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10262]={ + ["next_chapter"]=10263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76634, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25289, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2740, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=276754, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2740, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10263]={ + ["next_chapter"]=10264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76857, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25363, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2768, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279521, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2768, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10264]={ + ["next_chapter"]=10265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77081, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25437, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2795, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=282317, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2795, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10265]={ + ["next_chapter"]=10266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77305, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25511, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2823, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=285140, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2823, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10266]={ + ["next_chapter"]=10267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77530, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25585, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2851, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287991, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2851, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10267]={ + ["next_chapter"]=10268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77756, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25659, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2880, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=290871, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2880, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10268]={ + ["next_chapter"]=10269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77982, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25734, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2909, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293780, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2909, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10269]={ + ["next_chapter"]=10270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78209, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25809, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2938, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296717, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2938, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=283609, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1026, + ["unit"]=0 + } + }, + [10270]={ + ["next_chapter"]=10271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=78436, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25884, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2967, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299685, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2967, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10271]={ + ["next_chapter"]=10272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78664, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=25959, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2997, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302682, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=2997, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10272]={ + ["next_chapter"]=10273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78893, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26035, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3027, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305708, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3027, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10273]={ + ["next_chapter"]=10274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79122, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26110, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3057, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308765, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3057, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10274]={ + ["next_chapter"]=10275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79352, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26186, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3088, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=311853, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3088, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10275]={ + ["next_chapter"]=10276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79582, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26262, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3119, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=314972, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3119, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10276]={ + ["next_chapter"]=10277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79813, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26338, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3150, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=318121, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3150, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10277]={ + ["next_chapter"]=10278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80044, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26415, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3181, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=321303, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3181, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10278]={ + ["next_chapter"]=10279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80277, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26491, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3213, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=324516, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3213, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10279]={ + ["next_chapter"]=10280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80509, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26568, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3245, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=327761, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3245, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=313280, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1027, + ["unit"]=0 + } + }, + [10280]={ + ["next_chapter"]=10281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=80743, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26645, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3278, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331038, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3278, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10281]={ + ["next_chapter"]=10282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80977, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26722, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3310, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334349, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3310, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10282]={ + ["next_chapter"]=10283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81211, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26800, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3343, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=337692, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3343, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10283]={ + ["next_chapter"]=10284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81446, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26877, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3377, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=341069, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3377, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10284]={ + ["next_chapter"]=10285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81682, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=26955, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3411, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=344480, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3411, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10285]={ + ["next_chapter"]=10286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81918, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27033, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3445, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=347925, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3445, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10286]={ + ["next_chapter"]=10287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27111, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3479, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=351404, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3479, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10287]={ + ["next_chapter"]=10288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82393, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3514, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354918, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3514, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10288]={ + ["next_chapter"]=10289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82631, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27268, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3549, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358467, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3549, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10289]={ + ["next_chapter"]=10290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82870, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27347, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3585, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362052, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3585, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=346057, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1028, + ["unit"]=0 + } + }, + [10290]={ + ["next_chapter"]=10291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=83109, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27426, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3621, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=365672, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3621, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10291]={ + ["next_chapter"]=10292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83349, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3657, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=369329, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3657, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10292]={ + ["next_chapter"]=10293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83590, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27585, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3693, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=373022, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3693, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10293]={ + ["next_chapter"]=10294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83831, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27664, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3730, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=376752, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3730, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10294]={ + ["next_chapter"]=10295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84072, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27744, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3768, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=380520, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3768, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10295]={ + ["next_chapter"]=10296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84315, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27824, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3805, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=384325, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3805, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10296]={ + ["next_chapter"]=10297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84558, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27904, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3843, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=388168, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3843, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10297]={ + ["next_chapter"]=10298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=27984, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3882, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=392050, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3882, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10298]={ + ["next_chapter"]=10299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85046, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3921, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=395971, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3921, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10299]={ + ["next_chapter"]=10300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85291, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28146, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3960, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=399930, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3960, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=382262, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1029, + ["unit"]=0 + } + }, + [10300]={ + ["next_chapter"]=10301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=85536, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28227, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3999, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=403930, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=3999, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10301]={ + ["next_chapter"]=10302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85782, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28308, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4039, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=407969, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4039, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10302]={ + ["next_chapter"]=10303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86029, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28389, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4080, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=412049, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4080, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10303]={ + ["next_chapter"]=10304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86276, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28471, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4120, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=416169, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4120, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10304]={ + ["next_chapter"]=10305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86524, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28553, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4162, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=420331, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4162, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10305]={ + ["next_chapter"]=10306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86772, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28635, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4203, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=424534, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4203, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10306]={ + ["next_chapter"]=10307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87022, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28717, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4245, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=428779, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4245, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10307]={ + ["next_chapter"]=10308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87271, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28800, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4288, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=433067, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4288, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10308]={ + ["next_chapter"]=10309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87522, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28882, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4331, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=437398, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4331, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10309]={ + ["next_chapter"]=10310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87773, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=28965, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4374, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=441772, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4374, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=422255, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + [10310]={ + ["next_chapter"]=10311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=88024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29048, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4418, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446190, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4418, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10311]={ + ["next_chapter"]=10312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88277, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29131, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4462, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=450652, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4462, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10312]={ + ["next_chapter"]=10313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88530, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29215, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4507, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=455158, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4507, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10313]={ + ["next_chapter"]=10314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88783, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29298, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4552, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=459710, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4552, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10314]={ + ["next_chapter"]=10315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89037, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29382, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4597, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=464307, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4597, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10315]={ + ["next_chapter"]=10316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89292, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29466, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4643, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=468950, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4643, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10316]={ + ["next_chapter"]=10317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89547, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29551, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4689, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=473639, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4689, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10317]={ + ["next_chapter"]=10318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89803, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29635, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4736, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=478376, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4736, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10318]={ + ["next_chapter"]=10319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90060, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29720, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4784, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=483159, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4784, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10319]={ + ["next_chapter"]=10320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90317, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29805, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4832, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=487991, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4832, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=466432, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1031, + ["unit"]=0 + } + }, + [10320]={ + ["next_chapter"]=10321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=90575, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29890, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4880, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=492871, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4880, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10321]={ + ["next_chapter"]=10322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90834, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=29975, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4929, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=497800, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4929, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10322]={ + ["next_chapter"]=10323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91093, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30061, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4978, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=502778, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=4978, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10323]={ + ["next_chapter"]=10324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91353, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30146, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5028, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=507805, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5028, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10324]={ + ["next_chapter"]=10325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91613, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30232, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5078, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=512883, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5078, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10325]={ + ["next_chapter"]=10326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91874, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30318, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5129, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=518012, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5129, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10326]={ + ["next_chapter"]=10327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92136, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30405, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5180, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=523192, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5180, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10327]={ + ["next_chapter"]=10328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92398, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30491, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5232, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=528424, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5232, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10328]={ + ["next_chapter"]=10329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92661, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30578, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5284, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=533709, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5284, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10329]={ + ["next_chapter"]=10330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92925, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30665, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5337, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=539046, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5337, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=515231, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1032, + ["unit"]=0 + } + }, + [10330]={ + ["next_chapter"]=10331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=93189, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30752, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5390, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=544436, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5390, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10331]={ + ["next_chapter"]=10332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93454, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5444, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=549880, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5444, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10332]={ + ["next_chapter"]=10333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93719, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=30927, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5499, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=555379, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5499, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10333]={ + ["next_chapter"]=10334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93985, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31015, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5554, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=560933, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5554, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10334]={ + ["next_chapter"]=10335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94252, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31103, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5609, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=566542, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5609, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10335]={ + ["next_chapter"]=10336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31191, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5665, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=572208, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5665, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10336]={ + ["next_chapter"]=10337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94787, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31280, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5722, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=577930, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5722, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10337]={ + ["next_chapter"]=10338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31369, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5779, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=583709, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5779, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10338]={ + ["next_chapter"]=10339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95326, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31457, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5837, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=589546, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5837, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10339]={ + ["next_chapter"]=10340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95595, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31547, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5895, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=595442, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5895, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=569136, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1033, + ["unit"]=0 + } + }, + [10340]={ + ["next_chapter"]=10341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=95866, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31636, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5954, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=601396, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=5954, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10341]={ + ["next_chapter"]=10342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31725, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6014, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=607410, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6014, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10342]={ + ["next_chapter"]=10343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96409, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31815, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6074, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=613484, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6074, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10343]={ + ["next_chapter"]=10344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96682, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31905, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6135, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=619619, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6135, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10344]={ + ["next_chapter"]=10345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96955, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=31995, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6196, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=625815, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6196, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10345]={ + ["next_chapter"]=10346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97229, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32086, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6258, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=632073, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6258, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10346]={ + ["next_chapter"]=10347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32176, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6321, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=638394, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6321, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10347]={ + ["next_chapter"]=10348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97779, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32267, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6384, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=644778, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6384, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10348]={ + ["next_chapter"]=10349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98054, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32358, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6448, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=651226, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6448, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10349]={ + ["next_chapter"]=10350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98331, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32449, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6512, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=657738, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6512, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=628680, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1034, + ["unit"]=0 + } + }, + [10350]={ + ["next_chapter"]=10351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=98608, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32541, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6577, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=664316, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6577, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10351]={ + ["next_chapter"]=10352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98886, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32632, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6643, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=670959, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6643, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10352]={ + ["next_chapter"]=10353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99164, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32724, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6710, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=677668, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6710, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10353]={ + ["next_chapter"]=10354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99443, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32816, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6777, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=684445, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6777, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10354]={ + ["next_chapter"]=10355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99723, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=32909, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6844, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=691289, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6844, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10355]={ + ["next_chapter"]=10356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33001, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6913, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=698202, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6913, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10356]={ + ["next_chapter"]=10357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100284, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33094, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6982, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=705184, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=6982, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10357]={ + ["next_chapter"]=10358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100566, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33187, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7052, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=712236, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7052, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10358]={ + ["next_chapter"]=10359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100848, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33280, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7122, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=719359, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7122, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10359]={ + ["next_chapter"]=10360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101131, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33373, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7194, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=726552, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7194, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=694454, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1035, + ["unit"]=0 + } + }, + [10360]={ + ["next_chapter"]=10361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=101415, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33467, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7266, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=733818, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7266, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10361]={ + ["next_chapter"]=10362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101700, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33561, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7338, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=741156, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7338, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10362]={ + ["next_chapter"]=10363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101985, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33655, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7412, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=748567, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7412, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10363]={ + ["next_chapter"]=10364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102270, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33749, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7486, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=756053, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7486, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10364]={ + ["next_chapter"]=10365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102556, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33844, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7561, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=763614, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7561, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10365]={ + ["next_chapter"]=10366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102843, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=33938, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7636, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=771250, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7636, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10366]={ + ["next_chapter"]=10367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103131, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34033, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7712, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=778962, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7712, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10367]={ + ["next_chapter"]=10368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103419, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34128, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7790, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=786752, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7790, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10368]={ + ["next_chapter"]=10369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103708, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34224, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7868, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=794619, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7868, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10369]={ + ["next_chapter"]=10370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103998, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34319, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7946, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=802566, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=7946, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=767109, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1036, + ["unit"]=0 + } + }, + [10370]={ + ["next_chapter"]=10371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=104288, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34415, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8026, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=810591, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8026, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10371]={ + ["next_chapter"]=10372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104579, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34511, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8106, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=818697, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8106, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10372]={ + ["next_chapter"]=10373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104871, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34607, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8187, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=826884, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8187, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10373]={ + ["next_chapter"]=10374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105163, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34704, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8269, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=835153, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8269, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10374]={ + ["next_chapter"]=10375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105456, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34801, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8352, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=843504, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8352, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10375]={ + ["next_chapter"]=10376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105750, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34898, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8435, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=851939, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8435, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10376]={ + ["next_chapter"]=10377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106044, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=34995, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8519, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=860459, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8519, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10377]={ + ["next_chapter"]=10378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106339, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35092, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8605, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=869063, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8605, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10378]={ + ["next_chapter"]=10379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106635, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8691, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=877754, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8691, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10379]={ + ["next_chapter"]=10380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106931, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35287, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8778, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=886532, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8778, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=847365, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1037, + ["unit"]=0 + } + }, + [10380]={ + ["next_chapter"]=10381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=107228, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35385, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8865, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=895397, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8865, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10381]={ + ["next_chapter"]=10382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107526, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35484, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8954, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=904351, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=8954, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10382]={ + ["next_chapter"]=10383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107825, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35582, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9044, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=913394, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9044, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10383]={ + ["next_chapter"]=10384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108124, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35681, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9134, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=922528, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9134, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10384]={ + ["next_chapter"]=10385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108423, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35780, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9225, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=931754, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9225, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10385]={ + ["next_chapter"]=10386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108724, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35879, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9318, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=941071, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9318, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10386]={ + ["next_chapter"]=10387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109025, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=35978, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9411, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=950482, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9411, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10387]={ + ["next_chapter"]=10388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109327, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36078, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9505, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=959987, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9505, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10388]={ + ["next_chapter"]=10389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9600, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=969587, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9600, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10389]={ + ["next_chapter"]=10390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109932, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36278, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9696, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=979282, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9696, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=936019, + ["unit"]=14 + }, + ["grasp_mastery_reward"]={ + ["value"]=1038, + ["unit"]=0 + } + }, + [10390]={ + ["next_chapter"]=10391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=110236, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36378, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9793, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=989075, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9793, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10391]={ + ["next_chapter"]=10392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110541, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36478, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9891, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=998966, + ["unit"]=14 + }, + ["idle_gold"]={ + ["value"]=9891, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10392]={ + ["next_chapter"]=10393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110846, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36579, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9990, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1009, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9990, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10393]={ + ["next_chapter"]=10394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111152, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36680, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10090, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1019, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10090, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10394]={ + ["next_chapter"]=10395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111458, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36781, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10190, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1029, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10190, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10395]={ + ["next_chapter"]=10396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111765, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36883, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10292, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1040, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10292, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10396]={ + ["next_chapter"]=10397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112073, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=36984, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10395, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1050, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10395, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10397]={ + ["next_chapter"]=10398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112382, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37086, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10499, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1060, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10499, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10398]={ + ["next_chapter"]=10399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112691, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37188, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10604, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1071, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10604, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10399]={ + ["next_chapter"]=10400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37290, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10710, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1082, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10710, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1034, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1039, + ["unit"]=0 + } + }, + [10400]={ + ["next_chapter"]=10401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=113312, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37393, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10817, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1093, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10817, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10401]={ + ["next_chapter"]=10402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113623, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37496, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10926, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1103, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=10926, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10402]={ + ["next_chapter"]=10403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113935, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11035, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1115, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11035, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10403]={ + ["next_chapter"]=10404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114248, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37702, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11145, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1126, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11145, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10404]={ + ["next_chapter"]=10405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114562, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37805, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11257, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1137, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11257, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10405]={ + ["next_chapter"]=10406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114876, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=37909, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11369, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1148, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11369, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10406]={ + ["next_chapter"]=10407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38013, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11483, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1160, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11483, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10407]={ + ["next_chapter"]=10408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115506, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38117, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11598, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1171, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11598, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10408]={ + ["next_chapter"]=10409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115823, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11714, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1183, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11714, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10409]={ + ["next_chapter"]=10410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116139, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38326, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11831, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1195, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11831, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1142, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + [10410]={ + ["next_chapter"]=10411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=116457, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38431, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11949, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1207, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=11949, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10411]={ + ["next_chapter"]=10412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116775, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38536, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12069, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1219, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=12069, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10412]={ + ["next_chapter"]=10413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117094, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38641, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12189, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1231, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=12189, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10413]={ + ["next_chapter"]=10414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117414, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38747, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12311, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1243, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=12311, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10414]={ + ["next_chapter"]=10415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117735, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12434, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1256, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=12434, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10415]={ + ["next_chapter"]=10416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=38958, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12559, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1268, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=12559, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10416]={ + ["next_chapter"]=10417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118378, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12684, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1281, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=12684, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10417]={ + ["next_chapter"]=10418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118700, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39171, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12811, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1294, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=12811, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10418]={ + ["next_chapter"]=10419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119023, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39278, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12939, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1307, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=12939, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10419]={ + ["next_chapter"]=10420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119347, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39385, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13069, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1320, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=13069, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1041, + ["unit"]=0 + } + }, + [10420]={ + ["next_chapter"]=10421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=119672, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39492, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13199, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1333, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=13199, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10421]={ + ["next_chapter"]=10422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119997, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13331, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1346, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=13331, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10422]={ + ["next_chapter"]=10423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120324, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39707, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13465, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1360, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=13465, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10423]={ + ["next_chapter"]=10424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120650, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39815, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13599, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1374, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=13599, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10424]={ + ["next_chapter"]=10425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120978, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=39923, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13735, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1387, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=13735, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10425]={ + ["next_chapter"]=10426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121306, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40031, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13873, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1401, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=13873, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10426]={ + ["next_chapter"]=10427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121635, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40140, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14011, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1415, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=14011, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10427]={ + ["next_chapter"]=10428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121965, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40248, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14151, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1429, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=14151, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10428]={ + ["next_chapter"]=10429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122295, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40357, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14293, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1444, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=14293, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10429]={ + ["next_chapter"]=10430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122626, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40467, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14436, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1458, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=14436, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1042, + ["unit"]=0 + } + }, + [10430]={ + ["next_chapter"]=10431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=122958, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40576, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14580, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1473, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=14580, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10431]={ + ["next_chapter"]=10432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123290, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40686, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14726, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1487, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=14726, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10432]={ + ["next_chapter"]=10433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123623, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40796, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14873, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1502, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=14873, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10433]={ + ["next_chapter"]=10434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123957, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=40906, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15022, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1517, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=15022, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10434]={ + ["next_chapter"]=10435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124292, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15172, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1532, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=15172, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10435]={ + ["next_chapter"]=10436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124627, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41127, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15324, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1548, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=15324, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10436]={ + ["next_chapter"]=10437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124963, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41238, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15477, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1563, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=15477, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10437]={ + ["next_chapter"]=10438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125300, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41349, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15632, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1579, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=15632, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10438]={ + ["next_chapter"]=10439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125638, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41460, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15788, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1595, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=15788, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10439]={ + ["next_chapter"]=10440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125976, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41572, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15946, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1611, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=15946, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1539, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1043, + ["unit"]=0 + } + }, + [10440]={ + ["next_chapter"]=10441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=126315, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41684, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16106, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1627, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=16106, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10441]={ + ["next_chapter"]=10442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126654, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41796, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16267, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1643, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=16267, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10442]={ + ["next_chapter"]=10443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126995, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=41908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16429, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1659, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=16429, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10443]={ + ["next_chapter"]=10444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127336, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42021, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16594, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1676, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=16594, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10444]={ + ["next_chapter"]=10445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127678, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42134, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16760, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1693, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=16760, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10445]={ + ["next_chapter"]=10446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128020, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42247, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16927, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1710, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=16927, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10446]={ + ["next_chapter"]=10447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128364, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42360, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17096, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1727, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=17096, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10447]={ + ["next_chapter"]=10448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128708, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42474, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17267, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1744, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=17267, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10448]={ + ["next_chapter"]=10449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129052, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42587, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17440, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1761, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=17440, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10449]={ + ["next_chapter"]=10450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129398, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42701, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17614, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1779, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=17614, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1700, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1044, + ["unit"]=0 + } + }, + [10450]={ + ["next_chapter"]=10451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=129744, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42816, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17791, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1797, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=17791, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10451]={ + ["next_chapter"]=10452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130091, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=42930, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17968, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1815, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=17968, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10452]={ + ["next_chapter"]=10453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130439, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43045, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18148, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1833, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=18148, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10453]={ + ["next_chapter"]=10454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130787, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43160, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18330, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1851, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=18330, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10454]={ + ["next_chapter"]=10455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131136, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18513, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1870, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=18513, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10455]={ + ["next_chapter"]=10456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131486, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43390, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18698, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1889, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=18698, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10456]={ + ["next_chapter"]=10457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131837, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43506, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18885, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1907, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=18885, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10457]={ + ["next_chapter"]=10458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132188, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43622, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19074, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1926, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=19074, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10458]={ + ["next_chapter"]=10459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132540, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43738, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19265, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1946, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=19265, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10459]={ + ["next_chapter"]=10460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132893, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43855, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19457, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1965, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=19457, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1878, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1045, + ["unit"]=0 + } + }, + [10460]={ + ["next_chapter"]=10461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=133246, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=43971, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19652, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1985, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=19652, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10461]={ + ["next_chapter"]=10462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133600, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=44088, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19848, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2005, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=19848, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10462]={ + ["next_chapter"]=10463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133955, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=44205, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20047, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2025, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=20047, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10463]={ + ["next_chapter"]=10464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134311, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=44323, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20247, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2045, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=20247, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10464]={ + ["next_chapter"]=10465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134668, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=44440, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20450, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2065, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=20450, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10465]={ + ["next_chapter"]=10466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135025, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=44558, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20654, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2086, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=20654, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10466]={ + ["next_chapter"]=10467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135383, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=44676, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20861, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2107, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=20861, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10467]={ + ["next_chapter"]=10468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135742, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=44795, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21069, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2128, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=21069, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10468]={ + ["next_chapter"]=10469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136101, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=44913, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21280, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2149, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=21280, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10469]={ + ["next_chapter"]=10470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136461, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45032, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21493, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2171, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=21493, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2075, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1046, + ["unit"]=0 + } + }, + [10470]={ + ["next_chapter"]=10471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=136822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45151, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21708, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2192, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=21708, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10471]={ + ["next_chapter"]=10472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137184, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45271, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21925, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2214, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=21925, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10472]={ + ["next_chapter"]=10473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137546, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45390, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22144, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2237, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=22144, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10473]={ + ["next_chapter"]=10474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137909, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45510, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22366, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2259, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=22366, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10474]={ + ["next_chapter"]=10475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138273, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22589, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2282, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=22589, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10475]={ + ["next_chapter"]=10476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138638, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45751, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22815, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2304, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=22815, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10476]={ + ["next_chapter"]=10477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45871, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23043, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2327, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=23043, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10477]={ + ["next_chapter"]=10478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139370, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=45992, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23274, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2351, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=23274, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10478]={ + ["next_chapter"]=10479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139736, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=46113, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23507, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2374, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=23507, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10479]={ + ["next_chapter"]=10480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140104, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=46234, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23742, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2398, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=23742, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2292, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1047, + ["unit"]=0 + } + }, + [10480]={ + ["next_chapter"]=10481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=140473, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=46356, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23979, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2422, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=23979, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10481]={ + ["next_chapter"]=10482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140842, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=46478, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24219, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2446, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=24219, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10482]={ + ["next_chapter"]=10483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141212, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=46600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24461, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2471, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=24461, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10483]={ + ["next_chapter"]=10484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141582, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=46722, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24706, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2495, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=24706, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10484]={ + ["next_chapter"]=10485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141954, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=46845, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24953, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2520, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=24953, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10485]={ + ["next_chapter"]=10486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142326, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=46968, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25202, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2545, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=25202, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10486]={ + ["next_chapter"]=10487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142699, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=47091, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25454, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2571, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=25454, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10487]={ + ["next_chapter"]=10488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143073, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=47214, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25709, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2597, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=25709, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10488]={ + ["next_chapter"]=10489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143447, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=47338, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25966, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2623, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=25966, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10489]={ + ["next_chapter"]=10490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=47461, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26226, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2649, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=26226, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2532, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1048, + ["unit"]=0 + } + }, + [10490]={ + ["next_chapter"]=10491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=144198, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=47585, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26488, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2675, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=26488, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10491]={ + ["next_chapter"]=10492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144575, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=47710, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26753, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2702, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=26753, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10492]={ + ["next_chapter"]=10493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144953, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=47834, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27020, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2729, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=27020, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10493]={ + ["next_chapter"]=10494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145331, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=47959, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27290, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2756, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=27290, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10494]={ + ["next_chapter"]=10495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145710, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=48084, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27563, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2784, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=27563, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10495]={ + ["next_chapter"]=10496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146090, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=48210, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27839, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2812, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=27839, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10496]={ + ["next_chapter"]=10497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146470, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=48335, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28117, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2840, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=28117, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10497]={ + ["next_chapter"]=10498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146851, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=48461, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28398, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2868, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=28398, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10498]={ + ["next_chapter"]=10499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147234, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=48587, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28682, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2897, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=28682, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10499]={ + ["next_chapter"]=10500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147616, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=48713, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28969, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2926, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=28969, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=2797, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1049, + ["unit"]=0 + } + }, + [10500]={ + ["next_chapter"]=10501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=148000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=48840, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29259, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2955, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=29259, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10501]={ + ["next_chapter"]=10502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148384, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=48967, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29552, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2985, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=29552, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10502]={ + ["next_chapter"]=10503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148770, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=49094, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29847, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3015, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=29847, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10503]={ + ["next_chapter"]=10504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=149155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=49221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30146, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3045, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=30146, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10504]={ + ["next_chapter"]=10505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=149542, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=49349, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30447, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3075, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=30447, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10505]={ + ["next_chapter"]=10506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=149930, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=49477, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30751, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3106, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=30751, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10506]={ + ["next_chapter"]=10507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150318, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=49605, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31059, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3137, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=31059, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10507]={ + ["next_chapter"]=10508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=150707, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=49733, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31370, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3168, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=31370, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10508]={ + ["next_chapter"]=10509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151097, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=49862, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31683, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3200, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=31683, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10509]={ + ["next_chapter"]=10510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=151487, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=49991, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32000, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3232, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=32000, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3089, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + [10510]={ + ["next_chapter"]=10511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=151879, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=50120, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32320, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3264, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=32320, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10511]={ + ["next_chapter"]=10512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152271, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=50249, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32643, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3297, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=32643, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10512]={ + ["next_chapter"]=10513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=152664, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=50379, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32970, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3330, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=32970, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10513]={ + ["next_chapter"]=10514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153057, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=50509, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33299, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3363, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=33299, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10514]={ + ["next_chapter"]=10515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153452, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=50639, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33632, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3397, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=33632, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10515]={ + ["next_chapter"]=10516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=153847, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=50769, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33969, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3431, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=33969, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10516]={ + ["next_chapter"]=10517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154243, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=50900, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34308, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3465, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=34308, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10517]={ + ["next_chapter"]=10518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=154640, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=51031, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34652, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3500, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=34652, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10518]={ + ["next_chapter"]=10519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155037, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=51162, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34998, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3535, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=34998, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10519]={ + ["next_chapter"]=10520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=155436, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=51294, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35348, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3570, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=35348, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3412, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1051, + ["unit"]=0 + } + }, + [10520]={ + ["next_chapter"]=10521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=155835, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=51425, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35702, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3606, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=35702, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10521]={ + ["next_chapter"]=10522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156235, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=51557, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36059, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3642, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=36059, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10522]={ + ["next_chapter"]=10523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=156635, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=51690, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36419, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3678, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=36419, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10523]={ + ["next_chapter"]=10524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157037, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=51822, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36783, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3715, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=36783, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10524]={ + ["next_chapter"]=10525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157439, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=51955, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37151, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3752, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=37151, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10525]={ + ["next_chapter"]=10526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=157842, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=52088, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37523, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3790, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=37523, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10526]={ + ["next_chapter"]=10527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158246, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=52221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37898, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3828, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=37898, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10527]={ + ["next_chapter"]=10528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=158650, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=52355, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38277, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3866, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=38277, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10528]={ + ["next_chapter"]=10529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=52488, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38660, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3905, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=38660, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10529]={ + ["next_chapter"]=10530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=159462, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=52622, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39046, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3944, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=39046, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=3769, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1052, + ["unit"]=0 + } + }, + [10530]={ + ["next_chapter"]=10531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=159869, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=52757, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39437, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3983, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=39437, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10531]={ + ["next_chapter"]=10532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160277, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=52891, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39831, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4023, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=39831, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10532]={ + ["next_chapter"]=10533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=160685, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=53026, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40229, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4063, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=40229, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10533]={ + ["next_chapter"]=10534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161095, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=53161, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40632, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4104, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=40632, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10534]={ + ["next_chapter"]=10535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161505, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=53297, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41038, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4145, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=41038, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10535]={ + ["next_chapter"]=10536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=161916, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=53432, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41448, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4186, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=41448, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10536]={ + ["next_chapter"]=10537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162328, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=53568, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41863, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4228, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=41863, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10537]={ + ["next_chapter"]=10538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=162740, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=53704, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42281, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4270, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=42281, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10538]={ + ["next_chapter"]=10539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=163154, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=53841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42704, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4313, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=42704, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10539]={ + ["next_chapter"]=10540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=163568, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=53977, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43131, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4356, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=43131, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4164, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1053, + ["unit"]=0 + } + }, + [10540]={ + ["next_chapter"]=10541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=163983, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=54114, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43563, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4400, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=43563, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10541]={ + ["next_chapter"]=10542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=164398, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=54251, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43998, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4444, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=43998, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10542]={ + ["next_chapter"]=10543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=164815, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=54389, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44438, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4488, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=44438, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10543]={ + ["next_chapter"]=10544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165232, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=54527, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44883, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4533, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=44883, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10544]={ + ["next_chapter"]=10545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=165650, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=54665, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45331, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4578, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=45331, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10545]={ + ["next_chapter"]=10546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166069, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=54803, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45785, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4624, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=45785, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10546]={ + ["next_chapter"]=10547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166489, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=54941, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46243, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4671, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=46243, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10547]={ + ["next_chapter"]=10548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=166910, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=55080, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46705, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4717, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=46705, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10548]={ + ["next_chapter"]=10549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=167331, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=55219, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47172, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4764, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=47172, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10549]={ + ["next_chapter"]=10550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=167753, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=55359, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47644, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4812, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=47644, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=4599, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1054, + ["unit"]=0 + } + }, + [10550]={ + ["next_chapter"]=10551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=168176, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=55498, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48120, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4860, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=48120, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10551]={ + ["next_chapter"]=10552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=168600, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=55638, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48601, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4909, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=48601, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10552]={ + ["next_chapter"]=10553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169024, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=55778, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49087, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4958, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=49087, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10553]={ + ["next_chapter"]=10554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169450, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=55918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49578, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5007, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=49578, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10554]={ + ["next_chapter"]=10555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=169876, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=56059, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50074, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5057, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=50074, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10555]={ + ["next_chapter"]=10556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=170303, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=56200, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50575, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5108, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=50575, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10556]={ + ["next_chapter"]=10557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=170731, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=56341, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51081, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5159, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=51081, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10557]={ + ["next_chapter"]=10558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=171159, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=56483, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51591, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5211, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=51591, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10558]={ + ["next_chapter"]=10559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=171589, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=56624, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52107, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5263, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=52107, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10559]={ + ["next_chapter"]=10560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=172019, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=56766, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52628, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5315, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=52628, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5081, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1055, + ["unit"]=0 + } + }, + [10560]={ + ["next_chapter"]=10561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=172450, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=56909, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53155, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5369, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=53155, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10561]={ + ["next_chapter"]=10562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=172882, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=57051, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53686, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5422, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=53686, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10562]={ + ["next_chapter"]=10563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=173315, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=57194, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54223, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5477, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=54223, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10563]={ + ["next_chapter"]=10564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=173748, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=57337, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54765, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5531, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=54765, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10564]={ + ["next_chapter"]=10565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174182, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=57480, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55313, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5587, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=55313, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10565]={ + ["next_chapter"]=10566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=174618, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=57624, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55866, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5642, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=55866, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10566]={ + ["next_chapter"]=10567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=175054, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=57768, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56425, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5699, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=56425, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10567]={ + ["next_chapter"]=10568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=175490, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=57912, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56989, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5756, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=56989, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10568]={ + ["next_chapter"]=10569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=175928, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=58056, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57559, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5813, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=57559, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10569]={ + ["next_chapter"]=10570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=176366, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=58201, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58134, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5872, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=58134, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=5612, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1056, + ["unit"]=0 + } + }, + [10570]={ + ["next_chapter"]=10571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=176806, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=58346, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58716, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5930, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=58716, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10571]={ + ["next_chapter"]=10572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=177246, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=58491, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59303, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5990, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=59303, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10572]={ + ["next_chapter"]=10573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=177686, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=58637, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59896, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6049, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=59896, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10573]={ + ["next_chapter"]=10574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=178128, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=58782, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60495, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6110, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=60495, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10574]={ + ["next_chapter"]=10575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=178571, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=58928, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61100, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6171, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=61100, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10575]={ + ["next_chapter"]=10576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179014, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=59075, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61711, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6233, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=61711, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10576]={ + ["next_chapter"]=10577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179458, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=59221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62328, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6295, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=62328, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10577]={ + ["next_chapter"]=10578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=179903, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=59368, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62951, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6358, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=62951, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10578]={ + ["next_chapter"]=10579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=180349, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=59515, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63581, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6422, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=63581, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10579]={ + ["next_chapter"]=10580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=180796, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=59663, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64217, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6486, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=64217, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6199, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1057, + ["unit"]=0 + } + }, + [10580]={ + ["next_chapter"]=10581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=181243, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=59810, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64859, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6551, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=64859, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10581]={ + ["next_chapter"]=10582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=181691, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=59958, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65507, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6616, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=65507, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10582]={ + ["next_chapter"]=10583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=182141, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=60106, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66162, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6682, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=66162, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10583]={ + ["next_chapter"]=10584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=182591, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=60255, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66824, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6749, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=66824, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10584]={ + ["next_chapter"]=10585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=183041, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=60404, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67492, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6817, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=67492, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10585]={ + ["next_chapter"]=10586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=183493, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=60553, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=68167, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6885, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=68167, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10586]={ + ["next_chapter"]=10587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=183945, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=60702, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=68849, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6954, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=68849, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10587]={ + ["next_chapter"]=10588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=184399, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=60852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69537, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7023, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=69537, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10588]={ + ["next_chapter"]=10589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=184853, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=61001, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70233, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7094, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=70233, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10589]={ + ["next_chapter"]=10590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=185308, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=61152, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70935, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7164, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=70935, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=6848, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1058, + ["unit"]=0 + } + }, + [10590]={ + ["next_chapter"]=10591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=185764, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=61302, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=71644, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7236, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=71644, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10591]={ + ["next_chapter"]=10592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=186220, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=61453, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72361, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7308, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=72361, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10592]={ + ["next_chapter"]=10593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=186678, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=61604, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=73085, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7382, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=73085, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10593]={ + ["next_chapter"]=10594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=187136, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=61755, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=73815, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7455, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=73815, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10594]={ + ["next_chapter"]=10595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=187595, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=61906, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=74554, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7530, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=74554, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10595]={ + ["next_chapter"]=10596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=188055, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=62058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=75299, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7605, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=75299, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10596]={ + ["next_chapter"]=10597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=188516, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=62210, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=76052, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7681, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=76052, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10597]={ + ["next_chapter"]=10598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=188978, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=62363, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=76813, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7758, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=76813, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10598]={ + ["next_chapter"]=10599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=189440, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=62515, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=77581, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7836, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=77581, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10599]={ + ["next_chapter"]=10600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=189904, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=62668, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78357, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7914, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=78357, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=7564, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1059, + ["unit"]=0 + } + }, + [10600]={ + ["next_chapter"]=10601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=190368, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=62821, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=79140, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7993, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=79140, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10601]={ + ["next_chapter"]=10602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=190833, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=62975, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=79931, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8073, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=79931, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10602]={ + ["next_chapter"]=10603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=191299, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=63129, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=80731, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8154, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=80731, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10603]={ + ["next_chapter"]=10604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=191766, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=63283, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=81538, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8235, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=81538, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10604]={ + ["next_chapter"]=10605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=192233, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=63437, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=82353, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8318, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=82353, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10605]={ + ["next_chapter"]=10606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=192702, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=63592, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=83177, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8401, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=83177, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10606]={ + ["next_chapter"]=10607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=193171, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=63746, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=84009, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8485, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=84009, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10607]={ + ["next_chapter"]=10608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=193641, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=63902, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=84849, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8570, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=84849, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10608]={ + ["next_chapter"]=10609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=194112, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=64057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=85697, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8655, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=85697, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10609]={ + ["next_chapter"]=10610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=194584, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=64213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=86554, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8742, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=86554, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=8356, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + [10610]={ + ["next_chapter"]=10611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=195057, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=64369, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=87420, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8829, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=87420, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10611]={ + ["next_chapter"]=10612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=195530, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=64525, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=88294, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8918, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=88294, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10612]={ + ["next_chapter"]=10613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=196005, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=64682, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=89177, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9007, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=89177, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10613]={ + ["next_chapter"]=10614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=196480, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=64838, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=90069, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9097, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=90069, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10614]={ + ["next_chapter"]=10615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=196956, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=64996, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=90969, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9188, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=90969, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10615]={ + ["next_chapter"]=10616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=197433, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=65153, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=91879, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9280, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=91879, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10616]={ + ["next_chapter"]=10617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=197911, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=65311, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=92798, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9373, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=92798, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10617]={ + ["next_chapter"]=10618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=198390, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=65469, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=93726, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9466, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=93726, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10618]={ + ["next_chapter"]=10619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=198869, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=65627, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=94663, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9561, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=94663, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10619]={ + ["next_chapter"]=10620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=199350, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=65785, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=95610, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9657, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=95610, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=9230, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1061, + ["unit"]=0 + } + }, + [10620]={ + ["next_chapter"]=10621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=199831, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=65944, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=96566, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9753, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=96566, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10621]={ + ["next_chapter"]=10622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=200313, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=66103, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=97532, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9851, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=97532, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10622]={ + ["next_chapter"]=10623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=200796, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=66263, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=98507, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9949, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=98507, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10623]={ + ["next_chapter"]=10624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=201280, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=66422, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=99492, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10049, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=99492, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10624]={ + ["next_chapter"]=10625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=201764, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=66582, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=100487, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10149, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=100487, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10625]={ + ["next_chapter"]=10626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=202250, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=66743, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=101492, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10251, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=101492, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10626]={ + ["next_chapter"]=10627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=202736, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=66903, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=102507, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10353, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=102507, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10627]={ + ["next_chapter"]=10628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=203224, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=67064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=103532, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10457, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=103532, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10628]={ + ["next_chapter"]=10629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=203712, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=67225, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=104567, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10561, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=104567, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10629]={ + ["next_chapter"]=10630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=204201, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=67386, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=105613, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10667, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=105613, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=10196, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1062, + ["unit"]=0 + } + }, + [10630]={ + ["next_chapter"]=10631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=204691, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=67548, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=106669, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10774, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=106669, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10631]={ + ["next_chapter"]=10632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=205182, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=67710, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=107736, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10881, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=107736, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10632]={ + ["next_chapter"]=10633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=205673, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=67872, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=108813, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10990, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=108813, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10633]={ + ["next_chapter"]=10634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=206166, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=68035, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=109901, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11100, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=109901, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10634]={ + ["next_chapter"]=10635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=206659, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=68197, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=111000, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11211, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=111000, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10635]={ + ["next_chapter"]=10636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=207153, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=68361, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=112110, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11323, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=112110, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10636]={ + ["next_chapter"]=10637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=207648, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=68524, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=113231, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11436, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=113231, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10637]={ + ["next_chapter"]=10638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=208144, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=68688, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=114363, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11551, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=114363, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10638]={ + ["next_chapter"]=10639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=208641, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=68852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=115507, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11666, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=115507, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10639]={ + ["next_chapter"]=10640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=209139, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=69016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=116662, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11783, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=116662, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=11262, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1063, + ["unit"]=0 + } + }, + [10640]={ + ["next_chapter"]=10641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=209638, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=69180, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=117829, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11901, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=117829, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10641]={ + ["next_chapter"]=10642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=210137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=69345, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=119007, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12020, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=119007, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10642]={ + ["next_chapter"]=10643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=210637, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=69510, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=120197, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12140, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=120197, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10643]={ + ["next_chapter"]=10644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=211139, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=69676, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=121399, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12261, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=121399, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10644]={ + ["next_chapter"]=10645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=211641, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=69841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=122613, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12384, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=122613, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10645]={ + ["next_chapter"]=10646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=212144, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=70007, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=123839, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12508, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=123839, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10646]={ + ["next_chapter"]=10647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=212648, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=70174, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=125078, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12633, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=125078, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10647]={ + ["next_chapter"]=10648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=213152, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=70340, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=126328, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12759, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=126328, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10648]={ + ["next_chapter"]=10649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=213658, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=70507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=127592, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12887, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=127592, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10649]={ + ["next_chapter"]=10650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=214165, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=70674, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=128868, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13016, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=128868, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=12441, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1064, + ["unit"]=0 + } + }, + [10650]={ + ["next_chapter"]=10651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=214672, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=70842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=130156, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13146, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=130156, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10651]={ + ["next_chapter"]=10652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=215180, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=71009, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=131458, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13277, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=131458, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10652]={ + ["next_chapter"]=10653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=215689, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=71178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=132772, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13410, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=132772, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10653]={ + ["next_chapter"]=10654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=216199, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=71346, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=134100, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13544, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=134100, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10654]={ + ["next_chapter"]=10655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=216710, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=71514, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=135441, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13680, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=135441, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10655]={ + ["next_chapter"]=10656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=217222, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=71683, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=136796, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13816, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=136796, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10656]={ + ["next_chapter"]=10657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=217735, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=71853, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=138164, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13955, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=138164, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10657]={ + ["next_chapter"]=10658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=218249, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=72022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=139545, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14094, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=139545, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10658]={ + ["next_chapter"]=10659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=218763, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=72192, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=140941, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14235, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=140941, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10659]={ + ["next_chapter"]=10660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=219278, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=72362, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=142350, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14377, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=142350, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=13742, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1065, + ["unit"]=0 + } + }, + [10660]={ + ["next_chapter"]=10661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=219795, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=72532, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=143774, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14521, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=143774, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10661]={ + ["next_chapter"]=10662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=220312, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=72703, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=145211, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14666, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=145211, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10662]={ + ["next_chapter"]=10663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=220830, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=72874, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=146663, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14813, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=146663, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10663]={ + ["next_chapter"]=10664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=221349, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=73045, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=148130, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14961, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=148130, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10664]={ + ["next_chapter"]=10665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=221869, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=73217, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=149611, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15111, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=149611, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10665]={ + ["next_chapter"]=10666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=222389, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=73388, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=151107, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15262, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=151107, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10666]={ + ["next_chapter"]=10667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=222911, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=73561, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=152618, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15414, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=152618, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10667]={ + ["next_chapter"]=10668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=223434, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=73733, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=154145, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15569, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=154145, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10668]={ + ["next_chapter"]=10669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=223957, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=73906, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=155686, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15724, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=155686, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10669]={ + ["next_chapter"]=10670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=224481, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=74079, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=157243, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15882, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=157243, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=15180, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1066, + ["unit"]=0 + } + }, + [10670]={ + ["next_chapter"]=10671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=225006, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=74252, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=158815, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16040, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=158815, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10671]={ + ["next_chapter"]=10672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=225533, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=74426, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=160404, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16201, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=160404, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10672]={ + ["next_chapter"]=10673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=226060, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=74600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=162008, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16363, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=162008, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10673]={ + ["next_chapter"]=10674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=226587, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=74774, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=163628, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16526, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=163628, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10674]={ + ["next_chapter"]=10675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=227116, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=74948, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=165264, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16692, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=165264, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10675]={ + ["next_chapter"]=10676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=227646, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=75123, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=166917, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16859, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=166917, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10676]={ + ["next_chapter"]=10677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=228177, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=75298, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=168586, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17027, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=168586, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10677]={ + ["next_chapter"]=10678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=228708, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=75474, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=170272, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17197, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=170272, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10678]={ + ["next_chapter"]=10679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=229241, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=75649, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=171974, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17369, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=171974, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10679]={ + ["next_chapter"]=10680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=229774, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=75825, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=173694, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17543, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=173694, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=16768, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + [10680]={ + ["next_chapter"]=10681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=230308, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=76002, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=175431, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17719, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=175431, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10681]={ + ["next_chapter"]=10682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=230843, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=76178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=177185, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17896, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=177185, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10682]={ + ["next_chapter"]=10683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=231379, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=76355, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=178957, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18075, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=178957, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10683]={ + ["next_chapter"]=10684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=231916, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=76532, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=180747, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18255, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=180747, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10684]={ + ["next_chapter"]=10685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=232454, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=76710, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=182554, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18438, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=182554, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10685]={ + ["next_chapter"]=10686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=232993, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=76888, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=184380, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18622, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=184380, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10686]={ + ["next_chapter"]=10687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=233533, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=77066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=186224, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18809, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=186224, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10687]={ + ["next_chapter"]=10688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=234073, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=77244, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=188086, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18997, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=188086, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10688]={ + ["next_chapter"]=10689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=234615, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=77423, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=189967, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19187, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=189967, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10689]={ + ["next_chapter"]=10690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=235157, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=77602, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=191866, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19378, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=191866, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=18522, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1068, + ["unit"]=0 + } + }, + [10690]={ + ["next_chapter"]=10691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=235700, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=77781, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=193785, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19572, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=193785, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10691]={ + ["next_chapter"]=10692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=236245, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=77961, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=195723, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19768, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=195723, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10692]={ + ["next_chapter"]=10693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=236790, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=78141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=197680, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19966, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=197680, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10693]={ + ["next_chapter"]=10694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=237336, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=78321, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=199657, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20165, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=199657, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10694]={ + ["next_chapter"]=10695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=237883, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=78501, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=201653, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20367, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=201653, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10695]={ + ["next_chapter"]=10696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=238431, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=78682, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=203670, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20571, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=203670, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10696]={ + ["next_chapter"]=10697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=238980, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=78863, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=205707, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20776, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=205707, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10697]={ + ["next_chapter"]=10698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=239529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=79045, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=207764, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20984, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=207764, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10698]={ + ["next_chapter"]=10699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=240080, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=79226, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=209841, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21194, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=209841, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10699]={ + ["next_chapter"]=10700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=240632, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=79408, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=211940, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21406, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=211940, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=20460, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1069, + ["unit"]=0 + } + }, + [10700]={ + ["next_chapter"]=10701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=241184, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=79591, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=214059, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21620, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=214059, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10701]={ + ["next_chapter"]=10702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=241737, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=79773, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=216200, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21836, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=216200, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10702]={ + ["next_chapter"]=10703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=242292, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=79956, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=218362, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22055, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=218362, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10703]={ + ["next_chapter"]=10704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=242847, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=80140, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=220545, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22275, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=220545, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10704]={ + ["next_chapter"]=10705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=243403, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=80323, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=222751, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22498, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=222751, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10705]={ + ["next_chapter"]=10706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=243960, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=80507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=224978, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22723, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=224978, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10706]={ + ["next_chapter"]=10707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=244518, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=80691, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=227228, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22950, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=227228, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10707]={ + ["next_chapter"]=10708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=245077, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=80876, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=229500, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23180, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=229500, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10708]={ + ["next_chapter"]=10709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=245637, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=81060, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=231795, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23411, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=231795, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10709]={ + ["next_chapter"]=10710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=246198, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=81245, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=234113, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23645, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=234113, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=22601, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + [10710]={ + ["next_chapter"]=10711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=246760, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=81431, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=236455, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23882, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=236455, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10711]={ + ["next_chapter"]=10712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=247322, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=81616, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=238819, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24121, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=238819, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10712]={ + ["next_chapter"]=10713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=247886, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=81802, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=241207, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24362, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=241207, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10713]={ + ["next_chapter"]=10714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=248451, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=81989, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=243619, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24606, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=243619, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10714]={ + ["next_chapter"]=10715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=249016, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=82175, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=246056, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24852, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=246056, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10715]={ + ["next_chapter"]=10716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=249583, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=82362, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=248516, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25100, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=248516, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10716]={ + ["next_chapter"]=10717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=250150, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=82549, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=251001, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25351, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=251001, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10717]={ + ["next_chapter"]=10718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=250718, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=82737, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=253511, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25605, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=253511, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10718]={ + ["next_chapter"]=10719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=251287, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=82925, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=256046, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25861, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=256046, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10719]={ + ["next_chapter"]=10720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=251857, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=83113, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=258607, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26119, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=258607, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=24965, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1071, + ["unit"]=0 + } + }, + [10720]={ + ["next_chapter"]=10721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=252429, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=83301, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=261193, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26380, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=261193, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10721]={ + ["next_chapter"]=10722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=253001, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=83490, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=263805, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26644, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=263805, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10722]={ + ["next_chapter"]=10723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=253574, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=83679, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=266443, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26911, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=266443, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10723]={ + ["next_chapter"]=10724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=254147, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=83869, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=269107, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27180, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=269107, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10724]={ + ["next_chapter"]=10725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=254722, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=84058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=271798, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27452, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=271798, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10725]={ + ["next_chapter"]=10726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=255298, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=84248, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=274516, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27726, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=274516, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10726]={ + ["next_chapter"]=10727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=255875, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=84439, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=277262, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28003, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=277262, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10727]={ + ["next_chapter"]=10728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=256452, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=84629, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=280034, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28283, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=280034, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10728]={ + ["next_chapter"]=10729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=257031, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=84820, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=282834, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28566, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=282834, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10729]={ + ["next_chapter"]=10730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=257610, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=85011, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=285663, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28852, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=285663, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=27577, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1072, + ["unit"]=0 + } + }, + [10730]={ + ["next_chapter"]=10731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=258191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=85203, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=288519, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29140, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=288519, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10731]={ + ["next_chapter"]=10732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=258772, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=85395, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=291405, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29432, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=291405, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10732]={ + ["next_chapter"]=10733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=259355, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=85587, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=294319, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29726, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=294319, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10733]={ + ["next_chapter"]=10734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=259938, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=85780, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=297262, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30023, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=297262, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10734]={ + ["next_chapter"]=10735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=260522, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=85972, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=300234, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30324, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=300234, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10735]={ + ["next_chapter"]=10736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=261108, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=86165, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=303237, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30627, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=303237, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10736]={ + ["next_chapter"]=10737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=261694, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=86359, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=306269, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30933, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=306269, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10737]={ + ["next_chapter"]=10738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=262281, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=86553, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=309332, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31243, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=309332, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10738]={ + ["next_chapter"]=10739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=262869, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=86747, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=312425, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31555, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=312425, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10739]={ + ["next_chapter"]=10740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=263458, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=86941, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=315549, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31870, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=315549, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=30462, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1073, + ["unit"]=0 + } + }, + [10740]={ + ["next_chapter"]=10741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=264048, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=87136, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=318705, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32189, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=318705, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10741]={ + ["next_chapter"]=10742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=264639, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=87331, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=321892, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32511, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=321892, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10742]={ + ["next_chapter"]=10743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=265231, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=87526, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=325111, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32836, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=325111, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10743]={ + ["next_chapter"]=10744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=265823, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=87722, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=328362, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33165, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=328362, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10744]={ + ["next_chapter"]=10745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=266417, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=87918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=331646, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33496, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=331646, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10745]={ + ["next_chapter"]=10746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=267012, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=88114, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=334962, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33831, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=334962, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10746]={ + ["next_chapter"]=10747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=267608, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=88311, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=338312, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34169, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=338312, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10747]={ + ["next_chapter"]=10748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=268204, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=88507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=341695, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34511, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=341695, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10748]={ + ["next_chapter"]=10749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=268802, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=88705, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=345112, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34856, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=345112, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10749]={ + ["next_chapter"]=10750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=269400, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=88902, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=348563, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35205, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=348563, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=33650, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1074, + ["unit"]=0 + } + }, + [10750]={ + ["next_chapter"]=10751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=270000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=89100, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=352049, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35557, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=352049, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10751]={ + ["next_chapter"]=10752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=270600, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=89298, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=355569, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35912, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=355569, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10752]={ + ["next_chapter"]=10753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=271202, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=89497, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=359125, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36272, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=359125, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10753]={ + ["next_chapter"]=10754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=271804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=89695, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=362716, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36634, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=362716, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10754]={ + ["next_chapter"]=10755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=272408, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=89895, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=366343, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37001, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=366343, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10755]={ + ["next_chapter"]=10756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=273012, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=90094, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=370007, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37371, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=370007, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10756]={ + ["next_chapter"]=10757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=273617, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=90294, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=373707, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37744, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=373707, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10757]={ + ["next_chapter"]=10758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=274224, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=90494, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=377444, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38122, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=377444, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10758]={ + ["next_chapter"]=10759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=274831, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=90694, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=381218, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38503, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=381218, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10759]={ + ["next_chapter"]=10760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=275439, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=90895, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=385030, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38888, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=385030, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=37170, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1075, + ["unit"]=0 + } + }, + [10760]={ + ["next_chapter"]=10761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=276048, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=91096, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=388881, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39277, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=388881, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10761]={ + ["next_chapter"]=10762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=276658, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=91297, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=392769, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39670, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=392769, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10762]={ + ["next_chapter"]=10763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=277269, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=91499, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=396697, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40066, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=396697, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10763]={ + ["next_chapter"]=10764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=277881, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=91701, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=400664, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40467, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=400664, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10764]={ + ["next_chapter"]=10765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=278494, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=91903, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=404671, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40872, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=404671, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10765]={ + ["next_chapter"]=10766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=279108, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=92106, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=408717, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41280, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=408717, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10766]={ + ["next_chapter"]=10767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=279723, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=92309, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=412805, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41693, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=412805, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10767]={ + ["next_chapter"]=10768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=280339, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=92512, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=416933, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42110, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=416933, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10768]={ + ["next_chapter"]=10769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=280956, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=92716, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=421102, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42531, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=421102, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10769]={ + ["next_chapter"]=10770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=281574, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=92919, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=425313, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42957, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=425313, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=41059, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1076, + ["unit"]=0 + } + }, + [10770]={ + ["next_chapter"]=10771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=282193, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=93124, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=429566, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43386, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=429566, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10771]={ + ["next_chapter"]=10772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=282813, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=93328, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=433862, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43820, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=433862, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10772]={ + ["next_chapter"]=10773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=283434, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=93533, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=438200, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44258, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=438200, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10773]={ + ["next_chapter"]=10774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=284055, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=93738, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=442582, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44701, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=442582, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10774]={ + ["next_chapter"]=10775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=284678, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=93944, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=447008, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45148, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=447008, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10775]={ + ["next_chapter"]=10776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=285302, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=94150, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=451478, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45599, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=451478, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10776]={ + ["next_chapter"]=10777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=285927, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=94356, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=455993, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46055, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=455993, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10777]={ + ["next_chapter"]=10778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=286552, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=94562, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=460553, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46516, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=460553, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10778]={ + ["next_chapter"]=10779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=287179, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=94769, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=465159, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46981, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=465159, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10779]={ + ["next_chapter"]=10780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=287807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=94976, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=469810, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47451, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=469810, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=45354, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1077, + ["unit"]=0 + } + }, + [10780]={ + ["next_chapter"]=10781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=288435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=95184, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=474508, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47925, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=474508, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10781]={ + ["next_chapter"]=10782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=289065, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=95391, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=479253, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48405, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=479253, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10782]={ + ["next_chapter"]=10783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=289696, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=95600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=484046, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48889, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=484046, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10783]={ + ["next_chapter"]=10784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=290327, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=95808, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=488886, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49378, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=488886, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10784]={ + ["next_chapter"]=10785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=290960, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=96017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=493775, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49871, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=493775, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10785]={ + ["next_chapter"]=10786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=291593, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=96226, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=498713, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50370, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=498713, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10786]={ + ["next_chapter"]=10787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=292228, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=96435, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=503700, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50874, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=503700, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10787]={ + ["next_chapter"]=10788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=292864, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=96645, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=508737, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51382, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=508737, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10788]={ + ["next_chapter"]=10789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=293500, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=96855, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=513824, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51896, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=513824, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10789]={ + ["next_chapter"]=10790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=294138, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=97065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=518963, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52415, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=518963, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=50100, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1078, + ["unit"]=0 + } + }, + [10790]={ + ["next_chapter"]=10791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=294776, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=97276, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=524152, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52939, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=524152, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10791]={ + ["next_chapter"]=10792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=295416, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=97487, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=529394, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53469, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=529394, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10792]={ + ["next_chapter"]=10793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=296056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=97699, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=534688, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54003, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=534688, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10793]={ + ["next_chapter"]=10794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=296698, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=97910, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=540035, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54543, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=540035, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10794]={ + ["next_chapter"]=10795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=297340, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=98122, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=545435, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55089, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=545435, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10795]={ + ["next_chapter"]=10796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=297984, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=98335, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=550889, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55640, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=550889, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10796]={ + ["next_chapter"]=10797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=298628, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=98547, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=556398, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56196, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=556398, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10797]={ + ["next_chapter"]=10798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=299274, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=98760, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=561962, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56758, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=561962, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10798]={ + ["next_chapter"]=10799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=299920, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=98974, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=567582, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57326, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=567582, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10799]={ + ["next_chapter"]=10800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=300568, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=99187, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=573258, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57899, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=573258, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=55341, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1079, + ["unit"]=0 + } + }, + [10800]={ + ["next_chapter"]=10801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=301216, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=99401, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=578990, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58478, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=578990, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10801]={ + ["next_chapter"]=10802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=301865, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=99616, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=584780, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59063, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=584780, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10802]={ + ["next_chapter"]=10803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=302516, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=99830, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=590628, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59653, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=590628, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10803]={ + ["next_chapter"]=10804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=303167, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=100045, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=596534, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60250, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=596534, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10804]={ + ["next_chapter"]=10805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=303820, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=100261, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=602500, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60852, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=602500, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10805]={ + ["next_chapter"]=10806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=304473, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=100476, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=608525, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61461, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=608525, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10806]={ + ["next_chapter"]=10807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=305128, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=100692, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=614610, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62076, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=614610, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10807]={ + ["next_chapter"]=10808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=305783, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=100908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=620756, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62696, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=620756, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10808]={ + ["next_chapter"]=10809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=306440, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=101125, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=626963, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63323, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=626963, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10809]={ + ["next_chapter"]=10810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=307097, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=101342, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=633233, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63957, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=633233, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=61131, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + [10810]={ + ["next_chapter"]=10811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=307756, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=101559, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=639565, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64596, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=639565, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10811]={ + ["next_chapter"]=10812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=308415, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=101777, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=645961, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65242, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=645961, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10812]={ + ["next_chapter"]=10813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=309076, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=101995, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=652421, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65894, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=652421, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10813]={ + ["next_chapter"]=10814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=309737, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=102213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=658945, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66553, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=658945, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10814]={ + ["next_chapter"]=10815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=310400, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=102432, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=665534, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67219, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=665534, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10815]={ + ["next_chapter"]=10816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=311063, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=102651, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=672190, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67891, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=672190, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10816]={ + ["next_chapter"]=10817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=311728, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=102870, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=678912, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68570, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=678912, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10817]={ + ["next_chapter"]=10818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=312393, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=103090, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=685701, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69256, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=685701, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10818]={ + ["next_chapter"]=10819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=313060, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=103310, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=692558, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69948, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=692558, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10819]={ + ["next_chapter"]=10820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=313727, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=103530, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=699483, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70648, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=699483, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=67527, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1081, + ["unit"]=0 + } + }, + [10820]={ + ["next_chapter"]=10821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=314396, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=103751, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=706478, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71354, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=706478, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10821]={ + ["next_chapter"]=10822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=315065, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=103972, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=713543, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72068, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=713543, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10822]={ + ["next_chapter"]=10823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=315736, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=104193, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=720678, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72789, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=720678, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10823]={ + ["next_chapter"]=10824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=316408, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=104415, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=727885, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73516, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=727885, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10824]={ + ["next_chapter"]=10825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=317080, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=104637, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=735164, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74252, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=735164, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10825]={ + ["next_chapter"]=10826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=317754, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=104859, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=742516, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74994, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=742516, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10826]={ + ["next_chapter"]=10827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=318429, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=105081, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=749941, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75744, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=749941, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10827]={ + ["next_chapter"]=10828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=319104, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=105304, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=757440, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76501, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=757440, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10828]={ + ["next_chapter"]=10829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=319781, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=105528, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=765015, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77266, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=765015, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10829]={ + ["next_chapter"]=10830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=320459, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=105751, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=772665, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78039, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=772665, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=74591, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1082, + ["unit"]=0 + } + }, + [10830]={ + ["next_chapter"]=10831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=321138, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=105975, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=780391, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78820, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=780391, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10831]={ + ["next_chapter"]=10832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=321817, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=106200, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=788195, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79608, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=788195, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10832]={ + ["next_chapter"]=10833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=322498, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=106424, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=796077, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80404, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=796077, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10833]={ + ["next_chapter"]=10834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=323180, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=106649, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=804038, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81208, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=804038, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10834]={ + ["next_chapter"]=10835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=323863, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=106875, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=812078, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82020, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=812078, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10835]={ + ["next_chapter"]=10836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=324547, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=107100, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=820199, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82840, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=820199, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10836]={ + ["next_chapter"]=10837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=325231, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=107326, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=828401, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83669, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=828401, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10837]={ + ["next_chapter"]=10838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=325917, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=107553, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=836685, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84505, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=836685, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10838]={ + ["next_chapter"]=10839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=326604, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=107779, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=845052, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85350, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=845052, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10839]={ + ["next_chapter"]=10840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=327292, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=108006, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=853503, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86204, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=853503, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=82395, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1083, + ["unit"]=0 + } + }, + [10840]={ + ["next_chapter"]=10841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=327981, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=108234, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=862038, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87066, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=862038, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10841]={ + ["next_chapter"]=10842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=328671, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=108462, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=870658, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87936, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=870658, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10842]={ + ["next_chapter"]=10843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=329362, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=108690, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=879365, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88816, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=879365, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10843]={ + ["next_chapter"]=10844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=330054, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=108918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=888158, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89704, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=888158, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10844]={ + ["next_chapter"]=10845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=330748, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=109147, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=897040, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90601, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=897040, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10845]={ + ["next_chapter"]=10846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=331442, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=109376, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=906010, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91507, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=906010, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10846]={ + ["next_chapter"]=10847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=332137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=109605, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=915070, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92422, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=915070, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10847]={ + ["next_chapter"]=10848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=332833, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=109835, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=924221, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93346, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=924221, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10848]={ + ["next_chapter"]=10849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=333530, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=110065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=933463, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94280, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=933463, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10849]={ + ["next_chapter"]=10850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=334229, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=110295, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=942798, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95223, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=942798, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=91016, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1084, + ["unit"]=0 + } + }, + [10850]={ + ["next_chapter"]=10851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=334928, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=110526, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=952226, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96175, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=952226, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10851]={ + ["next_chapter"]=10852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=335628, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=110757, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=961748, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97137, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=961748, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10852]={ + ["next_chapter"]=10853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=336330, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=110989, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=971366, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98108, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=971366, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10853]={ + ["next_chapter"]=10854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=337032, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=111221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=981079, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99089, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=981079, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10854]={ + ["next_chapter"]=10855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=337736, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=111453, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=990890, + ["unit"]=14 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100080, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=990890, + ["unit"]=14 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10855]={ + ["next_chapter"]=10856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=338440, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=111685, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1001, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101081, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1001, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10856]={ + ["next_chapter"]=10857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=339146, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=111918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1011, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102091, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1011, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10857]={ + ["next_chapter"]=10858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=339852, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=112151, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1021, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103112, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1021, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10858]={ + ["next_chapter"]=10859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=340560, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=112385, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1031, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104144, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1031, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10859]={ + ["next_chapter"]=10860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=341269, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=112619, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1041, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105185, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1041, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=100538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1085, + ["unit"]=0 + } + }, + [10860]={ + ["next_chapter"]=10861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=341978, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=112853, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1052, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106237, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1052, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10861]={ + ["next_chapter"]=10862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=342689, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=113087, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1062, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107299, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1062, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10862]={ + ["next_chapter"]=10863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=343401, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=113322, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1073, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108372, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1073, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10863]={ + ["next_chapter"]=10864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=344114, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=113558, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1084, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109456, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1084, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10864]={ + ["next_chapter"]=10865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=344828, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=113793, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1095, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110550, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1095, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10865]={ + ["next_chapter"]=10866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=345543, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=114029, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1106, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111656, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1106, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10866]={ + ["next_chapter"]=10867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=346259, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=114265, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1117, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112773, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1117, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10867]={ + ["next_chapter"]=10868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=346976, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=114502, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1128, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113900, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1128, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10868]={ + ["next_chapter"]=10869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=347694, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=114739, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1139, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115039, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1139, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10869]={ + ["next_chapter"]=10870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=348413, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=114976, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1150, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116190, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1150, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=111056, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1086, + ["unit"]=0 + } + }, + [10870]={ + ["next_chapter"]=10871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=349133, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=115214, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1162, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117352, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1162, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10871]={ + ["next_chapter"]=10872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=349854, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=115452, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1174, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118525, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1174, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10872]={ + ["next_chapter"]=10873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=350577, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=115690, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1185, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119710, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1185, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10873]={ + ["next_chapter"]=10874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=351300, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=115929, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1197, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120907, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1197, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10874]={ + ["next_chapter"]=10875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352025, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=116168, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1209, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122116, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1209, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10875]={ + ["next_chapter"]=10876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=352750, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=116408, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1221, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123338, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1221, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10876]={ + ["next_chapter"]=10877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=353477, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=116647, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1233, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124571, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1233, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10877]={ + ["next_chapter"]=10878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354204, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=116887, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1246, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125817, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1246, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10878]={ + ["next_chapter"]=10879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=354933, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=117128, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1258, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127075, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1258, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10879]={ + ["next_chapter"]=10880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=355662, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=117369, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1271, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128346, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1271, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=122675, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1087, + ["unit"]=0 + } + }, + [10880]={ + ["next_chapter"]=10881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=356393, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=117610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1283, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129629, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1283, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10881]={ + ["next_chapter"]=10882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357125, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=117851, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1296, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130925, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1296, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10882]={ + ["next_chapter"]=10883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=357858, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=118093, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1309, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132235, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1309, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10883]={ + ["next_chapter"]=10884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=358592, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=118335, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1322, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133557, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1322, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10884]={ + ["next_chapter"]=10885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=359327, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=118578, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1336, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134893, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1336, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10885]={ + ["next_chapter"]=10886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=360063, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=118821, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1349, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136241, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1349, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10886]={ + ["next_chapter"]=10887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=360800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=119064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1362, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137604, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1362, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10887]={ + ["next_chapter"]=10888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=361538, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=119308, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1376, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138980, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1376, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10888]={ + ["next_chapter"]=10889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=362278, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=119552, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1390, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140370, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10889]={ + ["next_chapter"]=10890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=363018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=119796, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1404, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141773, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1404, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=135510, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1088, + ["unit"]=0 + } + }, + [10890]={ + ["next_chapter"]=10891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=363759, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=120041, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1418, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143191, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1418, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10891]={ + ["next_chapter"]=10892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=364502, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=120286, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1432, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144623, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1432, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10892]={ + ["next_chapter"]=10893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=365245, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=120531, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1446, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146069, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1446, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10893]={ + ["next_chapter"]=10894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=365990, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=120777, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1461, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147530, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1461, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10894]={ + ["next_chapter"]=10895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=366735, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=121023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1475, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149005, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1475, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10895]={ + ["next_chapter"]=10896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=367482, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=121269, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1490, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150495, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10896]={ + ["next_chapter"]=10897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=368230, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=121516, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1505, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152000, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1505, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10897]={ + ["next_chapter"]=10898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=368979, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=121763, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1520, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153520, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10898]={ + ["next_chapter"]=10899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=369729, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=122011, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1535, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155056, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1535, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10899]={ + ["next_chapter"]=10900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=370480, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=122258, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1551, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156606, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1551, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=149687, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1089, + ["unit"]=0 + } + }, + [10900]={ + ["next_chapter"]=10901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=371232, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=122507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1566, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158172, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1566, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10901]={ + ["next_chapter"]=10902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=371985, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=122755, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1582, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159754, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1582, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10902]={ + ["next_chapter"]=10903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=372739, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=123004, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1598, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161351, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1598, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10903]={ + ["next_chapter"]=10904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=373495, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=123253, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1614, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162965, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1614, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10904]={ + ["next_chapter"]=10905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=374251, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=123503, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1630, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164595, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1630, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10905]={ + ["next_chapter"]=10906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=375009, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=123753, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1646, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166241, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1646, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10906]={ + ["next_chapter"]=10907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=375767, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=124003, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1662, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167903, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1662, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10907]={ + ["next_chapter"]=10908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=376527, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=124254, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1679, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169582, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1679, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10908]={ + ["next_chapter"]=10909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=377288, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=124505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1696, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171278, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1696, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10909]={ + ["next_chapter"]=10910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=378049, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=124756, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1713, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172991, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1713, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=165348, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + [10910]={ + ["next_chapter"]=10911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=378812, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=125008, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1730, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174720, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1730, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10911]={ + ["next_chapter"]=10912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=379576, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=125260, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1747, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176468, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1747, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10912]={ + ["next_chapter"]=10913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=380341, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=125513, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1765, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178232, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1765, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10913]={ + ["next_chapter"]=10914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=381107, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=125765, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1782, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180015, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1782, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10914]={ + ["next_chapter"]=10915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=381875, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=126019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1800, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181815, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10915]={ + ["next_chapter"]=10916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=382643, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=126272, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1818, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183633, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1818, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10916]={ + ["next_chapter"]=10917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=383412, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=126526, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1836, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185469, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1836, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10917]={ + ["next_chapter"]=10918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=384183, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=126780, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1855, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187324, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1855, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10918]={ + ["next_chapter"]=10919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=384954, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=127035, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1873, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189197, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1873, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10919]={ + ["next_chapter"]=10920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=385727, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=127290, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1892, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191089, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1892, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=182647, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1091, + ["unit"]=0 + } + }, + [10920]={ + ["next_chapter"]=10921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=386501, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=127545, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1911, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193000, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1911, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10921]={ + ["next_chapter"]=10922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=387276, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=127801, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1930, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194930, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1930, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10922]={ + ["next_chapter"]=10923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=388052, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=128057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1949, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196879, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1949, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10923]={ + ["next_chapter"]=10924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=388829, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=128313, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1969, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198848, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1969, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10924]={ + ["next_chapter"]=10925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=389607, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=128570, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1988, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200837, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=1988, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10925]={ + ["next_chapter"]=10926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=390386, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=128827, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2008, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202845, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2008, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10926]={ + ["next_chapter"]=10927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=391166, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=129085, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2028, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204873, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2028, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10927]={ + ["next_chapter"]=10928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=391948, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=129343, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2049, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206922, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2049, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10928]={ + ["next_chapter"]=10929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=392730, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=129601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2069, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208991, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2069, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10929]={ + ["next_chapter"]=10930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=393514, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=129860, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2090, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211081, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2090, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=201756, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1092, + ["unit"]=0 + } + }, + [10930]={ + ["next_chapter"]=10931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=394298, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=130119, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2111, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213192, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2111, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10931]={ + ["next_chapter"]=10932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=395084, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=130378, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2132, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215324, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2132, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10932]={ + ["next_chapter"]=10933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=395871, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=130637, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2153, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217477, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2153, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10933]={ + ["next_chapter"]=10934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=396659, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=130898, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2175, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219652, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2175, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10934]={ + ["next_chapter"]=10935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=397448, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=131158, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2197, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221849, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2197, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10935]={ + ["next_chapter"]=10936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=398238, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=131419, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2218, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224067, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2218, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10936]={ + ["next_chapter"]=10937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=399030, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=131680, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2241, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226308, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2241, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10937]={ + ["next_chapter"]=10938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=399822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=131941, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2263, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228571, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2263, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10938]={ + ["next_chapter"]=10939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=400616, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=132203, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2286, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230857, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2286, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10939]={ + ["next_chapter"]=10940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=401410, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=132465, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2309, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233165, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2309, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=222864, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1093, + ["unit"]=0 + } + }, + [10940]={ + ["next_chapter"]=10941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=402206, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=132728, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2332, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235497, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2332, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10941]={ + ["next_chapter"]=10942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=403003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=132991, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2355, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237852, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2355, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10942]={ + ["next_chapter"]=10943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=403801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=133254, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2379, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240230, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2379, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10943]={ + ["next_chapter"]=10944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=404600, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=133518, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2402, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242633, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2402, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10944]={ + ["next_chapter"]=10945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=405400, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=133782, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2426, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245059, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2426, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10945]={ + ["next_chapter"]=10946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=406201, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=134046, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2451, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247509, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2451, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10946]={ + ["next_chapter"]=10947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=407003, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=134311, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2475, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249985, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2475, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10947]={ + ["next_chapter"]=10948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=407807, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=134576, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2500, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=252484, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10948]={ + ["next_chapter"]=10949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=408612, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=134842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2525, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255009, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2525, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10949]={ + ["next_chapter"]=10950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=409417, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=135108, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2550, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257559, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2550, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=246181, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1094, + ["unit"]=0 + } + }, + [10950]={ + ["next_chapter"]=10951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=410224, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=135374, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2576, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260135, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2576, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10951]={ + ["next_chapter"]=10952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=411032, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=135641, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2601, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262736, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2601, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10952]={ + ["next_chapter"]=10953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=411841, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=135908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2627, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265364, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2627, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10953]={ + ["next_chapter"]=10954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=412651, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=136175, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2654, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268017, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2654, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10954]={ + ["next_chapter"]=10955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=413462, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=136443, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2680, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270697, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2680, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10955]={ + ["next_chapter"]=10956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=414275, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=136711, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2707, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=273404, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2707, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10956]={ + ["next_chapter"]=10957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=415088, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=136979, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2734, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=276138, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2734, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10957]={ + ["next_chapter"]=10958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=415903, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=137248, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2761, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=278900, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2761, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10958]={ + ["next_chapter"]=10959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=416719, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=137517, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2789, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281689, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2789, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10959]={ + ["next_chapter"]=10960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=417535, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=137787, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2817, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=284506, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2817, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=271937, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1095, + ["unit"]=0 + } + }, + [10960]={ + ["next_chapter"]=10961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=418353, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=138057, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2845, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287351, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2845, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10961]={ + ["next_chapter"]=10962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=419173, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=138327, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2874, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=290224, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2874, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10962]={ + ["next_chapter"]=10963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=419993, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=138598, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2902, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293127, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2902, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10963]={ + ["next_chapter"]=10964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=420814, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=138869, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2931, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296058, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2931, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10964]={ + ["next_chapter"]=10965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=421637, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=139140, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2961, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299018, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2961, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10965]={ + ["next_chapter"]=10966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=422460, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=139412, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2990, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302009, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=2990, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10966]={ + ["next_chapter"]=10967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=423285, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=139684, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3020, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305029, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3020, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10967]={ + ["next_chapter"]=10968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=424111, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=139957, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3050, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308079, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3050, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10968]={ + ["next_chapter"]=10969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=424938, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=140229, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3081, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=311160, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3081, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10969]={ + ["next_chapter"]=10970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=425766, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=140503, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3112, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=314271, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3112, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=300387, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1096, + ["unit"]=0 + } + }, + [10970]={ + ["next_chapter"]=10971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=426595, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=140776, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3143, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=317414, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3143, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10971]={ + ["next_chapter"]=10972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=427425, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=141050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3174, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320588, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3174, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10972]={ + ["next_chapter"]=10973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=428257, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=141325, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3206, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323794, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3206, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10973]={ + ["next_chapter"]=10974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=429089, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=141599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3238, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=327032, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3238, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10974]={ + ["next_chapter"]=10975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=429923, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=141875, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3270, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=330302, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3270, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10975]={ + ["next_chapter"]=10976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=430758, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=142150, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3303, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=333605, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3303, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10976]={ + ["next_chapter"]=10977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=431594, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=142426, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3336, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=336941, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3336, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10977]={ + ["next_chapter"]=10978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=432431, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=142702, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3369, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=340311, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3369, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10978]={ + ["next_chapter"]=10979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=433269, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=142979, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3403, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=343714, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3403, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10979]={ + ["next_chapter"]=10980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=434109, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=143256, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3437, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=347151, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3437, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=331814, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1097, + ["unit"]=0 + } + }, + [10980]={ + ["next_chapter"]=10981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=434949, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=143533, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3472, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350623, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3472, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10981]={ + ["next_chapter"]=10982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=435791, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=143811, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3506, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354129, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3506, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10982]={ + ["next_chapter"]=10983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=436634, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=144089, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3541, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=357670, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3541, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10983]={ + ["next_chapter"]=10984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=437478, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=144368, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3577, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=361247, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3577, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10984]={ + ["next_chapter"]=10985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=438323, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=144647, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3612, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=364859, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3612, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10985]={ + ["next_chapter"]=10986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=439169, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=144926, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3649, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=368508, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3649, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10986]={ + ["next_chapter"]=10987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=440017, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=145205, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3685, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=372193, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3685, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10987]={ + ["next_chapter"]=10988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=440865, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=145485, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3722, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=375915, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3722, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10988]={ + ["next_chapter"]=10989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=441715, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=145766, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3759, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=379674, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3759, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10989]={ + ["next_chapter"]=10990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=442566, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=146047, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3797, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=383471, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3797, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=366529, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1098, + ["unit"]=0 + } + }, + [10990]={ + ["next_chapter"]=10991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=443417, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=146328, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3835, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=387305, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3835, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10991]={ + ["next_chapter"]=10992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=444271, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=146609, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3873, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=391179, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3873, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10992]={ + ["next_chapter"]=10993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=445125, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=146891, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3912, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=395090, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3912, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10993]={ + ["next_chapter"]=10994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=445980, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=147173, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3951, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=399041, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3951, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10994]={ + ["next_chapter"]=10995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=446837, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=147456, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3990, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=403032, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=3990, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10995]={ + ["next_chapter"]=10996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=447694, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=147739, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4030, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=407062, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4030, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10996]={ + ["next_chapter"]=10997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=448553, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=148023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4071, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=411133, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4071, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10997]={ + ["next_chapter"]=10998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=449413, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=148306, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4111, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=415244, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4111, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10998]={ + ["next_chapter"]=10999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=450274, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=148591, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4152, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=419396, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4152, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [10999]={ + ["next_chapter"]=11000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=451137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=148875, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4194, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=423590, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4194, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=404876, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1099, + ["unit"]=0 + } + }, + [11000]={ + ["next_chapter"]=11001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=452000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=149160, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4236, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=427826, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4236, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11001]={ + ["next_chapter"]=11002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=452865, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=149445, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4278, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=432104, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4278, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11002]={ + ["next_chapter"]=11003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=453730, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=149731, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4321, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436425, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4321, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11003]={ + ["next_chapter"]=11004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=454597, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=150017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4364, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=440790, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4364, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11004]={ + ["next_chapter"]=11005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=455465, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=150304, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4408, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=445198, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4408, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11005]={ + ["next_chapter"]=11006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=456334, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=150590, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4452, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=449650, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4452, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11006]={ + ["next_chapter"]=11007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=457205, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=150878, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4496, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=454146, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4496, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11007]={ + ["next_chapter"]=11008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=458076, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=151165, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4541, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=458688, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4541, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11008]={ + ["next_chapter"]=11009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=458949, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=151453, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4587, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=463274, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4587, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11009]={ + ["next_chapter"]=11010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=459823, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=151742, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4633, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=467907, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4633, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=447235, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + [11010]={ + ["next_chapter"]=11011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=460698, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=152030, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4679, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=472586, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4679, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11011]={ + ["next_chapter"]=11012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=461574, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=152319, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4726, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=477312, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4726, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11012]={ + ["next_chapter"]=11013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=462451, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=152609, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4773, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=482085, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4773, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11013]={ + ["next_chapter"]=11014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=463330, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=152899, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4821, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=486906, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4821, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11014]={ + ["next_chapter"]=11015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=464209, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=153189, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4869, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=491775, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4869, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11015]={ + ["next_chapter"]=11016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=465090, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=153480, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4918, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=496693, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4918, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11016]={ + ["next_chapter"]=11017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=465972, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=153771, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4967, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=501660, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=4967, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11017]={ + ["next_chapter"]=11018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=466855, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=154062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5017, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506676, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5017, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11018]={ + ["next_chapter"]=11019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=467739, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=154354, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5067, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=511743, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5067, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11019]={ + ["next_chapter"]=11020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=468625, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=154646, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5117, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516861, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5117, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=494026, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1101, + ["unit"]=0 + } + }, + [11020]={ + ["next_chapter"]=11021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=469511, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=154939, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5169, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=522029, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5169, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11021]={ + ["next_chapter"]=11022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=470399, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=155232, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5220, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=527250, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5220, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11022]={ + ["next_chapter"]=11023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=471288, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=155525, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5272, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=532522, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5272, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11023]={ + ["next_chapter"]=11024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=472178, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=155819, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5325, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=537847, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5325, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11024]={ + ["next_chapter"]=11025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=473070, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=156113, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5378, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=543226, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5378, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11025]={ + ["next_chapter"]=11026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=473962, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=156407, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5432, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=548658, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5432, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11026]={ + ["next_chapter"]=11027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=474856, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=156702, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5487, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=554145, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5487, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11027]={ + ["next_chapter"]=11028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=475750, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=156998, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5541, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=559686, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5541, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11028]={ + ["next_chapter"]=11029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=476646, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=157293, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5597, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=565283, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5597, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11029]={ + ["next_chapter"]=11030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=477544, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=157589, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5653, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=570936, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5653, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=545712, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1102, + ["unit"]=0 + } + }, + [11030]={ + ["next_chapter"]=11031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=478442, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=157886, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5709, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=576645, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5709, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11031]={ + ["next_chapter"]=11032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=479341, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=158183, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5766, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=582412, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5766, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11032]={ + ["next_chapter"]=11033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=480242, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=158480, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5824, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=588236, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5824, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11033]={ + ["next_chapter"]=11034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=481144, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=158777, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5882, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=594118, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5882, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11034]={ + ["next_chapter"]=11035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=482047, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=159075, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5941, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=600059, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=5941, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11035]={ + ["next_chapter"]=11036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=482951, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=159374, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6001, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=606060, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6001, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11036]={ + ["next_chapter"]=11037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=483856, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=159673, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6061, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=612120, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6061, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11037]={ + ["next_chapter"]=11038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=484763, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=159972, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6121, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=618242, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6121, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11038]={ + ["next_chapter"]=11039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=485671, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=160271, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6182, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=624424, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6182, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11039]={ + ["next_chapter"]=11040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=486580, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=160571, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6244, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=630668, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6244, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=602806, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1103, + ["unit"]=0 + } + }, + [11040]={ + ["next_chapter"]=11041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=487490, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=160872, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6307, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=636975, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6307, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11041]={ + ["next_chapter"]=11042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=488401, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=161172, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6370, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=643345, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6370, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11042]={ + ["next_chapter"]=11043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=489314, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=161473, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6433, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=649778, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6433, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11043]={ + ["next_chapter"]=11044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=490227, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=161775, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6498, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=656276, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6498, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11044]={ + ["next_chapter"]=11045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=491142, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=162077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6563, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=662839, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6563, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11045]={ + ["next_chapter"]=11046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=492058, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=162379, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6628, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=669467, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6628, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11046]={ + ["next_chapter"]=11047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=492975, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=162682, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6695, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=676162, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6695, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11047]={ + ["next_chapter"]=11048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=493894, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=162985, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6762, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682923, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6762, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11048]={ + ["next_chapter"]=11049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=494813, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=163288, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6829, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=689753, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6829, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11049]={ + ["next_chapter"]=11050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=495734, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=163592, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6898, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=696650, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6898, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=665873, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1104, + ["unit"]=0 + } + }, + [11050]={ + ["next_chapter"]=11051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=496656, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=163896, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6967, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=703617, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=6967, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11051]={ + ["next_chapter"]=11052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=497579, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=164201, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7036, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=710653, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7036, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11052]={ + ["next_chapter"]=11053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=498504, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=164506, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7107, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=717759, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7107, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11053]={ + ["next_chapter"]=11054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=499429, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=164812, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7178, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=724937, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7178, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11054]={ + ["next_chapter"]=11055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=500356, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=165117, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7249, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=732186, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7249, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11055]={ + ["next_chapter"]=11056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=501284, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=165424, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7322, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=739508, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7322, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11056]={ + ["next_chapter"]=11057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=502213, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=165730, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7395, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=746903, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7395, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11057]={ + ["next_chapter"]=11058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=503143, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=166037, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7469, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=754372, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7469, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11058]={ + ["next_chapter"]=11059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=504075, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=166345, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7544, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=761916, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7544, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11059]={ + ["next_chapter"]=11060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=505007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=166652, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7619, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=769535, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7619, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=735538, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1105, + ["unit"]=0 + } + }, + [11060]={ + ["next_chapter"]=11061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=505941, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=166961, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7695, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=777230, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7695, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11061]={ + ["next_chapter"]=11062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=506876, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=167269, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7772, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=785003, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7772, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11062]={ + ["next_chapter"]=11063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=507813, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=167578, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7850, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=792853, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7850, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11063]={ + ["next_chapter"]=11064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=508750, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=167888, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7929, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=800781, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=7929, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11064]={ + ["next_chapter"]=11065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=509689, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=168197, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8008, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=808789, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8008, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11065]={ + ["next_chapter"]=11066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=510629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=168507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8088, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=816877, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8088, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11066]={ + ["next_chapter"]=11067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=511570, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=168818, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8169, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=825046, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8169, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11067]={ + ["next_chapter"]=11068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=512512, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=169129, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8250, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=833296, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8250, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11068]={ + ["next_chapter"]=11069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=513456, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=169440, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8333, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=841629, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8333, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11069]={ + ["next_chapter"]=11070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=514400, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=169752, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8416, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=850045, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8416, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=812491, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1106, + ["unit"]=0 + } + }, + [11070]={ + ["next_chapter"]=11071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=515346, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=170064, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8500, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=858546, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8500, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11071]={ + ["next_chapter"]=11072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=516293, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=170377, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8585, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=867131, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8585, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11072]={ + ["next_chapter"]=11073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=517242, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=170690, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8671, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=875803, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8671, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11073]={ + ["next_chapter"]=11074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=518191, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=171003, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8758, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=884561, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8758, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11074]={ + ["next_chapter"]=11075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=519142, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=171317, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8846, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=893406, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8846, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11075]={ + ["next_chapter"]=11076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=520094, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=171631, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8934, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=902340, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=8934, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11076]={ + ["next_chapter"]=11077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=521047, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=171946, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9023, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=911364, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9023, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11077]={ + ["next_chapter"]=11078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=522002, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=172261, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9114, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=920477, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9114, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11078]={ + ["next_chapter"]=11079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=522957, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=172576, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9205, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=929682, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9205, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11079]={ + ["next_chapter"]=11080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=523914, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=172892, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9297, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=938979, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9297, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=897496, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1107, + ["unit"]=0 + } + }, + [11080]={ + ["next_chapter"]=11081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=524872, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=173208, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9390, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=948369, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9390, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11081]={ + ["next_chapter"]=11082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=525831, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=173524, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9484, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=957853, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9484, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11082]={ + ["next_chapter"]=11083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=526792, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=173841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9579, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=967431, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9579, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11083]={ + ["next_chapter"]=11084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=527753, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=174159, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9674, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=977105, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9674, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11084]={ + ["next_chapter"]=11085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=528716, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=174476, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9771, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=986876, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9771, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11085]={ + ["next_chapter"]=11086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=529680, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=174794, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9869, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=996745, + ["unit"]=15 + }, + ["idle_gold"]={ + ["value"]=9869, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11086]={ + ["next_chapter"]=11087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=530646, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=175113, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9967, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1007, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9967, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11087]={ + ["next_chapter"]=11088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=531612, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=175432, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10067, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1017, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10067, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11088]={ + ["next_chapter"]=11089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=532580, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=175751, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10168, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1027, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10168, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11089]={ + ["next_chapter"]=11090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=533549, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=176071, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10269, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1037, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10269, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=991394, + ["unit"]=15 + }, + ["grasp_mastery_reward"]={ + ["value"]=1108, + ["unit"]=0 + } + }, + [11090]={ + ["next_chapter"]=11091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=534519, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=176391, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10372, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1048, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10372, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11091]={ + ["next_chapter"]=11092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=535490, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=176712, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10476, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1058, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10476, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11092]={ + ["next_chapter"]=11093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=536463, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=177033, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10581, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1069, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10581, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11093]={ + ["next_chapter"]=11094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=537437, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=177354, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10686, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1079, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10686, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11094]={ + ["next_chapter"]=11095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=538412, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=177676, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10793, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1090, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10793, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11095]={ + ["next_chapter"]=11096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=539388, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=177998, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10901, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1101, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=10901, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11096]={ + ["next_chapter"]=11097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=540366, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=178321, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11010, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1112, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11010, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11097]={ + ["next_chapter"]=11098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=541344, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=178644, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11120, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1123, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11120, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11098]={ + ["next_chapter"]=11099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=542324, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=178967, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11232, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1134, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11232, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11099]={ + ["next_chapter"]=11100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=543306, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=179291, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11344, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1146, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11344, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1095, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1109, + ["unit"]=0 + } + }, + [11100]={ + ["next_chapter"]=11101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=544288, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=179615, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11457, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1157, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11457, + ["unit"]=15 + }, + ["chapter_drop"]=58, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11101]={ + ["next_chapter"]=11102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=545272, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=179940, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11572, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1169, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11572, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11102]={ + ["next_chapter"]=11103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=546257, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=180265, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11688, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1180, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11688, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11103]={ + ["next_chapter"]=11104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=547243, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=180590, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11804, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1192, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11804, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11104]={ + ["next_chapter"]=11105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=548230, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=180916, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11923, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1204, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=11923, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11105]={ + ["next_chapter"]=11106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=549219, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=181242, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12042, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1216, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=12042, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11106]={ + ["next_chapter"]=11107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=550208, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=181569, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12162, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1228, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=12162, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11107]={ + ["next_chapter"]=11108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=551199, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=181896, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12284, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1241, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=12284, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11108]={ + ["next_chapter"]=11109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=552192, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=182223, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12407, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1253, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=12407, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11109]={ + ["next_chapter"]=11110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=553185, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=182551, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12531, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1266, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=12531, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1210, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + [11110]={ + ["next_chapter"]=11111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=554180, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=182879, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12656, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1278, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=12656, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11111]={ + ["next_chapter"]=11112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=555176, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=183208, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12783, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1291, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=12783, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11112]={ + ["next_chapter"]=11113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=556173, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=183537, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12910, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1304, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=12910, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11113]={ + ["next_chapter"]=11114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=557172, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=183867, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13040, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1317, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=13040, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11114]={ + ["next_chapter"]=11115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=558171, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=184197, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13170, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1330, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=13170, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11115]={ + ["next_chapter"]=11116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=559172, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=184527, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13302, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1343, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=13302, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11116]={ + ["next_chapter"]=11117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=560174, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=184858, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13435, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1357, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=13435, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11117]={ + ["next_chapter"]=11118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=561178, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=185189, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13569, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1370, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=13569, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11118]={ + ["next_chapter"]=11119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=562183, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=185520, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13705, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1384, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=13705, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11119]={ + ["next_chapter"]=11120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=563188, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=185852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13842, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1398, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=13842, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1336, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1111, + ["unit"]=0 + } + }, + [11120]={ + ["next_chapter"]=11121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=564196, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=186185, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13980, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1412, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=13980, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11121]={ + ["next_chapter"]=11122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=565204, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=186517, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14120, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1426, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=14120, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11122]={ + ["next_chapter"]=11123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=566214, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=186850, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14261, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1440, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=14261, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11123]={ + ["next_chapter"]=11124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=567224, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=187184, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14404, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1455, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=14404, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11124]={ + ["next_chapter"]=11125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=568237, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=187518, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14548, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1469, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=14548, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11125]={ + ["next_chapter"]=11126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=569250, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=187853, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14693, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1484, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=14693, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11126]={ + ["next_chapter"]=11127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=570265, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=188187, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14840, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1499, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=14840, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11127]={ + ["next_chapter"]=11128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=571280, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=188523, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14989, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1514, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=14989, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11128]={ + ["next_chapter"]=11129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=572298, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=188858, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15138, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1529, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=15138, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11129]={ + ["next_chapter"]=11130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=573316, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=189194, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15290, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1544, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=15290, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1476, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1112, + ["unit"]=0 + } + }, + [11130]={ + ["next_chapter"]=11131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=574336, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=189531, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15443, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1560, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=15443, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11131]={ + ["next_chapter"]=11132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=575356, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=189868, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15597, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1575, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=15597, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11132]={ + ["next_chapter"]=11133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=576379, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=190205, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15753, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1591, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=15753, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11133]={ + ["next_chapter"]=11134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=577402, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=190543, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15911, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1607, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=15911, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11134]={ + ["next_chapter"]=11135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=578427, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=190881, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16070, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1623, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=16070, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11135]={ + ["next_chapter"]=11136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=579453, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=191219, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16230, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1639, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=16230, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11136]={ + ["next_chapter"]=11137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=580480, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=191558, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16393, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1656, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=16393, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11137]={ + ["next_chapter"]=11138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=581508, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=191898, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16557, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1672, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=16557, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11138]={ + ["next_chapter"]=11139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=582538, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=192237, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16722, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1689, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=16722, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11139]={ + ["next_chapter"]=11140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=583569, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=192578, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16890, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1706, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=16890, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1630, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1113, + ["unit"]=0 + } + }, + [11140]={ + ["next_chapter"]=11141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=584601, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=192918, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17058, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1723, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=17058, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11141]={ + ["next_chapter"]=11142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=585634, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=193259, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17229, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1740, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=17229, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11142]={ + ["next_chapter"]=11143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=586669, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=193601, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17401, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1758, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=17401, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11143]={ + ["next_chapter"]=11144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=587705, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=193943, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17575, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1775, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=17575, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11144]={ + ["next_chapter"]=11145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=588742, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=194285, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17751, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1793, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=17751, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11145]={ + ["next_chapter"]=11146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=589781, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=194628, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17929, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1811, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=17929, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11146]={ + ["next_chapter"]=11147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=590820, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=194971, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18108, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1829, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=18108, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11147]={ + ["next_chapter"]=11148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=591861, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=195314, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18289, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1847, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=18289, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11148]={ + ["next_chapter"]=11149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=592904, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=195658, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18472, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1866, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=18472, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11149]={ + ["next_chapter"]=11150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=593947, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=196003, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18657, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1884, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=18657, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1801, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1114, + ["unit"]=0 + } + }, + [11150]={ + ["next_chapter"]=11151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=594992, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=196347, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18843, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1903, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=18843, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11151]={ + ["next_chapter"]=11152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=596038, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=196693, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19032, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1922, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=19032, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11152]={ + ["next_chapter"]=11153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=597085, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=197038, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19222, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1941, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=19222, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11153]={ + ["next_chapter"]=11154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=598134, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=197384, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19414, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1961, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=19414, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11154]={ + ["next_chapter"]=11155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=599184, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=197731, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19608, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1980, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=19608, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11155]={ + ["next_chapter"]=11156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=600235, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=198078, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19804, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2000, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=19804, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11156]={ + ["next_chapter"]=11157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=601287, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=198425, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20002, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2020, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=20002, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11157]={ + ["next_chapter"]=11158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=602341, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=198773, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20202, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2040, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=20202, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11158]={ + ["next_chapter"]=11159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=603396, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=199121, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20404, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2061, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=20404, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11159]={ + ["next_chapter"]=11160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=604452, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=199469, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20608, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2081, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=20608, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1989, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1115, + ["unit"]=0 + } + }, + [11160]={ + ["next_chapter"]=11161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=605510, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=199818, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20814, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2102, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=20814, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11161]={ + ["next_chapter"]=11162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=606569, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=200168, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21023, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2123, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=21023, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11162]={ + ["next_chapter"]=11163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=607629, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=200517, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21233, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2145, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=21233, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11163]={ + ["next_chapter"]=11164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=608690, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=200868, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21445, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2166, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=21445, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11164]={ + ["next_chapter"]=11165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=609753, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=201218, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21660, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2188, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=21660, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11165]={ + ["next_chapter"]=11166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=610817, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=201569, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21876, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2210, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=21876, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11166]={ + ["next_chapter"]=11167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=611882, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=201921, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22095, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2232, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=22095, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11167]={ + ["next_chapter"]=11168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=612948, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=202273, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22316, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2254, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=22316, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11168]={ + ["next_chapter"]=11169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=614016, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=202625, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22539, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2276, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=22539, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11169]={ + ["next_chapter"]=11170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=615085, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=202978, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22765, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2299, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=22765, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2198, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1116, + ["unit"]=0 + } + }, + [11170]={ + ["next_chapter"]=11171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=616155, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=203331, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22992, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2322, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=22992, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11171]={ + ["next_chapter"]=11172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=617227, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=203685, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23222, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2345, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=23222, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11172]={ + ["next_chapter"]=11173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=618300, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=204039, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23454, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2369, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=23454, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11173]={ + ["next_chapter"]=11174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=619374, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=204393, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23689, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2393, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=23689, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11174]={ + ["next_chapter"]=11175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=620449, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=204748, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23926, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2416, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=23926, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11175]={ + ["next_chapter"]=11176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=621526, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=205104, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24165, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2441, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=24165, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11176]={ + ["next_chapter"]=11177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=622604, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=205459, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24407, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2465, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=24407, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11177]={ + ["next_chapter"]=11178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=623683, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=205815, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24651, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2490, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=24651, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11178]={ + ["next_chapter"]=11179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=624764, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=206172, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24897, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2515, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=24897, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11179]={ + ["next_chapter"]=11180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=625846, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=206529, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25146, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2540, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=25146, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2428, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1117, + ["unit"]=0 + } + }, + [11180]={ + ["next_chapter"]=11181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=626929, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=206887, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25398, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2565, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=25398, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11181]={ + ["next_chapter"]=11182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=628013, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=207244, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25652, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2591, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=25652, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11182]={ + ["next_chapter"]=11183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=629099, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=207603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25908, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2617, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=25908, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11183]={ + ["next_chapter"]=11184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=630186, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=207961, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26167, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2643, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=26167, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11184]={ + ["next_chapter"]=11185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=631274, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=208321, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26429, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2669, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=26429, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11185]={ + ["next_chapter"]=11186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=632364, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=208680, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26693, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2696, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=26693, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11186]={ + ["next_chapter"]=11187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=633455, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=209040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26960, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2723, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=26960, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11187]={ + ["next_chapter"]=11188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=634547, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=209401, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27230, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2750, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=27230, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11188]={ + ["next_chapter"]=11189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=635641, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=209761, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27502, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2778, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=27502, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11189]={ + ["next_chapter"]=11190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=636735, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=210123, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27777, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2805, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=27777, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2682, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1118, + ["unit"]=0 + } + }, + [11190]={ + ["next_chapter"]=11191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=637832, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=210484, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28055, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2834, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=28055, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11191]={ + ["next_chapter"]=11192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=638929, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=210847, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28335, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2862, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=28335, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11192]={ + ["next_chapter"]=11193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=640028, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=211209, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28619, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2890, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=28619, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11193]={ + ["next_chapter"]=11194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=641128, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=211572, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28905, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2919, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=28905, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11194]={ + ["next_chapter"]=11195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=642229, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=211936, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29194, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2949, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=29194, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11195]={ + ["next_chapter"]=11196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=643332, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=212299, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29486, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2978, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=29486, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11196]={ + ["next_chapter"]=11197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=644435, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=212664, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29781, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3008, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=29781, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11197]={ + ["next_chapter"]=11198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=645541, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=213028, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30079, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3038, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=30079, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11198]={ + ["next_chapter"]=11199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=646647, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=213394, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30379, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3068, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=30379, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11199]={ + ["next_chapter"]=11200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=647755, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=213759, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30683, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3099, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=30683, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2962, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1119, + ["unit"]=0 + } + }, + [11200]={ + ["next_chapter"]=11201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=648864, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=214125, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30990, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3130, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=30990, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11201]={ + ["next_chapter"]=11202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=649974, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=214492, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31300, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3161, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=31300, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11202]={ + ["next_chapter"]=11203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=651086, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=214858, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31613, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3193, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=31613, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11203]={ + ["next_chapter"]=11204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=652199, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=215226, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31929, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3225, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=31929, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11204]={ + ["next_chapter"]=11205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=653313, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=215593, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32248, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3257, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=32248, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11205]={ + ["next_chapter"]=11206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=654429, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=215962, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32571, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3290, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=32571, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11206]={ + ["next_chapter"]=11207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=655546, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=216330, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32896, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3323, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=32896, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11207]={ + ["next_chapter"]=11208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=656664, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=216699, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33225, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3356, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=33225, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11208]={ + ["next_chapter"]=11209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=657784, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=217069, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33558, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3389, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=33558, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11209]={ + ["next_chapter"]=11210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=658905, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=217439, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33893, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3423, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=33893, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3272, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + [11210]={ + ["next_chapter"]=11211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=660027, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=217809, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34232, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3457, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=34232, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11211]={ + ["next_chapter"]=11212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=661151, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=218180, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34574, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3492, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=34574, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11212]={ + ["next_chapter"]=11213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=662275, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=218551, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34920, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3527, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=34920, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11213]={ + ["next_chapter"]=11214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=663401, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=218922, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35269, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3562, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=35269, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11214]={ + ["next_chapter"]=11215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=664529, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=219295, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35622, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3598, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=35622, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11215]={ + ["next_chapter"]=11216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=665658, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=219667, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35978, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3634, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=35978, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11216]={ + ["next_chapter"]=11217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=666788, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=220040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36338, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3670, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=36338, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11217]={ + ["next_chapter"]=11218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=667919, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=220413, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36702, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3707, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=36702, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11218]={ + ["next_chapter"]=11219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=669052, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=220787, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37069, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3744, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=37069, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11219]={ + ["next_chapter"]=11220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=670186, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=221161, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37439, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3781, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=37439, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3614, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1121, + ["unit"]=0 + } + }, + [11220]={ + ["next_chapter"]=11221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=671321, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=221536, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37814, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3819, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=37814, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11221]={ + ["next_chapter"]=11222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=672458, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=221911, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38192, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3857, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=38192, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11222]={ + ["next_chapter"]=11223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=673596, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=222287, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38574, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3896, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=38574, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11223]={ + ["next_chapter"]=11224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=674735, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=222663, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38959, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3935, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=38959, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11224]={ + ["next_chapter"]=11225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=675876, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=223039, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39349, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3974, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=39349, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11225]={ + ["next_chapter"]=11226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=677018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=223416, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39742, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4014, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=39742, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11226]={ + ["next_chapter"]=11227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=678161, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=223793, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40140, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4054, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=40140, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11227]={ + ["next_chapter"]=11228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=679306, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=224171, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40541, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4095, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=40541, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11228]={ + ["next_chapter"]=11229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=680452, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=224549, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40947, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4136, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=40947, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11229]={ + ["next_chapter"]=11230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=681599, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=224928, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41356, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4177, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=41356, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3992, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1122, + ["unit"]=0 + } + }, + [11230]={ + ["next_chapter"]=11231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=682748, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=225307, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41770, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4219, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=41770, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11231]={ + ["next_chapter"]=11232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=683898, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=225686, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42187, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4261, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=42187, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11232]={ + ["next_chapter"]=11233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=685049, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=226066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42609, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4304, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=42609, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11233]={ + ["next_chapter"]=11234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=686202, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=226447, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43035, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4347, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=43035, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11234]={ + ["next_chapter"]=11235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=687356, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=226827, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43466, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4390, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=43466, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11235]={ + ["next_chapter"]=11236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=688511, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=227209, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43900, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4434, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=43900, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11236]={ + ["next_chapter"]=11237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=689667, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=227590, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44339, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4478, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=44339, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11237]={ + ["next_chapter"]=11238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=690825, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=227972, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44783, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4523, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=44783, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11238]={ + ["next_chapter"]=11239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=691985, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=228355, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45231, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4568, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=45231, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11239]={ + ["next_chapter"]=11240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=693145, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=228738, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45683, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4614, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=45683, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4410, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1123, + ["unit"]=0 + } + }, + [11240]={ + ["next_chapter"]=11241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=694307, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=229121, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46140, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4660, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=46140, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11241]={ + ["next_chapter"]=11242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=695470, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=229505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46601, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4707, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=46601, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11242]={ + ["next_chapter"]=11243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=696635, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=229890, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47067, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4754, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=47067, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11243]={ + ["next_chapter"]=11244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=697801, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=230274, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47538, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4801, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=47538, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11244]={ + ["next_chapter"]=11245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=698968, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=230659, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48013, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4849, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=48013, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11245]={ + ["next_chapter"]=11246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=700137, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=231045, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48493, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4898, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=48493, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11246]={ + ["next_chapter"]=11247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=701307, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=231431, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48978, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4947, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=48978, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11247]={ + ["next_chapter"]=11248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=702478, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=231818, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49468, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4996, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=49468, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11248]={ + ["next_chapter"]=11249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=703651, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=232205, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49963, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5046, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=49963, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11249]={ + ["next_chapter"]=11250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=704825, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=232592, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50462, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5097, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=50462, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4872, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1124, + ["unit"]=0 + } + }, + [11250]={ + ["next_chapter"]=11251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=706000, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=232980, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50967, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5148, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=50967, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11251]={ + ["next_chapter"]=11252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=707177, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=233368, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51477, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5199, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=51477, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11252]={ + ["next_chapter"]=11253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=708355, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=233757, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51991, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5251, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=51991, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11253]={ + ["next_chapter"]=11254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=709534, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=234146, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52511, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5304, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=52511, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11254]={ + ["next_chapter"]=11255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=710715, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=234536, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53037, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5357, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=53037, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11255]={ + ["next_chapter"]=11256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=711897, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=234926, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53567, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5410, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=53567, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11256]={ + ["next_chapter"]=11257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=713080, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=235316, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54103, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5464, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=54103, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11257]={ + ["next_chapter"]=11258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=714265, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=235707, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54644, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5519, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=54644, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11258]={ + ["next_chapter"]=11259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=715451, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=236099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55190, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5574, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=55190, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11259]={ + ["next_chapter"]=11260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=716639, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=236491, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55742, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5630, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=55742, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5381, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1125, + ["unit"]=0 + } + }, + [11260]={ + ["next_chapter"]=11261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=717827, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=236883, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56299, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5686, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=56299, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11261]={ + ["next_chapter"]=11262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=719017, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=237276, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56862, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5743, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=56862, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11262]={ + ["next_chapter"]=11263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=720209, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=237669, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57431, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5801, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=57431, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11263]={ + ["next_chapter"]=11264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=721402, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=238063, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58005, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5859, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=58005, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11264]={ + ["next_chapter"]=11265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=722596, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=238457, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58585, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5917, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=58585, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11265]={ + ["next_chapter"]=11266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=723792, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=238851, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59171, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5976, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=59171, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11266]={ + ["next_chapter"]=11267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=724989, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=239246, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59763, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6036, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=59763, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11267]={ + ["next_chapter"]=11268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=726187, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=239642, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60360, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6096, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=60360, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11268]={ + ["next_chapter"]=11269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=727386, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=240038, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60964, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6157, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=60964, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11269]={ + ["next_chapter"]=11270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=728587, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=240434, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61574, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6219, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=61574, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5944, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1126, + ["unit"]=0 + } + }, + [11270]={ + ["next_chapter"]=11271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=729790, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=240831, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62189, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6281, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=62189, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11271]={ + ["next_chapter"]=11272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=730994, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=241228, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62811, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6344, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=62811, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11272]={ + ["next_chapter"]=11273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=732199, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=241626, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63439, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6407, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=63439, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11273]={ + ["next_chapter"]=11274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=733405, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=242024, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64074, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6471, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=64074, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11274]={ + ["next_chapter"]=11275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=734613, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=242422, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64715, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6536, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=64715, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11275]={ + ["next_chapter"]=11276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=735822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=242821, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65362, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6602, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=65362, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11276]={ + ["next_chapter"]=11277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=737033, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=243221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66015, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6668, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=66015, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11277]={ + ["next_chapter"]=11278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=738244, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=243621, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66676, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6734, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=66676, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11278]={ + ["next_chapter"]=11279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=739458, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=244021, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67342, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6802, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=67342, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11279]={ + ["next_chapter"]=11280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=740672, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=244422, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=68016, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6870, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=68016, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6566, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1127, + ["unit"]=0 + } + }, + [11280]={ + ["next_chapter"]=11281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=741888, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=244823, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=68696, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6938, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=68696, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11281]={ + ["next_chapter"]=11282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=743106, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=245225, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69383, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7008, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=69383, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11282]={ + ["next_chapter"]=11283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=744324, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=245627, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70077, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7078, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=70077, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11283]={ + ["next_chapter"]=11284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=745544, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=246030, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70777, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7149, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=70777, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11284]={ + ["next_chapter"]=11285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=746766, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=246433, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=71485, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7220, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=71485, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11285]={ + ["next_chapter"]=11286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=747989, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=246836, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72200, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7292, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=72200, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11286]={ + ["next_chapter"]=11287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=749213, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=247240, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72922, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7365, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=72922, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11287]={ + ["next_chapter"]=11288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=750438, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=247645, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=73651, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7439, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=73651, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11288]={ + ["next_chapter"]=11289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=751665, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=248050, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=74388, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7513, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=74388, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11289]={ + ["next_chapter"]=11290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=752894, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=248455, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=75132, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7588, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=75132, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1128, + ["unit"]=0 + } + }, + [11290]={ + ["next_chapter"]=11291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=754123, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=248861, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=75883, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7664, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=75883, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11291]={ + ["next_chapter"]=11292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=755354, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=249267, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=76642, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7741, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=76642, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11292]={ + ["next_chapter"]=11293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=756587, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=249674, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=77408, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7818, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=77408, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11293]={ + ["next_chapter"]=11294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=757821, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=250081, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78182, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7896, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=78182, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11294]={ + ["next_chapter"]=11295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=759056, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=250488, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78964, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7975, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=78964, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11295]={ + ["next_chapter"]=11296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=760292, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=250897, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=79754, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8055, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=79754, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11296]={ + ["next_chapter"]=11297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=761530, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=251305, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=80551, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8136, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=80551, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11297]={ + ["next_chapter"]=11298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=762770, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=251714, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=81357, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8217, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=81357, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11298]={ + ["next_chapter"]=11299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=764010, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=252123, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=82170, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8299, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=82170, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11299]={ + ["next_chapter"]=11300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=765253, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=252533, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=82992, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8382, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=82992, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8012, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1129, + ["unit"]=0 + } + }, + [11300]={ + ["next_chapter"]=11301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=766496, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=252944, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=83822, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8466, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=83822, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11301]={ + ["next_chapter"]=11302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=767741, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=253354, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=84660, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8551, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=84660, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11302]={ + ["next_chapter"]=11303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=768987, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=253766, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=85507, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8636, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=85507, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11303]={ + ["next_chapter"]=11304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=770235, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=254177, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=86362, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8723, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=86362, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11304]={ + ["next_chapter"]=11305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=771484, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=254590, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=87226, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8810, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=87226, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11305]={ + ["next_chapter"]=11306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=772734, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=255002, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=88098, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8898, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=88098, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11306]={ + ["next_chapter"]=11307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=773986, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=255415, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=88979, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8987, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=88979, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11307]={ + ["next_chapter"]=11308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=775239, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=255829, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=89869, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9077, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=89869, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11308]={ + ["next_chapter"]=11309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=776494, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=256243, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=90767, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9167, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=90767, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11309]={ + ["next_chapter"]=11310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=777750, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=256657, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=91675, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9259, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=91675, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8850, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + [11310]={ + ["next_chapter"]=11311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=779007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=257072, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=92592, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9352, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=92592, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11311]={ + ["next_chapter"]=11312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=780266, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=257488, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=93518, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9445, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=93518, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11312]={ + ["next_chapter"]=11313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=781526, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=257903, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=94453, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9540, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=94453, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11313]={ + ["next_chapter"]=11314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=782787, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=258320, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=95397, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9635, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=95397, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11314]={ + ["next_chapter"]=11315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=784050, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=258737, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=96351, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9731, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=96351, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11315]={ + ["next_chapter"]=11316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=785314, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=259154, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=97315, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9829, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=97315, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11316]={ + ["next_chapter"]=11317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=786580, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=259571, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=98288, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9927, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=98288, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11317]={ + ["next_chapter"]=11318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=787847, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=259990, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=99271, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10026, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=99271, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11318]={ + ["next_chapter"]=11319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=789116, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=260408, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=100263, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10127, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=100263, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11319]={ + ["next_chapter"]=11320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=790385, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=260827, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=101266, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10228, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=101266, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9776, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1131, + ["unit"]=0 + } + }, + [11320]={ + ["next_chapter"]=11321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=791657, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=261247, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=102279, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10330, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=102279, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11321]={ + ["next_chapter"]=11322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=792929, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=261667, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=103302, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10433, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=103302, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11322]={ + ["next_chapter"]=11323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=794203, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=262087, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=104335, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10538, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=104335, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11323]={ + ["next_chapter"]=11324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=795479, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=262508, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=105378, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10643, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=105378, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11324]={ + ["next_chapter"]=11325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=796756, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=262929, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=106432, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10750, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=106432, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11325]={ + ["next_chapter"]=11326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=798034, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=263351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=107496, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10857, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=107496, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11326]={ + ["next_chapter"]=11327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=799314, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=263774, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=108571, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10966, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=108571, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11327]={ + ["next_chapter"]=11328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=800595, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=264196, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=109657, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11075, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=109657, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11328]={ + ["next_chapter"]=11329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=801877, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=264619, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=110753, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11186, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=110753, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11329]={ + ["next_chapter"]=11330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=803161, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=265043, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=111861, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11298, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=111861, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10799, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1132, + ["unit"]=0 + } + }, + [11330]={ + ["next_chapter"]=11331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=804446, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=265467, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=112979, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11411, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=112979, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11331]={ + ["next_chapter"]=11332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=805733, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=265892, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=114109, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11525, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=114109, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11332]={ + ["next_chapter"]=11333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=807021, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=266317, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=115250, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11640, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=115250, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11333]={ + ["next_chapter"]=11334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=808311, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=266742, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=116403, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11757, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=116403, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11334]={ + ["next_chapter"]=11335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=809601, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=267168, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=117567, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11874, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=117567, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11335]={ + ["next_chapter"]=11336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=810894, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=267595, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=118743, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11993, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=118743, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11336]={ + ["next_chapter"]=11337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=812188, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=268022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=119930, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12113, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=119930, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11337]={ + ["next_chapter"]=11338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=813483, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=268449, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=121129, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12234, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=121129, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11338]={ + ["next_chapter"]=11339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=814779, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=268877, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=122341, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12356, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=122341, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11339]={ + ["next_chapter"]=11340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=816077, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=269305, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=123564, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12480, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=123564, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11929, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1133, + ["unit"]=0 + } + }, + [11340]={ + ["next_chapter"]=11341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=817377, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=269734, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=124800, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12605, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=124800, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11341]={ + ["next_chapter"]=11342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=818677, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=270164, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=126048, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12731, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=126048, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11342]={ + ["next_chapter"]=11343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=819979, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=270593, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=127308, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12858, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=127308, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11343]={ + ["next_chapter"]=11344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=821283, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=271023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=128581, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12987, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=128581, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11344]={ + ["next_chapter"]=11345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=822588, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=271454, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=129867, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13117, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=129867, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11345]={ + ["next_chapter"]=11346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=823895, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=271885, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=131166, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13248, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=131166, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11346]={ + ["next_chapter"]=11347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=825202, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=272317, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=132477, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13380, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=132477, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11347]={ + ["next_chapter"]=11348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=826512, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=272749, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=133802, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13514, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=133802, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11348]={ + ["next_chapter"]=11349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=827822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=273181, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=135140, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13649, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=135140, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11349]={ + ["next_chapter"]=11350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=829134, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=273614, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=136491, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13786, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=136491, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13177, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1134, + ["unit"]=0 + } + }, + [11350]={ + ["next_chapter"]=11351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=830448, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=274048, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=137856, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13923, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=137856, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11351]={ + ["next_chapter"]=11352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=831763, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=274482, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=139235, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14063, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=139235, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11352]={ + ["next_chapter"]=11353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=833079, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=274916, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=140627, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14203, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=140627, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11353]={ + ["next_chapter"]=11354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=834397, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=275351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=142034, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14345, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=142034, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11354]={ + ["next_chapter"]=11355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=835716, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=275786, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=143454, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14489, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=143454, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11355]={ + ["next_chapter"]=11356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=837037, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=276222, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=144888, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14634, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=144888, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11356]={ + ["next_chapter"]=11357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=838359, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=276658, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=146337, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14780, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=146337, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11357]={ + ["next_chapter"]=11358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=839683, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=277095, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=147801, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14928, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=147801, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11358]={ + ["next_chapter"]=11359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=841007, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=277532, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=149279, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15077, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=149279, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11359]={ + ["next_chapter"]=11360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=842334, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=277970, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=150771, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15228, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=150771, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=14555, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1135, + ["unit"]=0 + } + }, + [11360]={ + ["next_chapter"]=11361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=843662, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=278408, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=152279, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15380, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=152279, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11361]={ + ["next_chapter"]=11362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=844991, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=278847, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=153802, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15534, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=153802, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11362]={ + ["next_chapter"]=11363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=846321, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=279286, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=155340, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15689, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=155340, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11363]={ + ["next_chapter"]=11364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=847653, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=279726, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=156893, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15846, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=156893, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11364]={ + ["next_chapter"]=11365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=848987, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=280166, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=158462, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16005, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=158462, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11365]={ + ["next_chapter"]=11366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=850322, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=280606, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=160047, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16165, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=160047, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11366]={ + ["next_chapter"]=11367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=851658, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=281047, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=161647, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16326, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=161647, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11367]={ + ["next_chapter"]=11368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=852996, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=281489, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=163264, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16490, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=163264, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11368]={ + ["next_chapter"]=11369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=854335, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=281931, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=164897, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16655, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=164897, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11369]={ + ["next_chapter"]=11370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=855676, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=282373, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=166546, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16821, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=166546, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=16078, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1136, + ["unit"]=0 + } + }, + [11370]={ + ["next_chapter"]=11371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=857018, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=282816, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=168211, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16989, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=168211, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11371]={ + ["next_chapter"]=11372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=858362, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=283259, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=169893, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17159, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=169893, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11372]={ + ["next_chapter"]=11373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=859706, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=283703, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=171592, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17331, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=171592, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11373]={ + ["next_chapter"]=11374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=861053, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=284147, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=173308, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17504, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=173308, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11374]={ + ["next_chapter"]=11375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=862401, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=284592, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=175041, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17679, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=175041, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11375]={ + ["next_chapter"]=11376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=863750, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=285038, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=176791, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17856, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=176791, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11376]={ + ["next_chapter"]=11377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=865101, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=285483, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=178559, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18034, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=178559, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11377]={ + ["next_chapter"]=11378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=866453, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=285929, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=180345, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18215, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=180345, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11378]={ + ["next_chapter"]=11379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=867806, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=286376, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=182148, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18397, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=182148, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11379]={ + ["next_chapter"]=11380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=869162, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=286823, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=183970, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18581, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=183970, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17760, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1137, + ["unit"]=0 + } + }, + [11380]={ + ["next_chapter"]=11381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=870518, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=287271, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=185810, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18767, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=185810, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11381]={ + ["next_chapter"]=11382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=871876, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=287719, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=187668, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18954, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=187668, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11382]={ + ["next_chapter"]=11383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=873235, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=288168, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=189544, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19144, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=189544, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11383]={ + ["next_chapter"]=11384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=874596, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=288617, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=191440, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19335, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=191440, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11384]={ + ["next_chapter"]=11385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=875958, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=289066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=193354, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19529, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=193354, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11385]={ + ["next_chapter"]=11386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=877322, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=289516, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=195288, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19724, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=195288, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11386]={ + ["next_chapter"]=11387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=878687, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=289967, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=197241, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19921, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=197241, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11387]={ + ["next_chapter"]=11388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=880054, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=290418, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=199213, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20121, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=199213, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11388]={ + ["next_chapter"]=11389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=881422, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=290869, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=201205, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20322, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=201205, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11389]={ + ["next_chapter"]=11390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=882791, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=291321, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=203217, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20525, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=203217, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=19618, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1138, + ["unit"]=0 + } + }, + [11390]={ + ["next_chapter"]=11391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=884162, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=291774, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=205249, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20730, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=205249, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11391]={ + ["next_chapter"]=11392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=885535, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=292226, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=207302, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20937, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=207302, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11392]={ + ["next_chapter"]=11393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=886909, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=292680, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=209375, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21147, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=209375, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11393]={ + ["next_chapter"]=11394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=888284, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=293134, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=211469, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21358, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=211469, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11394]={ + ["next_chapter"]=11395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=889661, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=293588, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=213583, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21572, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=213583, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11395]={ + ["next_chapter"]=11396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=891039, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=294043, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=215719, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21788, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=215719, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11396]={ + ["next_chapter"]=11397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=892419, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=294498, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=217876, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22006, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=217876, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11397]={ + ["next_chapter"]=11398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=893800, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=294954, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=220055, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22226, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=220055, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11398]={ + ["next_chapter"]=11399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=895182, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=295410, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=222256, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22448, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=222256, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11399]={ + ["next_chapter"]=11400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=896566, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=295867, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=224478, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22672, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=224478, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=21671, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1139, + ["unit"]=0 + } + }, + [11400]={ + ["next_chapter"]=11401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=897952, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=296324, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=226723, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22899, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=226723, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11401]={ + ["next_chapter"]=11402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=899339, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=296782, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=228990, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23128, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=228990, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11402]={ + ["next_chapter"]=11403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=900727, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=297240, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=231280, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23359, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=231280, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11403]={ + ["next_chapter"]=11404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=902117, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=297699, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=233593, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23593, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=233593, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11404]={ + ["next_chapter"]=11405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=903509, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=298158, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=235929, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23829, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=235929, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11405]={ + ["next_chapter"]=11406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=904901, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=298617, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=238288, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24067, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=238288, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11406]={ + ["next_chapter"]=11407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=906296, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=299078, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=240671, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24308, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=240671, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11407]={ + ["next_chapter"]=11408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=907691, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=299538, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=243078, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24551, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=243078, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11408]={ + ["next_chapter"]=11409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=909089, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=299999, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=245508, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24796, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=245508, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11409]={ + ["next_chapter"]=11410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=910487, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=300461, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=247964, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25044, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=247964, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=23938, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + [11410]={ + ["next_chapter"]=11411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=911887, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=300923, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=250443, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25295, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=250443, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11411]={ + ["next_chapter"]=11412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=913289, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=301385, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=252948, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25548, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=252948, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11412]={ + ["next_chapter"]=11413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=914692, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=301848, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=255477, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25803, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=255477, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11413]={ + ["next_chapter"]=11414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=916097, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=302312, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=258032, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26061, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=258032, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11414]={ + ["next_chapter"]=11415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=917503, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=302776, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=260612, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26322, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=260612, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11415]={ + ["next_chapter"]=11416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=918910, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=303240, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=263218, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26585, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=263218, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11416]={ + ["next_chapter"]=11417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=920319, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=303705, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=265851, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26851, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=265851, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11417]={ + ["next_chapter"]=11418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=921730, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=304171, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=268509, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27119, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=268509, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11418]={ + ["next_chapter"]=11419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=923141, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=304637, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=271194, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27391, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=271194, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11419]={ + ["next_chapter"]=11420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=924555, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=305103, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=273906, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27665, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=273906, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=26442, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1141, + ["unit"]=0 + } + }, + [11420]={ + ["next_chapter"]=11421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=925970, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=305570, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=276645, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27941, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=276645, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11421]={ + ["next_chapter"]=11422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=927386, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=306037, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=279412, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28221, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=279412, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11422]={ + ["next_chapter"]=11423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=928804, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=306505, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=282206, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28503, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=282206, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11423]={ + ["next_chapter"]=11424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=930223, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=306974, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=285028, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28788, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=285028, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11424]={ + ["next_chapter"]=11425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=931644, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=307442, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=287878, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29076, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=287878, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11425]={ + ["next_chapter"]=11426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=933066, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=307912, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=290757, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29366, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=290757, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11426]={ + ["next_chapter"]=11427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=934490, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=308382, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=293664, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29660, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=293664, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11427]={ + ["next_chapter"]=11428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=935915, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=308852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=296601, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29957, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=296601, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11428]={ + ["next_chapter"]=11429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=937342, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=309323, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=299567, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30256, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=299567, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11429]={ + ["next_chapter"]=11430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=938770, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=309794, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=302563, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30559, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=302563, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=29209, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1142, + ["unit"]=0 + } + }, + [11430]={ + ["next_chapter"]=11431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=940199, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=310266, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=305588, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30864, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=305588, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11431]={ + ["next_chapter"]=11432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=941630, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=310738, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=308644, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31173, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=308644, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11432]={ + ["next_chapter"]=11433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=943063, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=311211, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=311731, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31485, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=311731, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11433]={ + ["next_chapter"]=11434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=944497, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=311684, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=314848, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31800, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=314848, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11434]={ + ["next_chapter"]=11435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=945933, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=312158, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=317996, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32118, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=317996, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11435]={ + ["next_chapter"]=11436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=947370, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=312632, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=321176, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32439, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=321176, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11436]={ + ["next_chapter"]=11437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=948808, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=313107, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=324388, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32763, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=324388, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11437]={ + ["next_chapter"]=11438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=950248, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=313582, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=327632, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33091, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=327632, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11438]={ + ["next_chapter"]=11439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=951690, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=314058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=330908, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33422, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=330908, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11439]={ + ["next_chapter"]=11440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=953133, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=314534, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=334217, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33756, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=334217, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=32265, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1143, + ["unit"]=0 + } + }, + [11440]={ + ["next_chapter"]=11441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=954577, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=315010, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=337560, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34094, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=337560, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11441]={ + ["next_chapter"]=11442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=956023, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=315488, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=340935, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34434, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=340935, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11442]={ + ["next_chapter"]=11443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=957471, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=315965, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=344345, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34779, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=344345, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11443]={ + ["next_chapter"]=11444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=958920, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=316443, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=347788, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35127, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=347788, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11444]={ + ["next_chapter"]=11445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=960370, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=316922, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=351266, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35478, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=351266, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11445]={ + ["next_chapter"]=11446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=961822, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=317401, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=354779, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35833, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=354779, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11446]={ + ["next_chapter"]=11447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=963275, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=317881, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=358326, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36191, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=358326, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11447]={ + ["next_chapter"]=11448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=964730, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=318361, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=361910, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36553, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=361910, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11448]={ + ["next_chapter"]=11449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=966187, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=318842, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=365529, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36918, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=365529, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11449]={ + ["next_chapter"]=11450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=967645, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=319323, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=369184, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37288, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=369184, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=35640, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1144, + ["unit"]=0 + } + }, + [11450]={ + ["next_chapter"]=11451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=969104, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=319804, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=372876, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37660, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=372876, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11451]={ + ["next_chapter"]=11452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=970565, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=320286, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=376605, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38037, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=376605, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11452]={ + ["next_chapter"]=11453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=972027, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=320769, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=380371, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38417, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=380371, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11453]={ + ["next_chapter"]=11454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=973491, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=321252, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=384174, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38802, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=384174, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11454]={ + ["next_chapter"]=11455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=974957, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=321736, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=388016, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39190, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=388016, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11455]={ + ["next_chapter"]=11456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=976424, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=322220, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=391896, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39582, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=391896, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11456]={ + ["next_chapter"]=11457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=977892, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=322704, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=395815, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39977, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=395815, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11457]={ + ["next_chapter"]=11458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=979362, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=323189, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=399773, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40377, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=399773, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11458]={ + ["next_chapter"]=11459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=980833, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=323675, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=403771, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40781, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=403771, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11459]={ + ["next_chapter"]=11460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=982306, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=324161, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=407809, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41189, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=407809, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=39369, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1145, + ["unit"]=0 + } + }, + [11460]={ + ["next_chapter"]=11461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=983781, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=324648, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=411887, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41601, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=411887, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11461]={ + ["next_chapter"]=11462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=985257, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=325135, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=416006, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42017, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=416006, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11462]={ + ["next_chapter"]=11463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=986734, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=325622, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=420166, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42437, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=420166, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11463]={ + ["next_chapter"]=11464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=988213, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=326110, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=424367, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42861, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=424367, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11464]={ + ["next_chapter"]=11465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=989693, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=326599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=428611, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43290, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=428611, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11465]={ + ["next_chapter"]=11466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=991175, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=327088, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=432897, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43723, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=432897, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11466]={ + ["next_chapter"]=11467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=992659, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=327577, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=437226, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44160, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=437226, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11467]={ + ["next_chapter"]=11468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=994144, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=328067, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=441598, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44601, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=441598, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11468]={ + ["next_chapter"]=11469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=995630, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=328558, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=446014, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45047, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=446014, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11469]={ + ["next_chapter"]=11470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=997118, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=329049, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=450475, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45498, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=450475, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=43488, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1146, + ["unit"]=0 + } + }, + [11470]={ + ["next_chapter"]=11471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=998608, + ["unit"]=8 + }, + ["hp_coefficient"]={ + ["value"]=329541, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=454979, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45953, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=454979, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11471]={ + ["next_chapter"]=11472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1000, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=330033, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=459529, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46412, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=459529, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11472]={ + ["next_chapter"]=11473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=330525, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=464124, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46877, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=464124, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11473]={ + ["next_chapter"]=11474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1003, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=331018, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=468766, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47345, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=468766, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11474]={ + ["next_chapter"]=11475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=331512, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=473453, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47819, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=473453, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11475]={ + ["next_chapter"]=11476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=332006, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=478188, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48297, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=478188, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11476]={ + ["next_chapter"]=11477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=332500, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=482970, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48780, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=482970, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11477]={ + ["next_chapter"]=11478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1009, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=332995, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=487799, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49268, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=487799, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11478]={ + ["next_chapter"]=11479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=333491, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=492677, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49760, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=492677, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11479]={ + ["next_chapter"]=11480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1012, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=333987, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=497604, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50258, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=497604, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=48038, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1147, + ["unit"]=0 + } + }, + [11480]={ + ["next_chapter"]=11481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1014, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=334483, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=502580, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50761, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=502580, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11481]={ + ["next_chapter"]=11482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=334980, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=507606, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51268, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=507606, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11482]={ + ["next_chapter"]=11483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=335478, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=512682, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51781, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=512682, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11483]={ + ["next_chapter"]=11484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=335976, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=517809, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52299, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=517809, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11484]={ + ["next_chapter"]=11485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=336475, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=522987, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52822, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=522987, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11485]={ + ["next_chapter"]=11486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=336974, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=528217, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53350, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=528217, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11486]={ + ["next_chapter"]=11487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1023, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=337473, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=533499, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53883, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=533499, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11487]={ + ["next_chapter"]=11488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=337973, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=538834, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54422, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=538834, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11488]={ + ["next_chapter"]=11489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1026, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=338474, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=544222, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54966, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=544222, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11489]={ + ["next_chapter"]=11490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=338975, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=549665, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55516, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=549665, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=53063, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1148, + ["unit"]=0 + } + }, + [11490]={ + ["next_chapter"]=11491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=1029, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=339477, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=555161, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56071, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=555161, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11491]={ + ["next_chapter"]=11492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=339979, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=560713, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56632, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=560713, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11492]={ + ["next_chapter"]=11493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=340481, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=566320, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57198, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=566320, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11493]={ + ["next_chapter"]=11494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=340984, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=571983, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57770, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=571983, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11494]={ + ["next_chapter"]=11495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1035, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=341488, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=577703, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58348, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=577703, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11495]={ + ["next_chapter"]=11496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1036, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=341992, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=583480, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58931, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=583480, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11496]={ + ["next_chapter"]=11497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1038, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=342497, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=589315, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59521, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=589315, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11497]={ + ["next_chapter"]=11498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1039, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=343002, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=595208, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60116, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=595208, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11498]={ + ["next_chapter"]=11499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=343507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=601160, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60717, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=601160, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11499]={ + ["next_chapter"]=11500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=344013, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=607172, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61324, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=607172, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=58615, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1149, + ["unit"]=0 + } + }, + [11500]={ + ["next_chapter"]=11501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=344520, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=613243, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61938, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=613243, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11501]={ + ["next_chapter"]=11502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1046, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=345027, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=619376, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62557, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=619376, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11502]={ + ["next_chapter"]=11503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=345535, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=625570, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63183, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=625570, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11503]={ + ["next_chapter"]=11504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=346043, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=631825, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63814, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=631825, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11504]={ + ["next_chapter"]=11505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1050, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=346552, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=638144, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64452, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=638144, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11505]={ + ["next_chapter"]=11506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1052, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=347061, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=644525, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65097, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=644525, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11506]={ + ["next_chapter"]=11507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1053, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=347570, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=650970, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65748, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=650970, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11507]={ + ["next_chapter"]=11508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=348081, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=657480, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66405, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=657480, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11508]={ + ["next_chapter"]=11509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=348591, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=664055, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67070, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=664055, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11509]={ + ["next_chapter"]=11510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1058, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=349102, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=670695, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67740, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=670695, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=64748, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + [11510]={ + ["next_chapter"]=11511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=349614, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=677402, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68418, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=677402, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11511]={ + ["next_chapter"]=11512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1061, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=350126, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=684176, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69102, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=684176, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11512]={ + ["next_chapter"]=11513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=350639, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=691018, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69793, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=691018, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11513]={ + ["next_chapter"]=11514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=351152, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=697928, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70491, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=697928, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11514]={ + ["next_chapter"]=11515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1066, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=351666, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=704907, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71196, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=704907, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11515]={ + ["next_chapter"]=11516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1067, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=352180, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=711957, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71908, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=711957, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11516]={ + ["next_chapter"]=11517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1069, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=352695, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=719076, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72627, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=719076, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11517]={ + ["next_chapter"]=11518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=353210, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=726267, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73353, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=726267, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11518]={ + ["next_chapter"]=11519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=353726, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=733530, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74086, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=733530, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11519]={ + ["next_chapter"]=11520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=354243, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=740865, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74827, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=740865, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=71522, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1151, + ["unit"]=0 + } + }, + [11520]={ + ["next_chapter"]=11521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=354759, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=748273, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75576, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=748273, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11521]={ + ["next_chapter"]=11522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=355277, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=755756, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76331, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=755756, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11522]={ + ["next_chapter"]=11523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=355794, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=763314, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77095, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=763314, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11523]={ + ["next_chapter"]=11524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=356313, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=770947, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77866, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=770947, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11524]={ + ["next_chapter"]=11525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1081, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=356832, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=778656, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78644, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=778656, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11525]={ + ["next_chapter"]=11526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=357351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=786443, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79431, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=786443, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11526]={ + ["next_chapter"]=11527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1084, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=357871, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=794307, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80225, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=794307, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11527]={ + ["next_chapter"]=11528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1086, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=358391, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=802250, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81027, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=802250, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11528]={ + ["next_chapter"]=11529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=358912, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=810273, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81838, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=810273, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11529]={ + ["next_chapter"]=11530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1089, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=359434, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=818376, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82656, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=818376, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=79004, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1152, + ["unit"]=0 + } + }, + [11530]={ + ["next_chapter"]=11531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1091, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=359956, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=826559, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83483, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=826559, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11531]={ + ["next_chapter"]=11532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1092, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=360478, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=834825, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84317, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=834825, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11532]={ + ["next_chapter"]=11533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=361001, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=843173, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85161, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=843173, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11533]={ + ["next_chapter"]=11534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=361525, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=851605, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86012, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=851605, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11534]={ + ["next_chapter"]=11535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=362049, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=860121, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86872, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=860121, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11535]={ + ["next_chapter"]=11536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1099, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=362573, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=868722, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87741, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=868722, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11536]={ + ["next_chapter"]=11537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1100, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=363098, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=877410, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88618, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=877410, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11537]={ + ["next_chapter"]=11538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1102, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=363624, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=886184, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89505, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=886184, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11538]={ + ["next_chapter"]=11539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=364150, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=895045, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90400, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=895045, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11539]={ + ["next_chapter"]=11540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=364676, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=903996, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91304, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=903996, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=87270, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1153, + ["unit"]=0 + } + }, + [11540]={ + ["next_chapter"]=11541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=365203, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=913036, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92217, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=913036, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11541]={ + ["next_chapter"]=11542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=365731, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=922166, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93139, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=922166, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11542]={ + ["next_chapter"]=11543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1110, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=366259, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=931388, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94070, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=931388, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11543]={ + ["next_chapter"]=11544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=366788, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=940702, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95011, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=940702, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11544]={ + ["next_chapter"]=11545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1113, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=367317, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=950109, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95961, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=950109, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11545]={ + ["next_chapter"]=11546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=367847, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=959610, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96921, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=959610, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11546]={ + ["next_chapter"]=11547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=368377, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=969206, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97890, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=969206, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11547]={ + ["next_chapter"]=11548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1118, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=368908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=978898, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98869, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=978898, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11548]={ + ["next_chapter"]=11549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=369439, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=988687, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99857, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=988687, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11549]={ + ["next_chapter"]=11550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1121, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=369971, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=998574, + ["unit"]=15 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100856, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=998574, + ["unit"]=15 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=96400, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1154, + ["unit"]=0 + } + }, + [11550]={ + ["next_chapter"]=11551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=370503, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1009, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101865, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1009, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11551]={ + ["next_chapter"]=11552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=371036, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1019, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102883, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1019, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11552]={ + ["next_chapter"]=11553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1126, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=371569, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1029, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103912, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1029, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11553]={ + ["next_chapter"]=11554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1128, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=372103, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1039, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104951, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1039, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11554]={ + ["next_chapter"]=11555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=372637, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1050, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106001, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1050, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11555]={ + ["next_chapter"]=11556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=373172, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1060, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107061, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11556]={ + ["next_chapter"]=11557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=373707, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1071, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108131, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1071, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11557]={ + ["next_chapter"]=11558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=374243, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1081, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109213, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1081, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11558]={ + ["next_chapter"]=11559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1136, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=374780, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1092, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110305, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1092, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11559]={ + ["next_chapter"]=11560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1137, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=375317, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1103, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111408, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1103, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=106486, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1155, + ["unit"]=0 + } + }, + [11560]={ + ["next_chapter"]=11561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=375854, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1114, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112522, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1114, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11561]={ + ["next_chapter"]=11562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=376392, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1125, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113647, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1125, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11562]={ + ["next_chapter"]=11563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=376931, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1136, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114783, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1136, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11563]={ + ["next_chapter"]=11564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=377470, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1148, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115931, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1148, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11564]={ + ["next_chapter"]=11565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=378009, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1159, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117091, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1159, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11565]={ + ["next_chapter"]=11566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1147, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=378550, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1171, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118262, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1171, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11566]={ + ["next_chapter"]=11567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1149, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=379090, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1183, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119444, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1183, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11567]={ + ["next_chapter"]=11568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1150, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=379631, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1194, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120639, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1194, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11568]={ + ["next_chapter"]=11569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1152, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=380173, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1206, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121845, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1206, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11569]={ + ["next_chapter"]=11570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1154, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=380715, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1218, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123063, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1218, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=117627, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1156, + ["unit"]=0 + } + }, + [11570]={ + ["next_chapter"]=11571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=381258, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1231, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124294, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1231, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11571]={ + ["next_chapter"]=11572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=381801, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1243, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125537, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1243, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11572]={ + ["next_chapter"]=11573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1159, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=382345, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1255, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126792, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1255, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11573]={ + ["next_chapter"]=11574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1160, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=382889, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1268, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128060, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1268, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11574]={ + ["next_chapter"]=11575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=383434, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1281, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129341, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1281, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11575]={ + ["next_chapter"]=11576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1164, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=383979, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1293, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130634, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1293, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11576]={ + ["next_chapter"]=11577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=384525, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1306, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131941, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1306, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11577]={ + ["next_chapter"]=11578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1167, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=385072, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1319, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133260, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1319, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11578]={ + ["next_chapter"]=11579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1169, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=385619, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1333, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134593, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1333, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11579]={ + ["next_chapter"]=11580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1170, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=386166, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1346, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135939, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1346, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=129933, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1157, + ["unit"]=0 + } + }, + [11580]={ + ["next_chapter"]=11581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1172, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=386714, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1359, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137298, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1359, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11581]={ + ["next_chapter"]=11582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=387263, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1373, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138671, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1373, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11582]={ + ["next_chapter"]=11583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=387812, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1387, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140058, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1387, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11583]={ + ["next_chapter"]=11584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=388361, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1401, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141458, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1401, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11584]={ + ["next_chapter"]=11585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1179, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=388911, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1415, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142873, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1415, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11585]={ + ["next_chapter"]=11586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=389462, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1429, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144302, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1429, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11586]={ + ["next_chapter"]=11587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=390013, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1443, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145745, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1443, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11587]={ + ["next_chapter"]=11588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=390565, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1457, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147202, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1457, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11588]={ + ["next_chapter"]=11589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=391117, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1472, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148674, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1472, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11589]={ + ["next_chapter"]=11590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1187, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=391670, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1487, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150161, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1487, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=143527, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1158, + ["unit"]=0 + } + }, + [11590]={ + ["next_chapter"]=11591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=392223, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1502, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151662, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1502, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11591]={ + ["next_chapter"]=11592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1190, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=392777, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1517, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153179, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1517, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11592]={ + ["next_chapter"]=11593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1192, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=393331, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1532, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154711, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1532, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11593]={ + ["next_chapter"]=11594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=393886, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1547, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156258, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1547, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11594]={ + ["next_chapter"]=11595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=394441, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1563, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157820, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1563, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11595]={ + ["next_chapter"]=11596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=394997, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1578, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159399, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1578, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11596]={ + ["next_chapter"]=11597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=395554, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1594, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160993, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1594, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11597]={ + ["next_chapter"]=11598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1200, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=396111, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1610, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162603, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1610, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11598]={ + ["next_chapter"]=11599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=396668, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1626, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164229, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1626, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11599]={ + ["next_chapter"]=11600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=397226, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1642, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165871, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1642, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=158543, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1159, + ["unit"]=0 + } + }, + [11600]={ + ["next_chapter"]=11601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1205, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=397785, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1659, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167530, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1659, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11601]={ + ["next_chapter"]=11602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1207, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=398344, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1675, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169205, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1675, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11602]={ + ["next_chapter"]=11603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=398903, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1692, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170897, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1692, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11603]={ + ["next_chapter"]=11604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=399464, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1709, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172606, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1709, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11604]={ + ["next_chapter"]=11605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=400024, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1726, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174332, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1726, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11605]={ + ["next_chapter"]=11606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1214, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=400585, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1743, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176075, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1743, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11606]={ + ["next_chapter"]=11607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=401147, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1761, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177836, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1761, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11607]={ + ["next_chapter"]=11608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=401710, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1778, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179614, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1778, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11608]={ + ["next_chapter"]=11609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1219, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=402272, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1796, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181411, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1796, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11609]={ + ["next_chapter"]=11610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=402836, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1814, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183225, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1814, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=175130, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + [11610]={ + ["next_chapter"]=11611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1222, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=403400, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1832, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185057, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1832, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11611]={ + ["next_chapter"]=11612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=403964, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1851, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186908, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1851, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11612]={ + ["next_chapter"]=11613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=404529, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1869, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188777, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1869, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11613]={ + ["next_chapter"]=11614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1228, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=405095, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1888, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190664, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1888, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11614]={ + ["next_chapter"]=11615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1229, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=405661, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1907, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192571, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1907, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11615]={ + ["next_chapter"]=11616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=406227, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1926, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194497, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1926, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11616]={ + ["next_chapter"]=11617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1233, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=406794, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1945, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196442, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1945, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11617]={ + ["next_chapter"]=11618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=407362, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1964, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198406, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1964, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11618]={ + ["next_chapter"]=11619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1236, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=407930, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1984, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200390, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=1984, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11619]={ + ["next_chapter"]=11620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=408499, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2004, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202394, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2004, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=193452, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1161, + ["unit"]=0 + } + }, + [11620]={ + ["next_chapter"]=11621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=409068, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2024, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204418, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2024, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11621]={ + ["next_chapter"]=11622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1241, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=409638, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2044, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206462, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2044, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11622]={ + ["next_chapter"]=11623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=410208, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2065, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208527, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2065, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11623]={ + ["next_chapter"]=11624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=410779, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2085, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210612, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2085, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11624]={ + ["next_chapter"]=11625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1247, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=411351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2106, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212718, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2106, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11625]={ + ["next_chapter"]=11626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1248, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=411923, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2127, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214845, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2127, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11626]={ + ["next_chapter"]=11627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=412495, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2148, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216994, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2148, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11627]={ + ["next_chapter"]=11628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1252, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=413068, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2170, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219164, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2170, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11628]={ + ["next_chapter"]=11629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=413642, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2192, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221355, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2192, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11629]={ + ["next_chapter"]=11630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=414216, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2214, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223569, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2214, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=213692, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1162, + ["unit"]=0 + } + }, + [11630]={ + ["next_chapter"]=11631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1257, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=414790, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2236, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225805, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2236, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11631]={ + ["next_chapter"]=11632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1259, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=415366, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2258, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228063, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2258, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11632]={ + ["next_chapter"]=11633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=415941, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2281, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230343, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2281, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11633]={ + ["next_chapter"]=11634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=416518, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2303, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232647, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2303, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11634]={ + ["next_chapter"]=11635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1264, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=417094, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2326, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234973, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2326, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11635]={ + ["next_chapter"]=11636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=417672, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2350, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237323, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2350, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11636]={ + ["next_chapter"]=11637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=418250, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2373, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239696, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2373, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11637]={ + ["next_chapter"]=11638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=418828, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2397, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242093, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2397, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11638]={ + ["next_chapter"]=11639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=419407, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2421, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244514, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2421, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11639]={ + ["next_chapter"]=11640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1273, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=419986, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2445, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246959, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2445, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=236049, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1163, + ["unit"]=0 + } + }, + [11640]={ + ["next_chapter"]=11641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=420567, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2470, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249429, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2470, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11641]={ + ["next_chapter"]=11642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=421147, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2494, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251923, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2494, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11642]={ + ["next_chapter"]=11643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=421728, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2519, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254442, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2519, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11643]={ + ["next_chapter"]=11644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=422310, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2544, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256987, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2544, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11644]={ + ["next_chapter"]=11645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=422892, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2570, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259557, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2570, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11645]={ + ["next_chapter"]=11646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1283, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=423475, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2596, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262152, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2596, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11646]={ + ["next_chapter"]=11647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=424058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2622, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264774, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2622, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11647]={ + ["next_chapter"]=11648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1287, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=424642, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2648, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267421, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2648, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11648]={ + ["next_chapter"]=11649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=425227, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2674, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270096, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2674, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11649]={ + ["next_chapter"]=11650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1290, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=425811, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2701, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272797, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2701, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=260745, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1164, + ["unit"]=0 + } + }, + [11650]={ + ["next_chapter"]=11651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1292, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=426397, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2728, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275525, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2728, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11651]={ + ["next_chapter"]=11652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1294, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=426983, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2755, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=278280, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2755, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11652]={ + ["next_chapter"]=11653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=427570, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2783, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281063, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2783, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11653]={ + ["next_chapter"]=11654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1297, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=428157, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2811, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283873, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2811, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11654]={ + ["next_chapter"]=11655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=428744, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2839, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286712, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2839, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11655]={ + ["next_chapter"]=11656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=429333, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2867, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289579, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2867, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11656]={ + ["next_chapter"]=11657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=429921, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2896, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292475, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2896, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11657]={ + ["next_chapter"]=11658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1305, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=430511, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2925, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295400, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2925, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11658]={ + ["next_chapter"]=11659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=431101, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2954, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298354, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2954, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11659]={ + ["next_chapter"]=11660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1308, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=431691, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2984, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301337, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=2984, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=288024, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1165, + ["unit"]=0 + } + }, + [11660]={ + ["next_chapter"]=11661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=1310, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=432282, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3013, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304351, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3013, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11661]={ + ["next_chapter"]=11662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1312, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=432873, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3044, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307394, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3044, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11662]={ + ["next_chapter"]=11663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1314, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=433465, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3074, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310468, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3074, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11663]={ + ["next_chapter"]=11664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=434058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3105, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313573, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3105, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11664]={ + ["next_chapter"]=11665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=434651, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3136, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316708, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3136, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11665]={ + ["next_chapter"]=11666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=435245, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3167, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319875, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3167, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11666]={ + ["next_chapter"]=11667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=435839, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3199, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323074, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3199, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11667]={ + ["next_chapter"]=11668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=436434, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3231, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=326305, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3231, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11668]={ + ["next_chapter"]=11669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1324, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=437029, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3263, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329568, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3263, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11669]={ + ["next_chapter"]=11670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1326, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=437625, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3296, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332864, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3296, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=318158, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1166, + ["unit"]=0 + } + }, + [11670]={ + ["next_chapter"]=11671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1328, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=438222, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3329, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=336192, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3329, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11671]={ + ["next_chapter"]=11672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=438819, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3362, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339554, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3362, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11672]={ + ["next_chapter"]=11673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=439416, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3396, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342950, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3396, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11673]={ + ["next_chapter"]=11674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1333, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=440014, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3429, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346379, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3429, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11674]={ + ["next_chapter"]=11675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=440613, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3464, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349843, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3464, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11675]={ + ["next_chapter"]=11676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=441212, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3498, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=353342, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3498, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11676]={ + ["next_chapter"]=11677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=441812, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3533, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356875, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3533, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11677]={ + ["next_chapter"]=11678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=442412, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3569, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360444, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3569, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11678]={ + ["next_chapter"]=11679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=443013, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3604, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=364048, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3604, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11679]={ + ["next_chapter"]=11680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1344, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=443614, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3640, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=367689, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3640, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=351444, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1167, + ["unit"]=0 + } + }, + [11680]={ + ["next_chapter"]=11681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1346, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=444216, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3677, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=371365, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3677, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11681]={ + ["next_chapter"]=11682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=444819, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3714, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=375079, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3714, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11682]={ + ["next_chapter"]=11683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1350, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=445422, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3751, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378830, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3751, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11683]={ + ["next_chapter"]=11684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1352, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=446025, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3788, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382618, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3788, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11684]={ + ["next_chapter"]=11685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=446630, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3826, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386444, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3826, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11685]={ + ["next_chapter"]=11686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1355, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=447234, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3864, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390309, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3864, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11686]={ + ["next_chapter"]=11687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1357, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=447839, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3903, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394212, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3903, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11687]={ + ["next_chapter"]=11688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=448445, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3942, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398154, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3942, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11688]={ + ["next_chapter"]=11689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1361, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=449052, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3982, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402136, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=3982, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11689]={ + ["next_chapter"]=11690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=449659, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4021, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406157, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4021, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=388213, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1168, + ["unit"]=0 + } + }, + [11690]={ + ["next_chapter"]=11691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1364, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=450266, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4062, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410219, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4062, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11691]={ + ["next_chapter"]=11692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=450874, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4102, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414321, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4102, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11692]={ + ["next_chapter"]=11693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=451483, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4143, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418464, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4143, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11693]={ + ["next_chapter"]=11694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=452092, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4185, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422649, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4185, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11694]={ + ["next_chapter"]=11695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1372, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=452702, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4226, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426875, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4226, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11695]={ + ["next_chapter"]=11696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1374, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=453312, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4269, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431144, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4269, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11696]={ + ["next_chapter"]=11697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1376, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=453923, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4311, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=435455, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4311, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11697]={ + ["next_chapter"]=11698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=454534, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4355, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=439810, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4355, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11698]={ + ["next_chapter"]=11699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=455146, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4398, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=444208, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4398, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11699]={ + ["next_chapter"]=11700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1381, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=455758, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4442, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=448650, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4442, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=428829, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1169, + ["unit"]=0 + } + }, + [11700]={ + ["next_chapter"]=11701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=456372, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4486, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=453136, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4486, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11701]={ + ["next_chapter"]=11702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1385, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=456985, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4531, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=457668, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4531, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11702]={ + ["next_chapter"]=11703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1387, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=457599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4577, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=462245, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4577, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11703]={ + ["next_chapter"]=11704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=458214, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4622, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466867, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4622, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11704]={ + ["next_chapter"]=11705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=458829, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4669, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471536, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4669, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11705]={ + ["next_chapter"]=11706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=459445, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4715, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476251, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4715, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11706]={ + ["next_chapter"]=11707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=460062, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4763, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481013, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4763, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11707]={ + ["next_chapter"]=11708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1396, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=460678, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4810, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=485824, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4810, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11708]={ + ["next_chapter"]=11709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1398, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=461296, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4858, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=490682, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4858, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11709]={ + ["next_chapter"]=11710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1400, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=461914, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4907, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=495589, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4907, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=473694, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + [11710]={ + ["next_chapter"]=11711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=462533, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=4956, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=500545, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=4956, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11711]={ + ["next_chapter"]=11712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=463152, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5005, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=505550, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5005, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11712]={ + ["next_chapter"]=11713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1405, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=463772, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5056, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=510606, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5056, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11713]={ + ["next_chapter"]=11714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=464392, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5106, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=515712, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5106, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11714]={ + ["next_chapter"]=11715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=465013, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5157, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=520869, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5157, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11715]={ + ["next_chapter"]=11716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1411, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=465634, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5209, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=526077, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5209, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11716]={ + ["next_chapter"]=11717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1413, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=466256, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5261, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=531338, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5261, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11717]={ + ["next_chapter"]=11718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=466879, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5313, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=536652, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5313, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11718]={ + ["next_chapter"]=11719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=467502, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5367, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=542018, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5367, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11719]={ + ["next_chapter"]=11720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=468126, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5420, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=547438, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5420, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=523253, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1171, + ["unit"]=0 + } + }, + [11720]={ + ["next_chapter"]=11721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1420, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=468750, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5474, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552913, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5474, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11721]={ + ["next_chapter"]=11722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1422, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=469375, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5529, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=558442, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5529, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11722]={ + ["next_chapter"]=11723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1424, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=470000, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5584, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564026, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5584, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11723]={ + ["next_chapter"]=11724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1426, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=470626, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5640, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=569666, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5640, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11724]={ + ["next_chapter"]=11725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1428, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=471252, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5697, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=575363, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5697, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11725]={ + ["next_chapter"]=11726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1430, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=471880, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5754, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=581117, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5754, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11726]={ + ["next_chapter"]=11727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=472507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5811, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=586928, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5811, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11727]={ + ["next_chapter"]=11728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=473135, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5869, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=592797, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5869, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11728]={ + ["next_chapter"]=11729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=473764, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5928, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=598725, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5928, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11729]={ + ["next_chapter"]=11730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=474393, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=5987, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=604712, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=5987, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=577997, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1172, + ["unit"]=0 + } + }, + [11730]={ + ["next_chapter"]=11731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=475023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6047, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=610759, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6047, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11731]={ + ["next_chapter"]=11732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1441, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=475654, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6108, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=616867, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6108, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11732]={ + ["next_chapter"]=11733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=476285, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6169, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=623036, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6169, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11733]={ + ["next_chapter"]=11734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=476916, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6230, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=629266, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6230, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11734]={ + ["next_chapter"]=11735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=477548, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6293, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=635559, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6293, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11735]={ + ["next_chapter"]=11736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1449, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=478181, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6356, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=641914, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6356, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11736]={ + ["next_chapter"]=11737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=478814, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6419, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=648334, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6419, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11737]={ + ["next_chapter"]=11738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1453, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=479448, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6483, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654817, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6483, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11738]={ + ["next_chapter"]=11739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=480083, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6548, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=661365, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6548, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11739]={ + ["next_chapter"]=11740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1457, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=480718, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6614, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=667979, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6614, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=638468, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + [11740]={ + ["next_chapter"]=11741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=481353, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6680, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=674658, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6680, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11741]={ + ["next_chapter"]=11742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1461, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=481989, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6747, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=681405, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6747, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11742]={ + ["next_chapter"]=11743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=482626, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6814, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=688219, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6814, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11743]={ + ["next_chapter"]=11744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1464, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=483263, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6882, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=695101, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6882, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11744]={ + ["next_chapter"]=11745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=483901, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=6951, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=702052, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=6951, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11745]={ + ["next_chapter"]=11746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=484540, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7021, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=709073, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7021, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11746]={ + ["next_chapter"]=11747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1470, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=485178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7091, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=716164, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7091, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11747]={ + ["next_chapter"]=11748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1472, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=485818, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7162, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=723325, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7162, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11748]={ + ["next_chapter"]=11749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=486458, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7233, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=730558, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7233, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11749]={ + ["next_chapter"]=11750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=487099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7306, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=737864, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7306, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=705266, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1174, + ["unit"]=0 + } + }, + [11750]={ + ["next_chapter"]=11751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=1478, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=487740, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7379, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=745243, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7379, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11751]={ + ["next_chapter"]=11752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=488382, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7452, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=752695, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7452, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11752]={ + ["next_chapter"]=11753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1482, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=489024, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7527, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=760222, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7527, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11753]={ + ["next_chapter"]=11754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1484, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=489667, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7602, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=767824, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7602, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11754]={ + ["next_chapter"]=11755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1486, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=490311, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7678, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=775502, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7678, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11755]={ + ["next_chapter"]=11756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=490955, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7755, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=783258, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7755, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11756]={ + ["next_chapter"]=11757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1490, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=491599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7833, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=791090, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7833, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11757]={ + ["next_chapter"]=11758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1492, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=492245, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7911, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799001, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7911, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11758]={ + ["next_chapter"]=11759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1494, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=492890, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=7990, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=806991, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=7990, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11759]={ + ["next_chapter"]=11760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=493537, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8070, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=815061, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8070, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=779052, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1175, + ["unit"]=0 + } + }, + [11760]={ + ["next_chapter"]=11761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=1498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=494184, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8151, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=823212, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8151, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11761]={ + ["next_chapter"]=11762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1499, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=494831, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8232, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=831444, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8232, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11762]={ + ["next_chapter"]=11763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1501, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=495479, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8314, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=839758, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8314, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11763]={ + ["next_chapter"]=11764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=496128, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8398, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=848156, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8398, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11764]={ + ["next_chapter"]=11765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=496777, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8482, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=856637, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8482, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11765]={ + ["next_chapter"]=11766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=497427, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8566, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=865204, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8566, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11766]={ + ["next_chapter"]=11767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=498077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8652, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=873856, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8652, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11767]={ + ["next_chapter"]=11768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=498728, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8739, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=882594, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8739, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11768]={ + ["next_chapter"]=11769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=499380, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8826, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=891420, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8826, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11769]={ + ["next_chapter"]=11770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1515, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=500032, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=8914, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=900334, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=8914, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=860558, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1176, + ["unit"]=0 + } + }, + [11770]={ + ["next_chapter"]=11771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=1517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=500685, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9003, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=909338, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9003, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11771]={ + ["next_chapter"]=11772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=501338, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9093, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=918431, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9093, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11772]={ + ["next_chapter"]=11773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1521, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=501992, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9184, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=927615, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9184, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11773]={ + ["next_chapter"]=11774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=502646, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9276, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=936892, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9276, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11774]={ + ["next_chapter"]=11775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=503301, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9369, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=946260, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9369, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11775]={ + ["next_chapter"]=11776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=503957, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9463, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=955723, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9463, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11776]={ + ["next_chapter"]=11777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=504613, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9557, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=965280, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9557, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11777]={ + ["next_chapter"]=11778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1531, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=505270, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9653, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=974933, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9653, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11778]={ + ["next_chapter"]=11779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1533, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=505927, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9749, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=984682, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9749, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11779]={ + ["next_chapter"]=11780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=506585, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9847, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=994529, + ["unit"]=16 + }, + ["idle_gold"]={ + ["value"]=9847, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=950592, + ["unit"]=16 + }, + ["grasp_mastery_reward"]={ + ["value"]=1177, + ["unit"]=0 + } + }, + [11780]={ + ["next_chapter"]=11781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=507243, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=9945, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1004, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9945, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11781]={ + ["next_chapter"]=11782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1539, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=507902, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10045, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1015, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10045, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11782]={ + ["next_chapter"]=11783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=508562, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10145, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1025, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10145, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11783]={ + ["next_chapter"]=11784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=509222, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10247, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1035, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10247, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11784]={ + ["next_chapter"]=11785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=509883, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10349, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1045, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10349, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11785]={ + ["next_chapter"]=11786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1547, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=510544, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10453, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1056, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10453, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11786]={ + ["next_chapter"]=11787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=511206, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10557, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1066, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10557, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11787]={ + ["next_chapter"]=11788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1551, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=511869, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10663, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1077, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10663, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11788]={ + ["next_chapter"]=11789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=512532, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10769, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1088, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10769, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11789]={ + ["next_chapter"]=11790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1555, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=513195, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10877, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1099, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10877, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1050, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1178, + ["unit"]=0 + } + }, + [11790]={ + ["next_chapter"]=11791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=1557, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=513860, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=10986, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1110, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=10986, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11791]={ + ["next_chapter"]=11792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1559, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=514525, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11096, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1121, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=11096, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11792]={ + ["next_chapter"]=11793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1561, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=515190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11207, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1132, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=11207, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11793]={ + ["next_chapter"]=11794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=515856, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11319, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1143, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=11319, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11794]={ + ["next_chapter"]=11795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1565, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=516522, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11432, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1155, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=11432, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11795]={ + ["next_chapter"]=11796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=517190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11546, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1166, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=11546, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11796]={ + ["next_chapter"]=11797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=517857, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11662, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1178, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=11662, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11797]={ + ["next_chapter"]=11798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1571, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=518526, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11778, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1190, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=11778, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11798]={ + ["next_chapter"]=11799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=519195, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=11896, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1201, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=11896, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11799]={ + ["next_chapter"]=11800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=519864, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12015, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1214, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=12015, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1179, + ["unit"]=0 + } + }, + [11800]={ + ["next_chapter"]=11801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=520534, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12135, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1226, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=12135, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11801]={ + ["next_chapter"]=11802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1579, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=521205, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12256, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1238, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=12256, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11802]={ + ["next_chapter"]=11803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1581, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=521876, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12379, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1250, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=12379, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11803]={ + ["next_chapter"]=11804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=522548, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12503, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1263, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=12503, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11804]={ + ["next_chapter"]=11805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1586, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=523220, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12628, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1275, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=12628, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11805]={ + ["next_chapter"]=11806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=523893, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12754, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1288, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=12754, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11806]={ + ["next_chapter"]=11807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=524567, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=12882, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1301, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=12882, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11807]={ + ["next_chapter"]=11808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1592, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=525241, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13011, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1314, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=13011, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11808]={ + ["next_chapter"]=11809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1594, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=525916, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13141, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1327, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=13141, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11809]={ + ["next_chapter"]=11810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=526591, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13272, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1340, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=13272, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1281, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + [11810]={ + ["next_chapter"]=11811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1598, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=527267, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13405, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1354, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=13405, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11811]={ + ["next_chapter"]=11812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1600, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=527943, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13539, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1367, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=13539, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11812]={ + ["next_chapter"]=11813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=528620, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13674, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1381, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=13674, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11813]={ + ["next_chapter"]=11814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=529298, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13811, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1395, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=13811, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11814]={ + ["next_chapter"]=11815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=529976, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=13949, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1409, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=13949, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11815]={ + ["next_chapter"]=11816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1608, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=530655, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14089, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1423, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=14089, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11816]={ + ["next_chapter"]=11817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1610, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=531334, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14229, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1437, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=14229, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11817]={ + ["next_chapter"]=11818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1612, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=532014, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14372, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1452, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=14372, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11818]={ + ["next_chapter"]=11819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1614, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=532695, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14515, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1466, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=14515, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11819]={ + ["next_chapter"]=11820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=533376, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14661, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1481, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=14661, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1415, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1181, + ["unit"]=0 + } + }, + [11820]={ + ["next_chapter"]=11821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=1618, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=534058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14807, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1496, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=14807, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11821]={ + ["next_chapter"]=11822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=534740, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=14955, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1510, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=14955, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11822]={ + ["next_chapter"]=11823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1622, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=535423, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15105, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1526, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=15105, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11823]={ + ["next_chapter"]=11824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=536107, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15256, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1541, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=15256, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11824]={ + ["next_chapter"]=11825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=536791, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15408, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1556, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=15408, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11825]={ + ["next_chapter"]=11826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1629, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=537476, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15563, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1572, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=15563, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11826]={ + ["next_chapter"]=11827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=538161, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15718, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1588, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=15718, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11827]={ + ["next_chapter"]=11828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=538847, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=15875, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1603, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=15875, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11828]={ + ["next_chapter"]=11829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1635, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=539533, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16034, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1619, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=16034, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11829]={ + ["next_chapter"]=11830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=540220, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16194, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1636, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=16194, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1563, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1182, + ["unit"]=0 + } + }, + [11830]={ + ["next_chapter"]=11831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=540908, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16356, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1652, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=16356, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11831]={ + ["next_chapter"]=11832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1641, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=541596, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16520, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1669, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=16520, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11832]={ + ["next_chapter"]=11833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=542285, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16685, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1685, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=16685, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11833]={ + ["next_chapter"]=11834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1645, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=542975, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=16852, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1702, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=16852, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11834]={ + ["next_chapter"]=11835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=543665, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17020, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1719, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=17020, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11835]={ + ["next_chapter"]=11836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=544355, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17191, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1736, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=17191, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11836]={ + ["next_chapter"]=11837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=545046, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17363, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1754, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=17363, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11837]={ + ["next_chapter"]=11838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=545738, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17536, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1771, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=17536, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11838]={ + ["next_chapter"]=11839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=546431, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17712, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1789, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=17712, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11839]={ + ["next_chapter"]=11840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=547123, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=17889, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1807, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=17889, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1727, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1183, + ["unit"]=0 + } + }, + [11840]={ + ["next_chapter"]=11841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=547817, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18068, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1825, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=18068, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11841]={ + ["next_chapter"]=11842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=548511, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18248, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1843, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=18248, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11842]={ + ["next_chapter"]=11843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1664, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=549206, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18431, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1862, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=18431, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11843]={ + ["next_chapter"]=11844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1666, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=549901, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18615, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1880, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=18615, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11844]={ + ["next_chapter"]=11845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=550597, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18801, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1899, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=18801, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11845]={ + ["next_chapter"]=11846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=551294, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=18989, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1918, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=18989, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11846]={ + ["next_chapter"]=11847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=551991, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19179, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1937, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=19179, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11847]={ + ["next_chapter"]=11848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=552689, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19371, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1956, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=19371, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11848]={ + ["next_chapter"]=11849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=553387, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19565, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1976, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=19565, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11849]={ + ["next_chapter"]=11850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=554086, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19760, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1996, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=19760, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=1908, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1184, + ["unit"]=0 + } + }, + [11850]={ + ["next_chapter"]=11851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=1681, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=554785, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=19958, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2016, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=19958, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11851]={ + ["next_chapter"]=11852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1683, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=555486, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20157, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2036, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=20157, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11852]={ + ["next_chapter"]=11853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1685, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=556186, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20359, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2056, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=20359, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11853]={ + ["next_chapter"]=11854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=556888, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20563, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2077, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=20563, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11854]={ + ["next_chapter"]=11855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1690, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=557589, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20768, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2098, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=20768, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11855]={ + ["next_chapter"]=11856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=558292, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=20976, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2119, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=20976, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11856]={ + ["next_chapter"]=11857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1694, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=558995, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21186, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2140, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=21186, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11857]={ + ["next_chapter"]=11858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1696, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=559699, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21398, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2161, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=21398, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11858]={ + ["next_chapter"]=11859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=560403, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21611, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2183, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=21611, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11859]={ + ["next_chapter"]=11860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=561108, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=21828, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2205, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=21828, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2107, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1185, + ["unit"]=0 + } + }, + [11860]={ + ["next_chapter"]=11861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=561813, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22046, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2227, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=22046, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11861]={ + ["next_chapter"]=11862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1705, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=562519, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22266, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2249, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=22266, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11862]={ + ["next_chapter"]=11863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=563226, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22489, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2271, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=22489, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11863]={ + ["next_chapter"]=11864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1709, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=563933, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22714, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2294, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=22714, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11864]={ + ["next_chapter"]=11865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=564641, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=22941, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2317, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=22941, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11865]={ + ["next_chapter"]=11866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=565350, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23170, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2340, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=23170, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11866]={ + ["next_chapter"]=11867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1715, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=566059, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23402, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2364, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=23402, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11867]={ + ["next_chapter"]=11868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=566768, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23636, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2387, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=23636, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11868]={ + ["next_chapter"]=11869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=567479, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=23873, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2411, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=23873, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11869]={ + ["next_chapter"]=11870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1722, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=568190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24111, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2435, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=24111, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2328, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1186, + ["unit"]=0 + } + }, + [11870]={ + ["next_chapter"]=11871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=1724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=568901, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24352, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2460, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=24352, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11871]={ + ["next_chapter"]=11872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1726, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=569613, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24596, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2484, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=24596, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11872]={ + ["next_chapter"]=11873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1728, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=570326, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=24842, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2509, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=24842, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11873]={ + ["next_chapter"]=11874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=571039, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25090, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2534, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=25090, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11874]={ + ["next_chapter"]=11875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1733, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=571753, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25341, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2559, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=25341, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11875]={ + ["next_chapter"]=11876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1735, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=572468, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25595, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2585, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=25595, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11876]={ + ["next_chapter"]=11877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=573183, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=25851, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2611, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=25851, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11877]={ + ["next_chapter"]=11878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=573898, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26109, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2637, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=26109, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11878]={ + ["next_chapter"]=11879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=574615, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26370, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2663, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=26370, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11879]={ + ["next_chapter"]=11880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=575331, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26634, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2690, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=26634, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2571, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1187, + ["unit"]=0 + } + }, + [11880]={ + ["next_chapter"]=11881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=1746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=576049, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=26900, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2717, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=26900, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11881]={ + ["next_chapter"]=11882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=576767, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27169, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2744, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=27169, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11882]={ + ["next_chapter"]=11883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1750, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=577486, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27441, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2772, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=27441, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11883]={ + ["next_chapter"]=11884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=578205, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27715, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2799, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=27715, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11884]={ + ["next_chapter"]=11885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=578925, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=27992, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2827, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=27992, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11885]={ + ["next_chapter"]=11886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1757, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=579645, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28272, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2856, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=28272, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11886]={ + ["next_chapter"]=11887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=580367, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28555, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2884, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=28555, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11887]={ + ["next_chapter"]=11888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1761, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=581088, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=28841, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2913, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=28841, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11888]={ + ["next_chapter"]=11889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=581811, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29129, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2942, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=29129, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11889]={ + ["next_chapter"]=11890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1765, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=582534, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29420, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2971, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=29420, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=2840, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1188, + ["unit"]=0 + } + }, + [11890]={ + ["next_chapter"]=11891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1767, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=583257, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=29715, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3001, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=29715, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11891]={ + ["next_chapter"]=11892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=583981, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30012, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3031, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=30012, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11892]={ + ["next_chapter"]=11893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1772, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=584706, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30312, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3061, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=30312, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11893]={ + ["next_chapter"]=11894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1774, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=585431, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30615, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3092, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=30615, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11894]={ + ["next_chapter"]=11895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=586157, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=30921, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3123, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=30921, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11895]={ + ["next_chapter"]=11896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=586884, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31230, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3154, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=31230, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11896]={ + ["next_chapter"]=11897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=587611, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31543, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3186, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=31543, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11897]={ + ["next_chapter"]=11898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1783, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=588339, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=31858, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3218, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=31858, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11898]={ + ["next_chapter"]=11899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=589067, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32177, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3250, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=32177, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11899]={ + ["next_chapter"]=11900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1787, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=589796, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32498, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3282, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=32498, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3137, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1189, + ["unit"]=0 + } + }, + [11900]={ + ["next_chapter"]=11901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1789, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=590526, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=32823, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3315, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=32823, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11901]={ + ["next_chapter"]=11902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1792, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=591256, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33152, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3348, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=33152, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11902]={ + ["next_chapter"]=11903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=591987, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33483, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3382, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=33483, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11903]={ + ["next_chapter"]=11904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1796, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=592718, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=33818, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3416, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=33818, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11904]={ + ["next_chapter"]=11905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=593450, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34156, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3450, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=34156, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11905]={ + ["next_chapter"]=11906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=594183, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34498, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3484, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=34498, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11906]={ + ["next_chapter"]=11907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=594916, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=34843, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3519, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=34843, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11907]={ + ["next_chapter"]=11908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=595650, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35191, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3554, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=35191, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11908]={ + ["next_chapter"]=11909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=596385, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35543, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3590, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=35543, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11909]={ + ["next_chapter"]=11910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1809, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=597120, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=35898, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3626, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=35898, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3466, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + [11910]={ + ["next_chapter"]=11911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=1812, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=597855, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36257, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3662, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=36257, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11911]={ + ["next_chapter"]=11912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1814, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=598592, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36620, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3699, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=36620, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11912]={ + ["next_chapter"]=11913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1816, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=599329, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=36986, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3736, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=36986, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11913]={ + ["next_chapter"]=11914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1818, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=600066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37356, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3773, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=37356, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11914]={ + ["next_chapter"]=11915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1821, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=600804, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=37730, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3811, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=37730, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11915]={ + ["next_chapter"]=11916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1823, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=601543, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38107, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3849, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=38107, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11916]={ + ["next_chapter"]=11917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=602282, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38488, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3887, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=38488, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11917]={ + ["next_chapter"]=11918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=603022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=38873, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3926, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=38873, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11918]={ + ["next_chapter"]=11919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=603763, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39262, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3965, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=39262, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11919]={ + ["next_chapter"]=11920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=604504, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=39654, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4005, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=39654, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=3828, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1191, + ["unit"]=0 + } + }, + [11920]={ + ["next_chapter"]=11921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1834, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=605246, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40051, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4045, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=40051, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11921]={ + ["next_chapter"]=11922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1836, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=605988, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40451, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4086, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=40451, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11922]={ + ["next_chapter"]=11923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1839, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=606731, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=40856, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4126, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=40856, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11923]={ + ["next_chapter"]=11924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=607475, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41264, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4168, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=41264, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11924]={ + ["next_chapter"]=11925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=608219, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=41677, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4209, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=41677, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11925]={ + ["next_chapter"]=11926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=608964, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42094, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4251, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=42094, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11926]={ + ["next_chapter"]=11927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=609710, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42515, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4294, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=42515, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11927]={ + ["next_chapter"]=11928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1850, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=610456, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=42940, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4337, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=42940, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11928]={ + ["next_chapter"]=11929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1852, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=611203, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43369, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4380, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=43369, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11929]={ + ["next_chapter"]=11930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1854, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=611950, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=43803, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4424, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=43803, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4229, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1192, + ["unit"]=0 + } + }, + [11930]={ + ["next_chapter"]=11931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=1857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=612698, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44241, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4468, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=44241, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11931]={ + ["next_chapter"]=11932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=613446, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=44683, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4513, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=44683, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11932]={ + ["next_chapter"]=11933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1861, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=614196, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45130, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4558, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=45130, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11933]={ + ["next_chapter"]=11934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1863, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=614945, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=45581, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4604, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=45581, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11934]={ + ["next_chapter"]=11935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=615696, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46037, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4650, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=46037, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11935]={ + ["next_chapter"]=11936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=616447, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46498, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4696, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=46498, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11936]={ + ["next_chapter"]=11937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1870, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=617199, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=46963, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4743, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=46963, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11937]={ + ["next_chapter"]=11938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1873, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=617951, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47432, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4791, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=47432, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11938]={ + ["next_chapter"]=11939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1875, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=618704, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=47907, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4839, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=47907, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11939]={ + ["next_chapter"]=11940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=619457, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48386, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4887, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=48386, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=4671, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1193, + ["unit"]=0 + } + }, + [11940]={ + ["next_chapter"]=11941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=620211, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=48869, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4936, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=48869, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11941]={ + ["next_chapter"]=11942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1882, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=620966, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49358, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4985, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=49358, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11942]={ + ["next_chapter"]=11943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1884, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=621721, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=49852, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5035, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=49852, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11943]={ + ["next_chapter"]=11944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=622477, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50350, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5085, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=50350, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11944]={ + ["next_chapter"]=11945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=623234, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=50854, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5136, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=50854, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11945]={ + ["next_chapter"]=11946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=623991, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51362, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5188, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=51362, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11946]={ + ["next_chapter"]=11947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=624749, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=51876, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5239, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=51876, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11947]={ + ["next_chapter"]=11948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=625508, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52395, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5292, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=52395, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11948]={ + ["next_chapter"]=11949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1898, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=626267, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=52919, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5345, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=52919, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11949]={ + ["next_chapter"]=11950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=627026, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53448, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5398, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=53448, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5160, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1194, + ["unit"]=0 + } + }, + [11950]={ + ["next_chapter"]=11951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=1902, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=627787, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=53982, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5452, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=53982, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11951]={ + ["next_chapter"]=11952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=628548, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=54522, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5507, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=54522, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11952]={ + ["next_chapter"]=11953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1907, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=629309, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55067, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5562, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=55067, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11953]={ + ["next_chapter"]=11954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1909, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=630071, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=55618, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5617, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=55618, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11954]={ + ["next_chapter"]=11955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1912, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=630834, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56174, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5674, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=56174, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11955]={ + ["next_chapter"]=11956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=631598, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=56736, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5730, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=56736, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11956]={ + ["next_chapter"]=11957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1916, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=632362, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57303, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5788, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=57303, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11957]={ + ["next_chapter"]=11958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=633126, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=57876, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5846, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=57876, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11958]={ + ["next_chapter"]=11959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1921, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=633892, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=58455, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5904, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=58455, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11959]={ + ["next_chapter"]=11960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=634658, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59040, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5963, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=59040, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=5700, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1195, + ["unit"]=0 + } + }, + [11960]={ + ["next_chapter"]=11961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=1926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=635424, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=59630, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6023, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=59630, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11961]={ + ["next_chapter"]=11962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1928, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=636191, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60226, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6083, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=60226, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11962]={ + ["next_chapter"]=11963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=636959, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=60829, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6144, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=60829, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11963]={ + ["next_chapter"]=11964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1933, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=637728, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=61437, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6205, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=61437, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11964]={ + ["next_chapter"]=11965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=638497, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62051, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6267, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=62051, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11965]={ + ["next_chapter"]=11966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=639266, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=62672, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6330, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=62672, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11966]={ + ["next_chapter"]=11967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1940, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=640037, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63298, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6393, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=63298, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11967]={ + ["next_chapter"]=11968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1942, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=640807, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=63931, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6457, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=63931, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11968]={ + ["next_chapter"]=11969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1944, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=641579, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=64571, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6522, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=64571, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11969]={ + ["next_chapter"]=11970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=642351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65216, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6587, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=65216, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6296, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1196, + ["unit"]=0 + } + }, + [11970]={ + ["next_chapter"]=11971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=1949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=643124, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=65869, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6653, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=65869, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11971]={ + ["next_chapter"]=11972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1951, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=643897, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=66527, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6719, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=66527, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11972]={ + ["next_chapter"]=11973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1954, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=644671, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67193, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6786, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=67193, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11973]={ + ["next_chapter"]=11974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1956, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=645446, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=67865, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6854, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=67865, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11974]={ + ["next_chapter"]=11975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1958, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=646221, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=68543, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6923, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=68543, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11975]={ + ["next_chapter"]=11976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=646997, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69229, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6992, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=69229, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11976]={ + ["next_chapter"]=11977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1963, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=647774, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=69921, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7062, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=69921, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11977]={ + ["next_chapter"]=11978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1965, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=648551, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=70620, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7133, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=70620, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11978]={ + ["next_chapter"]=11979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=649329, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=71326, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7204, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=71326, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11979]={ + ["next_chapter"]=11980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1970, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=650107, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72040, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7276, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=72040, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=6955, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1197, + ["unit"]=0 + } + }, + [11980]={ + ["next_chapter"]=11981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=1972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=650886, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=72760, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7349, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=72760, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11981]={ + ["next_chapter"]=11982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=651666, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=73488, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7422, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=73488, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11982]={ + ["next_chapter"]=11983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=652446, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=74222, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7496, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=74222, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11983]={ + ["next_chapter"]=11984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=653227, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=74965, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7571, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=74965, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11984]={ + ["next_chapter"]=11985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=654009, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=75714, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7647, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=75714, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11985]={ + ["next_chapter"]=11986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1984, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=654791, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=76471, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7724, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=76471, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11986]={ + ["next_chapter"]=11987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=655574, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=77236, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7801, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=77236, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11987]={ + ["next_chapter"]=11988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=656357, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78008, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7879, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=78008, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11988]={ + ["next_chapter"]=11989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1991, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=657142, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=78789, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7958, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=78789, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11989]={ + ["next_chapter"]=11990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1994, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=657926, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=79576, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8037, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=79576, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=7682, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1198, + ["unit"]=0 + } + }, + [11990]={ + ["next_chapter"]=11991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=1996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=658712, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=80372, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8118, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=80372, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11991]={ + ["next_chapter"]=11992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=1998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=659498, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=81176, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8199, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=81176, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11992]={ + ["next_chapter"]=11993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2001, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=660284, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=81988, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8281, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=81988, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11993]={ + ["next_chapter"]=11994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2003, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=661072, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=82808, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8364, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=82808, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11994]={ + ["next_chapter"]=11995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=661859, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=83636, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8447, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=83636, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11995]={ + ["next_chapter"]=11996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=662648, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=84472, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8532, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=84472, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11996]={ + ["next_chapter"]=11997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=663437, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=85317, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8617, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=85317, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11997]={ + ["next_chapter"]=11998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2013, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=664227, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=86170, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8703, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=86170, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11998]={ + ["next_chapter"]=11999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=665017, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=87032, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8790, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=87032, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [11999]={ + ["next_chapter"]=12000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=665808, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=87902, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8878, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=87902, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=8486, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1199, + ["unit"]=0 + } + }, + [12000]={ + ["next_chapter"]=12001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=2020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=666600, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=88781, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8967, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=88781, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12001]={ + ["next_chapter"]=12002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2022, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=667392, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=89669, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9057, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=89669, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12002]={ + ["next_chapter"]=12003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2025, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=668185, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=90565, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9147, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=90565, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12003]={ + ["next_chapter"]=12004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=668979, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=91471, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9239, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=91471, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12004]={ + ["next_chapter"]=12005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=669773, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=92386, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9331, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=92386, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12005]={ + ["next_chapter"]=12006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=670568, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=93310, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9424, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=93310, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12006]={ + ["next_chapter"]=12007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2034, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=671363, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=94243, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9519, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=94243, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12007]={ + ["next_chapter"]=12008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=672160, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=95185, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9614, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=95185, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12008]={ + ["next_chapter"]=12009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2039, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=672956, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=96137, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9710, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=96137, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12009]={ + ["next_chapter"]=12010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=673754, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=97098, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9807, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=97098, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=9374, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + [12010]={ + ["next_chapter"]=12011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=2044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=674552, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=98069, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9905, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=98069, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12011]={ + ["next_chapter"]=12012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=675350, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=99050, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10004, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=99050, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12012]={ + ["next_chapter"]=12013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=676150, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=100041, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10104, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=100041, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12013]={ + ["next_chapter"]=12014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=676950, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=101041, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10205, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=101041, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12014]={ + ["next_chapter"]=12015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=677750, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=102051, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10307, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=102051, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12015]={ + ["next_chapter"]=12016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=678551, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=103072, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10410, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=103072, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12016]={ + ["next_chapter"]=12017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=679353, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=104103, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10514, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=104103, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12017]={ + ["next_chapter"]=12018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2061, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=680156, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=105144, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10620, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=105144, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12018]={ + ["next_chapter"]=12019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=680959, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=106195, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10726, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=106195, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12019]={ + ["next_chapter"]=12020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2066, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=681763, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=107257, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10833, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=107257, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=10354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1201, + ["unit"]=0 + } + }, + [12020]={ + ["next_chapter"]=12021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=2068, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=682567, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=108330, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10941, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=108330, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12021]={ + ["next_chapter"]=12022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2071, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=683372, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=109413, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11051, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=109413, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12022]={ + ["next_chapter"]=12023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=684178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=110507, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11161, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=110507, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12023]={ + ["next_chapter"]=12024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=684984, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=111612, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11273, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=111612, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12024]={ + ["next_chapter"]=12025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=685791, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=112728, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11386, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=112728, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12025]={ + ["next_chapter"]=12026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2081, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=686599, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=113856, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11499, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=113856, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12026]={ + ["next_chapter"]=12027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=687407, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=114994, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11614, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=114994, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12027]={ + ["next_chapter"]=12028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2086, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=688216, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=116144, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11731, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=116144, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12028]={ + ["next_chapter"]=12029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=689025, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=117305, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11848, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=117305, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12029]={ + ["next_chapter"]=12030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=689835, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=118479, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11966, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=118479, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=11438, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1202, + ["unit"]=0 + } + }, + [12030]={ + ["next_chapter"]=12031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=2093, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=690646, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=119663, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12086, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=119663, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12031]={ + ["next_chapter"]=12032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2095, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=691458, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=120860, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12207, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=120860, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12032]={ + ["next_chapter"]=12033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=692270, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=122069, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12329, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=122069, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12033]={ + ["next_chapter"]=12034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2100, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=693083, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=123289, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12452, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=123289, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12034]={ + ["next_chapter"]=12035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=693896, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=124522, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12577, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=124522, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12035]={ + ["next_chapter"]=12036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=694710, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=125767, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12703, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=125767, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12036]={ + ["next_chapter"]=12037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=695525, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=127025, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12830, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=127025, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12037]={ + ["next_chapter"]=12038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2110, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=696340, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=128295, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12958, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=128295, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12038]={ + ["next_chapter"]=12039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2113, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=697156, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=129578, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13087, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=129578, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12039]={ + ["next_chapter"]=12040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=697972, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=130874, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13218, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=130874, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=12634, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1203, + ["unit"]=0 + } + }, + [12040]={ + ["next_chapter"]=12041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=2118, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=698790, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=132183, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13350, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=132183, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12041]={ + ["next_chapter"]=12042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=699607, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=133505, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13484, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=133505, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12042]={ + ["next_chapter"]=12043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=700426, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=134840, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13619, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=134840, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12043]={ + ["next_chapter"]=12044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2125, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=701245, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=136188, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13755, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=136188, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12044]={ + ["next_chapter"]=12045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2127, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=702065, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=137550, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13893, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=137550, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12045]={ + ["next_chapter"]=12046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2130, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=702885, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=138925, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14031, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=138925, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12046]={ + ["next_chapter"]=12047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=703706, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=140315, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14172, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=140315, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12047]={ + ["next_chapter"]=12048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=704528, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=141718, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14313, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=141718, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12048]={ + ["next_chapter"]=12049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2137, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=705351, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=143135, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14457, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=143135, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12049]={ + ["next_chapter"]=12050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=706174, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=144566, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14601, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=144566, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=13956, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1204, + ["unit"]=0 + } + }, + [12050]={ + ["next_chapter"]=12051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=2142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=706997, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=146012, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14747, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=146012, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12051]={ + ["next_chapter"]=12052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=707822, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=147472, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14895, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=147472, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12052]={ + ["next_chapter"]=12053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2147, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=708647, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=148947, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15044, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=148947, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12053]={ + ["next_chapter"]=12054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2150, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=709472, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=150436, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15194, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=150436, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12054]={ + ["next_chapter"]=12055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2152, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=710298, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=151941, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15346, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=151941, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12055]={ + ["next_chapter"]=12056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=711125, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=153460, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15499, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=153460, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12056]={ + ["next_chapter"]=12057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=711953, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=154995, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15654, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=154995, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12057]={ + ["next_chapter"]=12058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2160, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=712781, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=156545, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15811, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=156545, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12058]={ + ["next_chapter"]=12059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=713610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=158110, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15969, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=158110, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12059]={ + ["next_chapter"]=12060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=714439, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=159691, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16129, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=159691, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=15416, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1205, + ["unit"]=0 + } + }, + [12060]={ + ["next_chapter"]=12061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=2167, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=715270, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=161288, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16290, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=161288, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12061]={ + ["next_chapter"]=12062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2170, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=716100, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=162901, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16453, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=162901, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12062]={ + ["next_chapter"]=12063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=716932, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=164530, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16618, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=164530, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12063]={ + ["next_chapter"]=12064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=717764, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=166175, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16784, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=166175, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12064]={ + ["next_chapter"]=12065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2178, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=718597, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=167837, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16952, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=167837, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12065]={ + ["next_chapter"]=12066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=719430, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=169515, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17121, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=169515, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12066]={ + ["next_chapter"]=12067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=720264, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=171211, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17292, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=171211, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12067]={ + ["next_chapter"]=12068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=721099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=172923, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17465, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=172923, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12068]={ + ["next_chapter"]=12069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=721934, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=174652, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17640, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=174652, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12069]={ + ["next_chapter"]=12070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2190, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=722770, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=176398, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17816, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=176398, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=17029, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1206, + ["unit"]=0 + } + }, + [12070]={ + ["next_chapter"]=12071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=2193, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=723607, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=178162, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17994, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=178162, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12071]={ + ["next_chapter"]=12072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=724444, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=179944, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18174, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=179944, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12072]={ + ["next_chapter"]=12073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2198, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=725282, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=181743, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18356, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=181743, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12073]={ + ["next_chapter"]=12074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2200, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=726121, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=183561, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18540, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=183561, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12074]={ + ["next_chapter"]=12075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2203, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=726960, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=185396, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18725, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=185396, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12075]={ + ["next_chapter"]=12076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2205, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=727800, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=187250, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18912, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=187250, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12076]={ + ["next_chapter"]=12077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=728640, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=189123, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19101, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=189123, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12077]={ + ["next_chapter"]=12078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=729482, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=191014, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19292, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=191014, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12078]={ + ["next_chapter"]=12079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=730323, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=192924, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19485, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=192924, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12079]={ + ["next_chapter"]=12080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=731166, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=194854, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19680, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=194854, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=18811, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1207, + ["unit"]=0 + } + }, + [12080]={ + ["next_chapter"]=12081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2218, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=732009, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=196802, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19877, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=196802, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12081]={ + ["next_chapter"]=12082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=732853, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=198770, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20076, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=198770, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12082]={ + ["next_chapter"]=12083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=733697, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=200758, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20277, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=200758, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12083]={ + ["next_chapter"]=12084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=734543, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=202765, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20479, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=202765, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12084]={ + ["next_chapter"]=12085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2228, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=735388, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=204793, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20684, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=204793, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12085]={ + ["next_chapter"]=12086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=736235, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=206841, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20891, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=206841, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12086]={ + ["next_chapter"]=12087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=737082, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=208909, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21100, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=208909, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12087]={ + ["next_chapter"]=12088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2236, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=737930, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=210998, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21311, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=210998, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12088]={ + ["next_chapter"]=12089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=738778, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=213108, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21524, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=213108, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12089]={ + ["next_chapter"]=12090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2241, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=739627, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=215240, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21739, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=215240, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=20779, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1208, + ["unit"]=0 + } + }, + [12090]={ + ["next_chapter"]=12091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=2244, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=740477, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=217392, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21957, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=217392, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12091]={ + ["next_chapter"]=12092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=741327, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=219566, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22176, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=219566, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12092]={ + ["next_chapter"]=12093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2249, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=742178, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=221762, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22398, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=221762, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12093]={ + ["next_chapter"]=12094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2252, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=743030, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=223979, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22622, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=223979, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12094]={ + ["next_chapter"]=12095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=743882, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=226219, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22848, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=226219, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12095]={ + ["next_chapter"]=12096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2257, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=744735, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=228481, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23077, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=228481, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12096]={ + ["next_chapter"]=12097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2259, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=745589, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=230766, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23307, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=230766, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12097]={ + ["next_chapter"]=12098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=746443, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=233074, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23540, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=233074, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12098]={ + ["next_chapter"]=12099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2265, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=747298, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=235404, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23776, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=235404, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12099]={ + ["next_chapter"]=12100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=748154, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=237758, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24014, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=237758, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=22953, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1209, + ["unit"]=0 + } + }, + [12100]={ + ["next_chapter"]=12101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=2270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=749010, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=240136, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24254, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=240136, + ["unit"]=16 + }, + ["chapter_drop"]=59, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12101]={ + ["next_chapter"]=12102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2272, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=749867, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=242537, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24496, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=242537, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12102]={ + ["next_chapter"]=12103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2275, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=750725, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=244963, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24741, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=244963, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12103]={ + ["next_chapter"]=12104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=751583, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=247412, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24989, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=247412, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12104]={ + ["next_chapter"]=12105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=752442, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=249886, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25239, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=249886, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12105]={ + ["next_chapter"]=12106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2283, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=753302, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=252385, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25491, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=252385, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12106]={ + ["next_chapter"]=12107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=754162, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=254909, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25746, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=254909, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12107]={ + ["next_chapter"]=12108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2288, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=755023, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=257458, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26003, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=257458, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12108]={ + ["next_chapter"]=12109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2291, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=755884, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=260033, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26263, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=260033, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12109]={ + ["next_chapter"]=12110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=756747, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=262633, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26526, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=262633, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=25354, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + [12110]={ + ["next_chapter"]=12111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=2296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=757610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=265259, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26791, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=265259, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12111]={ + ["next_chapter"]=12112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2298, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=758473, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=267912, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27059, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=267912, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12112]={ + ["next_chapter"]=12113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=759337, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=270591, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27330, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=270591, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12113]={ + ["next_chapter"]=12114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=760202, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=273297, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27603, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=273297, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12114]={ + ["next_chapter"]=12115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=761068, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=276030, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27879, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=276030, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12115]={ + ["next_chapter"]=12116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=761934, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=278790, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28158, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=278790, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12116]={ + ["next_chapter"]=12117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2312, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=762801, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=281578, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28439, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=281578, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12117]={ + ["next_chapter"]=12118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2314, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=763668, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=284394, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28724, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=284394, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12118]={ + ["next_chapter"]=12119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=764537, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=287238, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29011, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=287238, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12119]={ + ["next_chapter"]=12120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=765405, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=290110, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29301, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=290110, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=28007, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1211, + ["unit"]=0 + } + }, + [12120]={ + ["next_chapter"]=12121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=2322, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=766275, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=293011, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29594, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=293011, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12121]={ + ["next_chapter"]=12122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=767145, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=295942, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29890, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=295942, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12122]={ + ["next_chapter"]=12123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2327, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=768016, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=298901, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30189, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=298901, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12123]={ + ["next_chapter"]=12124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=768887, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=301890, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30491, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=301890, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12124]={ + ["next_chapter"]=12125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2333, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=769760, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=304909, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30796, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=304909, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12125]={ + ["next_chapter"]=12126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=770633, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=307958, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31104, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=307958, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12126]={ + ["next_chapter"]=12127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=771506, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=311038, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31415, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=311038, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12127]={ + ["next_chapter"]=12128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=772380, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=314148, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31729, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=314148, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12128]={ + ["next_chapter"]=12129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2343, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=773255, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=317289, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32046, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=317289, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12129]={ + ["next_chapter"]=12130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2346, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=774131, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=320462, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32367, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=320462, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=30937, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1212, + ["unit"]=0 + } + }, + [12130]={ + ["next_chapter"]=12131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=2349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=775007, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=323667, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32690, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=323667, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12131]={ + ["next_chapter"]=12132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=775884, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=326904, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33017, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=326904, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12132]={ + ["next_chapter"]=12133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2354, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=776761, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=330173, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33347, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=330173, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12133]={ + ["next_chapter"]=12134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2356, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=777639, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=333474, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33681, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=333474, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12134]={ + ["next_chapter"]=12135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=778518, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=336809, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34018, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=336809, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12135]={ + ["next_chapter"]=12136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=779398, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=340177, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34358, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=340177, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12136]={ + ["next_chapter"]=12137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2364, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=780278, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=343579, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34701, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=343579, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12137]={ + ["next_chapter"]=12138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=781159, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=347015, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35048, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=347015, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12138]={ + ["next_chapter"]=12139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=782040, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=350485, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35399, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=350485, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12139]={ + ["next_chapter"]=12140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2372, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=782922, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=353990, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35753, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=353990, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=34173, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1213, + ["unit"]=0 + } + }, + [12140]={ + ["next_chapter"]=12141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=2375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=783805, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=357530, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36110, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=357530, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12141]={ + ["next_chapter"]=12142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=784689, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=361105, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36472, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=361105, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12142]={ + ["next_chapter"]=12143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2381, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=785573, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=364716, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36836, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=364716, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12143]={ + ["next_chapter"]=12144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=786458, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=368363, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37205, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=368363, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12144]={ + ["next_chapter"]=12145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=787343, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=372047, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37577, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=372047, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12145]={ + ["next_chapter"]=12146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=788229, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=375767, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37952, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=375767, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12146]={ + ["next_chapter"]=12147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2391, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=789116, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=379525, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38332, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=379525, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12147]={ + ["next_chapter"]=12148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=790004, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=383320, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38715, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=383320, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12148]={ + ["next_chapter"]=12149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2397, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=790892, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=387153, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39102, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=387153, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12149]={ + ["next_chapter"]=12150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=791781, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=391025, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39494, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=391025, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=37749, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1214, + ["unit"]=0 + } + }, + [12150]={ + ["next_chapter"]=12151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=2402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=792671, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=394935, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39888, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=394935, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12151]={ + ["next_chapter"]=12152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2405, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=793561, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=398885, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40287, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=398885, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12152]={ + ["next_chapter"]=12153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=794452, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=402873, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40690, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=402873, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12153]={ + ["next_chapter"]=12154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=795343, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=406902, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41097, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=406902, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12154]={ + ["next_chapter"]=12155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2413, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=796236, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=410971, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41508, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=410971, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12155]={ + ["next_chapter"]=12156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=797128, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=415081, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41923, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=415081, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12156]={ + ["next_chapter"]=12157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=798022, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=419232, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42342, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=419232, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12157]={ + ["next_chapter"]=12158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=798916, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=423424, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42766, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=423424, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12158]={ + ["next_chapter"]=12159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2424, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=799811, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=427658, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43193, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=427658, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12159]={ + ["next_chapter"]=12160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2426, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=800707, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=431935, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43625, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=431935, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=41698, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1215, + ["unit"]=0 + } + }, + [12160]={ + ["next_chapter"]=12161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=2429, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=801603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=436254, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44062, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=436254, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12161]={ + ["next_chapter"]=12162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=802500, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=440617, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44502, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=440617, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12162]={ + ["next_chapter"]=12163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=803398, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=445023, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44947, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=445023, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12163]={ + ["next_chapter"]=12164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2437, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=804296, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=449473, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45397, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=449473, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12164]={ + ["next_chapter"]=12165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2440, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=805195, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=453968, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45851, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=453968, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12165]={ + ["next_chapter"]=12166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=806095, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=458508, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46309, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=458508, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12166]={ + ["next_chapter"]=12167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=806995, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=463093, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46772, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=463093, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12167]={ + ["next_chapter"]=12168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2448, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=807896, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=467724, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47240, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=467724, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12168]={ + ["next_chapter"]=12169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=808798, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=472401, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47712, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=472401, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12169]={ + ["next_chapter"]=12170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2454, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=809700, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=477125, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48190, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=477125, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=46061, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1216, + ["unit"]=0 + } + }, + [12170]={ + ["next_chapter"]=12171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=2456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=810603, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=481896, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48671, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=481896, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12171]={ + ["next_chapter"]=12172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=811507, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=486715, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49158, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=486715, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12172]={ + ["next_chapter"]=12173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=812411, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=491582, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49650, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=491582, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12173]={ + ["next_chapter"]=12174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2465, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=813316, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=496498, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50146, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=496498, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12174]={ + ["next_chapter"]=12175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=814222, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=501463, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50648, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=501463, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12175]={ + ["next_chapter"]=12176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2470, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=815128, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=506478, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51154, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=506478, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12176]={ + ["next_chapter"]=12177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2473, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=816035, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=511542, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51666, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=511542, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12177]={ + ["next_chapter"]=12178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=816943, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=516658, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52182, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=516658, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12178]={ + ["next_chapter"]=12179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2478, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=817852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=521824, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52704, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=521824, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12179]={ + ["next_chapter"]=12180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2481, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=818761, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=527043, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53231, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=527043, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=50880, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1217, + ["unit"]=0 + } + }, + [12180]={ + ["next_chapter"]=12181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=2484, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=819671, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=532313, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53764, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=532313, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12181]={ + ["next_chapter"]=12182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=820581, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=537636, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54301, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=537636, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12182]={ + ["next_chapter"]=12183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=821492, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=543012, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54844, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=543012, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12183]={ + ["next_chapter"]=12184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2492, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=822404, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=548443, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55393, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=548443, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12184]={ + ["next_chapter"]=12185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=823317, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=553927, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55947, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=553927, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12185]={ + ["next_chapter"]=12186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=824230, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=559466, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56506, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=559466, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12186]={ + ["next_chapter"]=12187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=825144, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=565061, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57071, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=565061, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12187]={ + ["next_chapter"]=12188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=826058, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=570712, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57642, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=570712, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12188]={ + ["next_chapter"]=12189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2506, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=826974, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=576419, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58218, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=576419, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12189]={ + ["next_chapter"]=12190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=827890, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=582183, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58800, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=582183, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=56203, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1218, + ["unit"]=0 + } + }, + [12190]={ + ["next_chapter"]=12191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=2512, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=828806, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=588005, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59388, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=588005, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12191]={ + ["next_chapter"]=12192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=829724, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=593885, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59982, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=593885, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12192]={ + ["next_chapter"]=12193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=830641, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=599824, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60582, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=599824, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12193]={ + ["next_chapter"]=12194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=831560, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=605822, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61188, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=605822, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12194]={ + ["next_chapter"]=12195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=832479, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=611880, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61800, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=611880, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12195]={ + ["next_chapter"]=12196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=833400, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=617999, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62418, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=617999, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12196]={ + ["next_chapter"]=12197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=834320, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=624179, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63042, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=624179, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12197]={ + ["next_chapter"]=12198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2531, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=835242, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=630421, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63672, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=630421, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12198]={ + ["next_chapter"]=12199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2534, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=836164, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=636725, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64309, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=636725, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12199]={ + ["next_chapter"]=12200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=837086, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=643092, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64952, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=643092, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=62083, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1219, + ["unit"]=0 + } + }, + [12200]={ + ["next_chapter"]=12201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=2539, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=838010, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=649523, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65602, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=649523, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12201]={ + ["next_chapter"]=12202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=838934, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=656018, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66258, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=656018, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12202]={ + ["next_chapter"]=12203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=839859, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=662578, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66920, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=662578, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12203]={ + ["next_chapter"]=12204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2548, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=840784, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=669204, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67590, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=669204, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12204]={ + ["next_chapter"]=12205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2551, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=841711, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=675896, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68266, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=675896, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12205]={ + ["next_chapter"]=12206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=842637, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=682655, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68948, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=682655, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12206]={ + ["next_chapter"]=12207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=843565, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=689482, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69638, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=689482, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12207]={ + ["next_chapter"]=12208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2559, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=844493, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=696377, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70334, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=696377, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12208]={ + ["next_chapter"]=12209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=845422, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=703340, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71037, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=703340, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12209]={ + ["next_chapter"]=12210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2565, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=846352, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=710374, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71748, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=710374, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=68578, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + [12210]={ + ["next_chapter"]=12211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=2568, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=847282, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=717477, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72465, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=717477, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12211]={ + ["next_chapter"]=12212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=848213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=724652, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73190, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=724652, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12212]={ + ["next_chapter"]=12213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=849145, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=731899, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73922, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=731899, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12213]={ + ["next_chapter"]=12214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2576, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=850077, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=739218, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74661, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=739218, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12214]={ + ["next_chapter"]=12215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2579, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=851010, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=746610, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75408, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=746610, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12215]={ + ["next_chapter"]=12216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2582, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=851944, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=754076, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76162, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=754076, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12216]={ + ["next_chapter"]=12217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=852878, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=761617, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76923, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=761617, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12217]={ + ["next_chapter"]=12218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2587, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=853813, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=769233, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77693, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=769233, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12218]={ + ["next_chapter"]=12219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=854749, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=776925, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78469, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=776925, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12219]={ + ["next_chapter"]=12220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=855686, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=784695, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79254, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=784695, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=75753, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1221, + ["unit"]=0 + } + }, + [12220]={ + ["next_chapter"]=12221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=2596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=856623, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=792541, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80047, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=792541, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12221]={ + ["next_chapter"]=12222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=857561, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=800467, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80847, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=800467, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12222]={ + ["next_chapter"]=12223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=858499, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=808472, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81656, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=808472, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12223]={ + ["next_chapter"]=12224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=859439, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=816556, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82472, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=816556, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12224]={ + ["next_chapter"]=12225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=860379, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=824722, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83297, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=824722, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12225]={ + ["next_chapter"]=12226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2610, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=861319, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=832969, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84130, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=832969, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12226]={ + ["next_chapter"]=12227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=862260, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=841299, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84971, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=841299, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12227]={ + ["next_chapter"]=12228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=863202, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=849712, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85821, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=849712, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12228]={ + ["next_chapter"]=12229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2619, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=864145, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=858209, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86679, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=858209, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12229]={ + ["next_chapter"]=12230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2621, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=865089, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=866791, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87546, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=866791, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=83678, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1222, + ["unit"]=0 + } + }, + [12230]={ + ["next_chapter"]=12231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=2624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=866033, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=875459, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88421, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=875459, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12231]={ + ["next_chapter"]=12232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=866977, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=884213, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89306, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=884213, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12232]={ + ["next_chapter"]=12233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=867923, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=893056, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90199, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=893056, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12233]={ + ["next_chapter"]=12234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=868869, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=901986, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91101, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=901986, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12234]={ + ["next_chapter"]=12235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=869816, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=911006, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92012, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=911006, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12235]={ + ["next_chapter"]=12236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=870763, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=920116, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92932, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=920116, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12236]={ + ["next_chapter"]=12237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2642, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=871712, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=929317, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93861, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=929317, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12237]={ + ["next_chapter"]=12238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2644, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=872661, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=938610, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94800, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=938610, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12238]={ + ["next_chapter"]=12239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=873610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=947997, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95748, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=947997, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12239]={ + ["next_chapter"]=12240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=874561, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=957476, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96705, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=957476, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=92433, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1223, + ["unit"]=0 + } + }, + [12240]={ + ["next_chapter"]=12241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=2653, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=875512, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=967051, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97672, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=967051, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12241]={ + ["next_chapter"]=12242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=876463, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=976722, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98649, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=976722, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12242]={ + ["next_chapter"]=12243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=877416, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=986489, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99635, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=986489, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12243]={ + ["next_chapter"]=12244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=878369, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=996354, + ["unit"]=16 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100632, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=996354, + ["unit"]=16 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12244]={ + ["next_chapter"]=12245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2665, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=879323, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1006, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101638, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1006, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12245]={ + ["next_chapter"]=12246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=880277, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1016, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102654, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1016, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12246]={ + ["next_chapter"]=12247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=881232, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1027, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103681, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1027, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12247]={ + ["next_chapter"]=12248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=882188, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1037, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104718, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1037, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12248]={ + ["next_chapter"]=12249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2676, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=883145, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1047, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105765, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1047, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12249]={ + ["next_chapter"]=12250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=884102, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1058, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106823, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1058, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=102103, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1224, + ["unit"]=0 + } + }, + [12250]={ + ["next_chapter"]=12251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=2682, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=885060, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1068, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107891, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1068, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12251]={ + ["next_chapter"]=12252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2685, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=886019, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1079, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108970, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1079, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12252]={ + ["next_chapter"]=12253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=886978, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1090, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110059, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12253]={ + ["next_chapter"]=12254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=887938, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1101, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111160, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1101, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12254]={ + ["next_chapter"]=12255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2694, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=888899, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1112, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112272, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1112, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12255]={ + ["next_chapter"]=12256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2697, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=889860, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1123, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113394, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1123, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12256]={ + ["next_chapter"]=12257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2699, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=890822, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1134, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114528, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1134, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12257]={ + ["next_chapter"]=12258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=891785, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1145, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115674, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1145, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12258]={ + ["next_chapter"]=12259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2705, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=892749, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1157, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116830, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1157, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12259]={ + ["next_chapter"]=12260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=893713, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1168, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117999, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1168, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=112786, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1225, + ["unit"]=0 + } + }, + [12260]={ + ["next_chapter"]=12261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=2711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=894678, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1180, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119179, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12261]={ + ["next_chapter"]=12262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2714, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=895644, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1192, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120370, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1192, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12262]={ + ["next_chapter"]=12263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=896610, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1204, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121574, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1204, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12263]={ + ["next_chapter"]=12264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=897577, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1216, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122790, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1216, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12264]={ + ["next_chapter"]=12265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2723, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=898545, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1228, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124018, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1228, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12265]={ + ["next_chapter"]=12266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2726, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=899513, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1240, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125258, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12266]={ + ["next_chapter"]=12267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2729, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=900483, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1253, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126511, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1253, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12267]={ + ["next_chapter"]=12268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=901452, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1265, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127776, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1265, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12268]={ + ["next_chapter"]=12269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2735, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=902423, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1278, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129053, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1278, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12269]={ + ["next_chapter"]=12270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2738, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=903394, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1291, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130344, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1291, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=124585, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1226, + ["unit"]=0 + } + }, + [12270]={ + ["next_chapter"]=12271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=2741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=904366, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1303, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131647, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1303, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12271]={ + ["next_chapter"]=12272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=905339, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1316, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132964, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1316, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12272]={ + ["next_chapter"]=12273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=906312, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1330, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134293, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1330, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12273]={ + ["next_chapter"]=12274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=907286, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1343, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135636, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1343, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12274]={ + ["next_chapter"]=12275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=908261, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1356, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136993, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1356, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12275]={ + ["next_chapter"]=12276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=909236, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1370, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138363, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12276]={ + ["next_chapter"]=12277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2758, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=910213, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1384, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139746, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1384, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12277]={ + ["next_chapter"]=12278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2761, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=911190, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1397, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141144, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1397, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12278]={ + ["next_chapter"]=12279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=912167, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1411, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142555, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1411, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12279]={ + ["next_chapter"]=12280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2767, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=913145, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1426, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143981, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1426, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=137620, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1227, + ["unit"]=0 + } + }, + [12280]={ + ["next_chapter"]=12281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=2770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=914124, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1440, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145421, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12281]={ + ["next_chapter"]=12282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2773, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=915104, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1454, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146875, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1454, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12282]={ + ["next_chapter"]=12283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=916084, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1469, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148344, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1469, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12283]={ + ["next_chapter"]=12284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=917066, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1483, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149827, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1483, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12284]={ + ["next_chapter"]=12285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2782, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=918047, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1498, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151325, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1498, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12285]={ + ["next_chapter"]=12286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=919030, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1513, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152838, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1513, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12286]={ + ["next_chapter"]=12287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2788, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=920013, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1528, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154367, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1528, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12287]={ + ["next_chapter"]=12288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2791, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=920997, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1544, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155911, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1544, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12288]={ + ["next_chapter"]=12289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=921982, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1559, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157470, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1559, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12289]={ + ["next_chapter"]=12290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2797, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=922967, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1575, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159044, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1575, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=152018, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1228, + ["unit"]=0 + } + }, + [12290]={ + ["next_chapter"]=12291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2800, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=923953, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1590, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160635, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1590, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12291]={ + ["next_chapter"]=12292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=924940, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1606, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162241, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1606, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12292]={ + ["next_chapter"]=12293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2806, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=925927, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1622, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163864, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1622, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12293]={ + ["next_chapter"]=12294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2809, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=926915, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1639, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165502, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1639, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12294]={ + ["next_chapter"]=12295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2812, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=927904, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1655, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167157, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1655, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12295]={ + ["next_chapter"]=12296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=928894, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1672, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168829, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1672, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12296]={ + ["next_chapter"]=12297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2818, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=929884, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1688, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170517, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1688, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12297]={ + ["next_chapter"]=12298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2821, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=930875, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1705, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172222, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1705, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12298]={ + ["next_chapter"]=12299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2824, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=931867, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1722, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173944, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1722, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12299]={ + ["next_chapter"]=12300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=932859, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1739, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175684, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1739, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=167922, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1229, + ["unit"]=0 + } + }, + [12300]={ + ["next_chapter"]=12301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=2830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=933852, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1757, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177441, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1757, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12301]={ + ["next_chapter"]=12302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=934846, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1774, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179215, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1774, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12302]={ + ["next_chapter"]=12303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2836, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=935841, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1792, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181007, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1792, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12303]={ + ["next_chapter"]=12304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2839, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=936836, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1810, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182817, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1810, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12304]={ + ["next_chapter"]=12305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=937832, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1828, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184646, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1828, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12305]={ + ["next_chapter"]=12306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=938829, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1846, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186492, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1846, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12306]={ + ["next_chapter"]=12307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=939826, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1865, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188357, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1865, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12307]={ + ["next_chapter"]=12308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2851, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=940824, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1884, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190240, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1884, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12308]={ + ["next_chapter"]=12309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2854, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=941823, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1902, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192143, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1902, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12309]={ + ["next_chapter"]=12310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=942823, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1921, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194064, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1921, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=185491, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + [12310]={ + ["next_chapter"]=12311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=2860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=943823, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1941, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196005, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1941, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12311]={ + ["next_chapter"]=12312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2863, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=944824, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1960, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197965, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12312]={ + ["next_chapter"]=12313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=945825, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1980, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199945, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1980, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12313]={ + ["next_chapter"]=12314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2869, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=946828, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=1999, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201944, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=1999, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12314]={ + ["next_chapter"]=12315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2872, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=947831, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2019, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203964, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2019, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12315]={ + ["next_chapter"]=12316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2875, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=948835, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2040, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206003, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2040, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12316]={ + ["next_chapter"]=12317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=949839, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2060, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208063, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12317]={ + ["next_chapter"]=12318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=950844, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2081, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210144, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2081, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12318]={ + ["next_chapter"]=12319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2884, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=951850, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2101, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212245, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2101, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12319]={ + ["next_chapter"]=12320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=952857, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2122, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214368, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2122, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=204897, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1231, + ["unit"]=0 + } + }, + [12320]={ + ["next_chapter"]=12321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=2890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=953864, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2144, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216511, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2144, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12321]={ + ["next_chapter"]=12322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2894, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=954873, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2165, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218677, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2165, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12322]={ + ["next_chapter"]=12323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=955881, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2187, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220863, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2187, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12323]={ + ["next_chapter"]=12324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=956891, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2209, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223072, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2209, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12324]={ + ["next_chapter"]=12325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=957901, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2231, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225303, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2231, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12325]={ + ["next_chapter"]=12326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=958912, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2253, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227556, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2253, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12326]={ + ["next_chapter"]=12327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2909, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=959924, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2276, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229831, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2276, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12327]={ + ["next_chapter"]=12328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2912, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=960936, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2298, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232130, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2298, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12328]={ + ["next_chapter"]=12329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=961949, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2321, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234451, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2321, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12329]={ + ["next_chapter"]=12330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2918, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=962963, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2345, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236795, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2345, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=226334, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1232, + ["unit"]=0 + } + }, + [12330]={ + ["next_chapter"]=12331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=2921, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=963977, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2368, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239163, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2368, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12331]={ + ["next_chapter"]=12332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2924, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=964993, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2392, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241555, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2392, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12332]={ + ["next_chapter"]=12333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2927, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=966009, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2416, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243970, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2416, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12333]={ + ["next_chapter"]=12334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=967025, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2440, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246410, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2440, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12334]={ + ["next_chapter"]=12335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2933, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=968043, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2464, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248874, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2464, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12335]={ + ["next_chapter"]=12336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=969061, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2489, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251363, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2489, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12336]={ + ["next_chapter"]=12337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2940, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=970080, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2514, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253877, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2514, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12337]={ + ["next_chapter"]=12338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=971099, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2539, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256415, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2539, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12338]={ + ["next_chapter"]=12339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2946, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=972120, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2564, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258980, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2564, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12339]={ + ["next_chapter"]=12340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=973141, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2590, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261569, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2590, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=250013, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1233, + ["unit"]=0 + } + }, + [12340]={ + ["next_chapter"]=12341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=2952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=974162, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2616, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264185, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2616, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12341]={ + ["next_chapter"]=12342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=975185, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2642, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266827, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2642, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12342]={ + ["next_chapter"]=12343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2958, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=976208, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2668, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269495, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2668, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12343]={ + ["next_chapter"]=12344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=977232, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2695, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272190, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2695, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12344]={ + ["next_chapter"]=12345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2964, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=978256, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2722, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274912, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2722, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12345]={ + ["next_chapter"]=12346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=979282, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2749, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277661, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2749, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12346]={ + ["next_chapter"]=12347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2971, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=980308, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2777, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280438, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2777, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12347]={ + ["next_chapter"]=12348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2974, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=981334, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2804, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283242, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2804, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12348]={ + ["next_chapter"]=12349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=982362, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2832, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286075, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2832, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12349]={ + ["next_chapter"]=12350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2980, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=983390, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2861, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288935, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2861, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=276170, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1234, + ["unit"]=0 + } + }, + [12350]={ + ["next_chapter"]=12351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=2983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=984419, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2889, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291825, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2889, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12351]={ + ["next_chapter"]=12352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2986, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=985449, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2918, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=294743, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2918, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12352]={ + ["next_chapter"]=12353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=986479, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2947, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=297690, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2947, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12353]={ + ["next_chapter"]=12354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2992, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=987510, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=2977, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300667, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=2977, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12354]={ + ["next_chapter"]=12355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=988542, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3007, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=303674, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3007, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12355]={ + ["next_chapter"]=12356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=2999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=989574, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3037, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=306711, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3037, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12356]={ + ["next_chapter"]=12357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=990608, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3067, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=309778, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3067, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12357]={ + ["next_chapter"]=12358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=991642, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3098, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=312876, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3098, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12358]={ + ["next_chapter"]=12359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=992676, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3129, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316004, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3129, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12359]={ + ["next_chapter"]=12360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=993712, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3160, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319164, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=305064, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1235, + ["unit"]=0 + } + }, + [12360]={ + ["next_chapter"]=12361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=3014, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=994748, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3192, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322356, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3192, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12361]={ + ["next_chapter"]=12362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=995785, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3224, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325580, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3224, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12362]={ + ["next_chapter"]=12363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=996823, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3256, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328835, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3256, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12363]={ + ["next_chapter"]=12364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=997861, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3288, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332124, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3288, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12364]={ + ["next_chapter"]=12365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=998900, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3321, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335445, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3321, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12365]={ + ["next_chapter"]=12366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=999940, + ["unit"]=9 + }, + ["gold_reward"]={ + ["value"]=3354, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338799, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3354, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12366]={ + ["next_chapter"]=12367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1001, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3388, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342187, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3388, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12367]={ + ["next_chapter"]=12368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3036, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3422, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=345609, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3422, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12368]={ + ["next_chapter"]=12369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3040, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1003, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3456, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349065, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3456, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12369]={ + ["next_chapter"]=12370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3491, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=352556, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3491, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=336980, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1236, + ["unit"]=0 + } + }, + [12370]={ + ["next_chapter"]=12371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=3046, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3526, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356082, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3526, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12371]={ + ["next_chapter"]=12372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3561, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=359642, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3561, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12372]={ + ["next_chapter"]=12373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3052, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3596, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=363239, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3596, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12373]={ + ["next_chapter"]=12374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1008, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3632, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366871, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3632, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12374]={ + ["next_chapter"]=12375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1009, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3669, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370540, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3669, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12375]={ + ["next_chapter"]=12376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3062, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1010, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3705, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374245, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3705, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12376]={ + ["next_chapter"]=12377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3065, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1011, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3742, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=377988, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3742, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12377]={ + ["next_chapter"]=12378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3068, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3780, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=381768, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3780, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12378]={ + ["next_chapter"]=12379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3071, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1014, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3818, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=385585, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3818, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12379]={ + ["next_chapter"]=12380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3074, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1015, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3856, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=389441, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3856, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=372236, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1237, + ["unit"]=0 + } + }, + [12380]={ + ["next_chapter"]=12381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=3078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3894, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=393336, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3894, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12381]={ + ["next_chapter"]=12382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3081, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3933, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=397269, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3933, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12382]={ + ["next_chapter"]=12383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3084, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1018, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3973, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=401242, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=3973, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12383]={ + ["next_chapter"]=12384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4012, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=405254, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4012, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12384]={ + ["next_chapter"]=12385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1020, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4053, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=409307, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4053, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12385]={ + ["next_chapter"]=12386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1021, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4093, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=413400, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4093, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12386]={ + ["next_chapter"]=12387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1022, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4134, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=417534, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4134, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12387]={ + ["next_chapter"]=12388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3100, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1023, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4175, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=421709, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4175, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12388]={ + ["next_chapter"]=12389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4217, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=425926, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4217, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12389]={ + ["next_chapter"]=12390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3106, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4259, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=430185, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4259, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=411180, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1238, + ["unit"]=0 + } + }, + [12390]={ + ["next_chapter"]=12391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=3110, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1026, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4302, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=434487, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4302, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12391]={ + ["next_chapter"]=12392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3113, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1027, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4345, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=438832, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4345, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12392]={ + ["next_chapter"]=12393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4388, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=443220, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4388, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12393]={ + ["next_chapter"]=12394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4432, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=447653, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4432, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12394]={ + ["next_chapter"]=12395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4477, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=452129, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4477, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12395]={ + ["next_chapter"]=12396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3126, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1031, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4521, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456650, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4521, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12396]={ + ["next_chapter"]=12397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4567, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461217, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4567, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12397]={ + ["next_chapter"]=12398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1034, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4612, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=465829, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4612, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12398]={ + ["next_chapter"]=12399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1035, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4658, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=470487, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4658, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12399]={ + ["next_chapter"]=12400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1036, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4705, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=475192, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4705, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=454199, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1239, + ["unit"]=0 + } + }, + [12400]={ + ["next_chapter"]=12401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=3142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4752, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=479944, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4752, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12401]={ + ["next_chapter"]=12402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1038, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4799, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=484744, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4799, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12402]={ + ["next_chapter"]=12403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1039, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4847, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=489591, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4847, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12403]={ + ["next_chapter"]=12404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4896, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=494487, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4896, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12404]={ + ["next_chapter"]=12405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1041, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4945, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=499432, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4945, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12405]={ + ["next_chapter"]=12406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3158, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4994, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=504426, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=4994, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12406]={ + ["next_chapter"]=12407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5044, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=509470, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5044, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12407]={ + ["next_chapter"]=12408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3164, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5095, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=514565, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5095, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12408]={ + ["next_chapter"]=12409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3168, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1045, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5146, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=519711, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5146, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12409]={ + ["next_chapter"]=12410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3171, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5197, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=524908, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5197, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=501718, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + [12410]={ + ["next_chapter"]=12411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=3174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1047, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5249, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=530157, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5249, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12411]={ + ["next_chapter"]=12412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5302, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=535458, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5302, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12412]={ + ["next_chapter"]=12413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3181, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1050, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5355, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540813, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5355, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12413]={ + ["next_chapter"]=12414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1051, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5408, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546221, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5408, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12414]={ + ["next_chapter"]=12415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3187, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1052, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5462, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=551683, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5462, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12415]={ + ["next_chapter"]=12416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3190, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1053, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5517, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=557200, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5517, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12416]={ + ["next_chapter"]=12417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5572, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=562772, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5572, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12417]={ + ["next_chapter"]=12418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1055, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5628, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=568400, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5628, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12418]={ + ["next_chapter"]=12419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3200, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5684, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=574084, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5684, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12419]={ + ["next_chapter"]=12420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5741, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=579825, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5741, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=554209, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1241, + ["unit"]=0 + } + }, + [12420]={ + ["next_chapter"]=12421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=3207, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1058, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5798, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=585623, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5798, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12421]={ + ["next_chapter"]=12422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5856, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=591479, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5856, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12422]={ + ["next_chapter"]=12423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1060, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5915, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=597394, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5915, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12423]={ + ["next_chapter"]=12424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5974, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=603368, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=5974, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12424]={ + ["next_chapter"]=12425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3220, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6034, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=609402, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6034, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12425]={ + ["next_chapter"]=12426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1064, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6094, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=615496, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6094, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12426]={ + ["next_chapter"]=12427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3227, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1065, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6155, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=621651, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6155, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12427]={ + ["next_chapter"]=12428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3230, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1066, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6217, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=627867, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6217, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12428]={ + ["next_chapter"]=12429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3233, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6279, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=634146, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6279, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12429]={ + ["next_chapter"]=12430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3236, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1068, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6341, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=640487, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6341, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=612191, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1242, + ["unit"]=0 + } + }, + [12430]={ + ["next_chapter"]=12431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=3240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6405, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=646892, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6405, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12431]={ + ["next_chapter"]=12432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6469, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=653361, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6469, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12432]={ + ["next_chapter"]=12433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6534, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=659895, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6534, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12433]={ + ["next_chapter"]=12434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1072, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6599, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=666494, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6599, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12434]={ + ["next_chapter"]=12435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1073, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6665, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=673159, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6665, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12435]={ + ["next_chapter"]=12436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1075, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6732, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=679890, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6732, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12436]={ + ["next_chapter"]=12437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1076, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6799, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=686689, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6799, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12437]={ + ["next_chapter"]=12438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3263, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6867, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=693556, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6867, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12438]={ + ["next_chapter"]=12439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1078, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6936, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=700491, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=6936, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12439]={ + ["next_chapter"]=12440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1079, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7005, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=707496, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7005, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=676240, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1243, + ["unit"]=0 + } + }, + [12440]={ + ["next_chapter"]=12441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=3273, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7075, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=714571, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7075, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12441]={ + ["next_chapter"]=12442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1081, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7146, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=721717, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7146, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12442]={ + ["next_chapter"]=12443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3279, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1082, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7217, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=728934, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7217, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12443]={ + ["next_chapter"]=12444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3283, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7289, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=736224, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7289, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12444]={ + ["next_chapter"]=12445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7362, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=743586, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7362, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12445]={ + ["next_chapter"]=12446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7436, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=751022, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7436, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12446]={ + ["next_chapter"]=12447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7510, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=758532, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7510, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12447]={ + ["next_chapter"]=12448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1088, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7585, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=766117, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7585, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12448]={ + ["next_chapter"]=12449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1089, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7661, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=773778, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7661, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12449]={ + ["next_chapter"]=12450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7738, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=781516, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7738, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=746989, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1244, + ["unit"]=0 + } + }, + [12450]={ + ["next_chapter"]=12451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=3306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1091, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7815, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=789331, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7815, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12451]={ + ["next_chapter"]=12452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1092, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7893, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=797225, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7893, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12452]={ + ["next_chapter"]=12453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3313, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1093, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7972, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=805197, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=7972, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12453]={ + ["next_chapter"]=12454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1094, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8052, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=813249, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8052, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12454]={ + ["next_chapter"]=12455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1095, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8132, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=821381, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8132, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12455]={ + ["next_chapter"]=12456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1097, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8214, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=829595, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8214, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12456]={ + ["next_chapter"]=12457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3326, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8296, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=837891, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8296, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12457]={ + ["next_chapter"]=12458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8379, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=846270, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8379, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12458]={ + ["next_chapter"]=12459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3333, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1100, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8463, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=854733, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8463, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12459]={ + ["next_chapter"]=12460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3336, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8547, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=863280, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8547, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=825141, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1245, + ["unit"]=0 + } + }, + [12460]={ + ["next_chapter"]=12461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=3340, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1102, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8633, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=871913, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8633, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12461]={ + ["next_chapter"]=12462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3343, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8719, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=880632, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8719, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12462]={ + ["next_chapter"]=12463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3346, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1104, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8806, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=889438, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8806, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12463]={ + ["next_chapter"]=12464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3350, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1105, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8894, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=898333, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8894, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12464]={ + ["next_chapter"]=12465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8983, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=907316, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=8983, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12465]={ + ["next_chapter"]=12466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3356, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1108, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9073, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=916389, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9073, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12466]={ + ["next_chapter"]=12467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1109, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9164, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=925553, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9164, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12467]={ + ["next_chapter"]=12468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1110, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9256, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=934809, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9256, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12468]={ + ["next_chapter"]=12469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9348, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=944157, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9348, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12469]={ + ["next_chapter"]=12470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9442, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=953598, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9442, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=911469, + ["unit"]=17 + }, + ["grasp_mastery_reward"]={ + ["value"]=1246, + ["unit"]=0 + } + }, + [12470]={ + ["next_chapter"]=12471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=3373, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9536, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=963134, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9536, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12471]={ + ["next_chapter"]=12472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1114, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9631, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=972766, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9631, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12472]={ + ["next_chapter"]=12473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3380, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1115, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9728, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=982493, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9728, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12473]={ + ["next_chapter"]=12474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3384, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9825, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=992318, + ["unit"]=17 + }, + ["idle_gold"]={ + ["value"]=9825, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12474]={ + ["next_chapter"]=12475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3387, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1118, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9923, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1002, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9923, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12475]={ + ["next_chapter"]=12476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10022, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1012, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10022, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12476]={ + ["next_chapter"]=12477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1120, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10123, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1022, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10123, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12477]={ + ["next_chapter"]=12478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3397, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1121, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10224, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1033, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10224, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12478]={ + ["next_chapter"]=12479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3401, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1122, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10326, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1043, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10326, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12479]={ + ["next_chapter"]=12480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3404, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10429, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1053, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10429, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1007, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1247, + ["unit"]=0 + } + }, + [12480]={ + ["next_chapter"]=12481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=3407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10534, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1064, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10534, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12481]={ + ["next_chapter"]=12482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3411, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10639, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1075, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10639, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12482]={ + ["next_chapter"]=12483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10745, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1085, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10745, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12483]={ + ["next_chapter"]=12484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1128, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10853, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1096, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10853, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12484]={ + ["next_chapter"]=12485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10961, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1107, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=10961, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12485]={ + ["next_chapter"]=12486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3424, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1130, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11071, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1118, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11071, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12486]={ + ["next_chapter"]=12487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3428, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1131, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11182, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1129, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11182, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12487]={ + ["next_chapter"]=12488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3431, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11294, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1141, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11294, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12488]={ + ["next_chapter"]=12489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1133, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11406, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1152, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11406, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12489]={ + ["next_chapter"]=12490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1135, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11521, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1164, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11521, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1248, + ["unit"]=0 + } + }, + [12490]={ + ["next_chapter"]=12491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=3442, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1136, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11636, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1175, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11636, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12491]={ + ["next_chapter"]=12492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11752, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1187, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11752, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12492]={ + ["next_chapter"]=12493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3448, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1138, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11870, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1199, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11870, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12493]={ + ["next_chapter"]=12494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3452, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1139, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11988, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1211, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=11988, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12494]={ + ["next_chapter"]=12495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12108, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1223, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=12108, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12495]={ + ["next_chapter"]=12496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1141, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12229, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1235, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=12229, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12496]={ + ["next_chapter"]=12497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1143, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12352, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1248, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=12352, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12497]={ + ["next_chapter"]=12498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1144, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12475, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1260, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=12475, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12498]={ + ["next_chapter"]=12499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1145, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12600, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1273, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=12600, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12499]={ + ["next_chapter"]=12500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3473, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1146, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12726, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1285, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=12726, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1229, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1249, + ["unit"]=0 + } + }, + [12500]={ + ["next_chapter"]=12501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=3476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1147, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12853, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1298, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=12853, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12501]={ + ["next_chapter"]=12502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1148, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12982, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1311, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=12982, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12502]={ + ["next_chapter"]=12503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1149, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13111, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1324, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=13111, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12503]={ + ["next_chapter"]=12504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3486, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1151, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13243, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1337, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=13243, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12504]={ + ["next_chapter"]=12505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3490, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1152, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13375, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1351, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=13375, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12505]={ + ["next_chapter"]=12506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1153, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13509, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1364, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=13509, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12506]={ + ["next_chapter"]=12507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13644, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1378, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=13644, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12507]={ + ["next_chapter"]=12508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1155, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13780, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1392, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=13780, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12508]={ + ["next_chapter"]=12509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3504, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13918, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1406, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=13918, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12509]={ + ["next_chapter"]=12510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14057, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1420, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=14057, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1357, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + [12510]={ + ["next_chapter"]=12511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=3511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1159, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14198, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1434, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=14198, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12511]={ + ["next_chapter"]=12512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1160, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14340, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1448, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=14340, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12512]={ + ["next_chapter"]=12513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3518, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1161, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14483, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1463, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=14483, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12513]={ + ["next_chapter"]=12514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3521, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1162, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14628, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1477, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=14628, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12514]={ + ["next_chapter"]=12515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14774, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1492, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=14774, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12515]={ + ["next_chapter"]=12516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1164, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14922, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1507, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=14922, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12516]={ + ["next_chapter"]=12517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3532, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15071, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1522, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=15071, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12517]={ + ["next_chapter"]=12518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15222, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1537, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=15222, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12518]={ + ["next_chapter"]=12519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3539, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15374, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1553, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=15374, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12519]={ + ["next_chapter"]=12520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1169, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15528, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1568, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=15528, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1499, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1251, + ["unit"]=0 + } + }, + [12520]={ + ["next_chapter"]=12521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=3546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1170, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15683, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1584, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=15683, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12521]={ + ["next_chapter"]=12522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15840, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1600, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=15840, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12522]={ + ["next_chapter"]=12523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1172, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15998, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1616, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=15998, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12523]={ + ["next_chapter"]=12524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1174, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16158, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1632, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=16158, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12524]={ + ["next_chapter"]=12525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1175, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16320, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1648, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=16320, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12525]={ + ["next_chapter"]=12526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16483, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1665, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=16483, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12526]={ + ["next_chapter"]=12527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16648, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1681, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=16648, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12527]={ + ["next_chapter"]=12528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16814, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1698, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=16814, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12528]={ + ["next_chapter"]=12529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3574, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1179, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16983, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1715, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=16983, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12529]={ + ["next_chapter"]=12530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1180, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17152, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1732, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=17152, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1656, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1252, + ["unit"]=0 + } + }, + [12530]={ + ["next_chapter"]=12531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=3581, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1182, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17324, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1750, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=17324, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12531]={ + ["next_chapter"]=12532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17497, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1767, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=17497, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12532]={ + ["next_chapter"]=12533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1184, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17672, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1785, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=17672, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12533]={ + ["next_chapter"]=12534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17849, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1803, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=17849, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12534]={ + ["next_chapter"]=12535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18027, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1821, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=18027, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12535]={ + ["next_chapter"]=12536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3598, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1187, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18208, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1839, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=18208, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12536]={ + ["next_chapter"]=12537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18390, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1857, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=18390, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12537]={ + ["next_chapter"]=12538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18574, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1876, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=18574, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12538]={ + ["next_chapter"]=12539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3609, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18759, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1895, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=18759, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12539]={ + ["next_chapter"]=12540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1192, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18947, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1914, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=18947, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=1829, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1253, + ["unit"]=0 + } + }, + [12540]={ + ["next_chapter"]=12541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=3616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19136, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1933, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=19136, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12541]={ + ["next_chapter"]=12542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1194, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19328, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1952, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=19328, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12542]={ + ["next_chapter"]=12543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1196, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19521, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1972, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=19521, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12543]={ + ["next_chapter"]=12544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1197, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19716, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1991, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=19716, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12544]={ + ["next_chapter"]=12545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1198, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19913, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2011, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=19913, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12545]={ + ["next_chapter"]=12546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20113, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2031, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=20113, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12546]={ + ["next_chapter"]=12547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1200, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20314, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2052, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=20314, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12547]={ + ["next_chapter"]=12548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3641, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20517, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2072, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=20517, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12548]={ + ["next_chapter"]=12549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3645, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1203, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20722, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2093, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=20722, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12549]={ + ["next_chapter"]=12550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3648, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20929, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2114, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=20929, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2020, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1254, + ["unit"]=0 + } + }, + [12550]={ + ["next_chapter"]=12551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=3652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1205, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21139, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2135, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=21139, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12551]={ + ["next_chapter"]=12552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21350, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2156, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=21350, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12552]={ + ["next_chapter"]=12553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1207, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21563, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2178, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=21563, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12553]={ + ["next_chapter"]=12554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1209, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21779, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2200, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=21779, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12554]={ + ["next_chapter"]=12555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3666, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1210, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21997, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2222, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=21997, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12555]={ + ["next_chapter"]=12556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22217, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2244, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=22217, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12556]={ + ["next_chapter"]=12557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1212, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22439, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2266, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=22439, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12557]={ + ["next_chapter"]=12558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1213, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22663, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2289, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=22663, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12558]={ + ["next_chapter"]=12559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3680, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22890, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2312, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=22890, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12559]={ + ["next_chapter"]=12560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1216, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23119, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2335, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=23119, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2232, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1255, + ["unit"]=0 + } + }, + [12560]={ + ["next_chapter"]=12561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=3688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23350, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2358, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=23350, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12561]={ + ["next_chapter"]=12562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1218, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23584, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2382, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=23584, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12562]={ + ["next_chapter"]=12563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1219, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23819, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2406, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=23819, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12563]={ + ["next_chapter"]=12564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24058, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2430, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=24058, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12564]={ + ["next_chapter"]=12565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24298, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2454, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=24298, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12565]={ + ["next_chapter"]=12566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3706, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24541, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2479, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=24541, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12566]={ + ["next_chapter"]=12567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3709, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1224, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24787, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2503, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=24787, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12567]={ + ["next_chapter"]=12568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1225, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25034, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2528, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=25034, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12568]={ + ["next_chapter"]=12569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1226, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25285, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2554, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=25285, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12569]={ + ["next_chapter"]=12570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25538, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2579, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=25538, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1256, + ["unit"]=0 + } + }, + [12570]={ + ["next_chapter"]=12571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=3724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1229, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25793, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2605, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=25793, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12571]={ + ["next_chapter"]=12572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1230, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26051, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2631, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=26051, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12572]={ + ["next_chapter"]=12573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26311, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2657, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=26311, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12573]={ + ["next_chapter"]=12574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3734, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1232, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26575, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2684, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=26575, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12574]={ + ["next_chapter"]=12575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3738, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1234, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26840, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2711, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=26840, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12575]={ + ["next_chapter"]=12576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1235, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27109, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2738, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=27109, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12576]={ + ["next_chapter"]=12577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3745, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27380, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2765, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=27380, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12577]={ + ["next_chapter"]=12578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1237, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27654, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2793, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=27654, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12578]={ + ["next_chapter"]=12579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27930, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2821, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=27930, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12579]={ + ["next_chapter"]=12580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1240, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28209, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2849, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=28209, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=2723, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1257, + ["unit"]=0 + } + }, + [12580]={ + ["next_chapter"]=12581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=3760, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28492, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2878, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=28492, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12581]={ + ["next_chapter"]=12582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1242, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28776, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2906, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=28776, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12582]={ + ["next_chapter"]=12583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3767, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1243, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29064, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2935, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=29064, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12583]={ + ["next_chapter"]=12584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3771, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1244, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29355, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2965, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=29355, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12584]={ + ["next_chapter"]=12585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29648, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2994, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=29648, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12585]={ + ["next_chapter"]=12586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29945, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3024, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=29945, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12586]={ + ["next_chapter"]=12587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3782, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1248, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30244, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3055, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=30244, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12587]={ + ["next_chapter"]=12588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1249, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30547, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3085, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=30547, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12588]={ + ["next_chapter"]=12589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3789, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30852, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3116, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=30852, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12589]={ + ["next_chapter"]=12590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3793, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1252, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31161, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3147, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=31161, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1258, + ["unit"]=0 + } + }, + [12590]={ + ["next_chapter"]=12591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=3796, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1253, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31472, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3179, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=31472, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12591]={ + ["next_chapter"]=12592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3800, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31787, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3211, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=31787, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12592]={ + ["next_chapter"]=12593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3804, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1255, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32105, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3243, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=32105, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12593]={ + ["next_chapter"]=12594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32426, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3275, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=32426, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12594]={ + ["next_chapter"]=12595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1258, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32750, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3308, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=32750, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12595]={ + ["next_chapter"]=12596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33078, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3341, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=33078, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12596]={ + ["next_chapter"]=12597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1260, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33409, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3374, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=33409, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12597]={ + ["next_chapter"]=12598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3822, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33743, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3408, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=33743, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12598]={ + ["next_chapter"]=12599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3826, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1263, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34080, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3442, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=34080, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12599]={ + ["next_chapter"]=12600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1264, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34421, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3477, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=34421, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3323, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1259, + ["unit"]=0 + } + }, + [12600]={ + ["next_chapter"]=12601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=3833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34765, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3511, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=34765, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12601]={ + ["next_chapter"]=12602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3837, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1266, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35113, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3546, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=35113, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12602]={ + ["next_chapter"]=12603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1267, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35464, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3582, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=35464, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12603]={ + ["next_chapter"]=12604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1269, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35819, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3618, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=35819, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12604]={ + ["next_chapter"]=12605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36177, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3654, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=36177, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12605]={ + ["next_chapter"]=12606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3852, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1271, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36539, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3690, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=36539, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12606]={ + ["next_chapter"]=12607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36904, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3727, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=36904, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12607]={ + ["next_chapter"]=12608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1274, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37273, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3765, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=37273, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12608]={ + ["next_chapter"]=12609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3863, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1275, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37646, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3802, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=37646, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12609]={ + ["next_chapter"]=12610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38022, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3840, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=38022, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=3671, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + [12610]={ + ["next_chapter"]=12611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=3870, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1277, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38402, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3879, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=38402, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12611]={ + ["next_chapter"]=12612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1278, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38786, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3917, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=38786, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12612]={ + ["next_chapter"]=12613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1280, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39174, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3957, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=39174, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12613]={ + ["next_chapter"]=12614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39566, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3996, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=39566, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12614]={ + ["next_chapter"]=12615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3885, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1282, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39962, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4036, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=39962, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12615]={ + ["next_chapter"]=12616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1283, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40361, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4076, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=40361, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12616]={ + ["next_chapter"]=12617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1285, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40765, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4117, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=40765, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12617]={ + ["next_chapter"]=12618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1286, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41173, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4158, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=41173, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12618]={ + ["next_chapter"]=12619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1287, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41584, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4200, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=41584, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12619]={ + ["next_chapter"]=12620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3904, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42000, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4242, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=42000, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4055, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1261, + ["unit"]=0 + } + }, + [12620]={ + ["next_chapter"]=12621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=3908, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1289, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42420, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4284, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=42420, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12621]={ + ["next_chapter"]=12622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3911, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42844, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4327, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=42844, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12622]={ + ["next_chapter"]=12623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1292, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43273, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4371, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=43273, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12623]={ + ["next_chapter"]=12624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1293, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43705, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4414, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=43705, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12624]={ + ["next_chapter"]=12625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44143, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4458, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=44143, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12625]={ + ["next_chapter"]=12626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1296, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44584, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4503, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=44584, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12626]={ + ["next_chapter"]=12627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45030, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4548, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=45030, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12627]={ + ["next_chapter"]=12628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1298, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45480, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4593, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=45480, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12628]={ + ["next_chapter"]=12629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45935, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4639, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=45935, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12629]={ + ["next_chapter"]=12630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3941, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1301, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46394, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4686, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=46394, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4479, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1262, + ["unit"]=0 + } + }, + [12630]={ + ["next_chapter"]=12631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=3945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1302, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46858, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4733, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=46858, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12631]={ + ["next_chapter"]=12632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1303, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47327, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4780, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=47327, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12632]={ + ["next_chapter"]=12633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3953, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47800, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4828, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=47800, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12633]={ + ["next_chapter"]=12634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3956, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48278, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4876, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=48278, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12634]={ + ["next_chapter"]=12635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3960, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1307, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48761, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4925, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=48761, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12635]={ + ["next_chapter"]=12636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3964, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49248, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4974, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=49248, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12636]={ + ["next_chapter"]=12637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1309, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49741, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5024, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=49741, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12637]={ + ["next_chapter"]=12638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3971, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50238, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5074, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=50238, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12638]={ + ["next_chapter"]=12639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1312, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50741, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5125, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=50741, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12639]={ + ["next_chapter"]=12640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1313, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51248, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5176, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=51248, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=4947, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1263, + ["unit"]=0 + } + }, + [12640]={ + ["next_chapter"]=12641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=3983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51761, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5228, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=51761, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12641]={ + ["next_chapter"]=12642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1316, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52278, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5280, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=52278, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12642]={ + ["next_chapter"]=12643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52801, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5333, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=52801, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12643]={ + ["next_chapter"]=12644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3994, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1318, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53329, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5386, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=53329, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12644]={ + ["next_chapter"]=12645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=3998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1319, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53862, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5440, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=53862, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12645]={ + ["next_chapter"]=12646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1321, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54401, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5494, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=54401, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12646]={ + ["next_chapter"]=12647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54945, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5549, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=54945, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12647]={ + ["next_chapter"]=12648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4009, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55494, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5605, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=55494, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12648]={ + ["next_chapter"]=12649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4013, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56049, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5661, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=56049, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12649]={ + ["next_chapter"]=12650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1326, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56610, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5718, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=56610, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=5465, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1264, + ["unit"]=0 + } + }, + [12650]={ + ["next_chapter"]=12651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=4021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1327, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57176, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5775, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=57176, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12651]={ + ["next_chapter"]=12652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4025, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57748, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5833, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=57748, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12652]={ + ["next_chapter"]=12653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4028, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1329, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58325, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5891, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=58325, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12653]={ + ["next_chapter"]=12654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1331, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58908, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5950, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=58908, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12654]={ + ["next_chapter"]=12655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4036, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1332, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59497, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6009, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=59497, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12655]={ + ["next_chapter"]=12656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4040, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1333, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60092, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6069, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=60092, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12656]={ + ["next_chapter"]=12657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60693, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6130, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=60693, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12657]={ + ["next_chapter"]=12658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1336, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61300, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6191, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=61300, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12658]={ + ["next_chapter"]=12659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61913, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6253, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=61913, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12659]={ + ["next_chapter"]=12660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62532, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6316, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=62532, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1265, + ["unit"]=0 + } + }, + [12660]={ + ["next_chapter"]=12661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=4059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63158, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6379, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=63158, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12661]={ + ["next_chapter"]=12662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1341, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63789, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6443, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=63789, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12662]={ + ["next_chapter"]=12663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4067, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1342, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64427, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6507, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=64427, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12663]={ + ["next_chapter"]=12664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65071, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6572, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=65071, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12664]={ + ["next_chapter"]=12665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4074, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65722, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6638, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=65722, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12665]={ + ["next_chapter"]=12666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66379, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6704, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=66379, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12666]={ + ["next_chapter"]=12667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4082, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1347, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67043, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6771, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=67043, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12667]={ + ["next_chapter"]=12668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4086, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1348, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67714, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6839, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=67714, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12668]={ + ["next_chapter"]=12669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1350, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68391, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6907, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=68391, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12669]={ + ["next_chapter"]=12670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69075, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6977, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=69075, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=6668, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1266, + ["unit"]=0 + } + }, + [12670]={ + ["next_chapter"]=12671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=4097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1352, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69765, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7046, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=69765, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12671]={ + ["next_chapter"]=12672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70463, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7117, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=70463, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12672]={ + ["next_chapter"]=12673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1355, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71168, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7188, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=71168, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12673]={ + ["next_chapter"]=12674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4109, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71879, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7260, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=71879, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12674]={ + ["next_chapter"]=12675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4113, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72598, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7332, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=72598, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12675]={ + ["next_chapter"]=12676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73324, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7406, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=73324, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12676]={ + ["next_chapter"]=12677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4121, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74057, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7480, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=74057, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12677]={ + ["next_chapter"]=12678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4125, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1361, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74798, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7555, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=74798, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12678]={ + ["next_chapter"]=12679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4128, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75546, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7630, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=75546, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12679]={ + ["next_chapter"]=12680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1364, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76301, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7706, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=76301, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=7366, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1267, + ["unit"]=0 + } + }, + [12680]={ + ["next_chapter"]=12681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=4136, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77064, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7784, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=77064, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12681]={ + ["next_chapter"]=12682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1366, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77835, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7861, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=77835, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12682]={ + ["next_chapter"]=12683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78613, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7940, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=78613, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12683]={ + ["next_chapter"]=12684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1369, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79400, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8019, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=79400, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12684]={ + ["next_chapter"]=12685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4152, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80194, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8100, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=80194, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12685]={ + ["next_chapter"]=12686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1371, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80995, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8181, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=80995, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12686]={ + ["next_chapter"]=12687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4159, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81805, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8262, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=81805, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12687]={ + ["next_chapter"]=12688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82623, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8345, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=82623, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12688]={ + ["next_chapter"]=12689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4167, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1375, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83450, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8428, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=83450, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12689]={ + ["next_chapter"]=12690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4171, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1376, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84284, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8513, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=84284, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8137, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1268, + ["unit"]=0 + } + }, + [12690]={ + ["next_chapter"]=12691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=4175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85127, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8598, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=85127, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12691]={ + ["next_chapter"]=12692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4179, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1379, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85978, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8684, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=85978, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12692]={ + ["next_chapter"]=12693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1380, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86838, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8771, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=86838, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12693]={ + ["next_chapter"]=12694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4187, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87707, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8858, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=87707, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12694]={ + ["next_chapter"]=12695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4191, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1383, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88584, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8947, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=88584, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12695]={ + ["next_chapter"]=12696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89469, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9036, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=89469, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12696]={ + ["next_chapter"]=12697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1386, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90364, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9127, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=90364, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12697]={ + ["next_chapter"]=12698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4203, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1387, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91268, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9218, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=91268, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12698]={ + ["next_chapter"]=12699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4206, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92180, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9310, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=92180, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12699]={ + ["next_chapter"]=12700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93102, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9403, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=93102, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=8988, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1269, + ["unit"]=0 + } + }, + [12700]={ + ["next_chapter"]=12701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=4214, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1391, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94033, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9497, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=94033, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12701]={ + ["next_chapter"]=12702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4218, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1392, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94974, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9592, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=94974, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12702]={ + ["next_chapter"]=12703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4222, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1393, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95923, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9688, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=95923, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12703]={ + ["next_chapter"]=12704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96883, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9785, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=96883, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12704]={ + ["next_chapter"]=12705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4230, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1396, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97851, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9883, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=97851, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12705]={ + ["next_chapter"]=12706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1397, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98830, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9982, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=98830, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12706]={ + ["next_chapter"]=12707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99818, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10082, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=99818, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12707]={ + ["next_chapter"]=12708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1400, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100816, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10182, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=100816, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12708]={ + ["next_chapter"]=12709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101825, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10284, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=101825, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12709]={ + ["next_chapter"]=12710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1402, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102843, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10387, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=102843, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=9928, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + [12710]={ + ["next_chapter"]=12711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=4254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1404, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103871, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10491, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=103871, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12711]={ + ["next_chapter"]=12712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4258, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104910, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10596, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=104910, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12712]={ + ["next_chapter"]=12713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1406, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105959, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10702, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=105959, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12713]={ + ["next_chapter"]=12714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1408, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107019, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10809, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=107019, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12714]={ + ["next_chapter"]=12715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1409, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108089, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10917, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=108089, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12715]={ + ["next_chapter"]=12716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1410, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109170, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11026, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=109170, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12716]={ + ["next_chapter"]=12717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110261, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11136, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=110261, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12717]={ + ["next_chapter"]=12718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4282, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1413, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111364, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11248, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=111364, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12718]={ + ["next_chapter"]=12719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1414, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112478, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11360, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=112478, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12719]={ + ["next_chapter"]=12720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113602, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11474, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=113602, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=10967, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1271, + ["unit"]=0 + } + }, + [12720]={ + ["next_chapter"]=12721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=4293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114738, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11589, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=114738, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12721]={ + ["next_chapter"]=12722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4297, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1418, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115886, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11704, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=115886, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12722]={ + ["next_chapter"]=12723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1419, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117045, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11822, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=117045, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12723]={ + ["next_chapter"]=12724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4305, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118215, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11940, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=118215, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12724]={ + ["next_chapter"]=12725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1422, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119397, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12059, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=119397, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12725]={ + ["next_chapter"]=12726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4313, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120591, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12180, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=120591, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12726]={ + ["next_chapter"]=12727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121797, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12302, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=121797, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12727]={ + ["next_chapter"]=12728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1426, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123015, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12425, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=123015, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12728]={ + ["next_chapter"]=12729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1427, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=124245, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12549, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=124245, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12729]={ + ["next_chapter"]=12730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4329, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1429, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125488, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12674, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=125488, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=12114, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1272, + ["unit"]=0 + } + }, + [12730]={ + ["next_chapter"]=12731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=4333, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126743, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12801, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=126743, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12731]={ + ["next_chapter"]=12732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1431, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=128010, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12929, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=128010, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12732]={ + ["next_chapter"]=12733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=129290, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13058, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=129290, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12733]={ + ["next_chapter"]=12734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1434, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130583, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13189, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=130583, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12734]={ + ["next_chapter"]=12735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1435, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131889, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13321, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=131889, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12735]={ + ["next_chapter"]=12736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1437, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=133208, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13454, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=133208, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12736]={ + ["next_chapter"]=12737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4357, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1438, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134540, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13589, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=134540, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12737]={ + ["next_chapter"]=12738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4361, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=135885, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13724, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=135885, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12738]={ + ["next_chapter"]=12739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1441, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=137244, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13862, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=137244, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12739]={ + ["next_chapter"]=12740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1442, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138617, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14000, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=138617, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=13382, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1273, + ["unit"]=0 + } + }, + [12740]={ + ["next_chapter"]=12741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=4374, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1443, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=140003, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14140, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=140003, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12741]={ + ["next_chapter"]=12742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=141403, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14282, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=141403, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12742]={ + ["next_chapter"]=12743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1446, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142817, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14424, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=142817, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12743]={ + ["next_chapter"]=12744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=144245, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14569, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=144245, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12744]={ + ["next_chapter"]=12745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1449, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145687, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14714, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=145687, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12745]={ + ["next_chapter"]=12746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=147144, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14862, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=147144, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12746]={ + ["next_chapter"]=12747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4398, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=148616, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15010, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=148616, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12747]={ + ["next_chapter"]=12748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1453, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=150102, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15160, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=150102, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12748]={ + ["next_chapter"]=12749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4406, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1454, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=151603, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15312, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=151603, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12749]={ + ["next_chapter"]=12750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1455, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=153119, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15465, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=153119, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=14782, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1274, + ["unit"]=0 + } + }, + [12750]={ + ["next_chapter"]=12751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=4414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1457, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=154650, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15620, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=154650, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12751]={ + ["next_chapter"]=12752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1458, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=156197, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15776, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=156197, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12752]={ + ["next_chapter"]=12753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4422, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=157759, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15934, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=157759, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12753]={ + ["next_chapter"]=12754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4426, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1461, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=159336, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16093, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=159336, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12754]={ + ["next_chapter"]=12755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4430, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1462, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=160929, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16254, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=160929, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12755]={ + ["next_chapter"]=12756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=162539, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16416, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=162539, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12756]={ + ["next_chapter"]=12757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1465, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=164164, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16581, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=164164, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12757]={ + ["next_chapter"]=12758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4442, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=165806, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16746, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=165806, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12758]={ + ["next_chapter"]=12759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1467, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=167464, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16914, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=167464, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12759]={ + ["next_chapter"]=12760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1469, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=169139, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17083, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=169139, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=16328, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1275, + ["unit"]=0 + } + }, + [12760]={ + ["next_chapter"]=12761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=4455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1470, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=170830, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17254, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=170830, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12761]={ + ["next_chapter"]=12762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=172538, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17426, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=172538, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12762]={ + ["next_chapter"]=12763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=174264, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17601, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=174264, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12763]={ + ["next_chapter"]=12764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1474, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=176006, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17777, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=176006, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12764]={ + ["next_chapter"]=12765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4471, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1475, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=177766, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17954, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=177766, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12765]={ + ["next_chapter"]=12766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1477, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=179544, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18134, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=179544, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12766]={ + ["next_chapter"]=12767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1478, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=181339, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18315, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=181339, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12767]={ + ["next_chapter"]=12768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=183153, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18498, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=183153, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12768]={ + ["next_chapter"]=12769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1481, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=184984, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18683, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=184984, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12769]={ + ["next_chapter"]=12770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4492, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=186834, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18870, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=186834, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=18037, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1276, + ["unit"]=0 + } + }, + [12770]={ + ["next_chapter"]=12771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=4496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1484, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=188702, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19059, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=188702, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12771]={ + ["next_chapter"]=12772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1485, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=190589, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19250, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=190589, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12772]={ + ["next_chapter"]=12773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4504, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1486, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=192495, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19442, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=192495, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12773]={ + ["next_chapter"]=12774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4508, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=194420, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19636, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=194420, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12774]={ + ["next_chapter"]=12775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4512, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=196365, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19833, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=196365, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12775]={ + ["next_chapter"]=12776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4516, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1490, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=198328, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20031, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=198328, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12776]={ + ["next_chapter"]=12777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=200311, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20231, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=200311, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12777]={ + ["next_chapter"]=12778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4524, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=202315, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20434, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=202315, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12778]={ + ["next_chapter"]=12779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=204338, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20638, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=204338, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12779]={ + ["next_chapter"]=12780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4533, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1496, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=206381, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20844, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=206381, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=19924, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1277, + ["unit"]=0 + } + }, + [12780]={ + ["next_chapter"]=12781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=4537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1497, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=208445, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21053, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=208445, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12781]={ + ["next_chapter"]=12782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1499, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=210529, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21263, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=210529, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12782]={ + ["next_chapter"]=12783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=212635, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21476, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=212635, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12783]={ + ["next_chapter"]=12784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=214761, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21691, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=214761, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12784]={ + ["next_chapter"]=12785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=216909, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21908, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=216909, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12785]={ + ["next_chapter"]=12786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4557, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1504, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=219078, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22127, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=219078, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12786]={ + ["next_chapter"]=12787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=221268, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22348, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=221268, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12787]={ + ["next_chapter"]=12788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1507, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=223481, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22572, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=223481, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12788]={ + ["next_chapter"]=12789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=225716, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22797, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=225716, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12789]={ + ["next_chapter"]=12790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4574, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1509, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=227973, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23025, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=227973, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=22008, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1278, + ["unit"]=0 + } + }, + [12790]={ + ["next_chapter"]=12791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=4578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1511, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=230253, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23256, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=230253, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12791]={ + ["next_chapter"]=12792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4582, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1512, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=232555, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23488, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=232555, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12792]={ + ["next_chapter"]=12793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4587, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=234881, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23723, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=234881, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12793]={ + ["next_chapter"]=12794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1515, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=237230, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23960, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=237230, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12794]={ + ["next_chapter"]=12795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1516, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=239602, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24200, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=239602, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12795]={ + ["next_chapter"]=12796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=241998, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24442, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=241998, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12796]={ + ["next_chapter"]=12797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4603, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1519, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=244418, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24686, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=244418, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12797]={ + ["next_chapter"]=12798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=246862, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24933, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=246862, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12798]={ + ["next_chapter"]=12799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4612, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1522, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=249331, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25182, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=249331, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12799]={ + ["next_chapter"]=12800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1523, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=251824, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25434, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=251824, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=24311, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1279, + ["unit"]=0 + } + }, + [12800]={ + ["next_chapter"]=12801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=4620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1525, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=254342, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25689, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=254342, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12801]={ + ["next_chapter"]=12802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1526, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=256886, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25945, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=256886, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12802]={ + ["next_chapter"]=12803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4628, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=259455, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26205, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=259455, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12803]={ + ["next_chapter"]=12804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4632, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1529, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=262049, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26467, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=262049, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12804]={ + ["next_chapter"]=12805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1530, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=264670, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26732, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=264670, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12805]={ + ["next_chapter"]=12806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4641, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1531, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=267316, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26999, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=267316, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12806]={ + ["next_chapter"]=12807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4645, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=269990, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27269, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=269990, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12807]={ + ["next_chapter"]=12808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=272690, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27542, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=272690, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12808]={ + ["next_chapter"]=12809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4653, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1536, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=275416, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27817, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=275416, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12809]={ + ["next_chapter"]=12810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1537, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=278171, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28095, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=278171, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=26854, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + [12810]={ + ["next_chapter"]=12811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=4662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1538, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=280952, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28376, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=280952, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12811]={ + ["next_chapter"]=12812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4666, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1540, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=283762, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28660, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=283762, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12812]={ + ["next_chapter"]=12813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=286599, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28947, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=286599, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12813]={ + ["next_chapter"]=12814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1543, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=289465, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29236, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=289465, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12814]={ + ["next_chapter"]=12815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=292360, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29528, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=292360, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12815]={ + ["next_chapter"]=12816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4683, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1545, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=295284, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29824, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=295284, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12816]={ + ["next_chapter"]=12817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4687, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=298236, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30122, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=298236, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12817]={ + ["next_chapter"]=12818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=301219, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30423, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=301219, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12818]={ + ["next_chapter"]=12819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4696, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1550, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=304231, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30727, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=304231, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12819]={ + ["next_chapter"]=12820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1551, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=307273, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31035, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=307273, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=29664, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1281, + ["unit"]=0 + } + }, + [12820]={ + ["next_chapter"]=12821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=4704, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1552, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=310346, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31345, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=310346, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12821]={ + ["next_chapter"]=12822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=313450, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31658, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=313450, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12822]={ + ["next_chapter"]=12823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1555, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=316584, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31975, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=316584, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12823]={ + ["next_chapter"]=12824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=319750, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32295, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=319750, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12824]={ + ["next_chapter"]=12825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4721, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1558, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=322947, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32618, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=322947, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12825]={ + ["next_chapter"]=12826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1559, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=326177, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32944, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=326177, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12826]={ + ["next_chapter"]=12827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1561, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=329439, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33273, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=329439, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12827]={ + ["next_chapter"]=12828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4734, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1562, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=332733, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33606, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=332733, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12828]={ + ["next_chapter"]=12829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4738, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=336060, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33942, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=336060, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12829]={ + ["next_chapter"]=12830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=339421, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34282, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=339421, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=32767, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1282, + ["unit"]=0 + } + }, + [12830]={ + ["next_chapter"]=12831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=4747, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1566, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=342815, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34624, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=342815, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12831]={ + ["next_chapter"]=12832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1568, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=346243, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34971, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=346243, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12832]={ + ["next_chapter"]=12833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1569, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=349706, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35320, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=349706, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12833]={ + ["next_chapter"]=12834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=353203, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35673, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=353203, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12834]={ + ["next_chapter"]=12835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1572, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=356735, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36030, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=356735, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12835]={ + ["next_chapter"]=12836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1573, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=360302, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36391, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=360302, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12836]={ + ["next_chapter"]=12837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4772, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1575, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=363905, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36754, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=363905, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12837]={ + ["next_chapter"]=12838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1576, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=367544, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37122, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=367544, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12838]={ + ["next_chapter"]=12839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=371220, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37493, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=371220, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12839]={ + ["next_chapter"]=12840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1579, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=374932, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37868, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=374932, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=36195, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1283, + ["unit"]=0 + } + }, + [12840]={ + ["next_chapter"]=12841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=4789, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=378681, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38247, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=378681, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12841]={ + ["next_chapter"]=12842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1582, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=382468, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38629, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=382468, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12842]={ + ["next_chapter"]=12843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1583, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=386293, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39016, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=386293, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12843]={ + ["next_chapter"]=12844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4802, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=390156, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39406, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=390156, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12844]={ + ["next_chapter"]=12845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4806, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1586, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=394057, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39800, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=394057, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12845]={ + ["next_chapter"]=12846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=397998, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40198, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=397998, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12846]={ + ["next_chapter"]=12847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=401978, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40600, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=401978, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12847]={ + ["next_chapter"]=12848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1590, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=405998, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41006, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=405998, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12848]={ + ["next_chapter"]=12849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4824, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1592, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=410057, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41416, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=410057, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12849]={ + ["next_chapter"]=12850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4828, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1593, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=414158, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41830, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=414158, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=39982, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1284, + ["unit"]=0 + } + }, + [12850]={ + ["next_chapter"]=12851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=4832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1595, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=418300, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42248, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=418300, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12851]={ + ["next_chapter"]=12852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4837, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=422483, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42671, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=422483, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12852]={ + ["next_chapter"]=12853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1597, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=426707, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43097, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=426707, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12853]={ + ["next_chapter"]=12854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1599, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=430975, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43528, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=430975, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12854]={ + ["next_chapter"]=12855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=435284, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43964, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=435284, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12855]={ + ["next_chapter"]=12856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4854, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1602, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=439637, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44403, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=439637, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12856]={ + ["next_chapter"]=12857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4858, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1603, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=444033, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44847, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=444033, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12857]={ + ["next_chapter"]=12858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1605, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=448474, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45296, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=448474, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12858]={ + ["next_chapter"]=12859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1606, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=452959, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45749, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=452959, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12859]={ + ["next_chapter"]=12860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4871, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=457488, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46206, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=457488, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=44165, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1285, + ["unit"]=0 + } + }, + [12860]={ + ["next_chapter"]=12861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=4875, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1609, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=462063, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46668, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=462063, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12861]={ + ["next_chapter"]=12862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4880, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1610, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=466684, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47135, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=466684, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12862]={ + ["next_chapter"]=12863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4884, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=471351, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47606, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=471351, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12863]={ + ["next_chapter"]=12864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4888, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1613, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=476064, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48082, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=476064, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12864]={ + ["next_chapter"]=12865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1615, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=480825, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48563, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=480825, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12865]={ + ["next_chapter"]=12866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1616, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=485633, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49049, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=485633, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12866]={ + ["next_chapter"]=12867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4901, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=490489, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49539, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=490489, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12867]={ + ["next_chapter"]=12868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1619, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=495394, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50035, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=495394, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12868]={ + ["next_chapter"]=12869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=500348, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50535, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=500348, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12869]={ + ["next_chapter"]=12870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=505352, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51041, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=505352, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=48786, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1286, + ["unit"]=0 + } + }, + [12870]={ + ["next_chapter"]=12871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=4919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1623, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=510405, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51551, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=510405, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12871]={ + ["next_chapter"]=12872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=515509, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52066, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=515509, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12872]={ + ["next_chapter"]=12873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4928, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1626, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=520664, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52587, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=520664, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12873]={ + ["next_chapter"]=12874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4932, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=525871, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53113, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=525871, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12874]={ + ["next_chapter"]=12875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=531130, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53644, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=531130, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12875]={ + ["next_chapter"]=12876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4941, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1630, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=536441, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54181, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=536441, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12876]={ + ["next_chapter"]=12877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1632, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=541805, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54722, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=541805, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12877]={ + ["next_chapter"]=12878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=547223, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55270, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=547223, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12878]={ + ["next_chapter"]=12879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4954, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=552696, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55822, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=552696, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12879]={ + ["next_chapter"]=12880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4958, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1636, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=558222, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56380, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=558222, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=53890, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1287, + ["unit"]=0 + } + }, + [12880]={ + ["next_chapter"]=12881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=4963, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1638, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=563805, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56944, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=563805, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12881]={ + ["next_chapter"]=12882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4967, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1639, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=569443, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57514, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=569443, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12882]={ + ["next_chapter"]=12883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4971, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1641, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=575137, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58089, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=575137, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12883]={ + ["next_chapter"]=12884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4976, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=580889, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58670, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=580889, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12884]={ + ["next_chapter"]=12885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4980, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1643, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=586697, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59256, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=586697, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12885]={ + ["next_chapter"]=12886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1645, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=592564, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59849, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=592564, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12886]={ + ["next_chapter"]=12887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=598490, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60447, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=598490, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12887]={ + ["next_chapter"]=12888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4993, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1648, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=604475, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61052, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=604475, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12888]={ + ["next_chapter"]=12889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=4998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=610520, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61662, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=610520, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12889]={ + ["next_chapter"]=12890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1651, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=616625, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62279, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=616625, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=59528, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1288, + ["unit"]=0 + } + }, + [12890]={ + ["next_chapter"]=12891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=5007, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1652, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=622791, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62902, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=622791, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12891]={ + ["next_chapter"]=12892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=629019, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63531, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=629019, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12892]={ + ["next_chapter"]=12893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=635309, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64166, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=635309, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12893]={ + ["next_chapter"]=12894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1657, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=641662, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64808, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=641662, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12894]={ + ["next_chapter"]=12895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=648079, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65456, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=648079, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12895]={ + ["next_chapter"]=12896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5029, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=654560, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66111, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=654560, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12896]={ + ["next_chapter"]=12897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1661, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=661105, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66772, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=661105, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12897]={ + ["next_chapter"]=12898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5038, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1662, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=667716, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67439, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=667716, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12898]={ + ["next_chapter"]=12899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1664, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=674394, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68114, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=674394, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12899]={ + ["next_chapter"]=12900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5046, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=681138, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68795, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=681138, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=65756, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1289, + ["unit"]=0 + } + }, + [12900]={ + ["next_chapter"]=12901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=5051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1667, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=687949, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69483, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=687949, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12901]={ + ["next_chapter"]=12902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1668, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=694828, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70178, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=694828, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12902]={ + ["next_chapter"]=12903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5060, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1670, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=701777, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70879, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=701777, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12903]={ + ["next_chapter"]=12904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1671, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=708794, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71588, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=708794, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12904]={ + ["next_chapter"]=12905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5069, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1673, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=715882, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72304, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=715882, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12905]={ + ["next_chapter"]=12906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=723041, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73027, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=723041, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12906]={ + ["next_chapter"]=12907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=730272, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73757, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=730272, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12907]={ + ["next_chapter"]=12908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5082, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=737574, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74495, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=737574, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12908]={ + ["next_chapter"]=12909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1679, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=744950, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75240, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=744950, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12909]={ + ["next_chapter"]=12910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5091, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1680, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=752400, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75992, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=752400, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=72635, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + [12910]={ + ["next_chapter"]=12911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=5095, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1681, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=759924, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76752, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=759924, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12911]={ + ["next_chapter"]=12912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5100, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1683, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=767523, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77520, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=767523, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12912]={ + ["next_chapter"]=12913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5104, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=775198, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78295, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=775198, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12913]={ + ["next_chapter"]=12914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5109, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1686, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=782950, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79078, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=782950, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12914]={ + ["next_chapter"]=12915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5113, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=790780, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79869, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=790780, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12915]={ + ["next_chapter"]=12916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5118, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1689, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=798687, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80667, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=798687, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12916]={ + ["next_chapter"]=12917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=806674, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81474, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=806674, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12917]={ + ["next_chapter"]=12918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5127, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1692, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=814741, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82289, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=814741, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12918]={ + ["next_chapter"]=12919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1693, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=822888, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83112, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=822888, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12919]={ + ["next_chapter"]=12920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5136, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=831117, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83943, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=831117, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=80234, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + [12920]={ + ["next_chapter"]=12921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=5140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1696, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=839428, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84782, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=839428, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12921]={ + ["next_chapter"]=12922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=847823, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85630, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=847823, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12922]={ + ["next_chapter"]=12923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5149, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=856301, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86486, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=856301, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12923]={ + ["next_chapter"]=12924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5154, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1701, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=864864, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87351, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=864864, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12924]={ + ["next_chapter"]=12925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5158, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1702, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=873513, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88225, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=873513, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12925]={ + ["next_chapter"]=12926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=882248, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89107, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=882248, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12926]={ + ["next_chapter"]=12927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5167, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1705, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=891070, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89998, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=891070, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12927]={ + ["next_chapter"]=12928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5172, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=899981, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90898, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=899981, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12928]={ + ["next_chapter"]=12929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1708, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=908981, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91807, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=908981, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12929]={ + ["next_chapter"]=12930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5181, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=918070, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92725, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=918070, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=88629, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1292, + ["unit"]=0 + } + }, + [12930]={ + ["next_chapter"]=12931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=5185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1711, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=927251, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93652, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=927251, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12931]={ + ["next_chapter"]=12932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5190, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=936524, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94589, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=936524, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12932]={ + ["next_chapter"]=12933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=945889, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95535, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=945889, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12933]={ + ["next_chapter"]=12934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=955348, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96490, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=955348, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12934]={ + ["next_chapter"]=12935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5203, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=964901, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97455, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=964901, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12935]={ + ["next_chapter"]=12936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1719, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=974550, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98430, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=974550, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12936]={ + ["next_chapter"]=12937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1720, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=984296, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99414, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=984296, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12937]={ + ["next_chapter"]=12938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=994139, + ["unit"]=17 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100408, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=994139, + ["unit"]=17 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12938]={ + ["next_chapter"]=12939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1723, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1004, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101412, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1004, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12939]={ + ["next_chapter"]=12940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1725, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1014, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102426, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1014, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=97901, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1293, + ["unit"]=0 + } + }, + [12940]={ + ["next_chapter"]=12941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=5231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1726, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1024, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103450, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1024, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12941]={ + ["next_chapter"]=12942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1728, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1035, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104485, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1035, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12942]={ + ["next_chapter"]=12943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1729, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1045, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105530, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1045, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12943]={ + ["next_chapter"]=12944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5244, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1731, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1055, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106585, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1055, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12944]={ + ["next_chapter"]=12945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5249, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1732, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1066, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107651, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1066, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12945]={ + ["next_chapter"]=12946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1077, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108727, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1077, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12946]={ + ["next_chapter"]=12947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5258, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1735, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1087, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109815, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1087, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12947]={ + ["next_chapter"]=12948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1737, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1098, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110913, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1098, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12948]={ + ["next_chapter"]=12949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1738, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1109, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112022, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1109, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12949]={ + ["next_chapter"]=12950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5272, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1120, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113142, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=108144, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1294, + ["unit"]=0 + } + }, + [12950]={ + ["next_chapter"]=12951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=5276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1741, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1131, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114274, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1131, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12951]={ + ["next_chapter"]=12952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1143, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115416, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1143, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12952]={ + ["next_chapter"]=12953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1744, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1154, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116571, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1154, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12953]={ + ["next_chapter"]=12954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5290, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1746, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1166, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117736, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1166, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12954]={ + ["next_chapter"]=12955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5294, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1177, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118914, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1177, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12955]={ + ["next_chapter"]=12956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1749, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1189, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120103, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1189, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12956]={ + ["next_chapter"]=12957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1750, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1201, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121304, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1201, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12957]={ + ["next_chapter"]=12958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5308, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1752, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1213, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122517, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1213, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12958]={ + ["next_chapter"]=12959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5313, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1225, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123742, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1225, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12959]={ + ["next_chapter"]=12960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1237, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124979, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1237, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=119458, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1295, + ["unit"]=0 + } + }, + [12960]={ + ["next_chapter"]=12961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=5322, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1756, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1250, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126229, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12961]={ + ["next_chapter"]=12962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5327, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1758, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1262, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127492, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1262, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12962]={ + ["next_chapter"]=12963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1759, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1275, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128766, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1275, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12963]={ + ["next_chapter"]=12964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5336, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1761, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1288, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130054, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1288, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12964]={ + ["next_chapter"]=12965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5340, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1762, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1301, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131355, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1301, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12965]={ + ["next_chapter"]=12966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1314, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132668, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1314, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12966]={ + ["next_chapter"]=12967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5350, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1765, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1327, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133995, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1327, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12967]={ + ["next_chapter"]=12968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5354, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1767, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1340, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135335, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12968]={ + ["next_chapter"]=12969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1768, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1353, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136688, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1353, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12969]={ + ["next_chapter"]=12970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1770, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1367, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138055, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1367, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=131956, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [12970]={ + ["next_chapter"]=12971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=5368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1771, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1381, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139436, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1381, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12971]={ + ["next_chapter"]=12972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5373, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1773, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1394, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140830, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1394, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12972]={ + ["next_chapter"]=12973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1408, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142238, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1408, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12973]={ + ["next_chapter"]=12974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1776, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1422, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143661, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1422, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12974]={ + ["next_chapter"]=12975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5387, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1778, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1437, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145097, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1437, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12975]={ + ["next_chapter"]=12976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5391, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1451, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146548, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1451, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12976]={ + ["next_chapter"]=12977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5396, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1781, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1465, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148014, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1465, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12977]={ + ["next_chapter"]=12978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5401, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1782, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1480, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149494, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12978]={ + ["next_chapter"]=12979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5405, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1495, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150989, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1495, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12979]={ + ["next_chapter"]=12980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1510, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152499, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1510, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=145761, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1297, + ["unit"]=0 + } + }, + [12980]={ + ["next_chapter"]=12981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=5414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1787, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1525, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154024, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1525, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12981]={ + ["next_chapter"]=12982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1788, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1540, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155564, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12982]={ + ["next_chapter"]=12983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5424, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1790, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1556, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157120, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1556, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12983]={ + ["next_chapter"]=12984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5428, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1791, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1571, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158691, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1571, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12984]={ + ["next_chapter"]=12985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1587, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160278, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1587, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12985]={ + ["next_chapter"]=12986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1794, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1603, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161880, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1603, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12986]={ + ["next_chapter"]=12987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5442, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1619, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163499, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1619, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12987]={ + ["next_chapter"]=12988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1798, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1635, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165134, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1635, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12988]={ + ["next_chapter"]=12989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5452, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1651, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166786, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1651, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12989]={ + ["next_chapter"]=12990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1801, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1668, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168453, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1668, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=161011, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1298, + ["unit"]=0 + } + }, + [12990]={ + ["next_chapter"]=12991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=5461, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1685, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170138, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1685, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12991]={ + ["next_chapter"]=12992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1804, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1701, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171839, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1701, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12992]={ + ["next_chapter"]=12993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5470, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1805, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1718, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173558, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1718, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12993]={ + ["next_chapter"]=12994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1807, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1736, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175293, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1736, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12994]={ + ["next_chapter"]=12995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1808, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1753, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177046, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1753, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12995]={ + ["next_chapter"]=12996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5485, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1810, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1770, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178817, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1770, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12996]={ + ["next_chapter"]=12997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1788, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180605, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1788, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12997]={ + ["next_chapter"]=12998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5494, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1813, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1806, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182411, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1806, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12998]={ + ["next_chapter"]=12999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5499, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1815, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1824, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184235, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1824, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [12999]={ + ["next_chapter"]=13000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1816, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1842, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186077, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1842, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=177857, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1299, + ["unit"]=0 + } + }, + [13000]={ + ["next_chapter"]=13001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=5508, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1818, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1861, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187938, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1861, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13001]={ + ["next_chapter"]=13002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1879, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189818, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1879, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13002]={ + ["next_chapter"]=13003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1898, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191716, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1898, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13003]={ + ["next_chapter"]=13004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5522, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1917, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193633, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1917, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13004]={ + ["next_chapter"]=13005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1824, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1936, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195569, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1936, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13005]={ + ["next_chapter"]=13006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5532, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1956, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197525, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1956, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13006]={ + ["next_chapter"]=13007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5536, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1975, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199500, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1975, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13007]={ + ["next_chapter"]=13008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1995, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201495, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=1995, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13008]={ + ["next_chapter"]=13009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1830, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2015, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203510, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2015, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13009]={ + ["next_chapter"]=13010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5550, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1832, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2035, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205545, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2035, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=196464, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + [13010]={ + ["next_chapter"]=13011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=5555, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2055, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207601, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2055, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13011]={ + ["next_chapter"]=13012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1835, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2076, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209677, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2076, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13012]={ + ["next_chapter"]=13013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5565, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1836, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2097, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211773, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2097, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13013]={ + ["next_chapter"]=13014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1838, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2118, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213891, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2118, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13014]={ + ["next_chapter"]=13015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5574, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1839, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2139, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216030, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2139, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13015]={ + ["next_chapter"]=13016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5579, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1841, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2160, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218190, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2160, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13016]={ + ["next_chapter"]=13017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1843, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2182, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220372, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2182, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13017]={ + ["next_chapter"]=13018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1844, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2204, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222576, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2204, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13018]={ + ["next_chapter"]=13019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2226, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224802, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2226, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13019]={ + ["next_chapter"]=13020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5598, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1847, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2248, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227050, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2248, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=217019, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1301, + ["unit"]=0 + } + }, + [13020]={ + ["next_chapter"]=13021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=5603, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1849, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2270, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229320, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2270, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13021]={ + ["next_chapter"]=13022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1850, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2293, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231613, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2293, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13022]={ + ["next_chapter"]=13023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5612, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1852, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2316, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233930, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2316, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13023]={ + ["next_chapter"]=13024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5617, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1854, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2339, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236269, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2339, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13024]={ + ["next_chapter"]=13025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5622, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2363, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238632, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2363, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13025]={ + ["next_chapter"]=13026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5626, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1857, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2386, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241018, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2386, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13026]={ + ["next_chapter"]=13027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2410, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243428, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2410, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13027]={ + ["next_chapter"]=13028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1860, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2434, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245862, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2434, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13028]={ + ["next_chapter"]=13029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5641, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2459, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248321, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2459, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13029]={ + ["next_chapter"]=13030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5646, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1863, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2483, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250804, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2483, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=239724, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1302, + ["unit"]=0 + } + }, + [13030]={ + ["next_chapter"]=13031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=5650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2508, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253312, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2508, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13031]={ + ["next_chapter"]=13032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1866, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2533, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255845, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2533, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13032]={ + ["next_chapter"]=13033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1868, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2558, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258404, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2558, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13033]={ + ["next_chapter"]=13034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5665, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1869, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2584, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260988, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2584, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13034]={ + ["next_chapter"]=13035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5669, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2610, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263598, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2610, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13035]={ + ["next_chapter"]=13036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5674, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2636, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266234, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2636, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13036]={ + ["next_chapter"]=13037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1874, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2662, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268896, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2662, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13037]={ + ["next_chapter"]=13038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1876, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2689, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271585, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2689, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13038]={ + ["next_chapter"]=13039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5689, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2716, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274301, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2716, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13039]={ + ["next_chapter"]=13040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5694, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1879, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2743, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277044, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2743, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=264804, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1303, + ["unit"]=0 + } + }, + [13040]={ + ["next_chapter"]=13041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=5698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2770, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279814, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2770, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13041]={ + ["next_chapter"]=13042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5703, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2798, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=282612, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2798, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13042]={ + ["next_chapter"]=13043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1884, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2826, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=285439, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2826, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13043]={ + ["next_chapter"]=13044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1885, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2854, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288293, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2854, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13044]={ + ["next_chapter"]=13045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5718, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1887, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2883, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291176, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2883, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13045]={ + ["next_chapter"]=13046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5722, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2912, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=294088, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2912, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13046]={ + ["next_chapter"]=13047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2941, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=297029, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2941, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13047]={ + ["next_chapter"]=13048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1892, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2970, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299999, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=2970, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13048]={ + ["next_chapter"]=13049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1893, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302999, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3000, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13049]={ + ["next_chapter"]=13050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3030, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=306029, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3030, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=292509, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1304, + ["unit"]=0 + } + }, + [13050]={ + ["next_chapter"]=13051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=5747, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1896, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3060, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=309089, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3060, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13051]={ + ["next_chapter"]=13052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3091, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=312180, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3091, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13052]={ + ["next_chapter"]=13053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1900, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3122, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=315302, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3122, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13053]={ + ["next_chapter"]=13054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5761, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1901, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3153, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=318455, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3153, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13054]={ + ["next_chapter"]=13055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5766, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1903, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3185, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=321639, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3185, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13055]={ + ["next_chapter"]=13056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5771, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1904, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3216, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=324856, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3216, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13056]={ + ["next_chapter"]=13057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1906, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3249, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328104, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3249, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13057]={ + ["next_chapter"]=13058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1908, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3281, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331385, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3281, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13058]={ + ["next_chapter"]=13059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3314, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334699, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3314, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13059]={ + ["next_chapter"]=13060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1911, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3347, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338046, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3347, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=323112, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1305, + ["unit"]=0 + } + }, + [13060]={ + ["next_chapter"]=13061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=5795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3380, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=341427, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3380, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13061]={ + ["next_chapter"]=13062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5800, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1914, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3414, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=344841, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3414, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13062]={ + ["next_chapter"]=13063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1916, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3448, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=348289, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3448, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13063]={ + ["next_chapter"]=13064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1917, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3483, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=351772, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3483, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13064]={ + ["next_chapter"]=13065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3518, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=355290, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3518, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13065]={ + ["next_chapter"]=13066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3553, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358843, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3553, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13066]={ + ["next_chapter"]=13067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5824, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1922, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3588, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362431, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3588, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13067]={ + ["next_chapter"]=13068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5829, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1924, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3624, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366056, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3624, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13068]={ + ["next_chapter"]=13069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5834, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1925, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3661, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=369716, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3661, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13069]={ + ["next_chapter"]=13070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5839, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1927, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3697, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=373413, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3697, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=356916, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1306, + ["unit"]=0 + } + }, + [13070]={ + ["next_chapter"]=13071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=5844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3734, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=377147, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3734, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13071]={ + ["next_chapter"]=13072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1930, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3771, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=380919, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3771, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13072]={ + ["next_chapter"]=13073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5854, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1932, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3809, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=384728, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3809, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13073]={ + ["next_chapter"]=13074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3847, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=388575, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3847, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13074]={ + ["next_chapter"]=13075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5864, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3886, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=392461, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3886, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13075]={ + ["next_chapter"]=13076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3925, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=396386, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3925, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13076]={ + ["next_chapter"]=13077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5873, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1938, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3964, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=400350, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=3964, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13077]={ + ["next_chapter"]=13078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1940, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4003, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=404353, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4003, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13078]={ + ["next_chapter"]=13079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4044, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=408397, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4044, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13079]={ + ["next_chapter"]=13080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5888, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4084, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=412481, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4084, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=394257, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1307, + ["unit"]=0 + } + }, + [13080]={ + ["next_chapter"]=13081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=5893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1945, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4125, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=416605, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4125, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13081]={ + ["next_chapter"]=13082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5898, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1946, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4166, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=420771, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4166, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13082]={ + ["next_chapter"]=13083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1948, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4208, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=424979, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4208, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13083]={ + ["next_chapter"]=13084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5908, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1950, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4250, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=429229, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4250, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13084]={ + ["next_chapter"]=13085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5913, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1951, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4292, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=433521, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4292, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13085]={ + ["next_chapter"]=13086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5918, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4335, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=437856, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4335, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13086]={ + ["next_chapter"]=13087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1954, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4379, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=442235, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4379, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13087]={ + ["next_chapter"]=13088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5928, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1956, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4422, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446657, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4422, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13088]={ + ["next_chapter"]=13089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5932, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1958, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4467, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451124, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4467, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13089]={ + ["next_chapter"]=13090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1959, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4511, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=455635, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4511, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=435506, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1308, + ["unit"]=0 + } + }, + [13090]={ + ["next_chapter"]=13091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=5942, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1961, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4556, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=460191, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4556, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13091]={ + ["next_chapter"]=13092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1963, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4602, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=464793, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4602, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13092]={ + ["next_chapter"]=13093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1964, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4648, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=469441, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4648, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13093]={ + ["next_chapter"]=13094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5957, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4694, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=474136, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4694, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13094]={ + ["next_chapter"]=13095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5962, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1968, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4741, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=478877, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4741, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13095]={ + ["next_chapter"]=13096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5967, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1969, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4789, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=483666, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4789, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13096]={ + ["next_chapter"]=13097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1971, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4837, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=488503, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4837, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13097]={ + ["next_chapter"]=13098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1972, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4885, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=493388, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4885, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13098]={ + ["next_chapter"]=13099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4934, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=498321, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4934, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13099]={ + ["next_chapter"]=13100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4983, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=503305, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=4983, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=481069, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1309, + ["unit"]=0 + } + }, + [13100]={ + ["next_chapter"]=13101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=5992, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5033, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=508338, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5033, + ["unit"]=18 + }, + ["chapter_drop"]=60, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13101]={ + ["next_chapter"]=13102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=5997, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1979, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5083, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=513421, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5083, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13102]={ + ["next_chapter"]=13103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1981, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5134, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=518555, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5134, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13103]={ + ["next_chapter"]=13104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6007, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1982, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5186, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=523741, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5186, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13104]={ + ["next_chapter"]=13105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6012, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5237, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=528978, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5237, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13105]={ + ["next_chapter"]=13106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5290, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534268, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5290, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13106]={ + ["next_chapter"]=13107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6022, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1987, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5343, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=539611, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5343, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13107]={ + ["next_chapter"]=13108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1989, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5396, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=545007, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5396, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13108]={ + ["next_chapter"]=13109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5450, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=550457, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5450, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13109]={ + ["next_chapter"]=13110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5505, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=555961, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5505, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=531399, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + [13110]={ + ["next_chapter"]=13111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=6042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5560, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=561521, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5560, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13111]={ + ["next_chapter"]=13112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1995, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5615, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=567136, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5615, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13112]={ + ["next_chapter"]=13113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6052, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5671, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=572808, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5671, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13113]={ + ["next_chapter"]=13114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=1999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5728, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=578536, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5728, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13114]={ + ["next_chapter"]=13115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6062, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2000, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5785, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=584321, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5785, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13115]={ + ["next_chapter"]=13116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6067, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5843, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=590164, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5843, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13116]={ + ["next_chapter"]=13117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5902, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=596066, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5902, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13117]={ + ["next_chapter"]=13118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5961, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=602027, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=5961, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13118]={ + ["next_chapter"]=13119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6082, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6020, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=608047, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6020, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13119]={ + ["next_chapter"]=13120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2009, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6080, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=614127, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6080, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=586996, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1311, + ["unit"]=0 + } + }, + [13120]={ + ["next_chapter"]=13121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=6092, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2010, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6141, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=620269, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6141, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13121]={ + ["next_chapter"]=13122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6203, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=626471, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6203, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13122]={ + ["next_chapter"]=13123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6102, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2014, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6265, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=632736, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6265, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13123]={ + ["next_chapter"]=13124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2015, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6327, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=639063, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6327, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13124]={ + ["next_chapter"]=13125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6112, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6391, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=645454, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6391, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13125]={ + ["next_chapter"]=13126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6455, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=651909, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6455, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13126]={ + ["next_chapter"]=13127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2020, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6519, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=658428, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6519, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13127]={ + ["next_chapter"]=13128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6127, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2022, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6584, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=665012, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6584, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13128]={ + ["next_chapter"]=13129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6650, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=671662, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6650, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13129]={ + ["next_chapter"]=13130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6137, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6717, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=678379, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6717, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=648408, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1312, + ["unit"]=0 + } + }, + [13130]={ + ["next_chapter"]=13131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6143, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2027, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6784, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=685162, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6784, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13131]={ + ["next_chapter"]=13132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6852, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=692014, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6852, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13132]={ + ["next_chapter"]=13133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6153, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6920, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=698934, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6920, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13133]={ + ["next_chapter"]=13134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6158, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2032, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6989, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=705924, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=6989, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13134]={ + ["next_chapter"]=13135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2034, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7059, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=712983, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7059, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13135]={ + ["next_chapter"]=13136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6168, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2035, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7130, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=720113, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7130, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13136]={ + ["next_chapter"]=13137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7201, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=727314, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7201, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13137]={ + ["next_chapter"]=13138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6178, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2039, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7273, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=734587, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7273, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13138]={ + ["next_chapter"]=13139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7346, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=741933, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7346, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13139]={ + ["next_chapter"]=13140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7419, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=749352, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7419, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=716246, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1313, + ["unit"]=0 + } + }, + [13140]={ + ["next_chapter"]=13141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=6193, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7494, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=756846, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7494, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13141]={ + ["next_chapter"]=13142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6198, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2045, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7568, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=764414, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7568, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13142]={ + ["next_chapter"]=13143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6203, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2047, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7644, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=772058, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7644, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13143]={ + ["next_chapter"]=13144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7721, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=779779, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7721, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13144]={ + ["next_chapter"]=13145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6214, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2050, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7798, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=787577, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7798, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13145]={ + ["next_chapter"]=13146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6219, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2052, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7876, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=795452, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7876, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13146]={ + ["next_chapter"]=13147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7955, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=803407, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=7955, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13147]={ + ["next_chapter"]=13148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6229, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8034, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=811441, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8034, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13148]={ + ["next_chapter"]=13149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8114, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=819555, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8114, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13149]={ + ["next_chapter"]=13150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8196, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=827751, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8196, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=791181, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1314, + ["unit"]=0 + } + }, + [13150]={ + ["next_chapter"]=13151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=6244, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8278, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=836028, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8278, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13151]={ + ["next_chapter"]=13152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6249, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2062, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8360, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=844389, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8360, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13152]={ + ["next_chapter"]=13153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2064, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8444, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=852833, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8444, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13153]={ + ["next_chapter"]=13154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2066, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8528, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=861361, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8528, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13154]={ + ["next_chapter"]=13155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6265, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8614, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=869974, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8614, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13155]={ + ["next_chapter"]=13156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8700, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=878674, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8700, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13156]={ + ["next_chapter"]=13157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6275, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8787, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=887461, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8787, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13157]={ + ["next_chapter"]=13158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2072, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8875, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=896336, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8875, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13158]={ + ["next_chapter"]=13159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8963, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=905299, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=8963, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13159]={ + ["next_chapter"]=13160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6290, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2076, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9053, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=914352, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9053, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=873957, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1315, + ["unit"]=0 + } + }, + [13160]={ + ["next_chapter"]=13161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=6296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2078, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9144, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=923495, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9144, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13161]={ + ["next_chapter"]=13162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2079, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9235, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=932730, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9235, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13162]={ + ["next_chapter"]=13163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2081, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9327, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=942058, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9327, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13163]={ + ["next_chapter"]=13164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9421, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=951478, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9421, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13164]={ + ["next_chapter"]=13165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9515, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=960993, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9515, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13165]={ + ["next_chapter"]=13166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2086, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9610, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=970603, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9610, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13166]={ + ["next_chapter"]=13167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6326, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2088, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9706, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=980309, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9706, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13167]={ + ["next_chapter"]=13168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2089, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9803, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=990112, + ["unit"]=18 + }, + ["idle_gold"]={ + ["value"]=9803, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13168]={ + ["next_chapter"]=13169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2091, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9901, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1000, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9901, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13169]={ + ["next_chapter"]=13170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2093, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10000, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1010, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10000, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=965392, + ["unit"]=18 + }, + ["grasp_mastery_reward"]={ + ["value"]=1316, + ["unit"]=0 + } + }, + [13170]={ + ["next_chapter"]=13171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=6347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2095, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10100, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1020, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10100, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13171]={ + ["next_chapter"]=13172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6352, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10201, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1030, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10201, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13172]={ + ["next_chapter"]=13173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6358, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10303, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1041, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10303, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13173]={ + ["next_chapter"]=13174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2100, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10406, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1051, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10406, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13174]={ + ["next_chapter"]=13175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10510, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1062, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10510, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13175]={ + ["next_chapter"]=13176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6373, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10615, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1072, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10615, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13176]={ + ["next_chapter"]=13177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2105, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10721, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1083, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10721, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13177]={ + ["next_chapter"]=13178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10829, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1094, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10829, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13178]={ + ["next_chapter"]=13179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2108, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10937, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1105, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=10937, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13179]={ + ["next_chapter"]=13180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2110, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11046, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1116, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11046, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1066, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1317, + ["unit"]=0 + } + }, + [13180]={ + ["next_chapter"]=13181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=6399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11157, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1127, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11157, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13181]={ + ["next_chapter"]=13182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6404, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11268, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1138, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11268, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13182]={ + ["next_chapter"]=13183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2115, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11381, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1149, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11381, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13183]={ + ["next_chapter"]=13184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11495, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1161, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11495, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13184]={ + ["next_chapter"]=13185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6420, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11610, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1173, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11610, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13185]={ + ["next_chapter"]=13186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2120, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11726, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1184, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11726, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13186]={ + ["next_chapter"]=13187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6430, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2122, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11843, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1196, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11843, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13187]={ + ["next_chapter"]=13188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11962, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1208, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=11962, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13188]={ + ["next_chapter"]=13189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6441, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2125, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12081, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1220, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=12081, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13189]={ + ["next_chapter"]=13190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6446, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12202, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1232, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=12202, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1178, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1318, + ["unit"]=0 + } + }, + [13190]={ + ["next_chapter"]=13191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=6451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12324, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1245, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=12324, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13191]={ + ["next_chapter"]=13192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2131, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12447, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1257, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=12447, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13192]={ + ["next_chapter"]=13193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12572, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1270, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=12572, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13193]={ + ["next_chapter"]=13194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2134, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12698, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1282, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=12698, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13194]={ + ["next_chapter"]=13195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6472, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2136, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12824, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1295, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=12824, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13195]={ + ["next_chapter"]=13196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6477, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2138, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12953, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1308, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=12953, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13196]={ + ["next_chapter"]=13197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2139, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13082, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1321, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=13082, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13197]={ + ["next_chapter"]=13198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2141, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13213, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1335, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=13213, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13198]={ + ["next_chapter"]=13199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2143, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13345, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1348, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=13345, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13199]={ + ["next_chapter"]=13200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2144, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13479, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1361, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=13479, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1301, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1319, + ["unit"]=0 + } + }, + [13200]={ + ["next_chapter"]=13201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=6504, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2146, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13613, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1375, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=13613, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13201]={ + ["next_chapter"]=13202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2148, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13750, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1389, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=13750, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13202]={ + ["next_chapter"]=13203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13887, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1403, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=13887, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13203]={ + ["next_chapter"]=13204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2151, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14026, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1417, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=14026, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13204]={ + ["next_chapter"]=13205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2153, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14166, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1431, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=14166, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13205]={ + ["next_chapter"]=13206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2155, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14308, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1445, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=14308, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13206]={ + ["next_chapter"]=13207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14451, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1460, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=14451, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13207]={ + ["next_chapter"]=13208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6540, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14595, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1474, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=14595, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13208]={ + ["next_chapter"]=13209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2160, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14741, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1489, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=14741, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13209]={ + ["next_chapter"]=13210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6551, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2162, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14889, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1504, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=14889, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1437, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + [13210]={ + ["next_chapter"]=13211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=6556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2164, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15038, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1519, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=15038, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13211]={ + ["next_chapter"]=13212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15188, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1534, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=15188, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13212]={ + ["next_chapter"]=13213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15340, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1549, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=15340, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13213]={ + ["next_chapter"]=13214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6572, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2169, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15493, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1565, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=15493, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13214]={ + ["next_chapter"]=13215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15648, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1580, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=15648, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13215]={ + ["next_chapter"]=13216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2172, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15805, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1596, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=15805, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13216]={ + ["next_chapter"]=13217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2174, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15963, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1612, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=15963, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13217]={ + ["next_chapter"]=13218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16122, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1628, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=16122, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13218]={ + ["next_chapter"]=13219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16284, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1645, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=16284, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13219]={ + ["next_chapter"]=13220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2179, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16447, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1661, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=16447, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1588, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1321, + ["unit"]=0 + } + }, + [13220]={ + ["next_chapter"]=13221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=6609, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16611, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1678, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=16611, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13221]={ + ["next_chapter"]=13222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6615, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16777, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1694, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=16777, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13222]={ + ["next_chapter"]=13223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16945, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1711, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=16945, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13223]={ + ["next_chapter"]=13224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17114, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1729, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=17114, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13224]={ + ["next_chapter"]=13225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2188, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17285, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1746, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=17285, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13225]={ + ["next_chapter"]=13226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17458, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1763, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=17458, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13226]={ + ["next_chapter"]=13227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6641, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2192, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17633, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1781, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=17633, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13227]={ + ["next_chapter"]=13228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17809, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1799, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=17809, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13228]={ + ["next_chapter"]=13229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2195, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17987, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1817, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=17987, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13229]={ + ["next_chapter"]=13230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6657, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2197, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18167, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1835, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=18167, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1754, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1322, + ["unit"]=0 + } + }, + [13230]={ + ["next_chapter"]=13231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=6663, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18349, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1853, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=18349, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13231]={ + ["next_chapter"]=13232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2200, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18532, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1872, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=18532, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13232]={ + ["next_chapter"]=13233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18718, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1890, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=18718, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13233]={ + ["next_chapter"]=13234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18905, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1909, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=18905, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13234]={ + ["next_chapter"]=13235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19094, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1928, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=19094, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13235]={ + ["next_chapter"]=13236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6689, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2207, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19285, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1948, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=19285, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13236]={ + ["next_chapter"]=13237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2209, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19478, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1967, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=19478, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13237]={ + ["next_chapter"]=13238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19672, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1987, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=19672, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13238]={ + ["next_chapter"]=13239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6705, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2213, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19869, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2007, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=19869, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13239]={ + ["next_chapter"]=13240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20068, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2027, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=20068, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1937, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1323, + ["unit"]=0 + } + }, + [13240]={ + ["next_chapter"]=13241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=6716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2216, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20269, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2047, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=20269, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13241]={ + ["next_chapter"]=13242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6722, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2218, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20471, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2068, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=20471, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13242]={ + ["next_chapter"]=13243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20676, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2088, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=20676, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13243]={ + ["next_chapter"]=13244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20883, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2109, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=20883, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13244]={ + ["next_chapter"]=13245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6738, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21092, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2130, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=21092, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13245]={ + ["next_chapter"]=13246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2225, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21302, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2152, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=21302, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13246]={ + ["next_chapter"]=13247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2227, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21516, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2173, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=21516, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13247]={ + ["next_chapter"]=13248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2229, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21731, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2195, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=21731, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13248]={ + ["next_chapter"]=13249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21948, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2217, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=21948, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13249]={ + ["next_chapter"]=13250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6765, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2232, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22167, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2239, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=22167, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2140, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1324, + ["unit"]=0 + } + }, + [13250]={ + ["next_chapter"]=13251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=6770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2234, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22389, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2261, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=22389, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13251]={ + ["next_chapter"]=13252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22613, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2284, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=22613, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13252]={ + ["next_chapter"]=13253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22839, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2307, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=22839, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13253]={ + ["next_chapter"]=13254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2239, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23068, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2330, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=23068, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13254]={ + ["next_chapter"]=13255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6792, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23298, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2353, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=23298, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13255]={ + ["next_chapter"]=13256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6797, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2243, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23531, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2377, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=23531, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13256]={ + ["next_chapter"]=13257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6802, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23767, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2400, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=23767, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13257]={ + ["next_chapter"]=13258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6808, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24004, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2424, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=24004, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13258]={ + ["next_chapter"]=13259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6813, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2248, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24244, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2449, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=24244, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13259]={ + ["next_chapter"]=13260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24487, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2473, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=24487, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2364, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1325, + ["unit"]=0 + } + }, + [13260]={ + ["next_chapter"]=13261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=6824, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2252, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24732, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2498, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=24732, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13261]={ + ["next_chapter"]=13262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24979, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2523, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=24979, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13262]={ + ["next_chapter"]=13263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25229, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2548, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=25229, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13263]={ + ["next_chapter"]=13264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6840, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2257, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25481, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2574, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=25481, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13264]={ + ["next_chapter"]=13265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6846, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25736, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2599, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=25736, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13265]={ + ["next_chapter"]=13266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6851, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25993, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2625, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=25993, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13266]={ + ["next_chapter"]=13267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2263, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26253, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2652, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=26253, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13267]={ + ["next_chapter"]=13268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26516, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2678, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=26516, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13268]={ + ["next_chapter"]=13269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2266, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26781, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2705, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=26781, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13269]={ + ["next_chapter"]=13270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6873, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27048, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2732, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=27048, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2611, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1326, + ["unit"]=0 + } + }, + [13270]={ + ["next_chapter"]=13271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=6879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27319, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2759, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=27319, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13271]={ + ["next_chapter"]=13272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6884, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27592, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2787, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=27592, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13272]={ + ["next_chapter"]=13273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2274, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27868, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2815, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=27868, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13273]={ + ["next_chapter"]=13274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2275, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28147, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2843, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=28147, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13274]={ + ["next_chapter"]=13275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2277, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28428, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2871, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=28428, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13275]={ + ["next_chapter"]=13276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28713, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2900, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=28713, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13276]={ + ["next_chapter"]=13277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6911, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29000, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2929, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=29000, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13277]={ + ["next_chapter"]=13278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6917, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2283, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29290, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2958, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=29290, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13278]={ + ["next_chapter"]=13279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6922, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29583, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2988, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=29583, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13279]={ + ["next_chapter"]=13280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6928, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2286, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29878, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3018, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=29878, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2884, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1327, + ["unit"]=0 + } + }, + [13280]={ + ["next_chapter"]=13281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=6933, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30177, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3048, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=30177, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13281]={ + ["next_chapter"]=13282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6939, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2290, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30479, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3078, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=30479, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13282]={ + ["next_chapter"]=13283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6944, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2292, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30784, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3109, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=30784, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13283]={ + ["next_chapter"]=13284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2293, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31092, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3140, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=31092, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13284]={ + ["next_chapter"]=13285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31402, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3172, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=31402, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13285]={ + ["next_chapter"]=13286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31716, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3203, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=31716, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13286]={ + ["next_chapter"]=13287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6966, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32034, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3235, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=32034, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13287]={ + ["next_chapter"]=13288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2301, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32354, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3268, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=32354, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13288]={ + ["next_chapter"]=13289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2303, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32678, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3300, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=32678, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13289]={ + ["next_chapter"]=13290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33004, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3333, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=33004, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3186, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1328, + ["unit"]=0 + } + }, + [13290]={ + ["next_chapter"]=13291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=6988, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33334, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3367, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=33334, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13291]={ + ["next_chapter"]=13292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6994, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33668, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3400, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=33668, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13292]={ + ["next_chapter"]=13293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=6999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2310, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34004, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3434, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=34004, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13293]={ + ["next_chapter"]=13294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2312, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34344, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3469, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=34344, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13294]={ + ["next_chapter"]=13295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2313, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34688, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3503, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=34688, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13295]={ + ["next_chapter"]=13296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7016, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2315, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35035, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3539, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=35035, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13296]={ + ["next_chapter"]=13297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35385, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3574, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=35385, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13297]={ + ["next_chapter"]=13298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2319, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35739, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3610, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=35739, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13298]={ + ["next_chapter"]=13299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2321, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36096, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3646, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=36096, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13299]={ + ["next_chapter"]=13300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7038, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36457, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3682, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=36457, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1329, + ["unit"]=0 + } + }, + [13300]={ + ["next_chapter"]=13301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=7044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36822, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3719, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=36822, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13301]={ + ["next_chapter"]=13302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2326, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37190, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3756, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=37190, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13302]={ + ["next_chapter"]=13303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37562, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3794, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=37562, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13303]={ + ["next_chapter"]=13304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7060, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37938, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3832, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=37938, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13304]={ + ["next_chapter"]=13305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7066, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2332, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38317, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3870, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=38317, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13305]={ + ["next_chapter"]=13306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7071, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38700, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3909, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=38700, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13306]={ + ["next_chapter"]=13307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39087, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3948, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=39087, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13307]={ + ["next_chapter"]=13308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39478, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3987, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=39478, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13308]={ + ["next_chapter"]=13309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39873, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4027, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=39873, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13309]={ + ["next_chapter"]=13310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2341, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40272, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4067, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=40272, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3888, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + [13310]={ + ["next_chapter"]=13311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=7099, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40674, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4108, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=40674, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13311]={ + ["next_chapter"]=13312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41081, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4149, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=41081, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13312]={ + ["next_chapter"]=13313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7110, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41492, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4191, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=41492, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13313]={ + ["next_chapter"]=13314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2348, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41907, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4233, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=41907, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13314]={ + ["next_chapter"]=13315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2350, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42326, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4275, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=42326, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13315]={ + ["next_chapter"]=13316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7127, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2352, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42749, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4318, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=42749, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13316]={ + ["next_chapter"]=13317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7133, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2354, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43177, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4361, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=43177, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13317]={ + ["next_chapter"]=13318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7138, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43608, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4404, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=43608, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13318]={ + ["next_chapter"]=13319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44044, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4448, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=44044, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13319]={ + ["next_chapter"]=13320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7149, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44485, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4493, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=44485, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1331, + ["unit"]=0 + } + }, + [13320]={ + ["next_chapter"]=13321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=7155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2361, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44930, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4538, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=44930, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13321]={ + ["next_chapter"]=13322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2363, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45379, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4583, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=45379, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13322]={ + ["next_chapter"]=13323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7166, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45833, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4629, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=45833, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13323]={ + ["next_chapter"]=13324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7172, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46291, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4675, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=46291, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13324]={ + ["next_chapter"]=13325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7178, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2369, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46754, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4722, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=46754, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13325]={ + ["next_chapter"]=13326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47222, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4769, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=47222, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13326]={ + ["next_chapter"]=13327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2372, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47694, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4817, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=47694, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13327]={ + ["next_chapter"]=13328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48171, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4865, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=48171, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13328]={ + ["next_chapter"]=13329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7200, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2376, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48652, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4914, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=48652, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13329]={ + ["next_chapter"]=13330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7206, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49139, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4963, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=49139, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4744, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1332, + ["unit"]=0 + } + }, + [13330]={ + ["next_chapter"]=13331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=7211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2380, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49630, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5013, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=49630, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13331]={ + ["next_chapter"]=13332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50127, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5063, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=50127, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13332]={ + ["next_chapter"]=13333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2383, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50628, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5113, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=50628, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13333]={ + ["next_chapter"]=13334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7228, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51134, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5165, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=51134, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13334]={ + ["next_chapter"]=13335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2387, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51645, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5216, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=51645, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13335]={ + ["next_chapter"]=13336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52162, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5268, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=52162, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13336]={ + ["next_chapter"]=13337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2391, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52684, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5321, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=52684, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13337]={ + ["next_chapter"]=13338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7251, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2393, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53210, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5374, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=53210, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13338]={ + ["next_chapter"]=13339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53743, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5428, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=53743, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13339]={ + ["next_chapter"]=13340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2396, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54280, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5482, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=54280, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5240, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1333, + ["unit"]=0 + } + }, + [13340]={ + ["next_chapter"]=13341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=7268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54823, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5537, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=54823, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13341]={ + ["next_chapter"]=13342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7273, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2400, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55371, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5592, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=55371, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13342]={ + ["next_chapter"]=13343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7279, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2402, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55925, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5648, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=55925, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13343]={ + ["next_chapter"]=13344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2404, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56484, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5705, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=56484, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13344]={ + ["next_chapter"]=13345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7290, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2406, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57049, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5762, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=57049, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13345]={ + ["next_chapter"]=13346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2408, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57619, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5820, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=57619, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13346]={ + ["next_chapter"]=13347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7302, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2410, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58195, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5878, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=58195, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13347]={ + ["next_chapter"]=13348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7307, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58777, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5937, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=58777, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13348]={ + ["next_chapter"]=13349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7313, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2413, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59365, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5996, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=59365, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13349]={ + ["next_chapter"]=13350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2415, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59959, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6056, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=59959, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5788, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1334, + ["unit"]=0 + } + }, + [13350]={ + ["next_chapter"]=13351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=7325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60558, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6116, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=60558, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13351]={ + ["next_chapter"]=13352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2419, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61164, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6178, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=61164, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13352]={ + ["next_chapter"]=13353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7336, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61776, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6239, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=61776, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13353]={ + ["next_chapter"]=13354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62393, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6302, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=62393, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13354]={ + ["next_chapter"]=13355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63017, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6365, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=63017, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13355]={ + ["next_chapter"]=13356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2426, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63647, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6428, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=63647, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13356]={ + ["next_chapter"]=13357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2428, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64284, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6493, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=64284, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13357]={ + ["next_chapter"]=13358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7364, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64927, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6558, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=64927, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13358]={ + ["next_chapter"]=13359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2432, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65576, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6623, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=65576, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13359]={ + ["next_chapter"]=13360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7376, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2434, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66232, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6689, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=66232, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6394, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1335, + ["unit"]=0 + } + }, + [13360]={ + ["next_chapter"]=13361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=7382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2436, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66894, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6756, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=66894, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13361]={ + ["next_chapter"]=13362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7387, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2438, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67563, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6824, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=67563, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13362]={ + ["next_chapter"]=13363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7393, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68239, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6892, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=68239, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13363]={ + ["next_chapter"]=13364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2442, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68921, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6961, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=68921, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13364]={ + ["next_chapter"]=13365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7405, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2443, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69610, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7031, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=69610, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13365]={ + ["next_chapter"]=13366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70306, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7101, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=70306, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13366]={ + ["next_chapter"]=13367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71009, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7172, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=71009, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13367]={ + ["next_chapter"]=13368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7422, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2449, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71720, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7244, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=71720, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13368]={ + ["next_chapter"]=13369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72437, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7316, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=72437, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13369]={ + ["next_chapter"]=13370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2453, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73161, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7389, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=73161, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7063, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1336, + ["unit"]=0 + } + }, + [13370]={ + ["next_chapter"]=13371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=7439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2455, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73893, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7463, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=73893, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13371]={ + ["next_chapter"]=13372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2457, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74632, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7538, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=74632, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13372]={ + ["next_chapter"]=13373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7450, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75378, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7613, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=75378, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13373]={ + ["next_chapter"]=13374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2461, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76132, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7689, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=76132, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13374]={ + ["next_chapter"]=13375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2462, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76893, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7766, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=76893, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13375]={ + ["next_chapter"]=13376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77662, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7844, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=77662, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13376]={ + ["next_chapter"]=13377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78439, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7922, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=78439, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13377]={ + ["next_chapter"]=13378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79223, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8002, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=79223, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13378]={ + ["next_chapter"]=13379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7485, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2470, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80015, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8082, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=80015, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13379]={ + ["next_chapter"]=13380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80815, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8162, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=80815, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7802, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1337, + ["unit"]=0 + } + }, + [13380]={ + ["next_chapter"]=13381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=7497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2474, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81624, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8244, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=81624, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13381]={ + ["next_chapter"]=13382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2476, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82440, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8326, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=82440, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13382]={ + ["next_chapter"]=13383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7508, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2478, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83264, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8410, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=83264, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13383]={ + ["next_chapter"]=13384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2480, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84097, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8494, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=84097, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13384]={ + ["next_chapter"]=13385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84938, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8579, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=84938, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13385]={ + ["next_chapter"]=13386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85787, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8665, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=85787, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13386]={ + ["next_chapter"]=13387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7531, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2485, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86645, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8751, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=86645, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13387]={ + ["next_chapter"]=13388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2487, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87512, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8839, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=87512, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13388]={ + ["next_chapter"]=13389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88387, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8927, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=88387, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13389]={ + ["next_chapter"]=13390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2491, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89270, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9016, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=89270, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8618, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1338, + ["unit"]=0 + } + }, + [13390]={ + ["next_chapter"]=13391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=7555, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90163, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9106, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=90163, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13391]={ + ["next_chapter"]=13392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2495, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91065, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9198, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=91065, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13392]={ + ["next_chapter"]=13393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2497, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91975, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9290, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=91975, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13393]={ + ["next_chapter"]=13394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7572, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2499, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92895, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9382, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=92895, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13394]={ + ["next_chapter"]=13395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93824, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9476, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=93824, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13395]={ + ["next_chapter"]=13396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94762, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9571, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=94762, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13396]={ + ["next_chapter"]=13397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7589, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95710, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9667, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=95710, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13397]={ + ["next_chapter"]=13398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2506, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96667, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9763, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=96667, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13398]={ + ["next_chapter"]=13399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7601, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97634, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9861, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=97634, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13399]={ + ["next_chapter"]=13400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98610, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9960, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=98610, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9520, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1339, + ["unit"]=0 + } + }, + [13400]={ + ["next_chapter"]=13401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=7613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2512, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99596, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10059, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=99596, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13401]={ + ["next_chapter"]=13402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7619, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100592, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10160, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=100592, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13402]={ + ["next_chapter"]=13403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2516, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101598, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10261, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=101598, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13403]={ + ["next_chapter"]=13404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102614, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10364, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=102614, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13404]={ + ["next_chapter"]=13405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103640, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10468, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=103640, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13405]={ + ["next_chapter"]=13406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7642, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2522, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104677, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10572, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=104677, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13406]={ + ["next_chapter"]=13407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7648, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105723, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10678, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=105723, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13407]={ + ["next_chapter"]=13408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2526, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106781, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10785, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=106781, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13408]={ + ["next_chapter"]=13409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107848, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10893, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=107848, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13409]={ + ["next_chapter"]=13410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7666, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2530, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108927, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11002, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=108927, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10516, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + [13410]={ + ["next_chapter"]=13411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=7671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2532, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110016, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11112, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=110016, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13411]={ + ["next_chapter"]=13412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111116, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11223, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=111116, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13412]={ + ["next_chapter"]=13413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7683, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2535, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112228, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11335, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=112228, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13413]={ + ["next_chapter"]=13414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7689, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2537, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113350, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11448, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=113350, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13414]={ + ["next_chapter"]=13415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2539, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114483, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11563, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=114483, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13415]={ + ["next_chapter"]=13416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7701, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115628, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11678, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=115628, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13416]={ + ["next_chapter"]=13417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2543, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116784, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11795, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=116784, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13417]={ + ["next_chapter"]=13418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2545, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117952, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11913, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=117952, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13418]={ + ["next_chapter"]=13419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7718, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119132, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12032, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=119132, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13419]={ + ["next_chapter"]=13420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2549, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120323, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12153, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=120323, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11616, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1341, + ["unit"]=0 + } + }, + [13420]={ + ["next_chapter"]=13421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=7730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2551, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121526, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12274, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=121526, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13421]={ + ["next_chapter"]=13422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2553, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122742, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12397, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=122742, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13422]={ + ["next_chapter"]=13423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2555, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123969, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12521, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=123969, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13423]={ + ["next_chapter"]=13424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125209, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12646, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=125209, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13424]={ + ["next_chapter"]=13425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2559, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126461, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12773, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=126461, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13425]={ + ["next_chapter"]=13426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7760, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2561, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127725, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12900, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=127725, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13426]={ + ["next_chapter"]=13427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7766, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2563, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=129003, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13029, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=129003, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13427]={ + ["next_chapter"]=13428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7772, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130293, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13160, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=130293, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13428]={ + ["next_chapter"]=13429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2567, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131596, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13291, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=131596, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13429]={ + ["next_chapter"]=13430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7783, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2569, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=132912, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13424, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=132912, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=12831, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1342, + ["unit"]=0 + } + }, + [13430]={ + ["next_chapter"]=13431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=7789, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134241, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13558, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=134241, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13431]={ + ["next_chapter"]=13432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2572, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=135583, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13694, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=135583, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13432]={ + ["next_chapter"]=13433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=136939, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13831, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=136939, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13433]={ + ["next_chapter"]=13434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2576, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138308, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13969, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=138308, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13434]={ + ["next_chapter"]=13435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7813, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=139691, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14109, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=139691, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13435]={ + ["next_chapter"]=13436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=141088, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14250, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=141088, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13436]={ + ["next_chapter"]=13437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2582, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142499, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14392, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=142499, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13437]={ + ["next_chapter"]=13438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7831, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2584, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=143924, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14536, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=143924, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13438]={ + ["next_chapter"]=13439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7837, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2586, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145363, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14682, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=145363, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13439]={ + ["next_chapter"]=13440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=146817, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14829, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=146817, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=14173, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1343, + ["unit"]=0 + } + }, + [13440]={ + ["next_chapter"]=13441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=7849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2590, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=148285, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14977, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=148285, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13441]={ + ["next_chapter"]=13442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2592, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=149768, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15127, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=149768, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13442]={ + ["next_chapter"]=13443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7861, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=151266, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15278, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=151266, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13443]={ + ["next_chapter"]=13444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=152778, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15431, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=152778, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13444]={ + ["next_chapter"]=13445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7873, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2598, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=154306, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15585, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=154306, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13445]={ + ["next_chapter"]=13446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=155849, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15741, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=155849, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13446]={ + ["next_chapter"]=13447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7885, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2602, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=157408, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15898, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=157408, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13447]={ + ["next_chapter"]=13448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2604, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=158982, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16057, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=158982, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13448]={ + ["next_chapter"]=13449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2606, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=160572, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16218, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=160572, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13449]={ + ["next_chapter"]=13450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=162177, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16380, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=162177, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=15656, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1344, + ["unit"]=0 + } + }, + [13450]={ + ["next_chapter"]=13451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=7909, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2610, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=163799, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16544, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=163799, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13451]={ + ["next_chapter"]=13452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=165437, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16709, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=165437, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13452]={ + ["next_chapter"]=13453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7921, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2614, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=167092, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16876, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=167092, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13453]={ + ["next_chapter"]=13454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7927, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2616, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=168762, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17045, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=168762, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13454]={ + ["next_chapter"]=13455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7933, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2618, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=170450, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17215, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=170450, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13455]={ + ["next_chapter"]=13456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7939, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=172155, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17388, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=172155, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13456]={ + ["next_chapter"]=13457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=173876, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17561, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=173876, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13457]={ + ["next_chapter"]=13458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7951, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2624, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=175615, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17737, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=175615, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13458]={ + ["next_chapter"]=13459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7957, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2626, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=177371, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17914, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=177371, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13459]={ + ["next_chapter"]=13460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7963, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=179145, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18094, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=179145, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=17294, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1345, + ["unit"]=0 + } + }, + [13460]={ + ["next_chapter"]=13461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=7969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2630, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=180936, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18275, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=180936, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13461]={ + ["next_chapter"]=13462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2632, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=182746, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18457, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=182746, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13462]={ + ["next_chapter"]=13463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2634, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=184573, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18642, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=184573, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13463]={ + ["next_chapter"]=13464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2636, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=186419, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18828, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=186419, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13464]={ + ["next_chapter"]=13465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7993, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2638, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=188283, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19017, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=188283, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13465]={ + ["next_chapter"]=13466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=7999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2640, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=190166, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19207, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=190166, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13466]={ + ["next_chapter"]=13467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=192067, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19399, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=192067, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13467]={ + ["next_chapter"]=13468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=193988, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19593, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=193988, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13468]={ + ["next_chapter"]=13469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=195928, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19789, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=195928, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13469]={ + ["next_chapter"]=13470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8023, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2648, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=197887, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19987, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=197887, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=19104, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1346, + ["unit"]=0 + } + }, + [13470]={ + ["next_chapter"]=13471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=8029, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2650, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=199866, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20186, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=199866, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13471]={ + ["next_chapter"]=13472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8035, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2652, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=201865, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20388, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=201865, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13472]={ + ["next_chapter"]=13473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=203883, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20592, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=203883, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13473]={ + ["next_chapter"]=13474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=205922, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20798, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=205922, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13474]={ + ["next_chapter"]=13475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8053, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=207982, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21006, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=207982, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13475]={ + ["next_chapter"]=13476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2660, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=210061, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21216, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=210061, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13476]={ + ["next_chapter"]=13477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8065, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2662, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=212162, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21428, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=212162, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13477]={ + ["next_chapter"]=13478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8071, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2664, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=214284, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21643, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=214284, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13478]={ + ["next_chapter"]=13479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=216426, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21859, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=216426, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13479]={ + ["next_chapter"]=13480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8084, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2668, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=218591, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22078, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=218591, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=21102, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1347, + ["unit"]=0 + } + }, + [13480]={ + ["next_chapter"]=13481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=8090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2670, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=220777, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22298, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=220777, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13481]={ + ["next_chapter"]=13482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2672, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=222984, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22521, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=222984, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13482]={ + ["next_chapter"]=13483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8102, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=225214, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22747, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=225214, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13483]={ + ["next_chapter"]=13484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=227466, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22974, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=227466, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13484]={ + ["next_chapter"]=13485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8114, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2678, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=229741, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23204, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=229741, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13485]={ + ["next_chapter"]=13486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2680, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=232038, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23436, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=232038, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13486]={ + ["next_chapter"]=13487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8126, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=234359, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23670, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=234359, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13487]={ + ["next_chapter"]=13488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=236702, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23907, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=236702, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13488]={ + ["next_chapter"]=13489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8138, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2686, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=239069, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24146, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=239069, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13489]={ + ["next_chapter"]=13490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2688, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=241460, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24387, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=241460, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=23310, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1348, + ["unit"]=0 + } + }, + [13490]={ + ["next_chapter"]=13491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=8151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=243875, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24631, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=243875, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13491]={ + ["next_chapter"]=13492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2692, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=246313, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24878, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=246313, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13492]={ + ["next_chapter"]=13493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=248777, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25126, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=248777, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13493]={ + ["next_chapter"]=13494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8169, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2696, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=251264, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25378, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=251264, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13494]={ + ["next_chapter"]=13495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=253777, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25631, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=253777, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13495]={ + ["next_chapter"]=13496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8181, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2700, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=256315, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25888, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=256315, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13496]={ + ["next_chapter"]=13497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8187, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2702, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=258878, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26147, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=258878, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13497]={ + ["next_chapter"]=13498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=261467, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26408, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=261467, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13498]={ + ["next_chapter"]=13499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8200, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=264081, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26672, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=264081, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13499]={ + ["next_chapter"]=13500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8206, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2708, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=266722, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26939, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=266722, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=25749, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1349, + ["unit"]=0 + } + }, + [13500]={ + ["next_chapter"]=13501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=8212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=269389, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27208, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=269389, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13501]={ + ["next_chapter"]=13502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8218, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2712, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=272083, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27480, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=272083, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13502]={ + ["next_chapter"]=13503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=274804, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27755, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=274804, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13503]={ + ["next_chapter"]=13504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8230, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=277552, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28033, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=277552, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13504]={ + ["next_chapter"]=13505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2718, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=280328, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28313, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=280328, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13505]={ + ["next_chapter"]=13506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2720, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=283131, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28596, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=283131, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13506]={ + ["next_chapter"]=13507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8249, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=285962, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28882, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=285962, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13507]={ + ["next_chapter"]=13508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2724, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=288822, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29171, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=288822, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13508]={ + ["next_chapter"]=13509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2726, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=291710, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29463, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=291710, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13509]={ + ["next_chapter"]=13510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2728, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=294627, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29757, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=294627, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=28443, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + [13510]={ + ["next_chapter"]=13511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=8274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=297573, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30055, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=297573, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13511]={ + ["next_chapter"]=13512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2732, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=300549, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30355, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=300549, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13512]={ + ["next_chapter"]=13513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=303555, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30659, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=303555, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13513]={ + ["next_chapter"]=13514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8292, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2736, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=306590, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30966, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=306590, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13514]={ + ["next_chapter"]=13515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8298, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2738, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=309656, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31275, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=309656, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13515]={ + ["next_chapter"]=13516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8305, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=312753, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31588, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=312753, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13516]={ + ["next_chapter"]=13517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=315880, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31904, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=315880, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13517]={ + ["next_chapter"]=13518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2745, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=319039, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32223, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=319039, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13518]={ + ["next_chapter"]=13519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=322229, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32545, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=322229, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13519]={ + ["next_chapter"]=13520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8329, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2749, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=325452, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32871, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=325452, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=31418, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1351, + ["unit"]=0 + } + }, + [13520]={ + ["next_chapter"]=13521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=8335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=328706, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33199, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=328706, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13521]={ + ["next_chapter"]=13522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=331993, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33531, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=331993, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13522]={ + ["next_chapter"]=13523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=335313, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33867, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=335313, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13523]={ + ["next_chapter"]=13524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8354, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=338666, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34205, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=338666, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13524]={ + ["next_chapter"]=13525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2759, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=342053, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34547, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=342053, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13525]={ + ["next_chapter"]=13526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2761, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=345474, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34893, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=345474, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13526]={ + ["next_chapter"]=13527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8373, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=348928, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35242, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=348928, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13527]={ + ["next_chapter"]=13528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2765, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=352418, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35594, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=352418, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13528]={ + ["next_chapter"]=13529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8385, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2767, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=355942, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35950, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=355942, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13529]={ + ["next_chapter"]=13530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8391, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=359501, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36310, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=359501, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=34705, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1352, + ["unit"]=0 + } + }, + [13530]={ + ["next_chapter"]=13531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=8398, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2771, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=363096, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36673, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=363096, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13531]={ + ["next_chapter"]=13532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8404, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2773, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=366727, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37039, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=366727, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13532]={ + ["next_chapter"]=13533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=370394, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37410, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=370394, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13533]={ + ["next_chapter"]=13534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2777, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=374098, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37784, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=374098, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13534]={ + ["next_chapter"]=13535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8423, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=377839, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38162, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=377839, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13535]={ + ["next_chapter"]=13536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8429, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2782, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=381618, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38543, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=381618, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13536]={ + ["next_chapter"]=13537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=385434, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38929, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=385434, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13537]={ + ["next_chapter"]=13538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8441, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2786, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=389288, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39318, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=389288, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13538]={ + ["next_chapter"]=13539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8448, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2788, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=393181, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39711, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=393181, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13539]={ + ["next_chapter"]=13540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8454, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2790, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=397113, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40108, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=397113, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=38336, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1353, + ["unit"]=0 + } + }, + [13540]={ + ["next_chapter"]=13541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=8460, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=401084, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40509, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=401084, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13541]={ + ["next_chapter"]=13542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2794, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=405095, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40915, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=405095, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13542]={ + ["next_chapter"]=13543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8473, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=409146, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41324, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=409146, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13543]={ + ["next_chapter"]=13544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2798, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=413237, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41737, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=413237, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13544]={ + ["next_chapter"]=13545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8485, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2800, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=417370, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42154, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=417370, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13545]={ + ["next_chapter"]=13546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8492, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=421543, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42576, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=421543, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13546]={ + ["next_chapter"]=13547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2804, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=425759, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43002, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=425759, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13547]={ + ["next_chapter"]=13548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8504, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=430016, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43432, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=430016, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13548]={ + ["next_chapter"]=13549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2808, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=434317, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43866, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=434317, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13549]={ + ["next_chapter"]=13550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=438660, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44305, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=438660, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=42347, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1354, + ["unit"]=0 + } + }, + [13550]={ + ["next_chapter"]=13551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=8523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2813, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=443046, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44748, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=443046, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13551]={ + ["next_chapter"]=13552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2815, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=447477, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45195, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=447477, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13552]={ + ["next_chapter"]=13553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8536, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=451952, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45647, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=451952, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13553]={ + ["next_chapter"]=13554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=456471, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46104, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=456471, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13554]={ + ["next_chapter"]=13555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8548, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=461036, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46565, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=461036, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13555]={ + ["next_chapter"]=13556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8555, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=465646, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47030, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=465646, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13556]={ + ["next_chapter"]=13557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8561, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=470303, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47501, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=470303, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13557]={ + ["next_chapter"]=13558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=475006, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47976, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=475006, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13558]={ + ["next_chapter"]=13559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8574, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=479756, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48455, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=479756, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13559]={ + ["next_chapter"]=13560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8580, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2831, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=484553, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48940, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=484553, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=46778, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1355, + ["unit"]=0 + } + }, + [13560]={ + ["next_chapter"]=13561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=8586, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=489399, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49429, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=489399, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13561]={ + ["next_chapter"]=13562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2836, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=494293, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49924, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=494293, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13562]={ + ["next_chapter"]=13563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2838, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=499236, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50423, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=499236, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13563]={ + ["next_chapter"]=13564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2840, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=504228, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50927, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=504228, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13564]={ + ["next_chapter"]=13565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8612, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2842, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=509270, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51436, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=509270, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13565]={ + ["next_chapter"]=13566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8618, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2844, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=514363, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51951, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=514363, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13566]={ + ["next_chapter"]=13567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=519507, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52470, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=519507, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13567]={ + ["next_chapter"]=13568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=524702, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52995, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=524702, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13568]={ + ["next_chapter"]=13569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2850, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=529949, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53525, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=529949, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13569]={ + ["next_chapter"]=13570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2852, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=535248, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54060, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=535248, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=51672, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1356, + ["unit"]=0 + } + }, + [13570]={ + ["next_chapter"]=13571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=8650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2854, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=540601, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54601, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=540601, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13571]={ + ["next_chapter"]=13572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=546007, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55147, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=546007, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13572]={ + ["next_chapter"]=13573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2859, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=551467, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55698, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=551467, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13573]={ + ["next_chapter"]=13574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8669, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=556981, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56255, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=556981, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13574]={ + ["next_chapter"]=13575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2863, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=562551, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56818, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=562551, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13575]={ + ["next_chapter"]=13576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8681, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=568177, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57386, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=568177, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13576]={ + ["next_chapter"]=13577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2867, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=573859, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57960, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=573859, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13577]={ + ["next_chapter"]=13578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8694, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2869, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=579597, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58539, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=579597, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13578]={ + ["next_chapter"]=13579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8701, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=585393, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59125, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=585393, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13579]={ + ["next_chapter"]=13580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=591247, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59716, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=591247, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=57078, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1357, + ["unit"]=0 + } + }, + [13580]={ + ["next_chapter"]=13581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=8713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2875, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=597160, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60313, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=597160, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13581]={ + ["next_chapter"]=13582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=603131, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60916, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=603131, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13582]={ + ["next_chapter"]=13583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8726, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=609162, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61525, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=609162, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13583]={ + ["next_chapter"]=13584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8733, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=615254, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62141, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=615254, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13584]={ + ["next_chapter"]=13585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2884, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=621407, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62762, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=621407, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13585]={ + ["next_chapter"]=13586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8745, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2886, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=627621, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63390, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=627621, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13586]={ + ["next_chapter"]=13587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=633897, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64024, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=633897, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13587]={ + ["next_chapter"]=13588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8758, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=640236, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64664, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=640236, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13588]={ + ["next_chapter"]=13589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8765, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2892, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=646638, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65310, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=646638, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13589]={ + ["next_chapter"]=13590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8771, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2894, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=653105, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65964, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=653105, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=63049, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1358, + ["unit"]=0 + } + }, + [13590]={ + ["next_chapter"]=13591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=8777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2897, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=659636, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66623, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=659636, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13591]={ + ["next_chapter"]=13592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2899, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=666232, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67289, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=666232, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13592]={ + ["next_chapter"]=13593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2901, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=672894, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67962, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=672894, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13593]={ + ["next_chapter"]=13594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8797, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2903, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=679623, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68642, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=679623, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13594]={ + ["next_chapter"]=13595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=686419, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69328, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=686419, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13595]={ + ["next_chapter"]=13596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2907, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=693284, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70022, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=693284, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13596]={ + ["next_chapter"]=13597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8816, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=700216, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70722, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=700216, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13597]={ + ["next_chapter"]=13598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8823, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2911, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=707219, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71429, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=707219, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13598]={ + ["next_chapter"]=13599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8829, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2914, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=714291, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72143, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=714291, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13599]={ + ["next_chapter"]=13600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2916, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=721434, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72865, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=721434, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=69646, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1359, + ["unit"]=0 + } + }, + [13600]={ + ["next_chapter"]=13601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=8842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2918, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=728648, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73593, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=728648, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13601]={ + ["next_chapter"]=13602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=735935, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74329, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=735935, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13602]={ + ["next_chapter"]=13603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2922, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=743294, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75073, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=743294, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13603]={ + ["next_chapter"]=13604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8861, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2924, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=750727, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75823, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=750727, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13604]={ + ["next_chapter"]=13605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2926, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=758234, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76582, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=758234, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13605]={ + ["next_chapter"]=13606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=765816, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77347, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=765816, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13606]={ + ["next_chapter"]=13607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=773475, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78121, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=773475, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13607]={ + ["next_chapter"]=13608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=781209, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78902, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=781209, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13608]={ + ["next_chapter"]=13609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8894, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=789021, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79691, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=789021, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13609]={ + ["next_chapter"]=13610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=796912, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80488, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=796912, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=76932, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + [13610]={ + ["next_chapter"]=13611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=8907, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2939, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=804881, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81293, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=804881, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13611]={ + ["next_chapter"]=13612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8913, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=812930, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82106, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=812930, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13612]={ + ["next_chapter"]=13613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=821059, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82927, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=821059, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13613]={ + ["next_chapter"]=13614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2946, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=829269, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83756, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=829269, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13614]={ + ["next_chapter"]=13615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8933, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2948, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=837562, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84594, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=837562, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13615]={ + ["next_chapter"]=13616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8939, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2950, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=845938, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85440, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=845938, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13616]={ + ["next_chapter"]=13617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8946, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2952, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=854397, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86294, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=854397, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13617]={ + ["next_chapter"]=13618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2954, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=862941, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87157, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=862941, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13618]={ + ["next_chapter"]=13619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8959, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2956, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=871571, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88029, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=871571, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13619]={ + ["next_chapter"]=13620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8965, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2958, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=880286, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88909, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=880286, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=84981, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1361, + ["unit"]=0 + } + }, + [13620]={ + ["next_chapter"]=13621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=8972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2961, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=889089, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89798, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=889089, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13621]={ + ["next_chapter"]=13622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2963, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=897980, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90696, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=897980, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13622]={ + ["next_chapter"]=13623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2965, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=906960, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91603, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=906960, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13623]={ + ["next_chapter"]=13624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8991, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=916029, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92519, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=916029, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13624]={ + ["next_chapter"]=13625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=8998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2969, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=925190, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93444, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=925190, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13625]={ + ["next_chapter"]=13626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9004, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2971, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=934442, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94379, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=934442, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13626]={ + ["next_chapter"]=13627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=943786, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95322, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=943786, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13627]={ + ["next_chapter"]=13628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=953224, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96276, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=953224, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13628]={ + ["next_chapter"]=13629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2978, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=962756, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97238, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=962756, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13629]={ + ["next_chapter"]=13630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2980, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=972384, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98211, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=972384, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=93872, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1362, + ["unit"]=0 + } + }, + [13630]={ + ["next_chapter"]=13631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=9037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2982, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=982108, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99193, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=982108, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13631]={ + ["next_chapter"]=13632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=991929, + ["unit"]=18 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100185, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=991929, + ["unit"]=18 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13632]={ + ["next_chapter"]=13633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9050, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2987, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1002, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101187, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1002, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13633]={ + ["next_chapter"]=13634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2989, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1012, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102199, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1012, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13634]={ + ["next_chapter"]=13635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1022, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103220, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1022, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13635]={ + ["next_chapter"]=13636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2993, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1032, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104253, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1032, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13636]={ + ["next_chapter"]=13637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2995, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1043, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105295, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1043, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13637]={ + ["next_chapter"]=13638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=2997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1053, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106348, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1053, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13638]={ + ["next_chapter"]=13639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9089, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3000, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1063, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107412, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1063, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13639]={ + ["next_chapter"]=13640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1074, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108486, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1074, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=103693, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1363, + ["unit"]=0 + } + }, + [13640]={ + ["next_chapter"]=13641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=9103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1085, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109571, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1085, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13641]={ + ["next_chapter"]=13642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9109, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1096, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110666, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1096, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13642]={ + ["next_chapter"]=13643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3008, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1107, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111773, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1107, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13643]={ + ["next_chapter"]=13644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3010, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1118, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112891, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1118, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13644]={ + ["next_chapter"]=13645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3013, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1129, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114020, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1129, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13645]={ + ["next_chapter"]=13646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9136, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3015, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1140, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115160, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13646]={ + ["next_chapter"]=13647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1152, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116311, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1152, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13647]={ + ["next_chapter"]=13648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9149, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1163, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117475, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1163, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13648]={ + ["next_chapter"]=13649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3021, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1175, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118649, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1175, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13649]={ + ["next_chapter"]=13650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3023, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1186, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119836, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1186, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=114542, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1364, + ["unit"]=0 + } + }, + [13650]={ + ["next_chapter"]=13651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=9169, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3026, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1198, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121034, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1198, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13651]={ + ["next_chapter"]=13652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1210, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122244, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13652]={ + ["next_chapter"]=13653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1222, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123467, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1222, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13653]={ + ["next_chapter"]=13654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3032, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1235, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124702, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1235, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13654]={ + ["next_chapter"]=13655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3034, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1247, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125949, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1247, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13655]={ + ["next_chapter"]=13656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1259, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127208, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1259, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13656]={ + ["next_chapter"]=13657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3039, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1272, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128480, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1272, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13657]={ + ["next_chapter"]=13658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3041, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1285, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129765, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1285, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13658]={ + ["next_chapter"]=13659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9222, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1298, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131063, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1298, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13659]={ + ["next_chapter"]=13660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9228, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3045, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1311, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132373, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1311, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=126525, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1365, + ["unit"]=0 + } + }, + [13660]={ + ["next_chapter"]=13661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=9235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3048, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1324, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133697, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1324, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13661]={ + ["next_chapter"]=13662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3050, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1337, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135034, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1337, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13662]={ + ["next_chapter"]=13663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9248, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3052, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1350, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136384, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1350, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13663]={ + ["next_chapter"]=13664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1364, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137748, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1364, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13664]={ + ["next_chapter"]=13665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1377, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139126, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1377, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13665]={ + ["next_chapter"]=13666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3058, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1391, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140517, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1391, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13666]={ + ["next_chapter"]=13667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9275, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1405, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141922, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1405, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13667]={ + ["next_chapter"]=13668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1419, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143341, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1419, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13668]={ + ["next_chapter"]=13669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9288, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3065, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1433, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144775, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1433, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13669]={ + ["next_chapter"]=13670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1448, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146222, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1448, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=139762, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1366, + ["unit"]=0 + } + }, + [13670]={ + ["next_chapter"]=13671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=9301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1462, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147685, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1462, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13671]={ + ["next_chapter"]=13672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9308, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3072, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1477, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149161, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1477, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13672]={ + ["next_chapter"]=13673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1492, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150653, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1492, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13673]={ + ["next_chapter"]=13674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9322, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3076, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1507, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152160, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1507, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13674]={ + ["next_chapter"]=13675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9328, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3078, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1522, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153681, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1522, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13675]={ + ["next_chapter"]=13676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3081, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1537, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155218, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1537, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13676]={ + ["next_chapter"]=13677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1552, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156770, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1552, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13677]={ + ["next_chapter"]=13678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1568, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158338, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1568, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13678]={ + ["next_chapter"]=13679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9355, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1583, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159921, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1583, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13679]={ + ["next_chapter"]=13680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3089, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1599, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161521, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1599, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=154385, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1367, + ["unit"]=0 + } + }, + [13680]={ + ["next_chapter"]=13681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=9368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3092, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1615, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163136, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1615, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13681]={ + ["next_chapter"]=13682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3094, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1631, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164767, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1631, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13682]={ + ["next_chapter"]=13683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1648, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166415, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1648, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13683]={ + ["next_chapter"]=13684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1664, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168079, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1664, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13684]={ + ["next_chapter"]=13685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9395, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3100, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1681, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169760, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1681, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13685]={ + ["next_chapter"]=13686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1698, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171457, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1698, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13686]={ + ["next_chapter"]=13687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3105, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1715, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173172, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1715, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13687]={ + ["next_chapter"]=13688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1732, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174904, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1732, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13688]={ + ["next_chapter"]=13689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9422, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3109, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1749, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176653, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1749, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13689]={ + ["next_chapter"]=13690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9429, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1767, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178419, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1767, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=170537, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1368, + ["unit"]=0 + } + }, + [13690]={ + ["next_chapter"]=13691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=9436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3114, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1784, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180203, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1784, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13691]={ + ["next_chapter"]=13692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9442, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3116, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1802, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182005, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1802, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13692]={ + ["next_chapter"]=13693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9449, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3118, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1820, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183825, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13693]={ + ["next_chapter"]=13694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3120, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1838, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185664, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1838, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13694]={ + ["next_chapter"]=13695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1857, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187520, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1857, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13695]={ + ["next_chapter"]=13696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3125, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1875, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189396, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1875, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13696]={ + ["next_chapter"]=13697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1894, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191289, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1894, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13697]={ + ["next_chapter"]=13698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1913, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193202, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1913, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13698]={ + ["next_chapter"]=13699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9490, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1932, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195134, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1932, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13699]={ + ["next_chapter"]=13700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3134, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1951, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197086, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1951, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=188379, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1369, + ["unit"]=0 + } + }, + [13700]={ + ["next_chapter"]=13701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=9503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3136, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1971, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199057, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1971, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13701]={ + ["next_chapter"]=13702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3138, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1991, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201047, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=1991, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13702]={ + ["next_chapter"]=13703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3141, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2010, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203058, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2010, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13703]={ + ["next_chapter"]=13704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9524, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3143, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2031, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205088, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2031, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13704]={ + ["next_chapter"]=13705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3145, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2051, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207139, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2051, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13705]={ + ["next_chapter"]=13706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3147, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2071, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209210, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2071, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13706]={ + ["next_chapter"]=13707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9544, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2092, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211303, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2092, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13707]={ + ["next_chapter"]=13708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9551, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3152, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2113, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213416, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2113, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13708]={ + ["next_chapter"]=13709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9558, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2134, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215550, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2134, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13709]={ + ["next_chapter"]=13710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9564, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2155, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217705, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2155, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=208087, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + [13710]={ + ["next_chapter"]=13711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=9571, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2177, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219882, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2177, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13711]={ + ["next_chapter"]=13712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3161, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2199, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222081, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2199, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13712]={ + ["next_chapter"]=13713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2221, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224302, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2221, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13713]={ + ["next_chapter"]=13714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9592, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2243, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226545, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2243, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13714]={ + ["next_chapter"]=13715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9598, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2265, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228810, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2265, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13715]={ + ["next_chapter"]=13716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3170, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2288, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231099, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2288, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13716]={ + ["next_chapter"]=13717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9612, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3172, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2311, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233410, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2311, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13717]={ + ["next_chapter"]=13718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9619, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3174, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2334, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235744, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2334, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13718]={ + ["next_chapter"]=13719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9626, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2357, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238101, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2357, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13719]={ + ["next_chapter"]=13720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3179, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2381, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240482, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2381, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=229858, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1371, + ["unit"]=0 + } + }, + [13720]={ + ["next_chapter"]=13721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=9639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2405, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242887, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2405, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13721]={ + ["next_chapter"]=13722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9646, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2429, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245316, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2429, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13722]={ + ["next_chapter"]=13723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9653, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2453, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247769, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2453, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13723]={ + ["next_chapter"]=13724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3188, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2478, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250247, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2478, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13724]={ + ["next_chapter"]=13725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9667, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2502, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=252749, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2502, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13725]={ + ["next_chapter"]=13726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9674, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3192, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2527, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255277, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2527, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13726]={ + ["next_chapter"]=13727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9680, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3195, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2553, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257829, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2553, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13727]={ + ["next_chapter"]=13728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9687, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3197, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2578, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260408, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2578, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13728]={ + ["next_chapter"]=13729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9694, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2604, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263012, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2604, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13729]={ + ["next_chapter"]=13730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9701, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3201, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2630, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265642, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2630, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=253906, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1372, + ["unit"]=0 + } + }, + [13730]={ + ["next_chapter"]=13731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=9708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2656, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268298, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2656, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13731]={ + ["next_chapter"]=13732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9715, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2683, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270981, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2683, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13732]={ + ["next_chapter"]=13733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9722, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3208, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2710, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=273691, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2710, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13733]={ + ["next_chapter"]=13734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9729, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3210, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2737, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=276428, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2737, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13734]={ + ["next_chapter"]=13735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9735, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3213, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2764, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279192, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2764, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13735]={ + ["next_chapter"]=13736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2792, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281984, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2792, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13736]={ + ["next_chapter"]=13737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2820, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=284804, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2820, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13737]={ + ["next_chapter"]=13738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2848, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287652, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2848, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13738]={ + ["next_chapter"]=13739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2877, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=290529, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2877, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13739]={ + ["next_chapter"]=13740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3224, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2905, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293434, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2905, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=280470, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1373, + ["unit"]=0 + } + }, + [13740]={ + ["next_chapter"]=13741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=9777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3226, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2934, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296368, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2934, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13741]={ + ["next_chapter"]=13742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3229, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2964, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299332, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2964, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13742]={ + ["next_chapter"]=13743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9791, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2993, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302325, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=2993, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13743]={ + ["next_chapter"]=13744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3233, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3023, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305348, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3023, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13744]={ + ["next_chapter"]=13745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9804, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3235, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3053, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308402, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3053, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13745]={ + ["next_chapter"]=13746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3084, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=311486, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3084, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13746]={ + ["next_chapter"]=13747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9818, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3240, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3115, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=314601, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3115, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13747]={ + ["next_chapter"]=13748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3242, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3146, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=317747, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3146, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13748]={ + ["next_chapter"]=13749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3177, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320924, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3177, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13749]={ + ["next_chapter"]=13750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9839, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3209, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=324133, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3209, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=309814, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1374, + ["unit"]=0 + } + }, + [13750]={ + ["next_chapter"]=13751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=9846, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3249, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3241, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=327375, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3241, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13751]={ + ["next_chapter"]=13752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9853, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3251, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3274, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=330649, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3274, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13752]={ + ["next_chapter"]=13753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3306, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=333955, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3306, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13753]={ + ["next_chapter"]=13754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3340, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=337295, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3340, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13754]={ + ["next_chapter"]=13755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3258, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3373, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=340668, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3373, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13755]={ + ["next_chapter"]=13756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3407, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=344074, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3407, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13756]={ + ["next_chapter"]=13757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9888, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3263, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3441, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=347515, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3441, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13757]={ + ["next_chapter"]=13758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3475, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350990, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3475, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13758]={ + ["next_chapter"]=13759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9902, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3510, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354500, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3510, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13759]={ + ["next_chapter"]=13760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9909, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3545, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358045, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3545, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=342227, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1375, + ["unit"]=0 + } + }, + [13760]={ + ["next_chapter"]=13761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=9916, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3580, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=361625, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3580, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13761]={ + ["next_chapter"]=13762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9922, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3274, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3616, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=365242, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3616, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13762]={ + ["next_chapter"]=13763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9929, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3277, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3652, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=368894, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3652, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13763]={ + ["next_chapter"]=13764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3689, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=372583, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3689, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13764]={ + ["next_chapter"]=13765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3726, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=376309, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3726, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13765]={ + ["next_chapter"]=13766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3763, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=380072, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3763, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13766]={ + ["next_chapter"]=13767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9957, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3286, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3801, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=383873, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3801, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13767]={ + ["next_chapter"]=13768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9964, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3839, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=387711, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3839, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13768]={ + ["next_chapter"]=13769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9971, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3877, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=391589, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3877, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13769]={ + ["next_chapter"]=13770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3293, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3916, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=395504, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3916, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=378031, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1376, + ["unit"]=0 + } + }, + [13770]={ + ["next_chapter"]=13771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=9985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3955, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=399459, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3955, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13771]={ + ["next_chapter"]=13772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9992, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3995, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=403454, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=3995, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13772]={ + ["next_chapter"]=13773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=9999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3300, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4035, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=407489, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4035, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13773]={ + ["next_chapter"]=13774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3302, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4075, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=411564, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4075, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13774]={ + ["next_chapter"]=13775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10013, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4116, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=415679, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4116, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13775]={ + ["next_chapter"]=13776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3307, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4157, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=419836, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4157, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13776]={ + ["next_chapter"]=13777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3309, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4198, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=424034, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4198, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13777]={ + ["next_chapter"]=13778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10034, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4240, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=428275, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4240, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13778]={ + ["next_chapter"]=13779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4283, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=432557, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4283, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13779]={ + ["next_chapter"]=13780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3316, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4326, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436883, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4326, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=417582, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1377, + ["unit"]=0 + } + }, + [13780]={ + ["next_chapter"]=13781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=10056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3318, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4369, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=441252, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4369, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13781]={ + ["next_chapter"]=13782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3321, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4413, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=445664, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4413, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13782]={ + ["next_chapter"]=13783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4457, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=450121, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4457, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13783]={ + ["next_chapter"]=13784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4501, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=454622, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4501, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13784]={ + ["next_chapter"]=13785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10084, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4546, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=459168, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4546, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13785]={ + ["next_chapter"]=13786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10091, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4592, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=463760, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4592, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13786]={ + ["next_chapter"]=13787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3332, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4638, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=468398, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4638, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13787]={ + ["next_chapter"]=13788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4684, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=473082, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4684, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13788]={ + ["next_chapter"]=13789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10112, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4731, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=477812, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4731, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13789]={ + ["next_chapter"]=13790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4778, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=482591, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4778, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=461270, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1378, + ["unit"]=0 + } + }, + [13790]={ + ["next_chapter"]=13791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=10126, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3342, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4826, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=487416, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4826, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13791]={ + ["next_chapter"]=13792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10133, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3344, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4874, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=492291, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4874, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13792]={ + ["next_chapter"]=13793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4923, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=497214, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4923, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13793]={ + ["next_chapter"]=13794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10147, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3349, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4972, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=502186, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=4972, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13794]={ + ["next_chapter"]=13795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10154, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5022, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=507208, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5022, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13795]={ + ["next_chapter"]=13796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5072, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=512280, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5072, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13796]={ + ["next_chapter"]=13797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10169, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5123, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=517402, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5123, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13797]={ + ["next_chapter"]=13798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3358, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5174, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=522576, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5174, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13798]={ + ["next_chapter"]=13799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5226, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=527802, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5226, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13799]={ + ["next_chapter"]=13800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10190, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3363, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5278, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=533080, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5278, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=509529, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1379, + ["unit"]=0 + } + }, + [13800]={ + ["next_chapter"]=13801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=10197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5331, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=538411, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5331, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13801]={ + ["next_chapter"]=13802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5384, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=543795, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5384, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13802]={ + ["next_chapter"]=13803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5438, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=549233, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5438, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13803]={ + ["next_chapter"]=13804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10218, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3372, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5492, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=554725, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5492, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13804]={ + ["next_chapter"]=13805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5547, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=560273, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5547, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13805]={ + ["next_chapter"]=13806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10232, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3377, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5603, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=565875, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5603, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13806]={ + ["next_chapter"]=13807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3379, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5659, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=571534, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5659, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13807]={ + ["next_chapter"]=13808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10247, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5715, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=577250, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5715, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13808]={ + ["next_chapter"]=13809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5772, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=583022, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5772, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13809]={ + ["next_chapter"]=13810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3386, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5830, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=588852, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5830, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=562837, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + [13810]={ + ["next_chapter"]=13811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=10268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5889, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=594741, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5889, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13811]={ + ["next_chapter"]=13812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10275, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3391, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5947, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=600688, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=5947, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13812]={ + ["next_chapter"]=13813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10282, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3393, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6007, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=606695, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6007, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13813]={ + ["next_chapter"]=13814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3396, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6067, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=612762, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6067, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13814]={ + ["next_chapter"]=13815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10297, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6128, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=618890, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6128, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13815]={ + ["next_chapter"]=13816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3400, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6189, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=625079, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6189, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13816]={ + ["next_chapter"]=13817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6251, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=631329, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6251, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13817]={ + ["next_chapter"]=13818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10318, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6313, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=637643, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6313, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13818]={ + ["next_chapter"]=13819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3407, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6376, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=644019, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6376, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13819]={ + ["next_chapter"]=13820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3410, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6440, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=650459, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6440, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=621722, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1381, + ["unit"]=0 + } + }, + [13820]={ + ["next_chapter"]=13821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=10340, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6505, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=656964, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6505, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13821]={ + ["next_chapter"]=13822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3414, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6570, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=663533, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6570, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13822]={ + ["next_chapter"]=13823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10354, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6635, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=670169, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6635, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13823]={ + ["next_chapter"]=13824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10361, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3419, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6702, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=676870, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6702, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13824]={ + ["next_chapter"]=13825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3422, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6769, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=683639, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6769, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13825]={ + ["next_chapter"]=13826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3424, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6836, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=690476, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6836, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13826]={ + ["next_chapter"]=13827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3426, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6905, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=697380, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6905, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13827]={ + ["next_chapter"]=13828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3429, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6974, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=704354, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=6974, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13828]={ + ["next_chapter"]=13829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10397, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3431, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7044, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=711398, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7044, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13829]={ + ["next_chapter"]=13830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10404, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7114, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=718512, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7114, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=686768, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1382, + ["unit"]=0 + } + }, + [13830]={ + ["next_chapter"]=13831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=10411, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3436, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7185, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=725697, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7185, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13831]={ + ["next_chapter"]=13832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3438, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7257, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=732954, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7257, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13832]={ + ["next_chapter"]=13833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10426, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3441, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7330, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=740283, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7330, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13833]={ + ["next_chapter"]=13834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3443, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7403, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=747686, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7403, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13834]={ + ["next_chapter"]=13835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10440, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7477, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=755163, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7477, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13835]={ + ["next_chapter"]=13836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3448, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7552, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=762715, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7552, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13836]={ + ["next_chapter"]=13837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7627, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=770342, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7627, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13837]={ + ["next_chapter"]=13838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3452, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7703, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=778045, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7703, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13838]={ + ["next_chapter"]=13839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3455, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7780, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=785826, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7780, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13839]={ + ["next_chapter"]=13840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3457, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7858, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=793684, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7858, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=758619, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1383, + ["unit"]=0 + } + }, + [13840]={ + ["next_chapter"]=13841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=10484, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7937, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=801621, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=7937, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13841]={ + ["next_chapter"]=13842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3462, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8016, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=809637, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8016, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13842]={ + ["next_chapter"]=13843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8096, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=817733, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8096, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13843]={ + ["next_chapter"]=13844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3467, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8177, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=825911, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8177, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13844]={ + ["next_chapter"]=13845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3469, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8259, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=834170, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8259, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13845]={ + ["next_chapter"]=13846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8342, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=842511, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8342, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13846]={ + ["next_chapter"]=13847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3474, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8425, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=850937, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8425, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13847]={ + ["next_chapter"]=13848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10534, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3476, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8509, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=859446, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8509, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13848]={ + ["next_chapter"]=13849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8594, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=868040, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8594, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13849]={ + ["next_chapter"]=13850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3481, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8680, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=876721, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8680, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=837988, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1384, + ["unit"]=0 + } + }, + [13850]={ + ["next_chapter"]=13851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=10556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8767, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=885488, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8767, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13851]={ + ["next_chapter"]=13852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3486, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8855, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=894343, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8855, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13852]={ + ["next_chapter"]=13853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10571, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8943, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=903286, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=8943, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13853]={ + ["next_chapter"]=13854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3491, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9033, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=912319, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9033, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13854]={ + ["next_chapter"]=13855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9123, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=921442, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9123, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13855]={ + ["next_chapter"]=13856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10592, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3495, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9214, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=930657, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9214, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13856]={ + ["next_chapter"]=13857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10600, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3498, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9307, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=939963, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9307, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13857]={ + ["next_chapter"]=13858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9400, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=949363, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9400, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13858]={ + ["next_chapter"]=13859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10614, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9494, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=958857, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9494, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13859]={ + ["next_chapter"]=13860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10622, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9589, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=968445, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9589, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=925660, + ["unit"]=19 + }, + ["grasp_mastery_reward"]={ + ["value"]=1385, + ["unit"]=0 + } + }, + [13860]={ + ["next_chapter"]=13861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=10629, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9684, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=978130, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9684, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13861]={ + ["next_chapter"]=13862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9781, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=987911, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9781, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13862]={ + ["next_chapter"]=13863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3512, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9879, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=997790, + ["unit"]=19 + }, + ["idle_gold"]={ + ["value"]=9879, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13863]={ + ["next_chapter"]=13864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10651, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3515, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9978, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1008, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9978, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13864]={ + ["next_chapter"]=13865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3517, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10078, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1018, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10078, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13865]={ + ["next_chapter"]=13866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10665, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10178, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1028, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10178, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13866]={ + ["next_chapter"]=13867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3522, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10280, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1038, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10280, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13867]={ + ["next_chapter"]=13868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10680, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10383, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1049, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10383, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13868]={ + ["next_chapter"]=13869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10687, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10487, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1059, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10487, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13869]={ + ["next_chapter"]=13870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3529, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10592, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1070, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10592, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1023, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1386, + ["unit"]=0 + } + }, + [13870]={ + ["next_chapter"]=13871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=10702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3532, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10698, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1080, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10698, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13871]={ + ["next_chapter"]=13872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10709, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10805, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1091, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10805, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13872]={ + ["next_chapter"]=13873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3537, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10913, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1102, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=10913, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13873]={ + ["next_chapter"]=13874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3539, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11022, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1113, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11022, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13874]={ + ["next_chapter"]=13875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11132, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1124, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11132, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13875]={ + ["next_chapter"]=13876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11243, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1136, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11243, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13876]={ + ["next_chapter"]=13877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3546, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11356, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1147, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11356, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13877]={ + ["next_chapter"]=13878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3549, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11469, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1158, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11469, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13878]={ + ["next_chapter"]=13879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10761, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3551, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11584, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1170, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11584, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13879]={ + ["next_chapter"]=13880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3553, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11700, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1182, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11700, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1129, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1387, + ["unit"]=0 + } + }, + [13880]={ + ["next_chapter"]=13881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=10776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11817, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1194, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11817, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13881]={ + ["next_chapter"]=13882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10783, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3558, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11935, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1205, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=11935, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13882]={ + ["next_chapter"]=13883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3561, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12054, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1217, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=12054, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13883]={ + ["next_chapter"]=13884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3563, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12175, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1230, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=12175, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13884]={ + ["next_chapter"]=13885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3566, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12297, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1242, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=12297, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13885]={ + ["next_chapter"]=13886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10812, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3568, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12420, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1254, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=12420, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13886]={ + ["next_chapter"]=13887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12544, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1267, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=12544, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13887]={ + ["next_chapter"]=13888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3573, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12669, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1280, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=12669, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13888]={ + ["next_chapter"]=13889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3575, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12796, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1292, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=12796, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13889]={ + ["next_chapter"]=13890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12924, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1305, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=12924, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1248, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1388, + ["unit"]=0 + } + }, + [13890]={ + ["next_chapter"]=13891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=10849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13053, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1318, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=13053, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13891]={ + ["next_chapter"]=13892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3583, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13184, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1332, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=13184, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13892]={ + ["next_chapter"]=13893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10864, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13316, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1345, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=13316, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13893]={ + ["next_chapter"]=13894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10872, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13449, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1358, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=13449, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13894]={ + ["next_chapter"]=13895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3590, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13583, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1372, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=13583, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13895]={ + ["next_chapter"]=13896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3593, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13719, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1386, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=13719, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13896]={ + ["next_chapter"]=13897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10894, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3595, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13856, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1399, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=13856, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13897]={ + ["next_chapter"]=13898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10901, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3597, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13995, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1413, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=13995, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13898]={ + ["next_chapter"]=13899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10909, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14135, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1428, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=14135, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13899]={ + ["next_chapter"]=13900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10916, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3602, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14276, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1442, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=14276, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1378, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1389, + ["unit"]=0 + } + }, + [13900]={ + ["next_chapter"]=13901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=10924, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3605, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14419, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1456, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=14419, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13901]={ + ["next_chapter"]=13902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10931, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14563, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1471, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=14563, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13902]={ + ["next_chapter"]=13903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3610, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14709, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1486, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=14709, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13903]={ + ["next_chapter"]=13904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10946, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14856, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1500, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=14856, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13904]={ + ["next_chapter"]=13905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10953, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3615, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15004, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1515, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=15004, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13905]={ + ["next_chapter"]=13906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15154, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1531, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=15154, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13906]={ + ["next_chapter"]=13907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15306, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1546, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=15306, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13907]={ + ["next_chapter"]=13908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10976, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15459, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1561, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=15459, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13908]={ + ["next_chapter"]=13909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3624, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15614, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1577, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=15614, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13909]={ + ["next_chapter"]=13910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=10991, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3627, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15770, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1593, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=15770, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1522, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + [13910]={ + ["next_chapter"]=13911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=10998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15927, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1609, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=15927, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13911]={ + ["next_chapter"]=13912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3632, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16087, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1625, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=16087, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13912]={ + ["next_chapter"]=13913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11013, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3634, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16247, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1641, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=16247, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13913]={ + ["next_chapter"]=13914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3637, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16410, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1657, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=16410, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13914]={ + ["next_chapter"]=13915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11028, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3639, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16574, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1674, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=16574, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13915]={ + ["next_chapter"]=13916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11035, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16740, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1691, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=16740, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13916]={ + ["next_chapter"]=13917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16907, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1708, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=16907, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13917]={ + ["next_chapter"]=13918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11050, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3647, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17076, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1725, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=17076, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13918]={ + ["next_chapter"]=13919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11058, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17247, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1742, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=17247, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13919]={ + ["next_chapter"]=13920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11065, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3652, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17420, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1759, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=17420, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1682, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1391, + ["unit"]=0 + } + }, + [13920]={ + ["next_chapter"]=13921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=11073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17594, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1777, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=17594, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13921]={ + ["next_chapter"]=13922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3657, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17770, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1795, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=17770, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13922]={ + ["next_chapter"]=13923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17947, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1813, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=17947, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13923]={ + ["next_chapter"]=13924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11095, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3661, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18127, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1831, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=18127, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13924]={ + ["next_chapter"]=13925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3664, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18308, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1849, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=18308, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13925]={ + ["next_chapter"]=13926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11110, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18491, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1868, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=18491, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13926]={ + ["next_chapter"]=13927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11118, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18676, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1886, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=18676, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13927]={ + ["next_chapter"]=13928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11126, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3671, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18863, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1905, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=18863, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13928]={ + ["next_chapter"]=13929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11133, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19051, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1924, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=19051, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13929]={ + ["next_chapter"]=13930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19242, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1943, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=19242, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=1858, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1392, + ["unit"]=0 + } + }, + [13930]={ + ["next_chapter"]=13931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=11148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3679, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19434, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1963, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=19434, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13931]={ + ["next_chapter"]=13932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3681, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19629, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1983, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=19629, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13932]={ + ["next_chapter"]=13933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19825, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2002, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=19825, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13933]={ + ["next_chapter"]=13934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11171, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3686, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20023, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2022, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=20023, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13934]={ + ["next_chapter"]=13935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11178, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3689, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20224, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2043, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=20224, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13935]={ + ["next_chapter"]=13936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11186, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3691, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20426, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2063, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=20426, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13936]={ + ["next_chapter"]=13937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11193, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20630, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2084, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=20630, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13937]={ + ["next_chapter"]=13938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11201, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3696, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20836, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2104, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=20836, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13938]={ + ["next_chapter"]=13939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21045, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2126, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=21045, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13939]={ + ["next_chapter"]=13940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3701, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21255, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2147, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=21255, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2052, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1393, + ["unit"]=0 + } + }, + [13940]={ + ["next_chapter"]=13941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=11224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21468, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2168, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=21468, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13941]={ + ["next_chapter"]=13942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21682, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2190, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=21682, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13942]={ + ["next_chapter"]=13943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3709, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21899, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2212, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=21899, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13943]={ + ["next_chapter"]=13944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3711, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22118, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2234, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=22118, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13944]={ + ["next_chapter"]=13945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22339, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2256, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=22339, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13945]={ + ["next_chapter"]=13946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22563, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2279, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=22563, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13946]={ + ["next_chapter"]=13947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3719, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22788, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2302, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=22788, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13947]={ + ["next_chapter"]=13948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11277, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3721, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23016, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2325, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=23016, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13948]={ + ["next_chapter"]=13949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11284, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3724, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23246, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2348, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=23246, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13949]={ + ["next_chapter"]=13950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11292, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3726, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23479, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2371, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=23479, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2267, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1394, + ["unit"]=0 + } + }, + [13950]={ + ["next_chapter"]=13951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=11300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3729, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23714, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2395, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=23714, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13951]={ + ["next_chapter"]=13952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11307, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3731, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23951, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2419, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=23951, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13952]={ + ["next_chapter"]=13953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24190, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2443, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=24190, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13953]={ + ["next_chapter"]=13954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11322, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3736, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24432, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2468, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=24432, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13954]={ + ["next_chapter"]=13955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24677, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2492, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=24677, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13955]={ + ["next_chapter"]=13956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3741, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24923, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2517, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=24923, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13956]={ + ["next_chapter"]=13957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3744, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25173, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2542, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=25173, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13957]={ + ["next_chapter"]=13958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3746, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25424, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2568, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=25424, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13958]={ + ["next_chapter"]=13959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3749, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25678, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2594, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=25678, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13959]={ + ["next_chapter"]=13960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25935, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2619, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=25935, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1395, + ["unit"]=0 + } + }, + [13960]={ + ["next_chapter"]=13961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=11376, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3754, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26195, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2646, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=26195, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13961]={ + ["next_chapter"]=13962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26457, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2672, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=26457, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13962]={ + ["next_chapter"]=13963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11391, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3759, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26721, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2699, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=26721, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13963]={ + ["next_chapter"]=13964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3762, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26988, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2726, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=26988, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13964]={ + ["next_chapter"]=13965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11406, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27258, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2753, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=27258, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13965]={ + ["next_chapter"]=13966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3767, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27531, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2781, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=27531, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13966]={ + ["next_chapter"]=13967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11422, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27806, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2808, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=27806, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13967]={ + ["next_chapter"]=13968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11429, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3772, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28084, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2837, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=28084, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13968]={ + ["next_chapter"]=13969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11437, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3774, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28365, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2865, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=28365, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13969]={ + ["next_chapter"]=13970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3777, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28649, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2894, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=28649, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=2766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1396, + ["unit"]=0 + } + }, + [13970]={ + ["next_chapter"]=13971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=11452, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28935, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2922, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=28935, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13971]={ + ["next_chapter"]=13972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11460, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3782, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29225, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2952, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=29225, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13972]={ + ["next_chapter"]=13973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29517, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2981, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=29517, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13973]={ + ["next_chapter"]=13974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3787, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29812, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3011, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=29812, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13974]={ + ["next_chapter"]=13975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3789, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30110, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3041, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=30110, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13975]={ + ["next_chapter"]=13976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30411, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3072, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=30411, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13976]={ + ["next_chapter"]=13977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3794, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30715, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3102, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=30715, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13977]={ + ["next_chapter"]=13978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11506, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3797, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31022, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3133, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=31022, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13978]={ + ["next_chapter"]=13979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3800, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31333, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3165, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=31333, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13979]={ + ["next_chapter"]=13980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11521, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31646, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3196, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=31646, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3055, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1397, + ["unit"]=0 + } + }, + [13980]={ + ["next_chapter"]=13981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=11529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3805, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31962, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3228, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=31962, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13981]={ + ["next_chapter"]=13982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3807, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32282, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3260, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=32282, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13982]={ + ["next_chapter"]=13983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3810, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32605, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3293, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=32605, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13983]={ + ["next_chapter"]=13984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11552, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32931, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3326, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=32931, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13984]={ + ["next_chapter"]=13985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3815, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33260, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3359, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=33260, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13985]={ + ["next_chapter"]=13986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11568, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33593, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3393, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=33593, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13986]={ + ["next_chapter"]=13987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33929, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3427, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=33929, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13987]={ + ["next_chapter"]=13988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34268, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3461, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=34268, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13988]={ + ["next_chapter"]=13989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34611, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3496, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=34611, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13989]={ + ["next_chapter"]=13990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3828, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34957, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3531, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=34957, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3375, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1398, + ["unit"]=0 + } + }, + [13990]={ + ["next_chapter"]=13991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=11606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3830, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35306, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3566, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=35306, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13991]={ + ["next_chapter"]=13992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11614, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35659, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3602, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=35659, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13992]={ + ["next_chapter"]=13993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11622, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3835, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36016, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3638, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=36016, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13993]={ + ["next_chapter"]=13994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3838, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36376, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3674, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=36376, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13994]={ + ["next_chapter"]=13995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3840, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36740, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3711, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=36740, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13995]={ + ["next_chapter"]=13996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11645, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3843, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37107, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3748, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=37107, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13996]={ + ["next_chapter"]=13997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11653, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37478, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3785, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=37478, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13997]={ + ["next_chapter"]=13998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11661, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37853, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3823, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=37853, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13998]={ + ["next_chapter"]=13999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38232, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3861, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=38232, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [13999]={ + ["next_chapter"]=14000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11676, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3853, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38614, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3900, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=38614, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=3728, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1399, + ["unit"]=0 + } + }, + [14000]={ + ["next_chapter"]=14001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=11684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39000, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3939, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=39000, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14001]={ + ["next_chapter"]=14002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39390, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3978, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=39390, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14002]={ + ["next_chapter"]=14003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39784, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4018, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=39784, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14003]={ + ["next_chapter"]=14004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3863, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40182, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4058, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=40182, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14004]={ + ["next_chapter"]=14005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11715, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3866, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40584, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4099, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=40584, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14005]={ + ["next_chapter"]=14006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11723, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3869, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40990, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4140, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=40990, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14006]={ + ["next_chapter"]=14007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41400, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4181, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=41400, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14007]={ + ["next_chapter"]=14008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3874, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41814, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4223, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=41814, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14008]={ + ["next_chapter"]=14009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3876, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42232, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4265, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=42232, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14009]={ + ["next_chapter"]=14010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3879, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42654, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4308, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=42654, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4118, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + [14010]={ + ["next_chapter"]=14011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=11762, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3881, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43081, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4351, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=43081, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14011]={ + ["next_chapter"]=14012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3884, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43511, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4395, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=43511, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14012]={ + ["next_chapter"]=14013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3887, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43946, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4439, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=43946, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14013]={ + ["next_chapter"]=14014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3889, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44386, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4483, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=44386, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14014]={ + ["next_chapter"]=14015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11793, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3892, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44830, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4528, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=44830, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14015]={ + ["next_chapter"]=14016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3894, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45278, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4573, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=45278, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14016]={ + ["next_chapter"]=14017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11809, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3897, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45731, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4619, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=45731, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14017]={ + ["next_chapter"]=14018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11817, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3900, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46188, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4665, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=46188, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14018]={ + ["next_chapter"]=14019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3902, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46650, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4712, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=46650, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14019]={ + ["next_chapter"]=14020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47117, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4759, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=47117, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=4549, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1401, + ["unit"]=0 + } + }, + [14020]={ + ["next_chapter"]=14021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=11840, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3907, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47588, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4806, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=47588, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14021]={ + ["next_chapter"]=14022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3910, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48064, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4854, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=48064, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14022]={ + ["next_chapter"]=14023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11856, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48544, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4903, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=48544, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14023]={ + ["next_chapter"]=14024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11864, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49030, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4952, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=49030, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14024]={ + ["next_chapter"]=14025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11872, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3918, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49520, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5002, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=49520, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14025]={ + ["next_chapter"]=14026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50015, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5052, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=50015, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14026]={ + ["next_chapter"]=14027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3923, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50515, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5102, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=50515, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14027]={ + ["next_chapter"]=14028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3925, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51020, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5153, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=51020, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14028]={ + ["next_chapter"]=14029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51531, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5205, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=51531, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14029]={ + ["next_chapter"]=14030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11911, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52046, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5257, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=52046, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5024, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1402, + ["unit"]=0 + } + }, + [14030]={ + ["next_chapter"]=14031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=11919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52566, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5309, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=52566, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14031]={ + ["next_chapter"]=14032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11927, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3936, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53092, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5362, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=53092, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14032]={ + ["next_chapter"]=14033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3938, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53623, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5416, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=53623, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14033]={ + ["next_chapter"]=14034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11942, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54159, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5470, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=54159, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14034]={ + ["next_chapter"]=14035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3944, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54701, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5525, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=54701, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14035]={ + ["next_chapter"]=14036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11958, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3946, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55248, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5580, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=55248, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14036]={ + ["next_chapter"]=14037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11966, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55800, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5636, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=55800, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14037]={ + ["next_chapter"]=14038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11974, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3951, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56358, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5692, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=56358, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14038]={ + ["next_chapter"]=14039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3954, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56922, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5749, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=56922, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14039]={ + ["next_chapter"]=14040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=11990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3957, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57491, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5807, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=57491, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=5550, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1403, + ["unit"]=0 + } + }, + [14040]={ + ["next_chapter"]=14041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=11998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3959, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58066, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5865, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=58066, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14041]={ + ["next_chapter"]=14042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3962, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58647, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5923, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=58647, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14042]={ + ["next_chapter"]=14043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12014, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3965, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59233, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5983, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=59233, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14043]={ + ["next_chapter"]=14044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12022, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59826, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6042, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=59826, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14044]={ + ["next_chapter"]=14045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3970, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60424, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6103, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=60424, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14045]={ + ["next_chapter"]=14046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3972, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61028, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6164, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=61028, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14046]={ + ["next_chapter"]=14047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12045, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3975, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61638, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6225, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=61638, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14047]={ + ["next_chapter"]=14048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12053, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3978, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62255, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6288, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=62255, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14048]={ + ["next_chapter"]=14049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12061, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3980, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62877, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6351, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=62877, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14049]={ + ["next_chapter"]=14050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12069, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3983, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63506, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6414, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=63506, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6131, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1404, + ["unit"]=0 + } + }, + [14050]={ + ["next_chapter"]=14051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=12077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64141, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6478, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=64141, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14051]={ + ["next_chapter"]=14052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3988, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64782, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6543, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=64782, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14052]={ + ["next_chapter"]=14053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12093, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65430, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6608, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=65430, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14053]={ + ["next_chapter"]=14054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3993, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66085, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6675, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=66085, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14054]={ + ["next_chapter"]=14055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12109, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3996, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66745, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6741, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=66745, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14055]={ + ["next_chapter"]=14056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=3999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67413, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6809, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=67413, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14056]={ + ["next_chapter"]=14057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12125, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4001, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68087, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6877, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=68087, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14057]={ + ["next_chapter"]=14058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12133, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68768, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6946, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=68768, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14058]={ + ["next_chapter"]=14059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69456, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7015, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=69456, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14059]={ + ["next_chapter"]=14060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12149, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4009, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70150, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7085, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=70150, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=6772, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1405, + ["unit"]=0 + } + }, + [14060]={ + ["next_chapter"]=14061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=12157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70852, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7156, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=70852, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14061]={ + ["next_chapter"]=14062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4014, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71560, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7228, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=71560, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14062]={ + ["next_chapter"]=14063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72276, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7300, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=72276, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14063]={ + ["next_chapter"]=14064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12181, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4020, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72998, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7373, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=72998, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14064]={ + ["next_chapter"]=14065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4022, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73728, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7447, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=73728, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14065]={ + ["next_chapter"]=14066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74466, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7521, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=74466, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14066]={ + ["next_chapter"]=14067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12205, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75210, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7596, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=75210, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14067]={ + ["next_chapter"]=14068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75963, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7672, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=75963, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14068]={ + ["next_chapter"]=14069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76722, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7749, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=76722, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14069]={ + ["next_chapter"]=14070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12229, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4036, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77489, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7826, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=77489, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=7481, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1406, + ["unit"]=0 + } + }, + [14070]={ + ["next_chapter"]=14071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=12237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4038, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78264, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7905, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=78264, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14071]={ + ["next_chapter"]=14072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4041, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79047, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7984, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=79047, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14072]={ + ["next_chapter"]=14073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79837, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8064, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=79837, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14073]={ + ["next_chapter"]=14074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80636, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8144, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=80636, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14074]={ + ["next_chapter"]=14075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81442, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8226, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=81442, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14075]={ + ["next_chapter"]=14076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12277, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4051, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82257, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8308, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=82257, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14076]={ + ["next_chapter"]=14077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83079, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8391, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=83079, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14077]={ + ["next_chapter"]=14078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83910, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8475, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=83910, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14078]={ + ["next_chapter"]=14079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84749, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8560, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=84749, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14079]={ + ["next_chapter"]=14080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4062, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85596, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8645, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=85596, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=8263, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1407, + ["unit"]=0 + } + }, + [14080]={ + ["next_chapter"]=14081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=12317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4065, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86452, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8732, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=86452, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14081]={ + ["next_chapter"]=14082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87317, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8819, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=87317, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14082]={ + ["next_chapter"]=14083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12333, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88190, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8907, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=88190, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14083]={ + ["next_chapter"]=14084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4073, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89072, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8996, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=89072, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14084]={ + ["next_chapter"]=14085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4075, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89963, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9086, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=89963, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14085]={ + ["next_chapter"]=14086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12358, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4078, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90862, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9177, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=90862, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14086]={ + ["next_chapter"]=14087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4081, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91771, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9269, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=91771, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14087]={ + ["next_chapter"]=14088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12374, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92689, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9362, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=92689, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14088]={ + ["next_chapter"]=14089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4086, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93616, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9455, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=93616, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14089]={ + ["next_chapter"]=14090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4089, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94552, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9550, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=94552, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=9128, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1408, + ["unit"]=0 + } + }, + [14090]={ + ["next_chapter"]=14091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=12398, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4091, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95497, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9645, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=95497, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14091]={ + ["next_chapter"]=14092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12406, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4094, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96452, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9742, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=96452, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14092]={ + ["next_chapter"]=14093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4097, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97417, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9839, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=97417, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14093]={ + ["next_chapter"]=14094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12422, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98391, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9937, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=98391, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14094]={ + ["next_chapter"]=14095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12430, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4102, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99375, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10037, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=99375, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14095]={ + ["next_chapter"]=14096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4105, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100369, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10137, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=100369, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14096]={ + ["next_chapter"]=14097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101372, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10239, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=101372, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14097]={ + ["next_chapter"]=14098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4110, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102386, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10341, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=102386, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14098]={ + ["next_chapter"]=14099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103410, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10444, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=103410, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14099]={ + ["next_chapter"]=14100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12471, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4115, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104444, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10549, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=104444, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=10083, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1409, + ["unit"]=0 + } + }, + [14100]={ + ["next_chapter"]=14101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=12479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4118, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105488, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10654, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=105488, + ["unit"]=19 + }, + ["chapter_drop"]=61, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14101]={ + ["next_chapter"]=14102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4121, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106543, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10761, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=106543, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14102]={ + ["next_chapter"]=14103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107609, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10868, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=107609, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14103]={ + ["next_chapter"]=14104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108685, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10977, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=108685, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14104]={ + ["next_chapter"]=14105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12512, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109772, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11087, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=109772, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14105]={ + ["next_chapter"]=14106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4131, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110869, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11198, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=110869, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14106]={ + ["next_chapter"]=14107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4134, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111978, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11310, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=111978, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14107]={ + ["next_chapter"]=14108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12536, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113098, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11423, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=113098, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14108]={ + ["next_chapter"]=14109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12544, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114229, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11537, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=114229, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14109]={ + ["next_chapter"]=14110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12552, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115371, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11652, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=115371, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11138, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + [14110]={ + ["next_chapter"]=14111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=12560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4145, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116525, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11769, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=116525, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14111]={ + ["next_chapter"]=14112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4148, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117690, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11887, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=117690, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14112]={ + ["next_chapter"]=14113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118867, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12006, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=118867, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14113]={ + ["next_chapter"]=14114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4153, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120056, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12126, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=120056, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14114]={ + ["next_chapter"]=14115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121256, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12247, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=121256, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14115]={ + ["next_chapter"]=14116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12601, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122469, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12369, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=122469, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14116]={ + ["next_chapter"]=14117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12609, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4161, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123693, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12493, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=123693, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14117]={ + ["next_chapter"]=14118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12618, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4164, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=124930, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12618, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=124930, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14118]={ + ["next_chapter"]=14119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12626, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126180, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12744, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=126180, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14119]={ + ["next_chapter"]=14120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4169, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127441, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12872, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=127441, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=12303, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1411, + ["unit"]=0 + } + }, + [14120]={ + ["next_chapter"]=14121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=12642, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4172, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=128716, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13000, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=128716, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14121]={ + ["next_chapter"]=14122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4175, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130003, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13130, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=130003, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14122]={ + ["next_chapter"]=14123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131303, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13262, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=131303, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14123]={ + ["next_chapter"]=14124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12667, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4180, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=132616, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13394, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=132616, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14124]={ + ["next_chapter"]=14125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=133942, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13528, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=133942, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14125]={ + ["next_chapter"]=14126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12683, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=135282, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13663, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=135282, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14126]={ + ["next_chapter"]=14127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4188, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=136635, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13800, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=136635, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14127]={ + ["next_chapter"]=14128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138001, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13938, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=138001, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14128]={ + ["next_chapter"]=14129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4194, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=139381, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14077, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=139381, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14129]={ + ["next_chapter"]=14130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4196, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=140775, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14218, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=140775, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13590, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1412, + ["unit"]=0 + } + }, + [14130]={ + ["next_chapter"]=14131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=12724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142182, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14360, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=142182, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14131]={ + ["next_chapter"]=14132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12733, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=143604, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14504, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=143604, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14132]={ + ["next_chapter"]=14133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145040, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14649, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=145040, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14133]={ + ["next_chapter"]=14134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4207, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=146491, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14796, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=146491, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14134]={ + ["next_chapter"]=14135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12757, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4210, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=147956, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14944, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=147956, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14135]={ + ["next_chapter"]=14136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12766, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4213, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=149435, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15093, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=149435, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14136]={ + ["next_chapter"]=14137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12774, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=150930, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15244, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=150930, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14137]={ + ["next_chapter"]=14138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12782, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4218, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=152439, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15396, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=152439, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14138]={ + ["next_chapter"]=14139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4221, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=153963, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15550, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=153963, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14139]={ + ["next_chapter"]=14140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12799, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4224, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=155503, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15706, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=155503, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15012, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1413, + ["unit"]=0 + } + }, + [14140]={ + ["next_chapter"]=14141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=12807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4226, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=157058, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15863, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=157058, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14141]={ + ["next_chapter"]=14142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4229, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=158628, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16021, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=158628, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14142]={ + ["next_chapter"]=14143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12823, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4232, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=160215, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16182, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=160215, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14143]={ + ["next_chapter"]=14144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4234, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=161817, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16344, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=161817, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14144]={ + ["next_chapter"]=14145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12840, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4237, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=163435, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16507, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=163435, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14145]={ + ["next_chapter"]=14146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4240, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=165069, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16672, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=165069, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14146]={ + ["next_chapter"]=14147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4243, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=166720, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16839, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=166720, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14147]={ + ["next_chapter"]=14148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12865, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=168387, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17007, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=168387, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14148]={ + ["next_chapter"]=14149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12873, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4248, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=170071, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17177, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=170071, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14149]={ + ["next_chapter"]=14150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4251, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=171772, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17349, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=171772, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=16582, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1414, + ["unit"]=0 + } + }, + [14150]={ + ["next_chapter"]=14151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=12890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=173490, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17522, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=173490, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14151]={ + ["next_chapter"]=14152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12898, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=175224, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17698, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=175224, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14152]={ + ["next_chapter"]=14153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=176977, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17875, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=176977, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14153]={ + ["next_chapter"]=14154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4262, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=178746, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18053, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=178746, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14154]={ + ["next_chapter"]=14155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=180534, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18234, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=180534, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14155]={ + ["next_chapter"]=14156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12931, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4267, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=182339, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18416, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=182339, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14156]={ + ["next_chapter"]=14157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12940, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=184163, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18600, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=184163, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14157]={ + ["next_chapter"]=14158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12948, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4273, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=186004, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18786, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=186004, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14158]={ + ["next_chapter"]=14159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12956, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=187864, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18974, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=187864, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14159]={ + ["next_chapter"]=14160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12965, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4278, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=189743, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19164, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=189743, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=18317, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1415, + ["unit"]=0 + } + }, + [14160]={ + ["next_chapter"]=14161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=12973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=191640, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19356, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=191640, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14161]={ + ["next_chapter"]=14162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=193557, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19549, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=193557, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14162]={ + ["next_chapter"]=14163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4287, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=195492, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19745, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=195492, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14163]={ + ["next_chapter"]=14164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=12998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4289, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=197447, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19942, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=197447, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14164]={ + ["next_chapter"]=14165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4292, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=199422, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20142, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=199422, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14165]={ + ["next_chapter"]=14166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=201416, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20343, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=201416, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14166]={ + ["next_chapter"]=14167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13023, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4298, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=203430, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20546, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=203430, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14167]={ + ["next_chapter"]=14168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13031, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4300, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=205464, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20752, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=205464, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14168]={ + ["next_chapter"]=14169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13040, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4303, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=207519, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20959, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=207519, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14169]={ + ["next_chapter"]=14170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13048, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=209594, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21169, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=209594, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=20234, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1416, + ["unit"]=0 + } + }, + [14170]={ + ["next_chapter"]=14171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=13056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4309, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=211690, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21381, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=211690, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14171]={ + ["next_chapter"]=14172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13065, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=213807, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21595, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=213807, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14172]={ + ["next_chapter"]=14173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=215945, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21810, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=215945, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14173]={ + ["next_chapter"]=14174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13082, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=218105, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22029, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=218105, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14174]={ + ["next_chapter"]=14175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4320, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=220286, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22249, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=220286, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14175]={ + ["next_chapter"]=14176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=222489, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22471, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=222489, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14176]={ + ["next_chapter"]=14177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=224713, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22696, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=224713, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14177]={ + ["next_chapter"]=14178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=226961, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22923, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=226961, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14178]={ + ["next_chapter"]=14179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4331, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=229230, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23152, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=229230, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14179]={ + ["next_chapter"]=14180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=231523, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23384, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=231523, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=22351, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1417, + ["unit"]=0 + } + }, + [14180]={ + ["next_chapter"]=14181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=13140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4336, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=233838, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23618, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=233838, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14181]={ + ["next_chapter"]=14182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13149, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=236176, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23854, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=236176, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14182]={ + ["next_chapter"]=14183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4342, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=238538, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24092, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=238538, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14183]={ + ["next_chapter"]=14184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13166, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=240923, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24333, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=240923, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14184]={ + ["next_chapter"]=14185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4347, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=243333, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24577, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=243333, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14185]={ + ["next_chapter"]=14186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4350, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=245766, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24822, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=245766, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14186]={ + ["next_chapter"]=14187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13191, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=248223, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25071, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=248223, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14187]={ + ["next_chapter"]=14188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=250706, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25321, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=250706, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14188]={ + ["next_chapter"]=14189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=253213, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25574, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=253213, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14189]={ + ["next_chapter"]=14190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4361, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=255745, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25830, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=255745, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=24689, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1418, + ["unit"]=0 + } + }, + [14190]={ + ["next_chapter"]=14191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=13225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4364, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=258302, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26089, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=258302, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14191]={ + ["next_chapter"]=14192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13233, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=260885, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26349, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=260885, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14192]={ + ["next_chapter"]=14193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=263494, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26613, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=263494, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14193]={ + ["next_chapter"]=14194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=266129, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26879, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=266129, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14194]={ + ["next_chapter"]=14195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13259, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4375, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=268790, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27148, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=268790, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14195]={ + ["next_chapter"]=14196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=271478, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27419, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=271478, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14196]={ + ["next_chapter"]=14197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13275, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=274193, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27694, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=274193, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14197]={ + ["next_chapter"]=14198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13284, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=276935, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27970, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=276935, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14198]={ + ["next_chapter"]=14199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13292, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4386, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=279704, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28250, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=279704, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14199]={ + ["next_chapter"]=14200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=282501, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28533, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=282501, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=27272, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1419, + ["unit"]=0 + } + }, + [14200]={ + ["next_chapter"]=14201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=13309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4392, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=285326, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28818, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=285326, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14201]={ + ["next_chapter"]=14202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13318, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=288180, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29106, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=288180, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14202]={ + ["next_chapter"]=14203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13326, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=291062, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29397, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=291062, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14203]={ + ["next_chapter"]=14204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4400, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=293972, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29691, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=293972, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14204]={ + ["next_chapter"]=14205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13343, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=296912, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29988, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=296912, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14205]={ + ["next_chapter"]=14206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13352, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4406, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=299881, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30288, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=299881, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14206]={ + ["next_chapter"]=14207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4409, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=302880, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30591, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=302880, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14207]={ + ["next_chapter"]=14208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=305909, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30897, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=305909, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14208]={ + ["next_chapter"]=14209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4415, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=308968, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31206, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=308968, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14209]={ + ["next_chapter"]=14210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=312057, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31518, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=312057, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=30125, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + [14210]={ + ["next_chapter"]=14211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=13394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4420, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=315178, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31833, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=315178, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14211]={ + ["next_chapter"]=14212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=318330, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32151, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=318330, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14212]={ + ["next_chapter"]=14213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13411, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4426, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=321513, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32473, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=321513, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14213]={ + ["next_chapter"]=14214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13420, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4429, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=324728, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32798, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=324728, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14214]={ + ["next_chapter"]=14215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13428, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4431, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=327975, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33126, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=327975, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14215]={ + ["next_chapter"]=14216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13437, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4434, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=331255, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33457, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=331255, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14216]={ + ["next_chapter"]=14217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13446, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4437, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=334568, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33791, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=334568, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14217]={ + ["next_chapter"]=14218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13454, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=337913, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34129, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=337913, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14218]={ + ["next_chapter"]=14219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4443, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=341293, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34471, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=341293, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14219]={ + ["next_chapter"]=14220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13471, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=344705, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34815, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=344705, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=33277, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1421, + ["unit"]=0 + } + }, + [14220]={ + ["next_chapter"]=14221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=13480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4448, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=348153, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35163, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=348153, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14221]={ + ["next_chapter"]=14222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=351634, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35515, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=351634, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14222]={ + ["next_chapter"]=14223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4454, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=355150, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35870, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=355150, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14223]={ + ["next_chapter"]=14224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4457, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=358702, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36229, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=358702, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14224]={ + ["next_chapter"]=14225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=362289, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36591, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=362289, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14225]={ + ["next_chapter"]=14226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4462, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=365912, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36957, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=365912, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14226]={ + ["next_chapter"]=14227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13531, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4465, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=369571, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37327, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=369571, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14227]={ + ["next_chapter"]=14228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13540, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=373267, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37700, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=373267, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14228]={ + ["next_chapter"]=14229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13548, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=376999, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38077, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=376999, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14229]={ + ["next_chapter"]=14230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13557, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4474, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=380769, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38458, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=380769, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=36759, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1422, + ["unit"]=0 + } + }, + [14230]={ + ["next_chapter"]=14231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=13565, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4477, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=384577, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38842, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=384577, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14231]={ + ["next_chapter"]=14232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13574, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=388423, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39231, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=388423, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14232]={ + ["next_chapter"]=14233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=392307, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39623, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=392307, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14233]={ + ["next_chapter"]=14234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4485, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=396230, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40019, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=396230, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14234]={ + ["next_chapter"]=14235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13600, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=400192, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40419, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=400192, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14235]={ + ["next_chapter"]=14236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13608, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4491, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=404194, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40824, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=404194, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14236]={ + ["next_chapter"]=14237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13617, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=408236, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41232, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=408236, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14237]={ + ["next_chapter"]=14238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13626, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4496, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=412319, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41644, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=412319, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14238]={ + ["next_chapter"]=14239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4499, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=416442, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42061, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=416442, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14239]={ + ["next_chapter"]=14240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4502, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=420606, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42481, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=420606, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=40604, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1423, + ["unit"]=0 + } + }, + [14240]={ + ["next_chapter"]=14241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=13652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=424812, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42906, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=424812, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14241]={ + ["next_chapter"]=14242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=429060, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43335, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=429060, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14242]={ + ["next_chapter"]=14243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13669, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4511, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=433351, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43768, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=433351, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14243]={ + ["next_chapter"]=14244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=437685, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44206, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=437685, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14244]={ + ["next_chapter"]=14245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4516, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=442061, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44648, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=442061, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14245]={ + ["next_chapter"]=14246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4519, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=446482, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45095, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=446482, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14246]={ + ["next_chapter"]=14247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13703, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4522, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=450947, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45546, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=450947, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14247]={ + ["next_chapter"]=14248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4525, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=455456, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46001, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=455456, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14248]={ + ["next_chapter"]=14249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13721, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=460011, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46461, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=460011, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14249]={ + ["next_chapter"]=14250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13729, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4531, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=464611, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46926, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=464611, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=44853, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1424, + ["unit"]=0 + } + }, + [14250]={ + ["next_chapter"]=14251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=13738, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=469257, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47395, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=469257, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14251]={ + ["next_chapter"]=14252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13747, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4536, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=473950, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47869, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=473950, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14252]={ + ["next_chapter"]=14253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4539, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=478689, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48348, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=478689, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14253]={ + ["next_chapter"]=14254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4542, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=483476, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48831, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=483476, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14254]={ + ["next_chapter"]=14255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13773, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4545, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=488311, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49319, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=488311, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14255]={ + ["next_chapter"]=14256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=493194, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49813, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=493194, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14256]={ + ["next_chapter"]=14257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4551, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=498126, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50311, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=498126, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14257]={ + ["next_chapter"]=14258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13799, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=503107, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50814, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=503107, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14258]={ + ["next_chapter"]=14259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=508138, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51322, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=508138, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14259]={ + ["next_chapter"]=14260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13816, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4559, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=513220, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51835, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=513220, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=49545, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1425, + ["unit"]=0 + } + }, + [14260]={ + ["next_chapter"]=14261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=13825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4562, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=518352, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52354, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=518352, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14261]={ + ["next_chapter"]=14262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13834, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=523535, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52877, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=523535, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14262]={ + ["next_chapter"]=14263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4568, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=528771, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53406, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=528771, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14263]={ + ["next_chapter"]=14264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13851, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=534058, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53940, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=534058, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14264]={ + ["next_chapter"]=14265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=539399, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54479, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=539399, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14265]={ + ["next_chapter"]=14266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=544793, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55024, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=544793, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14266]={ + ["next_chapter"]=14267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4579, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=550241, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55574, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=550241, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14267]={ + ["next_chapter"]=14268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4582, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=555743, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56130, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=555743, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14268]={ + ["next_chapter"]=14269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=561301, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56691, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=561301, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14269]={ + ["next_chapter"]=14270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=566914, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57258, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=566914, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=54729, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1426, + ["unit"]=0 + } + }, + [14270]={ + ["next_chapter"]=14271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=13912, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4591, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=572583, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57831, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=572583, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14271]={ + ["next_chapter"]=14272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13921, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=578309, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58409, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=578309, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14272]={ + ["next_chapter"]=14273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13929, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4597, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=584092, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58993, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=584092, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14273]={ + ["next_chapter"]=14274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=589933, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59583, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=589933, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14274]={ + ["next_chapter"]=14275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4603, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=595832, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60179, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=595832, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14275]={ + ["next_chapter"]=14276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13956, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4605, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=601790, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60781, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=601790, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14276]={ + ["next_chapter"]=14277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13964, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=607808, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61389, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=607808, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14277]={ + ["next_chapter"]=14278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4611, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=613886, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62003, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=613886, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14278]={ + ["next_chapter"]=14279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4614, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=620025, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62623, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=620025, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14279]={ + ["next_chapter"]=14280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=13991, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=626225, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63249, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=626225, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=60454, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1427, + ["unit"]=0 + } + }, + [14280]={ + ["next_chapter"]=14281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=14000, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=632488, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63881, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=632488, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14281]={ + ["next_chapter"]=14282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4623, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=638812, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64520, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=638812, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14282]={ + ["next_chapter"]=14283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4626, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=645201, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65165, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=645201, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14283]={ + ["next_chapter"]=14284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14026, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=651653, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65817, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=651653, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14284]={ + ["next_chapter"]=14285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14035, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4631, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=658169, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66475, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=658169, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14285]={ + ["next_chapter"]=14286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4634, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=664751, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67140, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=664751, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14286]={ + ["next_chapter"]=14287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14052, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4637, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=671398, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67811, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=671398, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14287]={ + ["next_chapter"]=14288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14061, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4640, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=678112, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68489, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=678112, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14288]={ + ["next_chapter"]=14289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4643, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=684893, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69174, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=684893, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14289]={ + ["next_chapter"]=14290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14079, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=691742, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69866, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=691742, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=66779, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1428, + ["unit"]=0 + } + }, + [14290]={ + ["next_chapter"]=14291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=14087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=698660, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70565, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=698660, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14291]={ + ["next_chapter"]=14292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4652, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=705646, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71270, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=705646, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14292]={ + ["next_chapter"]=14293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=712703, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71983, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=712703, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14293]={ + ["next_chapter"]=14294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14114, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=719830, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72703, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=719830, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14294]={ + ["next_chapter"]=14295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4661, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=727028, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73430, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=727028, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14295]={ + ["next_chapter"]=14296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4663, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=734298, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74164, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=734298, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14296]={ + ["next_chapter"]=14297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=741641, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74906, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=741641, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14297]={ + ["next_chapter"]=14298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14149, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=749058, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75655, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=749058, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14298]={ + ["next_chapter"]=14299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14158, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4672, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=756548, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76411, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=756548, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14299]={ + ["next_chapter"]=14300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14167, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4675, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=764114, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77176, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=764114, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=73766, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1429, + ["unit"]=0 + } + }, + [14300]={ + ["next_chapter"]=14301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=14176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4678, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=771755, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77947, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=771755, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14301]={ + ["next_chapter"]=14302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4681, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=779473, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78727, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=779473, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14302]={ + ["next_chapter"]=14303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14193, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=787267, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79514, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=787267, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14303]={ + ["next_chapter"]=14304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=795140, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80309, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=795140, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14304]={ + ["next_chapter"]=14305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=803091, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81112, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=803091, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14305]={ + ["next_chapter"]=14306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14220, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4693, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=811122, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81923, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=811122, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14306]={ + ["next_chapter"]=14307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14229, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4696, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=819234, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82743, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=819234, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14307]={ + ["next_chapter"]=14308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=827426, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83570, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=827426, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14308]={ + ["next_chapter"]=14309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14247, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4701, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=835700, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84406, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=835700, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14309]={ + ["next_chapter"]=14310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=844057, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85250, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=844057, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=81484, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + [14310]={ + ["next_chapter"]=14311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=14264, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=852498, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86102, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=852498, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14311]={ + ["next_chapter"]=14312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14273, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=861023, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86963, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=861023, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14312]={ + ["next_chapter"]=14313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14282, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=869633, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87833, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=869633, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14313]={ + ["next_chapter"]=14314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14291, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=878329, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88711, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=878329, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14314]={ + ["next_chapter"]=14315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4719, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=887113, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89598, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=887113, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14315]={ + ["next_chapter"]=14316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=895984, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90494, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=895984, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14316]={ + ["next_chapter"]=14317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14318, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4725, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=904943, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91399, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=904943, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14317]={ + ["next_chapter"]=14318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14327, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4728, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=913993, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92313, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=913993, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14318]={ + ["next_chapter"]=14319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14336, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4731, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=923133, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93236, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=923133, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14319]={ + ["next_chapter"]=14320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=932364, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94169, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=932364, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=90008, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1431, + ["unit"]=0 + } + }, + [14320]={ + ["next_chapter"]=14321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=14353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4737, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=941688, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95110, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=941688, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14321]={ + ["next_chapter"]=14322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=951105, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96062, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=951105, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14322]={ + ["next_chapter"]=14323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14371, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=960616, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97022, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=960616, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14323]={ + ["next_chapter"]=14324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14380, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4745, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=970222, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97992, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=970222, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14324]={ + ["next_chapter"]=14325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4748, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=979924, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98972, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=979924, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14325]={ + ["next_chapter"]=14326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14398, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=989723, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99962, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=989723, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14326]={ + ["next_chapter"]=14327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4754, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=999621, + ["unit"]=19 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100962, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=999621, + ["unit"]=19 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14327]={ + ["next_chapter"]=14328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1010, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101971, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1010, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14328]={ + ["next_chapter"]=14329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4760, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1020, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102991, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1020, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14329]={ + ["next_chapter"]=14330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1030, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104021, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1030, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=99425, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1432, + ["unit"]=0 + } + }, + [14330]={ + ["next_chapter"]=14331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=14443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4766, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1040, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105061, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1040, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14331]={ + ["next_chapter"]=14332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14452, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1051, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106112, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1051, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14332]={ + ["next_chapter"]=14333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14461, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4772, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1061, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107173, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1061, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14333]={ + ["next_chapter"]=14334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14470, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1072, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108245, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1072, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14334]={ + ["next_chapter"]=14335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4778, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1082, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109327, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1082, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14335]={ + ["next_chapter"]=14336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4781, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1093, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110420, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1093, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14336]={ + ["next_chapter"]=14337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1104, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111525, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1104, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14337]={ + ["next_chapter"]=14338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14506, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4787, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1115, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112640, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1115, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14338]={ + ["next_chapter"]=14339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14515, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4790, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1126, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113766, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1126, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14339]={ + ["next_chapter"]=14340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14524, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1138, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114904, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1138, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=109827, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1433, + ["unit"]=0 + } + }, + [14340]={ + ["next_chapter"]=14341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=14533, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1149, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116053, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1149, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14341]={ + ["next_chapter"]=14342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1161, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117213, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1161, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14342]={ + ["next_chapter"]=14343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14551, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1172, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118386, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1172, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14343]={ + ["next_chapter"]=14344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4805, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1184, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119569, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1184, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14344]={ + ["next_chapter"]=14345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4808, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1196, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120765, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1196, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14345]={ + ["next_chapter"]=14346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1208, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121973, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1208, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14346]={ + ["next_chapter"]=14347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14587, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4814, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1220, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123192, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1220, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14347]={ + ["next_chapter"]=14348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1232, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124424, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1232, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14348]={ + ["next_chapter"]=14349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1244, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125669, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1244, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14349]={ + ["next_chapter"]=14350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14614, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1257, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126925, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1257, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=121318, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1434, + ["unit"]=0 + } + }, + [14350]={ + ["next_chapter"]=14351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=14623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4826, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1269, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128195, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1269, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14351]={ + ["next_chapter"]=14352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14632, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4828, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1282, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129476, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1282, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14352]={ + ["next_chapter"]=14353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14641, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4831, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1295, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130771, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1295, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14353]={ + ["next_chapter"]=14354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4834, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1308, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132079, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1308, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14354]={ + ["next_chapter"]=14355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1321, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133400, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1321, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14355]={ + ["next_chapter"]=14356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4840, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1334, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134734, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1334, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14356]={ + ["next_chapter"]=14357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4843, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1347, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136081, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1347, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14357]={ + ["next_chapter"]=14358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1361, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137442, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1361, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14358]={ + ["next_chapter"]=14359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4849, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1374, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138816, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1374, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14359]={ + ["next_chapter"]=14360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14704, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4852, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1388, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140204, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1388, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=134010, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1435, + ["unit"]=0 + } + }, + [14360]={ + ["next_chapter"]=14361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=14713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1402, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141607, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1402, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14361]={ + ["next_chapter"]=14362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14722, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1416, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143023, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1416, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14362]={ + ["next_chapter"]=14363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1430, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144453, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1430, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14363]={ + ["next_chapter"]=14364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4864, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1445, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145897, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1445, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14364]={ + ["next_chapter"]=14365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14750, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4867, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1459, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147356, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1459, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14365]={ + ["next_chapter"]=14366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4870, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1474, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148830, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1474, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14366]={ + ["next_chapter"]=14367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1488, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150318, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1488, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14367]={ + ["next_chapter"]=14368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4876, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1503, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151821, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1503, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14368]={ + ["next_chapter"]=14369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4879, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1518, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153340, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1518, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14369]={ + ["next_chapter"]=14370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1533, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154873, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1533, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=148031, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1436, + ["unit"]=0 + } + }, + [14370]={ + ["next_chapter"]=14371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=14804, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4885, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1549, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156422, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1549, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14371]={ + ["next_chapter"]=14372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14813, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1564, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157986, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1564, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14372]={ + ["next_chapter"]=14373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14822, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1580, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159566, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1580, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14373]={ + ["next_chapter"]=14374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4894, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1596, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161161, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1596, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14374]={ + ["next_chapter"]=14375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4897, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1612, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162773, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1612, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14375]={ + ["next_chapter"]=14376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14850, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4900, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1628, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164401, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1628, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14376]={ + ["next_chapter"]=14377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4903, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1644, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166045, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1644, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14377]={ + ["next_chapter"]=14378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4906, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1660, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167705, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1660, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14378]={ + ["next_chapter"]=14379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1677, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169382, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1677, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14379]={ + ["next_chapter"]=14380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1694, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171076, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1694, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=163518, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1437, + ["unit"]=0 + } + }, + [14380]={ + ["next_chapter"]=14381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=14895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1711, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172787, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1711, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14381]={ + ["next_chapter"]=14382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1728, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174515, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1728, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14382]={ + ["next_chapter"]=14383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4922, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1745, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176260, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1745, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14383]={ + ["next_chapter"]=14384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4925, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1763, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178022, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1763, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14384]={ + ["next_chapter"]=14385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14932, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1780, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179803, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1780, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14385]={ + ["next_chapter"]=14386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14941, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1798, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181601, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1798, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14386]={ + ["next_chapter"]=14387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4934, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1816, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183417, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1816, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14387]={ + ["next_chapter"]=14388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14960, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1834, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185251, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1834, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14388]={ + ["next_chapter"]=14389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4940, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1853, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187103, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1853, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14389]={ + ["next_chapter"]=14390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1871, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188974, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1871, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=180626, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1438, + ["unit"]=0 + } + }, + [14390]={ + ["next_chapter"]=14391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=14987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4946, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1890, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190864, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1890, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14391]={ + ["next_chapter"]=14392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=14996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1909, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192773, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1909, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14392]={ + ["next_chapter"]=14393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4952, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1928, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194701, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1928, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14393]={ + ["next_chapter"]=14394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4955, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1947, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196648, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1947, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14394]={ + ["next_chapter"]=14395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4958, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1966, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198614, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1966, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14395]={ + ["next_chapter"]=14396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4961, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1986, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200600, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=1986, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14396]={ + ["next_chapter"]=14397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4964, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2006, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202606, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2006, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14397]={ + ["next_chapter"]=14398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2026, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204632, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2026, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14398]={ + ["next_chapter"]=14399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15061, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4970, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2046, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206679, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2046, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14399]={ + ["next_chapter"]=14400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4973, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2067, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208745, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2067, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=199523, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1439, + ["unit"]=0 + } + }, + [14400]={ + ["next_chapter"]=14401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=15079, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2087, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210833, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2087, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14401]={ + ["next_chapter"]=14402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4979, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2108, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212941, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2108, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14402]={ + ["next_chapter"]=14403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4982, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2129, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215071, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2129, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14403]={ + ["next_chapter"]=14404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2151, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217221, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2151, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14404]={ + ["next_chapter"]=14405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4988, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2172, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219393, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2172, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14405]={ + ["next_chapter"]=14406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15125, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2194, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221587, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2194, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14406]={ + ["next_chapter"]=14407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2216, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223803, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2216, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14407]={ + ["next_chapter"]=14408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=4997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2238, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226041, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2238, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14408]={ + ["next_chapter"]=14409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15153, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5000, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2260, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228302, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2260, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14409]={ + ["next_chapter"]=14410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2283, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230585, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2283, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=220398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + [14410]={ + ["next_chapter"]=14411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=15171, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2306, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232891, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2306, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14411]={ + ["next_chapter"]=14412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15181, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5010, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2329, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235220, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2329, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14412]={ + ["next_chapter"]=14413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15190, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5013, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2352, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237572, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2352, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14413]={ + ["next_chapter"]=14414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2376, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239947, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2376, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14414]={ + ["next_chapter"]=14415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2399, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242347, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2399, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14415]={ + ["next_chapter"]=14416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15218, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5022, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2423, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244770, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2423, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14416]={ + ["next_chapter"]=14417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15227, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2448, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247218, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2448, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14417]={ + ["next_chapter"]=14418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15236, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2472, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249690, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2472, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14418]={ + ["next_chapter"]=14419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5031, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2497, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=252187, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2497, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14419]={ + ["next_chapter"]=14420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5034, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2522, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254709, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2522, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=243456, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1441, + ["unit"]=0 + } + }, + [14420]={ + ["next_chapter"]=14421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=15264, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2547, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257256, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2547, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14421]={ + ["next_chapter"]=14422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2573, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259829, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2573, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14422]={ + ["next_chapter"]=14423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15283, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2598, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262427, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2598, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14423]={ + ["next_chapter"]=14424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15292, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2624, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265051, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2624, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14424]={ + ["next_chapter"]=14425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2651, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267702, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2651, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14425]={ + ["next_chapter"]=14426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5053, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2677, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270379, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2677, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14426]={ + ["next_chapter"]=14427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2704, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=273083, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2704, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14427]={ + ["next_chapter"]=14428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15329, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2731, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275813, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2731, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14428]={ + ["next_chapter"]=14429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5062, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2758, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=278572, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2758, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14429]={ + ["next_chapter"]=14430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5065, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2786, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281357, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2786, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=268927, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1442, + ["unit"]=0 + } + }, + [14430]={ + ["next_chapter"]=14431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=15357, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5068, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2814, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=284171, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2814, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14431]={ + ["next_chapter"]=14432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2842, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287013, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2842, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14432]={ + ["next_chapter"]=14433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15376, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2870, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289883, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2870, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14433]={ + ["next_chapter"]=14434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15385, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2899, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292781, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2899, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14434]={ + ["next_chapter"]=14435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15395, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2928, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295709, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2928, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14435]={ + ["next_chapter"]=14436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15404, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2957, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298666, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2957, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14436]={ + ["next_chapter"]=14437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15413, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5086, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2987, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301653, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=2987, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14437]={ + ["next_chapter"]=14438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15423, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3017, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304670, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3017, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14438]={ + ["next_chapter"]=14439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5093, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3047, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307716, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3047, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14439]={ + ["next_chapter"]=14440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15442, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3077, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310793, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3077, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=297063, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1443, + ["unit"]=0 + } + }, + [14440]={ + ["next_chapter"]=14441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=15451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3108, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313901, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3108, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14441]={ + ["next_chapter"]=14442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15460, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5102, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3139, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=317040, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3139, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14442]={ + ["next_chapter"]=14443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15470, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5105, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3170, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320211, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3170, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14443]={ + ["next_chapter"]=14444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5108, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3202, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323413, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3202, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14444]={ + ["next_chapter"]=14445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3234, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=326647, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3234, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14445]={ + ["next_chapter"]=14446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5114, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3266, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329913, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3266, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14446]={ + ["next_chapter"]=14447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3299, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=333213, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3299, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14447]={ + ["next_chapter"]=14448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5120, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3332, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=336545, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3332, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14448]={ + ["next_chapter"]=14449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3365, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339910, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3365, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14449]={ + ["next_chapter"]=14450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3399, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=343309, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3399, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=328142, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1444, + ["unit"]=0 + } + }, + [14450]={ + ["next_chapter"]=14451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=15545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5130, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3433, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346742, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3433, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14451]={ + ["next_chapter"]=14452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15554, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5133, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3467, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350210, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3467, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14452]={ + ["next_chapter"]=14453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15564, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5136, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3502, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=353712, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3502, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14453]={ + ["next_chapter"]=14454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5139, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3537, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=357249, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3537, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14454]={ + ["next_chapter"]=14455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15582, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3572, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360822, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3572, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14455]={ + ["next_chapter"]=14456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15592, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5145, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3608, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=364430, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3608, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14456]={ + ["next_chapter"]=14457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15601, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5148, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3644, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=368074, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3644, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14457]={ + ["next_chapter"]=14458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15611, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5152, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3681, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=371755, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3681, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14458]={ + ["next_chapter"]=14459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5155, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3718, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=375472, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3718, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14459]={ + ["next_chapter"]=14460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3755, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=379227, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3755, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=362473, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1445, + ["unit"]=0 + } + }, + [14460]={ + ["next_chapter"]=14461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=15639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5161, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3792, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=383019, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3792, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14461]={ + ["next_chapter"]=14462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5164, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3830, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386849, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3830, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14462]={ + ["next_chapter"]=14463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3868, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390718, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3868, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14463]={ + ["next_chapter"]=14464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15667, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5170, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3907, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394625, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3907, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14464]={ + ["next_chapter"]=14465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5173, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3946, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398571, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3946, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14465]={ + ["next_chapter"]=14466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3986, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402557, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=3986, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14466]={ + ["next_chapter"]=14467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15696, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5180, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4026, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406583, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4026, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14467]={ + ["next_chapter"]=14468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15705, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4066, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410649, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4066, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14468]={ + ["next_chapter"]=14469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15715, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4106, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414755, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4106, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14469]={ + ["next_chapter"]=14470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4148, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418903, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4148, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=400396, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1446, + ["unit"]=0 + } + }, + [14470]={ + ["next_chapter"]=14471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=15734, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5192, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4189, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=423092, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4189, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14471]={ + ["next_chapter"]=14472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5195, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4231, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=427323, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4231, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14472]={ + ["next_chapter"]=14473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5198, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4273, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431596, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4273, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14473]={ + ["next_chapter"]=14474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15762, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4316, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=435912, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4316, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14474]={ + ["next_chapter"]=14475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15772, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5205, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4359, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=440271, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4359, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14475]={ + ["next_chapter"]=14476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5208, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4403, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=444674, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4403, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14476]={ + ["next_chapter"]=14477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15791, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4447, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=449120, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4447, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14477]={ + ["next_chapter"]=14478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15800, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4491, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=453611, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4491, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14478]={ + ["next_chapter"]=14479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4536, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=458148, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4536, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14479]={ + ["next_chapter"]=14480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4581, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=462729, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4581, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=442286, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1447, + ["unit"]=0 + } + }, + [14480]={ + ["next_chapter"]=14481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=15829, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4627, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=467356, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4627, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14481]={ + ["next_chapter"]=14482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15838, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5227, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4674, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=472030, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4674, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14482]={ + ["next_chapter"]=14483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5230, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4720, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476750, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4720, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14483]={ + ["next_chapter"]=14484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5233, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4768, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=481518, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4768, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14484]={ + ["next_chapter"]=14485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4815, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=486333, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4815, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14485]={ + ["next_chapter"]=14486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15876, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5239, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4863, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=491196, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4863, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14486]={ + ["next_chapter"]=14487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5242, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4912, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=496108, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4912, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14487]={ + ["next_chapter"]=14488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4961, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=501069, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=4961, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14488]={ + ["next_chapter"]=14489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5249, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5011, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506080, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5011, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14489]={ + ["next_chapter"]=14490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5252, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5061, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=511141, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5061, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=488559, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1448, + ["unit"]=0 + } + }, + [14490]={ + ["next_chapter"]=14491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=15924, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5255, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5111, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516252, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5111, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14491]={ + ["next_chapter"]=14492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5258, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5163, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=521415, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5163, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14492]={ + ["next_chapter"]=14493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5214, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=526629, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5214, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14493]={ + ["next_chapter"]=14494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15953, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5264, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5266, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=531895, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5266, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14494]={ + ["next_chapter"]=14495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15962, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5319, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=537214, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5319, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14495]={ + ["next_chapter"]=14496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5271, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5372, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=542586, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5372, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14496]={ + ["next_chapter"]=14497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5274, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5426, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=548012, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5426, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14497]={ + ["next_chapter"]=14498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=15991, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5277, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5480, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=553492, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5480, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14498]={ + ["next_chapter"]=14499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16001, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5280, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5535, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=559027, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5535, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14499]={ + ["next_chapter"]=14500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5283, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5590, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=564617, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5590, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=539673, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1449, + ["unit"]=0 + } + }, + [14500]={ + ["next_chapter"]=14501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=16020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5287, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5646, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=570264, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5646, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14501]={ + ["next_chapter"]=14502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5290, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5703, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=575966, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5703, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14502]={ + ["next_chapter"]=14503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16039, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5293, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5760, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=581726, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5760, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14503]={ + ["next_chapter"]=14504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5296, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5817, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=587543, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5817, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14504]={ + ["next_chapter"]=14505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16058, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5875, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=593419, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5875, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14505]={ + ["next_chapter"]=14506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16068, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5302, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5934, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=599353, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5934, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14506]={ + ["next_chapter"]=14507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5994, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=605346, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=5994, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14507]={ + ["next_chapter"]=14508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5309, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6053, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=611400, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6053, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14508]={ + ["next_chapter"]=14509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5312, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6114, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=617514, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6114, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14509]={ + ["next_chapter"]=14510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5315, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6175, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=623689, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6175, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=596135, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + [14510]={ + ["next_chapter"]=14511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=16116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5318, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6237, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=629926, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6237, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14511]={ + ["next_chapter"]=14512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16126, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6299, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=636225, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6299, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14512]={ + ["next_chapter"]=14513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6362, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=642587, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6362, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14513]={ + ["next_chapter"]=14514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6426, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=649013, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6426, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14514]={ + ["next_chapter"]=14515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5331, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6490, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=655503, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6490, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14515]={ + ["next_chapter"]=14516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16164, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6555, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=662058, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6555, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14516]={ + ["next_chapter"]=14517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6621, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=668679, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6621, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14517]={ + ["next_chapter"]=14518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5341, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6687, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=675366, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6687, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14518]={ + ["next_chapter"]=14519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16193, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5344, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6754, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682119, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6754, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14519]={ + ["next_chapter"]=14520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16203, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5347, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6821, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=688940, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6821, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=658504, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1451, + ["unit"]=0 + } + }, + [14520]={ + ["next_chapter"]=14521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=16213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5350, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6889, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=695830, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6889, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14521]={ + ["next_chapter"]=14522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16222, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6958, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=702788, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=6958, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14522]={ + ["next_chapter"]=14523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16232, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7028, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=709816, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7028, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14523]={ + ["next_chapter"]=14524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7098, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=716914, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7098, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14524]={ + ["next_chapter"]=14525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16252, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5363, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7169, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=724083, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7169, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14525]={ + ["next_chapter"]=14526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5366, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7241, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=731324, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7241, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14526]={ + ["next_chapter"]=14527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5369, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7313, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=738637, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7313, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14527]={ + ["next_chapter"]=14528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7386, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=746024, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7386, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14528]={ + ["next_chapter"]=14529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16290, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5376, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7460, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=753484, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7460, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14529]={ + ["next_chapter"]=14530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5379, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7535, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=761019, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7535, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=727398, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1452, + ["unit"]=0 + } + }, + [14530]={ + ["next_chapter"]=14531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=16310, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7610, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=768629, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7610, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14531]={ + ["next_chapter"]=14532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7686, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=776315, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7686, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14532]={ + ["next_chapter"]=14533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16329, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7763, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=784079, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7763, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14533]={ + ["next_chapter"]=14534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5392, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7841, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=791919, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7841, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14534]={ + ["next_chapter"]=14535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7919, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=799839, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7919, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14535]={ + ["next_chapter"]=14536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16358, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7998, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=807837, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=7998, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14536]={ + ["next_chapter"]=14537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8078, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=815915, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8078, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14537]={ + ["next_chapter"]=14538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8159, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=824074, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8159, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14538]={ + ["next_chapter"]=14539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16388, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5408, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8241, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=832315, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8241, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14539]={ + ["next_chapter"]=14540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16397, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8323, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=840638, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8323, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=803500, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1453, + ["unit"]=0 + } + }, + [14540]={ + ["next_chapter"]=14541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=16407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5414, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8406, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=849045, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8406, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14541]={ + ["next_chapter"]=14542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5418, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8490, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=857535, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8490, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14542]={ + ["next_chapter"]=14543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8575, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=866111, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8575, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14543]={ + ["next_chapter"]=14544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5424, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8661, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=874772, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8661, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14544]={ + ["next_chapter"]=14545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16446, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5427, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8748, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=883519, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8748, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14545]={ + ["next_chapter"]=14546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8835, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=892355, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8835, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14546]={ + ["next_chapter"]=14547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5434, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8924, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=901278, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=8924, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14547]={ + ["next_chapter"]=14548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5437, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9013, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=910291, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9013, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14548]={ + ["next_chapter"]=14549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16485, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9103, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=919394, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9103, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14549]={ + ["next_chapter"]=14550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5443, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9194, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=928588, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9194, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=887563, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1454, + ["unit"]=0 + } + }, + [14550]={ + ["next_chapter"]=14551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=16505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9286, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=937874, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9286, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14551]={ + ["next_chapter"]=14552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16515, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9379, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=947252, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9379, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14552]={ + ["next_chapter"]=14553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16524, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5453, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9473, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=956725, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9473, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14553]={ + ["next_chapter"]=14554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16534, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5456, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9567, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=966292, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9567, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14554]={ + ["next_chapter"]=14555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16544, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9663, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=975955, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9663, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14555]={ + ["next_chapter"]=14556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16554, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9760, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=985715, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9760, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14556]={ + ["next_chapter"]=14557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16564, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9857, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=995572, + ["unit"]=20 + }, + ["idle_gold"]={ + ["value"]=9857, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14557]={ + ["next_chapter"]=14558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5469, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9956, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1006, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9956, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14558]={ + ["next_chapter"]=14559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10055, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1016, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10055, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14559]={ + ["next_chapter"]=14560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5476, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10156, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1026, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10156, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=980422, + ["unit"]=20 + }, + ["grasp_mastery_reward"]={ + ["value"]=1455, + ["unit"]=0 + } + }, + [14560]={ + ["next_chapter"]=14561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=16603, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10257, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1036, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10257, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14561]={ + ["next_chapter"]=14562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10360, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1046, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10360, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14562]={ + ["next_chapter"]=14563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5485, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10464, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1057, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10464, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14563]={ + ["next_chapter"]=14564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16632, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10568, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1067, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10568, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14564]={ + ["next_chapter"]=14565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16642, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10674, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1078, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10674, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14565]={ + ["next_chapter"]=14566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5495, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10781, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1089, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10781, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14566]={ + ["next_chapter"]=14567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5498, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10888, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1100, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10888, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14567]={ + ["next_chapter"]=14568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16672, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5502, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10997, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1111, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=10997, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14568]={ + ["next_chapter"]=14569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16682, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11107, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1122, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=11107, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14569]={ + ["next_chapter"]=14570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11218, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1133, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=11218, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1456, + ["unit"]=0 + } + }, + [14570]={ + ["next_chapter"]=14571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=16701, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5511, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11331, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1144, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=11331, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14571]={ + ["next_chapter"]=14572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5515, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11444, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1156, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=11444, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14572]={ + ["next_chapter"]=14573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16721, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11558, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1167, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=11558, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14573]={ + ["next_chapter"]=14574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5521, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11674, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1179, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=11674, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14574]={ + ["next_chapter"]=14575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5525, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11791, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1191, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=11791, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14575]={ + ["next_chapter"]=14576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11909, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1203, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=11909, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14576]={ + ["next_chapter"]=14577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16761, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5531, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12028, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1215, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=12028, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14577]={ + ["next_chapter"]=14578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16771, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12148, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1227, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=12148, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14578]={ + ["next_chapter"]=14579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5538, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12269, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1239, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=12269, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14579]={ + ["next_chapter"]=14580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12392, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1252, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=12392, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1196, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1457, + ["unit"]=0 + } + }, + [14580]={ + ["next_chapter"]=14581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=16800, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12516, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1264, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=12516, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14581]={ + ["next_chapter"]=14582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12641, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1277, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=12641, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14582]={ + ["next_chapter"]=14583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5551, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12768, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1290, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=12768, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14583]={ + ["next_chapter"]=14584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12895, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1302, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=12895, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14584]={ + ["next_chapter"]=14585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16840, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13024, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1315, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=13024, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14585]={ + ["next_chapter"]=14586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16850, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5560, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13154, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1329, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=13154, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14586]={ + ["next_chapter"]=14587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13286, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1342, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=13286, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14587]={ + ["next_chapter"]=14588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16870, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5567, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13419, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1355, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=13419, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14588]={ + ["next_chapter"]=14589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16880, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5570, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13553, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1369, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=13553, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14589]={ + ["next_chapter"]=14590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13689, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1383, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=13689, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1321, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1458, + ["unit"]=0 + } + }, + [14590]={ + ["next_chapter"]=14591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=16900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13825, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1396, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=13825, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14591]={ + ["next_chapter"]=14592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13964, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1410, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=13964, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14592]={ + ["next_chapter"]=14593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5583, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14103, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1424, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=14103, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14593]={ + ["next_chapter"]=14594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5587, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14244, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1439, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=14244, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14594]={ + ["next_chapter"]=14595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16939, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5590, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14387, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1453, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=14387, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14595]={ + ["next_chapter"]=14596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5593, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14531, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1468, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=14531, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14596]={ + ["next_chapter"]=14597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16959, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5597, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14676, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1482, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=14676, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14597]={ + ["next_chapter"]=14598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14823, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1497, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=14823, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14598]={ + ["next_chapter"]=14599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5603, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14971, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1512, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=14971, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14599]={ + ["next_chapter"]=14600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=16989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5606, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15121, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1527, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=15121, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1460, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1459, + ["unit"]=0 + } + }, + [14600]={ + ["next_chapter"]=14601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=16999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5610, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15272, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1542, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=15272, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14601]={ + ["next_chapter"]=14602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17009, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5613, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15425, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1558, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=15425, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14602]={ + ["next_chapter"]=14603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5616, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15579, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1573, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=15579, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14603]={ + ["next_chapter"]=14604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17029, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15735, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1589, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=15735, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14604]={ + ["next_chapter"]=14605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17039, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5623, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15892, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1605, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=15892, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14605]={ + ["next_chapter"]=14606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5626, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16051, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1621, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=16051, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14606]={ + ["next_chapter"]=14607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5630, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16211, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1637, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=16211, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14607]={ + ["next_chapter"]=14608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17069, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16373, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1654, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=16373, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14608]={ + ["next_chapter"]=14609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17079, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5636, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16537, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1670, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=16537, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14609]={ + ["next_chapter"]=14610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17089, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5639, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16703, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1687, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=16703, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1612, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + [14610]={ + ["next_chapter"]=14611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=17099, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5643, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16870, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1704, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=16870, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14611]={ + ["next_chapter"]=14612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17109, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17038, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1721, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=17038, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14612]={ + ["next_chapter"]=14613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17209, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1738, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=17209, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14613]={ + ["next_chapter"]=14614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17130, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5653, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17381, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1755, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=17381, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14614]={ + ["next_chapter"]=14615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17555, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1773, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=17555, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14615]={ + ["next_chapter"]=14616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17150, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17730, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1791, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=17730, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14616]={ + ["next_chapter"]=14617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17160, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5663, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17907, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1809, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=17907, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14617]={ + ["next_chapter"]=14618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17170, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18087, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1827, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=18087, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14618]={ + ["next_chapter"]=14619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18267, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1845, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=18267, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14619]={ + ["next_chapter"]=14620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17190, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5673, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18450, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1863, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=18450, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1781, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1461, + ["unit"]=0 + } + }, + [14620]={ + ["next_chapter"]=14621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=17200, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18635, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1882, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=18635, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14621]={ + ["next_chapter"]=14622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5679, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18821, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1901, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=18821, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14622]={ + ["next_chapter"]=14623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17220, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5683, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19009, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1920, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=19009, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14623]={ + ["next_chapter"]=14624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17230, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5686, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19199, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1939, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=19199, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14624]={ + ["next_chapter"]=14625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5689, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19391, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1959, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=19391, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14625]={ + ["next_chapter"]=14626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5693, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19585, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1978, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=19585, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14626]={ + ["next_chapter"]=14627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5696, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19781, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1998, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=19781, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14627]={ + ["next_chapter"]=14628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19979, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2018, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=19979, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14628]={ + ["next_chapter"]=14629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5703, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20179, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2038, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=20179, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14629]={ + ["next_chapter"]=14630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17291, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20380, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2058, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=20380, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=1967, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1462, + ["unit"]=0 + } + }, + [14630]={ + ["next_chapter"]=14631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=17301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5709, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20584, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2079, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=20584, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14631]={ + ["next_chapter"]=14632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20790, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2100, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=20790, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14632]={ + ["next_chapter"]=14633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20998, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2121, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=20998, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14633]={ + ["next_chapter"]=14634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5719, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21208, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2142, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=21208, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14634]={ + ["next_chapter"]=14635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5723, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21420, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2163, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=21420, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14635]={ + ["next_chapter"]=14636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5726, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21634, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2185, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=21634, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14636]={ + ["next_chapter"]=14637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17361, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5729, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21850, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2207, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=21850, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14637]={ + ["next_chapter"]=14638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17372, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22069, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2229, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=22069, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14638]={ + ["next_chapter"]=14639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5736, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22290, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2251, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=22290, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14639]={ + ["next_chapter"]=14640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22513, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2274, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=22513, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1463, + ["unit"]=0 + } + }, + [14640]={ + ["next_chapter"]=14641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=17402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22738, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2297, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=22738, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14641]={ + ["next_chapter"]=14642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17412, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5746, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22965, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2319, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=22965, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14642]={ + ["next_chapter"]=14643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17422, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5749, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23195, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2343, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=23195, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14643]={ + ["next_chapter"]=14644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23427, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2366, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=23427, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14644]={ + ["next_chapter"]=14645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5756, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23661, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2390, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=23661, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14645]={ + ["next_chapter"]=14646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17453, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5759, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23898, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2414, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=23898, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14646]={ + ["next_chapter"]=14647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24137, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2438, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=24137, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14647]={ + ["next_chapter"]=14648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17473, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5766, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24378, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2462, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=24378, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14648]={ + ["next_chapter"]=14649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24622, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2487, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=24622, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14649]={ + ["next_chapter"]=14650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5773, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24868, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2512, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=24868, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1464, + ["unit"]=0 + } + }, + [14650]={ + ["next_chapter"]=14651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=17504, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5776, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25117, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2537, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=25117, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14651]={ + ["next_chapter"]=14652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5780, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25368, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2562, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=25368, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14652]={ + ["next_chapter"]=14653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17524, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5783, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25621, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2588, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=25621, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14653]={ + ["next_chapter"]=14654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17534, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5786, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25878, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2614, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=25878, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14654]={ + ["next_chapter"]=14655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17544, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5790, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26136, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2640, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=26136, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14655]={ + ["next_chapter"]=14656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17555, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26398, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2666, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=26398, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14656]={ + ["next_chapter"]=14657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17565, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26662, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2693, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=26662, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14657]={ + ["next_chapter"]=14658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5800, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26928, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2720, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=26928, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14658]={ + ["next_chapter"]=14659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5803, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27198, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2747, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=27198, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14659]={ + ["next_chapter"]=14660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27470, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2774, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=27470, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2652, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1465, + ["unit"]=0 + } + }, + [14660]={ + ["next_chapter"]=14661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=17606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5810, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27744, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2802, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=27744, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14661]={ + ["next_chapter"]=14662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5813, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28022, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2830, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=28022, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14662]={ + ["next_chapter"]=14663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17626, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28302, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2858, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=28302, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14663]={ + ["next_chapter"]=14664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28585, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2887, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=28585, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14664]={ + ["next_chapter"]=14665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28871, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2916, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=28871, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14665]={ + ["next_chapter"]=14666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17657, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29160, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2945, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=29160, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14666]={ + ["next_chapter"]=14667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17667, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5830, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29451, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2975, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=29451, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14667]={ + ["next_chapter"]=14668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5834, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29746, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3004, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=29746, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14668]={ + ["next_chapter"]=14669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30043, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3034, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=30043, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14669]={ + ["next_chapter"]=14670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5840, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30344, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3065, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=30344, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=2929, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1466, + ["unit"]=0 + } + }, + [14670]={ + ["next_chapter"]=14671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=17708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5844, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30647, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3095, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=30647, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14671]={ + ["next_chapter"]=14672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17718, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5847, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30953, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3126, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=30953, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14672]={ + ["next_chapter"]=14673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17729, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5850, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31263, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3158, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=31263, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14673]={ + ["next_chapter"]=14674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5854, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31576, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3189, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=31576, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14674]={ + ["next_chapter"]=14675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5857, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31891, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3221, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=31891, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14675]={ + ["next_chapter"]=14676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32210, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3253, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=32210, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14676]={ + ["next_chapter"]=14677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5864, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32532, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3286, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=32532, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14677]={ + ["next_chapter"]=14678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17780, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5867, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32858, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3319, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=32858, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14678]={ + ["next_chapter"]=14679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33186, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3352, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=33186, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14679]={ + ["next_chapter"]=14680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5874, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33518, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3385, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=33518, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3236, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1467, + ["unit"]=0 + } + }, + [14680]={ + ["next_chapter"]=14681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=17811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33853, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3419, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=33853, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14681]={ + ["next_chapter"]=14682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17821, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5881, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34192, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3453, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=34192, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14682]={ + ["next_chapter"]=14683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5884, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34534, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3488, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=34534, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14683]={ + ["next_chapter"]=14684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34879, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3523, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=34879, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14684]={ + ["next_chapter"]=14685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17852, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35228, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3558, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=35228, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14685]={ + ["next_chapter"]=14686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17863, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35580, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3594, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=35580, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14686]={ + ["next_chapter"]=14687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17873, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35936, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3630, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=35936, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14687]={ + ["next_chapter"]=14688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5901, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36295, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3666, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=36295, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14688]={ + ["next_chapter"]=14689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17894, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36658, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3702, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=36658, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14689]={ + ["next_chapter"]=14690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17904, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5908, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37025, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3740, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=37025, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3574, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1468, + ["unit"]=0 + } + }, + [14690]={ + ["next_chapter"]=14691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=17914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37395, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3777, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=37395, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14691]={ + ["next_chapter"]=14692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37769, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3815, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=37769, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14692]={ + ["next_chapter"]=14693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38147, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3853, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=38147, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14693]={ + ["next_chapter"]=14694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5922, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38528, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3891, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=38528, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14694]={ + ["next_chapter"]=14695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17956, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5925, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38914, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3930, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=38914, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14695]={ + ["next_chapter"]=14696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17966, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5929, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39303, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3970, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=39303, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14696]={ + ["next_chapter"]=14697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17976, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5932, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39696, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4009, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=39696, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14697]={ + ["next_chapter"]=14698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5936, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40093, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4049, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=40093, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14698]={ + ["next_chapter"]=14699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=17997, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5939, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40494, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4090, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=40494, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14699]={ + ["next_chapter"]=14700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18007, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5942, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40899, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4131, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=40899, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=3948, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1469, + ["unit"]=0 + } + }, + [14700]={ + ["next_chapter"]=14701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=18018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5946, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41308, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4172, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=41308, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14701]={ + ["next_chapter"]=14702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18028, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41721, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4214, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=41721, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14702]={ + ["next_chapter"]=14703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18039, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42138, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4256, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=42138, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14703]={ + ["next_chapter"]=14704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5956, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42559, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4298, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=42559, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14704]={ + ["next_chapter"]=14705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5960, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42985, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4341, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=42985, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14705]={ + ["next_chapter"]=14706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5963, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43415, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4385, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=43415, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14706]={ + ["next_chapter"]=14707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43849, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4429, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=43849, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14707]={ + ["next_chapter"]=14708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18091, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5970, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44287, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4473, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=44287, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14708]={ + ["next_chapter"]=14709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5973, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44730, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4518, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=44730, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14709]={ + ["next_chapter"]=14710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45177, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4563, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=45177, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4361, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + [14710]={ + ["next_chapter"]=14711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=18122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5980, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45629, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4609, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=45629, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14711]={ + ["next_chapter"]=14712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46085, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4655, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=46085, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14712]={ + ["next_chapter"]=14713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18143, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5987, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46546, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4701, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=46546, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14713]={ + ["next_chapter"]=14714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18153, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47012, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4748, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=47012, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14714]={ + ["next_chapter"]=14715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18164, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47482, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4796, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=47482, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14715]={ + ["next_chapter"]=14716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=5997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47957, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4844, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=47957, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14716]={ + ["next_chapter"]=14717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6001, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48436, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4892, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=48436, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14717]={ + ["next_chapter"]=14718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48921, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4941, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=48921, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14718]={ + ["next_chapter"]=14719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18205, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6008, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49410, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4990, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=49410, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14719]={ + ["next_chapter"]=14720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6011, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49904, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5040, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=49904, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=4818, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1471, + ["unit"]=0 + } + }, + [14720]={ + ["next_chapter"]=14721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=18226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6015, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50403, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5091, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=50403, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14721]={ + ["next_chapter"]=14722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6018, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50907, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5142, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=50907, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14722]={ + ["next_chapter"]=14723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18247, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6022, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51416, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5193, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=51416, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14723]={ + ["next_chapter"]=14724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18258, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51930, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5245, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=51930, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14724]={ + ["next_chapter"]=14725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52450, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5297, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=52450, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14725]={ + ["next_chapter"]=14726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18279, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6032, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52974, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5350, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=52974, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14726]={ + ["next_chapter"]=14727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6035, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53504, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5404, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=53504, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14727]={ + ["next_chapter"]=14728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6039, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54039, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5458, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=54039, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14728]={ + ["next_chapter"]=14729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18310, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54579, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5513, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=54579, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14729]={ + ["next_chapter"]=14730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55125, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5568, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=55125, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5322, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1472, + ["unit"]=0 + } + }, + [14730]={ + ["next_chapter"]=14731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=18331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55676, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5623, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=55676, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14731]={ + ["next_chapter"]=14732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6053, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56233, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5680, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=56233, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14732]={ + ["next_chapter"]=14733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18352, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56795, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5736, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=56795, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14733]={ + ["next_chapter"]=14734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6060, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57363, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5794, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=57363, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14734]={ + ["next_chapter"]=14735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18373, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57937, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5852, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=57937, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14735]={ + ["next_chapter"]=14736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18384, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58516, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5910, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=58516, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14736]={ + ["next_chapter"]=14737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59101, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5969, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=59101, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14737]={ + ["next_chapter"]=14738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18405, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59693, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6029, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=59693, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14738]={ + ["next_chapter"]=14739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60289, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6089, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=60289, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14739]={ + ["next_chapter"]=14740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18426, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6081, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60892, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6150, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=60892, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=5878, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1473, + ["unit"]=0 + } + }, + [14740]={ + ["next_chapter"]=14741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=18436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61501, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6212, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=61501, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14741]={ + ["next_chapter"]=14742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62116, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6274, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=62116, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14742]={ + ["next_chapter"]=14743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18457, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6091, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62737, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6336, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=62737, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14743]={ + ["next_chapter"]=14744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6094, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63365, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6400, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=63365, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14744]={ + ["next_chapter"]=14745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63998, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6464, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=63998, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14745]={ + ["next_chapter"]=14746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64638, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6528, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=64638, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14746]={ + ["next_chapter"]=14747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6105, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65285, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6594, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=65285, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14747]={ + ["next_chapter"]=14748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6108, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65938, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6660, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=65938, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14748]={ + ["next_chapter"]=14749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18521, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66597, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6726, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=66597, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14749]={ + ["next_chapter"]=14750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18531, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6115, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67263, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6794, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=67263, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=6493, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1474, + ["unit"]=0 + } + }, + [14750]={ + ["next_chapter"]=14751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=18542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67936, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6861, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=67936, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14751]={ + ["next_chapter"]=14752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6122, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68615, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6930, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=68615, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14752]={ + ["next_chapter"]=14753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69301, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6999, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=69301, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14753]={ + ["next_chapter"]=14754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18574, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69994, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7069, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=69994, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14754]={ + ["next_chapter"]=14755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6133, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70694, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7140, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=70694, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14755]={ + ["next_chapter"]=14756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6136, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71401, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7212, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=71401, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14756]={ + ["next_chapter"]=14757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72115, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7284, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=72115, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14757]={ + ["next_chapter"]=14758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6143, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72836, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7356, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=72836, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14758]={ + ["next_chapter"]=14759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6147, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73565, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7430, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=73565, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14759]={ + ["next_chapter"]=14760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74300, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7504, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=74300, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7173, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1475, + ["unit"]=0 + } + }, + [14760]={ + ["next_chapter"]=14761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=18648, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75043, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7579, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=75043, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14761]={ + ["next_chapter"]=14762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75794, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7655, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=75794, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14762]={ + ["next_chapter"]=14763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18669, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6161, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76552, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7732, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=76552, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14763]={ + ["next_chapter"]=14764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18680, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6164, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77317, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7809, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=77317, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14764]={ + ["next_chapter"]=14765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78090, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7887, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=78090, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14765]={ + ["next_chapter"]=14766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18701, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78871, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7966, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=78871, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14766]={ + ["next_chapter"]=14767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6175, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79660, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8046, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=79660, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14767]={ + ["next_chapter"]=14768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18723, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80456, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8126, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=80456, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14768]={ + ["next_chapter"]=14769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18733, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6182, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81261, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8207, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=81261, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14769]={ + ["next_chapter"]=14770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18744, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82074, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8289, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=82074, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=7923, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1476, + ["unit"]=0 + } + }, + [14770]={ + ["next_chapter"]=14771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=18754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82894, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8372, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=82894, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14771]={ + ["next_chapter"]=14772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18765, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83723, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8456, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=83723, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14772]={ + ["next_chapter"]=14773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6196, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84561, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8541, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=84561, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14773]={ + ["next_chapter"]=14774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18787, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6200, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85406, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8626, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=85406, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14774]={ + ["next_chapter"]=14775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18797, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6203, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86260, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8712, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=86260, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14775]={ + ["next_chapter"]=14776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18808, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6207, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87123, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8799, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=87123, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14776]={ + ["next_chapter"]=14777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6210, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87994, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8887, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=87994, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14777]={ + ["next_chapter"]=14778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18829, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88874, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8976, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=88874, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14778]={ + ["next_chapter"]=14779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18840, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89763, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9066, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=89763, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14779]={ + ["next_chapter"]=14780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18851, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6221, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90660, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9157, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=90660, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=8752, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1477, + ["unit"]=0 + } + }, + [14780]={ + ["next_chapter"]=14781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=18861, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6224, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91567, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9248, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=91567, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14781]={ + ["next_chapter"]=14782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18872, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92483, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9341, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=92483, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14782]={ + ["next_chapter"]=14783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93407, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9434, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=93407, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14783]={ + ["next_chapter"]=14784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6235, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94342, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9528, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=94342, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14784]={ + ["next_chapter"]=14785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18904, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95285, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9624, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=95285, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14785]={ + ["next_chapter"]=14786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6242, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96238, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9720, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=96238, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14786]={ + ["next_chapter"]=14787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97200, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9817, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=97200, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14787]={ + ["next_chapter"]=14788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6249, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98172, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9915, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=98172, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14788]={ + ["next_chapter"]=14789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6253, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99154, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10015, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=99154, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14789]={ + ["next_chapter"]=14790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18958, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100145, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10115, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=100145, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=9668, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1478, + ["unit"]=0 + } + }, + [14790]={ + ["next_chapter"]=14791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=18969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6260, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101147, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10216, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=101147, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14791]={ + ["next_chapter"]=14792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6263, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102158, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10318, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=102158, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14792]={ + ["next_chapter"]=14793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=18990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6267, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103180, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10421, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=103180, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14793]={ + ["next_chapter"]=14794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19001, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104212, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10525, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=104212, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14794]={ + ["next_chapter"]=14795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19012, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6274, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105254, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10631, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=105254, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14795]={ + ["next_chapter"]=14796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19022, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6277, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106306, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10737, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=106306, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14796]={ + ["next_chapter"]=14797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107369, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10844, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=107369, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14797]={ + ["next_chapter"]=14798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108443, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10953, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=108443, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14798]={ + ["next_chapter"]=14799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109528, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11062, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=109528, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14799]={ + ["next_chapter"]=14800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19065, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6292, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110623, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11173, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=110623, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=10679, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1479, + ["unit"]=0 + } + }, + [14800]={ + ["next_chapter"]=14801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=19076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111729, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11285, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=111729, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14801]={ + ["next_chapter"]=14802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112846, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11397, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=112846, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14802]={ + ["next_chapter"]=14803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6302, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113975, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11511, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=113975, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14803]={ + ["next_chapter"]=14804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19109, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115115, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11627, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=115115, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14804]={ + ["next_chapter"]=14805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6309, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116266, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11743, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=116266, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14805]={ + ["next_chapter"]=14806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19130, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6313, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117428, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11860, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=117428, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14806]={ + ["next_chapter"]=14807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118603, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11979, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=118603, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14807]={ + ["next_chapter"]=14808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19152, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6320, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119789, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12099, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=119789, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14808]={ + ["next_chapter"]=14809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120987, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12220, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=120987, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14809]={ + ["next_chapter"]=14810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6327, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122196, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12342, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=122196, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=11797, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + [14810]={ + ["next_chapter"]=14811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=19184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6331, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123418, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12465, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=123418, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14811]={ + ["next_chapter"]=14812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=124653, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12590, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=124653, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14812]={ + ["next_chapter"]=14813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19206, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125899, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12716, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=125899, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14813]={ + ["next_chapter"]=14814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6342, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127158, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12843, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=127158, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14814]={ + ["next_chapter"]=14815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19228, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=128430, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12971, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=128430, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14815]={ + ["next_chapter"]=14816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6349, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=129714, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13101, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=129714, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14816]={ + ["next_chapter"]=14817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19249, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6352, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131011, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13232, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=131011, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14817]={ + ["next_chapter"]=14818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=132321, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13364, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=132321, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14818]={ + ["next_chapter"]=14819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=133645, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13498, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=133645, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14819]={ + ["next_chapter"]=14820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19282, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6363, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134981, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13633, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=134981, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=13031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1481, + ["unit"]=0 + } + }, + [14820]={ + ["next_chapter"]=14821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=19293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=136331, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13769, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=136331, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14821]={ + ["next_chapter"]=14822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=137694, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13907, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=137694, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14822]={ + ["next_chapter"]=14823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=139071, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14046, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=139071, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14823]={ + ["next_chapter"]=14824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6377, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=140462, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14187, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=140462, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14824]={ + ["next_chapter"]=14825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19336, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=141866, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14328, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=141866, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14825]={ + ["next_chapter"]=14826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=143285, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14472, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=143285, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14826]={ + ["next_chapter"]=14827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19358, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=144718, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14617, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=144718, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14827]={ + ["next_chapter"]=14828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6392, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=146165, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14763, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=146165, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14828]={ + ["next_chapter"]=14829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19380, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=147627, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14910, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=147627, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14829]={ + ["next_chapter"]=14830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19391, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=149103, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15059, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=149103, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=14394, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1482, + ["unit"]=0 + } + }, + [14830]={ + ["next_chapter"]=14831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=19402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=150594, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15210, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=150594, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14831]={ + ["next_chapter"]=14832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19413, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6406, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=152100, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15362, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=152100, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14832]={ + ["next_chapter"]=14833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19424, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6410, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=153621, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15516, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=153621, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14833]={ + ["next_chapter"]=14834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6413, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=155157, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15671, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=155157, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14834]={ + ["next_chapter"]=14835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=156709, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15828, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=156709, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14835]={ + ["next_chapter"]=14836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=158276, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15986, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=158276, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14836]={ + ["next_chapter"]=14837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6424, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=159859, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16146, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=159859, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14837]={ + ["next_chapter"]=14838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19478, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6428, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=161457, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16307, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=161457, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14838]={ + ["next_chapter"]=14839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6431, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=163072, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16470, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=163072, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14839]={ + ["next_chapter"]=14840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6435, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=164702, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16635, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=164702, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=15900, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1483, + ["unit"]=0 + } + }, + [14840]={ + ["next_chapter"]=14841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=19511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=166349, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16801, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=166349, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14841]={ + ["next_chapter"]=14842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19522, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6442, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=168013, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16969, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=168013, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14842]={ + ["next_chapter"]=14843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19533, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6446, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=169693, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17139, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=169693, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14843]={ + ["next_chapter"]=14844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19544, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6449, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=171390, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17310, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=171390, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14844]={ + ["next_chapter"]=14845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19555, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6453, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=173104, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17483, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=173104, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14845]={ + ["next_chapter"]=14846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6457, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=174835, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17658, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=174835, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14846]={ + ["next_chapter"]=14847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=176583, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17835, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=176583, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14847]={ + ["next_chapter"]=14848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=178349, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18013, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=178349, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14848]={ + ["next_chapter"]=14849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=180133, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18193, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=180133, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14849]={ + ["next_chapter"]=14850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19610, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=181934, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18375, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=181934, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=17564, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1484, + ["unit"]=0 + } + }, + [14850]={ + ["next_chapter"]=14851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=19621, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6475, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=183753, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18559, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=183753, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14851]={ + ["next_chapter"]=14852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19632, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6478, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=185591, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18745, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=185591, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14852]={ + ["next_chapter"]=14853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=187447, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18932, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=187447, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14853]={ + ["next_chapter"]=14854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6486, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=189321, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19121, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=189321, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14854]={ + ["next_chapter"]=14855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19665, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=191214, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19313, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=191214, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14855]={ + ["next_chapter"]=14856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19676, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=193127, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19506, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=193127, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14856]={ + ["next_chapter"]=14857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19687, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6497, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=195058, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19701, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=195058, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14857]={ + ["next_chapter"]=14858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=197008, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19898, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=197008, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14858]={ + ["next_chapter"]=14859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19709, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6504, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=198978, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20097, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=198978, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14859]={ + ["next_chapter"]=14860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=200968, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20298, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=200968, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=19401, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1485, + ["unit"]=0 + } + }, + [14860]={ + ["next_chapter"]=14861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=19731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6511, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=202978, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20501, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=202978, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14861]={ + ["next_chapter"]=14862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6515, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=205008, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20706, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=205008, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14862]={ + ["next_chapter"]=14863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=207058, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20913, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=207058, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14863]={ + ["next_chapter"]=14864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6522, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=209128, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21122, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=209128, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14864]={ + ["next_chapter"]=14865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6526, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=211220, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21333, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=211220, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14865]={ + ["next_chapter"]=14866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6529, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=213332, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21547, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=213332, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14866]={ + ["next_chapter"]=14867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19797, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=215465, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21762, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=215465, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14867]={ + ["next_chapter"]=14868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19808, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6537, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=217620, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21980, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=217620, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14868]={ + ["next_chapter"]=14869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6540, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=219796, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22199, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=219796, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14869]={ + ["next_chapter"]=14870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=221994, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22421, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=221994, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=21431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1486, + ["unit"]=0 + } + }, + [14870]={ + ["next_chapter"]=14871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=19841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=224214, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22646, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=224214, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14871]={ + ["next_chapter"]=14872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19852, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6551, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=226456, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22872, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=226456, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14872]={ + ["next_chapter"]=14873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19863, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6555, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=228721, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23101, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=228721, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14873]={ + ["next_chapter"]=14874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19875, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6559, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=231008, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23332, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=231008, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14874]={ + ["next_chapter"]=14875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6562, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=233318, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23565, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=233318, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14875]={ + ["next_chapter"]=14876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6566, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=235651, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23801, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=235651, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14876]={ + ["next_chapter"]=14877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19908, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6570, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=238008, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24039, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=238008, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14877]={ + ["next_chapter"]=14878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6573, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=240388, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24279, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=240388, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14878]={ + ["next_chapter"]=14879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=242792, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24522, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=242792, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14879]={ + ["next_chapter"]=14880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19941, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6581, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=245219, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24767, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=245219, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=23673, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1487, + ["unit"]=0 + } + }, + [14880]={ + ["next_chapter"]=14881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=19952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6584, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=247672, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25015, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=247672, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14881]={ + ["next_chapter"]=14882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19963, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=250148, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25265, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=250148, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14882]={ + ["next_chapter"]=14883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6592, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=252650, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25518, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=252650, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14883]={ + ["next_chapter"]=14884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19986, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6595, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=255176, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25773, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=255176, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14884]={ + ["next_chapter"]=14885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=19997, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6599, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=257728, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26031, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=257728, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14885]={ + ["next_chapter"]=14886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6603, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=260305, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26291, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=260305, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14886]={ + ["next_chapter"]=14887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6606, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=262908, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26554, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=262908, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14887]={ + ["next_chapter"]=14888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6610, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=265538, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26819, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=265538, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14888]={ + ["next_chapter"]=14889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6614, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=268193, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27087, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=268193, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14889]={ + ["next_chapter"]=14890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20052, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=270875, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27358, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=270875, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=26150, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1488, + ["unit"]=0 + } + }, + [14890]={ + ["next_chapter"]=14891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=20064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6621, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=273584, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27632, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=273584, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14891]={ + ["next_chapter"]=14892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=276319, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27908, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=276319, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14892]={ + ["next_chapter"]=14893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20086, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=279083, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28187, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=279083, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14893]={ + ["next_chapter"]=14894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6632, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=281873, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28469, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=281873, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14894]={ + ["next_chapter"]=14895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6636, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=284692, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28754, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=284692, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14895]={ + ["next_chapter"]=14896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6639, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=287539, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29041, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=287539, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14896]={ + ["next_chapter"]=14897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6643, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=290414, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29332, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=290414, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14897]={ + ["next_chapter"]=14898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6647, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=293319, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29625, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=293319, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14898]={ + ["next_chapter"]=14899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20153, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6650, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=296252, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29921, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=296252, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14899]={ + ["next_chapter"]=14900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20164, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=299214, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30221, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=299214, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=28886, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1489, + ["unit"]=0 + } + }, + [14900]={ + ["next_chapter"]=14901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=20175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=302206, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30523, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=302206, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14901]={ + ["next_chapter"]=14902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20187, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6662, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=305229, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30828, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=305229, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14902]={ + ["next_chapter"]=14903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20198, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=308281, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31136, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=308281, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14903]={ + ["next_chapter"]=14904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=311364, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31448, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=311364, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14904]={ + ["next_chapter"]=14905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20220, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6673, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=314477, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31762, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=314477, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14905]={ + ["next_chapter"]=14906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=317622, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32080, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=317622, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14906]={ + ["next_chapter"]=14907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6680, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=320798, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32401, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=320798, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14907]={ + ["next_chapter"]=14908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=324006, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32725, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=324006, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14908]={ + ["next_chapter"]=14909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20265, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=327246, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33052, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=327246, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14909]={ + ["next_chapter"]=14910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6691, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=330519, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33382, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=330519, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=31908, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1490, + ["unit"]=0 + } + }, + [14910]={ + ["next_chapter"]=14911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=20288, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=333824, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33716, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=333824, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14911]={ + ["next_chapter"]=14912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=337162, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34053, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=337162, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14912]={ + ["next_chapter"]=14913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20310, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6702, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=340534, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34394, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=340534, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14913]={ + ["next_chapter"]=14914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=343939, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34738, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=343939, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14914]={ + ["next_chapter"]=14915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20333, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=347379, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35085, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=347379, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14915]={ + ["next_chapter"]=14916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20344, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=350852, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35436, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=350852, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14916]={ + ["next_chapter"]=14917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20355, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=354361, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35790, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=354361, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14917]={ + ["next_chapter"]=14918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6721, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=357904, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36148, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=357904, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14918]={ + ["next_chapter"]=14919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6725, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=361483, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36510, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=361483, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14919]={ + ["next_chapter"]=14920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6728, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=365098, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36875, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=365098, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=35246, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1491, + ["unit"]=0 + } + }, + [14920]={ + ["next_chapter"]=14921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=20400, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6732, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=368749, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37244, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=368749, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14921]={ + ["next_chapter"]=14922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20411, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6736, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=372437, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37616, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=372437, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14922]={ + ["next_chapter"]=14923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20423, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=376161, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37992, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=376161, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14923]={ + ["next_chapter"]=14924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=379923, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38372, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=379923, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14924]={ + ["next_chapter"]=14925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=383722, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38756, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=383722, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14925]={ + ["next_chapter"]=14926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20457, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=387559, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39143, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=387559, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14926]={ + ["next_chapter"]=14927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6754, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=391435, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39535, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=391435, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14927]={ + ["next_chapter"]=14928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6758, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=395349, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39930, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=395349, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14928]={ + ["next_chapter"]=14929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6762, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=399303, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40330, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=399303, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14929]={ + ["next_chapter"]=14930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6766, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=403296, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40733, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=403296, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=38933, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1492, + ["unit"]=0 + } + }, + [14930]={ + ["next_chapter"]=14931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=20513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=407329, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41140, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=407329, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14931]={ + ["next_chapter"]=14932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6773, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=411402, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41552, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=411402, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14932]={ + ["next_chapter"]=14933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20536, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6777, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=415516, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41967, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=415516, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14933]={ + ["next_chapter"]=14934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20547, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6781, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=419671, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42387, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=419671, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14934]={ + ["next_chapter"]=14935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20559, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=423868, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42811, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=423868, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14935]={ + ["next_chapter"]=14936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6788, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=428107, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43239, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=428107, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14936]={ + ["next_chapter"]=14937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20581, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=432388, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43671, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=432388, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14937]={ + ["next_chapter"]=14938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=436711, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44108, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=436711, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14938]={ + ["next_chapter"]=14939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=441079, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44549, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=441079, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14939]={ + ["next_chapter"]=14940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20615, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6803, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=445489, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44994, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=445489, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=43007, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1493, + ["unit"]=0 + } + }, + [14940]={ + ["next_chapter"]=14941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=20627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6807, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=449944, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45444, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=449944, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14941]={ + ["next_chapter"]=14942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20638, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=454444, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45899, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=454444, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14942]={ + ["next_chapter"]=14943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6814, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=458988, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46358, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=458988, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14943]={ + ["next_chapter"]=14944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20661, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6818, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=463578, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46821, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=463578, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14944]={ + ["next_chapter"]=14945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20672, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=468214, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47290, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=468214, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14945]={ + ["next_chapter"]=14946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20683, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6826, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=472896, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47762, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=472896, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14946]={ + ["next_chapter"]=14947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=477625, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48240, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=477625, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14947]={ + ["next_chapter"]=14948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20706, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=482401, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48723, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=482401, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14948]={ + ["next_chapter"]=14949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20718, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=487225, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49210, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=487225, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14949]={ + ["next_chapter"]=14950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20729, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6841, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=492097, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49702, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=492097, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=47506, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1494, + ["unit"]=0 + } + }, + [14950]={ + ["next_chapter"]=14951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=20740, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6844, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=497018, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50199, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=497018, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14951]={ + ["next_chapter"]=14952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=501989, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50701, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=501989, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14952]={ + ["next_chapter"]=14953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6852, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=507008, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51208, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=507008, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14953]={ + ["next_chapter"]=14954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=512079, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51720, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=512079, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14954]={ + ["next_chapter"]=14955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6859, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=517199, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52237, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=517199, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14955]={ + ["next_chapter"]=14956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6863, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=522371, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52760, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=522371, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14956]={ + ["next_chapter"]=14957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20809, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6867, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=527595, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53287, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=527595, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14957]={ + ["next_chapter"]=14958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=532871, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53820, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=532871, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14958]={ + ["next_chapter"]=14959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6875, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=538200, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54358, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=538200, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14959]={ + ["next_chapter"]=14960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=543582, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54902, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=543582, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=52476, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1495, + ["unit"]=0 + } + }, + [14960]={ + ["next_chapter"]=14961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=20855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=549017, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55451, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=549017, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14961]={ + ["next_chapter"]=14962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6886, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=554508, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56005, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=554508, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14962]={ + ["next_chapter"]=14963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=560053, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56565, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=560053, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14963]={ + ["next_chapter"]=14964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6893, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=565653, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57131, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=565653, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14964]={ + ["next_chapter"]=14965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20901, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6897, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=571310, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57702, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=571310, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14965]={ + ["next_chapter"]=14966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20912, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6901, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=577023, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58279, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=577023, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14966]={ + ["next_chapter"]=14967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=582793, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58862, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=582793, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14967]={ + ["next_chapter"]=14968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=588621, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59451, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=588621, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14968]={ + ["next_chapter"]=14969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20946, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=594507, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60045, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=594507, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14969]={ + ["next_chapter"]=14970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20958, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6916, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=600452, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60646, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=600452, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=57966, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1496, + ["unit"]=0 + } + }, + [14970]={ + ["next_chapter"]=14971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=20969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=606457, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61252, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=606457, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14971]={ + ["next_chapter"]=14972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6924, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=612521, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61865, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=612521, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14972]={ + ["next_chapter"]=14973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=20992, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6927, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=618647, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62483, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=618647, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14973]={ + ["next_chapter"]=14974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21004, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=624833, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63108, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=624833, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14974]={ + ["next_chapter"]=14975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=631081, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63739, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=631081, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14975]={ + ["next_chapter"]=14976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6939, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=637392, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64377, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=637392, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14976]={ + ["next_chapter"]=14977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21038, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=643766, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65020, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=643766, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14977]={ + ["next_chapter"]=14978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21050, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6946, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=650204, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65671, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=650204, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14978]={ + ["next_chapter"]=14979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21061, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6950, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=656706, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66327, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=656706, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14979]={ + ["next_chapter"]=14980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6954, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=663273, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66991, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=663273, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=64031, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1497, + ["unit"]=0 + } + }, + [14980]={ + ["next_chapter"]=14981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=21085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6958, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=669906, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67660, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=669906, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14981]={ + ["next_chapter"]=14982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6962, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=676605, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68337, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=676605, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14982]={ + ["next_chapter"]=14983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=683371, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69020, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=683371, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14983]={ + ["next_chapter"]=14984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6969, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=690204, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69711, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=690204, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14984]={ + ["next_chapter"]=14985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6973, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=697107, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70408, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=697107, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14985]={ + ["next_chapter"]=14986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=704078, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71112, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=704078, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14986]={ + ["next_chapter"]=14987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21154, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6981, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=711118, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71823, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=711118, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14987]={ + ["next_chapter"]=14988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=718230, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72541, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=718230, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14988]={ + ["next_chapter"]=14989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6988, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=725412, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73267, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=725412, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14989]={ + ["next_chapter"]=14990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=732666, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73999, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=732666, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=70730, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1498, + ["unit"]=0 + } + }, + [14990]={ + ["next_chapter"]=14991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=21200, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=6996, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=739993, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74739, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=739993, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14991]={ + ["next_chapter"]=14992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7000, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=747393, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75487, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=747393, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14992]={ + ["next_chapter"]=14993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=754866, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76242, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=754866, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14993]={ + ["next_chapter"]=14994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=762415, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77004, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=762415, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14994]={ + ["next_chapter"]=14995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7011, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=770039, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77774, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=770039, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14995]={ + ["next_chapter"]=14996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21258, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7015, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=777740, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78552, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=777740, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14996]={ + ["next_chapter"]=14997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=785517, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79337, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=785517, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14997]={ + ["next_chapter"]=14998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7023, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=793372, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80131, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=793372, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14998]={ + ["next_chapter"]=14999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7027, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=801306, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80932, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=801306, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [14999]={ + ["next_chapter"]=15000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=809319, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81741, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=809319, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=78130, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1499, + ["unit"]=0 + } + }, + [15000]={ + ["next_chapter"]=15001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=21316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7034, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=817412, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82559, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=817412, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + } +} +local config = { +data=chapter3,count=5000 +} +return config \ No newline at end of file diff --git a/lua/app/config/chapter3.lua.meta b/lua/app/config/chapter3.lua.meta new file mode 100644 index 00000000..9459b672 --- /dev/null +++ b/lua/app/config/chapter3.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b630fe9f9b843654eac57c109a114693 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/chapter4.lua b/lua/app/config/chapter4.lua new file mode 100644 index 00000000..a5b8cf01 --- /dev/null +++ b/lua/app/config/chapter4.lua @@ -0,0 +1,175506 @@ +local chapter4 = { + [15001]={ + ["next_chapter"]=15002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21328, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7038, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=825586, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83384, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=825586, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15002]={ + ["next_chapter"]=15003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=833842, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84218, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=833842, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15003]={ + ["next_chapter"]=15004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=842181, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85060, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=842181, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15004]={ + ["next_chapter"]=15005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7050, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=850602, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85911, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=850602, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15005]={ + ["next_chapter"]=15006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21374, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7053, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=859108, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86770, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=859108, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15006]={ + ["next_chapter"]=15007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=867700, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87638, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=867700, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15007]={ + ["next_chapter"]=15008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21397, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=876377, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88514, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=876377, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15008]={ + ["next_chapter"]=15009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7065, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=885140, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89399, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=885140, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15009]={ + ["next_chapter"]=15010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=893992, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90293, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=893992, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=86304, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + [15010]={ + ["next_chapter"]=15011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=21432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7073, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=902932, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91196, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=902932, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15011]={ + ["next_chapter"]=15012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21444, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=911961, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92108, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=911961, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15012]={ + ["next_chapter"]=15013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=921081, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93029, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=921081, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15013]={ + ["next_chapter"]=15014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=930291, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93959, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=930291, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15014]={ + ["next_chapter"]=15015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7088, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=939594, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94899, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=939594, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15015]={ + ["next_chapter"]=15016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7092, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=948990, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95848, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=948990, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15016]={ + ["next_chapter"]=15017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=958480, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96806, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=958480, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15017]={ + ["next_chapter"]=15018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7100, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=968065, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97775, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=968065, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15018]={ + ["next_chapter"]=15019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7104, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=977746, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98752, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=977746, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15019]={ + ["next_chapter"]=15020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=987523, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99740, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=987523, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=95333, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1501, + ["unit"]=0 + } + }, + [15020]={ + ["next_chapter"]=15021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=21549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=997398, + ["unit"]=20 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100737, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=997398, + ["unit"]=20 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15021]={ + ["next_chapter"]=15022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21561, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7115, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1007, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101745, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1007, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15022]={ + ["next_chapter"]=15023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1017, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102762, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1017, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15023]={ + ["next_chapter"]=15024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1028, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103790, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1028, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15024]={ + ["next_chapter"]=15025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1038, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104828, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1038, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15025]={ + ["next_chapter"]=15026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21608, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7131, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1048, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105876, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1048, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15026]={ + ["next_chapter"]=15027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21619, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7134, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1059, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106935, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1059, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15027]={ + ["next_chapter"]=15028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7138, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1069, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108004, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1069, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15028]={ + ["next_chapter"]=15029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1080, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109084, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1080, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15029]={ + ["next_chapter"]=15030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7146, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1091, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110175, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1091, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=105307, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1502, + ["unit"]=0 + } + }, + [15030]={ + ["next_chapter"]=15031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=21666, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1102, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111277, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1102, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15031]={ + ["next_chapter"]=15032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21678, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1113, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112389, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1113, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15032]={ + ["next_chapter"]=15033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21690, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1124, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113513, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1124, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15033]={ + ["next_chapter"]=15034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7162, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1135, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114648, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1135, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15034]={ + ["next_chapter"]=15035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1146, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115795, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1146, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15035]={ + ["next_chapter"]=15036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7169, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1158, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116953, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1158, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15036]={ + ["next_chapter"]=15037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7173, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1170, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118122, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1170, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15037]={ + ["next_chapter"]=15038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1181, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119304, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1181, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15038]={ + ["next_chapter"]=15039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21760, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1193, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120497, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1193, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15039]={ + ["next_chapter"]=15040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21772, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1205, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121702, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1205, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=116325, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1503, + ["unit"]=0 + } + }, + [15040]={ + ["next_chapter"]=15041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=21784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1217, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122919, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1217, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15041]={ + ["next_chapter"]=15042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21796, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1229, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124148, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1229, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15042]={ + ["next_chapter"]=15043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21808, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7197, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1241, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125389, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1241, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15043]={ + ["next_chapter"]=15044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7200, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1254, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126643, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1254, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15044]={ + ["next_chapter"]=15045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21831, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1266, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127910, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1266, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15045]={ + ["next_chapter"]=15046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7208, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1279, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129189, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1279, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15046]={ + ["next_chapter"]=15047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7212, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1292, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130481, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1292, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15047]={ + ["next_chapter"]=15048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7216, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1305, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131785, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1305, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15048]={ + ["next_chapter"]=15049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1318, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133103, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1318, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15049]={ + ["next_chapter"]=15050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7224, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1331, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134434, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1331, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=128495, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1504, + ["unit"]=0 + } + }, + [15050]={ + ["next_chapter"]=15051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=21902, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1344, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135779, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1344, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15051]={ + ["next_chapter"]=15052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7232, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1358, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137136, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1358, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15052]={ + ["next_chapter"]=15053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1371, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138508, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1371, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15053]={ + ["next_chapter"]=15054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7239, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1385, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139893, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1385, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15054]={ + ["next_chapter"]=15055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7243, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1399, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141292, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1399, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15055]={ + ["next_chapter"]=15056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1413, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142705, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1413, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15056]={ + ["next_chapter"]=15057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7251, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1427, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144132, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1427, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15057]={ + ["next_chapter"]=15058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7255, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1441, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145573, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1441, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15058]={ + ["next_chapter"]=15059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=21997, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1456, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147029, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1456, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15059]={ + ["next_chapter"]=15060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22009, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7263, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1470, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148499, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1470, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=141938, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1505, + ["unit"]=0 + } + }, + [15060]={ + ["next_chapter"]=15061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=22021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7267, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1485, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149984, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1485, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15061]={ + ["next_chapter"]=15062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7271, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1500, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151484, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1500, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15062]={ + ["next_chapter"]=15063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7275, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1515, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152999, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1515, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15063]={ + ["next_chapter"]=15064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1530, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154529, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1530, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15064]={ + ["next_chapter"]=15065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22068, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7282, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1545, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156074, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1545, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15065]={ + ["next_chapter"]=15066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7286, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1561, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157635, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1561, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15066]={ + ["next_chapter"]=15067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22092, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7290, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1576, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159211, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1576, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15067]={ + ["next_chapter"]=15068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22104, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1592, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160803, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1592, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15068]={ + ["next_chapter"]=15069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7298, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1608, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162411, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1608, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15069]={ + ["next_chapter"]=15070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22128, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7302, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1624, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164035, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1624, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=156788, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1506, + ["unit"]=0 + } + }, + [15070]={ + ["next_chapter"]=15071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=22140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1640, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165676, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1640, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15071]={ + ["next_chapter"]=15072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7310, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1657, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167332, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1657, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15072]={ + ["next_chapter"]=15073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1673, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169006, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1673, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15073]={ + ["next_chapter"]=15074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7318, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1690, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170696, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1690, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15074]={ + ["next_chapter"]=15075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22187, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1707, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172403, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1707, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15075]={ + ["next_chapter"]=15076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7326, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1724, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174127, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1724, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15076]={ + ["next_chapter"]=15077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1741, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175868, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1741, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15077]={ + ["next_chapter"]=15078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1759, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177627, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1759, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15078]={ + ["next_chapter"]=15079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1776, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179403, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1776, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15079]={ + ["next_chapter"]=15080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22247, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7341, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1794, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181197, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1794, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=173192, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1507, + ["unit"]=0 + } + }, + [15080]={ + ["next_chapter"]=15081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=22259, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1812, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183009, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1812, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15081]={ + ["next_chapter"]=15082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7349, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1830, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184839, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1830, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15082]={ + ["next_chapter"]=15083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22283, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1848, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186687, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1848, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15083]={ + ["next_chapter"]=15084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1867, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188554, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1867, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15084]={ + ["next_chapter"]=15085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22307, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7361, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1886, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190440, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1886, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15085]={ + ["next_chapter"]=15086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1904, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192344, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1904, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15086]={ + ["next_chapter"]=15087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7369, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1923, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194268, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1923, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15087]={ + ["next_chapter"]=15088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22343, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1943, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196210, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1943, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15088]={ + ["next_chapter"]=15089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22355, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7377, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1962, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198173, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1962, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15089]={ + ["next_chapter"]=15090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1982, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200154, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=1982, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=191312, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1508, + ["unit"]=0 + } + }, + [15090]={ + ["next_chapter"]=15091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=22379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2002, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202156, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2002, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15091]={ + ["next_chapter"]=15092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22391, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2022, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204177, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2022, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15092]={ + ["next_chapter"]=15093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7393, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2042, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206219, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2042, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15093]={ + ["next_chapter"]=15094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7397, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2062, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208281, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2062, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15094]={ + ["next_chapter"]=15095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2083, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210364, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2083, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15095]={ + ["next_chapter"]=15096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2104, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212468, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2104, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15096]={ + ["next_chapter"]=15097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7409, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2125, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214592, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2125, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15097]={ + ["next_chapter"]=15098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7413, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2146, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216738, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2146, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15098]={ + ["next_chapter"]=15099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2167, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218906, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2167, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15099]={ + ["next_chapter"]=15100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2189, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221095, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2189, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=211327, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1509, + ["unit"]=0 + } + }, + [15100]={ + ["next_chapter"]=15101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=22499, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2211, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223306, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2211, + ["unit"]=21 + }, + ["chapter_drop"]=62, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15101]={ + ["next_chapter"]=15102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7429, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2233, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225539, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2233, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15102]={ + ["next_chapter"]=15103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2255, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227794, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2255, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15103]={ + ["next_chapter"]=15104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7437, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2278, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230072, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2278, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15104]={ + ["next_chapter"]=15105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22547, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7441, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2301, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232373, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2301, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15105]={ + ["next_chapter"]=15106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22559, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2324, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234697, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2324, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15106]={ + ["next_chapter"]=15107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22571, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7448, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2347, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237044, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2347, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15107]={ + ["next_chapter"]=15108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7452, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2370, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239414, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2370, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15108]={ + ["next_chapter"]=15109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7456, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2394, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241808, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2394, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15109]={ + ["next_chapter"]=15110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2418, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244226, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2418, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=233436, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1510, + ["unit"]=0 + } + }, + [15110]={ + ["next_chapter"]=15111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=22619, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2442, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246668, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2442, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15111]={ + ["next_chapter"]=15112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22632, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2467, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249135, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2467, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15112]={ + ["next_chapter"]=15113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22644, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2491, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251626, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2491, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15113]={ + ["next_chapter"]=15114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7476, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2516, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254143, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2516, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15114]={ + ["next_chapter"]=15115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7480, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2541, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256684, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2541, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15115]={ + ["next_chapter"]=15116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22680, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7484, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2567, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259251, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2567, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15116]={ + ["next_chapter"]=15117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2593, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261844, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2593, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15117]={ + ["next_chapter"]=15118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22704, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2618, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264462, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2618, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15118]={ + ["next_chapter"]=15119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7496, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2645, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267107, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2645, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15119]={ + ["next_chapter"]=15120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22728, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2671, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269778, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2671, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=257859, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1511, + ["unit"]=0 + } + }, + [15120]={ + ["next_chapter"]=15121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=22741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7504, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2698, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272475, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2698, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15121]={ + ["next_chapter"]=15122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2725, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275200, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2725, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15122]={ + ["next_chapter"]=15123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22765, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7512, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2752, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277952, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2752, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15123]={ + ["next_chapter"]=15124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7516, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2780, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280732, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2780, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15124]={ + ["next_chapter"]=15125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22789, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2807, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283539, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2807, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15125]={ + ["next_chapter"]=15126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2835, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286374, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2835, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15126]={ + ["next_chapter"]=15127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22813, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2864, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289238, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2864, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15127]={ + ["next_chapter"]=15128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22826, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7532, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2892, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292131, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2892, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15128]={ + ["next_chapter"]=15129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22838, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7536, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2921, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295052, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2921, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15129]={ + ["next_chapter"]=15130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22850, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7540, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2951, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298002, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2951, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=284837, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1512, + ["unit"]=0 + } + }, + [15130]={ + ["next_chapter"]=15131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=22862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2980, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300982, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=2980, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15131]={ + ["next_chapter"]=15132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3010, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=303992, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3010, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15132]={ + ["next_chapter"]=15133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7553, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3040, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307032, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3040, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15133]={ + ["next_chapter"]=15134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3070, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310102, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3070, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15134]={ + ["next_chapter"]=15135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22911, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7561, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3101, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313203, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3101, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15135]={ + ["next_chapter"]=15136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3132, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316336, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3132, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15136]={ + ["next_chapter"]=15137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7569, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3163, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319499, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3163, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15137]={ + ["next_chapter"]=15138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7573, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3195, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322694, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3195, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15138]={ + ["next_chapter"]=15139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22960, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3227, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325921, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3227, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15139]={ + ["next_chapter"]=15140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7581, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3259, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329180, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3259, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=314637, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1513, + ["unit"]=0 + } + }, + [15140]={ + ["next_chapter"]=15141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=22984, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3292, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332472, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3292, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15141]={ + ["next_chapter"]=15142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=22996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3325, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335797, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3325, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15142]={ + ["next_chapter"]=15143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7593, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3358, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339154, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3358, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15143]={ + ["next_chapter"]=15144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7597, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3392, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342546, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3392, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15144]={ + ["next_chapter"]=15145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3425, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=345971, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3425, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15145]={ + ["next_chapter"]=15146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23045, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7605, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3460, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349431, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3460, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15146]={ + ["next_chapter"]=15147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7609, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3494, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=352926, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3494, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15147]={ + ["next_chapter"]=15148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7613, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3529, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356455, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3529, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15148]={ + ["next_chapter"]=15149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23082, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3565, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360019, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3565, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15149]={ + ["next_chapter"]=15150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7621, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3600, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=363620, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3600, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=347555, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1514, + ["unit"]=0 + } + }, + [15150]={ + ["next_chapter"]=15151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=23106, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3636, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=367256, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3636, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15151]={ + ["next_chapter"]=15152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3673, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370928, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3673, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15152]={ + ["next_chapter"]=15153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3709, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374638, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3709, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15153]={ + ["next_chapter"]=15154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23143, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7637, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3746, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378384, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3746, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15154]={ + ["next_chapter"]=15155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7641, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3784, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382168, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3784, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15155]={ + ["next_chapter"]=15156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23168, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7645, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3822, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=385989, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3822, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15156]={ + ["next_chapter"]=15157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3860, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=389849, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3860, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15157]={ + ["next_chapter"]=15158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23192, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7653, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3898, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=393748, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3898, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15158]={ + ["next_chapter"]=15159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23205, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3937, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=397685, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3937, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15159]={ + ["next_chapter"]=15160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7662, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3977, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=401662, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=3977, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=383917, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1515, + ["unit"]=0 + } + }, + [15160]={ + ["next_chapter"]=15161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=23229, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4017, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=405679, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4017, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15161]={ + ["next_chapter"]=15162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23241, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7670, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4057, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=409736, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4057, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15162]={ + ["next_chapter"]=15163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4097, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=413833, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4097, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15163]={ + ["next_chapter"]=15164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7678, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4138, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=417971, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4138, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15164]={ + ["next_chapter"]=15165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4180, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422151, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4180, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15165]={ + ["next_chapter"]=15166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23291, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7686, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4222, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426372, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4222, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15166]={ + ["next_chapter"]=15167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4264, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=430636, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4264, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15167]={ + ["next_chapter"]=15168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4306, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=434943, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4306, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15168]={ + ["next_chapter"]=15169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23328, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4349, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=439292, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4349, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15169]={ + ["next_chapter"]=15170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23340, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7702, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4393, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=443685, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4393, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=424083, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1516, + ["unit"]=0 + } + }, + [15170]={ + ["next_chapter"]=15171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=23352, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4437, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=448122, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4437, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15171]={ + ["next_chapter"]=15172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4481, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=452603, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4481, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15172]={ + ["next_chapter"]=15173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4526, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=457129, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4526, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15173]={ + ["next_chapter"]=15174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7719, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4571, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461700, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4571, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15174]={ + ["next_chapter"]=15175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7723, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4617, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466317, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4617, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15175]={ + ["next_chapter"]=15176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7727, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4663, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=470980, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4663, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15176]={ + ["next_chapter"]=15177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7731, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4710, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=475690, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4710, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15177]={ + ["next_chapter"]=15178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7735, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4757, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=480447, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4757, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15178]={ + ["next_chapter"]=15179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4804, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=485252, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4804, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15179]={ + ["next_chapter"]=15180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23464, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4853, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=490104, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4853, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=468452, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1517, + ["unit"]=0 + } + }, + [15180]={ + ["next_chapter"]=15181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=23476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4901, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=495005, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4901, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15181]={ + ["next_chapter"]=15182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4950, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=499955, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=4950, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15182]={ + ["next_chapter"]=15183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23501, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5000, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=504955, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5000, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15183]={ + ["next_chapter"]=15184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7759, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5050, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=510004, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5050, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15184]={ + ["next_chapter"]=15185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5100, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=515104, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5100, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15185]={ + ["next_chapter"]=15186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23538, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7768, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5151, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=520255, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5151, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15186]={ + ["next_chapter"]=15187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23550, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7772, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5203, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=525458, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5203, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15187]={ + ["next_chapter"]=15188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7776, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5255, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=530713, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5255, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15188]={ + ["next_chapter"]=15189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7780, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5307, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=536020, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5307, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15189]={ + ["next_chapter"]=15190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5360, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=541380, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5360, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=517462, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1518, + ["unit"]=0 + } + }, + [15190]={ + ["next_chapter"]=15191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=23600, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7788, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5414, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546794, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5414, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15191]={ + ["next_chapter"]=15192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5468, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552262, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5468, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15192]={ + ["next_chapter"]=15193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5523, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=557784, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5523, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15193]={ + ["next_chapter"]=15194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7800, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5578, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=563362, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5578, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15194]={ + ["next_chapter"]=15195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7804, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5634, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=568996, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5634, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15195]={ + ["next_chapter"]=15196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7809, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5690, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=574686, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5690, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15196]={ + ["next_chapter"]=15197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7813, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5747, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=580433, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5747, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15197]={ + ["next_chapter"]=15198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23687, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5804, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=586237, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5804, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15198]={ + ["next_chapter"]=15199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5862, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=592099, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5862, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15199]={ + ["next_chapter"]=15200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5921, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=598020, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5921, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=571600, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1519, + ["unit"]=0 + } + }, + [15200]={ + ["next_chapter"]=15201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=23725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5980, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=604000, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=5980, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15201]={ + ["next_chapter"]=15202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6040, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=610040, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6040, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15202]={ + ["next_chapter"]=15203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23750, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6100, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=616141, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6100, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15203]={ + ["next_chapter"]=15204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23762, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7842, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6161, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=622302, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6161, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15204]={ + ["next_chapter"]=15205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6223, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=628525, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6223, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15205]={ + ["next_chapter"]=15206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23787, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7850, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6285, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=634811, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6285, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15206]={ + ["next_chapter"]=15207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23800, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7854, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6348, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=641159, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6348, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15207]={ + ["next_chapter"]=15208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23812, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6412, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=647570, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6412, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15208]={ + ["next_chapter"]=15209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7862, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6476, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654046, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6476, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15209]={ + ["next_chapter"]=15210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23837, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7866, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6540, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=660586, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6540, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=631402, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1520, + ["unit"]=0 + } + }, + [15210]={ + ["next_chapter"]=15211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=23850, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7870, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6606, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=667192, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6606, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15211]={ + ["next_chapter"]=15212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7875, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6672, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=673864, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6672, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15212]={ + ["next_chapter"]=15213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23875, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7879, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6739, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=680603, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6739, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15213]={ + ["next_chapter"]=15214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7883, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6806, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=687409, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6806, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15214]={ + ["next_chapter"]=15215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7887, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6874, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=694283, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6874, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15215]={ + ["next_chapter"]=15216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23912, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6943, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=701226, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=6943, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15216]={ + ["next_chapter"]=15217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7012, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=708238, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7012, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15217]={ + ["next_chapter"]=15218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7899, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7082, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=715320, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7082, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15218]={ + ["next_chapter"]=15219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7903, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7153, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=722474, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7153, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15219]={ + ["next_chapter"]=15220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23963, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7908, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7225, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=729698, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7225, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=697461, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1521, + ["unit"]=0 + } + }, + [15220]={ + ["next_chapter"]=15221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=23975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7297, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=736995, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7297, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15221]={ + ["next_chapter"]=15222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=23988, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7916, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7370, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=744365, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7370, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15222]={ + ["next_chapter"]=15223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24000, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7444, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=751809, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7444, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15223]={ + ["next_chapter"]=15224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24013, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7924, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7518, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=759327, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7518, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15224]={ + ["next_chapter"]=15225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24025, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7593, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=766920, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7593, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15225]={ + ["next_chapter"]=15226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24038, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7669, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=774589, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7669, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15226]={ + ["next_chapter"]=15227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7746, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=782335, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7746, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15227]={ + ["next_chapter"]=15228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7823, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=790159, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7823, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15228]={ + ["next_chapter"]=15229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7945, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7902, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=798060, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7902, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15229]={ + ["next_chapter"]=15230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7981, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=806041, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=7981, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=770431, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1522, + ["unit"]=0 + } + }, + [15230]={ + ["next_chapter"]=15231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=24101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8060, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=814101, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8060, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15231]={ + ["next_chapter"]=15232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24114, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7957, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8141, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=822242, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8141, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15232]={ + ["next_chapter"]=15233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24126, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7962, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8222, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=830465, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8222, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15233]={ + ["next_chapter"]=15234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8305, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=838769, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8305, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15234]={ + ["next_chapter"]=15235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7970, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8388, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=847157, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8388, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15235]={ + ["next_chapter"]=15236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24164, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8472, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=855629, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8472, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15236]={ + ["next_chapter"]=15237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7978, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8556, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=864185, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8556, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15237]={ + ["next_chapter"]=15238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7982, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8642, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=872827, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8642, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15238]={ + ["next_chapter"]=15239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7987, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8728, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=881555, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8728, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15239]={ + ["next_chapter"]=15240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8816, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=890371, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8816, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=851035, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1523, + ["unit"]=0 + } + }, + [15240]={ + ["next_chapter"]=15241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=24227, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7995, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8904, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=899274, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8904, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15241]={ + ["next_chapter"]=15242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=7999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8993, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=908267, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=8993, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15242]={ + ["next_chapter"]=15243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8003, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9083, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=917350, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9083, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15243]={ + ["next_chapter"]=15244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24265, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8008, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9173, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=926523, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9173, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15244]={ + ["next_chapter"]=15245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9265, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=935788, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9265, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15245]={ + ["next_chapter"]=15246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24291, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9358, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=945146, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9358, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15246]={ + ["next_chapter"]=15247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8020, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9451, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=954598, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9451, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15247]={ + ["next_chapter"]=15248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9546, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=964144, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9546, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15248]={ + ["next_chapter"]=15249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24329, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9641, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=973785, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9641, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15249]={ + ["next_chapter"]=15250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9738, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=983523, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9738, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=940072, + ["unit"]=21 + }, + ["grasp_mastery_reward"]={ + ["value"]=1524, + ["unit"]=0 + } + }, + [15250]={ + ["next_chapter"]=15251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=24354, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9835, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=993358, + ["unit"]=21 + }, + ["idle_gold"]={ + ["value"]=9835, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15251]={ + ["next_chapter"]=15252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8041, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9934, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1003, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9934, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15252]={ + ["next_chapter"]=15253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8045, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10033, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1013, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10033, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15253]={ + ["next_chapter"]=15254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10133, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1023, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10133, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15254]={ + ["next_chapter"]=15255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24405, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10235, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1034, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10235, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15255]={ + ["next_chapter"]=15256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8058, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10337, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1044, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10337, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15256]={ + ["next_chapter"]=15257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24430, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8062, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10440, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1054, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10440, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15257]={ + ["next_chapter"]=15258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8066, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10545, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1065, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10545, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15258]={ + ["next_chapter"]=15259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10650, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1076, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10650, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15259]={ + ["next_chapter"]=15260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8075, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10757, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1086, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10757, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1038, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1525, + ["unit"]=0 + } + }, + [15260]={ + ["next_chapter"]=15261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=24481, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8079, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10864, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1097, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10864, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15261]={ + ["next_chapter"]=15262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24494, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10973, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1108, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=10973, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15262]={ + ["next_chapter"]=15263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11083, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1119, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=11083, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15263]={ + ["next_chapter"]=15264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8091, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11193, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1131, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=11193, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15264]={ + ["next_chapter"]=15265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24532, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11305, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1142, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=11305, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15265]={ + ["next_chapter"]=15266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8100, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11418, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1153, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=11418, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15266]={ + ["next_chapter"]=15267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24558, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8104, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11533, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1165, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=11533, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15267]={ + ["next_chapter"]=15268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8108, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11648, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1176, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=11648, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15268]={ + ["next_chapter"]=15269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11764, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1188, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=11764, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15269]={ + ["next_chapter"]=15270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11882, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1200, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=11882, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1147, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1526, + ["unit"]=0 + } + }, + [15270]={ + ["next_chapter"]=15271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=24609, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8121, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12001, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1212, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12001, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15271]={ + ["next_chapter"]=15272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24622, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8125, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12121, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1224, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12121, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15272]={ + ["next_chapter"]=15273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12242, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1236, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12242, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15273]={ + ["next_chapter"]=15274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8134, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12364, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1249, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12364, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15274]={ + ["next_chapter"]=15275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8138, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12488, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1261, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12488, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15275]={ + ["next_chapter"]=15276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12613, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1274, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12613, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15276]={ + ["next_chapter"]=15277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8146, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12739, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1287, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12739, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15277]={ + ["next_chapter"]=15278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12867, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1300, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12867, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15278]={ + ["next_chapter"]=15279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8155, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12995, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1313, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=12995, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15279]={ + ["next_chapter"]=15280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8159, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13125, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1326, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=13125, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1267, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1527, + ["unit"]=0 + } + }, + [15280]={ + ["next_chapter"]=15281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=24737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13256, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1339, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=13256, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15281]={ + ["next_chapter"]=15282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24750, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13389, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1352, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=13389, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15282]={ + ["next_chapter"]=15283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8172, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13523, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1366, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=13523, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15283]={ + ["next_chapter"]=15284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13658, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1379, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=13658, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15284]={ + ["next_chapter"]=15285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24788, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8180, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13795, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1393, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=13795, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15285]={ + ["next_chapter"]=15286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8184, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13933, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1407, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=13933, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15286]={ + ["next_chapter"]=15287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24814, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14072, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1421, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=14072, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15287]={ + ["next_chapter"]=15288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14213, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1435, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=14213, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15288]={ + ["next_chapter"]=15289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24840, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8197, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14355, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1450, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=14355, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15289]={ + ["next_chapter"]=15290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24853, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8201, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14498, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1464, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=14498, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1400, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1528, + ["unit"]=0 + } + }, + [15290]={ + ["next_chapter"]=15291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=24865, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14643, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1479, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=14643, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15291]={ + ["next_chapter"]=15292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8210, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14790, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1494, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=14790, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15292]={ + ["next_chapter"]=15293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14938, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1509, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=14938, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15293]={ + ["next_chapter"]=15294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24904, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8218, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15087, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1524, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=15087, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15294]={ + ["next_chapter"]=15295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24917, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15238, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1539, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=15238, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15295]={ + ["next_chapter"]=15296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8227, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15390, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1554, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=15390, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15296]={ + ["next_chapter"]=15297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15544, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1570, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=15544, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15297]={ + ["next_chapter"]=15298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24956, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8235, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15700, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1586, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=15700, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15298]={ + ["next_chapter"]=15299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8240, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15857, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1602, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=15857, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15299]={ + ["next_chapter"]=15300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=24981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8244, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16015, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1618, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=16015, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1546, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1529, + ["unit"]=0 + } + }, + [15300]={ + ["next_chapter"]=15301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=24994, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8248, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16175, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1634, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=16175, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15301]={ + ["next_chapter"]=15302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25007, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8252, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16337, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1650, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=16337, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15302]={ + ["next_chapter"]=15303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8257, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16500, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1667, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=16500, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15303]={ + ["next_chapter"]=15304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16665, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1683, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=16665, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15304]={ + ["next_chapter"]=15305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25046, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16832, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1700, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=16832, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15305]={ + ["next_chapter"]=15306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8269, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17000, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1717, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=17000, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15306]={ + ["next_chapter"]=15307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8274, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17170, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1734, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=17170, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15307]={ + ["next_chapter"]=15308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8278, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17342, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1752, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=17342, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15308]={ + ["next_chapter"]=15309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8282, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17516, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1769, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=17516, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15309]={ + ["next_chapter"]=15310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8287, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17691, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1787, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=17691, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1708, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1530, + ["unit"]=0 + } + }, + [15310]={ + ["next_chapter"]=15311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=25124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17868, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1805, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=17868, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15311]={ + ["next_chapter"]=15312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25137, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18046, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1823, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=18046, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15312]={ + ["next_chapter"]=15313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25150, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18227, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1841, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=18227, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15313]={ + ["next_chapter"]=15314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18409, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1859, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=18409, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15314]={ + ["next_chapter"]=15315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18593, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1878, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=18593, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15315]={ + ["next_chapter"]=15316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8312, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18779, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1897, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=18779, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15316]={ + ["next_chapter"]=15317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18967, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1916, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=18967, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15317]={ + ["next_chapter"]=15318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8321, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19157, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1935, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=19157, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15318]={ + ["next_chapter"]=15319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25228, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19348, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1954, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=19348, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15319]={ + ["next_chapter"]=15320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25241, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8329, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19542, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1974, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=19542, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1887, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1531, + ["unit"]=0 + } + }, + [15320]={ + ["next_chapter"]=15321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=25254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19737, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1993, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=19737, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15321]={ + ["next_chapter"]=15322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19934, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2013, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=19934, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15322]={ + ["next_chapter"]=15323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8342, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20134, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2034, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=20134, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15323]={ + ["next_chapter"]=15324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8347, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20335, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2054, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=20335, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15324]={ + ["next_chapter"]=15325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20538, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2074, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=20538, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15325]={ + ["next_chapter"]=15326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8355, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20744, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2095, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=20744, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15326]={ + ["next_chapter"]=15327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20951, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2116, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=20951, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15327]={ + ["next_chapter"]=15328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8364, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21161, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2137, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=21161, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15328]={ + ["next_chapter"]=15329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25358, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8368, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21372, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2159, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=21372, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15329]={ + ["next_chapter"]=15330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25371, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8372, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21586, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2180, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=21586, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2084, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1532, + ["unit"]=0 + } + }, + [15330]={ + ["next_chapter"]=15331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=25384, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8377, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21802, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2202, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=21802, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15331]={ + ["next_chapter"]=15332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25397, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22020, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2224, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=22020, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15332]={ + ["next_chapter"]=15333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22240, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2246, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=22240, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15333]={ + ["next_chapter"]=15334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25423, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8390, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22463, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2269, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=22463, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15334]={ + ["next_chapter"]=15335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8394, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22687, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2291, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=22687, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15335]={ + ["next_chapter"]=15336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25449, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22914, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2314, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=22914, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15336]={ + ["next_chapter"]=15337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23143, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2337, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=23143, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15337]={ + ["next_chapter"]=15338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8407, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23375, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2361, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=23375, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15338]={ + ["next_chapter"]=15339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23608, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2384, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=23608, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15339]={ + ["next_chapter"]=15340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23844, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2408, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=23844, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2302, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1533, + ["unit"]=0 + } + }, + [15340]={ + ["next_chapter"]=15341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=25515, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8420, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24083, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2432, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=24083, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15341]={ + ["next_chapter"]=15342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8424, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24324, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2457, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=24324, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15342]={ + ["next_chapter"]=15343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8428, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24567, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2481, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=24567, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15343]={ + ["next_chapter"]=15344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25554, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24813, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2506, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=24813, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15344]={ + ["next_chapter"]=15345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8437, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25061, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2531, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=25061, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15345]={ + ["next_chapter"]=15346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25580, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8441, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25311, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2556, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=25311, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15346]={ + ["next_chapter"]=15347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8446, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25564, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2582, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=25564, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15347]={ + ["next_chapter"]=15348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25820, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2608, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=25820, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15348]={ + ["next_chapter"]=15349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8454, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26078, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2634, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=26078, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15349]={ + ["next_chapter"]=15350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26339, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2660, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=26339, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2543, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1534, + ["unit"]=0 + } + }, + [15350]={ + ["next_chapter"]=15351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=25646, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26602, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2687, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=26602, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15351]={ + ["next_chapter"]=15352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8467, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26868, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2714, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=26868, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15352]={ + ["next_chapter"]=15353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25672, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27137, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2741, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=27137, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15353]={ + ["next_chapter"]=15354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25685, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8476, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27409, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2768, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=27409, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15354]={ + ["next_chapter"]=15355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8480, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27683, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2796, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=27683, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15355]={ + ["next_chapter"]=15356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8485, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27959, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2824, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=27959, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15356]={ + ["next_chapter"]=15357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28239, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2852, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=28239, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15357]={ + ["next_chapter"]=15358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25738, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28521, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2881, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=28521, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15358]={ + ["next_chapter"]=15359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8498, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28807, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2909, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=28807, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15359]={ + ["next_chapter"]=15360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8502, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29095, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2939, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=29095, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2809, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1535, + ["unit"]=0 + } + }, + [15360]={ + ["next_chapter"]=15361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=25777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8507, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29386, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2968, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=29386, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15361]={ + ["next_chapter"]=15362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25791, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8511, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29680, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2998, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=29680, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15362]={ + ["next_chapter"]=15363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25804, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8515, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29976, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3028, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=29976, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15363]={ + ["next_chapter"]=15364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25817, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30276, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3058, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=30276, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15364]={ + ["next_chapter"]=15365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30579, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3088, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=30579, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15365]={ + ["next_chapter"]=15366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30885, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3119, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=30885, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15366]={ + ["next_chapter"]=15367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31193, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3151, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=31193, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15367]={ + ["next_chapter"]=15368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25870, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8537, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31505, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3182, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=31505, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15368]={ + ["next_chapter"]=15369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31820, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3214, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=31820, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15369]={ + ["next_chapter"]=15370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8546, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32139, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3246, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=32139, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1536, + ["unit"]=0 + } + }, + [15370]={ + ["next_chapter"]=15371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=25910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8550, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32460, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3278, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=32460, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15371]={ + ["next_chapter"]=15372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8555, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32785, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3311, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=32785, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15372]={ + ["next_chapter"]=15373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8559, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33113, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3344, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=33113, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15373]={ + ["next_chapter"]=15374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8563, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33444, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3378, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=33444, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15374]={ + ["next_chapter"]=15375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25962, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8568, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33778, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3412, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=33778, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15375]={ + ["next_chapter"]=15376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25976, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8572, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34116, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3446, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=34116, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15376]={ + ["next_chapter"]=15377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=25989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8576, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34457, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3480, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=34457, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15377]={ + ["next_chapter"]=15378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8581, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34802, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3515, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=34802, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15378]={ + ["next_chapter"]=15379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26016, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35150, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3550, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=35150, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15379]={ + ["next_chapter"]=15380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26029, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8590, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35501, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3586, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=35501, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3427, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1537, + ["unit"]=0 + } + }, + [15380]={ + ["next_chapter"]=15381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=26042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35856, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3621, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=35856, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15381]={ + ["next_chapter"]=15382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8598, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36215, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3658, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=36215, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15382]={ + ["next_chapter"]=15383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26069, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8603, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36577, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3694, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=36577, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15383]={ + ["next_chapter"]=15384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26082, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36943, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3731, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=36943, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15384]={ + ["next_chapter"]=15385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26095, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8611, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37312, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3769, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=37312, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15385]={ + ["next_chapter"]=15386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26109, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8616, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37685, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3806, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=37685, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15386]={ + ["next_chapter"]=15387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38062, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3844, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=38062, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15387]={ + ["next_chapter"]=15388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38443, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3883, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=38443, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15388]={ + ["next_chapter"]=15389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38827, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3922, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=38827, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15389]={ + ["next_chapter"]=15390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39215, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3961, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=39215, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3786, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1538, + ["unit"]=0 + } + }, + [15390]={ + ["next_chapter"]=15391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=26175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8638, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39607, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4000, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=39607, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15391]={ + ["next_chapter"]=15392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40004, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4040, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=40004, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15392]={ + ["next_chapter"]=15393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8647, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40404, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4081, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=40404, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15393]={ + ["next_chapter"]=15394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8651, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40808, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4122, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=40808, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15394]={ + ["next_chapter"]=15395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26228, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41216, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4163, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=41216, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15395]={ + ["next_chapter"]=15396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8660, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41628, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4204, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=41628, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15396]={ + ["next_chapter"]=15397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8664, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42044, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4246, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=42044, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15397]={ + ["next_chapter"]=15398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42465, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4289, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=42465, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15398]={ + ["next_chapter"]=15399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26282, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8673, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42889, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4332, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=42889, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15399]={ + ["next_chapter"]=15400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43318, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4375, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=43318, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4182, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1539, + ["unit"]=0 + } + }, + [15400]={ + ["next_chapter"]=15401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=26309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43751, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4419, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=43751, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15401]={ + ["next_chapter"]=15402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26322, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8686, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44189, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4463, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=44189, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15402]={ + ["next_chapter"]=15403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8691, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44631, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4508, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=44631, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15403]={ + ["next_chapter"]=15404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45077, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4553, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=45077, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15404]={ + ["next_chapter"]=15405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45528, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4598, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=45528, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15405]={ + ["next_chapter"]=15406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45983, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4644, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=45983, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15406]={ + ["next_chapter"]=15407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8708, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46443, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4691, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=46443, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15407]={ + ["next_chapter"]=15408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46907, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4738, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=46907, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15408]={ + ["next_chapter"]=15409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47376, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4785, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=47376, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15409]={ + ["next_chapter"]=15410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26429, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47850, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4833, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=47850, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4619, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1540, + ["unit"]=0 + } + }, + [15410]={ + ["next_chapter"]=15411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=26442, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8726, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48329, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4881, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=48329, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15411]={ + ["next_chapter"]=15412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48812, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4930, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=48812, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15412]={ + ["next_chapter"]=15413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8735, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49300, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4979, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=49300, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15413]={ + ["next_chapter"]=15414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49793, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5029, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=49793, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15414]={ + ["next_chapter"]=15415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8744, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50291, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5079, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=50291, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15415]={ + ["next_chapter"]=15416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8748, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50794, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5130, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=50794, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15416]={ + ["next_chapter"]=15417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51302, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5181, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=51302, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15417]={ + ["next_chapter"]=15418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26536, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51815, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5233, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=51815, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15418]={ + ["next_chapter"]=15419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26550, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8761, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52333, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5286, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=52333, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15419]={ + ["next_chapter"]=15420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8766, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52856, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5338, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=52856, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5103, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1541, + ["unit"]=0 + } + }, + [15420]={ + ["next_chapter"]=15421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=26577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8770, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53385, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5392, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=53385, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15421]={ + ["next_chapter"]=15422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53919, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5446, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=53919, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15422]={ + ["next_chapter"]=15423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54458, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5500, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=54458, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15423]={ + ["next_chapter"]=15424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26617, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55002, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5555, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=55002, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15424]={ + ["next_chapter"]=15425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8788, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55553, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5611, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=55553, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15425]={ + ["next_chapter"]=15426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26644, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56108, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5667, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=56108, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15426]={ + ["next_chapter"]=15427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8797, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56669, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5724, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=56669, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15427]={ + ["next_chapter"]=15428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8801, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57236, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5781, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=57236, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15428]={ + ["next_chapter"]=15429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26685, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57808, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5839, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=57808, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15429]={ + ["next_chapter"]=15430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8810, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58386, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5897, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=58386, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=5636, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1542, + ["unit"]=0 + } + }, + [15430]={ + ["next_chapter"]=15431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=26712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8815, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58970, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5956, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=58970, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15431]={ + ["next_chapter"]=15432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59560, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6016, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=59560, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15432]={ + ["next_chapter"]=15433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8824, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60155, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6076, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=60155, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15433]={ + ["next_chapter"]=15434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8828, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60757, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6136, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=60757, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15434]={ + ["next_chapter"]=15435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26766, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61365, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6198, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=61365, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15435]={ + ["next_chapter"]=15436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61978, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6260, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=61978, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15436]={ + ["next_chapter"]=15437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26793, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8842, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62598, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6322, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=62598, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15437]={ + ["next_chapter"]=15438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26806, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63224, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6386, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=63224, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15438]={ + ["next_chapter"]=15439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63856, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6449, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=63856, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15439]={ + ["next_chapter"]=15440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64495, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6514, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=64495, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6226, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1543, + ["unit"]=0 + } + }, + [15440]={ + ["next_chapter"]=15441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=26847, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8859, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65140, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6579, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=65140, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15441]={ + ["next_chapter"]=15442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8864, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65791, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6645, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=65791, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15442]={ + ["next_chapter"]=15443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8868, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66449, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6711, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=66449, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15443]={ + ["next_chapter"]=15444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67113, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6778, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=67113, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15444]={ + ["next_chapter"]=15445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26901, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67785, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6846, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=67785, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15445]={ + ["next_chapter"]=15446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68462, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6915, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=68462, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15446]={ + ["next_chapter"]=15447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26928, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8886, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69147, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6984, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=69147, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15447]={ + ["next_chapter"]=15448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26942, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69839, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7054, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=69839, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15448]={ + ["next_chapter"]=15449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70537, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7124, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=70537, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15449]={ + ["next_chapter"]=15450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8900, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71242, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7195, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=71242, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=6878, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1544, + ["unit"]=0 + } + }, + [15450]={ + ["next_chapter"]=15451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=26983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8904, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71955, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7267, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=71955, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15451]={ + ["next_chapter"]=15452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=26996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72674, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7340, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=72674, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15452]={ + ["next_chapter"]=15453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8913, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73401, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7414, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=73401, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15453]={ + ["next_chapter"]=15454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27023, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8918, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74135, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7488, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=74135, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15454]={ + ["next_chapter"]=15455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8922, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74876, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7563, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=74876, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15455]={ + ["next_chapter"]=15456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8927, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75625, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7638, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=75625, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15456]={ + ["next_chapter"]=15457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76381, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7715, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=76381, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15457]={ + ["next_chapter"]=15458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8936, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77145, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7792, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=77145, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15458]={ + ["next_chapter"]=15459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27091, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8940, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77917, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7870, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=77917, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15459]={ + ["next_chapter"]=15460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8945, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78696, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7948, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=78696, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=7597, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1545, + ["unit"]=0 + } + }, + [15460]={ + ["next_chapter"]=15461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=27119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79483, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8028, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=79483, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15461]={ + ["next_chapter"]=15462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8954, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80278, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8108, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=80278, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15462]={ + ["next_chapter"]=15463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27146, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8958, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81080, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8189, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=81080, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15463]={ + ["next_chapter"]=15464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27160, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8963, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81891, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8271, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=81891, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15464]={ + ["next_chapter"]=15465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82710, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8354, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=82710, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15465]={ + ["next_chapter"]=15466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27187, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8972, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83537, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8437, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=83537, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15466]={ + ["next_chapter"]=15467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27201, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84373, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8522, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=84373, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15467]={ + ["next_chapter"]=15468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27214, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8981, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85216, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8607, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=85216, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15468]={ + ["next_chapter"]=15469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27228, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86068, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8693, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=86068, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15469]={ + ["next_chapter"]=15470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8990, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86929, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8780, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=86929, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=8392, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1546, + ["unit"]=0 + } + }, + [15470]={ + ["next_chapter"]=15471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=27255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87798, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8868, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=87798, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15471]={ + ["next_chapter"]=15472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=8999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88676, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8956, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=88676, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15472]={ + ["next_chapter"]=15473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27283, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9003, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89563, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9046, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=89563, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15473]={ + ["next_chapter"]=15474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9008, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90459, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9136, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=90459, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15474]={ + ["next_chapter"]=15475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27310, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91363, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9228, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=91363, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15475]={ + ["next_chapter"]=15476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27324, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92277, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9320, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=92277, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15476]={ + ["next_chapter"]=15477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9021, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93200, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9413, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=93200, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15477]={ + ["next_chapter"]=15478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9026, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94132, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9507, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=94132, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15478]={ + ["next_chapter"]=15479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95073, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9602, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=95073, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15479]={ + ["next_chapter"]=15480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9035, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96024, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9698, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=96024, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=9270, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1547, + ["unit"]=0 + } + }, + [15480]={ + ["next_chapter"]=15481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=27392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96984, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9795, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=96984, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15481]={ + ["next_chapter"]=15482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27406, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97954, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9893, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=97954, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15482]={ + ["next_chapter"]=15483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27420, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98933, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9992, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=98933, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15483]={ + ["next_chapter"]=15484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9053, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99923, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10092, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=99923, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15484]={ + ["next_chapter"]=15485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9058, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100922, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10193, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=100922, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15485]={ + ["next_chapter"]=15486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27461, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9062, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101931, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10295, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=101931, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15486]={ + ["next_chapter"]=15487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102951, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10398, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=102951, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15487]={ + ["next_chapter"]=15488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103980, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10502, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=103980, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15488]={ + ["next_chapter"]=15489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9076, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105020, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10607, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=105020, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15489]={ + ["next_chapter"]=15490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27516, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106070, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10713, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=106070, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=10240, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1548, + ["unit"]=0 + } + }, + [15490]={ + ["next_chapter"]=15491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=27530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107131, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10820, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=107131, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15491]={ + ["next_chapter"]=15492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27544, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9089, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108202, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10928, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=108202, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15492]={ + ["next_chapter"]=15493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27558, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9094, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109284, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11038, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=109284, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15493]={ + ["next_chapter"]=15494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27571, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110377, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11148, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=110377, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15494]={ + ["next_chapter"]=15495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111481, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11260, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=111481, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15495]={ + ["next_chapter"]=15496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9108, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112596, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11372, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=112596, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15496]={ + ["next_chapter"]=15497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113721, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11486, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=113721, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15497]={ + ["next_chapter"]=15498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114859, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11601, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=114859, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15498]={ + ["next_chapter"]=15499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27640, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9121, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116007, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11717, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=116007, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15499]={ + ["next_chapter"]=15500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117167, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11834, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=117167, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=11311, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1549, + ["unit"]=0 + } + }, + [15500]={ + ["next_chapter"]=15501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=27668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9130, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118339, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11952, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=118339, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15501]={ + ["next_chapter"]=15502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27682, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9135, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119522, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12072, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=119522, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15502]={ + ["next_chapter"]=15503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27696, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120718, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12192, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=120718, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15503]={ + ["next_chapter"]=15504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27709, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9144, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121925, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12314, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=121925, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15504]={ + ["next_chapter"]=15505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27723, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9149, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123144, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12438, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=123144, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15505]={ + ["next_chapter"]=15506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9153, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=124376, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12562, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=124376, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15506]={ + ["next_chapter"]=15507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125619, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12688, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=125619, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15507]={ + ["next_chapter"]=15508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27765, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9162, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126875, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12814, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=126875, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15508]={ + ["next_chapter"]=15509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=128144, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12943, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=128144, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15509]={ + ["next_chapter"]=15510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27793, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9172, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=129426, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13072, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=129426, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=12494, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1550, + ["unit"]=0 + } + }, + [15510]={ + ["next_chapter"]=15511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=27806, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130720, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13203, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=130720, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15511]={ + ["next_chapter"]=15512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=132027, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13335, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=132027, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15512]={ + ["next_chapter"]=15513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27834, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=133347, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13468, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=133347, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15513]={ + ["next_chapter"]=15514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134681, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13603, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=134681, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15514]={ + ["next_chapter"]=15515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9194, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=136028, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13739, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=136028, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15515]={ + ["next_chapter"]=15516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27876, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=137388, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13876, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=137388, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15516]={ + ["next_chapter"]=15517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138762, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14015, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=138762, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15517]={ + ["next_chapter"]=15518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27904, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9208, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=140149, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14155, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=140149, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15518]={ + ["next_chapter"]=15519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27918, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9213, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=141551, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14297, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=141551, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15519]={ + ["next_chapter"]=15520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27931, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142966, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14440, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=142966, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=13802, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1551, + ["unit"]=0 + } + }, + [15520]={ + ["next_chapter"]=15521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=27945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=144396, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14584, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=144396, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15521]={ + ["next_chapter"]=15522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27959, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9227, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145840, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14730, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=145840, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15522]={ + ["next_chapter"]=15523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=147298, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14877, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=147298, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15523]={ + ["next_chapter"]=15524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=27987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=148771, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15026, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=148771, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15524]={ + ["next_chapter"]=15525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28001, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9240, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=150259, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15176, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=150259, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15525]={ + ["next_chapter"]=15526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=151762, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15328, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=151762, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15526]={ + ["next_chapter"]=15527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28029, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=153279, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15481, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=153279, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15527]={ + ["next_chapter"]=15528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=154812, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15636, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=154812, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15528]={ + ["next_chapter"]=15529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=156360, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15792, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=156360, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15529]={ + ["next_chapter"]=15530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28071, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9263, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=157924, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15950, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=157924, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=15246, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1552, + ["unit"]=0 + } + }, + [15530]={ + ["next_chapter"]=15531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=28085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=159503, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16110, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=159503, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15531]={ + ["next_chapter"]=15532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28099, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9273, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=161098, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16271, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=161098, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15532]={ + ["next_chapter"]=15533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28113, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9277, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=162709, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16434, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=162709, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15533]={ + ["next_chapter"]=15534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28127, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9282, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=164336, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16598, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=164336, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15534]={ + ["next_chapter"]=15535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9286, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=165980, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16764, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=165980, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15535]={ + ["next_chapter"]=15536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=167639, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16932, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=167639, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15536]={ + ["next_chapter"]=15537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28169, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9296, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=169316, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17101, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=169316, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15537]={ + ["next_chapter"]=15538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9300, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=171009, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17272, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=171009, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15538]={ + ["next_chapter"]=15539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9305, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=172719, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17445, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=172719, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15539]={ + ["next_chapter"]=15540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9310, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=174446, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17619, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=174446, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=16841, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1553, + ["unit"]=0 + } + }, + [15540]={ + ["next_chapter"]=15541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=28225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=176191, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17795, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=176191, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15541]={ + ["next_chapter"]=15542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9319, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=177953, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17973, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=177953, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15542]={ + ["next_chapter"]=15543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=179732, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18153, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=179732, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15543]={ + ["next_chapter"]=15544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=181529, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18334, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=181529, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15544]={ + ["next_chapter"]=15545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9333, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=183345, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18518, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=183345, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15545]={ + ["next_chapter"]=15546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=185178, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18703, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=185178, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15546]={ + ["next_chapter"]=15547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9342, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=187030, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18890, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=187030, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15547]={ + ["next_chapter"]=15548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9347, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=188900, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19079, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=188900, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15548]={ + ["next_chapter"]=15549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=190789, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19270, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=190789, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15549]={ + ["next_chapter"]=15550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=192697, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19462, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=192697, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=18603, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1554, + ["unit"]=0 + } + }, + [15550]={ + ["next_chapter"]=15551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=28365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=194624, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19657, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=194624, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15551]={ + ["next_chapter"]=15552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=196570, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19854, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=196570, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15552]={ + ["next_chapter"]=15553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28393, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=198536, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20052, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=198536, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15553]={ + ["next_chapter"]=15554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=200521, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20253, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=200521, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15554]={ + ["next_chapter"]=15555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9379, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=202527, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20455, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=202527, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15555]={ + ["next_chapter"]=15556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=204552, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20660, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=204552, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15556]={ + ["next_chapter"]=15557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28449, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=206597, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20866, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=206597, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15557]={ + ["next_chapter"]=15558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9393, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=208663, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21075, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=208663, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15558]={ + ["next_chapter"]=15559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28478, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=210750, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21286, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=210750, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15559]={ + ["next_chapter"]=15560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28492, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9402, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=212858, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21499, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=212858, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=20549, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1555, + ["unit"]=0 + } + }, + [15560]={ + ["next_chapter"]=15561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=28506, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9407, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=214986, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21714, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=214986, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15561]={ + ["next_chapter"]=15562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=217136, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21931, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=217136, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15562]={ + ["next_chapter"]=15563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28534, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=219307, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22150, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=219307, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15563]={ + ["next_chapter"]=15564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28548, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=221500, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22372, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=221500, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15564]={ + ["next_chapter"]=15565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9426, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=223715, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22595, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=223715, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15565]={ + ["next_chapter"]=15566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28576, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=225953, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22821, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=225953, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15566]={ + ["next_chapter"]=15567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9435, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=228212, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23049, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=228212, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15567]={ + ["next_chapter"]=15568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=230494, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23280, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=230494, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15568]={ + ["next_chapter"]=15569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28619, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9444, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=232799, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23513, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=232799, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15569]={ + ["next_chapter"]=15570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9449, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=235127, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23748, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=235127, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=22699, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1556, + ["unit"]=0 + } + }, + [15570]={ + ["next_chapter"]=15571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=28647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9454, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=237478, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23985, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=237478, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15571]={ + ["next_chapter"]=15572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28661, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9458, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=239853, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24225, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=239853, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15572]={ + ["next_chapter"]=15573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=242252, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24467, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=242252, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15573]={ + ["next_chapter"]=15574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28689, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=244674, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24712, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=244674, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15574]={ + ["next_chapter"]=15575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28704, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=247121, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24959, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=247121, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15575]={ + ["next_chapter"]=15576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28718, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9477, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=249592, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25209, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=249592, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15576]={ + ["next_chapter"]=15577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=252088, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25461, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=252088, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15577]={ + ["next_chapter"]=15578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9486, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=254609, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25716, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=254609, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15578]={ + ["next_chapter"]=15579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28760, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9491, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=257155, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25973, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=257155, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15579]={ + ["next_chapter"]=15580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9496, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=259727, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26232, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=259727, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=25073, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1557, + ["unit"]=0 + } + }, + [15580]={ + ["next_chapter"]=15581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=28789, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=262324, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26495, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=262324, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15581]={ + ["next_chapter"]=15582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=264947, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26760, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=264947, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15582]={ + ["next_chapter"]=15583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28817, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=267597, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27027, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=267597, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15583]={ + ["next_chapter"]=15584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28831, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=270273, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27298, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=270273, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15584]={ + ["next_chapter"]=15585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28846, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9519, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=272975, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27571, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=272975, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15585]={ + ["next_chapter"]=15586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=275705, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27846, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=275705, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15586]={ + ["next_chapter"]=15587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=278462, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28125, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=278462, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15587]={ + ["next_chapter"]=15588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28888, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=281247, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28406, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=281247, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15588]={ + ["next_chapter"]=15589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28902, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9538, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=284059, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28690, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=284059, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15589]={ + ["next_chapter"]=15590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28917, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9543, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=286900, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28977, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=286900, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=27697, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1558, + ["unit"]=0 + } + }, + [15590]={ + ["next_chapter"]=15591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=28931, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=289769, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29267, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=289769, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15591]={ + ["next_chapter"]=15592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9552, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=292667, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29559, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=292667, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15592]={ + ["next_chapter"]=15593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28959, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=295593, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29855, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=295593, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15593]={ + ["next_chapter"]=15594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28974, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9561, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=298549, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30153, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=298549, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15594]={ + ["next_chapter"]=15595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=28988, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9566, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=301535, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30455, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=301535, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15595]={ + ["next_chapter"]=15596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=304550, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30760, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=304550, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15596]={ + ["next_chapter"]=15597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29016, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9575, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=307595, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31067, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=307595, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15597]={ + ["next_chapter"]=15598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29031, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=310671, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31378, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=310671, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15598]={ + ["next_chapter"]=15599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29045, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=313778, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31692, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=313778, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15599]={ + ["next_chapter"]=15600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9590, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=316916, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32009, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=316916, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=30594, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1559, + ["unit"]=0 + } + }, + [15600]={ + ["next_chapter"]=15601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=29074, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=320085, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32329, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=320085, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15601]={ + ["next_chapter"]=15602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9599, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=323286, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32652, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=323286, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15602]={ + ["next_chapter"]=15603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29102, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9604, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=326519, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32978, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=326519, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15603]={ + ["next_chapter"]=15604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=329784, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33308, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=329784, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15604]={ + ["next_chapter"]=15605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9613, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=333082, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33641, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=333082, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15605]={ + ["next_chapter"]=15606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9618, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=336413, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33978, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=336413, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15606]={ + ["next_chapter"]=15607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29159, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9623, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=339777, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34317, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=339777, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15607]={ + ["next_chapter"]=15608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9627, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=343175, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34661, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=343175, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15608]={ + ["next_chapter"]=15609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9632, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=346606, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35007, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=346606, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15609]={ + ["next_chapter"]=15610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9637, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=350072, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35357, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=350072, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=33795, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1560, + ["unit"]=0 + } + }, + [15610]={ + ["next_chapter"]=15611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=29217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=353573, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35711, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=353573, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15611]={ + ["next_chapter"]=15612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=357109, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36068, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=357109, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15612]={ + ["next_chapter"]=15613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9651, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=360680, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36429, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=360680, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15613]={ + ["next_chapter"]=15614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=364287, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36793, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=364287, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15614]={ + ["next_chapter"]=15615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9660, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=367930, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37161, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=367930, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15615]={ + ["next_chapter"]=15616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29288, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=371609, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37532, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=371609, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15616]={ + ["next_chapter"]=15617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9670, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=375325, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37908, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=375325, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15617]={ + ["next_chapter"]=15618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9675, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=379078, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38287, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=379078, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15618]={ + ["next_chapter"]=15619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9679, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=382869, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38670, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=382869, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15619]={ + ["next_chapter"]=15620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29346, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=386698, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39056, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=386698, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=37331, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1561, + ["unit"]=0 + } + }, + [15620]={ + ["next_chapter"]=15621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=29360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9689, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=390565, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39447, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=390565, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15621]={ + ["next_chapter"]=15622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=394470, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39841, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=394470, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15622]={ + ["next_chapter"]=15623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=398415, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40240, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=398415, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15623]={ + ["next_chapter"]=15624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9703, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=402399, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40642, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=402399, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15624]={ + ["next_chapter"]=15625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9708, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=406423, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41049, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=406423, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15625]={ + ["next_chapter"]=15626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=410487, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41459, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=410487, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15626]={ + ["next_chapter"]=15627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=414592, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41874, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=414592, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15627]={ + ["next_chapter"]=15628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29461, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=418738, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42293, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=418738, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15628]={ + ["next_chapter"]=15629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9727, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=422925, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42715, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=422925, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15629]={ + ["next_chapter"]=15630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29490, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9732, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=427155, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43143, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=427155, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=41237, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + [15630]={ + ["next_chapter"]=15631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=29504, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9736, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=431426, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43574, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=431426, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15631]={ + ["next_chapter"]=15632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9741, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=435741, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44010, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=435741, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15632]={ + ["next_chapter"]=15633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29533, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9746, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=440098, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44450, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=440098, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15633]={ + ["next_chapter"]=15634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29548, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=444499, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44894, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=444499, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15634]={ + ["next_chapter"]=15635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=448944, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45343, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=448944, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15635]={ + ["next_chapter"]=15636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9760, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=453433, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45797, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=453433, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15636]={ + ["next_chapter"]=15637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9765, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=457968, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46255, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=457968, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15637]={ + ["next_chapter"]=15638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9770, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=462547, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46717, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=462547, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15638]={ + ["next_chapter"]=15639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=467173, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47184, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=467173, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15639]={ + ["next_chapter"]=15640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=471845, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47656, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=471845, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=45551, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1563, + ["unit"]=0 + } + }, + [15640]={ + ["next_chapter"]=15641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=29649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=476563, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48133, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=476563, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15641]={ + ["next_chapter"]=15642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29663, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9789, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=481329, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48614, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=481329, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15642]={ + ["next_chapter"]=15643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29678, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9794, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=486142, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49100, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=486142, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15643]={ + ["next_chapter"]=15644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9798, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=491003, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49591, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=491003, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15644]={ + ["next_chapter"]=15645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9803, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=495913, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50087, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=495913, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15645]={ + ["next_chapter"]=15646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29721, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9808, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=500873, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50588, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=500873, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15646]={ + ["next_chapter"]=15647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9813, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=505881, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51094, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=505881, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15647]={ + ["next_chapter"]=15648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29750, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9818, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=510940, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51605, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=510940, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15648]={ + ["next_chapter"]=15649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29765, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=516049, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52121, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=516049, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15649]={ + ["next_chapter"]=15650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=521210, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52642, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=521210, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=50317, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1564, + ["unit"]=0 + } + }, + [15650]={ + ["next_chapter"]=15651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=29794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9832, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=526422, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53169, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=526422, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15651]={ + ["next_chapter"]=15652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29808, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=531686, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53700, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=531686, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15652]={ + ["next_chapter"]=15653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29823, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9842, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=537003, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54237, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=537003, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15653]={ + ["next_chapter"]=15654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29837, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=542373, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54780, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=542373, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15654]={ + ["next_chapter"]=15655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29852, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=547797, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55327, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=547797, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15655]={ + ["next_chapter"]=15656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=553275, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55881, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=553275, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15656]={ + ["next_chapter"]=15657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=558808, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56440, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=558808, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15657]={ + ["next_chapter"]=15658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9866, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=564396, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57004, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=564396, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15658]={ + ["next_chapter"]=15659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9870, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=570040, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57574, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=570040, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15659]={ + ["next_chapter"]=15660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9875, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=575740, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58150, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=575740, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=55581, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1565, + ["unit"]=0 + } + }, + [15660]={ + ["next_chapter"]=15661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=29939, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=581497, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58731, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=581497, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15661]={ + ["next_chapter"]=15662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29954, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9885, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=587312, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59319, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=587312, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15662]={ + ["next_chapter"]=15663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=593186, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59912, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=593186, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15663]={ + ["next_chapter"]=15664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9894, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=599117, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60511, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=599117, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15664]={ + ["next_chapter"]=15665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=29998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9899, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=605109, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61116, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=605109, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15665]={ + ["next_chapter"]=15666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30012, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9904, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=611160, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61727, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=611160, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15666]={ + ["next_chapter"]=15667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=617271, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62344, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=617271, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15667]={ + ["next_chapter"]=15668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9914, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=623444, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62968, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=623444, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15668]={ + ["next_chapter"]=15669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=629678, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63598, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=629678, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15669]={ + ["next_chapter"]=15670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30071, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9923, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=635975, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64233, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=635975, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=61396, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1566, + ["unit"]=0 + } + }, + [15670]={ + ["next_chapter"]=15671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=30085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=642335, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64876, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=642335, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15671]={ + ["next_chapter"]=15672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30100, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=648758, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65525, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=648758, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15672]={ + ["next_chapter"]=15673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9938, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=655246, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66180, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=655246, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15673]={ + ["next_chapter"]=15674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=661798, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66842, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=661798, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15674]={ + ["next_chapter"]=15675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=668416, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67510, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=668416, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15675]={ + ["next_chapter"]=15676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30158, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9952, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=675100, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68185, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=675100, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15676]={ + ["next_chapter"]=15677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9957, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=681852, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68867, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=681852, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15677]={ + ["next_chapter"]=15678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9962, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=688670, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69556, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=688670, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15678]={ + ["next_chapter"]=15679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=695557, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70251, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=695557, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15679]={ + ["next_chapter"]=15680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9972, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=702512, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70954, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=702512, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=67819, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1567, + ["unit"]=0 + } + }, + [15680]={ + ["next_chapter"]=15681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=30232, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=709537, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71663, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=709537, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15681]={ + ["next_chapter"]=15682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9981, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=716633, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72380, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=716633, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15682]={ + ["next_chapter"]=15683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=723799, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73104, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=723799, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15683]={ + ["next_chapter"]=15684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=731037, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73835, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=731037, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15684]={ + ["next_chapter"]=15685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30290, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=9996, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=738347, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74573, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=738347, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15685]={ + ["next_chapter"]=15686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30305, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10001, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=745731, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75319, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=745731, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15686]={ + ["next_chapter"]=15687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=753188, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76072, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=753188, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15687]={ + ["next_chapter"]=15688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30334, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10010, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=760720, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76833, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=760720, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15688]={ + ["next_chapter"]=15689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10015, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=768327, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77601, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=768327, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15689]={ + ["next_chapter"]=15690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30364, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10020, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=776011, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78377, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=776011, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=74914, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1568, + ["unit"]=0 + } + }, + [15690]={ + ["next_chapter"]=15691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=30379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=783771, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79161, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=783771, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15691]={ + ["next_chapter"]=15692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30393, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=791608, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79952, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=791608, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15692]={ + ["next_chapter"]=15693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30408, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10035, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=799525, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80752, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=799525, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15693]={ + ["next_chapter"]=15694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30423, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=807520, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81559, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=807520, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15694]={ + ["next_chapter"]=15695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=815595, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82375, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=815595, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15695]={ + ["next_chapter"]=15696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30452, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=823751, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83199, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=823751, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15696]={ + ["next_chapter"]=15697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=831988, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84031, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=831988, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15697]={ + ["next_chapter"]=15698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30482, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=840308, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84871, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=840308, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15698]={ + ["next_chapter"]=15699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10064, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=848711, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85720, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=848711, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15699]={ + ["next_chapter"]=15700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=857198, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86577, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=857198, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=82752, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1569, + ["unit"]=0 + } + }, + [15700]={ + ["next_chapter"]=15701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=30526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=865770, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87443, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=865770, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15701]={ + ["next_chapter"]=15702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10078, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=874428, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88317, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=874428, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15702]={ + ["next_chapter"]=15703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=883172, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89200, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=883172, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15703]={ + ["next_chapter"]=15704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10088, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=892004, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90092, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=892004, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15704]={ + ["next_chapter"]=15705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10093, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=900924, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90993, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=900924, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15705]={ + ["next_chapter"]=15706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30600, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=909933, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91903, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=909933, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15706]={ + ["next_chapter"]=15707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30615, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=919033, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92822, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=919033, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15707]={ + ["next_chapter"]=15708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30629, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10108, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=928223, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93751, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=928223, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15708]={ + ["next_chapter"]=15709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30644, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=937505, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94688, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=937505, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15709]={ + ["next_chapter"]=15710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=946880, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95635, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=946880, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=91410, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1570, + ["unit"]=0 + } + }, + [15710]={ + ["next_chapter"]=15711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=30674, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10122, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=956349, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96591, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=956349, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15711]={ + ["next_chapter"]=15712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30689, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=965913, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97557, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=965913, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15712]={ + ["next_chapter"]=15713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30703, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=975572, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98533, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=975572, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15713]={ + ["next_chapter"]=15714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30718, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=985328, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99518, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=985328, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15714]={ + ["next_chapter"]=15715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30733, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=995181, + ["unit"]=21 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100513, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=995181, + ["unit"]=21 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15715]={ + ["next_chapter"]=15716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10147, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1005, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101518, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1005, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15716]={ + ["next_chapter"]=15717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10152, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1015, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102534, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1015, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15717]={ + ["next_chapter"]=15718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1025, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103559, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1025, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15718]={ + ["next_chapter"]=15719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30792, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10162, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1036, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104595, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1036, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15719]={ + ["next_chapter"]=15720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10166, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1046, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105640, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1046, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=100973, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1571, + ["unit"]=0 + } + }, + [15720]={ + ["next_chapter"]=15721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=30822, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1056, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106697, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1056, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15721]={ + ["next_chapter"]=15722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30837, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1067, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107764, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1067, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15722]={ + ["next_chapter"]=15723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30852, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1078, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108841, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1078, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15723]={ + ["next_chapter"]=15724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1088, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109930, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1088, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15724]={ + ["next_chapter"]=15725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30882, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1099, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111029, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1099, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15725]={ + ["next_chapter"]=15726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10196, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1110, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112139, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1110, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15726]={ + ["next_chapter"]=15727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30911, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10201, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1121, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113261, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1121, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15727]={ + ["next_chapter"]=15728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1133, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114393, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1133, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15728]={ + ["next_chapter"]=15729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30941, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1144, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115537, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1144, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15729]={ + ["next_chapter"]=15730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30956, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1155, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116693, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1155, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=111537, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1572, + ["unit"]=0 + } + }, + [15730]={ + ["next_chapter"]=15731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=30971, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1167, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117860, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1167, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15731]={ + ["next_chapter"]=15732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=30986, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10225, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1179, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119038, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1179, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15732]={ + ["next_chapter"]=15733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31001, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10230, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1190, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120229, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1190, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15733]={ + ["next_chapter"]=15734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31016, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10235, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1202, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121431, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1202, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15734]={ + ["next_chapter"]=15735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31031, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10240, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1214, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122645, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1214, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15735]={ + ["next_chapter"]=15736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31046, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1226, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123872, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1226, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15736]={ + ["next_chapter"]=15737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31060, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1239, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125110, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1239, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15737]={ + ["next_chapter"]=15738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10255, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1251, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126362, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1251, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15738]={ + ["next_chapter"]=15739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10260, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1264, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127625, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1264, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15739]={ + ["next_chapter"]=15740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1276, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128901, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1276, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=123207, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1573, + ["unit"]=0 + } + }, + [15740]={ + ["next_chapter"]=15741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=31120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1289, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130190, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1289, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15741]={ + ["next_chapter"]=15742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10275, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1302, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131492, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1302, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15742]={ + ["next_chapter"]=15743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31150, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10280, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1315, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132807, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1315, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15743]={ + ["next_chapter"]=15744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1328, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134135, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1328, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15744]={ + ["next_chapter"]=15745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10289, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1341, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135477, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1341, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15745]={ + ["next_chapter"]=15746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1355, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136831, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1355, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15746]={ + ["next_chapter"]=15747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1368, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138200, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1368, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15747]={ + ["next_chapter"]=15748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1382, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139582, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1382, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15748]={ + ["next_chapter"]=15749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10309, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1396, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140978, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1396, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15749]={ + ["next_chapter"]=15750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1410, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142387, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1410, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=136097, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1574, + ["unit"]=0 + } + }, + [15750]={ + ["next_chapter"]=15751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=31270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10319, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1424, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143811, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1424, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15751]={ + ["next_chapter"]=15752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1438, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145249, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1438, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15752]={ + ["next_chapter"]=15753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10329, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1452, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146702, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1452, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15753]={ + ["next_chapter"]=15754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1467, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148169, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1467, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15754]={ + ["next_chapter"]=15755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1482, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149651, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1482, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15755]={ + ["next_chapter"]=15756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10344, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1497, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151147, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1497, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15756]={ + ["next_chapter"]=15757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10349, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1511, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152659, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1511, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15757]={ + ["next_chapter"]=15758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10354, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1527, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154185, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1527, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15758]={ + ["next_chapter"]=15759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1542, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155727, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1542, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15759]={ + ["next_chapter"]=15760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31405, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10364, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1557, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157284, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1557, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=150336, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1575, + ["unit"]=0 + } + }, + [15760]={ + ["next_chapter"]=15761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=31420, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10369, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1573, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158857, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1573, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15761]={ + ["next_chapter"]=15762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1589, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160446, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1589, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15762]={ + ["next_chapter"]=15763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31450, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10379, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1604, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162050, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1604, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15763]={ + ["next_chapter"]=15764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31465, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1621, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163671, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1621, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15764]={ + ["next_chapter"]=15765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1637, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165307, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1637, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15765]={ + ["next_chapter"]=15766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10394, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1653, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166960, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1653, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15766]={ + ["next_chapter"]=15767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1670, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168630, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1670, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15767]={ + ["next_chapter"]=15768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1686, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170316, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1686, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15768]={ + ["next_chapter"]=15769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10408, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1703, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172019, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1703, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15769]={ + ["next_chapter"]=15770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10413, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1720, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173740, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1720, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=166064, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1576, + ["unit"]=0 + } + }, + [15770]={ + ["next_chapter"]=15771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=31571, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10418, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1737, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175477, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1737, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15771]={ + ["next_chapter"]=15772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31586, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1755, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177232, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1755, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15772]={ + ["next_chapter"]=15773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31601, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10428, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1772, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179004, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1772, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15773]={ + ["next_chapter"]=15774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1790, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180794, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1790, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15774]={ + ["next_chapter"]=15775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10438, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1808, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182602, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1808, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15775]={ + ["next_chapter"]=15776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10443, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1826, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184428, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1826, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15776]={ + ["next_chapter"]=15777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10448, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1844, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186272, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1844, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15777]={ + ["next_chapter"]=15778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10453, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1863, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188135, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1863, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15778]={ + ["next_chapter"]=15779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10458, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1881, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190016, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1881, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15779]={ + ["next_chapter"]=15780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1900, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191917, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1900, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=183438, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1577, + ["unit"]=0 + } + }, + [15780]={ + ["next_chapter"]=15781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=31722, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1919, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193836, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1919, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15781]={ + ["next_chapter"]=15782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1938, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195774, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1938, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15782]={ + ["next_chapter"]=15783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10478, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1958, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197732, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1958, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15783]={ + ["next_chapter"]=15784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1977, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199709, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1977, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15784]={ + ["next_chapter"]=15785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31783, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1997, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201706, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=1997, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15785]={ + ["next_chapter"]=15786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2017, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203723, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2017, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15786]={ + ["next_chapter"]=15787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31813, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10498, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2037, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205761, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2037, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15787]={ + ["next_chapter"]=15788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31828, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2058, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207818, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2058, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15788]={ + ["next_chapter"]=15789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2078, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209896, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2078, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15789]={ + ["next_chapter"]=15790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10513, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2099, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211995, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2099, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=202630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1578, + ["unit"]=0 + } + }, + [15790]={ + ["next_chapter"]=15791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=31874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2120, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214115, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2120, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15791]={ + ["next_chapter"]=15792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10523, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2141, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216256, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2141, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15792]={ + ["next_chapter"]=15793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31904, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2163, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218419, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2163, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15793]={ + ["next_chapter"]=15794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2184, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220603, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2184, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15794]={ + ["next_chapter"]=15795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10538, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2206, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222809, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2206, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15795]={ + ["next_chapter"]=15796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10543, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2228, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225037, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2228, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15796]={ + ["next_chapter"]=15797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31965, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2250, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227288, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2250, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15797]={ + ["next_chapter"]=15798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31980, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2273, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229561, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2273, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15798]={ + ["next_chapter"]=15799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=31996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10559, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2296, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231856, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2296, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15799]={ + ["next_chapter"]=15800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2319, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234175, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2319, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=223829, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1579, + ["unit"]=0 + } + }, + [15800]={ + ["next_chapter"]=15801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=32026, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10569, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2342, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236517, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2342, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15801]={ + ["next_chapter"]=15802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2365, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238882, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2365, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15802]={ + ["next_chapter"]=15803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10579, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2389, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241271, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2389, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15803]={ + ["next_chapter"]=15804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10584, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2413, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243683, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2413, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15804]={ + ["next_chapter"]=15805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2437, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246120, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2437, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15805]={ + ["next_chapter"]=15806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32102, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2461, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248581, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2461, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15806]={ + ["next_chapter"]=15807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32118, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10599, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2486, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251067, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2486, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15807]={ + ["next_chapter"]=15808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32133, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10604, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2511, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253578, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2511, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15808]={ + ["next_chapter"]=15809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10609, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2536, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256114, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2536, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15809]={ + ["next_chapter"]=15810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10614, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2561, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258675, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2561, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=247247, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1580, + ["unit"]=0 + } + }, + [15810]={ + ["next_chapter"]=15811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=32179, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10619, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2587, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261261, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2587, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15811]={ + ["next_chapter"]=15812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10624, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2613, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263874, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2613, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15812]={ + ["next_chapter"]=15813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2639, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266513, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2639, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15813]={ + ["next_chapter"]=15814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10634, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2665, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269178, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2665, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15814]={ + ["next_chapter"]=15815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10639, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2692, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271870, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2692, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15815]={ + ["next_chapter"]=15816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2719, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274588, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2719, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15816]={ + ["next_chapter"]=15817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2746, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277334, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2746, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15817]={ + ["next_chapter"]=15818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2773, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280108, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2773, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15818]={ + ["next_chapter"]=15819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2801, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=282909, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2801, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15819]={ + ["next_chapter"]=15820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10664, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2829, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=285738, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2829, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=273114, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1581, + ["unit"]=0 + } + }, + [15820]={ + ["next_chapter"]=15821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=32332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2857, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288595, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2857, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15821]={ + ["next_chapter"]=15822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10675, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2886, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291481, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2886, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15822]={ + ["next_chapter"]=15823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10680, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2915, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=294396, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2915, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15823]={ + ["next_chapter"]=15824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10685, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2944, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=297340, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2944, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15824]={ + ["next_chapter"]=15825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32393, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2973, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300313, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=2973, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15825]={ + ["next_chapter"]=15826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3003, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=303316, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3003, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15826]={ + ["next_chapter"]=15827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32424, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10700, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3033, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=306350, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3033, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15827]={ + ["next_chapter"]=15828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10705, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3063, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=309413, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3063, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15828]={ + ["next_chapter"]=15829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3094, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=312507, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3094, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15829]={ + ["next_chapter"]=15830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32470, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10715, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3125, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=315632, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3125, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=301688, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1582, + ["unit"]=0 + } + }, + [15830]={ + ["next_chapter"]=15831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=32485, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10720, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3156, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=318789, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3156, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15831]={ + ["next_chapter"]=15832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32501, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10725, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3188, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=321976, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3188, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15832]={ + ["next_chapter"]=15833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32516, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3220, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325196, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3220, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15833]={ + ["next_chapter"]=15834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32532, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10735, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3252, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328448, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3252, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15834]={ + ["next_chapter"]=15835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32547, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10741, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3284, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331733, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3284, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15835]={ + ["next_chapter"]=15836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10746, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3317, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335050, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3317, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15836]={ + ["next_chapter"]=15837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3350, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338400, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3350, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15837]={ + ["next_chapter"]=15838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10756, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3384, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=341784, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3384, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15838]={ + ["next_chapter"]=15839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32609, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10761, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3418, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=345202, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3418, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15839]={ + ["next_chapter"]=15840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10766, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3452, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=348654, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3452, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=333251, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1583, + ["unit"]=0 + } + }, + [15840]={ + ["next_chapter"]=15841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=32640, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10771, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3487, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=352141, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3487, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15841]={ + ["next_chapter"]=15842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10776, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3521, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=355662, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3521, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15842]={ + ["next_chapter"]=15843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10781, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3557, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=359219, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3557, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15843]={ + ["next_chapter"]=15844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10786, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3592, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362811, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3592, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15844]={ + ["next_chapter"]=15845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32701, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10791, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3628, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366439, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3628, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15845]={ + ["next_chapter"]=15846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10797, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3664, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370104, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3664, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15846]={ + ["next_chapter"]=15847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3701, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=373805, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3701, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15847]={ + ["next_chapter"]=15848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10807, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3738, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=377543, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3738, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15848]={ + ["next_chapter"]=15849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3775, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=381318, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3775, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15849]={ + ["next_chapter"]=15850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3813, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=385131, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3813, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=368117, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1584, + ["unit"]=0 + } + }, + [15850]={ + ["next_chapter"]=15851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=32794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3851, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=388983, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3851, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15851]={ + ["next_chapter"]=15852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3890, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=392872, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3890, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15852]={ + ["next_chapter"]=15853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10832, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3929, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=396801, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3929, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15853]={ + ["next_chapter"]=15854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3968, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=400769, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=3968, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15854]={ + ["next_chapter"]=15855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32856, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10843, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4008, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=404777, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4008, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15855]={ + ["next_chapter"]=15856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32872, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4048, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=408825, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4048, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15856]={ + ["next_chapter"]=15857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10853, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4088, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=412913, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4088, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15857]={ + ["next_chapter"]=15858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4129, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=417042, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4129, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15858]={ + ["next_chapter"]=15859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32918, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10863, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4170, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=421212, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4170, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15859]={ + ["next_chapter"]=15860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10868, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4212, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=425425, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4212, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=406630, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1585, + ["unit"]=0 + } + }, + [15860]={ + ["next_chapter"]=15861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=32949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4254, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=429679, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4254, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15861]={ + ["next_chapter"]=15862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32965, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4297, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=433976, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4297, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15862]={ + ["next_chapter"]=15863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32980, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10883, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4340, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=438315, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4340, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15863]={ + ["next_chapter"]=15864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=32996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10889, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4383, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=442699, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4383, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15864]={ + ["next_chapter"]=15865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10894, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4427, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=447126, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4427, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15865]={ + ["next_chapter"]=15866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10899, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4471, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451597, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4471, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15866]={ + ["next_chapter"]=15867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10904, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4516, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456113, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4516, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15867]={ + ["next_chapter"]=15868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33058, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4561, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=460674, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4561, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15868]={ + ["next_chapter"]=15869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33074, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10914, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4607, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=465281, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4607, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15869]={ + ["next_chapter"]=15870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33089, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4653, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=469933, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4653, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=449172, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1586, + ["unit"]=0 + } + }, + [15870]={ + ["next_chapter"]=15871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=33105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10925, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4699, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=474633, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4699, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15871]={ + ["next_chapter"]=15872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10930, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4746, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=479379, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4746, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15872]={ + ["next_chapter"]=15873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33136, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4794, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=484173, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4794, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15873]={ + ["next_chapter"]=15874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33152, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10940, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4842, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=489015, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4842, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15874]={ + ["next_chapter"]=15875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33167, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10945, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4890, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=493905, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4890, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15875]={ + ["next_chapter"]=15876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10950, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4939, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=498844, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4939, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15876]={ + ["next_chapter"]=15877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33198, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10955, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4988, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=503832, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=4988, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15877]={ + ["next_chapter"]=15878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33214, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10961, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5038, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=508871, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5038, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15878]={ + ["next_chapter"]=15879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33230, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5089, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=513959, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5089, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15879]={ + ["next_chapter"]=15880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10971, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5140, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=519099, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5140, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=496165, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1587, + ["unit"]=0 + } + }, + [15880]={ + ["next_chapter"]=15881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=33261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5191, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=524290, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5191, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15881]={ + ["next_chapter"]=15882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10981, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5243, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=529533, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5243, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15882]={ + ["next_chapter"]=15883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33292, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5295, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534828, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5295, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15883]={ + ["next_chapter"]=15884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33308, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5348, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540176, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5348, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15884]={ + ["next_chapter"]=15885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=10997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5402, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=545578, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5402, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15885]={ + ["next_chapter"]=15886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5456, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=551034, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5456, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15886]={ + ["next_chapter"]=15887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33355, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5510, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=556544, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5510, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15887]={ + ["next_chapter"]=15888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5565, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=562110, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5565, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15888]={ + ["next_chapter"]=15889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5621, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=567731, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5621, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15889]={ + ["next_chapter"]=15890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11023, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5677, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=573408, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5677, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=548075, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1588, + ["unit"]=0 + } + }, + [15890]={ + ["next_chapter"]=15891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=33417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5734, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=579142, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5734, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15891]={ + ["next_chapter"]=15892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5791, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=584934, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5791, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15892]={ + ["next_chapter"]=15893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33449, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11038, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5849, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=590783, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5849, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15893]={ + ["next_chapter"]=15894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33464, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5908, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=596691, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5908, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15894]={ + ["next_chapter"]=15895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11048, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5967, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=602658, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=5967, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15895]={ + ["next_chapter"]=15896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6027, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=608684, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6027, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15896]={ + ["next_chapter"]=15897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33512, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6087, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=614771, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6087, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15897]={ + ["next_chapter"]=15898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11064, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6148, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=620919, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6148, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15898]={ + ["next_chapter"]=15899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6209, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=627128, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6209, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15899]={ + ["next_chapter"]=15900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33559, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6271, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=633399, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6271, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=605416, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1589, + ["unit"]=0 + } + }, + [15900]={ + ["next_chapter"]=15901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=33574, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6334, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=639733, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6334, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15901]={ + ["next_chapter"]=15902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6397, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=646131, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6397, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15902]={ + ["next_chapter"]=15903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6461, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=652592, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6461, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15903]={ + ["next_chapter"]=15904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33622, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11095, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6526, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=659118, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6526, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15904]={ + ["next_chapter"]=15905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11100, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6591, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=665709, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6591, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15905]={ + ["next_chapter"]=15906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33653, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11106, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6657, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=672366, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6657, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15906]={ + ["next_chapter"]=15907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33669, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6724, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=679090, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6724, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15907]={ + ["next_chapter"]=15908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33685, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11116, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6791, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=685881, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6791, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15908]={ + ["next_chapter"]=15909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11121, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6859, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=692739, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6859, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15909]={ + ["next_chapter"]=15910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6927, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=699667, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6927, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=668756, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1590, + ["unit"]=0 + } + }, + [15910]={ + ["next_chapter"]=15911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=33732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6997, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=706663, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=6997, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15911]={ + ["next_chapter"]=15912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7067, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=713730, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7067, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15912]={ + ["next_chapter"]=15913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7137, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=720867, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7137, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15913]={ + ["next_chapter"]=15914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11147, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7209, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=728076, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7209, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15914]={ + ["next_chapter"]=15915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11152, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7281, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=735357, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7281, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15915]={ + ["next_chapter"]=15916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7354, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=742710, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7354, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15916]={ + ["next_chapter"]=15917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7427, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=750138, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7427, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15917]={ + ["next_chapter"]=15918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7501, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=757639, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7501, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15918]={ + ["next_chapter"]=15919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33858, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11173, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7576, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=765215, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7576, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15919]={ + ["next_chapter"]=15920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7652, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=772867, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7652, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=738723, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1591, + ["unit"]=0 + } + }, + [15920]={ + ["next_chapter"]=15921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=33890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11184, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7729, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=780596, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7729, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15921]={ + ["next_chapter"]=15922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7806, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=788402, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7806, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15922]={ + ["next_chapter"]=15923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33922, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11194, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7884, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=796286, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7884, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15923]={ + ["next_chapter"]=15924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7963, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=804249, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=7963, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15924]={ + ["next_chapter"]=15925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33953, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11205, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8042, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=812291, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8042, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15925]={ + ["next_chapter"]=15926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11210, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8123, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=820414, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8123, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15926]={ + ["next_chapter"]=15927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=33985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8204, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=828618, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8204, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15927]={ + ["next_chapter"]=15928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34001, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8286, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=836905, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8286, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15928]={ + ["next_chapter"]=15929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11226, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8369, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=845274, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8369, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15929]={ + ["next_chapter"]=15930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8453, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=853726, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8453, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=816009, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1592, + ["unit"]=0 + } + }, + [15930]={ + ["next_chapter"]=15931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=34049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8537, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=862264, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8537, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15931]={ + ["next_chapter"]=15932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8623, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=870886, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8623, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15932]={ + ["next_chapter"]=15933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8709, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=879595, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8709, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15933]={ + ["next_chapter"]=15934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11252, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8796, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=888391, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8796, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15934]={ + ["next_chapter"]=15935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34112, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11257, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8884, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=897275, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8884, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15935]={ + ["next_chapter"]=15936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34128, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11262, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8973, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=906248, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=8973, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15936]={ + ["next_chapter"]=15937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11267, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9062, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=915310, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9062, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15937]={ + ["next_chapter"]=15938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34160, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11273, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9153, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=924463, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9153, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15938]={ + ["next_chapter"]=15939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11278, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9245, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=933708, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9245, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15939]={ + ["next_chapter"]=15940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34192, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11283, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9337, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=943045, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9337, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=901382, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1593, + ["unit"]=0 + } + }, + [15940]={ + ["next_chapter"]=15941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=34208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9430, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=952476, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9430, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15941]={ + ["next_chapter"]=15942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9525, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=962000, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9525, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15942]={ + ["next_chapter"]=15943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9620, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=971620, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9620, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15943]={ + ["next_chapter"]=15944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9716, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=981337, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9716, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15944]={ + ["next_chapter"]=15945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11310, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9813, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=991150, + ["unit"]=22 + }, + ["idle_gold"]={ + ["value"]=9813, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15945]={ + ["next_chapter"]=15946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34287, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11315, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9911, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1001, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9911, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15946]={ + ["next_chapter"]=15947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11320, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10011, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1011, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10011, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15947]={ + ["next_chapter"]=15948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10111, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1021, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10111, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15948]={ + ["next_chapter"]=15949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11331, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10212, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1031, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10212, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15949]={ + ["next_chapter"]=15950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11336, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10314, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1042, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10314, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=995687, + ["unit"]=22 + }, + ["grasp_mastery_reward"]={ + ["value"]=1594, + ["unit"]=0 + } + }, + [15950]={ + ["next_chapter"]=15951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=34367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11341, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10417, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1052, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10417, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15951]={ + ["next_chapter"]=15952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10521, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1063, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10521, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15952]={ + ["next_chapter"]=15953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11352, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10626, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1073, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10626, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15953]={ + ["next_chapter"]=15954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10733, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1084, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10733, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15954]={ + ["next_chapter"]=15955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34431, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10840, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1095, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10840, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15955]={ + ["next_chapter"]=15956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10948, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1106, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=10948, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15956]={ + ["next_chapter"]=15957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11058, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1117, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11058, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15957]={ + ["next_chapter"]=15958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11169, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1128, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11169, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15958]={ + ["next_chapter"]=15959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11383, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11280, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1139, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11280, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15959]={ + ["next_chapter"]=15960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11393, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1151, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11393, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1100, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1595, + ["unit"]=0 + } + }, + [15960]={ + ["next_chapter"]=15961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=34527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11394, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11507, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1162, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11507, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15961]={ + ["next_chapter"]=15962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11622, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1174, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11622, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15962]={ + ["next_chapter"]=15963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34559, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11404, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11738, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1186, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11738, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15963]={ + ["next_chapter"]=15964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11410, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11856, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1197, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11856, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15964]={ + ["next_chapter"]=15965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11415, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11974, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1209, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=11974, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15965]={ + ["next_chapter"]=15966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11420, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12094, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1221, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=12094, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15966]={ + ["next_chapter"]=15967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11426, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12215, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1234, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=12215, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15967]={ + ["next_chapter"]=15968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11431, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12337, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1246, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=12337, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15968]={ + ["next_chapter"]=15969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11436, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12460, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1258, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=12460, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15969]={ + ["next_chapter"]=15970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11442, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12585, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1271, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=12585, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1215, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1596, + ["unit"]=0 + } + }, + [15970]={ + ["next_chapter"]=15971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=34688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12711, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1284, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=12711, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15971]={ + ["next_chapter"]=15972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34704, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11452, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12838, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1297, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=12838, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15972]={ + ["next_chapter"]=15973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11457, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12966, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1310, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=12966, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15973]={ + ["next_chapter"]=15974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13096, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1323, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=13096, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15974]={ + ["next_chapter"]=15975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13227, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1336, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=13227, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15975]={ + ["next_chapter"]=15976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13359, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1349, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=13359, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15976]={ + ["next_chapter"]=15977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13493, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1363, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=13493, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15977]={ + ["next_chapter"]=15978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34800, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11484, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13628, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1376, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=13628, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15978]={ + ["next_chapter"]=15979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34816, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13764, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1390, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=13764, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15979]={ + ["next_chapter"]=15980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11495, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13902, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1404, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=13902, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1342, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1597, + ["unit"]=0 + } + }, + [15980]={ + ["next_chapter"]=15981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=34849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14041, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1418, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=14041, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15981]={ + ["next_chapter"]=15982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34865, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14181, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1432, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=14181, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15982]={ + ["next_chapter"]=15983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11511, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14323, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1447, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=14323, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15983]={ + ["next_chapter"]=15984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11516, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14466, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1461, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=14466, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15984]={ + ["next_chapter"]=15985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34913, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11521, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14611, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1476, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=14611, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15985]={ + ["next_chapter"]=15986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34929, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14757, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1490, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=14757, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15986]={ + ["next_chapter"]=15987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11532, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14904, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1505, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=14904, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15987]={ + ["next_chapter"]=15988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34962, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11537, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15053, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1520, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=15053, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15988]={ + ["next_chapter"]=15989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11543, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15204, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1536, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=15204, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15989]={ + ["next_chapter"]=15990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=34994, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15356, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1551, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=15356, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1482, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1598, + ["unit"]=0 + } + }, + [15990]={ + ["next_chapter"]=15991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=35010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11553, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15510, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1566, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=15510, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15991]={ + ["next_chapter"]=15992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35026, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11559, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15665, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1582, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=15665, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15992]={ + ["next_chapter"]=15993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15821, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1598, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=15821, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15993]={ + ["next_chapter"]=15994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11569, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15980, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1614, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=15980, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15994]={ + ["next_chapter"]=15995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11575, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16139, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1630, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=16139, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15995]={ + ["next_chapter"]=15996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35091, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16301, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1646, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=16301, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15996]={ + ["next_chapter"]=15997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16464, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1663, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=16464, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15997]={ + ["next_chapter"]=15998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11591, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16628, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1679, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=16628, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15998]={ + ["next_chapter"]=15999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16795, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1696, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=16795, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [15999]={ + ["next_chapter"]=16000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16963, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1713, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=16963, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1638, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1599, + ["unit"]=0 + } + }, + [16000]={ + ["next_chapter"]=16001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=35172, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17132, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1730, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=17132, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16001]={ + ["next_chapter"]=16002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17304, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1748, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=17304, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16002]={ + ["next_chapter"]=16003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17477, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1765, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=17477, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16003]={ + ["next_chapter"]=16004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11623, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17651, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1783, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=17651, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16004]={ + ["next_chapter"]=16005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17828, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1801, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=17828, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16005]={ + ["next_chapter"]=16006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11634, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18006, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1819, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=18006, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16006]={ + ["next_chapter"]=16007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11639, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18186, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1837, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=18186, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16007]={ + ["next_chapter"]=16008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18368, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1855, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=18368, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16008]={ + ["next_chapter"]=16009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35302, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11650, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18552, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1874, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=18552, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16009]={ + ["next_chapter"]=16010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35318, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18737, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1892, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=18737, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1809, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + [16010]={ + ["next_chapter"]=16011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=35334, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11660, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18925, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1911, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=18925, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16011]={ + ["next_chapter"]=16012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19114, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1931, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=19114, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16012]={ + ["next_chapter"]=16013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11671, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19305, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1950, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=19305, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16013]={ + ["next_chapter"]=16014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19498, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1969, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=19498, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16014]={ + ["next_chapter"]=16015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35400, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19693, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1989, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=19693, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16015]={ + ["next_chapter"]=16016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19890, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2009, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=19890, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16016]={ + ["next_chapter"]=16017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11693, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20089, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2029, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=20089, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16017]={ + ["next_chapter"]=16018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35449, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20290, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2049, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=20290, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16018]={ + ["next_chapter"]=16019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35465, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11703, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20493, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2070, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=20493, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16019]={ + ["next_chapter"]=16020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35481, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11709, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20698, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2090, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=20698, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=1998, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1601, + ["unit"]=0 + } + }, + [16020]={ + ["next_chapter"]=16021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=35497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20905, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2111, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=20905, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16021]={ + ["next_chapter"]=16022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11720, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21114, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2132, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=21114, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16022]={ + ["next_chapter"]=16023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11725, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21325, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2154, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=21325, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16023]={ + ["next_chapter"]=16024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21538, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2175, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=21538, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16024]={ + ["next_chapter"]=16025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11736, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21753, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2197, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=21753, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16025]={ + ["next_chapter"]=16026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35579, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11741, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21971, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2219, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=21971, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16026]={ + ["next_chapter"]=16027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22191, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2241, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=22191, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16027]={ + ["next_chapter"]=16028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35612, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11752, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22413, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2264, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=22413, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16028]={ + ["next_chapter"]=16029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35628, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22637, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2286, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=22637, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16029]={ + ["next_chapter"]=16030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35645, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22863, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2309, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=22863, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2207, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1602, + ["unit"]=0 + } + }, + [16030]={ + ["next_chapter"]=16031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=35661, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11768, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23092, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2332, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=23092, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16031]={ + ["next_chapter"]=16032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11774, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23323, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2356, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=23323, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16032]={ + ["next_chapter"]=16033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35694, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23556, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2379, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=23556, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16033]={ + ["next_chapter"]=16034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35710, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23791, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2403, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=23791, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16034]={ + ["next_chapter"]=16035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11790, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24029, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2427, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=24029, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16035]={ + ["next_chapter"]=16036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11795, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24270, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2451, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=24270, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16036]={ + ["next_chapter"]=16037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11801, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24512, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2476, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=24512, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16037]={ + ["next_chapter"]=16038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24757, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2501, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=24757, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16038]={ + ["next_chapter"]=16039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35792, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25005, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2526, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=25005, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16039]={ + ["next_chapter"]=16040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35809, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25255, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2551, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=25255, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2438, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1603, + ["unit"]=0 + } + }, + [16040]={ + ["next_chapter"]=16041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=35825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25508, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2576, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=25508, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16041]={ + ["next_chapter"]=16042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11828, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25763, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2602, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=25763, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16042]={ + ["next_chapter"]=16043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35858, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26020, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2628, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=26020, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16043]={ + ["next_chapter"]=16044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11839, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26281, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2654, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=26281, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16044]={ + ["next_chapter"]=16045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11844, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26543, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2681, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=26543, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16045]={ + ["next_chapter"]=16046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35907, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11849, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26809, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2708, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=26809, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16046]={ + ["next_chapter"]=16047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35924, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27077, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2735, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=27077, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16047]={ + ["next_chapter"]=16048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35940, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11860, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27348, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2762, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=27348, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16048]={ + ["next_chapter"]=16049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35957, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11866, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27621, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2790, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=27621, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16049]={ + ["next_chapter"]=16050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=35973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27897, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2818, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=27897, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2693, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1604, + ["unit"]=0 + } + }, + [16050]={ + ["next_chapter"]=16051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=35989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28176, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2846, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=28176, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16051]={ + ["next_chapter"]=16052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28458, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2874, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=28458, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16052]={ + ["next_chapter"]=16053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36022, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11887, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28743, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2903, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=28743, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16053]={ + ["next_chapter"]=16054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36039, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11893, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29030, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2932, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=29030, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16054]={ + ["next_chapter"]=16055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29320, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2961, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=29320, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16055]={ + ["next_chapter"]=16056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11904, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29614, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2991, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=29614, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16056]={ + ["next_chapter"]=16057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29910, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3021, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=29910, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16057]={ + ["next_chapter"]=16058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30209, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3051, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=30209, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16058]={ + ["next_chapter"]=16059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36121, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30511, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3082, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=30511, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16059]={ + ["next_chapter"]=16060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36138, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11926, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30816, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3112, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=30816, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=2975, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1605, + ["unit"]=0 + } + }, + [16060]={ + ["next_chapter"]=16061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=36154, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31124, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3144, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=31124, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16061]={ + ["next_chapter"]=16062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36171, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11936, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31435, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3175, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=31435, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16062]={ + ["next_chapter"]=16063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11942, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31750, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3207, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=31750, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16063]={ + ["next_chapter"]=16064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32067, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3239, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=32067, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16064]={ + ["next_chapter"]=16065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32388, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3271, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=32388, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16065]={ + ["next_chapter"]=16066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11958, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32712, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3304, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=32712, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16066]={ + ["next_chapter"]=16067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11964, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33039, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3337, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=33039, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16067]={ + ["next_chapter"]=16068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11969, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33369, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3370, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=33369, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16068]={ + ["next_chapter"]=16069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36287, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11975, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33703, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3404, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=33703, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16069]={ + ["next_chapter"]=16070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11980, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34040, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3438, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=34040, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3286, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1606, + ["unit"]=0 + } + }, + [16070]={ + ["next_chapter"]=16071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=36320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34380, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3472, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=34380, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16071]={ + ["next_chapter"]=16072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34724, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3507, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=34724, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16072]={ + ["next_chapter"]=16073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=11997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35071, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3542, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=35071, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16073]={ + ["next_chapter"]=16074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35422, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3578, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=35422, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16074]={ + ["next_chapter"]=16075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35776, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3613, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=35776, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16075]={ + ["next_chapter"]=16076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12013, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36134, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3650, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=36134, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16076]={ + ["next_chapter"]=16077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12018, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36495, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3686, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=36495, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16077]={ + ["next_chapter"]=16078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36860, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3723, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=36860, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16078]={ + ["next_chapter"]=16079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36453, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37229, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3760, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=37229, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16079]={ + ["next_chapter"]=16080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12035, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37601, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3798, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=37601, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=3630, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1607, + ["unit"]=0 + } + }, + [16080]={ + ["next_chapter"]=16081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=36486, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37977, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3836, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=37977, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16081]={ + ["next_chapter"]=16082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38357, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3874, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=38357, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16082]={ + ["next_chapter"]=16083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12051, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38741, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3913, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=38741, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16083]={ + ["next_chapter"]=16084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36536, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39128, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3952, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=39128, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16084]={ + ["next_chapter"]=16085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12062, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39519, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3991, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=39519, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16085]={ + ["next_chapter"]=16086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12068, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39915, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4031, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=39915, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16086]={ + ["next_chapter"]=16087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36586, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12073, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40314, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4072, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=40314, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16087]={ + ["next_chapter"]=16088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12079, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40717, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4112, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=40717, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16088]={ + ["next_chapter"]=16089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36619, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41124, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4154, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=41124, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16089]={ + ["next_chapter"]=16090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41535, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4195, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=41535, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4010, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1608, + ["unit"]=0 + } + }, + [16090]={ + ["next_chapter"]=16091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=36652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12095, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41951, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4237, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=41951, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16091]={ + ["next_chapter"]=16092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36669, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42370, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4279, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=42370, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16092]={ + ["next_chapter"]=16093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12106, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42794, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4322, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=42794, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16093]={ + ["next_chapter"]=16094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36703, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43222, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4365, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=43222, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16094]={ + ["next_chapter"]=16095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36719, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43654, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4409, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=43654, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16095]={ + ["next_chapter"]=16096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44091, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4453, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=44091, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16096]={ + ["next_chapter"]=16097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12128, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44531, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4498, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=44531, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16097]={ + ["next_chapter"]=16098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36769, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12134, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44977, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4543, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=44977, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16098]={ + ["next_chapter"]=16099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12139, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45427, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4588, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=45427, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16099]={ + ["next_chapter"]=16100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12145, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45881, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4634, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=45881, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4429, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1609, + ["unit"]=0 + } + }, + [16100]={ + ["next_chapter"]=16101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=36819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46340, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4680, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=46340, + ["unit"]=22 + }, + ["chapter_drop"]=63, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16101]={ + ["next_chapter"]=16102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36836, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46803, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4727, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=46803, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16102]={ + ["next_chapter"]=16103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36853, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12161, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47271, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4774, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=47271, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16103]={ + ["next_chapter"]=16104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36870, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47744, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4822, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=47744, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16104]={ + ["next_chapter"]=16105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12173, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48221, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4870, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=48221, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16105]={ + ["next_chapter"]=16106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48703, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4919, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=48703, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16106]={ + ["next_chapter"]=16107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12184, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49190, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4968, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=49190, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16107]={ + ["next_chapter"]=16108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49682, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5018, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=49682, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16108]={ + ["next_chapter"]=16109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36953, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12195, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50179, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5068, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=50179, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16109]={ + ["next_chapter"]=16110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=36970, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12200, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50681, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5119, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=50681, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4893, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1610, + ["unit"]=0 + } + }, + [16110]={ + ["next_chapter"]=16111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=36987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51188, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5170, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=51188, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16111]={ + ["next_chapter"]=16112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37004, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51700, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5222, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=51700, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16112]={ + ["next_chapter"]=16113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52217, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5274, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=52217, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16113]={ + ["next_chapter"]=16114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52739, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5327, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=52739, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16114]={ + ["next_chapter"]=16115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53266, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5380, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=53266, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16115]={ + ["next_chapter"]=16116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37071, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12233, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53799, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5434, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=53799, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16116]={ + ["next_chapter"]=16117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12239, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54337, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5488, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=54337, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16117]={ + ["next_chapter"]=16118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54880, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5543, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=54880, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16118]={ + ["next_chapter"]=16119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37121, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55429, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5598, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=55429, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16119]={ + ["next_chapter"]=16120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37138, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55983, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5654, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=55983, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5405, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1611, + ["unit"]=0 + } + }, + [16120]={ + ["next_chapter"]=16121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=37155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56543, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5711, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=56543, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16121]={ + ["next_chapter"]=16122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37172, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12267, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57109, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5768, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=57109, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16122]={ + ["next_chapter"]=16123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57680, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5826, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=57680, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16123]={ + ["next_chapter"]=16124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37206, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12278, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58256, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5884, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=58256, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16124]={ + ["next_chapter"]=16125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37222, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12283, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58839, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5943, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=58839, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16125]={ + ["next_chapter"]=16126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12289, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59427, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6002, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=59427, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16126]={ + ["next_chapter"]=16127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60022, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6062, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=60022, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16127]={ + ["next_chapter"]=16128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37273, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12300, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60622, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6123, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=60622, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16128]={ + ["next_chapter"]=16129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37290, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61228, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6184, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=61228, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16129]={ + ["next_chapter"]=16130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37307, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61840, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6246, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=61840, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5970, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1612, + ["unit"]=0 + } + }, + [16130]={ + ["next_chapter"]=16131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=37324, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62459, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6308, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=62459, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16131]={ + ["next_chapter"]=16132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37340, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63083, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6371, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=63083, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16132]={ + ["next_chapter"]=16133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37357, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63714, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6435, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=63714, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16133]={ + ["next_chapter"]=16134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37374, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64351, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6499, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=64351, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16134]={ + ["next_chapter"]=16135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37391, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64995, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6564, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=64995, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16135]={ + ["next_chapter"]=16136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37408, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65645, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6630, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=65645, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16136]={ + ["next_chapter"]=16137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12350, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66301, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6696, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=66301, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16137]={ + ["next_chapter"]=16138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37442, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66964, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6763, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=66964, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16138]={ + ["next_chapter"]=16139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12361, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67634, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6831, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=67634, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16139]={ + ["next_chapter"]=16140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68310, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6899, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=68310, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6595, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1613, + ["unit"]=0 + } + }, + [16140]={ + ["next_chapter"]=16141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=37493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68993, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6968, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=68993, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16141]={ + ["next_chapter"]=16142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69683, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7038, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=69683, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16142]={ + ["next_chapter"]=16143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70380, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7108, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=70380, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16143]={ + ["next_chapter"]=16144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71084, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7179, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=71084, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16144]={ + ["next_chapter"]=16145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71795, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7251, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=71795, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16145]={ + ["next_chapter"]=16146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72513, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7324, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=72513, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16146]={ + ["next_chapter"]=16147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37594, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12406, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73238, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7397, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=73238, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16147]={ + ["next_chapter"]=16148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37611, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73970, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7471, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=73970, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16148]={ + ["next_chapter"]=16149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37628, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74710, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7546, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=74710, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16149]={ + ["next_chapter"]=16150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37645, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75457, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7621, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=75457, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7284, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1614, + ["unit"]=0 + } + }, + [16150]={ + ["next_chapter"]=16151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=37662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12429, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76212, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7697, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=76212, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16151]={ + ["next_chapter"]=16152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12434, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76974, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7774, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=76974, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16152]={ + ["next_chapter"]=16153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37696, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77743, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7852, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=77743, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16153]={ + ["next_chapter"]=16154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78521, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7931, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=78521, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16154]={ + ["next_chapter"]=16155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79306, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8010, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=79306, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16155]={ + ["next_chapter"]=16156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37747, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12457, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80099, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8090, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=80099, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16156]={ + ["next_chapter"]=16157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12462, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80900, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8171, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=80900, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16157]={ + ["next_chapter"]=16158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81709, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8253, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=81709, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16158]={ + ["next_chapter"]=16159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82526, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8335, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=82526, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16159]={ + ["next_chapter"]=16160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83351, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8418, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=83351, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8047, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1615, + ["unit"]=0 + } + }, + [16160]={ + ["next_chapter"]=16161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=37832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12485, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84185, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8503, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=84185, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16161]={ + ["next_chapter"]=16162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12490, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85027, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8588, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=85027, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16162]={ + ["next_chapter"]=16163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12496, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85877, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8674, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=85877, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16163]={ + ["next_chapter"]=16164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12502, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86736, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8760, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=86736, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16164]={ + ["next_chapter"]=16165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12507, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87603, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8848, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=87603, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16165]={ + ["next_chapter"]=16166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37917, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12513, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88479, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8936, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=88479, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16166]={ + ["next_chapter"]=16167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89364, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9026, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=89364, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16167]={ + ["next_chapter"]=16168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90258, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9116, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=90258, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16168]={ + ["next_chapter"]=16169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12530, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91160, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9207, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=91160, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16169]={ + ["next_chapter"]=16170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=37986, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12535, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92072, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9299, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=92072, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1616, + ["unit"]=0 + } + }, + [16170]={ + ["next_chapter"]=16171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=38003, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92993, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9392, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=92993, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16171]={ + ["next_chapter"]=16172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93923, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9486, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=93923, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16172]={ + ["next_chapter"]=16173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12552, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94862, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9581, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=94862, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16173]={ + ["next_chapter"]=16174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12558, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95810, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9677, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=95810, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16174]={ + ["next_chapter"]=16175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38071, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96768, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9774, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=96768, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16175]={ + ["next_chapter"]=16176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12569, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97736, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9871, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=97736, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16176]={ + ["next_chapter"]=16177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12575, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98714, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9970, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=98714, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16177]={ + ["next_chapter"]=16178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99701, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10070, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=99701, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16178]={ + ["next_chapter"]=16179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12586, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100698, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10170, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=100698, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16179]={ + ["next_chapter"]=16180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12592, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101705, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10272, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=101705, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1617, + ["unit"]=0 + } + }, + [16180]={ + ["next_chapter"]=16181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=38174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12597, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102722, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10375, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=102722, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16181]={ + ["next_chapter"]=16182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38191, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12603, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103749, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10479, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=103749, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16182]={ + ["next_chapter"]=16183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12609, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104786, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10583, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=104786, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16183]={ + ["next_chapter"]=16184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12614, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105834, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10689, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=105834, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16184]={ + ["next_chapter"]=16185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106893, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10796, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=106893, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16185]={ + ["next_chapter"]=16186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12626, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107962, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10904, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=107962, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16186]={ + ["next_chapter"]=16187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38277, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12631, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109041, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11013, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=109041, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16187]={ + ["next_chapter"]=16188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38294, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12637, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110132, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11123, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=110132, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16188]={ + ["next_chapter"]=16189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12643, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111233, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11235, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=111233, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16189]={ + ["next_chapter"]=16190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38328, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12648, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112345, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11347, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=112345, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10846, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1618, + ["unit"]=0 + } + }, + [16190]={ + ["next_chapter"]=16191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=38346, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113469, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11460, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=113469, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16191]={ + ["next_chapter"]=16192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12660, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114603, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11575, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=114603, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16192]={ + ["next_chapter"]=16193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38380, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115749, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11691, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=115749, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16193]={ + ["next_chapter"]=16194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38397, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12671, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116907, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11808, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=116907, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16194]={ + ["next_chapter"]=16195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118076, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11926, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=118076, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16195]={ + ["next_chapter"]=16196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119257, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12045, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=119257, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16196]={ + ["next_chapter"]=16197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38449, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12688, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120449, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12165, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=120449, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16197]={ + ["next_chapter"]=16198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121654, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12287, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=121654, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16198]={ + ["next_chapter"]=16199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122870, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12410, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=122870, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16199]={ + ["next_chapter"]=16200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12705, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=124099, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12534, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=124099, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11980, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1619, + ["unit"]=0 + } + }, + [16200]={ + ["next_chapter"]=16201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=38518, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12711, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125340, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12659, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=125340, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16201]={ + ["next_chapter"]=16202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126593, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12786, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=126593, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16202]={ + ["next_chapter"]=16203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38552, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127859, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12914, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=127859, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16203]={ + ["next_chapter"]=16204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12728, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=129138, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13043, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=129138, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16204]={ + ["next_chapter"]=16205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38587, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130429, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13173, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=130429, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16205]={ + ["next_chapter"]=16206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131734, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13305, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=131734, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16206]={ + ["next_chapter"]=16207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38621, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12745, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=133051, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13438, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=133051, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16207]={ + ["next_chapter"]=16208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38638, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134381, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13573, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=134381, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16208]={ + ["next_chapter"]=16209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12756, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=135725, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13708, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=135725, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16209]={ + ["next_chapter"]=16210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12762, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=137083, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13845, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=137083, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=13234, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1620, + ["unit"]=0 + } + }, + [16210]={ + ["next_chapter"]=16211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=38690, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12768, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138453, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13984, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=138453, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16211]={ + ["next_chapter"]=16212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12774, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=139838, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14124, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=139838, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16212]={ + ["next_chapter"]=16213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=141236, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14265, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=141236, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16213]={ + ["next_chapter"]=16214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142649, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14408, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=142649, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16214]={ + ["next_chapter"]=16215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12791, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=144075, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14552, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=144075, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16215]={ + ["next_chapter"]=16216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145516, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14697, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=145516, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16216]={ + ["next_chapter"]=16217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=146971, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14844, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=146971, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16217]={ + ["next_chapter"]=16218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12808, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=148441, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14993, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=148441, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16218]={ + ["next_chapter"]=16219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38829, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12813, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=149925, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15142, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=149925, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16219]={ + ["next_chapter"]=16220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38846, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=151424, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15294, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=151424, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14618, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1621, + ["unit"]=0 + } + }, + [16220]={ + ["next_chapter"]=16221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=38863, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=152939, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15447, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=152939, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16221]={ + ["next_chapter"]=16222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12831, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=154468, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15601, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=154468, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16222]={ + ["next_chapter"]=16223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38898, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12836, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=156013, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15757, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=156013, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16223]={ + ["next_chapter"]=16224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12842, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=157573, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15915, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=157573, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16224]={ + ["next_chapter"]=16225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38933, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=159149, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16074, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=159149, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16225]={ + ["next_chapter"]=16226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12854, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=160740, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16235, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=160740, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16226]={ + ["next_chapter"]=16227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12859, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=162347, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16397, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=162347, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16227]={ + ["next_chapter"]=16228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=38985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=163971, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16561, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=163971, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16228]={ + ["next_chapter"]=16229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=165611, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16727, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=165611, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16229]={ + ["next_chapter"]=16230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=167267, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16894, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=167267, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=16148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1622, + ["unit"]=0 + } + }, + [16230]={ + ["next_chapter"]=16231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=39037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=168939, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17063, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=168939, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16231]={ + ["next_chapter"]=16232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=170629, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17234, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=170629, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16232]={ + ["next_chapter"]=16233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12894, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=172335, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17406, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=172335, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16233]={ + ["next_chapter"]=16234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39089, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12899, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=174058, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17580, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=174058, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16234]={ + ["next_chapter"]=16235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=175799, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17756, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=175799, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16235]={ + ["next_chapter"]=16236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12911, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=177557, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17933, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=177557, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16236]={ + ["next_chapter"]=16237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12917, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=179333, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18113, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=179333, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16237]={ + ["next_chapter"]=16238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39159, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12922, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=181126, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18294, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=181126, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16238]={ + ["next_chapter"]=16239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=182937, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18477, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=182937, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16239]={ + ["next_chapter"]=16240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12934, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=184767, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18661, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=184767, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17837, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1623, + ["unit"]=0 + } + }, + [16240]={ + ["next_chapter"]=16241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=39211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12940, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=186614, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18848, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=186614, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16241]={ + ["next_chapter"]=16242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39229, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12945, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=188480, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19037, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=188480, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16242]={ + ["next_chapter"]=16243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12951, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=190365, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19227, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=190365, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16243]={ + ["next_chapter"]=16244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39264, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12957, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=192269, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19419, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=192269, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16244]={ + ["next_chapter"]=16245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12963, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=194191, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19613, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=194191, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16245]={ + ["next_chapter"]=16246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12969, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=196133, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19809, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=196133, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16246]={ + ["next_chapter"]=16247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=198095, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20008, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=198095, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16247]={ + ["next_chapter"]=16248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39334, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12980, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=200076, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20208, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=200076, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16248]={ + ["next_chapter"]=16249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=202076, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20410, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=202076, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16249]={ + ["next_chapter"]=16250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=204097, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20614, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=204097, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=19703, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1624, + ["unit"]=0 + } + }, + [16250]={ + ["next_chapter"]=16251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=39386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=12997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=206138, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20820, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=206138, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16251]={ + ["next_chapter"]=16252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13003, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=208200, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21028, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=208200, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16252]={ + ["next_chapter"]=16253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13009, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=210282, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21238, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=210282, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16253]={ + ["next_chapter"]=16254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13015, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=212384, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21451, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=212384, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16254]={ + ["next_chapter"]=16255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13020, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=214508, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21665, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=214508, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16255]={ + ["next_chapter"]=16256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13026, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=216653, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21882, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=216653, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16256]={ + ["next_chapter"]=16257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13032, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=218820, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22101, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=218820, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16257]={ + ["next_chapter"]=16258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13038, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=221008, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22322, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=221008, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16258]={ + ["next_chapter"]=16259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=223218, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22545, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=223218, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16259]={ + ["next_chapter"]=16260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39544, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=225450, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22770, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=225450, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=21764, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1625, + ["unit"]=0 + } + }, + [16260]={ + ["next_chapter"]=16261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=39561, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13055, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=227705, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22998, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=227705, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16261]={ + ["next_chapter"]=16262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39579, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=229982, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23228, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=229982, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16262]={ + ["next_chapter"]=16263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=232282, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23460, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=232282, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16263]={ + ["next_chapter"]=16264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39614, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13073, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=234604, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23695, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=234604, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16264]={ + ["next_chapter"]=16265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13078, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=236950, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23932, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=236950, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16265]={ + ["next_chapter"]=16266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=239320, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24171, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=239320, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16266]={ + ["next_chapter"]=16267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39667, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=241713, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24413, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=241713, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16267]={ + ["next_chapter"]=16268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=244130, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24657, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=244130, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16268]={ + ["next_chapter"]=16269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13102, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=246572, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24904, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=246572, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16269]={ + ["next_chapter"]=16270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39719, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=249037, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25153, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=249037, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=24042, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1626, + ["unit"]=0 + } + }, + [16270]={ + ["next_chapter"]=16271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=39737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=251528, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25404, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=251528, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16271]={ + ["next_chapter"]=16272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=254043, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25658, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=254043, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16272]={ + ["next_chapter"]=16273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39772, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13125, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=256583, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25915, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=256583, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16273]={ + ["next_chapter"]=16274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13131, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=259149, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26174, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=259149, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16274]={ + ["next_chapter"]=16275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13136, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=261741, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26436, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=261741, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16275]={ + ["next_chapter"]=16276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=264358, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26700, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=264358, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16276]={ + ["next_chapter"]=16277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13148, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=267002, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26967, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=267002, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16277]={ + ["next_chapter"]=16278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=269672, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27237, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=269672, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16278]={ + ["next_chapter"]=16279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13160, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=272368, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27509, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=272368, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16279]={ + ["next_chapter"]=16280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13166, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=275092, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27784, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=275092, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=26557, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1627, + ["unit"]=0 + } + }, + [16280]={ + ["next_chapter"]=16281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=39913, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=277843, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28062, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=277843, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16281]={ + ["next_chapter"]=16282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39931, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=280621, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28343, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=280621, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16282]={ + ["next_chapter"]=16283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=283428, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28626, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=283428, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16283]={ + ["next_chapter"]=16284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39966, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=286262, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28912, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=286262, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16284]={ + ["next_chapter"]=16285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=39984, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13195, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=289125, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29202, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=289125, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16285]={ + ["next_chapter"]=16286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13201, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=292016, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29494, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=292016, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16286]={ + ["next_chapter"]=16287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=294936, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29789, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=294936, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16287]={ + ["next_chapter"]=16288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13212, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=297885, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30086, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=297885, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16288]={ + ["next_chapter"]=16289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13218, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=300864, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30387, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=300864, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16289]={ + ["next_chapter"]=16290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13224, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=303873, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30691, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=303873, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=29335, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1628, + ["unit"]=0 + } + }, + [16290]={ + ["next_chapter"]=16291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=40090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13230, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=306912, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30998, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=306912, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16291]={ + ["next_chapter"]=16292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=309981, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31308, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=309981, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16292]={ + ["next_chapter"]=16293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40125, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=313081, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31621, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=313081, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16293]={ + ["next_chapter"]=16294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40143, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=316211, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31937, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=316211, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16294]={ + ["next_chapter"]=16295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13253, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=319373, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32257, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=319373, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16295]={ + ["next_chapter"]=16296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40179, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=322567, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32579, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=322567, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16296]={ + ["next_chapter"]=16297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40196, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=325793, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32905, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=325793, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16297]={ + ["next_chapter"]=16298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40214, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13271, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=329051, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33234, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=329051, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16298]={ + ["next_chapter"]=16299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40232, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=332341, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33566, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=332341, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16299]={ + ["next_chapter"]=16300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13282, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=335665, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33902, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=335665, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=32404, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1629, + ["unit"]=0 + } + }, + [16300]={ + ["next_chapter"]=16301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=40267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=339021, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34241, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=339021, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16301]={ + ["next_chapter"]=16302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=342412, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34584, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=342412, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16302]={ + ["next_chapter"]=16303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13300, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=345836, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34929, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=345836, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16303]={ + ["next_chapter"]=16304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=349294, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35279, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=349294, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16304]={ + ["next_chapter"]=16305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13312, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=352787, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35631, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=352787, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16305]={ + ["next_chapter"]=16306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40356, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13318, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=356315, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35988, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=356315, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16306]={ + ["next_chapter"]=16307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40374, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=359878, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36348, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=359878, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16307]={ + ["next_chapter"]=16308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13329, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=363477, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36711, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=363477, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16308]={ + ["next_chapter"]=16309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=367112, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37078, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=367112, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16309]={ + ["next_chapter"]=16310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13341, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=370783, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37449, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=370783, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=35795, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1630, + ["unit"]=0 + } + }, + [16310]={ + ["next_chapter"]=16311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=40445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13347, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=374490, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37824, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=374490, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16311]={ + ["next_chapter"]=16312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=378235, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38202, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=378235, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16312]={ + ["next_chapter"]=16313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40481, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=382018, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38584, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=382018, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16313]={ + ["next_chapter"]=16314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40499, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=385838, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38970, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=385838, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16314]={ + ["next_chapter"]=16315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40516, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=389696, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39359, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=389696, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16315]={ + ["next_chapter"]=16316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40534, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13376, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=393593, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39753, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=393593, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16316]={ + ["next_chapter"]=16317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40552, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=397529, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40150, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=397529, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16317]={ + ["next_chapter"]=16318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=401504, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40552, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=401504, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16318]={ + ["next_chapter"]=16319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13394, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=405520, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40957, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=405520, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16319]={ + ["next_chapter"]=16320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13400, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=409575, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41367, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=409575, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=39539, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1631, + ["unit"]=0 + } + }, + [16320]={ + ["next_chapter"]=16321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=40623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13406, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=413670, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41781, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=413670, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16321]={ + ["next_chapter"]=16322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40641, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=417807, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42199, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=417807, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16322]={ + ["next_chapter"]=16323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13418, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=421985, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42621, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=421985, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16323]={ + ["next_chapter"]=16324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=426205, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43047, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=426205, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16324]={ + ["next_chapter"]=16325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13429, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=430467, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43477, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=430467, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16325]={ + ["next_chapter"]=16326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13435, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=434772, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43912, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=434772, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16326]={ + ["next_chapter"]=16327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13441, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=439120, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44351, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=439120, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16327]={ + ["next_chapter"]=16328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=443511, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44795, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=443511, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16328]={ + ["next_chapter"]=16329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40767, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13453, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=447946, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45243, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=447946, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16329]={ + ["next_chapter"]=16330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=452425, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45695, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=452425, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=43676, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1632, + ["unit"]=0 + } + }, + [16330]={ + ["next_chapter"]=16331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=40802, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13465, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=456950, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46152, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=456950, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16331]={ + ["next_chapter"]=16332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=461519, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46613, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=461519, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16332]={ + ["next_chapter"]=16333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40838, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13477, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=466134, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47080, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=466134, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16333]={ + ["next_chapter"]=16334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40856, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=470796, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47550, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=470796, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16334]={ + ["next_chapter"]=16335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=475504, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48026, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=475504, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16335]={ + ["next_chapter"]=16336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40892, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=480259, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48506, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=480259, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16336]={ + ["next_chapter"]=16337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=485061, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48991, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=485061, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16337]={ + ["next_chapter"]=16338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40928, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13506, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=489912, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49481, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=489912, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16338]={ + ["next_chapter"]=16339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40946, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13512, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=494811, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49976, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=494811, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16339]={ + ["next_chapter"]=16340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=40964, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=499759, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50476, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=499759, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=48246, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1633, + ["unit"]=0 + } + }, + [16340]={ + ["next_chapter"]=16341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=40982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=504757, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50980, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=504757, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16341]={ + ["next_chapter"]=16342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41000, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13530, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=509804, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51490, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=509804, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16342]={ + ["next_chapter"]=16343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13536, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=514902, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52005, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=514902, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16343]={ + ["next_chapter"]=16344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41036, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13542, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=520051, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52525, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=520051, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16344]={ + ["next_chapter"]=16345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=525252, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53050, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=525252, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16345]={ + ["next_chapter"]=16346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=530504, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53581, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=530504, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16346]={ + ["next_chapter"]=16347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13560, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=535809, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54117, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=535809, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16347]={ + ["next_chapter"]=16348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13566, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=541167, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54658, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=541167, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16348]={ + ["next_chapter"]=16349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41126, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=546579, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55204, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=546579, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16349]={ + ["next_chapter"]=16350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=552045, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55757, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=552045, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=53293, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1634, + ["unit"]=0 + } + }, + [16350]={ + ["next_chapter"]=16351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=41162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13583, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=557565, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56314, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=557565, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16351]={ + ["next_chapter"]=16352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=563141, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56877, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=563141, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16352]={ + ["next_chapter"]=16353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41198, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13595, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=568772, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57446, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=568772, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16353]={ + ["next_chapter"]=16354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=574460, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58020, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=574460, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16354]={ + ["next_chapter"]=16355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=580205, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58601, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=580205, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16355]={ + ["next_chapter"]=16356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41252, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13613, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=586007, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59187, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=586007, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16356]={ + ["next_chapter"]=16357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13619, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=591867, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59779, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=591867, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16357]={ + ["next_chapter"]=16358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41288, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=597785, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60376, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=597785, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16358]={ + ["next_chapter"]=16359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13631, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=603763, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60980, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=603763, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16359]={ + ["next_chapter"]=16360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41324, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13637, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=609801, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61590, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=609801, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=58869, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1635, + ["unit"]=0 + } + }, + [16360]={ + ["next_chapter"]=16361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=41342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13643, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=615899, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62206, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=615899, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16361]={ + ["next_chapter"]=16362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=622058, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62828, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=622058, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16362]={ + ["next_chapter"]=16363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=628279, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63456, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=628279, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16363]={ + ["next_chapter"]=16364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41396, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13661, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=634561, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64091, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=634561, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16364]={ + ["next_chapter"]=16365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13667, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=640907, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64732, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=640907, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16365]={ + ["next_chapter"]=16366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13673, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=647316, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65379, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=647316, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16366]={ + ["next_chapter"]=16367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13679, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=653789, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66033, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=653789, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16367]={ + ["next_chapter"]=16368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13685, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=660327, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66693, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=660327, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16368]={ + ["next_chapter"]=16369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13691, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=666930, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67360, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=666930, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16369]={ + ["next_chapter"]=16370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13697, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=673600, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68034, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=673600, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=65028, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1636, + ["unit"]=0 + } + }, + [16370]={ + ["next_chapter"]=16371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=41523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13703, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=680336, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68714, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=680336, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16371]={ + ["next_chapter"]=16372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13709, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=687139, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69401, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=687139, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16372]={ + ["next_chapter"]=16373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41559, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13715, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=694010, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70095, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=694010, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16373]={ + ["next_chapter"]=16374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13721, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=700950, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70796, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=700950, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16374]={ + ["next_chapter"]=16375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13727, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=707960, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71504, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=707960, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16375]={ + ["next_chapter"]=16376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41614, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=715040, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72219, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=715040, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16376]={ + ["next_chapter"]=16377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41632, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=722190, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72941, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=722190, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16377]={ + ["next_chapter"]=16378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13745, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=729412, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73671, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=729412, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16378]={ + ["next_chapter"]=16379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=736706, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74407, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=736706, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16379]={ + ["next_chapter"]=16380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=744073, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75151, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=744073, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=71831, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1637, + ["unit"]=0 + } + }, + [16380]={ + ["next_chapter"]=16381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=41705, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=751514, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75903, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=751514, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16381]={ + ["next_chapter"]=16382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41723, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=759029, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76662, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=759029, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16382]={ + ["next_chapter"]=16383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=766619, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77429, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=766619, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16383]={ + ["next_chapter"]=16384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13781, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=774285, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78203, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=774285, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16384]={ + ["next_chapter"]=16385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13787, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=782028, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78985, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=782028, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16385]={ + ["next_chapter"]=16386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41796, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=789849, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79775, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=789849, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16386]={ + ["next_chapter"]=16387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41814, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=797747, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80572, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=797747, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16387]={ + ["next_chapter"]=16388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13805, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=805724, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81378, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=805724, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16388]={ + ["next_chapter"]=16389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41850, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=813782, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82192, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=813782, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16389]={ + ["next_chapter"]=16390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=821920, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83014, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=821920, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=79346, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1638, + ["unit"]=0 + } + }, + [16390]={ + ["next_chapter"]=16391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=41887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=830139, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83844, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=830139, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16391]={ + ["next_chapter"]=16392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=838440, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84682, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=838440, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16392]={ + ["next_chapter"]=16393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13835, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=846825, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85529, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=846825, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16393]={ + ["next_chapter"]=16394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41941, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13841, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=855293, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86385, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=855293, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16394]={ + ["next_chapter"]=16395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41960, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13847, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=863846, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87248, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=863846, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16395]={ + ["next_chapter"]=16396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13853, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=872484, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88121, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=872484, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16396]={ + ["next_chapter"]=16397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=41996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13859, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=881209, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89002, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=881209, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16397]={ + ["next_chapter"]=16398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42014, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=890021, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89892, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=890021, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16398]={ + ["next_chapter"]=16399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=898921, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90791, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=898921, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16399]={ + ["next_chapter"]=16400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=907911, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91699, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=907911, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=87648, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1639, + ["unit"]=0 + } + }, + [16400]={ + ["next_chapter"]=16401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=42069, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13883, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=916990, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92616, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=916990, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16401]={ + ["next_chapter"]=16402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13889, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=926160, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93542, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=926160, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16402]={ + ["next_chapter"]=16403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42106, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=935421, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94478, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=935421, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16403]={ + ["next_chapter"]=16404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13901, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=944775, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95422, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=944775, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16404]={ + ["next_chapter"]=16405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13907, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=954223, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96377, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=954223, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16405]={ + ["next_chapter"]=16406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13913, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=963765, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97340, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=963765, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16406]={ + ["next_chapter"]=16407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42179, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=973403, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98314, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=973403, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16407]={ + ["next_chapter"]=16408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13925, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=983137, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99297, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=983137, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16408]={ + ["next_chapter"]=16409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=992968, + ["unit"]=22 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100290, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=992968, + ["unit"]=22 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16409]={ + ["next_chapter"]=16410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1003, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101293, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1003, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=96818, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1640, + ["unit"]=0 + } + }, + [16410]={ + ["next_chapter"]=16411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=42252, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1013, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102306, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1013, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16411]={ + ["next_chapter"]=16412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1023, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103329, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1023, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16412]={ + ["next_chapter"]=16413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13955, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1033, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104362, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1033, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16413]={ + ["next_chapter"]=16414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42307, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13961, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1044, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105406, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1044, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16414]={ + ["next_chapter"]=16415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42326, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1054, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106460, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1054, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16415]={ + ["next_chapter"]=16416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42344, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1065, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107524, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1065, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16416]={ + ["next_chapter"]=16417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13980, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1075, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108599, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1075, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16417]={ + ["next_chapter"]=16418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42381, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1086, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109685, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1086, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16418]={ + ["next_chapter"]=16419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1097, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110782, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1097, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16419]={ + ["next_chapter"]=16420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=13998, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1108, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111890, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1108, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=106947, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1641, + ["unit"]=0 + } + }, + [16420]={ + ["next_chapter"]=16421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=42436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1119, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113009, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1119, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16421]={ + ["next_chapter"]=16422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42454, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14010, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1130, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114139, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1130, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16422]={ + ["next_chapter"]=16423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42473, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1141, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115281, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1141, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16423]={ + ["next_chapter"]=16424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14022, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1153, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116433, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1153, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16424]={ + ["next_chapter"]=16425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1164, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117598, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1164, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16425]={ + ["next_chapter"]=16426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14034, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1176, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118774, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1176, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16426]={ + ["next_chapter"]=16427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1188, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119961, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1188, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16427]={ + ["next_chapter"]=16428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42565, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1200, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121161, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1200, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16428]={ + ["next_chapter"]=16429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14052, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1212, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122373, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1212, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16429]={ + ["next_chapter"]=16430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1224, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123596, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1224, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=118136, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1642, + ["unit"]=0 + } + }, + [16430]={ + ["next_chapter"]=16431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=42620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14065, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1236, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124832, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1236, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16431]={ + ["next_chapter"]=16432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42638, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1248, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126081, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1248, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16432]={ + ["next_chapter"]=16433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42657, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1261, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127341, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1261, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16433]={ + ["next_chapter"]=16434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1273, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128615, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1273, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16434]={ + ["next_chapter"]=16435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42694, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14089, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1286, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129901, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1286, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16435]={ + ["next_chapter"]=16436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14095, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1299, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131200, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1299, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16436]={ + ["next_chapter"]=16437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1312, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132512, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1312, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16437]={ + ["next_chapter"]=16438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1325, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133837, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1325, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16438]={ + ["next_chapter"]=16439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1338, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135176, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1338, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16439]={ + ["next_chapter"]=16440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1352, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136527, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1352, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=130496, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1643, + ["unit"]=0 + } + }, + [16440]={ + ["next_chapter"]=16441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=42805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1365, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137893, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1365, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16441]={ + ["next_chapter"]=16442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42823, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1379, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139271, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1379, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16442]={ + ["next_chapter"]=16443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14138, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1393, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140664, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1393, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16443]={ + ["next_chapter"]=16444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14144, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1407, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142071, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1407, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16444]={ + ["next_chapter"]=16445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1421, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143492, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1421, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16445]={ + ["next_chapter"]=16446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1435, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144926, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1435, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16446]={ + ["next_chapter"]=16447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42916, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14162, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1449, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146376, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1449, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16447]={ + ["next_chapter"]=16448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1464, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147839, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1464, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16448]={ + ["next_chapter"]=16449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42953, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14174, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1478, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149318, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1478, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16449]={ + ["next_chapter"]=16450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=42971, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1493, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150811, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1493, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=144148, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1644, + ["unit"]=0 + } + }, + [16450]={ + ["next_chapter"]=16451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=42990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14187, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1508, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152319, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1508, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16451]={ + ["next_chapter"]=16452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1523, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153842, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1523, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16452]={ + ["next_chapter"]=16453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1538, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155381, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1538, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16453]={ + ["next_chapter"]=16454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43046, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14205, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1554, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156935, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1554, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16454]={ + ["next_chapter"]=16455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1569, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158504, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1569, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16455]={ + ["next_chapter"]=16456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1585, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160089, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1585, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16456]={ + ["next_chapter"]=16457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1601, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161690, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1601, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16457]={ + ["next_chapter"]=16458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14230, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1617, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163307, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1617, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16458]={ + ["next_chapter"]=16459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43138, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1633, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164940, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1633, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16459]={ + ["next_chapter"]=16460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14242, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1649, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166589, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1649, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=159229, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1645, + ["unit"]=0 + } + }, + [16460]={ + ["next_chapter"]=16461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=43176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14248, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1666, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168255, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1666, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16461]={ + ["next_chapter"]=16462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1683, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169938, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1683, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16462]={ + ["next_chapter"]=16463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14260, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1699, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171637, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1699, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16463]={ + ["next_chapter"]=16464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14266, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1716, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173353, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1716, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16464]={ + ["next_chapter"]=16465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14273, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1734, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175087, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1734, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16465]={ + ["next_chapter"]=16466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1751, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176838, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1751, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16466]={ + ["next_chapter"]=16467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43287, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14285, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1768, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178606, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1768, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16467]={ + ["next_chapter"]=16468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1786, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180392, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1786, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16468]={ + ["next_chapter"]=16469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1804, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182196, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1804, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16469]={ + ["next_chapter"]=16470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43343, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14303, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1822, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184018, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1822, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=175888, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1646, + ["unit"]=0 + } + }, + [16470]={ + ["next_chapter"]=16471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=43362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14309, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1840, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185858, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1840, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16471]={ + ["next_chapter"]=16472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43381, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14316, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1859, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187717, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1859, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16472]={ + ["next_chapter"]=16473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1877, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189594, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1877, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16473]={ + ["next_chapter"]=16474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1896, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191490, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1896, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16474]={ + ["next_chapter"]=16475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43437, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1915, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193405, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1915, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16475]={ + ["next_chapter"]=16476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14340, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1934, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195339, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1934, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16476]={ + ["next_chapter"]=16477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1953, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197292, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1953, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16477]={ + ["next_chapter"]=16478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1973, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199265, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1973, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16478]={ + ["next_chapter"]=16479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1993, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201258, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=1993, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16479]={ + ["next_chapter"]=16480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2013, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203270, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2013, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=194290, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1647, + ["unit"]=0 + } + }, + [16480]={ + ["next_chapter"]=16481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=43549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14371, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2033, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205303, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2033, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16481]={ + ["next_chapter"]=16482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14377, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2053, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207356, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2053, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16482]={ + ["next_chapter"]=16483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43586, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14383, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2074, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209430, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2074, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16483]={ + ["next_chapter"]=16484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14390, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2094, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211524, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2094, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16484]={ + ["next_chapter"]=16485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14396, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2115, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213639, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2115, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16485]={ + ["next_chapter"]=16486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43642, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14402, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2136, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215776, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2136, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16486]={ + ["next_chapter"]=16487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43661, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14408, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2158, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217933, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2158, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16487]={ + ["next_chapter"]=16488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43680, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14414, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2179, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220113, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2179, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16488]={ + ["next_chapter"]=16489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43699, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2201, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222314, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2201, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16489]={ + ["next_chapter"]=16490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14427, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2223, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224537, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2223, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=214617, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1648, + ["unit"]=0 + } + }, + [16490]={ + ["next_chapter"]=16491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=43736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2245, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226782, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2245, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16491]={ + ["next_chapter"]=16492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2268, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229050, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2268, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16492]={ + ["next_chapter"]=16493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43774, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2291, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231341, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2291, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16493]={ + ["next_chapter"]=16494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43792, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2313, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233654, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2313, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16494]={ + ["next_chapter"]=16495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14458, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2337, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235991, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2337, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16495]={ + ["next_chapter"]=16496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2360, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238351, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2360, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16496]={ + ["next_chapter"]=16497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14470, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2384, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240734, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2384, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16497]={ + ["next_chapter"]=16498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14476, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2407, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243141, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2407, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16498]={ + ["next_chapter"]=16499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2431, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245573, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2431, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16499]={ + ["next_chapter"]=16500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2456, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248029, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2456, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=237071, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1649, + ["unit"]=0 + } + }, + [16500]={ + ["next_chapter"]=16501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=43924, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14495, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2480, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250509, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2480, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16501]={ + ["next_chapter"]=16502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2505, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253014, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2505, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16502]={ + ["next_chapter"]=16503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43962, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14507, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2530, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255544, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2530, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16503]={ + ["next_chapter"]=16504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43980, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2555, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258100, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2555, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16504]={ + ["next_chapter"]=16505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=43999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2581, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260681, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2581, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16505]={ + ["next_chapter"]=16506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14526, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2607, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263287, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2607, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16506]={ + ["next_chapter"]=16507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14532, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2633, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265920, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2633, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16507]={ + ["next_chapter"]=16508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14538, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2659, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268579, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2659, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16508]={ + ["next_chapter"]=16509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14545, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2686, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271265, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2686, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16509]={ + ["next_chapter"]=16510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14551, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2713, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=273978, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2713, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=261874, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + [16510]={ + ["next_chapter"]=16511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=44112, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2740, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=276718, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2740, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16511]={ + ["next_chapter"]=16512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14563, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2767, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279485, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2767, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16512]={ + ["next_chapter"]=16513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44150, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14570, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2795, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=282280, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2795, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16513]={ + ["next_chapter"]=16514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44169, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14576, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2823, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=285103, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2823, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16514]={ + ["next_chapter"]=16515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14582, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2851, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287954, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2851, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16515]={ + ["next_chapter"]=16516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44207, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2880, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=290833, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2880, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16516]={ + ["next_chapter"]=16517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2908, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293741, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2908, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16517]={ + ["next_chapter"]=16518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2937, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296679, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2937, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16518]={ + ["next_chapter"]=16519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44264, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2967, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299646, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2967, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16519]={ + ["next_chapter"]=16520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44282, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14613, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2996, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302642, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=2996, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=289272, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1651, + ["unit"]=0 + } + }, + [16520]={ + ["next_chapter"]=16521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=44301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14619, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3026, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305668, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3026, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16521]={ + ["next_chapter"]=16522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14626, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3057, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308725, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3057, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16522]={ + ["next_chapter"]=16523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14632, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3087, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=311812, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3087, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16523]={ + ["next_chapter"]=16524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44358, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14638, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3118, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=314931, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3118, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16524]={ + ["next_chapter"]=16525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3149, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=318080, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3149, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16525]={ + ["next_chapter"]=16526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44396, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14651, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3181, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=321261, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3181, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16526]={ + ["next_chapter"]=16527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14657, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3213, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=324473, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3213, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16527]={ + ["next_chapter"]=16528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14663, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3245, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=327718, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3245, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16528]={ + ["next_chapter"]=16529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44453, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3277, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=330995, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3277, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16529]={ + ["next_chapter"]=16530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44472, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3310, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334305, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3310, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=319536, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1652, + ["unit"]=0 + } + }, + [16530]={ + ["next_chapter"]=16531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=44491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3343, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=337648, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3343, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16531]={ + ["next_chapter"]=16532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14688, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3376, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=341025, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3376, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16532]={ + ["next_chapter"]=16533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3410, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=344435, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3410, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16533]={ + ["next_chapter"]=16534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44548, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14701, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3444, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=347879, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3444, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16534]={ + ["next_chapter"]=16535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3479, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=351358, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3479, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16535]={ + ["next_chapter"]=16536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44586, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3514, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354872, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3514, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16536]={ + ["next_chapter"]=16537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14720, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3549, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358420, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3549, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16537]={ + ["next_chapter"]=16538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14726, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3584, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362005, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3584, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16538]={ + ["next_chapter"]=16539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14732, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3620, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=365625, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3620, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16539]={ + ["next_chapter"]=16540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14738, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3656, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=369281, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3656, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=352966, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1653, + ["unit"]=0 + } + }, + [16540]={ + ["next_chapter"]=16541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=44681, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14745, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3693, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=372974, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3693, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16541]={ + ["next_chapter"]=16542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3730, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=376703, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3730, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16542]={ + ["next_chapter"]=16543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44719, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3767, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=380470, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3767, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16543]={ + ["next_chapter"]=16544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44738, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3805, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=384275, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3805, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16544]={ + ["next_chapter"]=16545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44757, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14770, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3843, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=388118, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3843, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16545]={ + ["next_chapter"]=16546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14776, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3881, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=391999, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3881, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16546]={ + ["next_chapter"]=16547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14782, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3920, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=395919, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3920, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16547]={ + ["next_chapter"]=16548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44814, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14789, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3959, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=399878, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3959, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16548]={ + ["next_chapter"]=16549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14795, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3999, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=403877, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=3999, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16549]={ + ["next_chapter"]=16550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44852, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14801, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4039, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=407916, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4039, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=389894, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1654, + ["unit"]=0 + } + }, + [16550]={ + ["next_chapter"]=16551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=44872, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14808, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4079, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=411995, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4079, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16551]={ + ["next_chapter"]=16552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14814, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4120, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=416115, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4120, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16552]={ + ["next_chapter"]=16553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4161, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=420276, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4161, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16553]={ + ["next_chapter"]=16554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44929, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4203, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=424479, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4203, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16554]={ + ["next_chapter"]=16555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44948, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4245, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=428724, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4245, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16555]={ + ["next_chapter"]=16556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44967, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14839, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4287, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=433011, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4287, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16556]={ + ["next_chapter"]=16557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=44986, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4330, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=437341, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4330, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16557]={ + ["next_chapter"]=16558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14852, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4373, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=441714, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4373, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16558]={ + ["next_chapter"]=16559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4417, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446131, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4417, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16559]={ + ["next_chapter"]=16560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14864, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4461, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=450593, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4461, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=430686, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1655, + ["unit"]=0 + } + }, + [16560]={ + ["next_chapter"]=16561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=45063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4506, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=455099, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4506, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16561]={ + ["next_chapter"]=16562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45082, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4551, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=459650, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4551, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16562]={ + ["next_chapter"]=16563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14883, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4596, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=464246, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4596, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16563]={ + ["next_chapter"]=16564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4642, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=468889, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4642, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16564]={ + ["next_chapter"]=16565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14896, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4689, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=473578, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4689, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16565]={ + ["next_chapter"]=16566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45158, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14902, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4736, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=478313, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4736, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16566]={ + ["next_chapter"]=16567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45178, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4783, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=483096, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4783, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16567]={ + ["next_chapter"]=16568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4831, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=487927, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4831, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16568]={ + ["next_chapter"]=16569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14921, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4879, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=492807, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4879, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16569]={ + ["next_chapter"]=16570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4928, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=497735, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4928, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=475745, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1656, + ["unit"]=0 + } + }, + [16570]={ + ["next_chapter"]=16571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=45254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14934, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4977, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=502712, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=4977, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16571]={ + ["next_chapter"]=16572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14940, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5027, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=507739, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5027, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16572]={ + ["next_chapter"]=16573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5077, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=512817, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5077, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16573]={ + ["next_chapter"]=16574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45312, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5128, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=517945, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5128, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16574]={ + ["next_chapter"]=16575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14959, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5179, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=523124, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5179, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16575]={ + ["next_chapter"]=16576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45350, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5231, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=528355, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5231, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16576]={ + ["next_chapter"]=16577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14972, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5284, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=533639, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5284, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16577]={ + ["next_chapter"]=16578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14978, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5336, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=538975, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5336, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16578]={ + ["next_chapter"]=16579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45408, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5390, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=544365, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5390, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16579]={ + ["next_chapter"]=16580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5444, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=549809, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5444, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=525519, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1657, + ["unit"]=0 + } + }, + [16580]={ + ["next_chapter"]=16581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=45447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=14997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5498, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=555307, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5498, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16581]={ + ["next_chapter"]=16582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5553, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=560860, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5553, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16582]={ + ["next_chapter"]=16583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45485, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15010, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5609, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=566469, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5609, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16583]={ + ["next_chapter"]=16584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45504, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5665, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=572133, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5665, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16584]={ + ["next_chapter"]=16585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45524, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15023, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5721, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=577855, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5721, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16585]={ + ["next_chapter"]=16586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5779, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=583633, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5779, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16586]={ + ["next_chapter"]=16587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15036, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5836, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=589469, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5836, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16587]={ + ["next_chapter"]=16588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45581, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5895, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=595364, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5895, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16588]={ + ["next_chapter"]=16589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45601, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15048, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5954, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=601318, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=5954, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16589]={ + ["next_chapter"]=16590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15055, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6013, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=607331, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6013, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=580500, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1658, + ["unit"]=0 + } + }, + [16590]={ + ["next_chapter"]=16591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=45639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6073, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=613404, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6073, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16591]={ + ["next_chapter"]=16592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6134, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=619538, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6134, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16592]={ + ["next_chapter"]=16593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45678, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6195, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=625734, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6195, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16593]={ + ["next_chapter"]=16594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45697, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6257, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=631991, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6257, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16594]={ + ["next_chapter"]=16595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15086, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6320, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=638311, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6320, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16595]={ + ["next_chapter"]=16596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15093, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6383, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=644694, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6383, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16596]={ + ["next_chapter"]=16597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6447, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=651141, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6447, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16597]={ + ["next_chapter"]=16598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15106, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6511, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=657652, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6511, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16598]={ + ["next_chapter"]=16599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6577, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=664229, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6577, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16599]={ + ["next_chapter"]=16600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45813, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15118, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6642, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=670871, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6642, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=641233, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1659, + ["unit"]=0 + } + }, + [16600]={ + ["next_chapter"]=16601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=45833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15125, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6709, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=677580, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6709, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16601]={ + ["next_chapter"]=16602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45852, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15131, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6776, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=684356, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6776, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16602]={ + ["next_chapter"]=16603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45871, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15138, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6844, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=691199, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6844, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16603]={ + ["next_chapter"]=16604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15144, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6912, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=698111, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6912, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16604]={ + ["next_chapter"]=16605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6981, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=705092, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=6981, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16605]={ + ["next_chapter"]=16606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45929, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7051, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=712143, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7051, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16606]={ + ["next_chapter"]=16607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7121, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=719265, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7121, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16607]={ + ["next_chapter"]=16608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15170, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7193, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=726457, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7193, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16608]={ + ["next_chapter"]=16609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=45988, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7265, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=733722, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7265, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16609]={ + ["next_chapter"]=16610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46007, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15182, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7337, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=741059, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7337, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=708320, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1660, + ["unit"]=0 + } + }, + [16610]={ + ["next_chapter"]=16611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=46026, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7411, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=748470, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7411, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16611]={ + ["next_chapter"]=16612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46046, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15195, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7485, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=755955, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7485, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16612]={ + ["next_chapter"]=16613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46065, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7560, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=763514, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7560, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16613]={ + ["next_chapter"]=16614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15208, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7635, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=771149, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7635, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16614]={ + ["next_chapter"]=16615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46104, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7711, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=778861, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7711, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16615]={ + ["next_chapter"]=16616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15221, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7789, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=786649, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7789, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16616]={ + ["next_chapter"]=16617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46143, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15227, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7866, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=794516, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7866, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16617]={ + ["next_chapter"]=16618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15234, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7945, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=802461, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=7945, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16618]={ + ["next_chapter"]=16619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15240, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8025, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=810486, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8025, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16619]={ + ["next_chapter"]=16620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46201, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8105, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=818590, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8105, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=782426, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1661, + ["unit"]=0 + } + }, + [16620]={ + ["next_chapter"]=16621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=46221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15253, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8186, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=826776, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8186, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16621]={ + ["next_chapter"]=16622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8268, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=835044, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8268, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16622]={ + ["next_chapter"]=16623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15266, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8350, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=843395, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8350, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16623]={ + ["next_chapter"]=16624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46279, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8434, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=851828, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8434, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16624]={ + ["next_chapter"]=16625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8518, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=860347, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8518, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16625]={ + ["next_chapter"]=16626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46318, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15285, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8603, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=868950, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8603, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16626]={ + ["next_chapter"]=16627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8690, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=877640, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8690, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16627]={ + ["next_chapter"]=16628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46357, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15298, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8776, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=886416, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8776, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16628]={ + ["next_chapter"]=16629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8864, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=895280, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8864, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16629]={ + ["next_chapter"]=16630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46396, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8953, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=904233, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=8953, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=864285, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1662, + ["unit"]=0 + } + }, + [16630]={ + ["next_chapter"]=16631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=46416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9042, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=913275, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9042, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16631]={ + ["next_chapter"]=16632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9133, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=922408, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9133, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16632]={ + ["next_chapter"]=16633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9224, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=931632, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9224, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16633]={ + ["next_chapter"]=16634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9316, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=940949, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9316, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16634]={ + ["next_chapter"]=16635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46494, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9409, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=950358, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9409, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16635]={ + ["next_chapter"]=16636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15349, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9504, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=959862, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9504, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16636]={ + ["next_chapter"]=16637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46533, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9599, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=969460, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9599, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16637]={ + ["next_chapter"]=16638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9695, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=979155, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9695, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16638]={ + ["next_chapter"]=16639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46572, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15369, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9792, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=988946, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9792, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16639]={ + ["next_chapter"]=16640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46592, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15375, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9889, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=998836, + ["unit"]=23 + }, + ["idle_gold"]={ + ["value"]=9889, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=954708, + ["unit"]=23 + }, + ["grasp_mastery_reward"]={ + ["value"]=1663, + ["unit"]=0 + } + }, + [16640]={ + ["next_chapter"]=16641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=46611, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9988, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1009, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9988, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16641]={ + ["next_chapter"]=16642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10088, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1019, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10088, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16642]={ + ["next_chapter"]=16643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46650, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10189, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1029, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10189, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16643]={ + ["next_chapter"]=16644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10291, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1039, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10291, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16644]={ + ["next_chapter"]=16645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46690, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15408, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10394, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1050, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10394, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16645]={ + ["next_chapter"]=16646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46709, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15414, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10498, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1060, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10498, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16646]={ + ["next_chapter"]=16647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46729, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10603, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1071, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10603, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16647]={ + ["next_chapter"]=16648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15427, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10709, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1082, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10709, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16648]={ + ["next_chapter"]=16649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10816, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1092, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10816, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16649]={ + ["next_chapter"]=16650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46788, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10924, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1103, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=10924, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1055, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1664, + ["unit"]=0 + } + }, + [16650]={ + ["next_chapter"]=16651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=46807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15446, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11033, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1114, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11033, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16651]={ + ["next_chapter"]=16652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15453, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11144, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1126, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11144, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16652]={ + ["next_chapter"]=16653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46847, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11255, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1137, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11255, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16653]={ + ["next_chapter"]=16654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11368, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1148, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11368, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16654]={ + ["next_chapter"]=16655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11481, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1160, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11481, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16655]={ + ["next_chapter"]=16656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11596, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1171, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11596, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16656]={ + ["next_chapter"]=16657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15485, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11712, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1183, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11712, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16657]={ + ["next_chapter"]=16658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11829, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1195, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11829, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16658]={ + ["next_chapter"]=16659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46965, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15498, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11948, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1207, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=11948, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16659]={ + ["next_chapter"]=16660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=46984, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12067, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1219, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=12067, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1665, + ["unit"]=0 + } + }, + [16660]={ + ["next_chapter"]=16661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=47004, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15511, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12188, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1231, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=12188, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16661]={ + ["next_chapter"]=16662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12310, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1243, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=12310, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16662]={ + ["next_chapter"]=16663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12433, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1256, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=12433, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16663]={ + ["next_chapter"]=16664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15531, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12557, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1268, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=12557, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16664]={ + ["next_chapter"]=16665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15537, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12683, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1281, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=12683, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16665]={ + ["next_chapter"]=16666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47102, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12809, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1294, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=12809, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16666]={ + ["next_chapter"]=16667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15550, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12937, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1307, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=12937, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16667]={ + ["next_chapter"]=16668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13067, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1320, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=13067, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16668]={ + ["next_chapter"]=16669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15563, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13198, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1333, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=13198, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16669]={ + ["next_chapter"]=16670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47181, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15570, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13330, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1346, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=13330, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1287, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1666, + ["unit"]=0 + } + }, + [16670]={ + ["next_chapter"]=16671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=47201, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15576, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13463, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1360, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=13463, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16671]={ + ["next_chapter"]=16672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15583, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13597, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1373, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=13597, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16672]={ + ["next_chapter"]=16673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47241, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13733, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1387, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=13733, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16673]={ + ["next_chapter"]=16674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13871, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1401, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=13871, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16674]={ + ["next_chapter"]=16675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15602, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14009, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1415, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=14009, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16675]={ + ["next_chapter"]=16676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15609, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14150, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1429, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=14150, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16676]={ + ["next_chapter"]=16677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15615, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14291, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1443, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=14291, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16677]={ + ["next_chapter"]=16678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14434, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1458, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=14434, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16678]={ + ["next_chapter"]=16679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14578, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1472, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=14578, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16679]={ + ["next_chapter"]=16680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14724, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1487, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=14724, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1421, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1667, + ["unit"]=0 + } + }, + [16680]={ + ["next_chapter"]=16681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=47399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14871, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1502, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=14871, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16681]={ + ["next_chapter"]=16682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15648, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15020, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1517, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=15020, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16682]={ + ["next_chapter"]=16683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15170, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1532, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=15170, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16683]={ + ["next_chapter"]=16684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47458, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15661, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15322, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1548, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=15322, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16684]={ + ["next_chapter"]=16685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47478, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15668, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15475, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1563, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=15475, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16685]={ + ["next_chapter"]=16686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15630, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1579, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=15630, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16686]={ + ["next_chapter"]=16687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47518, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15681, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15786, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1594, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=15786, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16687]={ + ["next_chapter"]=16688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15944, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1610, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=15944, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16688]={ + ["next_chapter"]=16689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47557, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16103, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1626, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=16103, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16689]={ + ["next_chapter"]=16690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15700, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16265, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1643, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=16265, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1570, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1668, + ["unit"]=0 + } + }, + [16690]={ + ["next_chapter"]=16691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=47597, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16427, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1659, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=16427, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16691]={ + ["next_chapter"]=16692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47617, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16591, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1676, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=16591, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16692]={ + ["next_chapter"]=16693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15720, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16757, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1692, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=16757, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16693]={ + ["next_chapter"]=16694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47657, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15727, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16925, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1709, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=16925, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16694]={ + ["next_chapter"]=16695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47676, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17094, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1727, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=17094, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16695]={ + ["next_chapter"]=16696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47696, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17265, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1744, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=17265, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16696]={ + ["next_chapter"]=16697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15746, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17438, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1761, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=17438, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16697]={ + ["next_chapter"]=16698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17612, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1779, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=17612, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16698]={ + ["next_chapter"]=16699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15759, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17788, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1797, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=17788, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16699]={ + ["next_chapter"]=16700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15766, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17966, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1815, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=17966, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1734, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1669, + ["unit"]=0 + } + }, + [16700]={ + ["next_chapter"]=16701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=47796, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15773, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18146, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1833, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=18146, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16701]={ + ["next_chapter"]=16702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47816, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18327, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1851, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=18327, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16702]={ + ["next_chapter"]=16703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47836, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15786, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18511, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1870, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=18511, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16703]={ + ["next_chapter"]=16704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18696, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1888, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=18696, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16704]={ + ["next_chapter"]=16705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47875, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18883, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1907, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=18883, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16705]={ + ["next_chapter"]=16706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15805, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19071, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1926, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=19071, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16706]={ + ["next_chapter"]=16707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19262, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1945, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=19262, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16707]={ + ["next_chapter"]=16708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19455, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1965, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=19455, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16708]={ + ["next_chapter"]=16709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19649, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1985, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=19649, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16709]={ + ["next_chapter"]=16710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=47975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15832, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19846, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2004, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=19846, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=1916, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1670, + ["unit"]=0 + } + }, + [16710]={ + ["next_chapter"]=16711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=47995, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15838, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20044, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2024, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=20044, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16711]={ + ["next_chapter"]=16712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20245, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2045, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=20245, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16712]={ + ["next_chapter"]=16713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48035, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15852, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20447, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2065, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=20447, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16713]={ + ["next_chapter"]=16714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20652, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2086, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=20652, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16714]={ + ["next_chapter"]=16715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20858, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2107, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=20858, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16715]={ + ["next_chapter"]=16716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48095, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21067, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2128, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=21067, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16716]={ + ["next_chapter"]=16717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21277, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2149, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=21277, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16717]={ + ["next_chapter"]=16718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15885, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21490, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2171, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=21490, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16718]={ + ["next_chapter"]=16719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21705, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2192, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=21705, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16719]={ + ["next_chapter"]=16720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21922, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2214, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=21922, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2116, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1671, + ["unit"]=0 + } + }, + [16720]={ + ["next_chapter"]=16721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=48195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15904, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22141, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2236, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=22141, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16721]={ + ["next_chapter"]=16722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15911, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22363, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2259, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=22363, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16722]={ + ["next_chapter"]=16723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15918, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22586, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2281, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=22586, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16723]={ + ["next_chapter"]=16724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15924, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22812, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2304, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=22812, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16724]={ + ["next_chapter"]=16725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48275, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23040, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2327, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=23040, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16725]={ + ["next_chapter"]=16726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23271, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2350, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=23271, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16726]={ + ["next_chapter"]=16727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15944, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23503, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2374, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=23503, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16727]={ + ["next_chapter"]=16728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15951, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23739, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2398, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=23739, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16728]={ + ["next_chapter"]=16729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48355, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15957, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23976, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2422, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=23976, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16729]={ + ["next_chapter"]=16730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15964, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24216, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2446, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=24216, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2338, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1672, + ["unit"]=0 + } + }, + [16730]={ + ["next_chapter"]=16731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=48395, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15970, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24458, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2470, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=24458, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16731]={ + ["next_chapter"]=16732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24702, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2495, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=24702, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16732]={ + ["next_chapter"]=16733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24949, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2520, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=24949, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16733]={ + ["next_chapter"]=16734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15990, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25199, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2545, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=25199, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16734]={ + ["next_chapter"]=16735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=15997, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25451, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2571, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=25451, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16735]={ + ["next_chapter"]=16736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25705, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2596, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=25705, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16736]={ + ["next_chapter"]=16737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48516, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16010, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25962, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2622, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=25962, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16737]={ + ["next_chapter"]=16738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48536, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26222, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2648, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=26222, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16738]={ + ["next_chapter"]=16739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26484, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2675, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=26484, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16739]={ + ["next_chapter"]=16740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48576, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26749, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2702, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=26749, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2582, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1673, + ["unit"]=0 + } + }, + [16740]={ + ["next_chapter"]=16741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=48596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27017, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2729, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=27017, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16741]={ + ["next_chapter"]=16742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48617, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27287, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2756, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=27287, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16742]={ + ["next_chapter"]=16743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16050, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27560, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2784, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=27560, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16743]={ + ["next_chapter"]=16744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48657, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27835, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2811, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=27835, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16744]={ + ["next_chapter"]=16745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28114, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2839, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=28114, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16745]={ + ["next_chapter"]=16746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48697, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28395, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2868, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=28395, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16746]={ + ["next_chapter"]=16747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28679, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2897, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=28679, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16747]={ + ["next_chapter"]=16748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28966, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2926, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=28966, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16748]={ + ["next_chapter"]=16749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48758, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29255, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2955, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=29255, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16749]={ + ["next_chapter"]=16750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16097, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29548, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2984, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=29548, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=2852, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1674, + ["unit"]=0 + } + }, + [16750]={ + ["next_chapter"]=16751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=48798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29843, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3014, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=29843, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16751]={ + ["next_chapter"]=16752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48818, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16110, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30142, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3044, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=30142, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16752]={ + ["next_chapter"]=16753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48838, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30443, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3075, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=30443, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16753]={ + ["next_chapter"]=16754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30747, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3105, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=30747, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16754]={ + ["next_chapter"]=16755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16130, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31055, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3137, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=31055, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16755]={ + ["next_chapter"]=16756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31365, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3168, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=31365, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16756]={ + ["next_chapter"]=16757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16143, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31679, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3200, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=31679, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16757]={ + ["next_chapter"]=16758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48939, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31996, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3232, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=31996, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16758]={ + ["next_chapter"]=16759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48960, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32316, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3264, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=32316, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16759]={ + ["next_chapter"]=16760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=48980, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32639, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3297, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=32639, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3151, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1675, + ["unit"]=0 + } + }, + [16760]={ + ["next_chapter"]=16761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=49000, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16170, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32965, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3330, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=32965, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16761]={ + ["next_chapter"]=16762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33295, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3363, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=33295, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16762]={ + ["next_chapter"]=16763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33628, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3396, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=33628, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16763]={ + ["next_chapter"]=16764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49061, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33964, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3430, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=33964, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16764]={ + ["next_chapter"]=16765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49081, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16197, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34304, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3465, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=34304, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16765]={ + ["next_chapter"]=16766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16203, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34647, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3499, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=34647, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16766]={ + ["next_chapter"]=16767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16210, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34993, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3534, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=34993, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16767]={ + ["next_chapter"]=16768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35343, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3570, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=35343, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16768]={ + ["next_chapter"]=16769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16224, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35697, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3605, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=35697, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16769]={ + ["next_chapter"]=16770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16230, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36054, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3641, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=36054, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3481, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1676, + ["unit"]=0 + } + }, + [16770]={ + ["next_chapter"]=16771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=49203, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16237, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36414, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3678, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=36414, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16771]={ + ["next_chapter"]=16772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16244, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36779, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3715, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=36779, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16772]={ + ["next_chapter"]=16773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37146, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3752, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=37146, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16773]={ + ["next_chapter"]=16774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49264, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16257, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37518, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3789, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=37518, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16774]={ + ["next_chapter"]=16775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49284, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16264, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37893, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3827, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=37893, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16775]={ + ["next_chapter"]=16776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38272, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3865, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=38272, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16776]={ + ["next_chapter"]=16777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16277, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38655, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3904, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=38655, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16777]={ + ["next_chapter"]=16778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39041, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3943, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=39041, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16778]={ + ["next_chapter"]=16779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39432, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3983, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=39432, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16779]={ + ["next_chapter"]=16780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39826, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4022, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=39826, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=3845, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1677, + ["unit"]=0 + } + }, + [16780]={ + ["next_chapter"]=16781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=49406, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40224, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4063, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=40224, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16781]={ + ["next_chapter"]=16782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49426, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40626, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4103, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=40626, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16782]={ + ["next_chapter"]=16783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41033, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4144, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=41033, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16783]={ + ["next_chapter"]=16784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41443, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4186, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=41443, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16784]={ + ["next_chapter"]=16785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16331, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41857, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4228, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=41857, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16785]={ + ["next_chapter"]=16786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49508, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42276, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4270, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=42276, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16786]={ + ["next_chapter"]=16787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16344, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42699, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4313, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=42699, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16787]={ + ["next_chapter"]=16788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43126, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4356, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=43126, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16788]={ + ["next_chapter"]=16789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16358, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43557, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4399, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=43557, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16789]={ + ["next_chapter"]=16790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49589, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43993, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4443, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=43993, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4247, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1678, + ["unit"]=0 + } + }, + [16790]={ + ["next_chapter"]=16791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=49610, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16371, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44432, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4488, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=44432, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16791]={ + ["next_chapter"]=16792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44877, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4533, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=44877, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16792]={ + ["next_chapter"]=16793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49651, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45326, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4578, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=45326, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16793]={ + ["next_chapter"]=16794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16391, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45779, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4624, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=45779, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16794]={ + ["next_chapter"]=16795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46237, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4670, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=46237, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16795]={ + ["next_chapter"]=16796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46699, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4717, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=46699, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16796]={ + ["next_chapter"]=16797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47166, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4764, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=47166, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16797]={ + ["next_chapter"]=16798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16418, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47638, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4811, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=47638, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16798]={ + ["next_chapter"]=16799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49773, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48114, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4860, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=48114, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16799]={ + ["next_chapter"]=16800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16432, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48595, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4908, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=48595, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=4691, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1679, + ["unit"]=0 + } + }, + [16800]={ + ["next_chapter"]=16801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=49814, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49081, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4957, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=49081, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16801]={ + ["next_chapter"]=16802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49572, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5007, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=49572, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16802]={ + ["next_chapter"]=16803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16452, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50068, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5057, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=50068, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16803]={ + ["next_chapter"]=16804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49876, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50568, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5107, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=50568, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16804]={ + ["next_chapter"]=16805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51074, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5158, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=51074, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16805]={ + ["next_chapter"]=16806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49917, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51585, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5210, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=51585, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16806]={ + ["next_chapter"]=16807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52101, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5262, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=52101, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16807]={ + ["next_chapter"]=16808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49958, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16486, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52622, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5315, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=52622, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16808]={ + ["next_chapter"]=16809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53148, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5368, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=53148, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16809]={ + ["next_chapter"]=16810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=49999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53679, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5422, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=53679, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5182, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1680, + ["unit"]=0 + } + }, + [16810]={ + ["next_chapter"]=16811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=50019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16506, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54216, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5476, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=54216, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16811]={ + ["next_chapter"]=16812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50040, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16513, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54758, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5531, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=54758, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16812]={ + ["next_chapter"]=16813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50060, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55306, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5586, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=55306, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16813]={ + ["next_chapter"]=16814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50081, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55859, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5642, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=55859, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16814]={ + ["next_chapter"]=16815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56417, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5698, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=56417, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16815]={ + ["next_chapter"]=16816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16540, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56982, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5755, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=56982, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16816]={ + ["next_chapter"]=16817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57551, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5813, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=57551, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16817]={ + ["next_chapter"]=16818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58127, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5871, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=58127, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16818]={ + ["next_chapter"]=16819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16561, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58708, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5930, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=58708, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16819]={ + ["next_chapter"]=16820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16567, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59295, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5989, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=59295, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=5724, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1681, + ["unit"]=0 + } + }, + [16820]={ + ["next_chapter"]=16821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=50225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59888, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6049, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=59888, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16821]={ + ["next_chapter"]=16822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16581, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60487, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6109, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=60487, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16822]={ + ["next_chapter"]=16823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61092, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6170, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=61092, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16823]={ + ["next_chapter"]=16824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61703, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6232, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=61703, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16824]={ + ["next_chapter"]=16825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50307, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62320, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6294, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=62320, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16825]={ + ["next_chapter"]=16826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50328, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62943, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6357, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=62943, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16826]={ + ["next_chapter"]=16827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16615, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63573, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6421, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=63573, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16827]={ + ["next_chapter"]=16828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64208, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6485, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=64208, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16828]={ + ["next_chapter"]=16829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64850, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6550, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=64850, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16829]={ + ["next_chapter"]=16830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65499, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6615, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=65499, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6323, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1682, + ["unit"]=0 + } + }, + [16830]={ + ["next_chapter"]=16831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=50431, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66154, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6682, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=66154, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16831]={ + ["next_chapter"]=16832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66815, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6748, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=66815, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16832]={ + ["next_chapter"]=16833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50472, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67484, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6816, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=67484, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16833]={ + ["next_chapter"]=16834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16663, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68158, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6884, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=68158, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16834]={ + ["next_chapter"]=16835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68840, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6953, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=68840, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16835]={ + ["next_chapter"]=16836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50534, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69528, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7022, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=69528, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16836]={ + ["next_chapter"]=16837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50554, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16683, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70224, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7093, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=70224, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16837]={ + ["next_chapter"]=16838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70926, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7164, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=70926, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16838]={ + ["next_chapter"]=16839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16697, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71635, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7235, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=71635, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16839]={ + ["next_chapter"]=16840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50617, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16703, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72351, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7308, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=72351, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=6985, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1683, + ["unit"]=0 + } + }, + [16840]={ + ["next_chapter"]=16841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=50637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73075, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7381, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=73075, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16841]={ + ["next_chapter"]=16842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73806, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7454, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=73806, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16842]={ + ["next_chapter"]=16843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16724, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74544, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7529, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=74544, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16843]={ + ["next_chapter"]=16844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50699, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16731, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75289, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7604, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=75289, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16844]={ + ["next_chapter"]=16845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16738, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76042, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7680, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=76042, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16845]={ + ["next_chapter"]=16846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16744, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76803, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7757, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=76803, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16846]={ + ["next_chapter"]=16847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50761, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77571, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7835, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=77571, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16847]={ + ["next_chapter"]=16848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50782, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16758, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78346, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7913, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=78346, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16848]={ + ["next_chapter"]=16849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16765, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79130, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7992, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=79130, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16849]={ + ["next_chapter"]=16850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50824, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16772, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79921, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8072, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=79921, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=7715, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1684, + ["unit"]=0 + } + }, + [16850]={ + ["next_chapter"]=16851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=50844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80720, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8153, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=80720, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16851]={ + ["next_chapter"]=16852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50865, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81527, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8234, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=81527, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16852]={ + ["next_chapter"]=16853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82343, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8317, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=82343, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16853]={ + ["next_chapter"]=16854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50907, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83166, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8400, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=83166, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16854]={ + ["next_chapter"]=16855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50927, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83998, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8484, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=83998, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16855]={ + ["next_chapter"]=16856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50948, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16813, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84838, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8569, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=84838, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16856]={ + ["next_chapter"]=16857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85686, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8654, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=85686, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16857]={ + ["next_chapter"]=16858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=50990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86543, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8741, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=86543, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16858]={ + ["next_chapter"]=16859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87408, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8828, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=87408, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16859]={ + ["next_chapter"]=16860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51031, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16840, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88283, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8917, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=88283, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=8523, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1685, + ["unit"]=0 + } + }, + [16860]={ + ["next_chapter"]=16861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=51052, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16847, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89165, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9006, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=89165, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16861]={ + ["next_chapter"]=16862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16854, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90057, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9096, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=90057, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16862]={ + ["next_chapter"]=16863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90958, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9187, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=90958, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16863]={ + ["next_chapter"]=16864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16868, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91867, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9279, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=91867, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16864]={ + ["next_chapter"]=16865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16875, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92786, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9371, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=92786, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16865]={ + ["next_chapter"]=16866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93714, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9465, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=93714, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16866]={ + ["next_chapter"]=16867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94651, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9560, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=94651, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16867]={ + ["next_chapter"]=16868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51198, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95597, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9655, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=95597, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16868]={ + ["next_chapter"]=16869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51219, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16902, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96553, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9752, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=96553, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16869]={ + ["next_chapter"]=16870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97519, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9849, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=97519, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=9414, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1686, + ["unit"]=0 + } + }, + [16870]={ + ["next_chapter"]=16871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=51260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16916, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98494, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9948, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=98494, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16871]={ + ["next_chapter"]=16872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16923, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99479, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10047, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=99479, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16872]={ + ["next_chapter"]=16873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51302, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16930, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100474, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10148, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=100474, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16873]={ + ["next_chapter"]=16874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101479, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10249, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=101479, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16874]={ + ["next_chapter"]=16875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51344, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102493, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10352, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=102493, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16875]={ + ["next_chapter"]=16876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16950, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103518, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10455, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=103518, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16876]={ + ["next_chapter"]=16877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16957, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104553, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10560, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=104553, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16877]={ + ["next_chapter"]=16878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16964, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105599, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10665, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=105599, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16878]={ + ["next_chapter"]=16879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16971, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106655, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10772, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=106655, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16879]={ + ["next_chapter"]=16880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51448, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16978, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107722, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10880, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=107722, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=10399, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1687, + ["unit"]=0 + } + }, + [16880]={ + ["next_chapter"]=16881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=51469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108799, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10989, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=108799, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16881]={ + ["next_chapter"]=16882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51490, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109887, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11099, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=109887, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16882]={ + ["next_chapter"]=16883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=16999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110986, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11210, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=110986, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16883]={ + ["next_chapter"]=16884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51532, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112095, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11322, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=112095, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16884]={ + ["next_chapter"]=16885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113216, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11435, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=113216, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16885]={ + ["next_chapter"]=16886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51574, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114349, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11549, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=114349, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16886]={ + ["next_chapter"]=16887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17026, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115492, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11665, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=115492, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16887]={ + ["next_chapter"]=16888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116647, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11781, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=116647, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16888]={ + ["next_chapter"]=16889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51637, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117813, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11899, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=117813, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16889]={ + ["next_chapter"]=16890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17047, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118992, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12018, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=118992, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=11487, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1688, + ["unit"]=0 + } + }, + [16890]={ + ["next_chapter"]=16891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=51679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120181, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12138, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=120181, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16891]={ + ["next_chapter"]=16892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121383, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12260, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=121383, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16892]={ + ["next_chapter"]=16893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51721, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17068, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122597, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12382, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=122597, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16893]={ + ["next_chapter"]=16894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17075, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123823, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12506, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=123823, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16894]={ + ["next_chapter"]=16895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17082, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125061, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12631, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=125061, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16895]={ + ["next_chapter"]=16896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17089, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126312, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12758, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=126312, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16896]={ + ["next_chapter"]=16897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127575, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12885, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=127575, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16897]={ + ["next_chapter"]=16898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51826, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17102, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=128851, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13014, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=128851, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16898]={ + ["next_chapter"]=16899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51847, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17109, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130139, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13144, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=130139, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16899]={ + ["next_chapter"]=16900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17116, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131441, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13276, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=131441, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=12689, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1689, + ["unit"]=0 + } + }, + [16900]={ + ["next_chapter"]=16901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=51889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=132755, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13408, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=132755, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16901]={ + ["next_chapter"]=16902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17130, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134083, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13542, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=134083, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16902]={ + ["next_chapter"]=16903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51931, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=135424, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13678, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=135424, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16903]={ + ["next_chapter"]=16904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17144, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=136778, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13815, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=136778, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16904]={ + ["next_chapter"]=16905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17151, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138146, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13953, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=138146, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16905]={ + ["next_chapter"]=16906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=51994, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=139527, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14092, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=139527, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16906]={ + ["next_chapter"]=16907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=140922, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14233, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=140922, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16907]={ + ["next_chapter"]=16908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52036, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17172, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142331, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14375, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=142331, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16908]={ + ["next_chapter"]=16909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17179, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=143755, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14519, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=143755, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16909]={ + ["next_chapter"]=16910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145192, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14664, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=145192, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=14017, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1690, + ["unit"]=0 + } + }, + [16910]={ + ["next_chapter"]=16911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=52099, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=146644, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14811, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=146644, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16911]={ + ["next_chapter"]=16912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17200, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=148111, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14959, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=148111, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16912]={ + ["next_chapter"]=16913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17207, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=149592, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15109, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=149592, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16913]={ + ["next_chapter"]=16914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=151088, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15260, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=151088, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16914]={ + ["next_chapter"]=16915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17221, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=152599, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15412, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=152599, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16915]={ + ["next_chapter"]=16916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52205, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=154125, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15567, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=154125, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16916]={ + ["next_chapter"]=16917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17235, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=155666, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15722, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=155666, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16917]={ + ["next_chapter"]=16918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52247, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=157222, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15879, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=157222, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16918]={ + ["next_chapter"]=16919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17248, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=158795, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16038, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=158795, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16919]={ + ["next_chapter"]=16920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17255, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=160383, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16199, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=160383, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=15483, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1691, + ["unit"]=0 + } + }, + [16920]={ + ["next_chapter"]=16921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=52310, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17262, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=161986, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16361, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=161986, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16921]={ + ["next_chapter"]=16922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17269, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=163606, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16524, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=163606, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16922]={ + ["next_chapter"]=16923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=165242, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16689, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=165242, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16923]={ + ["next_chapter"]=16924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52374, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17283, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=166895, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16856, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=166895, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16924]={ + ["next_chapter"]=16925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52395, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17290, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=168564, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17025, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=168564, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16925]={ + ["next_chapter"]=16926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=170249, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17195, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=170249, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16926]={ + ["next_chapter"]=16927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52437, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=171952, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17367, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=171952, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16927]={ + ["next_chapter"]=16928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52458, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=173671, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17541, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=173671, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16928]={ + ["next_chapter"]=16929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17318, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=175408, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17716, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=175408, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16929]={ + ["next_chapter"]=16930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52501, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=177162, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17893, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=177162, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=17103, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1692, + ["unit"]=0 + } + }, + [16930]={ + ["next_chapter"]=16931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=52522, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17332, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=178934, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18072, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=178934, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16931]={ + ["next_chapter"]=16932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=180723, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18253, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=180723, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16932]={ + ["next_chapter"]=16933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52564, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=182530, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18436, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=182530, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16933]={ + ["next_chapter"]=16934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52586, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=184356, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18620, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=184356, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16934]={ + ["next_chapter"]=16935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=186199, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18806, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=186199, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16935]={ + ["next_chapter"]=16936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52628, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=188061, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18994, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=188061, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16936]={ + ["next_chapter"]=16937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=189942, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19184, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=189942, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16937]={ + ["next_chapter"]=16938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=191841, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19376, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=191841, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16938]={ + ["next_chapter"]=16939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=193760, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19570, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=193760, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16939]={ + ["next_chapter"]=16940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=195697, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19765, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=195697, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=18892, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1693, + ["unit"]=0 + } + }, + [16940]={ + ["next_chapter"]=16941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=52734, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17402, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=197654, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19963, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=197654, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16941]={ + ["next_chapter"]=16942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17409, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=199631, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20163, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=199631, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16942]={ + ["next_chapter"]=16943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=201627, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20364, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=201627, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16943]={ + ["next_chapter"]=16944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=203643, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20568, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=203643, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16944]={ + ["next_chapter"]=16945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=205680, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20774, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=205680, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16945]={ + ["next_chapter"]=16946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17437, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=207737, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20981, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=207737, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16946]={ + ["next_chapter"]=16947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17444, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=209814, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21191, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=209814, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16947]={ + ["next_chapter"]=16948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=211912, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21403, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=211912, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16948]={ + ["next_chapter"]=16949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=214031, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21617, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=214031, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16949]={ + ["next_chapter"]=16950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=216172, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21833, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=216172, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=20869, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1694, + ["unit"]=0 + } + }, + [16950]={ + ["next_chapter"]=16951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=52947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=218333, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22052, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=218333, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16951]={ + ["next_chapter"]=16952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17480, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=220517, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22272, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=220517, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16952]={ + ["next_chapter"]=16953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=52990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17487, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=222722, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22495, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=222722, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16953]={ + ["next_chapter"]=16954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=224949, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22720, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=224949, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16954]={ + ["next_chapter"]=16955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=227199, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22947, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=227199, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16955]={ + ["next_chapter"]=16956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=229471, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23177, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=229471, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16956]={ + ["next_chapter"]=16957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17515, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=231765, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23408, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=231765, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16957]={ + ["next_chapter"]=16958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17522, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=234083, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23642, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=234083, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16958]={ + ["next_chapter"]=16959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53118, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17529, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=236424, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23879, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=236424, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16959]={ + ["next_chapter"]=16960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17536, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=238788, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24118, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=238788, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=23052, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1695, + ["unit"]=0 + } + }, + [16960]={ + ["next_chapter"]=16961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=53161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17543, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=241176, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24359, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=241176, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16961]={ + ["next_chapter"]=16962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17550, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=243588, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24602, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=243588, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16962]={ + ["next_chapter"]=16963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53203, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=246023, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24848, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=246023, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16963]={ + ["next_chapter"]=16964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=248484, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25097, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=248484, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16964]={ + ["next_chapter"]=16965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=250969, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25348, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=250969, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16965]={ + ["next_chapter"]=16966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=253478, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25601, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=253478, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16966]={ + ["next_chapter"]=16967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=256013, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25857, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=256013, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16967]={ + ["next_chapter"]=16968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53310, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17592, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=258573, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26116, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=258573, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16968]={ + ["next_chapter"]=16969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17599, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=261159, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26377, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=261159, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16969]={ + ["next_chapter"]=16970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=263770, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26641, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=263770, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=25464, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1696, + ["unit"]=0 + } + }, + [16970]={ + ["next_chapter"]=16971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=53375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17614, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=266408, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26907, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=266408, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16971]={ + ["next_chapter"]=16972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53396, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17621, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=269072, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27176, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=269072, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16972]={ + ["next_chapter"]=16973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=271763, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27448, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=271763, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16973]={ + ["next_chapter"]=16974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=274481, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27723, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=274481, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16974]={ + ["next_chapter"]=16975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53460, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=277225, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28000, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=277225, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16975]={ + ["next_chapter"]=16976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53482, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=279998, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28280, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=279998, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16976]={ + ["next_chapter"]=16977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=282798, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28563, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=282798, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16977]={ + ["next_chapter"]=16978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17663, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=285626, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28848, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=285626, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16978]={ + ["next_chapter"]=16979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17670, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=288482, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29137, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=288482, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16979]={ + ["next_chapter"]=16980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53568, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=291367, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29428, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=291367, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=28128, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1697, + ["unit"]=0 + } + }, + [16980]={ + ["next_chapter"]=16981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=53589, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=294280, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29722, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=294280, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16981]={ + ["next_chapter"]=16982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53611, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17692, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=297223, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30020, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=297223, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16982]={ + ["next_chapter"]=16983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53632, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=300195, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30320, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=300195, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16983]={ + ["next_chapter"]=16984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=303197, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30623, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=303197, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16984]={ + ["next_chapter"]=16985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=306229, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30929, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=306229, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16985]={ + ["next_chapter"]=16986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53697, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17720, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=309292, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31238, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=309292, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16986]={ + ["next_chapter"]=16987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53718, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17727, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=312384, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31551, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=312384, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16987]={ + ["next_chapter"]=16988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53740, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=315508, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31866, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=315508, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16988]={ + ["next_chapter"]=16989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53761, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17741, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=318663, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32185, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=318663, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16989]={ + ["next_chapter"]=16990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53783, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17748, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=321850, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32507, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=321850, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=31071, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1698, + ["unit"]=0 + } + }, + [16990]={ + ["next_chapter"]=16991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=53804, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=325069, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32832, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=325069, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16991]={ + ["next_chapter"]=16992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53826, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=328319, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33160, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=328319, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16992]={ + ["next_chapter"]=16993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53847, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17770, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=331602, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33492, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=331602, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16993]={ + ["next_chapter"]=16994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53869, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17777, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=334918, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33827, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=334918, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16994]={ + ["next_chapter"]=16995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=338268, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34165, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=338268, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16995]={ + ["next_chapter"]=16996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53912, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17791, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=341650, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34507, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=341650, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16996]={ + ["next_chapter"]=16997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17798, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=345067, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34852, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=345067, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16997]={ + ["next_chapter"]=16998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17805, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=348517, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35200, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=348517, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16998]={ + ["next_chapter"]=16999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=352003, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35552, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=352003, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [16999]={ + ["next_chapter"]=17000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=53998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=355523, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35908, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=355523, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=34321, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1699, + ["unit"]=0 + } + }, + [17000]={ + ["next_chapter"]=17001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=54020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=359078, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36267, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=359078, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17001]={ + ["next_chapter"]=17002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17834, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=362669, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36630, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=362669, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17002]={ + ["next_chapter"]=17003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17841, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=366295, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36996, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=366295, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17003]={ + ["next_chapter"]=17004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=369958, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37366, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=369958, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17004]={ + ["next_chapter"]=17005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54106, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=373658, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37739, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=373658, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17005]={ + ["next_chapter"]=17006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54128, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17862, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=377394, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38117, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=377394, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17006]={ + ["next_chapter"]=17007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54150, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17869, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=381168, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38498, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=381168, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17007]={ + ["next_chapter"]=17008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54171, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=384980, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38883, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=384980, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17008]={ + ["next_chapter"]=17009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54193, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17884, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=388830, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39272, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=388830, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17009]={ + ["next_chapter"]=17010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=392718, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39665, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=392718, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=37912, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1700, + ["unit"]=0 + } + }, + [17010]={ + ["next_chapter"]=17011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=54236, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=396645, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40061, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=396645, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17011]={ + ["next_chapter"]=17012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54258, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=400612, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40462, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=400612, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17012]={ + ["next_chapter"]=17013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=404618, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40866, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=404618, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17013]={ + ["next_chapter"]=17014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=408664, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41275, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=408664, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17014]={ + ["next_chapter"]=17015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17927, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=412751, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41688, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=412751, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17015]={ + ["next_chapter"]=17016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17934, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=416878, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42105, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=416878, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17016]={ + ["next_chapter"]=17017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=421047, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42526, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=421047, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17017]={ + ["next_chapter"]=17018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54388, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17948, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=425258, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42951, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=425258, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17018]={ + ["next_chapter"]=17019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17955, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=429510, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43381, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=429510, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17019]={ + ["next_chapter"]=17020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54431, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17962, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=433805, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43814, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=433805, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=41879, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1701, + ["unit"]=0 + } + }, + [17020]={ + ["next_chapter"]=17021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=54453, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17970, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=438143, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44252, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=438143, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17021]={ + ["next_chapter"]=17022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=442525, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44695, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=442525, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17022]={ + ["next_chapter"]=17023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=446950, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45142, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=446950, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17023]={ + ["next_chapter"]=17024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54518, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=451419, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45593, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=451419, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17024]={ + ["next_chapter"]=17025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54540, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=17998, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=455934, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46049, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=455934, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17025]={ + ["next_chapter"]=17026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=460493, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46510, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=460493, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17026]={ + ["next_chapter"]=17027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18013, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=465098, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46975, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=465098, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17027]={ + ["next_chapter"]=17028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18020, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=469749, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47445, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=469749, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17028]={ + ["next_chapter"]=17029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18027, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=474446, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47919, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=474446, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17029]={ + ["next_chapter"]=17030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18034, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=479191, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48398, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=479191, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=46260, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1702, + ["unit"]=0 + } + }, + [17030]={ + ["next_chapter"]=17031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=54671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18041, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=483983, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48882, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=483983, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17031]={ + ["next_chapter"]=17032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18048, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=488823, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49371, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=488823, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17032]={ + ["next_chapter"]=17033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54714, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=493711, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49865, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=493711, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17033]={ + ["next_chapter"]=17034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=498648, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50363, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=498648, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17034]={ + ["next_chapter"]=17035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54758, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=503634, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50867, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=503634, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17035]={ + ["next_chapter"]=17036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54780, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=508671, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51376, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=508671, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17036]={ + ["next_chapter"]=17037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=513757, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51890, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=513757, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17037]={ + ["next_chapter"]=17038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54823, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18092, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=518895, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52408, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=518895, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17038]={ + ["next_chapter"]=17039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=524084, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52932, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=524084, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17039]={ + ["next_chapter"]=17040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18106, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=529325, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53462, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=529325, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=51100, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1703, + ["unit"]=0 + } + }, + [17040]={ + ["next_chapter"]=17041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=54889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=534618, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53996, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=534618, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17041]={ + ["next_chapter"]=17042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18120, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=539964, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54536, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=539964, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17042]={ + ["next_chapter"]=17043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54932, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18128, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=545364, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55082, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=545364, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17043]={ + ["next_chapter"]=17044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54954, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18135, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=550818, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55633, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=550818, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17044]={ + ["next_chapter"]=17045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54976, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=556326, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56189, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=556326, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17045]={ + ["next_chapter"]=17046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=54998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18149, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=561889, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56751, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=561889, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17046]={ + ["next_chapter"]=17047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=567508, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57318, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=567508, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17047]={ + ["next_chapter"]=17048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18164, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=573183, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57891, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=573183, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17048]={ + ["next_chapter"]=17049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=578915, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58470, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=578915, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17049]={ + ["next_chapter"]=17050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=584704, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59055, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=584704, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=56446, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1704, + ["unit"]=0 + } + }, + [17050]={ + ["next_chapter"]=17051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=55107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=590551, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59646, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=590551, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17051]={ + ["next_chapter"]=17052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=596456, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60242, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=596456, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17052]={ + ["next_chapter"]=17053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18200, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=602421, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60845, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=602421, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17053]={ + ["next_chapter"]=17054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18207, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=608445, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61453, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=608445, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17054]={ + ["next_chapter"]=17055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=614530, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62067, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=614530, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17055]={ + ["next_chapter"]=17056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=620675, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62688, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=620675, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17056]={ + ["next_chapter"]=17057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18229, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=626882, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63315, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=626882, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17057]={ + ["next_chapter"]=17058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=633151, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63948, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=633151, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17058]={ + ["next_chapter"]=17059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55283, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18243, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=639482, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64588, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=639482, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17059]={ + ["next_chapter"]=17060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=645877, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65234, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=645877, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=62352, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1705, + ["unit"]=0 + } + }, + [17060]={ + ["next_chapter"]=17061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=55326, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18258, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=652336, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65886, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=652336, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17061]={ + ["next_chapter"]=17062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=658859, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66545, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=658859, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17062]={ + ["next_chapter"]=17063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=665448, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67210, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=665448, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17063]={ + ["next_chapter"]=17064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=672102, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67882, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=672102, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17064]={ + ["next_chapter"]=17065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18287, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=678823, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68561, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=678823, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17065]={ + ["next_chapter"]=17066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=685611, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69247, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=685611, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17066]={ + ["next_chapter"]=17067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55458, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18301, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=692467, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69939, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=692467, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17067]={ + ["next_chapter"]=17068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=699392, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70639, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=699392, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17068]={ + ["next_chapter"]=17069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18316, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=706386, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71345, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=706386, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17069]={ + ["next_chapter"]=17070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55524, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=713450, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72058, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=713450, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=68875, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1706, + ["unit"]=0 + } + }, + [17070]={ + ["next_chapter"]=17071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=55546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=720584, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72779, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=720584, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17071]={ + ["next_chapter"]=17072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55568, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=727790, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73507, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=727790, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17072]={ + ["next_chapter"]=17073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=735068, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74242, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=735068, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17073]={ + ["next_chapter"]=17074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55612, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18352, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=742419, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74984, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=742419, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17074]={ + ["next_chapter"]=17075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=749843, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75734, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=749843, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17075]={ + ["next_chapter"]=17076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=757341, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76491, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=757341, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17076]={ + ["next_chapter"]=17077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55678, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=764915, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77256, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=764915, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17077]={ + ["next_chapter"]=17078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=772564, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78029, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=772564, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17078]={ + ["next_chapter"]=17079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55722, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=780290, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78809, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=780290, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17079]={ + ["next_chapter"]=17080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55744, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18396, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=788093, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79597, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=788093, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=76081, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1707, + ["unit"]=0 + } + }, + [17080]={ + ["next_chapter"]=17081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=55766, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=795973, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80393, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=795973, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17081]={ + ["next_chapter"]=17082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55789, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18410, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=803933, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81197, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=803933, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17082]={ + ["next_chapter"]=17083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18418, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=811973, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82009, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=811973, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17083]={ + ["next_chapter"]=17084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=820092, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82829, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=820092, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17084]={ + ["next_chapter"]=17085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18432, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=828293, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83658, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=828293, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17085]={ + ["next_chapter"]=17086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=836576, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84494, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=836576, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17086]={ + ["next_chapter"]=17087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=844942, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85339, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=844942, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17087]={ + ["next_chapter"]=17088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55921, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18454, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=853391, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86193, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=853391, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17088]={ + ["next_chapter"]=17089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18461, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=861925, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87054, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=861925, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17089]={ + ["next_chapter"]=17090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=55965, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18469, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=870544, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87925, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=870544, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=84041, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1708, + ["unit"]=0 + } + }, + [17090]={ + ["next_chapter"]=17091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=55987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18476, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=879250, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88804, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=879250, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17091]={ + ["next_chapter"]=17092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=888042, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89692, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=888042, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17092]={ + ["next_chapter"]=17093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18490, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=896923, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90589, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=896923, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17093]={ + ["next_chapter"]=17094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18498, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=905892, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91495, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=905892, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17094]={ + ["next_chapter"]=17095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=914951, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92410, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=914951, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17095]={ + ["next_chapter"]=17096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18512, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=924100, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93334, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=924100, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17096]={ + ["next_chapter"]=17097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=933341, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94267, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=933341, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17097]={ + ["next_chapter"]=17098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=942675, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95210, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=942675, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17098]={ + ["next_chapter"]=17099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=952102, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96162, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=952102, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17099]={ + ["next_chapter"]=17100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56187, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18542, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=961623, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97124, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=961623, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=92833, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1709, + ["unit"]=0 + } + }, + [17100]={ + ["next_chapter"]=17101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=56209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18549, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=971239, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98095, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=971239, + ["unit"]=23 + }, + ["chapter_drop"]=64, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17101]={ + ["next_chapter"]=17102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=980951, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99076, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=980951, + ["unit"]=23 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17102]={ + ["next_chapter"]=17103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=990761, + ["unit"]=23 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100067, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=990761, + ["unit"]=23 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17103]={ + ["next_chapter"]=17104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56275, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1001, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101068, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1001, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17104]={ + ["next_chapter"]=17105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56298, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1011, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102078, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1011, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17105]={ + ["next_chapter"]=17106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18586, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1021, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103099, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1021, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17106]={ + ["next_chapter"]=17107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18593, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1031, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104130, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1031, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17107]={ + ["next_chapter"]=17108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56364, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1041, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105171, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1041, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17108]={ + ["next_chapter"]=17109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56387, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1052, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106223, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1052, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17109]={ + ["next_chapter"]=17110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18615, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1062, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107285, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1062, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=102545, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1710, + ["unit"]=0 + } + }, + [17110]={ + ["next_chapter"]=17111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=56431, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1073, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108358, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1073, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17111]={ + ["next_chapter"]=17112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56453, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18630, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1084, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109442, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1084, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17112]={ + ["next_chapter"]=17113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18637, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1094, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110536, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1094, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17113]={ + ["next_chapter"]=17114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1105, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111641, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1105, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17114]={ + ["next_chapter"]=17115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18652, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1116, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112758, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1116, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17115]={ + ["next_chapter"]=17116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1128, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113885, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1128, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17116]={ + ["next_chapter"]=17117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56565, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1139, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115024, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1139, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17117]={ + ["next_chapter"]=17118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56587, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1150, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116174, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1150, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17118]={ + ["next_chapter"]=17119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56609, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18681, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1162, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117336, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1162, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17119]={ + ["next_chapter"]=17120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18688, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1173, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118510, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1173, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=113274, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1711, + ["unit"]=0 + } + }, + [17120]={ + ["next_chapter"]=17121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=56654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18696, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1185, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119695, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1185, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17121]={ + ["next_chapter"]=17122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56676, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18703, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1197, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120892, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1197, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17122]={ + ["next_chapter"]=17123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1209, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122101, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1209, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17123]={ + ["next_chapter"]=17124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56721, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18718, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1221, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123322, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1221, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17124]={ + ["next_chapter"]=17125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18725, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1233, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124555, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1233, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17125]={ + ["next_chapter"]=17126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56765, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1246, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125800, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1246, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17126]={ + ["next_chapter"]=17127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56788, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1258, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127058, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1258, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17127]={ + ["next_chapter"]=17128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1271, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128329, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1271, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17128]={ + ["next_chapter"]=17129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1283, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129612, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1283, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17129]={ + ["next_chapter"]=17130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18762, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1296, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130908, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1296, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=125125, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1712, + ["unit"]=0 + } + }, + [17130]={ + ["next_chapter"]=17131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=56877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1309, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132217, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1309, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17131]={ + ["next_chapter"]=17132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18777, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1322, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133540, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1322, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17132]={ + ["next_chapter"]=17133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56922, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1335, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134875, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1335, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17133]={ + ["next_chapter"]=17134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56944, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1349, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136224, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1349, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17134]={ + ["next_chapter"]=17135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56966, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1362, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137586, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1362, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17135]={ + ["next_chapter"]=17136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=56989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1376, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138962, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1376, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17136]={ + ["next_chapter"]=17137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18814, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1390, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140351, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1390, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17137]={ + ["next_chapter"]=17138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57034, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1404, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141755, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1404, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17138]={ + ["next_chapter"]=17139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18828, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1418, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143173, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1418, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17139]={ + ["next_chapter"]=17140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18836, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1432, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144604, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1432, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=138216, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1713, + ["unit"]=0 + } + }, + [17140]={ + ["next_chapter"]=17141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=57101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18843, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1446, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146050, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1446, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17141]={ + ["next_chapter"]=17142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1461, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147511, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1461, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17142]={ + ["next_chapter"]=17143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57146, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1475, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148986, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1475, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17143]={ + ["next_chapter"]=17144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57168, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1490, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150476, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1490, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17144]={ + ["next_chapter"]=17145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57191, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1505, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151981, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1505, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17145]={ + ["next_chapter"]=17146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1520, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153500, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1520, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17146]={ + ["next_chapter"]=17147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1535, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155035, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1535, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17147]={ + ["next_chapter"]=17148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57258, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1550, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156586, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1550, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17148]={ + ["next_chapter"]=17149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18902, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1566, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158152, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1566, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17149]={ + ["next_chapter"]=17150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18910, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1582, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159733, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1582, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=152676, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1714, + ["unit"]=0 + } + }, + [17150]={ + ["next_chapter"]=17151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=57325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18917, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1597, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161330, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1597, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17151]={ + ["next_chapter"]=17152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18925, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1613, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162944, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1613, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17152]={ + ["next_chapter"]=17153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18932, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1629, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164573, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1629, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17153]={ + ["next_chapter"]=17154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57393, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18940, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1646, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166219, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1646, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17154]={ + ["next_chapter"]=17155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1662, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167881, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1662, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17155]={ + ["next_chapter"]=17156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18954, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1679, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169560, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1679, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17156]={ + ["next_chapter"]=17157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57460, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18962, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1696, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171255, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1696, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17157]={ + ["next_chapter"]=17158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18969, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1713, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172968, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1713, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17158]={ + ["next_chapter"]=17159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1730, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174698, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1730, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17159]={ + ["next_chapter"]=17160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1747, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176445, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1747, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=168649, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1715, + ["unit"]=0 + } + }, + [17160]={ + ["next_chapter"]=17161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=57550, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1764, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178209, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1764, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17161]={ + ["next_chapter"]=17162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=18999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1782, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179991, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1782, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17162]={ + ["next_chapter"]=17163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1800, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181791, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1800, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17163]={ + ["next_chapter"]=17164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57618, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19014, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1818, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183609, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1818, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17164]={ + ["next_chapter"]=17165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57640, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19021, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1836, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185445, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1836, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17165]={ + ["next_chapter"]=17166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57663, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1854, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187300, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1854, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17166]={ + ["next_chapter"]=17167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19036, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1873, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189173, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1873, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17167]={ + ["next_chapter"]=17168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1892, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191064, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1892, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17168]={ + ["next_chapter"]=17169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19051, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1911, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192975, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1911, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17169]={ + ["next_chapter"]=17170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1930, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194905, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1930, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=186294, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1716, + ["unit"]=0 + } + }, + [17170]={ + ["next_chapter"]=17171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=57776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19066, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1949, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196854, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1949, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17171]={ + ["next_chapter"]=17172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19073, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1969, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198822, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1969, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17172]={ + ["next_chapter"]=17173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57821, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19081, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1988, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200810, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=1988, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17173]={ + ["next_chapter"]=17174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19088, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2008, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202819, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2008, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17174]={ + ["next_chapter"]=17175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2028, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204847, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2028, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17175]={ + ["next_chapter"]=17176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2048, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206895, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2048, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17176]={ + ["next_chapter"]=17177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57912, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2069, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208964, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2069, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17177]={ + ["next_chapter"]=17178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19118, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2090, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211054, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2090, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17178]={ + ["next_chapter"]=17179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57957, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2111, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213164, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2111, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17179]={ + ["next_chapter"]=17180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=57979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19133, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2132, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215296, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2132, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=205784, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1717, + ["unit"]=0 + } + }, + [17180]={ + ["next_chapter"]=17181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=58002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19141, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2153, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217449, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2153, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17181]={ + ["next_chapter"]=17182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58025, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19148, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2174, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219623, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2174, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17182]={ + ["next_chapter"]=17183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2196, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221820, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2196, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17183]={ + ["next_chapter"]=17184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2218, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224038, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2218, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17184]={ + ["next_chapter"]=17185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58093, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2240, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226278, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2240, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17185]={ + ["next_chapter"]=17186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2263, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228541, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2263, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17186]={ + ["next_chapter"]=17187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58138, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2285, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230826, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2285, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17187]={ + ["next_chapter"]=17188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2308, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233135, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2308, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17188]={ + ["next_chapter"]=17189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19201, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2331, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235466, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2331, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17189]={ + ["next_chapter"]=17190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58206, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19208, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2355, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237821, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2355, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=227314, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + [17190]={ + ["next_chapter"]=17191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=58229, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19216, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2378, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240199, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2378, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17191]={ + ["next_chapter"]=17192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58252, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2402, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242601, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2402, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17192]={ + ["next_chapter"]=17193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2426, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245027, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2426, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17193]={ + ["next_chapter"]=17194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58297, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2450, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247477, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2450, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17194]={ + ["next_chapter"]=17195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2475, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249952, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2475, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17195]={ + ["next_chapter"]=17196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19253, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2500, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=252451, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2500, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17196]={ + ["next_chapter"]=17197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2525, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254976, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2525, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17197]={ + ["next_chapter"]=17198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58388, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2550, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257526, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2550, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17198]={ + ["next_chapter"]=17199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58411, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2575, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260101, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2575, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17199]={ + ["next_chapter"]=17200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19283, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2601, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262702, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2601, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=251096, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1719, + ["unit"]=0 + } + }, + [17200]={ + ["next_chapter"]=17201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=58456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2627, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265329, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2627, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17201]={ + ["next_chapter"]=17202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19298, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2653, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267982, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2653, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17202]={ + ["next_chapter"]=17203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2680, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270662, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2680, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17203]={ + ["next_chapter"]=17204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19313, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2707, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=273369, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2707, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17204]={ + ["next_chapter"]=17205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58547, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19321, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2734, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=276102, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2734, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17205]={ + ["next_chapter"]=17206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2761, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=278864, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2761, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17206]={ + ["next_chapter"]=17207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19336, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2789, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281652, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2789, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17207]={ + ["next_chapter"]=17208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2817, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=284469, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2817, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17208]={ + ["next_chapter"]=17209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2845, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287313, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2845, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17209]={ + ["next_chapter"]=17210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58661, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19358, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2873, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=290186, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2873, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=277366, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1720, + ["unit"]=0 + } + }, + [17210]={ + ["next_chapter"]=17211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=58684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19366, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2902, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293088, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2902, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17211]={ + ["next_chapter"]=17212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2931, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296019, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2931, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17212]={ + ["next_chapter"]=17213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2960, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298979, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2960, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17213]={ + ["next_chapter"]=17214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2990, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301969, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=2990, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17214]={ + ["next_chapter"]=17215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19396, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3020, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304989, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3020, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17215]={ + ["next_chapter"]=17216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3050, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308039, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3050, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17216]={ + ["next_chapter"]=17217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58821, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3080, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=311119, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3080, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17217]={ + ["next_chapter"]=17218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19419, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3111, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=314230, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3111, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17218]={ + ["next_chapter"]=17219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19426, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3142, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=317373, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3142, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17219]={ + ["next_chapter"]=17220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19434, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3174, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320546, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3174, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=306385, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1721, + ["unit"]=0 + } + }, + [17220]={ + ["next_chapter"]=17221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=58913, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19441, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3205, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323752, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3205, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17221]={ + ["next_chapter"]=17222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19449, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3238, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=326989, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3238, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17222]={ + ["next_chapter"]=17223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58959, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19456, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3270, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=330259, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3270, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17223]={ + ["next_chapter"]=17224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=58981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3303, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=333562, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3303, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17224]={ + ["next_chapter"]=17225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59004, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3336, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=336898, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3336, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17225]={ + ["next_chapter"]=17226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3369, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=340266, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3369, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17226]={ + ["next_chapter"]=17227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59050, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19487, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3403, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=343669, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3403, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17227]={ + ["next_chapter"]=17228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3437, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=347106, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3437, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17228]={ + ["next_chapter"]=17229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19502, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3471, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=350577, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3471, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17229]={ + ["next_chapter"]=17230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19509, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3506, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=354083, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3506, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=338440, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1722, + ["unit"]=0 + } + }, + [17230]={ + ["next_chapter"]=17231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=59142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19517, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3541, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=357623, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3541, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17231]={ + ["next_chapter"]=17232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3576, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=361200, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3576, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17232]={ + ["next_chapter"]=17233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19532, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3612, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=364812, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3612, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17233]={ + ["next_chapter"]=17234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19540, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3648, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=368460, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3648, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17234]={ + ["next_chapter"]=17235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3685, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=372144, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3685, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17235]={ + ["next_chapter"]=17236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59257, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19555, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3721, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=375866, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3721, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17236]={ + ["next_chapter"]=17237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19562, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3759, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=379625, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3759, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17237]={ + ["next_chapter"]=17238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19570, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3796, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=383421, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3796, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17238]={ + ["next_chapter"]=17239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59326, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3834, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=387255, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3834, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17239]={ + ["next_chapter"]=17240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3873, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=391128, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3873, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=373848, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1723, + ["unit"]=0 + } + }, + [17240]={ + ["next_chapter"]=17241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=59372, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19593, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3911, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=395039, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3911, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17241]={ + ["next_chapter"]=17242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59395, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3950, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398989, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3950, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17242]={ + ["next_chapter"]=17243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3990, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402979, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=3990, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17243]={ + ["next_chapter"]=17244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59441, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19615, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4030, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=407009, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4030, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17244]={ + ["next_chapter"]=17245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59464, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19623, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4070, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=411079, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4070, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17245]={ + ["next_chapter"]=17246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19631, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4111, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=415190, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4111, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17246]={ + ["next_chapter"]=17247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19638, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4152, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=419342, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4152, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17247]={ + ["next_chapter"]=17248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59533, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4193, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=423535, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4193, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17248]={ + ["next_chapter"]=17249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19653, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4235, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=427770, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4235, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17249]={ + ["next_chapter"]=17250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59579, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19661, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4278, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=432048, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4278, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=412961, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1724, + ["unit"]=0 + } + }, + [17250]={ + ["next_chapter"]=17251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=59602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4320, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=436369, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4320, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17251]={ + ["next_chapter"]=17252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4364, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=440732, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4364, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17252]={ + ["next_chapter"]=17253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59648, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4407, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=445140, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4407, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17253]={ + ["next_chapter"]=17254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19692, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4451, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=449591, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4451, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17254]={ + ["next_chapter"]=17255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59694, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4496, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=454087, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4496, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17255]={ + ["next_chapter"]=17256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4541, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=458628, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4541, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17256]={ + ["next_chapter"]=17257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59740, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4586, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=463214, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4586, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17257]={ + ["next_chapter"]=17258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4632, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=467846, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4632, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17258]={ + ["next_chapter"]=17259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59787, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4678, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=472525, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4678, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17259]={ + ["next_chapter"]=17260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19737, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4725, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=477250, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4725, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=456165, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1725, + ["unit"]=0 + } + }, + [17260]={ + ["next_chapter"]=17261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=59833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19745, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4772, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=482022, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4772, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17261]={ + ["next_chapter"]=17262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59856, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4820, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=486843, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4820, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17262]={ + ["next_chapter"]=17263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19760, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4868, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=491711, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4868, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17263]={ + ["next_chapter"]=17264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59902, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19768, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4917, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=496628, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4917, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17264]={ + ["next_chapter"]=17265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4966, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=501594, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=4966, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17265]={ + ["next_chapter"]=17266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19783, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5016, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=506610, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5016, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17266]={ + ["next_chapter"]=17267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19791, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5066, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=511677, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5066, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17267]={ + ["next_chapter"]=17268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=59995, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19798, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5117, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=516793, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5117, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17268]={ + ["next_chapter"]=17269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5168, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=521961, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5168, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17269]={ + ["next_chapter"]=17270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19814, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5220, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=527181, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5220, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=503890, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1726, + ["unit"]=0 + } + }, + [17270]={ + ["next_chapter"]=17271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=60064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5272, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=532453, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5272, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17271]={ + ["next_chapter"]=17272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60088, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5325, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=537777, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5325, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17272]={ + ["next_chapter"]=17273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5378, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=543155, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5378, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17273]={ + ["next_chapter"]=17274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19844, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5432, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=548586, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5432, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17274]={ + ["next_chapter"]=17275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19852, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5486, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=554072, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5486, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17275]={ + ["next_chapter"]=17276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19860, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5541, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=559613, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5541, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17276]={ + ["next_chapter"]=17277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19867, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5596, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=565209, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5596, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17277]={ + ["next_chapter"]=17278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60227, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19875, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5652, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=570861, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5652, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17278]={ + ["next_chapter"]=17279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19883, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5709, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=576570, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5709, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17279]={ + ["next_chapter"]=17280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60273, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5766, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=582336, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5766, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=556608, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1727, + ["unit"]=0 + } + }, + [17280]={ + ["next_chapter"]=17281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=60297, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5823, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=588159, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5823, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17281]={ + ["next_chapter"]=17282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19906, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5882, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=594041, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5882, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17282]={ + ["next_chapter"]=17283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60343, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19913, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5940, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=599981, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=5940, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17283]={ + ["next_chapter"]=17284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19921, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6000, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=605981, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6000, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17284]={ + ["next_chapter"]=17285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19929, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6060, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=612041, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6060, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17285]={ + ["next_chapter"]=17286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60413, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19936, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6120, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=618161, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6120, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17286]={ + ["next_chapter"]=17287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19944, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6182, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=624343, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6182, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17287]={ + ["next_chapter"]=17288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19952, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6243, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=630586, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6243, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17288]={ + ["next_chapter"]=17289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19959, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6306, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=636892, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6306, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17289]={ + ["next_chapter"]=17290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60506, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6369, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=643261, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6369, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=614842, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1728, + ["unit"]=0 + } + }, + [17290]={ + ["next_chapter"]=17291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=60529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19975, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6433, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=649693, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6433, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17291]={ + ["next_chapter"]=17292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19982, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6497, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=656190, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6497, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17292]={ + ["next_chapter"]=17293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60576, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19990, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6562, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=662752, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6562, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17293]={ + ["next_chapter"]=17294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=19998, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6628, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=669380, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6628, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17294]={ + ["next_chapter"]=17295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6694, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=676074, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6694, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17295]={ + ["next_chapter"]=17296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60646, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20013, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6761, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=682834, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6761, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17296]={ + ["next_chapter"]=17297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60669, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20021, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6828, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=689663, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6828, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17297]={ + ["next_chapter"]=17298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60693, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6897, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=696559, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6897, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17298]={ + ["next_chapter"]=17299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20036, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6966, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=703525, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=6966, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17299]={ + ["next_chapter"]=17300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7035, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=710560, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7035, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=679168, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1729, + ["unit"]=0 + } + }, + [17300]={ + ["next_chapter"]=17301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=60763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20052, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7106, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=717666, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7106, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17301]={ + ["next_chapter"]=17302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7177, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=724842, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7177, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17302]={ + ["next_chapter"]=17303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60809, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7248, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=732091, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7248, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17303]={ + ["next_chapter"]=17304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20075, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7321, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=739412, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7321, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17304]={ + ["next_chapter"]=17305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60856, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7394, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=746806, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7394, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17305]={ + ["next_chapter"]=17306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60880, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7468, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=754274, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7468, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17306]={ + ["next_chapter"]=17307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7543, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=761817, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7543, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17307]={ + ["next_chapter"]=17308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20106, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7618, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=769435, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7618, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17308]={ + ["next_chapter"]=17309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7694, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=777129, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7694, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17309]={ + ["next_chapter"]=17310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=60973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20121, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7771, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=784900, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7771, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=750224, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1730, + ["unit"]=0 + } + }, + [17310]={ + ["next_chapter"]=17311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=60997, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7849, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=792749, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7849, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17311]={ + ["next_chapter"]=17312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7927, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=800677, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=7927, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17312]={ + ["next_chapter"]=17313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20144, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8007, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=808684, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8007, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17313]={ + ["next_chapter"]=17314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61067, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20152, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8087, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=816771, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8087, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17314]={ + ["next_chapter"]=17315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20160, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8168, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=824938, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8168, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17315]={ + ["next_chapter"]=17316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61114, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8249, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=833188, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8249, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17316]={ + ["next_chapter"]=17317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61137, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20175, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8332, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=841519, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8332, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17317]={ + ["next_chapter"]=17318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8415, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=849935, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8415, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17318]={ + ["next_chapter"]=17319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8499, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=858434, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8499, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17319]={ + ["next_chapter"]=17320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8584, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=867018, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8584, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=828714, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1731, + ["unit"]=0 + } + }, + [17320]={ + ["next_chapter"]=17321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=61231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8670, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=875689, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8670, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17321]={ + ["next_chapter"]=17322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8757, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=884445, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8757, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17322]={ + ["next_chapter"]=17323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8844, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=893290, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8844, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17323]={ + ["next_chapter"]=17324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61302, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20230, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8933, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=902223, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=8933, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17324]={ + ["next_chapter"]=17325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20237, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9022, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=911245, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9022, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17325]={ + ["next_chapter"]=17326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9112, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=920357, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9112, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17326]={ + ["next_chapter"]=17327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61372, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20253, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9204, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=929561, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9204, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17327]={ + ["next_chapter"]=17328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61396, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9296, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=938857, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9296, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17328]={ + ["next_chapter"]=17329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9389, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=948245, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9389, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17329]={ + ["next_chapter"]=17330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9482, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=957728, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9482, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=915416, + ["unit"]=24 + }, + ["grasp_mastery_reward"]={ + ["value"]=1732, + ["unit"]=0 + } + }, + [17330]={ + ["next_chapter"]=17331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=61466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9577, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=967305, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9577, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17331]={ + ["next_chapter"]=17332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61490, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20292, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9673, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=976978, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9673, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17332]={ + ["next_chapter"]=17333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9770, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=986748, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9770, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17333]={ + ["next_chapter"]=17334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20307, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9867, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=996615, + ["unit"]=24 + }, + ["idle_gold"]={ + ["value"]=9867, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17334]={ + ["next_chapter"]=17335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20315, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9966, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1007, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9966, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17335]={ + ["next_chapter"]=17336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10066, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1017, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10066, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17336]={ + ["next_chapter"]=17337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61608, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20331, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10166, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1027, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10166, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17337]={ + ["next_chapter"]=17338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10268, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1037, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10268, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17338]={ + ["next_chapter"]=17339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10371, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1047, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10371, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17339]={ + ["next_chapter"]=17340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61678, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20354, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10475, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1058, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10475, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1011, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1733, + ["unit"]=0 + } + }, + [17340]={ + ["next_chapter"]=17341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=61702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10579, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1069, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10579, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17341]={ + ["next_chapter"]=17342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61726, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20369, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10685, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1079, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10685, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17342]={ + ["next_chapter"]=17343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20377, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10792, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1090, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10792, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17343]={ + ["next_chapter"]=17344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61773, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10900, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1101, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=10900, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17344]={ + ["next_chapter"]=17345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61796, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20393, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11009, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1112, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11009, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17345]={ + ["next_chapter"]=17346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11119, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1123, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11119, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17346]={ + ["next_chapter"]=17347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20408, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11230, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1134, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11230, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17347]={ + ["next_chapter"]=17348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11342, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1146, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11342, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17348]={ + ["next_chapter"]=17349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20424, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11456, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1157, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11456, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17349]={ + ["next_chapter"]=17350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20432, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11570, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1169, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11570, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1117, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1734, + ["unit"]=0 + } + }, + [17350]={ + ["next_chapter"]=17351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=61938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11686, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1180, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11686, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17351]={ + ["next_chapter"]=17352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61962, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11803, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1192, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11803, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17352]={ + ["next_chapter"]=17353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=61986, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20455, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11921, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1204, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=11921, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17353]={ + ["next_chapter"]=17354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62009, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12040, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1216, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=12040, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17354]={ + ["next_chapter"]=17355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12161, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1228, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=12161, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17355]={ + ["next_chapter"]=17356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12282, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1241, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=12282, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17356]={ + ["next_chapter"]=17357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20487, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12405, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1253, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=12405, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17357]={ + ["next_chapter"]=17358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62104, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12529, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1265, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=12529, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17358]={ + ["next_chapter"]=17359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62128, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20502, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12654, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1278, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=12654, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17359]={ + ["next_chapter"]=17360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12781, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1291, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=12781, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1234, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1735, + ["unit"]=0 + } + }, + [17360]={ + ["next_chapter"]=17361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=62175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12909, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1304, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=12909, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17361]={ + ["next_chapter"]=17362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20526, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13038, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1317, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=13038, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17362]={ + ["next_chapter"]=17363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13168, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1330, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=13168, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17363]={ + ["next_chapter"]=17364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13300, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1343, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=13300, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17364]={ + ["next_chapter"]=17365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20549, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13433, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1357, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=13433, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17365]={ + ["next_chapter"]=17366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62294, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13567, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1370, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=13567, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17366]={ + ["next_chapter"]=17367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62318, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13703, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1384, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=13703, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17367]={ + ["next_chapter"]=17368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20573, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13840, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1398, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=13840, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17368]={ + ["next_chapter"]=17369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20581, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13978, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1412, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=13978, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17369]={ + ["next_chapter"]=17370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14118, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1426, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=14118, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1363, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1736, + ["unit"]=0 + } + }, + [17370]={ + ["next_chapter"]=17371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=62413, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14259, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1440, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=14259, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17371]={ + ["next_chapter"]=17372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62437, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20604, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14402, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1455, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=14402, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17372]={ + ["next_chapter"]=17373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62460, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14546, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1469, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=14546, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17373]={ + ["next_chapter"]=17374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62484, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14691, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1484, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=14691, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17374]={ + ["next_chapter"]=17375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62508, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14838, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1499, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=14838, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17375]={ + ["next_chapter"]=17376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62532, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14987, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1514, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=14987, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17376]={ + ["next_chapter"]=17377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20643, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15136, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1529, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=15136, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17377]={ + ["next_chapter"]=17378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62579, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20651, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15288, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1544, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=15288, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17378]={ + ["next_chapter"]=17379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62603, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15441, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1560, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=15441, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17379]={ + ["next_chapter"]=17380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20667, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15595, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1575, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=15595, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1506, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1737, + ["unit"]=0 + } + }, + [17380]={ + ["next_chapter"]=17381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=62651, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20675, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15751, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1591, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=15751, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17381]={ + ["next_chapter"]=17382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20683, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15909, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1607, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=15909, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17382]={ + ["next_chapter"]=17383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62699, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20691, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16068, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1623, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=16068, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17383]={ + ["next_chapter"]=17384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62722, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16228, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1639, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=16228, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17384]={ + ["next_chapter"]=17385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16391, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1655, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=16391, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17385]={ + ["next_chapter"]=17386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16555, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1672, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=16555, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17386]={ + ["next_chapter"]=17387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16720, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1689, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=16720, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17387]={ + ["next_chapter"]=17388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62818, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16887, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1706, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=16887, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17388]={ + ["next_chapter"]=17389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20738, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17056, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1723, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=17056, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17389]={ + ["next_chapter"]=17390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20746, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17227, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1740, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=17227, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1663, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1738, + ["unit"]=0 + } + }, + [17390]={ + ["next_chapter"]=17391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=62890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20754, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17399, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1757, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=17399, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17391]={ + ["next_chapter"]=17392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20761, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17573, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1775, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=17573, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17392]={ + ["next_chapter"]=17393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17749, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1793, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=17749, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17393]={ + ["next_chapter"]=17394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20777, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17926, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1811, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=17926, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17394]={ + ["next_chapter"]=17395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=62985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18105, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1829, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=18105, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17395]={ + ["next_chapter"]=17396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63009, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18287, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1847, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=18287, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17396]={ + ["next_chapter"]=17397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20801, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18469, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1865, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=18469, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17397]={ + ["next_chapter"]=17398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20809, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18654, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1884, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=18654, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17398]={ + ["next_chapter"]=17399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63081, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18841, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1903, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=18841, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17399]={ + ["next_chapter"]=17400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19029, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1922, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=19029, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1837, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1739, + ["unit"]=0 + } + }, + [17400]={ + ["next_chapter"]=17401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=63129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19219, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1941, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=19219, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17401]={ + ["next_chapter"]=17402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63153, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20840, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19412, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1961, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=19412, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17402]={ + ["next_chapter"]=17403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19606, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1980, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=19606, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17403]={ + ["next_chapter"]=17404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63201, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19802, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2000, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=19802, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17404]={ + ["next_chapter"]=17405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20864, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20000, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2020, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=20000, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17405]={ + ["next_chapter"]=17406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63249, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20872, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20200, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2040, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=20200, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17406]={ + ["next_chapter"]=17407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63273, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20402, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2061, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=20402, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17407]={ + ["next_chapter"]=17408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63297, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20606, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2081, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=20606, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17408]={ + ["next_chapter"]=17409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20896, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20812, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2102, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=20812, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17409]={ + ["next_chapter"]=17410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20904, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21020, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2123, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=21020, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2029, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1740, + ["unit"]=0 + } + }, + [17410]={ + ["next_chapter"]=17411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=63369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21230, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2144, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=21230, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17411]={ + ["next_chapter"]=17412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63393, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21442, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2166, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=21442, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17412]={ + ["next_chapter"]=17413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21657, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2187, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=21657, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17413]={ + ["next_chapter"]=17414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63441, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20936, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21873, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2209, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=21873, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17414]={ + ["next_chapter"]=17415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63465, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22092, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2231, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=22092, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17415]={ + ["next_chapter"]=17416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20951, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22313, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2254, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=22313, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17416]={ + ["next_chapter"]=17417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20959, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22536, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2276, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=22536, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17417]={ + ["next_chapter"]=17418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22762, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2299, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=22762, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17418]={ + ["next_chapter"]=17419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63561, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20975, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22989, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2322, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=22989, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17419]={ + ["next_chapter"]=17420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20983, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23219, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2345, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=23219, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2242, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1741, + ["unit"]=0 + } + }, + [17420]={ + ["next_chapter"]=17421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=63610, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23451, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2369, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=23451, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17421]={ + ["next_chapter"]=17422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=20999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23686, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2392, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=23686, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17422]={ + ["next_chapter"]=17423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23923, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2416, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=23923, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17423]={ + ["next_chapter"]=17424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63682, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21015, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24162, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2440, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=24162, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17424]={ + ["next_chapter"]=17425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63706, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21023, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24403, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2465, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=24403, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17425]={ + ["next_chapter"]=17426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21031, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24647, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2489, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=24647, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17426]={ + ["next_chapter"]=17427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21039, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24894, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2514, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=24894, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17427]={ + ["next_chapter"]=17428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21047, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25143, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2539, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=25143, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17428]={ + ["next_chapter"]=17429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63802, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21055, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25394, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2565, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=25394, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17429]={ + ["next_chapter"]=17430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25648, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2590, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=25648, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2476, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1742, + ["unit"]=0 + } + }, + [17430]={ + ["next_chapter"]=17431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=63851, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25905, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2616, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=25905, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17431]={ + ["next_chapter"]=17432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63875, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21079, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26164, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2643, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=26164, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17432]={ + ["next_chapter"]=17433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26425, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2669, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=26425, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17433]={ + ["next_chapter"]=17434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21095, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26690, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2696, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=26690, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17434]={ + ["next_chapter"]=17435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26957, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2723, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=26957, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17435]={ + ["next_chapter"]=17436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27226, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2750, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=27226, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17436]={ + ["next_chapter"]=17437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=63996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27498, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2777, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=27498, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17437]={ + ["next_chapter"]=17438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27773, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2805, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=27773, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17438]={ + ["next_chapter"]=17439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21135, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28051, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2833, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=28051, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17439]={ + ["next_chapter"]=17440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64068, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21143, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28332, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2861, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=28332, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2735, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1743, + ["unit"]=0 + } + }, + [17440]={ + ["next_chapter"]=17441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=64092, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21151, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28615, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2890, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=28615, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17441]={ + ["next_chapter"]=17442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21159, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28901, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2919, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=28901, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17442]={ + ["next_chapter"]=17443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21166, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29190, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2948, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=29190, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17443]={ + ["next_chapter"]=17444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21174, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29482, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2978, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=29482, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17444]={ + ["next_chapter"]=17445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21182, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29777, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3007, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=29777, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17445]={ + ["next_chapter"]=17446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64214, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30075, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3038, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=30075, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17446]={ + ["next_chapter"]=17447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21198, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30375, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3068, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=30375, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17447]={ + ["next_chapter"]=17448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30679, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3099, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=30679, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17448]={ + ["next_chapter"]=17449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30986, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3130, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=30986, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17449]={ + ["next_chapter"]=17450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31296, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3161, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=31296, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3021, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1744, + ["unit"]=0 + } + }, + [17450]={ + ["next_chapter"]=17451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=64335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31609, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3192, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=31609, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17451]={ + ["next_chapter"]=17452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21239, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31925, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3224, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=31925, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17452]={ + ["next_chapter"]=17453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32244, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3257, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=32244, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17453]={ + ["next_chapter"]=17454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64408, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21255, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32566, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3289, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=32566, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17454]={ + ["next_chapter"]=17455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21263, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32892, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3322, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=32892, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17455]={ + ["next_chapter"]=17456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21271, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33221, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3355, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=33221, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17456]={ + ["next_chapter"]=17457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64481, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33553, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3389, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=33553, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17457]={ + ["next_chapter"]=17458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21287, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33889, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3423, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=33889, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17458]={ + ["next_chapter"]=17459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34228, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3457, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=34228, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17459]={ + ["next_chapter"]=17460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64554, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21303, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34570, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3492, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=34570, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3337, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1745, + ["unit"]=0 + } + }, + [17460]={ + ["next_chapter"]=17461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=64578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34916, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3526, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=34916, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17461]={ + ["next_chapter"]=17462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21319, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35265, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3562, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=35265, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17462]={ + ["next_chapter"]=17463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21327, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35617, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3597, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=35617, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17463]={ + ["next_chapter"]=17464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64651, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35974, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3633, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=35974, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17464]={ + ["next_chapter"]=17465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36333, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3670, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=36333, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17465]={ + ["next_chapter"]=17466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36697, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3706, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=36697, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17466]={ + ["next_chapter"]=17467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37064, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3743, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=37064, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17467]={ + ["next_chapter"]=17468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37434, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3781, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=37434, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17468]={ + ["next_chapter"]=17469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64773, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21375, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37809, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3819, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=37809, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17469]={ + ["next_chapter"]=17470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64797, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21383, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38187, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3857, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=38187, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=3686, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1746, + ["unit"]=0 + } + }, + [17470]={ + ["next_chapter"]=17471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=64821, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21391, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38569, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3895, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=38569, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17471]={ + ["next_chapter"]=17472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64846, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38954, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3934, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=38954, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17472]={ + ["next_chapter"]=17473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64870, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21407, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39344, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3974, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=39344, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17473]={ + ["next_chapter"]=17474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21415, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39737, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4013, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=39737, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17474]={ + ["next_chapter"]=17475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40135, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4054, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=40135, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17475]={ + ["next_chapter"]=17476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64944, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21431, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40536, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4094, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=40536, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17476]={ + ["next_chapter"]=17477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64968, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40941, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4135, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=40941, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17477]={ + ["next_chapter"]=17478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=64992, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41351, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4176, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=41351, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17478]={ + ["next_chapter"]=17479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21456, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41764, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4218, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=41764, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17479]={ + ["next_chapter"]=17480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42182, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4260, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=42182, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4072, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1747, + ["unit"]=0 + } + }, + [17480]={ + ["next_chapter"]=17481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=65066, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42604, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4303, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=42604, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17481]={ + ["next_chapter"]=17482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21480, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43030, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4346, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=43030, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17482]={ + ["next_chapter"]=17483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43460, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4389, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=43460, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17483]={ + ["next_chapter"]=17484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21496, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43895, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4433, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=43895, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17484]={ + ["next_chapter"]=17485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65164, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21504, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44334, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4478, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=44334, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17485]={ + ["next_chapter"]=17486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21512, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44777, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4522, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=44777, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17486]={ + ["next_chapter"]=17487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45225, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4568, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=45225, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17487]={ + ["next_chapter"]=17488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45677, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4613, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=45677, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17488]={ + ["next_chapter"]=17489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21536, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46134, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4660, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=46134, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17489]={ + ["next_chapter"]=17490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46595, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4706, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=46595, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4498, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1748, + ["unit"]=0 + } + }, + [17490]={ + ["next_chapter"]=17491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=65311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21552, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47061, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4753, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=47061, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17491]={ + ["next_chapter"]=17492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21561, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47532, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4801, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=47532, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17492]={ + ["next_chapter"]=17493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21569, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48007, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4849, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=48007, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17493]={ + ["next_chapter"]=17494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65384, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48487, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4897, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=48487, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17494]={ + ["next_chapter"]=17495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48972, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4946, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=48972, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17495]={ + ["next_chapter"]=17496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21593, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49462, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4996, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=49462, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17496]={ + ["next_chapter"]=17497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65458, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49956, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5046, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=49956, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17497]={ + ["next_chapter"]=17498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65482, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21609, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50456, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5096, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=50456, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17498]={ + ["next_chapter"]=17499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50960, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5147, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=50960, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17499]={ + ["next_chapter"]=17500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65531, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51470, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5198, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=51470, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=4969, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1749, + ["unit"]=0 + } + }, + [17500]={ + ["next_chapter"]=17501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=65556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51985, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5250, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=51985, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17501]={ + ["next_chapter"]=17502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65581, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52505, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5303, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=52505, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17502]={ + ["next_chapter"]=17503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21650, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53030, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5356, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=53030, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17503]={ + ["next_chapter"]=17504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53560, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5410, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=53560, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17504]={ + ["next_chapter"]=17505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54095, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5464, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=54095, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17505]={ + ["next_chapter"]=17506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54636, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5518, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=54636, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17506]={ + ["next_chapter"]=17507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65704, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55183, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5573, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=55183, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17507]={ + ["next_chapter"]=17508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65728, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55735, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5629, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=55735, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17508]={ + ["next_chapter"]=17509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65753, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56292, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5685, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=56292, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17509]={ + ["next_chapter"]=17510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56855, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5742, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=56855, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=5489, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1750, + ["unit"]=0 + } + }, + [17510]={ + ["next_chapter"]=17511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=65802, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21715, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57423, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5800, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=57423, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17511]={ + ["next_chapter"]=17512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21723, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57998, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5858, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=57998, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17512]={ + ["next_chapter"]=17513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65851, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21731, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58578, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5916, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=58578, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17513]={ + ["next_chapter"]=17514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65876, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59163, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5976, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=59163, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17514]={ + ["next_chapter"]=17515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65901, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59755, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6035, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=59755, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17515]={ + ["next_chapter"]=17516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60353, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6096, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=60353, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17516]={ + ["next_chapter"]=17517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60956, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6157, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=60956, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17517]={ + ["next_chapter"]=17518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21772, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61566, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6218, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=61566, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17518]={ + ["next_chapter"]=17519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=65999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21780, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62181, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6280, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=62181, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17519]={ + ["next_chapter"]=17520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21788, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62803, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6343, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=62803, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6063, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1751, + ["unit"]=0 + } + }, + [17520]={ + ["next_chapter"]=17521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=66049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63431, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6407, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=63431, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17521]={ + ["next_chapter"]=17522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21804, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64066, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6471, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=64066, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17522]={ + ["next_chapter"]=17523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64706, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6535, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=64706, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17523]={ + ["next_chapter"]=17524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65353, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6601, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=65353, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17524]={ + ["next_chapter"]=17525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66007, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6667, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=66007, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17525]={ + ["next_chapter"]=17526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66172, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66667, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6733, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=66667, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17526]={ + ["next_chapter"]=17527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67334, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6801, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=67334, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17527]={ + ["next_chapter"]=17528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66222, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21853, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68007, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6869, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=68007, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17528]={ + ["next_chapter"]=17529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66247, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68687, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6937, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=68687, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17529]={ + ["next_chapter"]=17530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21870, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69374, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7007, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=69374, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=6697, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1752, + ["unit"]=0 + } + }, + [17530]={ + ["next_chapter"]=17531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=66296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70068, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7077, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=70068, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17531]={ + ["next_chapter"]=17532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21886, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70768, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7148, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=70768, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17532]={ + ["next_chapter"]=17533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66346, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21894, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71476, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7219, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=71476, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17533]={ + ["next_chapter"]=17534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21902, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72191, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7291, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=72191, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17534]={ + ["next_chapter"]=17535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66395, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21910, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72913, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7364, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=72913, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17535]={ + ["next_chapter"]=17536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66420, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73642, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7438, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=73642, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17536]={ + ["next_chapter"]=17537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21927, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74378, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7512, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=74378, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17537]={ + ["next_chapter"]=17538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66470, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75122, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7587, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=75122, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17538]={ + ["next_chapter"]=17539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66494, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75873, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7663, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=75873, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17539]={ + ["next_chapter"]=17540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21951, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76632, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7740, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=76632, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=7398, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1753, + ["unit"]=0 + } + }, + [17540]={ + ["next_chapter"]=17541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=66544, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21960, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77398, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7817, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=77398, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17541]={ + ["next_chapter"]=17542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21968, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78172, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7895, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=78172, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17542]={ + ["next_chapter"]=17543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66594, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78954, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7974, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=78954, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17543]={ + ["next_chapter"]=17544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66618, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79743, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8054, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=79743, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17544]={ + ["next_chapter"]=17545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=21992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80541, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8135, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=80541, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17545]={ + ["next_chapter"]=17546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22000, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81346, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8216, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=81346, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17546]={ + ["next_chapter"]=17547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66693, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22009, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82160, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8298, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=82160, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17547]={ + ["next_chapter"]=17548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66718, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82981, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8381, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=82981, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17548]={ + ["next_chapter"]=17549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83811, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8465, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=83811, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17549]={ + ["next_chapter"]=17550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84649, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8550, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=84649, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=8172, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1754, + ["unit"]=0 + } + }, + [17550]={ + ["next_chapter"]=17551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=66792, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85496, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8635, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=85496, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17551]={ + ["next_chapter"]=17552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66817, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22050, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86351, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8721, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=86351, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17552]={ + ["next_chapter"]=17553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22058, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87214, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8809, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=87214, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17553]={ + ["next_chapter"]=17554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22066, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88086, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8897, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=88086, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17554]={ + ["next_chapter"]=17555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66892, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88967, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8986, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=88967, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17555]={ + ["next_chapter"]=17556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66917, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89857, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9076, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=89857, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17556]={ + ["next_chapter"]=17557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66942, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22091, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90755, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9166, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=90755, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17557]={ + ["next_chapter"]=17558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66967, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91663, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9258, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=91663, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17558]={ + ["next_chapter"]=17559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=66992, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92580, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9351, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=92580, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17559]={ + ["next_chapter"]=17560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22116, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93505, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9444, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=93505, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9027, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1755, + ["unit"]=0 + } + }, + [17560]={ + ["next_chapter"]=17561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=67042, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94440, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9538, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=94440, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17561]={ + ["next_chapter"]=17562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67067, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95385, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9634, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=95385, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17562]={ + ["next_chapter"]=17563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67092, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96339, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9730, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=96339, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17563]={ + ["next_chapter"]=17564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22148, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97302, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9828, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=97302, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17564]={ + ["next_chapter"]=17565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98275, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9926, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=98275, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17565]={ + ["next_chapter"]=17566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67166, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99258, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10025, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=99258, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17566]={ + ["next_chapter"]=17567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67191, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22173, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100250, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10125, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=100250, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17567]={ + ["next_chapter"]=17568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101253, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10227, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=101253, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17568]={ + ["next_chapter"]=17569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67241, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102265, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10329, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=102265, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17569]={ + ["next_chapter"]=17570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22198, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103288, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10432, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=103288, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=9971, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1756, + ["unit"]=0 + } + }, + [17570]={ + ["next_chapter"]=17571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=67291, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104321, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10536, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=104321, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17571]={ + ["next_chapter"]=17572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105364, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10642, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=105364, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17572]={ + ["next_chapter"]=17573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106418, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10748, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=106418, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17573]={ + ["next_chapter"]=17574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107482, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10856, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=107482, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17574]={ + ["next_chapter"]=17575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67391, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22239, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108557, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10964, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=108557, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17575]={ + ["next_chapter"]=17576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109642, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11074, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=109642, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17576]={ + ["next_chapter"]=17577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67442, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110739, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11185, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=110739, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17577]={ + ["next_chapter"]=17578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22264, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111846, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11296, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=111846, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17578]={ + ["next_chapter"]=17579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67492, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112965, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11409, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=112965, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17579]={ + ["next_chapter"]=17580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114094, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11524, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=114094, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=11014, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1757, + ["unit"]=0 + } + }, + [17580]={ + ["next_chapter"]=17581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=67542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22289, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115235, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11639, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=115235, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17581]={ + ["next_chapter"]=17582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116388, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11755, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=116388, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17582]={ + ["next_chapter"]=17583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67592, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22305, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117552, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11873, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=117552, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17583]={ + ["next_chapter"]=17584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67617, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118727, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11991, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=118727, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17584]={ + ["next_chapter"]=17585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67642, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119914, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12111, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=119914, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17585]={ + ["next_chapter"]=17586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67667, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121113, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12232, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=121113, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17586]={ + ["next_chapter"]=17587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122325, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12355, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=122325, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17587]={ + ["next_chapter"]=17588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22347, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123548, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12478, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=123548, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17588]={ + ["next_chapter"]=17589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22355, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=124783, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12603, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=124783, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17589]={ + ["next_chapter"]=17590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22363, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126031, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12729, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=126031, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=12167, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1758, + ["unit"]=0 + } + }, + [17590]={ + ["next_chapter"]=17591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=67793, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22372, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127291, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12856, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=127291, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17591]={ + ["next_chapter"]=17592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67818, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22380, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=128564, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12985, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=128564, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17592]={ + ["next_chapter"]=17593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=129850, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13115, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=129850, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17593]={ + ["next_chapter"]=17594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22397, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131149, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13246, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=131149, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17594]={ + ["next_chapter"]=17595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=132460, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13378, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=132460, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17595]={ + ["next_chapter"]=17596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22413, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=133785, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13512, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=133785, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17596]={ + ["next_chapter"]=17597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67944, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=135122, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13647, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=135122, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17597]={ + ["next_chapter"]=17598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=136474, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13784, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=136474, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17598]={ + ["next_chapter"]=17599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=67994, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22438, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=137838, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13922, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=137838, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17599]={ + ["next_chapter"]=17600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22446, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=139217, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14061, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=139217, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=13440, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1759, + ["unit"]=0 + } + }, + [17600]={ + ["next_chapter"]=17601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=68044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22455, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=140609, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14202, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=140609, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17601]={ + ["next_chapter"]=17602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142015, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14344, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=142015, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17602]={ + ["next_chapter"]=17603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68095, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=143435, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14487, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=143435, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17603]={ + ["next_chapter"]=17604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68120, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22480, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=144870, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14632, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=144870, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17604]={ + ["next_chapter"]=17605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=146318, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14778, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=146318, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17605]={ + ["next_chapter"]=17606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68170, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22496, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=147781, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14926, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=147781, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17606]={ + ["next_chapter"]=17607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68196, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22505, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=149259, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15075, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=149259, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17607]={ + ["next_chapter"]=17608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22513, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=150752, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15226, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=150752, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17608]={ + ["next_chapter"]=17609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22521, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=152259, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15378, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=152259, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17609]={ + ["next_chapter"]=17610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22530, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=153782, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15532, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=153782, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=14846, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + [17610]={ + ["next_chapter"]=17611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=68297, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22538, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=155320, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15687, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=155320, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17611]={ + ["next_chapter"]=17612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68322, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22546, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=156873, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15844, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=156873, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17612]={ + ["next_chapter"]=17613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22555, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=158442, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16003, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=158442, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17613]={ + ["next_chapter"]=17614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68372, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22563, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=160026, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16163, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=160026, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17614]={ + ["next_chapter"]=17615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68398, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=161626, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16324, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=161626, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17615]={ + ["next_chapter"]=17616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68423, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=163243, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16488, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=163243, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17616]={ + ["next_chapter"]=17617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68448, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=164875, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16652, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=164875, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17617]={ + ["next_chapter"]=17618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=166524, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16819, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=166524, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17618]={ + ["next_chapter"]=17619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68499, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22605, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=168189, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16987, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=168189, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17619]={ + ["next_chapter"]=17620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68524, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22613, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=169871, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17157, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=169871, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=16399, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1761, + ["unit"]=0 + } + }, + [17620]={ + ["next_chapter"]=17621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=68550, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22621, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=171570, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17329, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=171570, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17621]={ + ["next_chapter"]=17622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22630, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=173285, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17502, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=173285, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17622]={ + ["next_chapter"]=17623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68600, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22638, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=175018, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17677, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=175018, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17623]={ + ["next_chapter"]=17624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68626, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=176768, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17854, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=176768, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17624]={ + ["next_chapter"]=17625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68651, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=178536, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18032, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=178536, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17625]={ + ["next_chapter"]=17626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68676, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22663, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=180321, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18212, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=180321, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17626]={ + ["next_chapter"]=17627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22672, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=182125, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18395, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=182125, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17627]={ + ["next_chapter"]=17628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22680, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=183946, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18579, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=183946, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17628]={ + ["next_chapter"]=17629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22688, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=185785, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18764, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=185785, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17629]={ + ["next_chapter"]=17630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22697, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=187643, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18952, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=187643, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=18115, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1762, + ["unit"]=0 + } + }, + [17630]={ + ["next_chapter"]=17631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=68803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22705, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=189520, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19141, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=189520, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17631]={ + ["next_chapter"]=17632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68828, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=191415, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19333, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=191415, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17632]={ + ["next_chapter"]=17633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68854, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=193329, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19526, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=193329, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17633]={ + ["next_chapter"]=17634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=195262, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19721, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=195262, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17634]={ + ["next_chapter"]=17635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=197215, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19919, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=197215, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17635]={ + ["next_chapter"]=17636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=199187, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20118, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=199187, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17636]={ + ["next_chapter"]=17637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=201179, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20319, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=201179, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17637]={ + ["next_chapter"]=17638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=68981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=203191, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20522, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=203191, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17638]={ + ["next_chapter"]=17639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22772, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=205223, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20727, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=205223, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17639]={ + ["next_chapter"]=17640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22780, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=207275, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20935, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=207275, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=20010, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1763, + ["unit"]=0 + } + }, + [17640]={ + ["next_chapter"]=17641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=69057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22789, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=209348, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21144, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=209348, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17641]={ + ["next_chapter"]=17642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22797, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=211441, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21356, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=211441, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17642]={ + ["next_chapter"]=17643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=213555, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21569, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=213555, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17643]={ + ["next_chapter"]=17644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22814, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=215691, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21785, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=215691, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17644]={ + ["next_chapter"]=17645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69159, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=217848, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22003, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=217848, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17645]={ + ["next_chapter"]=17646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22831, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=220026, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22223, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=220026, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17646]={ + ["next_chapter"]=17647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22839, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=222227, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22445, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=222227, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17647]={ + ["next_chapter"]=17648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=224449, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22669, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=224449, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17648]={ + ["next_chapter"]=17649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=226693, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22896, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=226693, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17649]={ + ["next_chapter"]=17650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=228960, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23125, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=228960, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=22103, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1764, + ["unit"]=0 + } + }, + [17650]={ + ["next_chapter"]=17651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=69312, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=231250, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23356, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=231250, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17651]={ + ["next_chapter"]=17652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22881, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=233562, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23590, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=233562, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17652]={ + ["next_chapter"]=17653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=235898, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23826, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=235898, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17653]={ + ["next_chapter"]=17654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69388, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=238257, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24064, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=238257, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17654]={ + ["next_chapter"]=17655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22907, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=240640, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24305, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=240640, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17655]={ + ["next_chapter"]=17656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69440, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=243046, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24548, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=243046, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17656]={ + ["next_chapter"]=17657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69465, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22923, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=245476, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24793, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=245476, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17657]={ + ["next_chapter"]=17658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22932, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=247931, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25041, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=247931, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17658]={ + ["next_chapter"]=17659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69516, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22940, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=250411, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25291, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=250411, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17659]={ + ["next_chapter"]=17660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=252915, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25544, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=252915, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=24416, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1765, + ["unit"]=0 + } + }, + [17660]={ + ["next_chapter"]=17661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=69567, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22957, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=255444, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25800, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=255444, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17661]={ + ["next_chapter"]=17662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=257998, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26058, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=257998, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17662]={ + ["next_chapter"]=17663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69618, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=260578, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26318, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=260578, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17663]={ + ["next_chapter"]=17664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69644, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22983, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=263184, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26582, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=263184, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17664]={ + ["next_chapter"]=17665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22991, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=265816, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26847, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=265816, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17665]={ + ["next_chapter"]=17666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=22999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=268474, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27116, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=268474, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17666]={ + ["next_chapter"]=17667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69721, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23008, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=271159, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27387, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=271159, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17667]={ + ["next_chapter"]=17668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=273870, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27661, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=273870, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17668]={ + ["next_chapter"]=17669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69772, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=276609, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27938, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=276609, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17669]={ + ["next_chapter"]=17670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=279375, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28217, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=279375, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=26970, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1766, + ["unit"]=0 + } + }, + [17670]={ + ["next_chapter"]=17671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=69823, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=282169, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28499, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=282169, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17671]={ + ["next_chapter"]=17672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23050, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=284991, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28784, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=284991, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17672]={ + ["next_chapter"]=17673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69875, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=287840, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29072, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=287840, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17673]={ + ["next_chapter"]=17674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=290719, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29363, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=290719, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17674]={ + ["next_chapter"]=17675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69926, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23076, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=293626, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29656, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=293626, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17675]={ + ["next_chapter"]=17676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=296562, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29953, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=296562, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17676]={ + ["next_chapter"]=17677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=69977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23092, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=299528, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30252, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=299528, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17677]={ + ["next_chapter"]=17678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70003, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=302523, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30555, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=302523, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17678]={ + ["next_chapter"]=17679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70029, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23109, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=305548, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30860, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=305548, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17679]={ + ["next_chapter"]=17680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23118, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=308604, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31169, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=308604, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=29792, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1767, + ["unit"]=0 + } + }, + [17680]={ + ["next_chapter"]=17681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=70080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=311690, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31481, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=311690, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17681]={ + ["next_chapter"]=17682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70106, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23135, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=314807, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31795, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=314807, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17682]={ + ["next_chapter"]=17683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23143, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=317955, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32113, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=317955, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17683]={ + ["next_chapter"]=17684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23152, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=321135, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32435, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=321135, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17684]={ + ["next_chapter"]=17685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23160, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=324346, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32759, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=324346, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17685]={ + ["next_chapter"]=17686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23169, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=327589, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33087, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=327589, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17686]={ + ["next_chapter"]=17687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=330865, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33417, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=330865, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17687]={ + ["next_chapter"]=17688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=334174, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33752, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=334174, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17688]={ + ["next_chapter"]=17689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23194, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=337516, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34089, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=337516, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17689]={ + ["next_chapter"]=17690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23203, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=340891, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34430, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=340891, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=32909, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1768, + ["unit"]=0 + } + }, + [17690]={ + ["next_chapter"]=17691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=70337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=344300, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34774, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=344300, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17691]={ + ["next_chapter"]=17692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=347743, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35122, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=347743, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17692]={ + ["next_chapter"]=17693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=351220, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35473, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=351220, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17693]={ + ["next_chapter"]=17694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23237, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=354732, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35828, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=354732, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17694]={ + ["next_chapter"]=17695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70440, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=358280, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36186, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=358280, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17695]={ + ["next_chapter"]=17696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=361862, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36548, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=361862, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17696]={ + ["next_chapter"]=17697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70492, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23262, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=365481, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36914, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=365481, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17697]={ + ["next_chapter"]=17698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70518, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23271, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=369136, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37283, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=369136, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17698]={ + ["next_chapter"]=17699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=372827, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37656, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=372827, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17699]={ + ["next_chapter"]=17700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70569, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=376555, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38032, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=376555, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=36352, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1769, + ["unit"]=0 + } + }, + [17700]={ + ["next_chapter"]=17701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=70595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23296, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=380321, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38412, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=380321, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17701]={ + ["next_chapter"]=17702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70621, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23305, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=384124, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38797, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=384124, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17702]={ + ["next_chapter"]=17703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23313, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=387965, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39185, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=387965, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17703]={ + ["next_chapter"]=17704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=391845, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39576, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=391845, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17704]={ + ["next_chapter"]=17705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=395764, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39972, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=395764, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17705]={ + ["next_chapter"]=17706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=399721, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40372, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=399721, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17706]={ + ["next_chapter"]=17707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70750, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23348, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=403718, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40776, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=403718, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17707]={ + ["next_chapter"]=17708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=407756, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41183, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=407756, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17708]={ + ["next_chapter"]=17709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70802, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=411833, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41595, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=411833, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17709]={ + ["next_chapter"]=17710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70828, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=415952, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42011, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=415952, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=40155, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1770, + ["unit"]=0 + } + }, + [17710]={ + ["next_chapter"]=17711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=70854, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=420111, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42431, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=420111, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17711]={ + ["next_chapter"]=17712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70880, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23390, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=424312, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42856, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=424312, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17712]={ + ["next_chapter"]=17713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=428555, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43284, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=428555, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17713]={ + ["next_chapter"]=17714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70931, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23407, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=432841, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43717, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=432841, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17714]={ + ["next_chapter"]=17715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70957, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=437169, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44154, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=437169, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17715]={ + ["next_chapter"]=17716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=70983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23424, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=441541, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44596, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=441541, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17716]={ + ["next_chapter"]=17717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71009, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=445956, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45042, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=445956, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17717]={ + ["next_chapter"]=17718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71035, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23442, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=450416, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45492, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=450416, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17718]={ + ["next_chapter"]=17719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71061, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=454920, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45947, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=454920, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17719]={ + ["next_chapter"]=17720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=459469, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46406, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=459469, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=44356, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1771, + ["unit"]=0 + } + }, + [17720]={ + ["next_chapter"]=17721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=71113, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23467, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=464064, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46870, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=464064, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17721]={ + ["next_chapter"]=17722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23476, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=468705, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47339, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=468705, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17722]={ + ["next_chapter"]=17723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23484, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=473392, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47813, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=473392, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17723]={ + ["next_chapter"]=17724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71191, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=478126, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48291, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=478126, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17724]={ + ["next_chapter"]=17725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=482907, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48774, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=482907, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17725]={ + ["next_chapter"]=17726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=487736, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49261, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=487736, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17726]={ + ["next_chapter"]=17727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23519, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=492613, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49754, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=492613, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17727]={ + ["next_chapter"]=17728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=497539, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50251, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=497539, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17728]={ + ["next_chapter"]=17729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71321, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23536, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=502515, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50754, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=502515, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17729]={ + ["next_chapter"]=17730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=507540, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51262, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=507540, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=48997, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1772, + ["unit"]=0 + } + }, + [17730]={ + ["next_chapter"]=17731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=71373, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23553, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=512615, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51774, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=512615, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17731]={ + ["next_chapter"]=17732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23562, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=517741, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52292, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=517741, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17732]={ + ["next_chapter"]=17733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23570, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=522919, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52815, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=522919, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17733]={ + ["next_chapter"]=17734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71451, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23579, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=528148, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53343, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=528148, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17734]={ + ["next_chapter"]=17735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71477, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23587, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=533430, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53876, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=533430, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17735]={ + ["next_chapter"]=17736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=538764, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54415, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=538764, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17736]={ + ["next_chapter"]=17737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23604, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=544151, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54959, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=544151, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17737]={ + ["next_chapter"]=17738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71555, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23613, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=549593, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55509, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=549593, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17738]={ + ["next_chapter"]=17739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71581, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=555089, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56064, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=555089, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17739]={ + ["next_chapter"]=17740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23630, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=560640, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56625, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=560640, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=54123, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1773, + ["unit"]=0 + } + }, + [17740]={ + ["next_chapter"]=17741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=71633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23639, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=566246, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57191, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=566246, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17741]={ + ["next_chapter"]=17742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23647, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=571909, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57763, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=571909, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17742]={ + ["next_chapter"]=17743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71685, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=577628, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58340, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=577628, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17743]={ + ["next_chapter"]=17744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=583404, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58924, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=583404, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17744]={ + ["next_chapter"]=17745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23673, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=589238, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59513, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=589238, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17745]={ + ["next_chapter"]=17746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71763, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=595130, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60108, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=595130, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17746]={ + ["next_chapter"]=17747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23691, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=601082, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60709, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=601082, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17747]={ + ["next_chapter"]=17748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71816, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=607093, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61316, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=607093, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17748]={ + ["next_chapter"]=17749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23708, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=613163, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61930, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=613163, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17749]={ + ["next_chapter"]=17750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=619295, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62549, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=619295, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=59785, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1774, + ["unit"]=0 + } + }, + [17750]={ + ["next_chapter"]=17751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=71894, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23725, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=625488, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63174, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=625488, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17751]={ + ["next_chapter"]=17752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=631743, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63806, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=631743, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17752]={ + ["next_chapter"]=17753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71946, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23742, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=638060, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64444, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=638060, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17753]={ + ["next_chapter"]=17754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=644441, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65089, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=644441, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17754]={ + ["next_chapter"]=17755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=71999, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23760, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=650885, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65739, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=650885, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17755]={ + ["next_chapter"]=17756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72025, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23768, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=657394, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66397, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=657394, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17756]={ + ["next_chapter"]=17757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23777, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=663968, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67061, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=663968, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17757]={ + ["next_chapter"]=17758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=670608, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67731, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=670608, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17758]={ + ["next_chapter"]=17759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23794, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=677314, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68409, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=677314, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17759]={ + ["next_chapter"]=17760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23803, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=684087, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69093, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=684087, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=66040, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1775, + ["unit"]=0 + } + }, + [17760]={ + ["next_chapter"]=17761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=72156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=690928, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69784, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=690928, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17761]={ + ["next_chapter"]=17762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=697837, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70482, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=697837, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17762]={ + ["next_chapter"]=17763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=704816, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71186, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=704816, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17763]={ + ["next_chapter"]=17764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=711864, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71898, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=711864, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17764]={ + ["next_chapter"]=17765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=718982, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72617, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=718982, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17765]={ + ["next_chapter"]=17766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72287, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=726172, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73343, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=726172, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17766]={ + ["next_chapter"]=17767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72313, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23863, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=733434, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74077, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=733434, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17767]={ + ["next_chapter"]=17768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23872, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=740768, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74818, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=740768, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17768]={ + ["next_chapter"]=17769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23881, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=748176, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75566, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=748176, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17769]={ + ["next_chapter"]=17770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23889, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=755658, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76321, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=755658, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=72950, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1776, + ["unit"]=0 + } + }, + [17770]={ + ["next_chapter"]=17771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=72418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=763214, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77085, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=763214, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17771]={ + ["next_chapter"]=17772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72444, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23907, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=770846, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77855, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=770846, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17772]={ + ["next_chapter"]=17773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72471, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=778555, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78634, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=778555, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17773]={ + ["next_chapter"]=17774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23924, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=786340, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79420, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=786340, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17774]={ + ["next_chapter"]=17775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=794204, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80215, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=794204, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17775]={ + ["next_chapter"]=17776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=802146, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81017, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=802146, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17776]={ + ["next_chapter"]=17777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72576, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23950, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=810167, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81827, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=810167, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17777]={ + ["next_chapter"]=17778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23959, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=818269, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82645, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=818269, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17778]={ + ["next_chapter"]=17779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72628, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=826452, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83472, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=826452, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17779]={ + ["next_chapter"]=17780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=834716, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84306, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=834716, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=80582, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1777, + ["unit"]=0 + } + }, + [17780]={ + ["next_chapter"]=17781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=72681, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=843063, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85149, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=843063, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17781]={ + ["next_chapter"]=17782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=23993, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=851494, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86001, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=851494, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17782]={ + ["next_chapter"]=17783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72734, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=860009, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86861, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=860009, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17783]={ + ["next_chapter"]=17784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72760, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24011, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=868609, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87730, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=868609, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17784]={ + ["next_chapter"]=17785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=877295, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88607, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=877295, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17785]={ + ["next_chapter"]=17786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72813, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=886068, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89493, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=886068, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17786]={ + ["next_chapter"]=17787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72839, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=894929, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90388, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=894929, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17787]={ + ["next_chapter"]=17788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72865, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=903878, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91292, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=903878, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17788]={ + ["next_chapter"]=17789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72892, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=912917, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92205, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=912917, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17789]={ + ["next_chapter"]=17790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72918, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=922046, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93127, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=922046, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=89012, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1778, + ["unit"]=0 + } + }, + [17790]={ + ["next_chapter"]=17791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=72945, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24072, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=931266, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94058, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=931266, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17791]={ + ["next_chapter"]=17792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72971, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=940579, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94998, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=940579, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17792]={ + ["next_chapter"]=17793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=72997, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24089, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=949985, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95948, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=949985, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17793]={ + ["next_chapter"]=17794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=959485, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96908, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=959485, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17794]={ + ["next_chapter"]=17795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73050, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=969080, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97877, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=969080, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17795]={ + ["next_chapter"]=17796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24115, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=978770, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98856, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=978770, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17796]={ + ["next_chapter"]=17797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=988558, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99844, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=988558, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17797]={ + ["next_chapter"]=17798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24133, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=998444, + ["unit"]=24 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100843, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=998444, + ["unit"]=24 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17798]={ + ["next_chapter"]=17799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24141, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1008, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101851, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1008, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17799]={ + ["next_chapter"]=17800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1019, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102870, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1019, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=98325, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1779, + ["unit"]=0 + } + }, + [17800]={ + ["next_chapter"]=17801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=73209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24159, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1029, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103898, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1029, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17801]={ + ["next_chapter"]=17802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1039, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104937, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1039, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17802]={ + ["next_chapter"]=17803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1049, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105987, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1049, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17803]={ + ["next_chapter"]=17804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73288, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1060, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107047, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1060, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17804]={ + ["next_chapter"]=17805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24194, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1070, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108117, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1070, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17805]={ + ["next_chapter"]=17806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24203, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1081, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109198, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1081, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17806]={ + ["next_chapter"]=17807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1092, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110290, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1092, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17807]={ + ["next_chapter"]=17808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1103, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111393, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1103, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17808]={ + ["next_chapter"]=17809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24229, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1114, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112507, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1114, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17809]={ + ["next_chapter"]=17810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1125, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113632, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1125, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=108612, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1780, + ["unit"]=0 + } + }, + [17810]={ + ["next_chapter"]=17811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=73474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1136, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114769, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1136, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17811]={ + ["next_chapter"]=17812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24255, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1148, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115916, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1148, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17812]={ + ["next_chapter"]=17813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24264, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1159, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117075, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1159, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17813]={ + ["next_chapter"]=17814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24273, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1171, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118246, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1171, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17814]={ + ["next_chapter"]=17815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73580, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1182, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119429, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1182, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17815]={ + ["next_chapter"]=17816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24290, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1194, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120623, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1194, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17816]={ + ["next_chapter"]=17817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1206, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121829, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1206, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17817]={ + ["next_chapter"]=17818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1218, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123047, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1218, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17818]={ + ["next_chapter"]=17819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73686, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24316, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1230, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124278, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1230, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17819]={ + ["next_chapter"]=17820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1243, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125521, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1243, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=119975, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1781, + ["unit"]=0 + } + }, + [17820]={ + ["next_chapter"]=17821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=73739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1255, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126776, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1255, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17821]={ + ["next_chapter"]=17822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73766, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1268, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128044, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1268, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17822]={ + ["next_chapter"]=17823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73792, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1280, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129324, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1280, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17823]={ + ["next_chapter"]=17824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1293, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130617, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1293, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17824]={ + ["next_chapter"]=17825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24369, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1306, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131923, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1306, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17825]={ + ["next_chapter"]=17826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73872, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1319, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133243, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1319, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17826]={ + ["next_chapter"]=17827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24387, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1332, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134575, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1332, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17827]={ + ["next_chapter"]=17828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1346, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135921, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1346, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17828]={ + ["next_chapter"]=17829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24404, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1359, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137280, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1359, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17829]={ + ["next_chapter"]=17830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=73979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24413, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1373, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138653, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1373, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=132527, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1782, + ["unit"]=0 + } + }, + [17830]={ + ["next_chapter"]=17831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=74005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24422, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1387, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140039, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1387, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17831]={ + ["next_chapter"]=17832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24431, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1400, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141440, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1400, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17832]={ + ["next_chapter"]=17833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1414, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142854, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1414, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17833]={ + ["next_chapter"]=17834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24448, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1429, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144283, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1429, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17834]={ + ["next_chapter"]=17835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74112, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24457, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1443, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145726, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1443, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17835]={ + ["next_chapter"]=17836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1457, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147183, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1457, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17836]={ + ["next_chapter"]=17837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24475, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1472, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148655, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1472, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17837]={ + ["next_chapter"]=17838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74192, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1487, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150141, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1487, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17838]={ + ["next_chapter"]=17839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74219, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1501, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151643, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1501, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17839]={ + ["next_chapter"]=17840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1516, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153159, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1516, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=146393, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1783, + ["unit"]=0 + } + }, + [17840]={ + ["next_chapter"]=17841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=74272, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1532, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154691, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1532, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17841]={ + ["next_chapter"]=17842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24519, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1547, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156238, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1547, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17842]={ + ["next_chapter"]=17843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1562, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157800, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1562, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17843]={ + ["next_chapter"]=17844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74352, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24536, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1578, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159378, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1578, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17844]={ + ["next_chapter"]=17845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24545, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1594, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160972, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1594, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17845]={ + ["next_chapter"]=17846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74406, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1610, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162581, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1610, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17846]={ + ["next_chapter"]=17847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24563, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1626, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164207, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1626, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17847]={ + ["next_chapter"]=17848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24572, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1642, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165849, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1642, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17848]={ + ["next_chapter"]=17849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74486, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1658, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167508, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1658, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17849]={ + ["next_chapter"]=17850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1675, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169183, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1675, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=161709, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1784, + ["unit"]=0 + } + }, + [17850]={ + ["next_chapter"]=17851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=74539, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24598, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1692, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170875, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1692, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17851]={ + ["next_chapter"]=17852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1709, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172583, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1709, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17852]={ + ["next_chapter"]=17853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24616, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1726, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174309, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1726, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17853]={ + ["next_chapter"]=17854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1743, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176052, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1743, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17854]={ + ["next_chapter"]=17855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1761, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177813, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1761, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17855]={ + ["next_chapter"]=17856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74673, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1778, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179591, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1778, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17856]={ + ["next_chapter"]=17857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24651, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1796, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181387, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1796, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17857]={ + ["next_chapter"]=17858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24660, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1814, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183201, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1814, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17858]={ + ["next_chapter"]=17859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1832, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185033, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1832, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17859]={ + ["next_chapter"]=17860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24678, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1850, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186883, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1850, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=178627, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1785, + ["unit"]=0 + } + }, + [17860]={ + ["next_chapter"]=17861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=74807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24686, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1869, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188752, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1869, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17861]={ + ["next_chapter"]=17862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74834, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1888, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190640, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1888, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17862]={ + ["next_chapter"]=17863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74861, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1906, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192546, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1906, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17863]={ + ["next_chapter"]=17864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74888, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1925, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194471, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1925, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17864]={ + ["next_chapter"]=17865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1945, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=196416, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1945, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17865]={ + ["next_chapter"]=17866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74942, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24731, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1964, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=198380, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1964, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17866]={ + ["next_chapter"]=17867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1984, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=200364, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=1984, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17867]={ + ["next_chapter"]=17868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=74995, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24749, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2004, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=202368, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2004, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17868]={ + ["next_chapter"]=17869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75022, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2024, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=204391, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2024, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17869]={ + ["next_chapter"]=17870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24766, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2044, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=206435, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2044, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=197315, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1786, + ["unit"]=0 + } + }, + [17870]={ + ["next_chapter"]=17871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=75076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2064, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208500, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2064, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17871]={ + ["next_chapter"]=17872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2085, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210585, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2085, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17872]={ + ["next_chapter"]=17873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75130, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2106, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212690, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2106, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17873]={ + ["next_chapter"]=17874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2127, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214817, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2127, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17874]={ + ["next_chapter"]=17875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2148, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216966, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2148, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17875]={ + ["next_chapter"]=17876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2170, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219135, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2170, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17876]={ + ["next_chapter"]=17877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24828, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2191, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=221327, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2191, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17877]={ + ["next_chapter"]=17878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75265, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2213, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223540, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2213, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17878]={ + ["next_chapter"]=17879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75292, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2235, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225775, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2235, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17879]={ + ["next_chapter"]=17880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2258, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228033, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2258, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=217959, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1787, + ["unit"]=0 + } + }, + [17880]={ + ["next_chapter"]=17881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=75346, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24864, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2280, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=230313, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2280, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17881]={ + ["next_chapter"]=17882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75372, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2303, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232616, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2303, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17882]={ + ["next_chapter"]=17883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75399, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2326, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234943, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2326, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17883]={ + ["next_chapter"]=17884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75426, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2349, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=237292, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2349, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17884]={ + ["next_chapter"]=17885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75453, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24900, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2373, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239665, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2373, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17885]={ + ["next_chapter"]=17886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2397, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242062, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2397, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17886]={ + ["next_chapter"]=17887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24917, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2421, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=244482, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2421, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17887]={ + ["next_chapter"]=17888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75534, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24926, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2445, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246927, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2445, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17888]={ + ["next_chapter"]=17889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75561, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2469, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=249396, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2469, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17889]={ + ["next_chapter"]=17890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24944, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2494, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251890, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2494, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=240762, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1788, + ["unit"]=0 + } + }, + [17890]={ + ["next_chapter"]=17891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=75615, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2519, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=254409, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2519, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17891]={ + ["next_chapter"]=17892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24962, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2544, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256953, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2544, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17892]={ + ["next_chapter"]=17893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24971, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2570, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=259523, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2570, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17893]={ + ["next_chapter"]=17894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75697, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24980, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2595, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262118, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2595, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17894]={ + ["next_chapter"]=17895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24989, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2621, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264739, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2621, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17895]={ + ["next_chapter"]=17896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=24998, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2647, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=267387, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2647, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17896]={ + ["next_chapter"]=17897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75778, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2674, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270060, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2674, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17897]={ + ["next_chapter"]=17898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2701, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272761, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2701, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17898]={ + ["next_chapter"]=17899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75832, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2728, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=275489, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2728, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17899]={ + ["next_chapter"]=17900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2755, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=278244, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2755, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=265951, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1789, + ["unit"]=0 + } + }, + [17900]={ + ["next_chapter"]=17901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=75886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2782, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281026, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2782, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17901]={ + ["next_chapter"]=17902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75913, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25051, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2810, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283836, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2810, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17902]={ + ["next_chapter"]=17903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75940, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25060, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2838, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286675, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2838, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17903]={ + ["next_chapter"]=17904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75967, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2867, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=289541, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2867, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17904]={ + ["next_chapter"]=17905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=75995, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25078, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2895, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=292437, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2895, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17905]={ + ["next_chapter"]=17906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76022, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2924, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=295361, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2924, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17906]={ + ["next_chapter"]=17907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2954, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=298315, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2954, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17907]={ + ["next_chapter"]=17908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25105, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2983, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=301298, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=2983, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17908]={ + ["next_chapter"]=17909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76103, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25114, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3013, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=304311, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3013, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17909]={ + ["next_chapter"]=17910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76130, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3043, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=307354, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3043, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=293775, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1790, + ["unit"]=0 + } + }, + [17910]={ + ["next_chapter"]=17911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=76157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3074, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=310428, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3074, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17911]={ + ["next_chapter"]=17912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25141, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3104, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=313532, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3104, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17912]={ + ["next_chapter"]=17913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3135, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=316667, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3135, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17913]={ + ["next_chapter"]=17914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25159, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3167, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319834, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3167, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17914]={ + ["next_chapter"]=17915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3198, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=323032, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3198, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17915]={ + ["next_chapter"]=17916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3230, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=326262, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3230, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17916]={ + ["next_chapter"]=17917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3263, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=329525, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3263, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17917]={ + ["next_chapter"]=17918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25195, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3295, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332820, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3295, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17918]={ + ["next_chapter"]=17919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3328, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=336149, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3328, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17919]={ + ["next_chapter"]=17920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25213, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3361, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=339510, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3361, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=324511, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1791, + ["unit"]=0 + } + }, + [17920]={ + ["next_chapter"]=17921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=76429, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3395, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342905, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3395, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17921]={ + ["next_chapter"]=17922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76457, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3429, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=346334, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3429, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17922]={ + ["next_chapter"]=17923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76484, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25240, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3463, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349797, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3463, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17923]={ + ["next_chapter"]=17924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25249, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3498, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=353295, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3498, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17924]={ + ["next_chapter"]=17925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76538, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25258, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3533, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356828, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3533, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17925]={ + ["next_chapter"]=17926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25267, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3568, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=360397, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3568, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17926]={ + ["next_chapter"]=17927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3604, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=364001, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3604, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17927]={ + ["next_chapter"]=17928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25285, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3640, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=367641, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3640, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17928]={ + ["next_chapter"]=17929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3676, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=371317, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3676, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17929]={ + ["next_chapter"]=17930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25303, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3713, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=375030, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3713, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=358462, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1792, + ["unit"]=0 + } + }, + [17930]={ + ["next_chapter"]=17931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=76702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25312, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3750, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=378781, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3750, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17931]={ + ["next_chapter"]=17932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76729, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25321, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3788, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=382568, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3788, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17932]={ + ["next_chapter"]=17933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3826, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=386394, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3826, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17933]={ + ["next_chapter"]=17934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25339, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3864, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=390258, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3864, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17934]={ + ["next_chapter"]=17935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25348, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3903, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=394161, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3903, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17935]={ + ["next_chapter"]=17936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76838, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3942, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=398102, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3942, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17936]={ + ["next_chapter"]=17937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25366, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3981, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=402083, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=3981, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17937]={ + ["next_chapter"]=17938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25375, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4021, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=406104, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4021, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17938]={ + ["next_chapter"]=17939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4061, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=410165, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4061, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17939]={ + ["next_chapter"]=17940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=76948, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25393, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4102, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=414267, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4102, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=395965, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1793, + ["unit"]=0 + } + }, + [17940]={ + ["next_chapter"]=17941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=76975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25402, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4143, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=418409, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4143, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17941]={ + ["next_chapter"]=17942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4184, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=422593, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4184, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17942]={ + ["next_chapter"]=17943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25420, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4226, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=426819, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4226, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17943]={ + ["next_chapter"]=17944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25429, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4268, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=431088, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4268, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17944]={ + ["next_chapter"]=17945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25438, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4311, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=435398, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4311, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17945]={ + ["next_chapter"]=17946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77112, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4354, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=439752, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4354, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17946]={ + ["next_chapter"]=17947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25456, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4398, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=444150, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4398, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17947]={ + ["next_chapter"]=17948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77167, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25465, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4441, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=448591, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4441, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17948]={ + ["next_chapter"]=17949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77194, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25474, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4486, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=453077, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4486, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17949]={ + ["next_chapter"]=17950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77222, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4531, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=457608, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4531, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=437391, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1794, + ["unit"]=0 + } + }, + [17950]={ + ["next_chapter"]=17951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=77249, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4576, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=462184, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4576, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17951]={ + ["next_chapter"]=17952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4622, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=466806, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4622, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17952]={ + ["next_chapter"]=17953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4668, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=471474, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4668, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17953]={ + ["next_chapter"]=17954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25519, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4715, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=476189, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4715, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17954]={ + ["next_chapter"]=17955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4762, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=480951, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4762, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17955]={ + ["next_chapter"]=17956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25537, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4810, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=485760, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4810, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17956]={ + ["next_chapter"]=17957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25546, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4858, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=490618, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4858, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17957]={ + ["next_chapter"]=17958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77441, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4906, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=495524, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4906, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17958]={ + ["next_chapter"]=17959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4955, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=500479, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=4955, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17959]={ + ["next_chapter"]=17960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77496, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5005, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=505484, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5005, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=483152, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1795, + ["unit"]=0 + } + }, + [17960]={ + ["next_chapter"]=17961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=77523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25583, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5055, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=510539, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5055, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17961]={ + ["next_chapter"]=17962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77551, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25592, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5105, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=515644, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5105, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17962]={ + ["next_chapter"]=17963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5156, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=520801, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5156, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17963]={ + ["next_chapter"]=17964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25610, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5208, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=526009, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5208, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17964]={ + ["next_chapter"]=17965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25619, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5260, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=531269, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5260, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17965]={ + ["next_chapter"]=17966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77661, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5313, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=536582, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5313, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17966]={ + ["next_chapter"]=17967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25637, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5366, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=541947, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5366, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17967]={ + ["next_chapter"]=17968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5419, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=547367, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5419, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17968]={ + ["next_chapter"]=17969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77744, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5474, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=552841, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5474, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17969]={ + ["next_chapter"]=17970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77771, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25664, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5528, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=558369, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5528, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=533701, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1796, + ["unit"]=0 + } + }, + [17970]={ + ["next_chapter"]=17971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=77799, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5584, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=563953, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5584, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17971]={ + ["next_chapter"]=17972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77826, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25683, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5640, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=569592, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5640, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17972]={ + ["next_chapter"]=17973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77854, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25692, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5696, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=575288, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5696, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17973]={ + ["next_chapter"]=17974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77881, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25701, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5753, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=581041, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5753, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17974]={ + ["next_chapter"]=17975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77909, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5810, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=586851, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5810, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17975]={ + ["next_chapter"]=17976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25719, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5869, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=592720, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5869, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17976]={ + ["next_chapter"]=17977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77964, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25728, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5927, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=598647, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5927, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17977]={ + ["next_chapter"]=17978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=77992, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25737, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5986, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=604634, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=5986, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17978]={ + ["next_chapter"]=17979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25746, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6046, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=610680, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6046, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17979]={ + ["next_chapter"]=17980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6107, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=616787, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6107, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=589538, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1797, + ["unit"]=0 + } + }, + [17980]={ + ["next_chapter"]=17981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=78074, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25765, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6168, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=622955, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6168, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17981]={ + ["next_chapter"]=17982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78102, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25774, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6230, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=629184, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6230, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17982]={ + ["next_chapter"]=17983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78130, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25783, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6292, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=635476, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6292, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17983]={ + ["next_chapter"]=17984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6355, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=641831, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6355, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17984]={ + ["next_chapter"]=17985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25801, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6418, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=648249, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6418, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17985]={ + ["next_chapter"]=17986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25810, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6482, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=654732, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6482, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17986]={ + ["next_chapter"]=17987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6547, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=661279, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6547, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17987]={ + ["next_chapter"]=17988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25828, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6613, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=667892, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6613, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17988]={ + ["next_chapter"]=17989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25838, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6679, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=674571, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6679, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17989]={ + ["next_chapter"]=17990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25847, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6746, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=681316, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6746, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=651216, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1798, + ["unit"]=0 + } + }, + [17990]={ + ["next_chapter"]=17991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=78351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6813, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=688129, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6813, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17991]={ + ["next_chapter"]=17992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6881, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=695011, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6881, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17992]={ + ["next_chapter"]=17993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78406, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25874, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6950, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=701961, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=6950, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17993]={ + ["next_chapter"]=17994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25883, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7020, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=708980, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7020, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17994]={ + ["next_chapter"]=17995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25892, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7090, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=716070, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7090, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17995]={ + ["next_chapter"]=17996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25901, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7161, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=723231, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7161, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17996]={ + ["next_chapter"]=17997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25911, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7232, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=730463, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7232, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17997]={ + ["next_chapter"]=17998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7305, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=737768, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7305, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17998]={ + ["next_chapter"]=17999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25929, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7378, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=745146, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7378, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [17999]={ + ["next_chapter"]=18000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78600, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25938, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7451, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=752597, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7451, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=719348, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1799, + ["unit"]=0 + } + }, + [18000]={ + ["next_chapter"]=18001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=78628, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7526, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=760123, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7526, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18001]={ + ["next_chapter"]=18002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25956, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7601, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=767724, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7601, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18002]={ + ["next_chapter"]=18003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7677, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=775401, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7677, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18003]={ + ["next_chapter"]=18004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25975, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7754, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=783155, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7754, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18004]={ + ["next_chapter"]=18005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7832, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=790987, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7832, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18005]={ + ["next_chapter"]=18006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78767, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=25993, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7910, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=798897, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7910, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18006]={ + ["next_chapter"]=18007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7989, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=806886, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=7989, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18007]={ + ["next_chapter"]=18008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78822, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26011, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8069, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=814955, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8069, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18008]={ + ["next_chapter"]=18009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78850, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26021, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8150, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=823104, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8150, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18009]={ + ["next_chapter"]=18010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8231, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=831335, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8231, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=794608, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + [18010]={ + ["next_chapter"]=18011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=78906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26039, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8313, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=839649, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8313, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18011]={ + ["next_chapter"]=18012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26048, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8396, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=848045, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8396, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18012]={ + ["next_chapter"]=18013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8480, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=856526, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8480, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18013]={ + ["next_chapter"]=18014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=78989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26066, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8565, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=865091, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8565, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18014]={ + ["next_chapter"]=18015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26076, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8651, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=873742, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8651, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18015]={ + ["next_chapter"]=18016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79045, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8737, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=882479, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8737, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18016]={ + ["next_chapter"]=18017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79073, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26094, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8825, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=891304, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8825, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18017]={ + ["next_chapter"]=18018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8913, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=900217, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=8913, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18018]={ + ["next_chapter"]=18019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79128, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26112, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9002, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=909219, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9002, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18019]={ + ["next_chapter"]=18020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26122, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9092, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=918311, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9092, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=877741, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1801, + ["unit"]=0 + } + }, + [18020]={ + ["next_chapter"]=18021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=79184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26131, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9183, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=927494, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9183, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18021]={ + ["next_chapter"]=18022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9275, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=936769, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9275, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18022]={ + ["next_chapter"]=18023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26149, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9368, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=946137, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9368, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18023]={ + ["next_chapter"]=18024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9461, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=955598, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9461, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18024]={ + ["next_chapter"]=18025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9556, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=965154, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9556, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18025]={ + ["next_chapter"]=18026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79324, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9652, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=974806, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9652, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18026]={ + ["next_chapter"]=18027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79352, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9748, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=984554, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9748, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18027]={ + ["next_chapter"]=18028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26195, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9846, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=994400, + ["unit"]=25 + }, + ["idle_gold"]={ + ["value"]=9846, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18028]={ + ["next_chapter"]=18029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9944, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1004, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9944, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18029]={ + ["next_chapter"]=18030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10043, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1014, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10043, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=969572, + ["unit"]=25 + }, + ["grasp_mastery_reward"]={ + ["value"]=1802, + ["unit"]=0 + } + }, + [18030]={ + ["next_chapter"]=18031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=79463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10144, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1025, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10144, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18031]={ + ["next_chapter"]=18032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26232, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10245, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1035, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10245, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18032]={ + ["next_chapter"]=18033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10348, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1045, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10348, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18033]={ + ["next_chapter"]=18034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79547, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26251, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10451, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1056, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10451, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18034]={ + ["next_chapter"]=18035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26260, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10556, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1066, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10556, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18035]={ + ["next_chapter"]=18036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79603, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26269, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10661, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1077, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10661, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18036]={ + ["next_chapter"]=18037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79631, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26278, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10768, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1088, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10768, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18037]={ + ["next_chapter"]=18038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26287, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10876, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1098, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10876, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18038]={ + ["next_chapter"]=18039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79687, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10984, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1109, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=10984, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18039]={ + ["next_chapter"]=18040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79715, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11094, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1121, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=11094, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1071, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1803, + ["unit"]=0 + } + }, + [18040]={ + ["next_chapter"]=18041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=79743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26315, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11205, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1132, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=11205, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18041]={ + ["next_chapter"]=18042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79771, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11317, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1143, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=11317, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18042]={ + ["next_chapter"]=18043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79799, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11430, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1154, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=11430, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18043]={ + ["next_chapter"]=18044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11545, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1166, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=11545, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18044]={ + ["next_chapter"]=18045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26352, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11660, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1178, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=11660, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18045]={ + ["next_chapter"]=18046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26361, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11777, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1189, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=11777, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18046]={ + ["next_chapter"]=18047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79911, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26371, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11894, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1201, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=11894, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18047]={ + ["next_chapter"]=18048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79939, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26380, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12013, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1213, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=12013, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18048]={ + ["next_chapter"]=18049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79967, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26389, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12134, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1225, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=12134, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18049]={ + ["next_chapter"]=18050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=79995, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12255, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1238, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=12255, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1183, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1804, + ["unit"]=0 + } + }, + [18050]={ + ["next_chapter"]=18051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=80023, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26408, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12377, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1250, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=12377, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18051]={ + ["next_chapter"]=18052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12501, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1263, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=12501, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18052]={ + ["next_chapter"]=18053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26426, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12626, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1275, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=12626, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18053]={ + ["next_chapter"]=18054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26436, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12752, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1288, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=12752, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18054]={ + ["next_chapter"]=18055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80136, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12880, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1301, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=12880, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18055]={ + ["next_chapter"]=18056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80164, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26454, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13009, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1314, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=13009, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18056]={ + ["next_chapter"]=18057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80192, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13139, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1327, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=13139, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18057]={ + ["next_chapter"]=18058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80220, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13270, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1340, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=13270, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18058]={ + ["next_chapter"]=18059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80248, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13403, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1354, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=13403, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18059]={ + ["next_chapter"]=18060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26491, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13537, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1367, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=13537, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1307, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1805, + ["unit"]=0 + } + }, + [18060]={ + ["next_chapter"]=18061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=80304, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13672, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1381, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=13672, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18061]={ + ["next_chapter"]=18062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80333, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13809, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1395, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=13809, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18062]={ + ["next_chapter"]=18063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80361, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26519, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13947, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1409, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=13947, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18063]={ + ["next_chapter"]=18064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14087, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1423, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=14087, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18064]={ + ["next_chapter"]=18065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26538, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14228, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1437, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=14228, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18065]={ + ["next_chapter"]=18066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14370, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1451, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=14370, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18066]={ + ["next_chapter"]=18067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80473, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14514, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1466, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=14514, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18067]={ + ["next_chapter"]=18068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26566, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14659, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1481, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=14659, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18068]={ + ["next_chapter"]=18069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26575, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14805, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1495, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=14805, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18069]={ + ["next_chapter"]=18070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80558, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26584, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14953, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1510, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=14953, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1444, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1806, + ["unit"]=0 + } + }, + [18070]={ + ["next_chapter"]=18071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=80586, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26593, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15103, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1525, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=15103, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18071]={ + ["next_chapter"]=18072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80614, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26603, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15254, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1541, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=15254, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18072]={ + ["next_chapter"]=18073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15406, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1556, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=15406, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18073]={ + ["next_chapter"]=18074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26621, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15560, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1572, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=15560, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18074]={ + ["next_chapter"]=18075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80699, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26631, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15716, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1587, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=15716, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18075]={ + ["next_chapter"]=18076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26640, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15873, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1603, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=15873, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18076]={ + ["next_chapter"]=18077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16032, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1619, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=16032, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18077]={ + ["next_chapter"]=18078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16192, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1635, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=16192, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18078]={ + ["next_chapter"]=18079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80812, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26668, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16354, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1652, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=16354, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18079]={ + ["next_chapter"]=18080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80840, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16518, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1668, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=16518, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1595, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1807, + ["unit"]=0 + } + }, + [18080]={ + ["next_chapter"]=18081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=80868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16683, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1685, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=16683, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18081]={ + ["next_chapter"]=18082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26696, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16850, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1702, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=16850, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18082]={ + ["next_chapter"]=18083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26705, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17018, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1719, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=17018, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18083]={ + ["next_chapter"]=18084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80953, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26715, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17188, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1736, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=17188, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18084]={ + ["next_chapter"]=18085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=80982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26724, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17360, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1753, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=17360, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18085]={ + ["next_chapter"]=18086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17534, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1771, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=17534, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18086]={ + ["next_chapter"]=18087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81038, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17709, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1789, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=17709, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18087]={ + ["next_chapter"]=18088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81067, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26752, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17886, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1807, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=17886, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18088]={ + ["next_chapter"]=18089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81095, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26761, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18065, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1825, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=18065, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18089]={ + ["next_chapter"]=18090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26771, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18246, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1843, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=18246, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1761, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1808, + ["unit"]=0 + } + }, + [18090]={ + ["next_chapter"]=18091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=81151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26780, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18428, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1861, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=18428, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18091]={ + ["next_chapter"]=18092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26789, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18613, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1880, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=18613, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18092]={ + ["next_chapter"]=18093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18799, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1899, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=18799, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18093]={ + ["next_chapter"]=18094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26808, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18987, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1918, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=18987, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18094]={ + ["next_chapter"]=18095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81265, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19177, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1937, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=19177, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18095]={ + ["next_chapter"]=18096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19368, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1956, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=19368, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18096]={ + ["next_chapter"]=18097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81322, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26836, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19562, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1976, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=19562, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18097]={ + ["next_chapter"]=18098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81350, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19758, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1996, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=19758, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18098]={ + ["next_chapter"]=18099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19955, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2015, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=19955, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18099]={ + ["next_chapter"]=18100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26864, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20155, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2036, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=20155, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=1946, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1809, + ["unit"]=0 + } + }, + [18100]={ + ["next_chapter"]=18101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=81435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26874, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20356, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2056, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=20356, + ["unit"]=25 + }, + ["chapter_drop"]=65, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18101]={ + ["next_chapter"]=18102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81464, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26883, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20560, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2077, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=20560, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18102]={ + ["next_chapter"]=18103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81492, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26892, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20766, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2097, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=20766, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18103]={ + ["next_chapter"]=18104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26902, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20973, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2118, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=20973, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18104]={ + ["next_chapter"]=18105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26911, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21183, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2139, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=21183, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18105]={ + ["next_chapter"]=18106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21395, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2161, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=21395, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18106]={ + ["next_chapter"]=18107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26930, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21609, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2182, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=21609, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18107]={ + ["next_chapter"]=18108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26939, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21825, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2204, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=21825, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18108]={ + ["next_chapter"]=18109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81663, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22043, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2226, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=22043, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18109]={ + ["next_chapter"]=18110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26958, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22263, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2249, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=22263, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2149, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1810, + ["unit"]=0 + } + }, + [18110]={ + ["next_chapter"]=18111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=81720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22486, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2271, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=22486, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18111]={ + ["next_chapter"]=18112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22711, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2294, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=22711, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18112]={ + ["next_chapter"]=18113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22938, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2317, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=22938, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18113]={ + ["next_chapter"]=18114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=26996, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23167, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2340, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=23167, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18114]={ + ["next_chapter"]=18115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23399, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2363, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=23399, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18115]={ + ["next_chapter"]=18116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27014, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23633, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2387, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=23633, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18116]={ + ["next_chapter"]=18117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81890, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23869, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2411, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=23869, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18117]={ + ["next_chapter"]=18118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24108, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2435, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=24108, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18118]={ + ["next_chapter"]=18119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24349, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2459, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=24349, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18119]={ + ["next_chapter"]=18120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=81976, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27052, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24593, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2484, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=24593, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2374, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1811, + ["unit"]=0 + } + }, + [18120]={ + ["next_chapter"]=18121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=82005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24839, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2509, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=24839, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18121]={ + ["next_chapter"]=18122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25087, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2534, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=25087, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18122]={ + ["next_chapter"]=18123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82062, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25338, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2559, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=25338, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18123]={ + ["next_chapter"]=18124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82090, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25591, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2585, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=25591, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18124]={ + ["next_chapter"]=18125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82119, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25847, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2611, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=25847, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18125]={ + ["next_chapter"]=18126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82147, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27109, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26106, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2637, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=26106, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18126]={ + ["next_chapter"]=18127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27118, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26367, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2663, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=26367, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18127]={ + ["next_chapter"]=18128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26630, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2690, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=26630, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18128]={ + ["next_chapter"]=18129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82233, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26897, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2717, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=26897, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18129]={ + ["next_chapter"]=18130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27146, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27166, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2744, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=27166, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2623, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1812, + ["unit"]=0 + } + }, + [18130]={ + ["next_chapter"]=18131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=82290, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27437, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2771, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=27437, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18131]={ + ["next_chapter"]=18132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27712, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2799, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=27712, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18132]={ + ["next_chapter"]=18133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27175, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27989, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2827, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=27989, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18133]={ + ["next_chapter"]=18134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82376, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27184, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28269, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2855, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=28269, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18134]={ + ["next_chapter"]=18135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82405, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27194, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28551, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2884, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=28551, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18135]={ + ["next_chapter"]=18136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27203, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28837, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2913, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=28837, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18136]={ + ["next_chapter"]=18137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27212, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29125, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2942, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=29125, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18137]={ + ["next_chapter"]=18138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29416, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2971, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=29416, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18138]={ + ["next_chapter"]=18139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29711, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3001, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=29711, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18139]={ + ["next_chapter"]=18140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82548, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30008, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3031, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=30008, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2897, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1813, + ["unit"]=0 + } + }, + [18140]={ + ["next_chapter"]=18141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=82576, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30308, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3061, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=30308, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18141]={ + ["next_chapter"]=18142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27260, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30611, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3092, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=30611, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18142]={ + ["next_chapter"]=18143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82634, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27269, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30917, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3123, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=30917, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18143]={ + ["next_chapter"]=18144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82663, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31226, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3154, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=31226, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18144]={ + ["next_chapter"]=18145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31538, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3185, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=31538, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18145]={ + ["next_chapter"]=18146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27298, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31854, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3217, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=31854, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18146]={ + ["next_chapter"]=18147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82749, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27307, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32172, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3249, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=32172, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18147]={ + ["next_chapter"]=18148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27317, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32494, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3282, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=32494, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18148]={ + ["next_chapter"]=18149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82806, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27326, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32819, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3315, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=32819, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18149]={ + ["next_chapter"]=18150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33147, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3348, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=33147, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3200, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1814, + ["unit"]=0 + } + }, + [18150]={ + ["next_chapter"]=18151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=82863, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33479, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3381, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=33479, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18151]={ + ["next_chapter"]=18152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82892, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27354, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33813, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3415, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=33813, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18152]={ + ["next_chapter"]=18153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82921, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27364, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34152, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3449, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=34152, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18153]={ + ["next_chapter"]=18154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34493, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3484, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=34493, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18154]={ + ["next_chapter"]=18155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=82978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27383, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34838, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3519, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=34838, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18155]={ + ["next_chapter"]=18156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83007, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27392, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35186, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3554, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=35186, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18156]={ + ["next_chapter"]=18157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83036, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27402, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35538, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3589, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=35538, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18157]={ + ["next_chapter"]=18158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83065, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35894, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3625, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=35894, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18158]={ + ["next_chapter"]=18159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36253, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3662, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=36253, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18159]={ + ["next_chapter"]=18160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83122, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36615, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3698, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=36615, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3535, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1815, + ["unit"]=0 + } + }, + [18160]={ + ["next_chapter"]=18161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=83151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36981, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3735, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=36981, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18161]={ + ["next_chapter"]=18162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27449, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37351, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3772, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=37351, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18162]={ + ["next_chapter"]=18163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83209, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37725, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3810, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=37725, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18163]={ + ["next_chapter"]=18164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38102, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3848, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=38102, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18164]={ + ["next_chapter"]=18165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27478, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38483, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3887, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=38483, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18165]={ + ["next_chapter"]=18166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27487, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38868, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3926, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=38868, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18166]={ + ["next_chapter"]=18167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83324, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27497, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39256, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3965, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=39256, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18167]={ + ["next_chapter"]=18168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27506, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39649, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4005, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=39649, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18168]={ + ["next_chapter"]=18169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27516, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40045, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4045, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=40045, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18169]={ + ["next_chapter"]=18170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83411, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27525, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40446, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4085, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=40446, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1816, + ["unit"]=0 + } + }, + [18170]={ + ["next_chapter"]=18171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=83439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27535, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40850, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4126, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=40850, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18171]={ + ["next_chapter"]=18172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27545, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41259, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4167, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=41259, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18172]={ + ["next_chapter"]=18173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41671, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4209, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=41671, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18173]={ + ["next_chapter"]=18174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42088, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4251, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=42088, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18174]={ + ["next_chapter"]=18175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83555, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27573, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42509, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4293, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=42509, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18175]={ + ["next_chapter"]=18176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83584, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27583, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42934, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4336, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=42934, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18176]={ + ["next_chapter"]=18177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27592, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43363, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4380, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=43363, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18177]={ + ["next_chapter"]=18178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83642, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27602, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43797, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4424, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=43797, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18178]={ + ["next_chapter"]=18179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27611, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44235, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4468, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=44235, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18179]={ + ["next_chapter"]=18180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83699, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27621, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44677, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4512, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=44677, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4313, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1817, + ["unit"]=0 + } + }, + [18180]={ + ["next_chapter"]=18181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=83728, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27630, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45124, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4558, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=45124, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18181]={ + ["next_chapter"]=18182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83757, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27640, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45575, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4603, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=45575, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18182]={ + ["next_chapter"]=18183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46031, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4649, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=46031, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18183]={ + ["next_chapter"]=18184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46492, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4696, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=46492, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18184]={ + ["next_chapter"]=18185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46956, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4743, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=46956, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18185]={ + ["next_chapter"]=18186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83873, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27678, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47426, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4790, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=47426, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18186]={ + ["next_chapter"]=18187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83902, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27688, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47900, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4838, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=47900, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18187]={ + ["next_chapter"]=18188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83931, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27697, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48379, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4886, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=48379, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18188]={ + ["next_chapter"]=18189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83960, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48863, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4935, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=48863, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18189]={ + ["next_chapter"]=18190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=83989, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49352, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4985, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=49352, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4764, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1818, + ["unit"]=0 + } + }, + [18190]={ + ["next_chapter"]=18191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=84018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27726, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49845, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5034, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=49845, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18191]={ + ["next_chapter"]=18192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27736, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50344, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5085, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=50344, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18192]={ + ["next_chapter"]=18193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27745, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50847, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5136, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=50847, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18193]={ + ["next_chapter"]=18194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51356, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5187, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=51356, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18194]={ + ["next_chapter"]=18195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51869, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5239, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=51869, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18195]={ + ["next_chapter"]=18196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84163, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27774, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52388, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5291, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=52388, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18196]={ + ["next_chapter"]=18197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84192, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27783, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52912, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5344, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=52912, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18197]={ + ["next_chapter"]=18198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53441, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5398, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=53441, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18198]={ + ["next_chapter"]=18199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27803, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53975, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5451, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=53975, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18199]={ + ["next_chapter"]=18200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84279, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54515, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5506, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=54515, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5263, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1819, + ["unit"]=0 + } + }, + [18200]={ + ["next_chapter"]=18201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=84308, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55060, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5561, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=55060, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18201]={ + ["next_chapter"]=18202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27831, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55611, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5617, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=55611, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18202]={ + ["next_chapter"]=18203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27841, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56167, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5673, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=56167, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18203]={ + ["next_chapter"]=18204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84396, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56729, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5730, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=56729, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18204]={ + ["next_chapter"]=18205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27860, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57296, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5787, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=57296, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18205]={ + ["next_chapter"]=18206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84454, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27870, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57869, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5845, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=57869, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18206]={ + ["next_chapter"]=18207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27879, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58447, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5903, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=58447, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18207]={ + ["next_chapter"]=18208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84512, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27889, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59032, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5962, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=59032, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18208]={ + ["next_chapter"]=18209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27899, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59622, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6022, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=59622, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18209]={ + ["next_chapter"]=18210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27908, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60218, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6082, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=60218, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5813, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1820, + ["unit"]=0 + } + }, + [18210]={ + ["next_chapter"]=18211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=84599, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27918, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60821, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6143, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=60821, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18211]={ + ["next_chapter"]=18212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84629, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27927, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61429, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6204, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=61429, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18212]={ + ["next_chapter"]=18213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62043, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6266, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=62043, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18213]={ + ["next_chapter"]=18214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84687, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62664, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6329, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=62664, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18214]={ + ["next_chapter"]=18215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27956, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63290, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6392, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=63290, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18215]={ + ["next_chapter"]=18216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84745, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63923, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6456, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=63923, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18216]={ + ["next_chapter"]=18217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84774, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64562, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6521, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=64562, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18217]={ + ["next_chapter"]=18218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65208, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6586, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=65208, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18218]={ + ["next_chapter"]=18219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=27995, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65860, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6652, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=65860, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18219]={ + ["next_chapter"]=18220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66519, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6718, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=66519, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6422, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1821, + ["unit"]=0 + } + }, + [18220]={ + ["next_chapter"]=18221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=84891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28014, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67184, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6786, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=67184, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18221]={ + ["next_chapter"]=18222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67856, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6853, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=67856, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18222]={ + ["next_chapter"]=18223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84949, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68534, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6922, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=68534, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18223]={ + ["next_chapter"]=18224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=84979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69220, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6991, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=69220, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18224]={ + ["next_chapter"]=18225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28053, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69912, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7061, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=69912, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18225]={ + ["next_chapter"]=18226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85037, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28062, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70611, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7132, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=70611, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18226]={ + ["next_chapter"]=18227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85066, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28072, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71317, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7203, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=71317, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18227]={ + ["next_chapter"]=18228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28082, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72030, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7275, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=72030, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18228]={ + ["next_chapter"]=18229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85125, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28091, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72750, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7348, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=72750, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18229]={ + ["next_chapter"]=18230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85154, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73478, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7421, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=73478, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7093, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1822, + ["unit"]=0 + } + }, + [18230]={ + ["next_chapter"]=18231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=85183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74213, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7495, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=74213, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18231]={ + ["next_chapter"]=18232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28120, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74955, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7570, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=74955, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18232]={ + ["next_chapter"]=18233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28130, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75704, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7646, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=75704, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18233]={ + ["next_chapter"]=18234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28139, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76461, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7723, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=76461, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18234]={ + ["next_chapter"]=18235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28149, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77226, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7800, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=77226, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18235]={ + ["next_chapter"]=18236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28159, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77998, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7878, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=77998, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18236]={ + ["next_chapter"]=18237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78778, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7957, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=78778, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18237]={ + ["next_chapter"]=18238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85388, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79566, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8036, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=79566, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18238]={ + ["next_chapter"]=18239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28188, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80362, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8117, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=80362, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18239]={ + ["next_chapter"]=18240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28198, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81165, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8198, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=81165, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7836, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1823, + ["unit"]=0 + } + }, + [18240]={ + ["next_chapter"]=18241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=85476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28207, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81977, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8280, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=81977, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18241]={ + ["next_chapter"]=18242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85506, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82797, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8362, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=82797, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18242]={ + ["next_chapter"]=18243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28227, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83625, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8446, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=83625, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18243]={ + ["next_chapter"]=18244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85564, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84461, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8531, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=84461, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18244]={ + ["next_chapter"]=18245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85594, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85306, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8616, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=85306, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18245]={ + ["next_chapter"]=18246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86159, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8702, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=86159, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18246]={ + ["next_chapter"]=18247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87020, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8789, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=87020, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18247]={ + ["next_chapter"]=18248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85682, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28275, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87890, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8877, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=87890, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18248]={ + ["next_chapter"]=18249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28285, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88769, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8966, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=88769, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18249]={ + ["next_chapter"]=18250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89657, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9055, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=89657, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8655, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1824, + ["unit"]=0 + } + }, + [18250]={ + ["next_chapter"]=18251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=85770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90554, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9146, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=90554, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18251]={ + ["next_chapter"]=18252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85799, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91459, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9237, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=91459, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18252]={ + ["next_chapter"]=18253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85829, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92374, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9330, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=92374, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18253]={ + ["next_chapter"]=18254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85858, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28333, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93298, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9423, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=93298, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18254]={ + ["next_chapter"]=18255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85888, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94230, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9517, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=94230, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18255]={ + ["next_chapter"]=18256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85917, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95173, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9612, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=95173, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18256]={ + ["next_chapter"]=18257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96125, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9709, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=96125, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18257]={ + ["next_chapter"]=18258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=85976, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28372, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97086, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9806, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=97086, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18258]={ + ["next_chapter"]=18259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98057, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9904, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=98057, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18259]={ + ["next_chapter"]=18260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86035, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28392, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99037, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10003, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=99037, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1825, + ["unit"]=0 + } + }, + [18260]={ + ["next_chapter"]=18261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=86064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100028, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10103, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=100028, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18261]={ + ["next_chapter"]=18262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101028, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10204, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=101028, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18262]={ + ["next_chapter"]=18263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102038, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10306, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=102038, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18263]={ + ["next_chapter"]=18264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86153, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103058, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10409, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=103058, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18264]={ + ["next_chapter"]=18265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104089, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10513, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=104089, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18265]={ + ["next_chapter"]=18266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105130, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10618, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=105130, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18266]={ + ["next_chapter"]=18267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86241, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106181, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10724, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=106181, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18267]={ + ["next_chapter"]=18268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28469, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107243, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10832, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=107243, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18268]={ + ["next_chapter"]=18269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28479, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108316, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10940, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=108316, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18269]={ + ["next_chapter"]=18270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109399, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11049, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=109399, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10561, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1826, + ["unit"]=0 + } + }, + [18270]={ + ["next_chapter"]=18271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=86359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28499, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110493, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11160, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=110493, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18271]={ + ["next_chapter"]=18272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111598, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11271, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=111598, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18272]={ + ["next_chapter"]=18273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112714, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11384, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=112714, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18273]={ + ["next_chapter"]=18274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86448, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113841, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11498, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=113841, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18274]={ + ["next_chapter"]=18275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86478, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28538, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114979, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11613, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=114979, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18275]={ + ["next_chapter"]=18276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116129, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11729, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=116129, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18276]={ + ["next_chapter"]=18277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86537, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117290, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11846, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=117290, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18277]={ + ["next_chapter"]=18278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28567, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118463, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11965, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=118463, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18278]={ + ["next_chapter"]=18279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86596, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119648, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12084, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=119648, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18279]={ + ["next_chapter"]=18280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28586, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120844, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12205, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=120844, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11666, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1827, + ["unit"]=0 + } + }, + [18280]={ + ["next_chapter"]=18281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=86655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122053, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12327, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=122053, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18281]={ + ["next_chapter"]=18282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86685, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28606, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123273, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12451, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=123273, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18282]={ + ["next_chapter"]=18283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86714, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28616, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=124506, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12575, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=124506, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18283]={ + ["next_chapter"]=18284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86744, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125751, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12701, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=125751, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18284]={ + ["next_chapter"]=18285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86773, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127008, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12828, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=127008, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18285]={ + ["next_chapter"]=18286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28645, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=128279, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12956, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=128279, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18286]={ + ["next_chapter"]=18287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=129561, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13086, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=129561, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18287]={ + ["next_chapter"]=18288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130857, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13217, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=130857, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18288]={ + ["next_chapter"]=18289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86892, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=132166, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13349, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=132166, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18289]={ + ["next_chapter"]=18290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86922, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=133487, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13482, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=133487, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12887, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1828, + ["unit"]=0 + } + }, + [18290]={ + ["next_chapter"]=18291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=86951, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134822, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13617, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=134822, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18291]={ + ["next_chapter"]=18292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=86981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=136170, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13753, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=136170, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18292]={ + ["next_chapter"]=18293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=137532, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13891, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=137532, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18293]={ + ["next_chapter"]=18294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87040, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28723, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138907, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14030, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=138907, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18294]={ + ["next_chapter"]=18295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87070, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=140296, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14170, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=140296, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18295]={ + ["next_chapter"]=18296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87100, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=141699, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14312, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=141699, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18296]={ + ["next_chapter"]=18297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87130, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=143116, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14455, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=143116, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18297]={ + ["next_chapter"]=18298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87159, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=144547, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14599, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=144547, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18298]={ + ["next_chapter"]=18299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28772, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145993, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14745, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=145993, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18299]={ + ["next_chapter"]=18300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87219, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28782, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=147453, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14893, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=147453, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=14235, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1829, + ["unit"]=0 + } + }, + [18300]={ + ["next_chapter"]=18301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=87248, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=148927, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15042, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=148927, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18301]={ + ["next_chapter"]=18302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=150417, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15192, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=150417, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18302]={ + ["next_chapter"]=18303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87308, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=151921, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15344, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=151921, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18303]={ + ["next_chapter"]=18304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=153440, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15497, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=153440, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18304]={ + ["next_chapter"]=18305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28831, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=154974, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15652, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=154974, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18305]={ + ["next_chapter"]=18306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87397, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28841, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=156524, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15809, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=156524, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18306]={ + ["next_chapter"]=18307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=158089, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15967, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=158089, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18307]={ + ["next_chapter"]=18308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87457, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=159670, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16127, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=159670, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18308]={ + ["next_chapter"]=18309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=161267, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16288, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=161267, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18309]={ + ["next_chapter"]=18310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87516, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=162880, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16451, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=162880, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15724, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1830, + ["unit"]=0 + } + }, + [18310]={ + ["next_chapter"]=18311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=87546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=164509, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16615, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=164509, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18311]={ + ["next_chapter"]=18312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87576, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28900, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=166154, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16782, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=166154, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18312]={ + ["next_chapter"]=18313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28910, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=167815, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16949, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=167815, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18313]={ + ["next_chapter"]=18314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=169493, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17119, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=169493, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18314]={ + ["next_chapter"]=18315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87665, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28930, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=171188, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17290, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=171188, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18315]={ + ["next_chapter"]=18316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28939, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=172900, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17463, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=172900, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18316]={ + ["next_chapter"]=18317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=174629, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17638, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=174629, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18317]={ + ["next_chapter"]=18318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28959, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=176375, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17814, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=176375, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18318]={ + ["next_chapter"]=18319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28969, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=178139, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17992, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=178139, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18319]={ + ["next_chapter"]=18320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28979, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=179921, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18172, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=179921, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=17369, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1831, + ["unit"]=0 + } + }, + [18320]={ + ["next_chapter"]=18321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=87845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28989, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=181720, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18354, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=181720, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18321]={ + ["next_chapter"]=18322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=28999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=183537, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18537, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=183537, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18322]={ + ["next_chapter"]=18323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87904, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29008, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=185372, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18723, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=185372, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18323]={ + ["next_chapter"]=18324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29018, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=187226, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18910, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=187226, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18324]={ + ["next_chapter"]=18325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87964, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=189098, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19099, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=189098, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18325]={ + ["next_chapter"]=18326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=87994, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29038, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=190989, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19290, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=190989, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18326]={ + ["next_chapter"]=18327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29048, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=192899, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19483, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=192899, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18327]={ + ["next_chapter"]=18328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29058, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=194828, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19678, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=194828, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18328]={ + ["next_chapter"]=18329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88084, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29068, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=196776, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19874, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=196776, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18329]={ + ["next_chapter"]=18330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88114, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=198744, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20073, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=198744, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=19186, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1832, + ["unit"]=0 + } + }, + [18330]={ + ["next_chapter"]=18331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=88144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=200732, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20274, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=200732, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18331]={ + ["next_chapter"]=18332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29097, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=202739, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20477, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=202739, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18332]={ + ["next_chapter"]=18333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88203, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=204766, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20681, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=204766, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18333]={ + ["next_chapter"]=18334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88233, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=206814, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20888, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=206814, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18334]={ + ["next_chapter"]=18335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88263, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=208882, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21097, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=208882, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18335]={ + ["next_chapter"]=18336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=210971, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21308, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=210971, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18336]={ + ["next_chapter"]=18337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88323, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29147, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=213081, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21521, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=213081, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18337]={ + ["next_chapter"]=18338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=215211, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21736, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=215211, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18338]={ + ["next_chapter"]=18339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29166, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=217364, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21954, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=217364, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18339]={ + ["next_chapter"]=18340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88413, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=219537, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22173, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=219537, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=21194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1833, + ["unit"]=0 + } + }, + [18340]={ + ["next_chapter"]=18341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=88443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29186, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=221733, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22395, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=221733, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18341]={ + ["next_chapter"]=18342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88473, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29196, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=223950, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22619, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=223950, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18342]={ + ["next_chapter"]=18343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=226189, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22845, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=226189, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18343]={ + ["next_chapter"]=18344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88533, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29216, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=228451, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23074, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=228451, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18344]={ + ["next_chapter"]=18345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29226, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=230736, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23304, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=230736, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18345]={ + ["next_chapter"]=18346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=233043, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23537, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=233043, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18346]={ + ["next_chapter"]=18347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=235374, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23773, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=235374, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18347]={ + ["next_chapter"]=18348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=237727, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24010, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=237727, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18348]={ + ["next_chapter"]=18349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29266, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=240105, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24251, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=240105, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18349]={ + ["next_chapter"]=18350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88714, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=242506, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24493, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=242506, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=23411, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1834, + ["unit"]=0 + } + }, + [18350]={ + ["next_chapter"]=18351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=88744, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29285, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=244931, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24738, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=244931, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18351]={ + ["next_chapter"]=18352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88774, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=247380, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24985, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=247380, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18352]={ + ["next_chapter"]=18353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88804, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29305, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=249854, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25235, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=249854, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18353]={ + ["next_chapter"]=18354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88834, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29315, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=252352, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25488, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=252352, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18354]={ + ["next_chapter"]=18355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88864, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=254876, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25742, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=254876, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18355]={ + ["next_chapter"]=18356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88894, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=257425, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26000, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=257425, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18356]={ + ["next_chapter"]=18357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88924, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29345, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=259999, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26260, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=259999, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18357]={ + ["next_chapter"]=18358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88954, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29355, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=262599, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26522, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=262599, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18358]={ + ["next_chapter"]=18359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=88985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=265225, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26788, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=265225, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18359]={ + ["next_chapter"]=18360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29375, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=267877, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27056, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=267877, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=25860, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1835, + ["unit"]=0 + } + }, + [18360]={ + ["next_chapter"]=18361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=89045, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=270556, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27326, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=270556, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18361]={ + ["next_chapter"]=18362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29395, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=273261, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27599, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=273261, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18362]={ + ["next_chapter"]=18363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=275994, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27875, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=275994, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18363]={ + ["next_chapter"]=18364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29415, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=278754, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28154, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=278754, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18364]={ + ["next_chapter"]=18365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=281542, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28436, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=281542, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18365]={ + ["next_chapter"]=18366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89196, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29435, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=284357, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28720, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=284357, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18366]={ + ["next_chapter"]=18367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=287201, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29007, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=287201, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18367]={ + ["next_chapter"]=18368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29454, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=290073, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29297, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=290073, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18368]={ + ["next_chapter"]=18369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=292973, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29590, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=292973, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18369]={ + ["next_chapter"]=18370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29474, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=295903, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29886, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=295903, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=28566, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1836, + ["unit"]=0 + } + }, + [18370]={ + ["next_chapter"]=18371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=89347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29484, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=298862, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30185, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=298862, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18371]={ + ["next_chapter"]=18372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=301851, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30487, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=301851, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18372]={ + ["next_chapter"]=18373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29504, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=304869, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30792, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=304869, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18373]={ + ["next_chapter"]=18374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89437, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=307918, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31100, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=307918, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18374]={ + ["next_chapter"]=18375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=310997, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31411, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=310997, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18375]={ + ["next_chapter"]=18376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=314107, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31725, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=314107, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18376]={ + ["next_chapter"]=18377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=317248, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32042, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=317248, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18377]={ + ["next_chapter"]=18378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89558, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=320421, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32362, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=320421, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18378]={ + ["next_chapter"]=18379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89589, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=323625, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32686, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=323625, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18379]={ + ["next_chapter"]=18380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89619, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=326861, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33013, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=326861, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=31554, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1837, + ["unit"]=0 + } + }, + [18380]={ + ["next_chapter"]=18381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=89649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29584, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=330130, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33343, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=330130, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18381]={ + ["next_chapter"]=18382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=333431, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33677, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=333431, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18382]={ + ["next_chapter"]=18383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89710, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29604, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=336765, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34013, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=336765, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18383]={ + ["next_chapter"]=18384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89740, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29614, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=340133, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34353, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=340133, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18384]={ + ["next_chapter"]=18385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29624, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=343534, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34697, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=343534, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18385]={ + ["next_chapter"]=18386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29634, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=346970, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35044, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=346970, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18386]={ + ["next_chapter"]=18387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89831, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=350439, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35394, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=350439, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18387]={ + ["next_chapter"]=18388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89861, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=353944, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35748, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=353944, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18388]={ + ["next_chapter"]=18389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89892, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29664, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=357483, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36106, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=357483, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18389]={ + ["next_chapter"]=18390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89922, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=361058, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36467, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=361058, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=34856, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1838, + ["unit"]=0 + } + }, + [18390]={ + ["next_chapter"]=18391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=89952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=364668, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36832, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=364668, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18391]={ + ["next_chapter"]=18392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=89983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=368315, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37200, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=368315, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18392]={ + ["next_chapter"]=18393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90013, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=371998, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37572, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=371998, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18393]={ + ["next_chapter"]=18394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=375718, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37948, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=375718, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18394]={ + ["next_chapter"]=18395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90074, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29724, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=379476, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38327, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=379476, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18395]={ + ["next_chapter"]=18396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90104, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=383270, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38710, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=383270, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18396]={ + ["next_chapter"]=18397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29744, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=387103, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39097, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=387103, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18397]={ + ["next_chapter"]=18398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29754, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=390974, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39488, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=390974, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18398]={ + ["next_chapter"]=18399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=394884, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39883, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=394884, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18399]={ + ["next_chapter"]=18400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29774, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=398833, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40282, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=398833, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=38502, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1839, + ["unit"]=0 + } + }, + [18400]={ + ["next_chapter"]=18401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=90256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29784, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=402821, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40685, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=402821, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18401]={ + ["next_chapter"]=18402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29795, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=406849, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41092, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=406849, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18402]={ + ["next_chapter"]=18403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29805, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=410918, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41503, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=410918, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18403]={ + ["next_chapter"]=18404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29815, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=415027, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41918, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=415027, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18404]={ + ["next_chapter"]=18405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=419177, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42337, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=419177, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18405]={ + ["next_chapter"]=18406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90408, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29835, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=423369, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42760, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=423369, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18406]={ + ["next_chapter"]=18407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=427602, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43188, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=427602, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18407]={ + ["next_chapter"]=18408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90469, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=431879, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43620, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=431879, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18408]={ + ["next_chapter"]=18409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29865, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=436197, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44056, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=436197, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18409]={ + ["next_chapter"]=18410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29875, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=440559, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44496, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=440559, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=42531, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1840, + ["unit"]=0 + } + }, + [18410]={ + ["next_chapter"]=18411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=90561, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29885, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=444965, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44941, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=444965, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18411]={ + ["next_chapter"]=18412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=449415, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45391, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=449415, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18412]={ + ["next_chapter"]=18413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90622, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=453909, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45845, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=453909, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18413]={ + ["next_chapter"]=18414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=458448, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46303, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=458448, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18414]={ + ["next_chapter"]=18415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90683, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29925, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=463032, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46766, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=463032, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18415]={ + ["next_chapter"]=18416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=467663, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47234, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=467663, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18416]={ + ["next_chapter"]=18417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90744, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29945, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=472339, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47706, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=472339, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18417]={ + ["next_chapter"]=18418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90774, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29955, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=477063, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48183, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=477063, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18418]={ + ["next_chapter"]=18419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29966, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=481833, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48665, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=481833, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18419]={ + ["next_chapter"]=18420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29976, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=486652, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49152, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=486652, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=46980, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1841, + ["unit"]=0 + } + }, + [18420]={ + ["next_chapter"]=18421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=90866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=491518, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49643, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=491518, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18421]={ + ["next_chapter"]=18422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=29996, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=496433, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50140, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=496433, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18422]={ + ["next_chapter"]=18423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90927, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=501398, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50641, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=501398, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18423]={ + ["next_chapter"]=18424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90957, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=506412, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51148, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=506412, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18424]={ + ["next_chapter"]=18425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=90988, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30026, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=511476, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51659, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=511476, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18425]={ + ["next_chapter"]=18426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30036, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=516590, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52176, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=516590, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18426]={ + ["next_chapter"]=18427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=521756, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52697, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=521756, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18427]={ + ["next_chapter"]=18428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=526974, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53224, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=526974, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18428]={ + ["next_chapter"]=18429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91110, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30066, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=532244, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53757, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=532244, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18429]={ + ["next_chapter"]=18430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30077, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=537566, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54294, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=537566, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=51895, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1842, + ["unit"]=0 + } + }, + [18430]={ + ["next_chapter"]=18431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=91172, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=542942, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54837, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=542942, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18431]={ + ["next_chapter"]=18432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91202, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30097, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=548371, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55385, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=548371, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18432]={ + ["next_chapter"]=18433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91233, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=553855, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55939, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=553855, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18433]={ + ["next_chapter"]=18434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91264, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=559393, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56499, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=559393, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18434]={ + ["next_chapter"]=18435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91294, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=564987, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57064, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=564987, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18435]={ + ["next_chapter"]=18436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91325, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=570637, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57634, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=570637, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18436]={ + ["next_chapter"]=18437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91355, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30147, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=576344, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58211, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=576344, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18437]={ + ["next_chapter"]=18438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91386, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=582107, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58793, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=582107, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18438]={ + ["next_chapter"]=18439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=587928, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59381, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=587928, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18439]={ + ["next_chapter"]=18440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=593807, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59975, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=593807, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=57325, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1843, + ["unit"]=0 + } + }, + [18440]={ + ["next_chapter"]=18441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=91478, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30188, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=599745, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60574, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=599745, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18441]={ + ["next_chapter"]=18442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30198, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=605743, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61180, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=605743, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18442]={ + ["next_chapter"]=18443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91540, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30208, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=611800, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61792, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=611800, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18443]={ + ["next_chapter"]=18444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30218, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=617918, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62410, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=617918, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18444]={ + ["next_chapter"]=18445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91601, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=624097, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63034, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=624097, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18445]={ + ["next_chapter"]=18446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91632, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=630338, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63664, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=630338, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18446]={ + ["next_chapter"]=18447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30249, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=636642, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64301, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=636642, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18447]={ + ["next_chapter"]=18448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91693, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=643008, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64944, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=643008, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18448]={ + ["next_chapter"]=18449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91724, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30269, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=649438, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65593, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=649438, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18449]={ + ["next_chapter"]=18450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=655933, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66249, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=655933, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=63322, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1844, + ["unit"]=0 + } + }, + [18450]={ + ["next_chapter"]=18451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=91785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30289, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=662492, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66912, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=662492, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18451]={ + ["next_chapter"]=18452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91816, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30299, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=669117, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67581, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=669117, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18452]={ + ["next_chapter"]=18453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91847, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30309, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=675808, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68257, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=675808, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18453]={ + ["next_chapter"]=18454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30320, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=682566, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68939, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=682566, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18454]={ + ["next_chapter"]=18455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91909, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30330, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=689392, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69629, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=689392, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18455]={ + ["next_chapter"]=18456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91939, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30340, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=696286, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70325, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=696286, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18456]={ + ["next_chapter"]=18457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=91970, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30350, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=703249, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71028, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=703249, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18457]={ + ["next_chapter"]=18458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92001, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=710281, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71738, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=710281, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18458]={ + ["next_chapter"]=18459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=717384, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72456, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=717384, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18459]={ + ["next_chapter"]=18460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30381, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=724558, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73180, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=724558, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=69947, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1845, + ["unit"]=0 + } + }, + [18460]={ + ["next_chapter"]=18461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=92093, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30391, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=731803, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73912, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=731803, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18461]={ + ["next_chapter"]=18462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=739121, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74651, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=739121, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18462]={ + ["next_chapter"]=18463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92155, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=746513, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75398, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=746513, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18463]={ + ["next_chapter"]=18464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92186, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30421, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=753978, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76152, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=753978, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18464]={ + ["next_chapter"]=18465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92217, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30432, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=761518, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76913, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=761518, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18465]={ + ["next_chapter"]=18466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92248, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30442, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=769133, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77682, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=769133, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18466]={ + ["next_chapter"]=18467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30452, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=776824, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78459, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=776824, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18467]={ + ["next_chapter"]=18468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30462, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=784592, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79244, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=784592, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18468]={ + ["next_chapter"]=18469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92340, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=792438, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80036, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=792438, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18469]={ + ["next_chapter"]=18470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92371, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=800363, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80837, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=800363, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=77265, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1846, + ["unit"]=0 + } + }, + [18470]={ + ["next_chapter"]=18471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=92402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=808366, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81645, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=808366, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18471]={ + ["next_chapter"]=18472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92433, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=816450, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82461, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=816450, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18472]={ + ["next_chapter"]=18473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92464, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30513, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=824614, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83286, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=824614, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18473]={ + ["next_chapter"]=18474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30523, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=832861, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84119, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=832861, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18474]={ + ["next_chapter"]=18475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30533, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=841189, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84960, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=841189, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18475]={ + ["next_chapter"]=18476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92557, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=849601, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85810, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=849601, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18476]={ + ["next_chapter"]=18477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92587, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=858097, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86668, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=858097, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18477]={ + ["next_chapter"]=18478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92618, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=866678, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87534, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=866678, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18478]={ + ["next_chapter"]=18479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=875345, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88410, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=875345, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18479]={ + ["next_chapter"]=18480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92680, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=884098, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89294, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=884098, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=85349, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1847, + ["unit"]=0 + } + }, + [18480]={ + ["next_chapter"]=18481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=92711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30595, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=892939, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90187, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=892939, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18481]={ + ["next_chapter"]=18482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30605, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=901869, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91089, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=901869, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18482]={ + ["next_chapter"]=18483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92773, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30615, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=910887, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92000, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=910887, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18483]={ + ["next_chapter"]=18484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92804, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30625, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=919996, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92920, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=919996, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18484]={ + ["next_chapter"]=18485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30636, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=929196, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93849, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=929196, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18485]={ + ["next_chapter"]=18486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30646, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=938488, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94787, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=938488, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18486]={ + ["next_chapter"]=18487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=947873, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95735, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=947873, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18487]={ + ["next_chapter"]=18488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92928, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=957352, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96693, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=957352, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18488]={ + ["next_chapter"]=18489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92959, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=966925, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97659, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=966925, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18489]={ + ["next_chapter"]=18490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=92990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=976594, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98636, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=976594, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=94278, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1848, + ["unit"]=0 + } + }, + [18490]={ + ["next_chapter"]=18491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=93021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30697, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=986360, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99622, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=986360, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18491]={ + ["next_chapter"]=18492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93052, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=996224, + ["unit"]=25 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100619, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=996224, + ["unit"]=25 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18492]={ + ["next_chapter"]=18493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30718, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1006, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101625, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1006, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18493]={ + ["next_chapter"]=18494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93114, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30728, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1016, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102641, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1016, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18494]={ + ["next_chapter"]=18495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93146, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30738, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1026, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103667, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1026, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18495]={ + ["next_chapter"]=18496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30748, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1037, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104704, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1037, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18496]={ + ["next_chapter"]=18497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30759, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1047, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105751, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1047, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18497]={ + ["next_chapter"]=18498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93239, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1058, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106809, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1058, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18498]={ + ["next_chapter"]=18499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1068, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107877, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1068, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18499]={ + ["next_chapter"]=18500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30789, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1079, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108956, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1079, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=104142, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1849, + ["unit"]=0 + } + }, + [18500]={ + ["next_chapter"]=18501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=93332, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30800, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1090, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110045, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1090, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18501]={ + ["next_chapter"]=18502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93363, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30810, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1100, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111146, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1100, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18502]={ + ["next_chapter"]=18503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1111, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112257, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1111, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18503]={ + ["next_chapter"]=18504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30830, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1123, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113380, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1123, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18504]={ + ["next_chapter"]=18505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30841, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1134, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114513, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1134, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18505]={ + ["next_chapter"]=18506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1145, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115659, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1145, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18506]={ + ["next_chapter"]=18507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30861, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1157, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116815, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1157, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18507]={ + ["next_chapter"]=18508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93550, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1168, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117983, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1168, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18508]={ + ["next_chapter"]=18509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93581, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1180, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119163, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1180, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18509]={ + ["next_chapter"]=18510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93612, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30892, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1192, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120355, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1192, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=115038, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1850, + ["unit"]=0 + } + }, + [18510]={ + ["next_chapter"]=18511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=93643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30902, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1204, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121558, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1204, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18511]={ + ["next_chapter"]=18512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30913, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1216, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122774, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1216, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18512]={ + ["next_chapter"]=18513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93706, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30923, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1228, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124002, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1228, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18513]={ + ["next_chapter"]=18514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1240, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125242, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1240, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18514]={ + ["next_chapter"]=18515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1252, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126494, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1252, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18515]={ + ["next_chapter"]=18516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93799, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30954, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1265, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127759, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1265, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18516]={ + ["next_chapter"]=18517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93831, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30964, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1278, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129037, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1278, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18517]={ + ["next_chapter"]=18518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1290, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130327, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1290, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18518]={ + ["next_chapter"]=18519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1303, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131630, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1303, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18519]={ + ["next_chapter"]=18520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93924, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=30995, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1316, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132946, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1316, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=127073, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1851, + ["unit"]=0 + } + }, + [18520]={ + ["next_chapter"]=18521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=93955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1329, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=134276, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1329, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18521]={ + ["next_chapter"]=18522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=93987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1343, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135619, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1343, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18522]={ + ["next_chapter"]=18523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31026, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1356, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136975, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1356, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18523]={ + ["next_chapter"]=18524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31036, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1370, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138345, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1370, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18524]={ + ["next_chapter"]=18525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94080, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31047, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1383, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139728, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1383, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18525]={ + ["next_chapter"]=18526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94112, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1397, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141125, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1397, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18526]={ + ["next_chapter"]=18527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94143, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1411, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142537, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1411, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18527]={ + ["next_chapter"]=18528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31078, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1425, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143962, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1425, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18528]={ + ["next_chapter"]=18529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94206, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31088, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1440, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145402, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1440, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18529]={ + ["next_chapter"]=18530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1454, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146856, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1454, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=140368, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1852, + ["unit"]=0 + } + }, + [18530]={ + ["next_chapter"]=18531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=94268, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31109, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1469, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=148324, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1469, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18531]={ + ["next_chapter"]=18532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1483, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149807, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1483, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18532]={ + ["next_chapter"]=18533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1498, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=151305, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1498, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18533]={ + ["next_chapter"]=18534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94362, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1513, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152819, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1513, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18534]={ + ["next_chapter"]=18535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94394, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1528, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154347, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1528, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18535]={ + ["next_chapter"]=18536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31160, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1543, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155890, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1543, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18536]={ + ["next_chapter"]=18537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1559, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157449, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1559, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18537]={ + ["next_chapter"]=18538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94488, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1574, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159024, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1574, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18538]={ + ["next_chapter"]=18539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94519, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1590, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160614, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1590, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18539]={ + ["next_chapter"]=18540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94550, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1606, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=162220, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1606, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=155053, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1853, + ["unit"]=0 + } + }, + [18540]={ + ["next_chapter"]=18541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=94582, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31212, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1622, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163842, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1622, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18541]={ + ["next_chapter"]=18542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1638, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165481, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1638, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18542]={ + ["next_chapter"]=18543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94644, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31233, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1655, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=167135, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1655, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18543]={ + ["next_chapter"]=18544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94676, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31243, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1671, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168807, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1671, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18544]={ + ["next_chapter"]=18545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94707, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31253, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1688, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170495, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1688, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18545]={ + ["next_chapter"]=18546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31264, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1705, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=172200, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1705, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18546]={ + ["next_chapter"]=18547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31274, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1722, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173922, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1722, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18547]={ + ["next_chapter"]=18548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94802, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31285, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1739, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175661, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1739, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18548]={ + ["next_chapter"]=18549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1757, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177418, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1757, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18549]={ + ["next_chapter"]=18550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94864, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31305, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1774, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=179192, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1774, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=171275, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1854, + ["unit"]=0 + } + }, + [18550]={ + ["next_chapter"]=18551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=94896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31316, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1792, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180984, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1792, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18551]={ + ["next_chapter"]=18552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94927, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31326, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1810, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182794, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1810, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18552]={ + ["next_chapter"]=18553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94959, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31336, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1828, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184621, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1828, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18553]={ + ["next_chapter"]=18554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=94990, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31347, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1846, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186468, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1846, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18554]={ + ["next_chapter"]=18555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95022, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1865, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=188332, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1865, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18555]={ + ["next_chapter"]=18556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95053, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31368, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1883, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=190216, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1883, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18556]={ + ["next_chapter"]=18557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1902, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=192118, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1902, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18557]={ + ["next_chapter"]=18558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1921, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=194039, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1921, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18558]={ + ["next_chapter"]=18559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1940, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195979, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1940, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18559]={ + ["next_chapter"]=18560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95179, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31409, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1960, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197939, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1960, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=189194, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1855, + ["unit"]=0 + } + }, + [18560]={ + ["next_chapter"]=18561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=95211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31420, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1979, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199919, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1979, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18561]={ + ["next_chapter"]=18562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31430, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1999, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201918, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=1999, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18562]={ + ["next_chapter"]=18563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2019, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203937, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2019, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18563]={ + ["next_chapter"]=18564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95305, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2039, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205976, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2039, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18564]={ + ["next_chapter"]=18565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31461, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2060, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=208036, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2060, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18565]={ + ["next_chapter"]=18566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31472, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2080, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=210116, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2080, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18566]={ + ["next_chapter"]=18567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95400, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2101, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=212218, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2101, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18567]={ + ["next_chapter"]=18568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2122, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=214340, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2122, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18568]={ + ["next_chapter"]=18569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2143, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216483, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2143, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18569]={ + ["next_chapter"]=18570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31513, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2165, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218648, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2165, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=208988, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1856, + ["unit"]=0 + } + }, + [18570]={ + ["next_chapter"]=18571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=95526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2186, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220834, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2186, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18571]={ + ["next_chapter"]=18572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95558, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2208, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=223043, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2208, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18572]={ + ["next_chapter"]=18573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95589, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31545, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2230, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=225273, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2230, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18573]={ + ["next_chapter"]=18574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95621, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31555, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2253, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227526, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2253, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18574]={ + ["next_chapter"]=18575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95653, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2275, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229801, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2275, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18575]={ + ["next_chapter"]=18576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31576, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2298, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=232099, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2298, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18576]={ + ["next_chapter"]=18577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31586, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2321, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=234420, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2321, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18577]={ + ["next_chapter"]=18578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31597, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2344, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236764, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2344, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18578]={ + ["next_chapter"]=18579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31607, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2368, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=239132, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2368, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18579]={ + ["next_chapter"]=18580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95811, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31618, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2391, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=241523, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2391, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=230853, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1857, + ["unit"]=0 + } + }, + [18580]={ + ["next_chapter"]=18581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=95843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2415, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243939, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2415, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18581]={ + ["next_chapter"]=18582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95874, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31638, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2439, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=246378, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2439, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18582]={ + ["next_chapter"]=18583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2464, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248842, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2464, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18583]={ + ["next_chapter"]=18584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2488, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=251330, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2488, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18584]={ + ["next_chapter"]=18585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=95969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31670, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2513, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253844, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2513, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18585]={ + ["next_chapter"]=18586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96001, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31680, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2538, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=256382, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2538, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18586]={ + ["next_chapter"]=18587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31691, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2564, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258946, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2564, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18587]={ + ["next_chapter"]=18588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31701, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2589, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=261535, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2589, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18588]={ + ["next_chapter"]=18589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31712, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2615, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=264151, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2615, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18589]={ + ["next_chapter"]=18590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96128, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2642, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266792, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2642, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=255005, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1858, + ["unit"]=0 + } + }, + [18590]={ + ["next_chapter"]=18591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=96159, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2668, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=269460, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2668, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18591]={ + ["next_chapter"]=18592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96191, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2695, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=272155, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2695, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18592]={ + ["next_chapter"]=18593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31754, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2722, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274876, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2722, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18593]={ + ["next_chapter"]=18594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2749, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277625, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2749, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18594]={ + ["next_chapter"]=18595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2776, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=280401, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2776, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18595]={ + ["next_chapter"]=18596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96318, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2804, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=283205, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2804, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18596]={ + ["next_chapter"]=18597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96350, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31795, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2832, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=286037, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2832, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18597]={ + ["next_chapter"]=18598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2860, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288898, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2860, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18598]={ + ["next_chapter"]=18599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31816, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2889, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291787, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2889, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18599]={ + ["next_chapter"]=18600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31827, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2918, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=294704, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2918, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=281685, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1859, + ["unit"]=0 + } + }, + [18600]={ + ["next_chapter"]=18601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=96477, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2947, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=297652, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2947, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18601]={ + ["next_chapter"]=18602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2977, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=300628, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=2977, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18602]={ + ["next_chapter"]=18603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3006, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=303634, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3006, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18603]={ + ["next_chapter"]=18604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31869, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3036, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=306671, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3036, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18604]={ + ["next_chapter"]=18605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31879, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3067, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=309737, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3067, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18605]={ + ["next_chapter"]=18606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31890, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3097, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=312835, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3097, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18606]={ + ["next_chapter"]=18607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31900, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3128, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=315963, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3128, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18607]={ + ["next_chapter"]=18608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96700, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31911, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3160, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=319123, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3160, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18608]={ + ["next_chapter"]=18609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31921, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3191, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=322314, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3191, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18609]={ + ["next_chapter"]=18610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31932, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3223, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=325537, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3223, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=311155, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1860, + ["unit"]=0 + } + }, + [18610]={ + ["next_chapter"]=18611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=96795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31942, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3255, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328792, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3255, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18611]={ + ["next_chapter"]=18612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3288, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=332080, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3288, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18612]={ + ["next_chapter"]=18613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31964, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3321, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=335401, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3321, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18613]={ + ["next_chapter"]=18614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96891, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3354, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338755, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3354, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18614]={ + ["next_chapter"]=18615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96923, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31985, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3388, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=342143, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3388, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18615]={ + ["next_chapter"]=18616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=31995, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3421, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=345564, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3421, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18616]={ + ["next_chapter"]=18617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=96987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3456, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=349020, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3456, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18617]={ + ["next_chapter"]=18618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3490, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=352510, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3490, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18618]={ + ["next_chapter"]=18619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32027, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3525, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=356035, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3525, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18619]={ + ["next_chapter"]=18620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3560, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=359595, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3560, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=343709, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1861, + ["unit"]=0 + } + }, + [18620]={ + ["next_chapter"]=18621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=97114, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32048, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3596, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=363191, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3596, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18621]={ + ["next_chapter"]=18622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97146, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32058, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3632, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366823, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3632, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18622]={ + ["next_chapter"]=18623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97178, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3668, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=370492, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3668, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18623]={ + ["next_chapter"]=18624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32079, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3705, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=374196, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3705, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18624]={ + ["next_chapter"]=18625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3742, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=377938, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3742, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18625]={ + ["next_chapter"]=18626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3779, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=381718, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3779, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18626]={ + ["next_chapter"]=18627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3817, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=385535, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3817, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18627]={ + ["next_chapter"]=18628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32122, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3855, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=389390, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3855, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18628]={ + ["next_chapter"]=18629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97370, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32132, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3894, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=393284, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3894, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18629]={ + ["next_chapter"]=18630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32143, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3933, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=397217, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3933, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=379668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1862, + ["unit"]=0 + } + }, + [18630]={ + ["next_chapter"]=18631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=97434, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32153, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3972, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=401189, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=3972, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18631]={ + ["next_chapter"]=18632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97466, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32164, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4012, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=405201, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4012, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18632]={ + ["next_chapter"]=18633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97498, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32174, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4052, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=409253, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4052, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18633]={ + ["next_chapter"]=18634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32185, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4093, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=413346, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4093, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18634]={ + ["next_chapter"]=18635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32196, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4133, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=417479, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4133, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18635]={ + ["next_chapter"]=18636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97594, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4175, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=421654, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4175, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18636]={ + ["next_chapter"]=18637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97626, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4217, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=425871, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4217, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18637]={ + ["next_chapter"]=18638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32227, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4259, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=430129, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4259, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18638]={ + ["next_chapter"]=18639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4301, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=434431, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4301, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18639]={ + ["next_chapter"]=18640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97723, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32248, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4344, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=438775, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4344, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=419390, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1863, + ["unit"]=0 + } + }, + [18640]={ + ["next_chapter"]=18641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=97755, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4388, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=443163, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4388, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18641]={ + ["next_chapter"]=18642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97787, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4432, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=447594, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4432, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18642]={ + ["next_chapter"]=18643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32280, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4476, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=452070, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4476, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18643]={ + ["next_chapter"]=18644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97851, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4521, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=456591, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4521, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18644]={ + ["next_chapter"]=18645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32301, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4566, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=461157, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4566, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18645]={ + ["next_chapter"]=18646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97915, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32312, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4612, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=465768, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4612, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18646]={ + ["next_chapter"]=18647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4658, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=470426, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4658, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18647]={ + ["next_chapter"]=18648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=97979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32333, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4704, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=475130, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4704, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18648]={ + ["next_chapter"]=18649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98012, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32344, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4751, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=479882, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4751, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18649]={ + ["next_chapter"]=18650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32354, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4799, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=484680, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4799, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=463268, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1864, + ["unit"]=0 + } + }, + [18650]={ + ["next_chapter"]=18651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=98076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4847, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=489527, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4847, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18651]={ + ["next_chapter"]=18652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32376, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4895, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=494422, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4895, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18652]={ + ["next_chapter"]=18653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32386, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4944, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=499367, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4944, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18653]={ + ["next_chapter"]=18654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98172, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32397, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4994, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=504360, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=4994, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18654]={ + ["next_chapter"]=18655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32407, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5044, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=509404, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5044, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18655]={ + ["next_chapter"]=18656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32418, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5094, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=514498, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5094, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18656]={ + ["next_chapter"]=18657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32429, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5145, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=519643, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5145, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18657]={ + ["next_chapter"]=18658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5196, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=524839, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5196, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18658]={ + ["next_chapter"]=18659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98333, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5248, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=530088, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5248, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18659]={ + ["next_chapter"]=18660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98365, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32461, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5301, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=535389, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5301, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=511736, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1865, + ["unit"]=0 + } + }, + [18660]={ + ["next_chapter"]=18661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=98398, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5354, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=540743, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5354, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18661]={ + ["next_chapter"]=18662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98430, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32482, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5407, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=546150, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5407, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18662]={ + ["next_chapter"]=18663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98462, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5461, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=551611, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5461, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18663]={ + ["next_chapter"]=18664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98494, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5516, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=557128, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5516, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18664]={ + ["next_chapter"]=18665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5571, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=562699, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5571, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18665]={ + ["next_chapter"]=18666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98559, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5627, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=568326, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5627, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18666]={ + ["next_chapter"]=18667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32535, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5683, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=574009, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5683, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18667]={ + ["next_chapter"]=18668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98623, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32546, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5740, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=579749, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5740, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18668]={ + ["next_chapter"]=18669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5797, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=585547, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5797, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18669]={ + ["next_chapter"]=18670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32567, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5855, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=591402, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5855, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=565274, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1866, + ["unit"]=0 + } + }, + [18670]={ + ["next_chapter"]=18671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=98720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5914, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=597316, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5914, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18671]={ + ["next_chapter"]=18672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98752, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5973, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=603289, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=5973, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18672]={ + ["next_chapter"]=18673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98785, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32599, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6033, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=609322, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6033, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18673]={ + ["next_chapter"]=18674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98817, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32610, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6093, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=615415, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6093, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18674]={ + ["next_chapter"]=18675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32620, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6154, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=621570, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6154, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18675]={ + ["next_chapter"]=18676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98882, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32631, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6216, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=627785, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6216, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18676]={ + ["next_chapter"]=18677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6278, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=634063, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6278, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18677]={ + ["next_chapter"]=18678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98946, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32652, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6341, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=640404, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6341, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18678]={ + ["next_chapter"]=18679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=98979, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32663, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6404, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=646808, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6404, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18679]={ + ["next_chapter"]=18680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6468, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=653276, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6468, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=624415, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1867, + ["unit"]=0 + } + }, + [18680]={ + ["next_chapter"]=18681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=99043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32684, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6533, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=659809, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6533, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18681]={ + ["next_chapter"]=18682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6598, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=666407, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6598, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18682]={ + ["next_chapter"]=18683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99108, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6664, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=673071, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6664, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18683]={ + ["next_chapter"]=18684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6731, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=679802, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6731, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18684]={ + ["next_chapter"]=18685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32727, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6798, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=686600, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6798, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18685]={ + ["next_chapter"]=18686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99205, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32738, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6866, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=693466, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6866, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18686]={ + ["next_chapter"]=18687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32748, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6935, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=700400, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=6935, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18687]={ + ["next_chapter"]=18688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99270, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32759, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7004, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=707404, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7004, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18688]={ + ["next_chapter"]=18689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99303, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32770, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7074, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=714478, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7074, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18689]={ + ["next_chapter"]=18690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32781, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7145, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=721623, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7145, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=689742, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1868, + ["unit"]=0 + } + }, + [18690]={ + ["next_chapter"]=18691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=99367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32791, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7216, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=728839, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7216, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18691]={ + ["next_chapter"]=18692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99400, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32802, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7288, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=736128, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7288, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18692]={ + ["next_chapter"]=18693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32813, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7361, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=743489, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7361, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18693]={ + ["next_chapter"]=18694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99465, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7435, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=750924, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7435, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18694]={ + ["next_chapter"]=18695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99497, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32834, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7509, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=758433, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7509, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18695]={ + ["next_chapter"]=18696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7584, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=766017, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7584, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18696]={ + ["next_chapter"]=18697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7660, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=773678, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7660, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18697]={ + ["next_chapter"]=18698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32866, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7737, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=781414, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7737, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18698]={ + ["next_chapter"]=18699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99627, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7814, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=789228, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7814, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18699]={ + ["next_chapter"]=18700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32888, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7892, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=797121, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7892, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=761905, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1869, + ["unit"]=0 + } + }, + [18700]={ + ["next_chapter"]=18701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=99692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7971, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=805092, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=7971, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18701]={ + ["next_chapter"]=18702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8051, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=813143, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8051, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18702]={ + ["next_chapter"]=18703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99757, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8131, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=821274, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8131, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18703]={ + ["next_chapter"]=18704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8213, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=829487, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8213, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18704]={ + ["next_chapter"]=18705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99822, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8295, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=837782, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8295, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18705]={ + ["next_chapter"]=18706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32952, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8378, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=846160, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8378, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18706]={ + ["next_chapter"]=18707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32963, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8462, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=854621, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8462, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18707]={ + ["next_chapter"]=18708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32974, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8546, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=863168, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8546, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18708]={ + ["next_chapter"]=18709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32984, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8632, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=871799, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8632, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18709]={ + ["next_chapter"]=18710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=99985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=32995, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8718, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=880517, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8718, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=841617, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1870, + ["unit"]=0 + } + }, + [18710]={ + ["next_chapter"]=18711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=100017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8805, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=889322, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8805, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18711]={ + ["next_chapter"]=18712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100050, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8893, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=898216, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8893, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18712]={ + ["next_chapter"]=18713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33027, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8982, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=907198, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=8982, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18713]={ + ["next_chapter"]=18714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33038, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9072, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=916270, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9072, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18714]={ + ["next_chapter"]=18715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9163, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=925432, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9163, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18715]={ + ["next_chapter"]=18716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33060, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9254, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=934687, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9254, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18716]={ + ["next_chapter"]=18717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100213, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9347, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=944034, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9347, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18717]={ + ["next_chapter"]=18718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33081, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9440, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=953474, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9440, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18718]={ + ["next_chapter"]=18719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33092, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9535, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=963009, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9535, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18719]={ + ["next_chapter"]=18720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100311, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9630, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=972639, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9630, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=929668, + ["unit"]=26 + }, + ["grasp_mastery_reward"]={ + ["value"]=1871, + ["unit"]=0 + } + }, + [18720]={ + ["next_chapter"]=18721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=100344, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9726, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=982365, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9726, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18721]={ + ["next_chapter"]=18722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100376, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9824, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=992189, + ["unit"]=26 + }, + ["idle_gold"]={ + ["value"]=9824, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18722]={ + ["next_chapter"]=18723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33135, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9922, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1002, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9922, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18723]={ + ["next_chapter"]=18724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100441, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33146, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10021, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1012, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10021, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18724]={ + ["next_chapter"]=18725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10121, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1022, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10121, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18725]={ + ["next_chapter"]=18726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33167, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10223, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1032, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10223, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18726]={ + ["next_chapter"]=18727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100540, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10325, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1043, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10325, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18727]={ + ["next_chapter"]=18728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100572, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10428, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1053, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10428, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18728]={ + ["next_chapter"]=18729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33200, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10532, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1064, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10532, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18729]={ + ["next_chapter"]=18730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100638, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33210, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10638, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1074, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10638, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1027, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1872, + ["unit"]=0 + } + }, + [18730]={ + ["next_chapter"]=18731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=100670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33221, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10744, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1085, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10744, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18731]={ + ["next_chapter"]=18732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100703, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33232, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10851, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1096, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10851, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18732]={ + ["next_chapter"]=18733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33243, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10960, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1107, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=10960, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18733]={ + ["next_chapter"]=18734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11070, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1118, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11070, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18734]={ + ["next_chapter"]=18735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33264, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11180, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1129, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11180, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18735]={ + ["next_chapter"]=18736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100834, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33275, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11292, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1140, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11292, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18736]={ + ["next_chapter"]=18737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33286, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11405, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1152, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11405, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18737]={ + ["next_chapter"]=18738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11519, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1163, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11519, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18738]={ + ["next_chapter"]=18739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100932, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11634, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1175, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11634, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18739]={ + ["next_chapter"]=18740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=100965, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33318, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11751, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1187, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11751, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1134, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1873, + ["unit"]=0 + } + }, + [18740]={ + ["next_chapter"]=18741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=100998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33329, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11868, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1199, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11868, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18741]={ + ["next_chapter"]=18742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101031, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33340, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11987, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1211, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=11987, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18742]={ + ["next_chapter"]=18743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101063, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33351, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12107, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1223, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=12107, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18743]={ + ["next_chapter"]=18744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101096, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12228, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1235, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=12228, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18744]={ + ["next_chapter"]=18745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101129, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12350, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1247, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=12350, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18745]={ + ["next_chapter"]=18746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33383, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12473, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1260, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=12473, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18746]={ + ["next_chapter"]=18747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33394, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12598, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1272, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=12598, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18747]={ + ["next_chapter"]=18748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101227, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12724, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1285, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=12724, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18748]={ + ["next_chapter"]=18749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12851, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1298, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=12851, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18749]={ + ["next_chapter"]=18750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33427, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12980, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1311, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=12980, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1253, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1874, + ["unit"]=0 + } + }, + [18750]={ + ["next_chapter"]=18751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=101326, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33438, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13110, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1324, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=13110, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18751]={ + ["next_chapter"]=18752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101359, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33448, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13241, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1337, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=13241, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18752]={ + ["next_chapter"]=18753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13373, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1351, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=13373, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18753]={ + ["next_chapter"]=18754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33470, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13507, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1364, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=13507, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18754]={ + ["next_chapter"]=18755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101457, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33481, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13642, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1378, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=13642, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18755]={ + ["next_chapter"]=18756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101490, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33492, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13778, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1392, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=13778, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18756]={ + ["next_chapter"]=18757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13916, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1406, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=13916, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18757]={ + ["next_chapter"]=18758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14055, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1420, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=14055, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18758]={ + ["next_chapter"]=18759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101589, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33524, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14196, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1434, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=14196, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18759]={ + ["next_chapter"]=18760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101622, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33535, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14338, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1448, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=14338, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1384, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1875, + ["unit"]=0 + } + }, + [18760]={ + ["next_chapter"]=18761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=101655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33546, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14481, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1463, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=14481, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18761]={ + ["next_chapter"]=18762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33557, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14626, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1477, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=14626, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18762]={ + ["next_chapter"]=18763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101721, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33568, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14772, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1492, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=14772, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18763]={ + ["next_chapter"]=18764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33579, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14920, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1507, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=14920, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18764]={ + ["next_chapter"]=18765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101787, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33590, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15069, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1522, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=15069, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18765]={ + ["next_chapter"]=18766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15220, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1537, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=15220, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18766]={ + ["next_chapter"]=18767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101853, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33611, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15372, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1553, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=15372, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18767]={ + ["next_chapter"]=18768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101886, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15526, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1568, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=15526, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18768]={ + ["next_chapter"]=18769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101919, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15681, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1584, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=15681, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18769]={ + ["next_chapter"]=18770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=101952, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15838, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1600, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=15838, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1529, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1876, + ["unit"]=0 + } + }, + [18770]={ + ["next_chapter"]=18771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=101985, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33655, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15996, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1616, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=15996, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18771]={ + ["next_chapter"]=18772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16156, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1632, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=16156, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18772]={ + ["next_chapter"]=18773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16318, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1648, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=16318, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18773]={ + ["next_chapter"]=18774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102084, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33688, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16481, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1665, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=16481, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18774]={ + ["next_chapter"]=18775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33698, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16646, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1681, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=16646, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18775]={ + ["next_chapter"]=18776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102150, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33709, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16812, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1698, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=16812, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18776]={ + ["next_chapter"]=18777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33720, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16980, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1715, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=16980, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18777]={ + ["next_chapter"]=18778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33731, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17150, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1732, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=17150, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18778]={ + ["next_chapter"]=18779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102249, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33742, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17322, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1749, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=17322, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18779]={ + ["next_chapter"]=18780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102282, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17495, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1767, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=17495, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1689, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1877, + ["unit"]=0 + } + }, + [18780]={ + ["next_chapter"]=18781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=102315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33764, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17670, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1785, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=17670, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18781]={ + ["next_chapter"]=18782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17847, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1803, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=17847, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18782]={ + ["next_chapter"]=18783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102381, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33786, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18025, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1821, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=18025, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18783]={ + ["next_chapter"]=18784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33797, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18205, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1839, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=18205, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18784]={ + ["next_chapter"]=18785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102447, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33808, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18387, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1857, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=18387, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18785]={ + ["next_chapter"]=18786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102480, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18571, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1876, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=18571, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18786]={ + ["next_chapter"]=18787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33829, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18757, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1894, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=18757, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18787]={ + ["next_chapter"]=18788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102547, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33840, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18945, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1913, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=18945, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18788]={ + ["next_chapter"]=18789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102580, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19134, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1933, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=19134, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18789]={ + ["next_chapter"]=18790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102613, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33862, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19325, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1952, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=19325, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=1866, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1878, + ["unit"]=0 + } + }, + [18790]={ + ["next_chapter"]=18791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=102646, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33873, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19519, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1971, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=19519, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18791]={ + ["next_chapter"]=18792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102679, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33884, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19714, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1991, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=19714, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18792]={ + ["next_chapter"]=18793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19911, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2011, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=19911, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18793]={ + ["next_chapter"]=18794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102745, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33906, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20110, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2031, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=20110, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18794]={ + ["next_chapter"]=18795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33917, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20311, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2051, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=20311, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18795]={ + ["next_chapter"]=18796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102812, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20514, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2072, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=20514, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18796]={ + ["next_chapter"]=18797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33939, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20719, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2093, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=20719, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18797]={ + ["next_chapter"]=18798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33950, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20927, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2114, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=20927, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18798]={ + ["next_chapter"]=18799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102911, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33961, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21136, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2135, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=21136, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18799]={ + ["next_chapter"]=18800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=102944, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33972, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21347, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2156, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=21347, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2061, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1879, + ["unit"]=0 + } + }, + [18800]={ + ["next_chapter"]=18801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=102978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33983, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21561, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2178, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=21561, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18801]={ + ["next_chapter"]=18802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=33994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21776, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2199, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=21776, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18802]={ + ["next_chapter"]=18803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21994, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2221, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=21994, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18803]={ + ["next_chapter"]=18804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22214, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2244, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=22214, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18804]={ + ["next_chapter"]=18805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34026, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22436, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2266, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=22436, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18805]={ + ["next_chapter"]=18806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22660, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2289, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=22660, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18806]={ + ["next_chapter"]=18807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34048, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22887, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2312, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=22887, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18807]={ + ["next_chapter"]=18808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23116, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2335, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=23116, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18808]={ + ["next_chapter"]=18809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103244, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23347, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2358, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=23347, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18809]={ + ["next_chapter"]=18810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103277, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34081, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23581, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2382, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=23581, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2276, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1880, + ["unit"]=0 + } + }, + [18810]={ + ["next_chapter"]=18811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=103310, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34092, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23816, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2405, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=23816, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18811]={ + ["next_chapter"]=18812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103343, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34103, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24055, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2430, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=24055, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18812]={ + ["next_chapter"]=18813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34114, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24295, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2454, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=24295, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18813]={ + ["next_chapter"]=18814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103410, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34125, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24538, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2478, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=24538, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18814]={ + ["next_chapter"]=18815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34136, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24783, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2503, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=24783, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18815]={ + ["next_chapter"]=18816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103477, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34147, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25031, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2528, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=25031, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18816]={ + ["next_chapter"]=18817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25282, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2553, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=25282, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18817]={ + ["next_chapter"]=18818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34169, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25534, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2579, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=25534, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18818]={ + ["next_chapter"]=18819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103577, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34180, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25790, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2605, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=25790, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18819]={ + ["next_chapter"]=18820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103610, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26048, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2631, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=26048, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2515, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1881, + ["unit"]=0 + } + }, + [18820]={ + ["next_chapter"]=18821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=103643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26308, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2657, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=26308, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18821]={ + ["next_chapter"]=18822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34213, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26571, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2684, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=26571, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18822]={ + ["next_chapter"]=18823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103710, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34224, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26837, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2711, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=26837, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18823]={ + ["next_chapter"]=18824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103743, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34235, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27105, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2738, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=27105, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18824]={ + ["next_chapter"]=18825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103777, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34246, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27376, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2765, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=27376, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18825]={ + ["next_chapter"]=18826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34257, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27650, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2793, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=27650, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18826]={ + ["next_chapter"]=18827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27927, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2821, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=27927, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18827]={ + ["next_chapter"]=18828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28206, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2849, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=28206, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18828]={ + ["next_chapter"]=18829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34290, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28488, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2877, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=28488, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18829]={ + ["next_chapter"]=18830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=103944, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34301, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28773, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2906, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=28773, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=2778, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1882, + ["unit"]=0 + } + }, + [18830]={ + ["next_chapter"]=18831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=103977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34313, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29060, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2935, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=29060, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18831]={ + ["next_chapter"]=18832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34324, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29351, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2964, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=29351, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18832]={ + ["next_chapter"]=18833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29645, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2994, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=29645, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18833]={ + ["next_chapter"]=18834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29941, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3024, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=29941, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18834]={ + ["next_chapter"]=18835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30240, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3054, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=30240, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18835]={ + ["next_chapter"]=18836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34368, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30543, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3085, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=30543, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18836]={ + ["next_chapter"]=18837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104178, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34379, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30848, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3116, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=30848, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18837]={ + ["next_chapter"]=18838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104211, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34390, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31157, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3147, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=31157, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18838]={ + ["next_chapter"]=18839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31468, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3178, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=31468, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18839]={ + ["next_chapter"]=18840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31783, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3210, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=31783, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3068, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1883, + ["unit"]=0 + } + }, + [18840]={ + ["next_chapter"]=18841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=104312, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32101, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3242, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=32101, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18841]={ + ["next_chapter"]=18842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34434, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32422, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3275, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=32422, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18842]={ + ["next_chapter"]=18843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104379, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32746, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3307, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=32746, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18843]={ + ["next_chapter"]=18844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104412, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34456, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33074, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3340, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=33074, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18844]={ + ["next_chapter"]=18845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104446, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34467, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33404, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3374, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=33404, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18845]={ + ["next_chapter"]=18846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34478, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33738, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3408, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=33738, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18846]={ + ["next_chapter"]=18847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34489, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34076, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3442, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=34076, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18847]={ + ["next_chapter"]=18848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104547, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34416, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3476, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=34416, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18848]={ + ["next_chapter"]=18849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104580, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34511, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34761, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3511, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=34761, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18849]={ + ["next_chapter"]=18850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104614, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34523, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35108, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3546, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=35108, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3389, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1884, + ["unit"]=0 + } + }, + [18850]={ + ["next_chapter"]=18851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=104647, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35459, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3581, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=35459, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18851]={ + ["next_chapter"]=18852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104681, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34545, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35814, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3617, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=35814, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18852]={ + ["next_chapter"]=18853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104714, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36172, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3653, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=36172, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18853]={ + ["next_chapter"]=18854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34567, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36534, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3690, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=36534, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18854]={ + ["next_chapter"]=18855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104782, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36899, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3727, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=36899, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18855]={ + ["next_chapter"]=18856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37268, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3764, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=37268, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18856]={ + ["next_chapter"]=18857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104849, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37641, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3802, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=37641, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18857]={ + ["next_chapter"]=18858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104882, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34611, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38017, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3840, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=38017, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18858]={ + ["next_chapter"]=18859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104916, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38397, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3878, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=38397, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18859]={ + ["next_chapter"]=18860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=104950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38781, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3917, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=38781, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=3744, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1885, + ["unit"]=0 + } + }, + [18860]={ + ["next_chapter"]=18861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=104983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39169, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3956, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=39169, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18861]={ + ["next_chapter"]=18862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39561, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3996, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=39561, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18862]={ + ["next_chapter"]=18863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34667, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39956, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4036, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=39956, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18863]={ + ["next_chapter"]=18864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105084, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34678, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40356, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4076, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=40356, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18864]={ + ["next_chapter"]=18865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105118, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34689, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40760, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4117, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=40760, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18865]={ + ["next_chapter"]=18866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105152, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34700, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41167, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4158, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=41167, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18866]={ + ["next_chapter"]=18867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34711, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41579, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4199, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=41579, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18867]={ + ["next_chapter"]=18868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105219, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34722, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41995, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4241, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=41995, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18868]={ + ["next_chapter"]=18869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42415, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4284, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=42415, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18869]={ + ["next_chapter"]=18870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105286, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34745, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42839, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4327, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=42839, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4136, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1886, + ["unit"]=0 + } + }, + [18870]={ + ["next_chapter"]=18871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=105320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34756, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43267, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4370, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=43267, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18871]={ + ["next_chapter"]=18872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105354, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34767, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43700, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4414, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=43700, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18872]={ + ["next_chapter"]=18873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105388, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34778, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44137, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4458, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=44137, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18873]={ + ["next_chapter"]=18874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34789, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44578, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4502, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=44578, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18874]={ + ["next_chapter"]=18875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34800, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45024, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4547, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=45024, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18875]={ + ["next_chapter"]=18876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45474, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4593, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=45474, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18876]={ + ["next_chapter"]=18877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34822, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45929, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4639, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=45929, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18877]={ + ["next_chapter"]=18878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34834, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46388, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4685, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=46388, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18878]={ + ["next_chapter"]=18879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46852, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4732, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=46852, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18879]={ + ["next_chapter"]=18880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47321, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4779, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=47321, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=4568, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1887, + ["unit"]=0 + } + }, + [18880]={ + ["next_chapter"]=18881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=105658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34867, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47794, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4827, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=47794, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18881]={ + ["next_chapter"]=18882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48272, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4875, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=48272, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18882]={ + ["next_chapter"]=18883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105725, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34889, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48754, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4924, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=48754, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18883]={ + ["next_chapter"]=18884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34900, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49242, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4973, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=49242, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18884]={ + ["next_chapter"]=18885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105793, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34912, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49734, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5023, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=49734, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18885]={ + ["next_chapter"]=18886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34923, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50232, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5073, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=50232, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18886]={ + ["next_chapter"]=18887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105860, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34934, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50734, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5124, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=50734, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18887]={ + ["next_chapter"]=18888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105894, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34945, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51241, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5175, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=51241, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18888]={ + ["next_chapter"]=18889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105928, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34956, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51754, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5227, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=51754, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18889]={ + ["next_chapter"]=18890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=105962, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52271, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5279, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=52271, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5046, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1888, + ["unit"]=0 + } + }, + [18890]={ + ["next_chapter"]=18891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=105996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34979, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52794, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5332, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=52794, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18891]={ + ["next_chapter"]=18892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=34990, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53322, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5386, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=53322, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18892]={ + ["next_chapter"]=18893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35001, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53855, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5439, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=53855, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18893]={ + ["next_chapter"]=18894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54394, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5494, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=54394, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18894]={ + ["next_chapter"]=18895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35023, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54938, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5549, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=54938, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18895]={ + ["next_chapter"]=18896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106165, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35035, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55487, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5604, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=55487, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18896]={ + ["next_chapter"]=18897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56042, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5660, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=56042, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18897]={ + ["next_chapter"]=18898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106233, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56602, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5717, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=56602, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18898]={ + ["next_chapter"]=18899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35068, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57168, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5774, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=57168, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18899]={ + ["next_chapter"]=18900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35079, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57740, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5832, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=57740, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=5574, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1889, + ["unit"]=0 + } + }, + [18900]={ + ["next_chapter"]=18901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=106335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35090, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58317, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5890, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=58317, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18901]={ + ["next_chapter"]=18902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35102, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58901, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5949, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=58901, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18902]={ + ["next_chapter"]=18903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59490, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6008, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=59490, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18903]={ + ["next_chapter"]=18904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106437, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60085, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6069, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=60085, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18904]={ + ["next_chapter"]=18905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106471, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35135, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60685, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6129, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=60685, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18905]={ + ["next_chapter"]=18906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106504, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35146, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61292, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6191, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=61292, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18906]={ + ["next_chapter"]=18907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106538, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61905, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6252, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=61905, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18907]={ + ["next_chapter"]=18908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106572, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35169, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62524, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6315, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=62524, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18908]={ + ["next_chapter"]=18909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106606, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35180, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63149, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6378, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=63149, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18909]={ + ["next_chapter"]=18910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106640, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63781, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6442, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=63781, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6157, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + [18910]={ + ["next_chapter"]=18911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=106674, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35203, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64419, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6506, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=64419, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18911]={ + ["next_chapter"]=18912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35214, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65063, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6571, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=65063, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18912]={ + ["next_chapter"]=18913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35225, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65714, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6637, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=65714, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18913]={ + ["next_chapter"]=18914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35236, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66371, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6703, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=66371, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18914]={ + ["next_chapter"]=18915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106810, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67034, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6770, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=67034, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18915]={ + ["next_chapter"]=18916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67705, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6838, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=67705, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18916]={ + ["next_chapter"]=18917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106879, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35270, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68382, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6907, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=68382, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18917]={ + ["next_chapter"]=18918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106913, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69066, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6976, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=69066, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18918]={ + ["next_chapter"]=18919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35292, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69756, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7045, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=69756, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18919]={ + ["next_chapter"]=18920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=106981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35304, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70454, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7116, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=70454, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=6801, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1891, + ["unit"]=0 + } + }, + [18920]={ + ["next_chapter"]=18921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=107015, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35315, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71158, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7187, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=71158, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18921]={ + ["next_chapter"]=18922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35326, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71870, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7259, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=71870, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18922]={ + ["next_chapter"]=18923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107083, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72589, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7331, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=72589, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18923]={ + ["next_chapter"]=18924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35349, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73315, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7405, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=73315, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18924]={ + ["next_chapter"]=18925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107151, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74048, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7479, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=74048, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18925]={ + ["next_chapter"]=18926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35371, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74788, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7554, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=74788, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18926]={ + ["next_chapter"]=18927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107219, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75536, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7629, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=75536, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18927]={ + ["next_chapter"]=18928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35394, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76291, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7705, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=76291, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18928]={ + ["next_chapter"]=18929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107288, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77054, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7782, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=77054, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18929]={ + ["next_chapter"]=18930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107322, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77825, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7860, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=77825, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=7513, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1892, + ["unit"]=0 + } + }, + [18930]={ + ["next_chapter"]=18931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=107356, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35427, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78603, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7939, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=78603, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18931]={ + ["next_chapter"]=18932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79389, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8018, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=79389, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18932]={ + ["next_chapter"]=18933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107424, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80183, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8098, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=80183, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18933]={ + ["next_chapter"]=18934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107458, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35461, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80985, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8179, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=80985, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18934]={ + ["next_chapter"]=18935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81795, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8261, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=81795, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18935]={ + ["next_chapter"]=18936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107527, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35484, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82613, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8344, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=82613, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18936]={ + ["next_chapter"]=18937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107561, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35495, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83439, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8427, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=83439, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18937]={ + ["next_chapter"]=18938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35506, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84273, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8512, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=84273, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18938]={ + ["next_chapter"]=18939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107629, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85116, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8597, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=85116, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18939]={ + ["next_chapter"]=18940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107664, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35529, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85967, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8683, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=85967, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=8299, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1893, + ["unit"]=0 + } + }, + [18940]={ + ["next_chapter"]=18941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=107698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35540, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86827, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8770, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=86827, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18941]={ + ["next_chapter"]=18942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107732, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35552, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87695, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8857, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=87695, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18942]={ + ["next_chapter"]=18943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107766, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35563, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88572, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8946, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=88572, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18943]={ + ["next_chapter"]=18944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107800, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89458, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9035, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=89458, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18944]={ + ["next_chapter"]=18945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35585, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90352, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9126, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=90352, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18945]={ + ["next_chapter"]=18946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107869, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35597, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91256, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9217, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=91256, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18946]={ + ["next_chapter"]=18947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92168, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9309, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=92168, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18947]={ + ["next_chapter"]=18948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35619, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93090, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9402, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=93090, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18948]={ + ["next_chapter"]=18949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=107972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35631, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94021, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9496, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=94021, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18949]={ + ["next_chapter"]=18950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108006, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35642, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94961, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9591, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=94961, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=9167, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1894, + ["unit"]=0 + } + }, + [18950]={ + ["next_chapter"]=18951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=108040, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35653, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95911, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9687, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=95911, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18951]={ + ["next_chapter"]=18952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96870, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9784, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=96870, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18952]={ + ["next_chapter"]=18953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108109, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97839, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9882, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=97839, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18953]={ + ["next_chapter"]=18954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108143, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98817, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9981, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=98817, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18954]={ + ["next_chapter"]=18955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108178, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99805, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10080, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=99805, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18955]={ + ["next_chapter"]=18956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35710, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100803, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10181, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=100803, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18956]={ + ["next_chapter"]=18957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108246, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35721, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101811, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10283, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=101811, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18957]={ + ["next_chapter"]=18958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108281, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35733, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102829, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10386, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=102829, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18958]={ + ["next_chapter"]=18959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108315, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35744, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103858, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10490, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=103858, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18959]={ + ["next_chapter"]=18960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35755, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104896, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10595, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=104896, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=10126, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1895, + ["unit"]=0 + } + }, + [18960]={ + ["next_chapter"]=18961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=108384, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35767, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105945, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10700, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=105945, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18961]={ + ["next_chapter"]=18962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35778, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107005, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10807, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=107005, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18962]={ + ["next_chapter"]=18963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108452, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35789, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108075, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10916, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=108075, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18963]={ + ["next_chapter"]=18964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35801, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=109155, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11025, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=109155, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18964]={ + ["next_chapter"]=18965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108521, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110247, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11135, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=110247, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18965]={ + ["next_chapter"]=18966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111349, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11246, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=111349, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18966]={ + ["next_chapter"]=18967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35835, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112463, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11359, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=112463, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18967]={ + ["next_chapter"]=18968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35846, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113588, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11472, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=113588, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18968]={ + ["next_chapter"]=18969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108659, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35857, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114723, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11587, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=114723, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18969]={ + ["next_chapter"]=18970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108693, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35869, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115871, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11703, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=115871, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=11186, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1896, + ["unit"]=0 + } + }, + [18970]={ + ["next_chapter"]=18971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=108728, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117029, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11820, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=117029, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18971]={ + ["next_chapter"]=18972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108762, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=118200, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11938, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=118200, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18972]={ + ["next_chapter"]=18973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108796, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35903, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119382, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12058, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=119382, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18973]={ + ["next_chapter"]=18974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108831, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35914, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120576, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12178, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=120576, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18974]={ + ["next_chapter"]=18975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108865, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35926, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121781, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12300, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=121781, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18975]={ + ["next_chapter"]=18976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35937, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122999, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12423, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=122999, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18976]={ + ["next_chapter"]=18977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108934, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35948, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=124229, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12547, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=124229, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18977]={ + ["next_chapter"]=18978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=108969, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35960, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125471, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12673, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=125471, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18978]={ + ["next_chapter"]=18979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109003, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35971, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126726, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12799, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=126726, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18979]={ + ["next_chapter"]=18980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109038, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35982, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127993, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12927, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=127993, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=12356, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1897, + ["unit"]=0 + } + }, + [18980]={ + ["next_chapter"]=18981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=109072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=35994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=129273, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13057, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=129273, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18981]={ + ["next_chapter"]=18982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109107, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130566, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13187, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=130566, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18982]={ + ["next_chapter"]=18983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109141, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131872, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13319, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=131872, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18983]={ + ["next_chapter"]=18984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109176, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36028, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=133190, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13452, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=133190, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18984]={ + ["next_chapter"]=18985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36039, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134522, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13587, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=134522, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18985]={ + ["next_chapter"]=18986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109245, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36051, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=135868, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13723, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=135868, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18986]={ + ["next_chapter"]=18987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36062, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=137226, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13860, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=137226, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18987]={ + ["next_chapter"]=18988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109314, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36074, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138598, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13998, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=138598, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18988]={ + ["next_chapter"]=18989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=139984, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14138, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=139984, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18989]={ + ["next_chapter"]=18990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=141384, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14280, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=141384, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=13649, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1898, + ["unit"]=0 + } + }, + [18990]={ + ["next_chapter"]=18991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=109418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36108, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142798, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14423, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=142798, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18991]={ + ["next_chapter"]=18992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109452, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36119, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=144226, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14567, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=144226, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18992]={ + ["next_chapter"]=18993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36131, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145668, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14713, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=145668, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18993]={ + ["next_chapter"]=18994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109522, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=147125, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14860, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=147125, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18994]={ + ["next_chapter"]=18995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109556, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=148596, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15008, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=148596, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18995]={ + ["next_chapter"]=18996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109591, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=150082, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15158, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=150082, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18996]={ + ["next_chapter"]=18997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=151583, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15310, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=151583, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18997]={ + ["next_chapter"]=18998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36188, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=153099, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15463, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=153099, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18998]={ + ["next_chapter"]=18999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36199, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=154630, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15618, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=154630, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [18999]={ + ["next_chapter"]=19000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109729, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36211, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=156176, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15774, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=156176, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=15077, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1899, + ["unit"]=0 + } + }, + [19000]={ + ["next_chapter"]=19001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=109764, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36222, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=157738, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15932, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=157738, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19001]={ + ["next_chapter"]=19002, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109799, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36234, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=159315, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16091, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=159315, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19002]={ + ["next_chapter"]=19003, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36245, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=160909, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16252, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=160909, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19003]={ + ["next_chapter"]=19004, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=162518, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16414, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=162518, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19004]={ + ["next_chapter"]=19005, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=164143, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16578, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=164143, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19005]={ + ["next_chapter"]=19006, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=165784, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16744, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=165784, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19006]={ + ["next_chapter"]=19007, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=109972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=167442, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16912, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=167442, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19007]={ + ["next_chapter"]=19008, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110007, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36302, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=169116, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17081, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=169116, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19008]={ + ["next_chapter"]=19009, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110041, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=170808, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17252, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=170808, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19009]={ + ["next_chapter"]=19010, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=172516, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17424, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=172516, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=16654, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1900, + ["unit"]=0 + } + }, + [19010]={ + ["next_chapter"]=19011, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=110111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=174241, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17598, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=174241, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19011]={ + ["next_chapter"]=19012, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110146, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36348, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=175983, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17774, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=175983, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19012]={ + ["next_chapter"]=19013, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110180, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36360, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=177743, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17952, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=177743, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19013]={ + ["next_chapter"]=19014, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36371, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=179521, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18132, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=179521, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19014]={ + ["next_chapter"]=19015, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110250, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36382, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=181316, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18313, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=181316, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19015]={ + ["next_chapter"]=19016, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110285, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36394, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=183129, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18496, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=183129, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19016]={ + ["next_chapter"]=19017, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36405, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=184960, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18681, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=184960, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19017]={ + ["next_chapter"]=19018, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110354, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=186810, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18868, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=186810, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19018]={ + ["next_chapter"]=19019, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36428, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=188678, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19056, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=188678, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19019]={ + ["next_chapter"]=19020, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110424, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36440, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=190565, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19247, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=190565, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=18397, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1901, + ["unit"]=0 + } + }, + [19020]={ + ["next_chapter"]=19021, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=110459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=192470, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19440, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=192470, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19021]={ + ["next_chapter"]=19022, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=194395, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19634, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=194395, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19022]={ + ["next_chapter"]=19023, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36474, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=196339, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19830, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=196339, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19023]={ + ["next_chapter"]=19024, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36486, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=198302, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20029, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=198302, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19024]={ + ["next_chapter"]=19025, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110598, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36497, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=200285, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20229, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=200285, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19025]={ + ["next_chapter"]=19026, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36509, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=202288, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20431, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=202288, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19026]={ + ["next_chapter"]=19027, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=204311, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20635, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=204311, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19027]={ + ["next_chapter"]=19028, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110702, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36532, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=206354, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20842, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=206354, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19028]={ + ["next_chapter"]=19029, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110737, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36543, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=208418, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21050, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=208418, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19029]={ + ["next_chapter"]=19030, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110772, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36555, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=210502, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21261, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=210502, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=20321, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1902, + ["unit"]=0 + } + }, + [19030]={ + ["next_chapter"]=19031, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=110807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36566, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=212607, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21473, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=212607, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19031]={ + ["next_chapter"]=19032, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=214733, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21688, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=214733, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19032]={ + ["next_chapter"]=19033, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=216880, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21905, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=216880, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19033]={ + ["next_chapter"]=19034, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110912, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=219049, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22124, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=219049, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19034]={ + ["next_chapter"]=19035, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110947, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=221240, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22345, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=221240, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19035]={ + ["next_chapter"]=19036, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=110981, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36624, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=223452, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22569, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=223452, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19036]={ + ["next_chapter"]=19037, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111016, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=225687, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22794, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=225687, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19037]={ + ["next_chapter"]=19038, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36647, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=227943, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23022, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=227943, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19038]={ + ["next_chapter"]=19039, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111086, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=230223, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23253, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=230223, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19039]={ + ["next_chapter"]=19040, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111121, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36670, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=232525, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23485, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=232525, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=22447, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1903, + ["unit"]=0 + } + }, + [19040]={ + ["next_chapter"]=19041, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=111156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=234850, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23720, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=234850, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19041]={ + ["next_chapter"]=19042, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111191, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36693, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=237199, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23957, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=237199, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19042]={ + ["next_chapter"]=19043, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111226, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36705, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=239571, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24197, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=239571, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19043]={ + ["next_chapter"]=19044, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111261, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36716, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=241967, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24439, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=241967, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19044]={ + ["next_chapter"]=19045, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36728, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=244386, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24683, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=244386, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19045]={ + ["next_chapter"]=19046, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36739, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=246830, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24930, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=246830, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19046]={ + ["next_chapter"]=19047, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=249298, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25179, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=249298, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19047]={ + ["next_chapter"]=19048, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111401, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36762, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=251791, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25431, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=251791, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19048]={ + ["next_chapter"]=19049, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111436, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36774, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=254309, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25685, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=254309, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19049]={ + ["next_chapter"]=19050, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111471, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=256852, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25942, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=256852, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=24796, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1904, + ["unit"]=0 + } + }, + [19050]={ + ["next_chapter"]=19051, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=111506, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36797, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=259421, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26202, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=259421, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19051]={ + ["next_chapter"]=19052, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111541, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36809, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=262015, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26464, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=262015, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19052]={ + ["next_chapter"]=19053, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111576, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36820, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=264635, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26728, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=264635, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19053]={ + ["next_chapter"]=19054, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111611, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36832, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=267282, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26995, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=267282, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19054]={ + ["next_chapter"]=19055, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111646, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36843, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=269954, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27265, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=269954, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19055]={ + ["next_chapter"]=19056, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111681, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=272654, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27538, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=272654, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19056]={ + ["next_chapter"]=19057, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111716, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36866, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=275381, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27813, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=275381, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19057]={ + ["next_chapter"]=19058, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=278134, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28092, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=278134, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19058]={ + ["next_chapter"]=19059, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111786, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36889, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=280916, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28372, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=280916, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19059]={ + ["next_chapter"]=19060, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111821, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36901, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=283725, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28656, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=283725, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=27390, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1905, + ["unit"]=0 + } + }, + [19060]={ + ["next_chapter"]=19061, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=111857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36913, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=286562, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28943, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=286562, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19061]={ + ["next_chapter"]=19062, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111892, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36924, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=289428, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29232, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=289428, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19062]={ + ["next_chapter"]=19063, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111927, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36936, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=292322, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29525, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=292322, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19063]={ + ["next_chapter"]=19064, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111962, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=295245, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29820, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=295245, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19064]={ + ["next_chapter"]=19065, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=111997, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36959, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=298198, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30118, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=298198, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19065]={ + ["next_chapter"]=19066, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112032, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36971, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=301180, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30419, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=301180, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19066]={ + ["next_chapter"]=19067, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112067, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36982, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=304191, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30723, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=304191, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19067]={ + ["next_chapter"]=19068, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112102, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=36994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=307233, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31031, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=307233, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19068]={ + ["next_chapter"]=19069, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112138, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37005, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=310306, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31341, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=310306, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19069]={ + ["next_chapter"]=19070, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=313409, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31654, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=313409, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=30256, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1906, + ["unit"]=0 + } + }, + [19070]={ + ["next_chapter"]=19071, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=112208, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=316543, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31971, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=316543, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19071]={ + ["next_chapter"]=19072, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37040, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=319708, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32291, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=319708, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19072]={ + ["next_chapter"]=19073, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112278, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37052, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=322905, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32613, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=322905, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19073]={ + ["next_chapter"]=19074, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112313, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=326134, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32940, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=326134, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19074]={ + ["next_chapter"]=19075, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37075, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=329396, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33269, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=329396, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19075]={ + ["next_chapter"]=19076, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112384, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37087, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=332690, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33602, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=332690, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19076]={ + ["next_chapter"]=19077, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=336017, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33938, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=336017, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19077]={ + ["next_chapter"]=19078, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112454, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37110, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=339377, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34277, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=339377, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19078]={ + ["next_chapter"]=19079, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112489, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37122, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=342770, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34620, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=342770, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19079]={ + ["next_chapter"]=19080, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37133, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=346198, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34966, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=346198, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=33421, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1907, + ["unit"]=0 + } + }, + [19080]={ + ["next_chapter"]=19081, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=112560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37145, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=349660, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35316, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=349660, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19081]={ + ["next_chapter"]=19082, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37156, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=353157, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35669, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=353157, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19082]={ + ["next_chapter"]=19083, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=356688, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36026, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=356688, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19083]={ + ["next_chapter"]=19084, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112666, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37180, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=360255, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36386, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=360255, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19084]={ + ["next_chapter"]=19085, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112701, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=363858, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36750, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=363858, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19085]={ + ["next_chapter"]=19086, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112736, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37203, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=367496, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37117, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=367496, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19086]={ + ["next_chapter"]=19087, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112771, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=371171, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37488, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=371171, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19087]={ + ["next_chapter"]=19088, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112807, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37226, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=374883, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37863, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=374883, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19088]={ + ["next_chapter"]=19089, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37238, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=378632, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38242, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=378632, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19089]={ + ["next_chapter"]=19090, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37250, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=382418, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38624, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=382418, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=36918, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1908, + ["unit"]=0 + } + }, + [19090]={ + ["next_chapter"]=19091, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=112913, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=386242, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39010, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=386242, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19091]={ + ["next_chapter"]=19092, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112948, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37273, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=390105, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39401, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=390105, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19092]={ + ["next_chapter"]=19093, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=112983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=394006, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39795, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=394006, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19093]={ + ["next_chapter"]=19094, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113019, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37296, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=397946, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40193, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=397946, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19094]={ + ["next_chapter"]=19095, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=401925, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40594, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=401925, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19095]={ + ["next_chapter"]=19096, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113089, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37319, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=405945, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41000, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=405945, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19096]={ + ["next_chapter"]=19097, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113125, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37331, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=410004, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41410, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=410004, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19097]={ + ["next_chapter"]=19098, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113160, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=414104, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41825, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=414104, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19098]={ + ["next_chapter"]=19099, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37354, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=418245, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42243, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=418245, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19099]={ + ["next_chapter"]=19100, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113231, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37366, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=422428, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42665, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=422428, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=40780, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1909, + ["unit"]=0 + } + }, + [19100]={ + ["next_chapter"]=19101, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=113266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=426652, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43092, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=426652, + ["unit"]=26 + }, + ["chapter_drop"]=66, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19101]={ + ["next_chapter"]=19102, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113302, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37390, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=430918, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43523, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=430918, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19102]={ + ["next_chapter"]=19103, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=435228, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43958, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=435228, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19103]={ + ["next_chapter"]=19104, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113372, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37413, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=439580, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44398, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=439580, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19104]={ + ["next_chapter"]=19105, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113408, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=443976, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44842, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=443976, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19105]={ + ["next_chapter"]=19106, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37436, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=448415, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45290, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=448415, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19106]={ + ["next_chapter"]=19107, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113479, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37448, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=452900, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45743, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=452900, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19107]={ + ["next_chapter"]=19108, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113514, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=457429, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46200, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=457429, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19108]={ + ["next_chapter"]=19109, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113550, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=462003, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46662, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=462003, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19109]={ + ["next_chapter"]=19110, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=466623, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47129, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=466623, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=45047, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1910, + ["unit"]=0 + } + }, + [19110]={ + ["next_chapter"]=19111, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=113620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37495, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=471289, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47600, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=471289, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19111]={ + ["next_chapter"]=19112, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113656, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37506, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=476002, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48076, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=476002, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19112]={ + ["next_chapter"]=19113, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113691, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37518, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=480762, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48557, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=480762, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19113]={ + ["next_chapter"]=19114, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37530, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=485570, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49043, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=485570, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19114]={ + ["next_chapter"]=19115, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113762, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37542, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=490425, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49533, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=490425, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19115]={ + ["next_chapter"]=19116, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113798, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37553, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=495330, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50028, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=495330, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19116]={ + ["next_chapter"]=19117, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=500283, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50529, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=500283, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19117]={ + ["next_chapter"]=19118, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113869, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=505286, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51034, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=505286, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19118]={ + ["next_chapter"]=19119, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113904, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=510339, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51544, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=510339, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19119]={ + ["next_chapter"]=19120, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=113940, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37600, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=515442, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52060, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=515442, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=49760, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1911, + ["unit"]=0 + } + }, + [19120]={ + ["next_chapter"]=19121, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=113975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=520596, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52580, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=520596, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19121]={ + ["next_chapter"]=19122, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37624, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=525802, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53106, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=525802, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19122]={ + ["next_chapter"]=19123, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=531060, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53637, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=531060, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19123]={ + ["next_chapter"]=19124, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114082, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37647, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=536371, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54173, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=536371, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19124]={ + ["next_chapter"]=19125, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114118, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37659, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=541735, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54715, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=541735, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19125]={ + ["next_chapter"]=19126, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114153, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37671, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=547152, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55262, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=547152, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19126]={ + ["next_chapter"]=19127, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114189, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=552624, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55815, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=552624, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19127]={ + ["next_chapter"]=19128, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=558150, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56373, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=558150, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19128]={ + ["next_chapter"]=19129, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37706, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=563731, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56937, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=563731, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19129]={ + ["next_chapter"]=19130, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37718, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=569369, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57506, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=569369, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=54966, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1912, + ["unit"]=0 + } + }, + [19130]={ + ["next_chapter"]=19131, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=114331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37729, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=575062, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58081, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=575062, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19131]={ + ["next_chapter"]=19132, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37741, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=580813, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58662, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=580813, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19132]={ + ["next_chapter"]=19133, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=586621, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59249, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=586621, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19133]={ + ["next_chapter"]=19134, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114438, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37765, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=592487, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59841, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=592487, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19134]={ + ["next_chapter"]=19135, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114474, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37776, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=598412, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60440, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=598412, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19135]={ + ["next_chapter"]=19136, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37788, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=604396, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61044, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=604396, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19136]={ + ["next_chapter"]=19137, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37800, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=610440, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61654, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=610440, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19137]={ + ["next_chapter"]=19138, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114581, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=616545, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62271, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=616545, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19138]={ + ["next_chapter"]=19139, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=622710, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62894, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=622710, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19139]={ + ["next_chapter"]=19140, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114652, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37835, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=628937, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63523, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=628937, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=60716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1913, + ["unit"]=0 + } + }, + [19140]={ + ["next_chapter"]=19141, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=114688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37847, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=635226, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64158, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=635226, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19141]={ + ["next_chapter"]=19142, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114723, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37859, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=641579, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64799, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=641579, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19142]={ + ["next_chapter"]=19143, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114759, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37870, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=647995, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65447, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=647995, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19143]={ + ["next_chapter"]=19144, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=654474, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66102, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=654474, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19144]={ + ["next_chapter"]=19145, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37894, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=661019, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66763, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=661019, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19145]={ + ["next_chapter"]=19146, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37906, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=667629, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67431, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=667629, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19146]={ + ["next_chapter"]=19147, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114902, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37918, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=674306, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68105, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=674306, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19147]={ + ["next_chapter"]=19148, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37929, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=681049, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68786, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=681049, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19148]={ + ["next_chapter"]=19149, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=114973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=687859, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69474, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=687859, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19149]={ + ["next_chapter"]=19150, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115009, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=694738, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70169, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=694738, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=67069, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1914, + ["unit"]=0 + } + }, + [19150]={ + ["next_chapter"]=19151, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=115045, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37965, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=701685, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70870, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=701685, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19151]={ + ["next_chapter"]=19152, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115081, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=708702, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71579, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=708702, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19152]={ + ["next_chapter"]=19153, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=37988, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=715789, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72295, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=715789, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19153]={ + ["next_chapter"]=19154, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115152, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38000, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=722947, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73018, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=722947, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19154]={ + ["next_chapter"]=19155, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115188, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38012, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=730176, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73748, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=730176, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19155]={ + ["next_chapter"]=19156, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=737478, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74485, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=737478, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19156]={ + ["next_chapter"]=19157, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38036, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=744853, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75230, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=744853, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19157]={ + ["next_chapter"]=19158, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38047, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=752302, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75982, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=752302, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19158]={ + ["next_chapter"]=19159, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=759825, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76742, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=759825, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19159]={ + ["next_chapter"]=19160, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115367, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=767423, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77510, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=767423, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=74085, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1915, + ["unit"]=0 + } + }, + [19160]={ + ["next_chapter"]=19161, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=115403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=775097, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78285, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=775097, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19161]={ + ["next_chapter"]=19162, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38095, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=782848, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79068, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=782848, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19162]={ + ["next_chapter"]=19163, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115475, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=790676, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79858, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=790676, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19163]={ + ["next_chapter"]=19164, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115510, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38118, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=798583, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80657, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=798583, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19164]={ + ["next_chapter"]=19165, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38130, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=806569, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81463, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=806569, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19165]={ + ["next_chapter"]=19166, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115582, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38142, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=814635, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82278, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=814635, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19166]={ + ["next_chapter"]=19167, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115618, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=822781, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83101, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=822781, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19167]={ + ["next_chapter"]=19168, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38166, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=831009, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83932, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=831009, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19168]={ + ["next_chapter"]=19169, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115690, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=839319, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84771, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=839319, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19169]={ + ["next_chapter"]=19170, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115726, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=847712, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85619, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=847712, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=81836, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1916, + ["unit"]=0 + } + }, + [19170]={ + ["next_chapter"]=19171, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=115762, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38201, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=856189, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86475, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=856189, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19171]={ + ["next_chapter"]=19172, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115797, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38213, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=864751, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87340, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=864751, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19172]={ + ["next_chapter"]=19173, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38225, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=873399, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88213, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=873399, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19173]={ + ["next_chapter"]=19174, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115869, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38237, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=882133, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89095, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=882133, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19174]={ + ["next_chapter"]=19175, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38249, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=890954, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89986, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=890954, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19175]={ + ["next_chapter"]=19176, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115941, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=899864, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90886, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=899864, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19176]={ + ["next_chapter"]=19177, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=115977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=908862, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91795, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=908862, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19177]={ + ["next_chapter"]=19178, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116013, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=917951, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92713, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=917951, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19178]={ + ["next_chapter"]=19179, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38296, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=927130, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93640, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=927130, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19179]={ + ["next_chapter"]=19180, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=936402, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94577, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=936402, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=90398, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1917, + ["unit"]=0 + } + }, + [19180]={ + ["next_chapter"]=19181, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=116121, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38320, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=945766, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95522, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=945766, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19181]={ + ["next_chapter"]=19182, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38332, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=955223, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96478, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=955223, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19182]={ + ["next_chapter"]=19183, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116193, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38344, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=964776, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97442, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=964776, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19183]={ + ["next_chapter"]=19184, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116229, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38356, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=974423, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98417, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=974423, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19184]={ + ["next_chapter"]=19185, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116265, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38367, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=984168, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99401, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=984168, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19185]={ + ["next_chapter"]=19186, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116301, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38379, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=994009, + ["unit"]=26 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100395, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=994009, + ["unit"]=26 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19186]={ + ["next_chapter"]=19187, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116337, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38391, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1004, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101399, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1004, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19187]={ + ["next_chapter"]=19188, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116373, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1014, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102413, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1014, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19188]={ + ["next_chapter"]=19189, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116409, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38415, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1024, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103437, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1024, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19189]={ + ["next_chapter"]=19190, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38427, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1034, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104471, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1034, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=99856, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1918, + ["unit"]=0 + } + }, + [19190]={ + ["next_chapter"]=19191, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=116481, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1045, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105516, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1045, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19191]={ + ["next_chapter"]=19192, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116517, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1055, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106571, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1055, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19192]={ + ["next_chapter"]=19193, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116553, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38463, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1066, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107637, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1066, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19193]={ + ["next_chapter"]=19194, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116589, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38475, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1076, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108713, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1076, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19194]={ + ["next_chapter"]=19195, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38486, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1087, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109800, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1087, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19195]={ + ["next_chapter"]=19196, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116662, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38498, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1098, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110898, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1098, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19196]={ + ["next_chapter"]=19197, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116698, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1109, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112007, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1109, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19197]={ + ["next_chapter"]=19198, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116734, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38522, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1120, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=113128, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1120, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19198]={ + ["next_chapter"]=19199, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116770, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1131, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114259, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1131, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19199]={ + ["next_chapter"]=19200, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116806, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38546, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1143, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115401, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1143, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=110303, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1919, + ["unit"]=0 + } + }, + [19200]={ + ["next_chapter"]=19201, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=116842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38558, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1154, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116555, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1154, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19201]={ + ["next_chapter"]=19202, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38570, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1166, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117721, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1166, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19202]={ + ["next_chapter"]=19203, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38582, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1177, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118898, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1177, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19203]={ + ["next_chapter"]=19204, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116951, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38594, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1189, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=120087, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1189, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19204]={ + ["next_chapter"]=19205, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=116987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38606, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1201, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121288, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1201, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19205]={ + ["next_chapter"]=19206, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117023, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38618, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1213, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122501, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1213, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19206]={ + ["next_chapter"]=19207, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1225, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123726, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1225, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19207]={ + ["next_chapter"]=19208, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117095, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38641, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1237, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124963, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1237, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19208]={ + ["next_chapter"]=19209, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38653, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1250, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=126213, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1250, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19209]={ + ["next_chapter"]=19210, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117168, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1262, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127475, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1262, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=121843, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1920, + ["unit"]=0 + } + }, + [19210]={ + ["next_chapter"]=19211, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=117204, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1275, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128750, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1275, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19211]={ + ["next_chapter"]=19212, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117240, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38689, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1287, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=130037, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1287, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19212]={ + ["next_chapter"]=19213, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117276, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38701, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1300, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131338, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1300, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19213]={ + ["next_chapter"]=19214, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117312, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1313, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132651, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1313, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19214]={ + ["next_chapter"]=19215, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117349, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38725, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1327, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133977, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1327, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19215]={ + ["next_chapter"]=19216, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117385, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38737, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1340, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135317, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1340, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19216]={ + ["next_chapter"]=19217, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38749, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1353, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136670, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1353, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19217]={ + ["next_chapter"]=19218, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117457, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38761, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1367, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=138037, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1367, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19218]={ + ["next_chapter"]=19219, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117494, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38773, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1380, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139417, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1380, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19219]={ + ["next_chapter"]=19220, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117530, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1394, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140812, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1394, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=134591, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1921, + ["unit"]=0 + } + }, + [19220]={ + ["next_chapter"]=19221, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=117566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38797, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1408, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=142220, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1408, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19221]={ + ["next_chapter"]=19222, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117603, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38809, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1422, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143642, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1422, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19222]={ + ["next_chapter"]=19223, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1436, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=145078, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1436, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19223]={ + ["next_chapter"]=19224, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38833, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1451, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146529, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1451, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19224]={ + ["next_chapter"]=19225, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1465, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147994, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1465, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19225]={ + ["next_chapter"]=19226, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38857, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1480, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149474, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1480, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19226]={ + ["next_chapter"]=19227, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38869, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1495, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150969, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1495, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19227]={ + ["next_chapter"]=19228, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38881, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1510, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152479, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1510, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19228]={ + ["next_chapter"]=19229, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117857, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38893, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1525, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=154004, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1525, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19229]={ + ["next_chapter"]=19230, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117893, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1540, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155544, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1540, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=148672, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1922, + ["unit"]=0 + } + }, + [19230]={ + ["next_chapter"]=19231, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=117929, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38917, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1555, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=157099, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1555, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19231]={ + ["next_chapter"]=19232, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=117966, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38929, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1571, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158670, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1571, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19232]={ + ["next_chapter"]=19233, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1587, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=160257, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1587, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19233]={ + ["next_chapter"]=19234, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118039, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38953, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1603, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161859, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1603, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19234]={ + ["next_chapter"]=19235, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118075, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38965, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1619, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163478, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1619, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19235]={ + ["next_chapter"]=19236, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1635, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=165113, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1635, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19236]={ + ["next_chapter"]=19237, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=38989, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1651, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166764, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1651, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19237]={ + ["next_chapter"]=19238, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39001, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1668, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168431, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1668, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19238]={ + ["next_chapter"]=19239, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118220, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39013, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1684, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=170116, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1684, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19239]={ + ["next_chapter"]=19240, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118257, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39025, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1701, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171817, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1701, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=164226, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1923, + ["unit"]=0 + } + }, + [19240]={ + ["next_chapter"]=19241, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=118293, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1718, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173535, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1718, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19241]={ + ["next_chapter"]=19242, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39049, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1735, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=175270, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1735, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19242]={ + ["next_chapter"]=19243, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39061, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1753, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=177023, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1753, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19243]={ + ["next_chapter"]=19244, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118403, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39073, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1770, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178793, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1770, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19244]={ + ["next_chapter"]=19245, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118439, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1788, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180581, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1788, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19245]={ + ["next_chapter"]=19246, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118476, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39097, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1806, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=182387, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1806, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19246]={ + ["next_chapter"]=19247, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118512, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39109, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1824, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=184211, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1824, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19247]={ + ["next_chapter"]=19248, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39121, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1842, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=186053, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1842, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19248]={ + ["next_chapter"]=19249, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39133, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1861, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187914, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1861, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19249]={ + ["next_chapter"]=19250, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118621, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39145, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1879, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189793, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1879, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=181408, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1924, + ["unit"]=0 + } + }, + [19250]={ + ["next_chapter"]=19251, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=118658, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39157, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1898, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191691, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1898, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19251]={ + ["next_chapter"]=19252, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39169, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1917, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193608, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1917, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19252]={ + ["next_chapter"]=19253, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39181, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1936, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195544, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1936, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19253]={ + ["next_chapter"]=19254, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1955, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197499, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1955, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19254]={ + ["next_chapter"]=19255, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118804, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39205, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1975, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199474, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1975, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19255]={ + ["next_chapter"]=19256, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1995, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201469, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=1995, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19256]={ + ["next_chapter"]=19257, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39229, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2015, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203484, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2015, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19257]={ + ["next_chapter"]=19258, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39242, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2035, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205518, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2035, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19258]={ + ["next_chapter"]=19259, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2055, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207574, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2055, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19259]={ + ["next_chapter"]=19260, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=118987, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39266, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2076, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209649, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2076, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=200387, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1925, + ["unit"]=0 + } + }, + [19260]={ + ["next_chapter"]=19261, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=119023, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39278, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2096, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211746, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2096, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19261]={ + ["next_chapter"]=19262, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119060, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39290, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2117, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213863, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2117, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19262]={ + ["next_chapter"]=19263, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39302, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2139, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=216002, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2139, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19263]={ + ["next_chapter"]=19264, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119133, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39314, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2160, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=218162, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2160, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19264]={ + ["next_chapter"]=19265, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119170, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39326, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2182, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=220344, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2182, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19265]={ + ["next_chapter"]=19266, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119206, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2203, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222547, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2203, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19266]={ + ["next_chapter"]=19267, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119243, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39350, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2225, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224772, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2225, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19267]={ + ["next_chapter"]=19268, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2248, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=227020, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2248, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19268]={ + ["next_chapter"]=19269, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119316, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2270, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=229290, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2270, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19269]={ + ["next_chapter"]=19270, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39386, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2293, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231583, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2293, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=221352, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1926, + ["unit"]=0 + } + }, + [19270]={ + ["next_chapter"]=19271, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=119390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2316, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233899, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2316, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19271]={ + ["next_chapter"]=19272, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119426, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2339, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=236238, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2339, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19272]={ + ["next_chapter"]=19273, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2362, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238600, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2362, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19273]={ + ["next_chapter"]=19274, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119500, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39435, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2386, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240986, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2386, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19274]={ + ["next_chapter"]=19275, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119536, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39447, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2410, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=243396, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2410, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19275]={ + ["next_chapter"]=19276, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119573, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2434, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245830, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2434, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19276]={ + ["next_chapter"]=19277, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119610, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39471, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2458, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=248289, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2458, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19277]={ + ["next_chapter"]=19278, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119646, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39483, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2483, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250771, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2483, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19278]={ + ["next_chapter"]=19279, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119683, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39495, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2508, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=253279, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2508, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19279]={ + ["next_chapter"]=19280, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119720, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2533, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255812, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2533, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=244510, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1927, + ["unit"]=0 + } + }, + [19280]={ + ["next_chapter"]=19281, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=119756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39520, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2558, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=258370, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2558, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19281]={ + ["next_chapter"]=19282, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119793, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39532, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2584, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260954, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2584, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19282]={ + ["next_chapter"]=19283, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119830, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39544, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2610, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=263563, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2610, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19283]={ + ["next_chapter"]=19284, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2636, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=266199, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2636, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19284]={ + ["next_chapter"]=19285, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119903, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39568, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2662, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268861, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2662, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19285]={ + ["next_chapter"]=19286, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119940, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39580, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2689, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=271550, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2689, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19286]={ + ["next_chapter"]=19287, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=119977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39592, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2715, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=274265, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2715, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19287]={ + ["next_chapter"]=19288, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120014, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39605, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2743, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=277008, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2743, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19288]={ + ["next_chapter"]=19289, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120051, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2770, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279778, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2770, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19289]={ + ["next_chapter"]=19290, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120087, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2798, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=282576, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2798, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=270092, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1928, + ["unit"]=0 + } + }, + [19290]={ + ["next_chapter"]=19291, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=120124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39641, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2826, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=285401, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2826, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19291]={ + ["next_chapter"]=19292, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120161, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39653, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2854, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=288255, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2854, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19292]={ + ["next_chapter"]=19293, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120198, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39665, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2883, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=291138, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2883, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19293]={ + ["next_chapter"]=19294, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39677, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2911, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=294049, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2911, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19294]={ + ["next_chapter"]=19295, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2940, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296990, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2940, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19295]={ + ["next_chapter"]=19296, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120308, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39702, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2970, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299960, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=2970, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19296]={ + ["next_chapter"]=19297, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120345, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39714, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3000, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302959, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3000, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19297]={ + ["next_chapter"]=19298, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39726, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3030, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305989, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3030, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19298]={ + ["next_chapter"]=19299, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39738, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3060, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=309049, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3060, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19299]={ + ["next_chapter"]=19300, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39750, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3090, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=312139, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3090, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=298349, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1929, + ["unit"]=0 + } + }, + [19300]={ + ["next_chapter"]=19301, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=120493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39763, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3121, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=315261, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3121, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19301]={ + ["next_chapter"]=19302, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120529, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3153, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=318413, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3153, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19302]={ + ["next_chapter"]=19303, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39787, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3184, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=321597, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3184, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19303]={ + ["next_chapter"]=19304, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120603, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3216, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=324813, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3216, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19304]={ + ["next_chapter"]=19305, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120640, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39811, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3248, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=328061, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3248, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19305]={ + ["next_chapter"]=19306, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3281, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=331342, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3281, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19306]={ + ["next_chapter"]=19307, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120714, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39836, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3313, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=334656, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3313, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19307]={ + ["next_chapter"]=19308, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39848, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3347, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=338002, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3347, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19308]={ + ["next_chapter"]=19309, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120788, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39860, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3380, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=341382, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3380, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19309]={ + ["next_chapter"]=19310, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39872, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3414, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=344796, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3414, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=329563, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1930, + ["unit"]=0 + } + }, + [19310]={ + ["next_chapter"]=19311, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=120862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39884, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3448, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=348244, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3448, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19311]={ + ["next_chapter"]=19312, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39897, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3482, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=351726, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3482, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19312]={ + ["next_chapter"]=19313, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3517, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=355244, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3517, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19313]={ + ["next_chapter"]=19314, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=120973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39921, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3552, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=358796, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3552, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19314]={ + ["next_chapter"]=19315, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3588, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=362384, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3588, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19315]={ + ["next_chapter"]=19316, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39945, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3624, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=366008, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3624, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19316]={ + ["next_chapter"]=19317, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121084, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39958, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3660, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=369668, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3660, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19317]={ + ["next_chapter"]=19318, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121121, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39970, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3697, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=373365, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3697, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19318]={ + ["next_chapter"]=19319, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121158, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39982, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3734, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=377098, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3734, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19319]={ + ["next_chapter"]=19320, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=39994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3771, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=380869, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3771, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=364043, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1931, + ["unit"]=0 + } + }, + [19320]={ + ["next_chapter"]=19321, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=121232, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3809, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=384678, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3809, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19321]={ + ["next_chapter"]=19322, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121269, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3847, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=388525, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3847, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19322]={ + ["next_chapter"]=19323, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40031, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3885, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=392410, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3885, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19323]={ + ["next_chapter"]=19324, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121343, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3924, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=396334, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3924, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19324]={ + ["next_chapter"]=19325, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121380, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40055, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3963, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=400297, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=3963, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19325]={ + ["next_chapter"]=19326, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121417, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40068, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4003, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=404300, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4003, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19326]={ + ["next_chapter"]=19327, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121454, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40080, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4043, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=408343, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4043, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19327]={ + ["next_chapter"]=19328, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121491, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40092, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4083, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=412427, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4083, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19328]={ + ["next_chapter"]=19329, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40104, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4124, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=416551, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4124, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19329]={ + ["next_chapter"]=19330, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121565, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40117, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4166, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=420717, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4166, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=402130, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1932, + ["unit"]=0 + } + }, + [19330]={ + ["next_chapter"]=19331, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=121602, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4207, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=424924, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4207, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19331]={ + ["next_chapter"]=19332, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121639, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40141, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4249, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=429173, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4249, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19332]={ + ["next_chapter"]=19333, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40153, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4292, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=433465, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4292, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19333]={ + ["next_chapter"]=19334, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121714, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40166, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4335, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=437799, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4335, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19334]={ + ["next_chapter"]=19335, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4378, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=442177, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4378, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19335]={ + ["next_chapter"]=19336, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121788, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4422, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=446599, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4422, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19336]={ + ["next_chapter"]=19337, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121825, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4466, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=451065, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4466, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19337]={ + ["next_chapter"]=19338, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4511, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=455576, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4511, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19338]={ + ["next_chapter"]=19339, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40227, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4556, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=460132, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4556, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19339]={ + ["next_chapter"]=19340, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=121937, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40239, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4601, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=464733, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4601, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=444201, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1933, + ["unit"]=0 + } + }, + [19340]={ + ["next_chapter"]=19341, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=121974, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40251, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4647, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=469380, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4647, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19341]={ + ["next_chapter"]=19342, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40264, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4694, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=474074, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4694, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19342]={ + ["next_chapter"]=19343, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122048, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40276, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4741, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=478815, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4741, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19343]={ + ["next_chapter"]=19344, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4788, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=483603, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4788, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19344]={ + ["next_chapter"]=19345, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122123, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40300, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4836, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=488439, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4836, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19345]={ + ["next_chapter"]=19346, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122160, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40313, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4884, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=493323, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4884, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19346]={ + ["next_chapter"]=19347, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4933, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=498256, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4933, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19347]={ + ["next_chapter"]=19348, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40337, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=4983, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=503239, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=4983, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19348]={ + ["next_chapter"]=19349, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122271, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40350, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5032, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=508271, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5032, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19349]={ + ["next_chapter"]=19350, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5083, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=513354, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5083, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=490675, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1934, + ["unit"]=0 + } + }, + [19350]={ + ["next_chapter"]=19351, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=122346, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40374, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5134, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=518488, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5134, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19351]={ + ["next_chapter"]=19352, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40386, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5185, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=523673, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5185, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19352]={ + ["next_chapter"]=19353, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122420, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5237, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=528909, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5237, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19353]={ + ["next_chapter"]=19354, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122458, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5289, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=534198, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5289, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19354]={ + ["next_chapter"]=19355, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5342, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=539540, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5342, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19355]={ + ["next_chapter"]=19356, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122532, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40436, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5395, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=544936, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5395, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19356]={ + ["next_chapter"]=19357, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122570, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40448, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5449, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=550385, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5449, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19357]={ + ["next_chapter"]=19358, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5504, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=555889, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5504, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19358]={ + ["next_chapter"]=19359, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122644, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5559, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=561448, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5559, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19359]={ + ["next_chapter"]=19360, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122682, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40485, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5614, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=567062, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5614, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=542010, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1935, + ["unit"]=0 + } + }, + [19360]={ + ["next_chapter"]=19361, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=122719, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40497, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5671, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=572733, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5671, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19361]={ + ["next_chapter"]=19362, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40510, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5727, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=578460, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5727, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19362]={ + ["next_chapter"]=19363, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122794, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40522, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5785, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=584245, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5785, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19363]={ + ["next_chapter"]=19364, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122831, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5842, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=590087, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5842, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19364]={ + ["next_chapter"]=19365, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122868, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40547, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5901, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=595988, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5901, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19365]={ + ["next_chapter"]=19366, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40559, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=5960, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=601948, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=5960, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19366]={ + ["next_chapter"]=19367, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40571, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6019, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=607968, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6019, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19367]={ + ["next_chapter"]=19368, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=122980, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40584, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6080, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=614047, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6080, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19368]={ + ["next_chapter"]=19369, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40596, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6140, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=620188, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6140, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19369]={ + ["next_chapter"]=19370, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6202, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=626390, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6202, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=598716, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1936, + ["unit"]=0 + } + }, + [19370]={ + ["next_chapter"]=19371, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=123093, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40621, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6264, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=632654, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6264, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19371]={ + ["next_chapter"]=19372, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123130, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40633, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6327, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=638980, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6327, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19372]={ + ["next_chapter"]=19373, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123167, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40645, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6390, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=645370, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6390, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19373]={ + ["next_chapter"]=19374, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123205, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6454, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=651824, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6454, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19374]={ + ["next_chapter"]=19375, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123242, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40670, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6518, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=658342, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6518, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19375]={ + ["next_chapter"]=19376, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123280, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6583, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=664925, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6583, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19376]={ + ["next_chapter"]=19377, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123317, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6649, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=671574, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6649, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19377]={ + ["next_chapter"]=19378, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123355, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40707, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6716, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=678290, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6716, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19378]={ + ["next_chapter"]=19379, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123392, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40719, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6783, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=685073, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6783, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19379]={ + ["next_chapter"]=19380, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123430, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40732, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6851, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=691924, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6851, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=661355, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1937, + ["unit"]=0 + } + }, + [19380]={ + ["next_chapter"]=19381, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=123467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40744, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6919, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=698843, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6919, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19381]={ + ["next_chapter"]=19382, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=6988, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=705832, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=6988, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19382]={ + ["next_chapter"]=19383, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40769, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7058, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=712890, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7058, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19383]={ + ["next_chapter"]=19384, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123580, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40781, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7129, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=720019, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7129, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19384]={ + ["next_chapter"]=19385, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123617, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40794, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7200, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=727219, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7200, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19385]={ + ["next_chapter"]=19386, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7272, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=734491, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7272, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19386]={ + ["next_chapter"]=19387, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40818, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7345, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=741836, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7345, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19387]={ + ["next_chapter"]=19388, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40831, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7418, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=749254, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7418, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19388]={ + ["next_chapter"]=19389, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123767, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40843, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7493, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=756747, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7493, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19389]={ + ["next_chapter"]=19390, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40856, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7567, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=764314, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7567, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=730548, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1938, + ["unit"]=0 + } + }, + [19390]={ + ["next_chapter"]=19391, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=123842, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40868, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7643, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=771958, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7643, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19391]={ + ["next_chapter"]=19392, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123880, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7720, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=779677, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7720, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19392]={ + ["next_chapter"]=19393, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123917, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40893, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7797, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=787474, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7797, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19393]={ + ["next_chapter"]=19394, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123955, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7875, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=795349, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7875, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19394]={ + ["next_chapter"]=19395, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=123993, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40918, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=7953, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=803302, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=7953, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19395]={ + ["next_chapter"]=19396, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124030, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40930, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8033, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=811335, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8033, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19396]={ + ["next_chapter"]=19397, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124068, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40942, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8113, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=819448, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8113, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19397]={ + ["next_chapter"]=19398, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40955, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8194, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=827643, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8194, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19398]={ + ["next_chapter"]=19399, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124143, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40967, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8276, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=835919, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8276, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19399]={ + ["next_chapter"]=19400, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124181, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40980, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8359, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=844279, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8359, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=806979, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1939, + ["unit"]=0 + } + }, + [19400]={ + ["next_chapter"]=19401, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=124218, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=40992, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8443, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=852721, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8443, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19401]={ + ["next_chapter"]=19402, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8527, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=861249, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8527, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19402]={ + ["next_chapter"]=19403, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124294, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8612, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=869861, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8612, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19403]={ + ["next_chapter"]=19404, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124331, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8699, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=878560, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8699, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19404]={ + ["next_chapter"]=19405, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41042, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8786, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=887345, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8786, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19405]={ + ["next_chapter"]=19406, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41054, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8873, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=896219, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8873, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19406]={ + ["next_chapter"]=19407, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124444, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41067, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=8962, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=905181, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=8962, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19407]={ + ["next_chapter"]=19408, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124482, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41079, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9052, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=914233, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9052, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19408]={ + ["next_chapter"]=19409, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41091, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9142, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=923375, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9142, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19409]={ + ["next_chapter"]=19410, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124557, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41104, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9234, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=932609, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9234, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=891407, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1940, + ["unit"]=0 + } + }, + [19410]={ + ["next_chapter"]=19411, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=124595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41116, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9326, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=941935, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9326, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19411]={ + ["next_chapter"]=19412, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124633, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41129, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9419, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=951354, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9419, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19412]={ + ["next_chapter"]=19413, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41141, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9514, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=960868, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9514, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19413]={ + ["next_chapter"]=19414, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124708, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9609, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=970476, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9609, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19414]={ + ["next_chapter"]=19415, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41166, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9705, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=980181, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9705, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19415]={ + ["next_chapter"]=19416, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124784, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41179, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9802, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=989983, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9802, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19416]={ + ["next_chapter"]=19417, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124821, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9900, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=999883, + ["unit"]=27 + }, + ["idle_gold"]={ + ["value"]=9900, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19417]={ + ["next_chapter"]=19418, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=9999, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1010, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=9999, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19418]={ + ["next_chapter"]=19419, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124897, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41216, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10099, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1020, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10099, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19419]={ + ["next_chapter"]=19420, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=124935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10200, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1030, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10200, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=984668, + ["unit"]=27 + }, + ["grasp_mastery_reward"]={ + ["value"]=1941, + ["unit"]=0 + } + }, + [19420]={ + ["next_chapter"]=19421, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=124973, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10302, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1040, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10302, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19421]={ + ["next_chapter"]=19422, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125010, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41253, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10405, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1051, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10405, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19422]={ + ["next_chapter"]=19423, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125048, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41266, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10509, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1061, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10509, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19423]={ + ["next_chapter"]=19424, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125086, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41278, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10614, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1072, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10614, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19424]={ + ["next_chapter"]=19425, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125124, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41291, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10720, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1083, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10720, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19425]={ + ["next_chapter"]=19426, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125162, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41303, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10827, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1094, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10827, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19426]={ + ["next_chapter"]=19427, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125199, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41316, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=10936, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1104, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=10936, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19427]={ + ["next_chapter"]=19428, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125237, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41328, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11045, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1116, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11045, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19428]={ + ["next_chapter"]=19429, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125275, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41341, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11155, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1127, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11155, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19429]={ + ["next_chapter"]=19430, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125313, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41353, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11267, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1138, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11267, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1088, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1942, + ["unit"]=0 + } + }, + [19430]={ + ["next_chapter"]=19431, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=125351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41366, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11380, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1149, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11380, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19431]={ + ["next_chapter"]=19432, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41378, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11493, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1161, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11493, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19432]={ + ["next_chapter"]=19433, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125427, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41391, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11608, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1172, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11608, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19433]={ + ["next_chapter"]=19434, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125464, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11724, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1184, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11724, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19434]={ + ["next_chapter"]=19435, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41416, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11842, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1196, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11842, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19435]={ + ["next_chapter"]=19436, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125540, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41428, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=11960, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1208, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=11960, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19436]={ + ["next_chapter"]=19437, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125578, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41441, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12080, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1220, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=12080, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19437]={ + ["next_chapter"]=19438, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125616, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41453, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12200, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1232, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=12200, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19438]={ + ["next_chapter"]=19439, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125654, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12322, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1245, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=12322, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19439]={ + ["next_chapter"]=19440, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125692, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41478, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12446, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1257, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=12446, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1201, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1943, + ["unit"]=0 + } + }, + [19440]={ + ["next_chapter"]=19441, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=125730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41491, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12570, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1270, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=12570, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19441]={ + ["next_chapter"]=19442, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125768, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12696, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1282, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=12696, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19442]={ + ["next_chapter"]=19443, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125806, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41516, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12823, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1295, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=12823, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19443]={ + ["next_chapter"]=19444, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=12951, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1308, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=12951, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19444]={ + ["next_chapter"]=19445, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125882, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13081, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1321, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=13081, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19445]={ + ["next_chapter"]=19446, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41553, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13211, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1334, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=13211, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19446]={ + ["next_chapter"]=19447, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125958, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41566, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13343, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1348, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=13343, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19447]={ + ["next_chapter"]=19448, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=125996, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41579, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13477, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1361, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=13477, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19448]={ + ["next_chapter"]=19449, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126034, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41591, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13612, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1375, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=13612, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19449]={ + ["next_chapter"]=19450, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126072, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41604, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13748, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1389, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=13748, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1327, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1944, + ["unit"]=0 + } + }, + [19450]={ + ["next_chapter"]=19451, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=126110, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41616, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=13885, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1402, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=13885, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19451]={ + ["next_chapter"]=19452, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126148, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41629, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14024, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1416, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=14024, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19452]={ + ["next_chapter"]=19453, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126186, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41641, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14164, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1431, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=14164, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19453]={ + ["next_chapter"]=19454, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14306, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1445, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=14306, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19454]={ + ["next_chapter"]=19455, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126262, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14449, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1459, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=14449, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19455]={ + ["next_chapter"]=19456, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126300, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41679, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14594, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1474, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=14594, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19456]={ + ["next_chapter"]=19457, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41691, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14739, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1489, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=14739, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19457]={ + ["next_chapter"]=19458, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126376, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=14887, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1504, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=14887, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19458]={ + ["next_chapter"]=19459, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126414, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15036, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1519, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=15036, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19459]={ + ["next_chapter"]=19460, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126452, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41729, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15186, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1534, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=15186, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1466, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1945, + ["unit"]=0 + } + }, + [19460]={ + ["next_chapter"]=19461, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=126490, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41742, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15338, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1549, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=15338, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19461]={ + ["next_chapter"]=19462, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126528, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41754, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15491, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1565, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=15491, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19462]={ + ["next_chapter"]=19463, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41767, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15646, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1580, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=15646, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19463]={ + ["next_chapter"]=19464, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15803, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1596, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=15803, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19464]={ + ["next_chapter"]=19465, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126643, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=15961, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1612, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=15961, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19465]={ + ["next_chapter"]=19466, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126681, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41805, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16120, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1628, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=16120, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19466]={ + ["next_chapter"]=19467, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126719, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41817, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16282, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1644, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=16282, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19467]={ + ["next_chapter"]=19468, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126757, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41830, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16444, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1661, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=16444, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19468]={ + ["next_chapter"]=19469, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41842, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16609, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1677, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=16609, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19469]={ + ["next_chapter"]=19470, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16775, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1694, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=16775, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1619, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1946, + ["unit"]=0 + } + }, + [19470]={ + ["next_chapter"]=19471, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=126871, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41868, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=16943, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1711, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=16943, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19471]={ + ["next_chapter"]=19472, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17112, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1728, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=17112, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19472]={ + ["next_chapter"]=19473, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126948, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41893, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17283, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1746, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=17283, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19473]={ + ["next_chapter"]=19474, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=126986, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17456, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1763, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=17456, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19474]={ + ["next_chapter"]=19475, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127024, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41918, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17631, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1781, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=17631, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19475]={ + ["next_chapter"]=19476, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127062, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41931, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17807, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1798, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=17807, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19476]={ + ["next_chapter"]=19477, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127101, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41943, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=17985, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1816, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=17985, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19477]={ + ["next_chapter"]=19478, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127139, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41956, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18165, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1835, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=18165, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19478]={ + ["next_chapter"]=19479, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41968, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18346, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1853, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=18346, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19479]={ + ["next_chapter"]=19480, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41981, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18530, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1872, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=18530, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1789, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1947, + ["unit"]=0 + } + }, + [19480]={ + ["next_chapter"]=19481, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=127254, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=41994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18715, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1890, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=18715, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19481]={ + ["next_chapter"]=19482, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127292, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42006, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=18902, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1909, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=18902, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19482]={ + ["next_chapter"]=19483, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42019, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19091, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1928, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=19091, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19483]={ + ["next_chapter"]=19484, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127368, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42032, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19282, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1948, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=19282, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19484]={ + ["next_chapter"]=19485, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19475, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1967, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=19475, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19485]={ + ["next_chapter"]=19486, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127445, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19670, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=1987, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=19670, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19486]={ + ["next_chapter"]=19487, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127483, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=19867, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2007, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=19867, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19487]={ + ["next_chapter"]=19488, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127521, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42082, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20065, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2027, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=20065, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19488]={ + ["next_chapter"]=19489, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127560, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42095, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20266, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2047, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=20266, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19489]={ + ["next_chapter"]=19490, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127598, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42107, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20469, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2067, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=20469, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=1976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1948, + ["unit"]=0 + } + }, + [19490]={ + ["next_chapter"]=19491, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=127636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42120, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20673, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2088, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=20673, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19491]={ + ["next_chapter"]=19492, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127675, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42133, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=20880, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2109, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=20880, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19492]={ + ["next_chapter"]=19493, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127713, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42145, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21089, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2130, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=21089, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19493]={ + ["next_chapter"]=19494, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42158, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21300, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2151, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=21300, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19494]={ + ["next_chapter"]=19495, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42171, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21513, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2173, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=21513, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19495]={ + ["next_chapter"]=19496, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127828, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42183, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21728, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2195, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=21728, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19496]={ + ["next_chapter"]=19497, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127866, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42196, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=21945, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2216, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=21945, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19497]={ + ["next_chapter"]=19498, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42209, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22165, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2239, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=22165, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19498]={ + ["next_chapter"]=19499, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42221, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22386, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2261, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=22386, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19499]={ + ["next_chapter"]=19500, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_06", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=127982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42234, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22610, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2284, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=22610, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2183, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1949, + ["unit"]=0 + } + }, + [19500]={ + ["next_chapter"]=19501, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_06", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=128020, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=22836, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2306, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=22836, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19501]={ + ["next_chapter"]=19502, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128058, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42259, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23065, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2330, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=23065, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19502]={ + ["next_chapter"]=19503, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42272, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23295, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2353, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=23295, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19503]={ + ["next_chapter"]=19504, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128135, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42285, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23528, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2376, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=23528, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19504]={ + ["next_chapter"]=19505, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42297, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=23763, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2400, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=23763, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19505]={ + ["next_chapter"]=19506, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42310, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24001, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2424, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=24001, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19506]={ + ["next_chapter"]=19507, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128251, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42323, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24241, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2448, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=24241, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19507]={ + ["next_chapter"]=19508, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128289, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24483, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2473, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=24483, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19508]={ + ["next_chapter"]=19509, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128327, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42348, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24728, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2498, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=24728, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19509]={ + ["next_chapter"]=19510, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128366, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42361, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=24976, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2523, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=24976, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2411, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + [19510]={ + ["next_chapter"]=19511, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=128404, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42373, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25225, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2548, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=25225, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19511]={ + ["next_chapter"]=19512, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42386, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25478, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2573, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=25478, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19512]={ + ["next_chapter"]=19513, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128481, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42399, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25732, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2599, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=25732, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19513]={ + ["next_chapter"]=19514, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42412, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=25990, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2625, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=25990, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19514]={ + ["next_chapter"]=19515, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128558, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42424, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26250, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2651, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=26250, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19515]={ + ["next_chapter"]=19516, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128597, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42437, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26512, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2678, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=26512, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19516]={ + ["next_chapter"]=19517, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128635, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42450, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=26777, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2704, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=26777, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19517]={ + ["next_chapter"]=19518, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128674, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42462, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27045, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2732, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=27045, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19518]={ + ["next_chapter"]=19519, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42475, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27315, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2759, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=27315, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19519]={ + ["next_chapter"]=19520, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27589, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2786, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=27589, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2663, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1951, + ["unit"]=0 + } + }, + [19520]={ + ["next_chapter"]=19521, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=128790, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=27864, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2814, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=27864, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19521]={ + ["next_chapter"]=19522, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128828, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42513, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28143, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2842, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=28143, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19522]={ + ["next_chapter"]=19523, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42526, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28425, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2871, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=28425, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19523]={ + ["next_chapter"]=19524, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128905, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42539, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28709, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2900, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=28709, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19524]={ + ["next_chapter"]=19525, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128944, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42551, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=28996, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2929, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=28996, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19525]={ + ["next_chapter"]=19526, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=128982, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42564, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29286, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2958, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=29286, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19526]={ + ["next_chapter"]=19527, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129021, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42577, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29579, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=2987, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=29579, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19527]={ + ["next_chapter"]=19528, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129060, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42590, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=29874, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3017, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=29874, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19528]={ + ["next_chapter"]=19529, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42602, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30173, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3047, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=30173, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19529]={ + ["next_chapter"]=19530, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129137, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42615, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30475, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3078, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=30475, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=2942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1952, + ["unit"]=0 + } + }, + [19530]={ + ["next_chapter"]=19531, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=129175, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=30780, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3109, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=30780, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19531]={ + ["next_chapter"]=19532, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129214, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42641, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31087, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3140, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=31087, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19532]={ + ["next_chapter"]=19533, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129253, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42653, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31398, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3171, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=31398, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19533]={ + ["next_chapter"]=19534, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129291, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42666, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=31712, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3203, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=31712, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19534]={ + ["next_chapter"]=19535, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42679, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32029, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3235, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=32029, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19535]={ + ["next_chapter"]=19536, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42692, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32350, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3267, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=32350, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19536]={ + ["next_chapter"]=19537, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129407, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42704, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=32673, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3300, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=32673, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19537]={ + ["next_chapter"]=19538, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129446, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33000, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3333, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=33000, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19538]={ + ["next_chapter"]=19539, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129485, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33330, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3366, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=33330, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19539]={ + ["next_chapter"]=19540, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42743, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=33663, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3400, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=33663, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3250, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1953, + ["unit"]=0 + } + }, + [19540]={ + ["next_chapter"]=19541, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=129562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42756, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34000, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3434, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=34000, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19541]={ + ["next_chapter"]=19542, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129601, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42768, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34340, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3468, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=34340, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19542]={ + ["next_chapter"]=19543, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129640, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42781, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=34683, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3503, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=34683, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19543]={ + ["next_chapter"]=19544, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129678, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42794, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35030, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3538, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=35030, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19544]={ + ["next_chapter"]=19545, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129717, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42807, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35380, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3573, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=35380, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19545]={ + ["next_chapter"]=19546, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129756, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=35734, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3609, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=35734, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19546]={ + ["next_chapter"]=19547, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42832, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36092, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3645, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=36092, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19547]={ + ["next_chapter"]=19548, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36453, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3682, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=36453, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19548]={ + ["next_chapter"]=19549, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129872, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=36817, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3719, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=36817, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19549]={ + ["next_chapter"]=19550, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129911, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42871, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37185, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3756, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=37185, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3590, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1954, + ["unit"]=0 + } + }, + [19550]={ + ["next_chapter"]=19551, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=129950, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42883, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37557, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3793, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=37557, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19551]={ + ["next_chapter"]=19552, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=129988, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42896, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=37933, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3831, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=37933, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19552]={ + ["next_chapter"]=19553, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42909, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38312, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3870, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=38312, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19553]={ + ["next_chapter"]=19554, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130066, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42922, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=38695, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3908, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=38695, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19554]={ + ["next_chapter"]=19555, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130105, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39082, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3947, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=39082, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19555]={ + ["next_chapter"]=19556, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39473, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=3987, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=39473, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19556]={ + ["next_chapter"]=19557, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42960, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=39868, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4027, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=39868, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19557]={ + ["next_chapter"]=19558, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130221, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42973, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40266, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4067, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=40266, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19558]={ + ["next_chapter"]=19559, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130260, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42986, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=40669, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4108, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=40669, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19559]={ + ["next_chapter"]=19560, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=42999, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41076, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4149, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=41076, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=3965, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1955, + ["unit"]=0 + } + }, + [19560]={ + ["next_chapter"]=19561, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=130338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43011, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41486, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4190, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=41486, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19561]={ + ["next_chapter"]=19562, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43024, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=41901, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4232, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=41901, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19562]={ + ["next_chapter"]=19563, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43037, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42320, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4274, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=42320, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19563]={ + ["next_chapter"]=19564, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130454, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43050, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=42743, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4317, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=42743, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19564]={ + ["next_chapter"]=19565, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130493, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43063, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43171, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4360, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=43171, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19565]={ + ["next_chapter"]=19566, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130532, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43076, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=43603, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4404, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=43603, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19566]={ + ["next_chapter"]=19567, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130571, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43088, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44039, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4448, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=44039, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19567]={ + ["next_chapter"]=19568, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130610, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43101, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44479, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4492, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=44479, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19568]={ + ["next_chapter"]=19569, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130649, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43114, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=44924, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4537, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=44924, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19569]={ + ["next_chapter"]=19570, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130688, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43127, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45373, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4583, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=45373, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4380, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1956, + ["unit"]=0 + } + }, + [19570]={ + ["next_chapter"]=19571, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=130727, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=45827, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4629, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=45827, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19571]={ + ["next_chapter"]=19572, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130766, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43153, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46285, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4675, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=46285, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19572]={ + ["next_chapter"]=19573, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130805, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43166, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=46748, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4722, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=46748, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19573]={ + ["next_chapter"]=19574, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130844, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43178, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47215, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4769, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=47215, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19574]={ + ["next_chapter"]=19575, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130883, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43191, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=47688, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4816, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=47688, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19575]={ + ["next_chapter"]=19576, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130922, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48164, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4865, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=48164, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19576]={ + ["next_chapter"]=19577, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=130961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=48646, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4913, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=48646, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19577]={ + ["next_chapter"]=19578, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131000, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43230, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49133, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=4962, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=49133, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19578]={ + ["next_chapter"]=19579, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131039, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43243, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=49624, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5012, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=49624, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19579]={ + ["next_chapter"]=19580, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131078, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43256, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50120, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5062, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=50120, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=4838, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1957, + ["unit"]=0 + } + }, + [19580]={ + ["next_chapter"]=19581, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=131117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=50621, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5113, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=50621, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19581]={ + ["next_chapter"]=19582, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51127, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5164, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=51127, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19582]={ + ["next_chapter"]=19583, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=51639, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5216, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=51639, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19583]={ + ["next_chapter"]=19584, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131234, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43307, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52155, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5268, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=52155, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19584]={ + ["next_chapter"]=19585, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131273, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43320, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=52677, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5320, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=52677, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19585]={ + ["next_chapter"]=19586, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131312, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43333, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53203, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5374, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=53203, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19586]={ + ["next_chapter"]=19587, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=53735, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5427, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=53735, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19587]={ + ["next_chapter"]=19588, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131390, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54273, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5482, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=54273, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19588]={ + ["next_chapter"]=19589, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131429, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43372, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=54816, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5536, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=54816, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19589]={ + ["next_chapter"]=19590, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55364, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5592, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=55364, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5345, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1958, + ["unit"]=0 + } + }, + [19590]={ + ["next_chapter"]=19591, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=131507, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43397, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=55917, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5648, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=55917, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19591]={ + ["next_chapter"]=19592, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43410, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=56477, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5704, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=56477, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19592]={ + ["next_chapter"]=19593, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43423, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57041, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5761, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=57041, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19593]={ + ["next_chapter"]=19594, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131625, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43436, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=57612, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5819, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=57612, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19594]={ + ["next_chapter"]=19595, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131664, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43449, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58188, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5877, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=58188, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19595]={ + ["next_chapter"]=19596, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131703, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43462, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=58770, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5936, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=58770, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19596]={ + ["next_chapter"]=19597, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131742, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43475, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59357, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=5995, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=59357, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19597]={ + ["next_chapter"]=19598, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43488, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=59951, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6055, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=59951, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19598]={ + ["next_chapter"]=19599, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131820, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=60551, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6116, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=60551, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19599]={ + ["next_chapter"]=19600, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_01", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131859, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61156, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6177, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=61156, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=5904, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1959, + ["unit"]=0 + } + }, + [19600]={ + ["next_chapter"]=19601, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_01", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=131899, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=61768, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6239, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=61768, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19601]={ + ["next_chapter"]=19602, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43539, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=62385, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6301, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=62385, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19602]={ + ["next_chapter"]=19603, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=131977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43552, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63009, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6364, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=63009, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19603]={ + ["next_chapter"]=19604, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132016, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43565, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=63639, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6428, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=63639, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19604]={ + ["next_chapter"]=19605, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132055, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43578, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64276, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6492, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=64276, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19605]={ + ["next_chapter"]=19606, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43591, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=64918, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6557, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=64918, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19606]={ + ["next_chapter"]=19607, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43604, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=65568, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6622, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=65568, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19607]={ + ["next_chapter"]=19608, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66223, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6689, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=66223, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19608]={ + ["next_chapter"]=19609, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132212, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43630, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=66885, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6755, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=66885, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19609]={ + ["next_chapter"]=19610, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132251, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43643, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=67554, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6823, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=67554, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=6522, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1960, + ["unit"]=0 + } + }, + [19610]={ + ["next_chapter"]=19611, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=209, + ["atk_coefficient"]={ + ["value"]=132291, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43656, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68230, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6891, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=68230, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19611]={ + ["next_chapter"]=19612, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132330, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43669, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=68912, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=6960, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=68912, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19612]={ + ["next_chapter"]=19613, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132369, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43682, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=69601, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7030, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=69601, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19613]={ + ["next_chapter"]=19614, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132408, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=70297, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7100, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=70297, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19614]={ + ["next_chapter"]=19615, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132448, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43708, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71000, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7171, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=71000, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19615]={ + ["next_chapter"]=19616, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132487, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43721, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=71710, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7243, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=71710, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19616]={ + ["next_chapter"]=19617, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132526, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43734, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=72427, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7315, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=72427, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19617]={ + ["next_chapter"]=19618, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43747, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73152, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7388, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=73152, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19618]={ + ["next_chapter"]=19619, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132605, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43760, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=73883, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7462, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=73883, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19619]={ + ["next_chapter"]=19620, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132644, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43773, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=74622, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7537, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=74622, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7204, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1961, + ["unit"]=0 + } + }, + [19620]={ + ["next_chapter"]=19621, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=132684, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43786, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=75368, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7612, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=75368, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19621]={ + ["next_chapter"]=19622, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132723, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43799, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76122, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7688, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=76122, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19622]={ + ["next_chapter"]=19623, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132762, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=76883, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7765, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=76883, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19623]={ + ["next_chapter"]=19624, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132802, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=77652, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7843, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=77652, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19624]={ + ["next_chapter"]=19625, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132841, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=78428, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=7921, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=78428, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19625]={ + ["next_chapter"]=19626, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132880, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43850, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=79213, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8000, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=79213, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19626]={ + ["next_chapter"]=19627, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43863, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80005, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8080, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=80005, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19627]={ + ["next_chapter"]=19628, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132959, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43876, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=80805, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8161, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=80805, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19628]={ + ["next_chapter"]=19629, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=132998, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43889, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=81613, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8243, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=81613, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19629]={ + ["next_chapter"]=19630, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133038, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43902, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=82429, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8325, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=82429, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=7958, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1962, + ["unit"]=0 + } + }, + [19630]={ + ["next_chapter"]=19631, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=133077, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43915, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=83253, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8409, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=83253, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19631]={ + ["next_chapter"]=19632, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133117, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43928, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84086, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8493, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=84086, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19632]={ + ["next_chapter"]=19633, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43941, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=84927, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8578, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=84927, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19633]={ + ["next_chapter"]=19634, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133195, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43954, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=85776, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8663, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=85776, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19634]={ + ["next_chapter"]=19635, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133235, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43968, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=86634, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8750, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=86634, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19635]={ + ["next_chapter"]=19636, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133274, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43981, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=87500, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8838, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=87500, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19636]={ + ["next_chapter"]=19637, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133314, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=43994, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=88375, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=8926, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=88375, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19637]={ + ["next_chapter"]=19638, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133353, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44007, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=89259, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9015, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=89259, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19638]={ + ["next_chapter"]=19639, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133393, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44020, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=90151, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9105, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=90151, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19639]={ + ["next_chapter"]=19640, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133432, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44033, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91053, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9196, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=91053, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=8790, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1963, + ["unit"]=0 + } + }, + [19640]={ + ["next_chapter"]=19641, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=133472, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44046, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=91963, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9288, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=91963, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19641]={ + ["next_chapter"]=19642, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133511, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44059, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=92883, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9381, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=92883, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19642]={ + ["next_chapter"]=19643, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133551, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44072, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=93812, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9475, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=93812, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19643]={ + ["next_chapter"]=19644, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133590, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=94750, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9570, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=94750, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19644]={ + ["next_chapter"]=19645, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44098, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=95698, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9665, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=95698, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19645]={ + ["next_chapter"]=19646, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133669, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=96655, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9762, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=96655, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19646]={ + ["next_chapter"]=19647, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133709, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=97621, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9860, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=97621, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19647]={ + ["next_chapter"]=19648, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133748, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=98597, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=9958, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=98597, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19648]={ + ["next_chapter"]=19649, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133788, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=99583, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10058, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=99583, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19649]={ + ["next_chapter"]=19650, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133827, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=100579, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10158, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=100579, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=9710, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1964, + ["unit"]=0 + } + }, + [19650]={ + ["next_chapter"]=19651, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=133867, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=101585, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10260, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=101585, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19651]={ + ["next_chapter"]=19652, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133906, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=102601, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10363, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=102601, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19652]={ + ["next_chapter"]=19653, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133946, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=103627, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10466, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=103627, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19653]={ + ["next_chapter"]=19654, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=133986, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=104663, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10571, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=104663, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19654]={ + ["next_chapter"]=19655, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134025, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44228, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=105710, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10677, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=105710, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19655]={ + ["next_chapter"]=19656, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134065, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44241, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=106767, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10783, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=106767, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19656]={ + ["next_chapter"]=19657, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134104, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44254, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=107834, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=10891, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=107834, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19657]={ + ["next_chapter"]=19658, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134144, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44268, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=108913, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11000, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=108913, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19658]={ + ["next_chapter"]=19659, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134184, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44281, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=110002, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11110, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=110002, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19659]={ + ["next_chapter"]=19660, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134223, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44294, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=111102, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11221, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=111102, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=10726, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1965, + ["unit"]=0 + } + }, + [19660]={ + ["next_chapter"]=19661, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=134263, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44307, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=112213, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11334, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=112213, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19661]={ + ["next_chapter"]=19662, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134302, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44320, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=113335, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11447, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=113335, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19662]={ + ["next_chapter"]=19663, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134342, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44333, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=114468, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11561, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=114468, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19663]={ + ["next_chapter"]=19664, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134382, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44346, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=115613, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11677, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=115613, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19664]={ + ["next_chapter"]=19665, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134421, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44359, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=116769, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11794, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=116769, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19665]={ + ["next_chapter"]=19666, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134461, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44372, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=117937, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=11912, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=117937, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19666]={ + ["next_chapter"]=19667, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134501, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44385, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=119116, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12031, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=119116, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19667]={ + ["next_chapter"]=19668, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134540, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=120307, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12151, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=120307, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19668]={ + ["next_chapter"]=19669, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134580, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=121511, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12273, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=121511, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19669]={ + ["next_chapter"]=19670, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=122726, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12395, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=122726, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=11848, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1966, + ["unit"]=0 + } + }, + [19670]={ + ["next_chapter"]=19671, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=134660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44438, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=123953, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12519, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=123953, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19671]={ + ["next_chapter"]=19672, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134699, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44451, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=125192, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12644, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=125192, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19672]={ + ["next_chapter"]=19673, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134739, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44464, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=126444, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12771, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=126444, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19673]={ + ["next_chapter"]=19674, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134779, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44477, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=127709, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=12899, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=127709, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19674]={ + ["next_chapter"]=19675, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134819, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44490, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=128986, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13028, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=128986, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19675]={ + ["next_chapter"]=19676, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134858, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44503, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=130276, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13158, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=130276, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19676]={ + ["next_chapter"]=19677, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134898, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44516, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=131579, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13289, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=131579, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19677]={ + ["next_chapter"]=19678, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134938, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44529, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=132894, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13422, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=132894, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19678]={ + ["next_chapter"]=19679, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=134978, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44543, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=134223, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13557, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=134223, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19679]={ + ["next_chapter"]=19680, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=135565, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13692, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=135565, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=13087, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1967, + ["unit"]=0 + } + }, + [19680]={ + ["next_chapter"]=19681, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=211, + ["atk_coefficient"]={ + ["value"]=135057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44569, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=136921, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13829, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=136921, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19681]={ + ["next_chapter"]=19682, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44582, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=138290, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=13967, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=138290, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19682]={ + ["next_chapter"]=19683, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135137, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44595, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=139673, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14107, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=139673, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19683]={ + ["next_chapter"]=19684, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=141070, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14248, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=141070, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19684]={ + ["next_chapter"]=19685, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135216, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44621, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=142481, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14391, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=142481, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19685]={ + ["next_chapter"]=19686, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44635, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=143905, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14534, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=143905, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19686]={ + ["next_chapter"]=19687, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135296, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44648, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=145345, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14680, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=145345, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19687]={ + ["next_chapter"]=19688, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135336, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44661, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=146798, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14827, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=146798, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19688]={ + ["next_chapter"]=19689, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135376, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44674, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=148266, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=14975, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=148266, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19689]={ + ["next_chapter"]=19690, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135416, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44687, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=149749, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15125, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=149749, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=14456, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1968, + ["unit"]=0 + } + }, + [19690]={ + ["next_chapter"]=19691, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=135456, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44700, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=151246, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15276, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=151246, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19691]={ + ["next_chapter"]=19692, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=152759, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15429, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=152759, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19692]={ + ["next_chapter"]=19693, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44727, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=154286, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15583, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=154286, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19693]={ + ["next_chapter"]=19694, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=155829, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15739, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=155829, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19694]={ + ["next_chapter"]=19695, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135615, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44753, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=157387, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=15896, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=157387, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19695]={ + ["next_chapter"]=19696, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44766, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=158961, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16055, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=158961, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19696]={ + ["next_chapter"]=19697, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=160551, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16216, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=160551, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19697]={ + ["next_chapter"]=19698, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135735, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44792, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=162156, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16378, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=162156, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19698]={ + ["next_chapter"]=19699, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135775, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44806, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=163778, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16542, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=163778, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19699]={ + ["next_chapter"]=19700, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_02", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44819, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=165416, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16707, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=165416, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=15969, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1969, + ["unit"]=0 + } + }, + [19700]={ + ["next_chapter"]=19701, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_02", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=135855, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44832, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=167070, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=16874, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=167070, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19701]={ + ["next_chapter"]=19702, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44845, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=168740, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17043, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=168740, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19702]={ + ["next_chapter"]=19703, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135935, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44858, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=170428, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17213, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=170428, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19703]={ + ["next_chapter"]=19704, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=135975, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44872, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=172132, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17385, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=172132, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19704]={ + ["next_chapter"]=19705, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136014, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44885, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=173853, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17559, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=173853, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19705]={ + ["next_chapter"]=19706, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136054, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44898, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=175592, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17735, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=175592, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19706]={ + ["next_chapter"]=19707, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136094, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44911, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=177348, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=17912, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=177348, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19707]={ + ["next_chapter"]=19708, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44924, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=179121, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18091, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=179121, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19708]={ + ["next_chapter"]=19709, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44938, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=180913, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18272, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=180913, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19709]={ + ["next_chapter"]=19710, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44951, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=182722, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18455, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=182722, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=17640, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1970, + ["unit"]=0 + } + }, + [19710]={ + ["next_chapter"]=19711, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=136255, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44964, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=184549, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18639, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=184549, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19711]={ + ["next_chapter"]=19712, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136295, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44977, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=186394, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=18826, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=186394, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19712]={ + ["next_chapter"]=19713, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=44990, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=188258, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19014, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=188258, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19713]={ + ["next_chapter"]=19714, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136375, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45004, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=190141, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19204, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=190141, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19714]={ + ["next_chapter"]=19715, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136415, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45017, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=192042, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19396, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=192042, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19715]={ + ["next_chapter"]=19716, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136455, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=193963, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19590, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=193963, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19716]={ + ["next_chapter"]=19717, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136495, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=195902, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19786, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=195902, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19717]={ + ["next_chapter"]=19718, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136535, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=197861, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=19984, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=197861, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19718]={ + ["next_chapter"]=19719, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136575, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=199840, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20184, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=199840, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19719]={ + ["next_chapter"]=19720, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136615, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=201838, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20386, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=201838, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=19485, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1971, + ["unit"]=0 + } + }, + [19720]={ + ["next_chapter"]=19721, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=136655, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=203857, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20590, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=203857, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19721]={ + ["next_chapter"]=19722, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136695, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45109, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=205895, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=20795, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=205895, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19722]={ + ["next_chapter"]=19723, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136735, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=207954, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21003, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=207954, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19723]={ + ["next_chapter"]=19724, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136776, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45136, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=210034, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21213, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=210034, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19724]={ + ["next_chapter"]=19725, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136816, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45149, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=212134, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21426, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=212134, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19725]={ + ["next_chapter"]=19726, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136856, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45162, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=214256, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21640, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=214256, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19726]={ + ["next_chapter"]=19727, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136896, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45176, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=216398, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=21856, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=216398, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19727]={ + ["next_chapter"]=19728, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45189, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=218562, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22075, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=218562, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19728]={ + ["next_chapter"]=19729, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=136976, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45202, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=220748, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22296, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=220748, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19729]={ + ["next_chapter"]=19730, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137017, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45215, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=222955, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22518, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=222955, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=21524, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1972, + ["unit"]=0 + } + }, + [19730]={ + ["next_chapter"]=19731, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=137057, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45229, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=225185, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22744, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=225185, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19731]={ + ["next_chapter"]=19732, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137097, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45242, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=227437, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=22971, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=227437, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19732]={ + ["next_chapter"]=19733, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137137, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45255, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=229711, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23201, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=229711, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19733]={ + ["next_chapter"]=19734, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137177, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45269, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=232008, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23433, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=232008, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19734]={ + ["next_chapter"]=19735, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137218, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45282, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=234328, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23667, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=234328, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19735]={ + ["next_chapter"]=19736, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137258, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45295, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=236672, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=23904, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=236672, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19736]={ + ["next_chapter"]=19737, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137298, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45308, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=239038, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24143, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=239038, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19737]={ + ["next_chapter"]=19738, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45322, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=241429, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24384, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=241429, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19738]={ + ["next_chapter"]=19739, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45335, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=243843, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24628, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=243843, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19739]={ + ["next_chapter"]=19740, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45348, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=246281, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=24874, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=246281, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=23775, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1973, + ["unit"]=0 + } + }, + [19740]={ + ["next_chapter"]=19741, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=204, + ["atk_coefficient"]={ + ["value"]=137459, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45361, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=248744, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25123, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=248744, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19741]={ + ["next_chapter"]=19742, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137499, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45375, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=251232, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25374, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=251232, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19742]={ + ["next_chapter"]=19743, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137539, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45388, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=253744, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25628, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=253744, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19743]={ + ["next_chapter"]=19744, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137580, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45401, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=256281, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=25884, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=256281, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19744]={ + ["next_chapter"]=19745, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137620, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45415, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=258844, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26143, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=258844, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19745]={ + ["next_chapter"]=19746, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137660, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45428, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=261433, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26405, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=261433, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19746]={ + ["next_chapter"]=19747, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137701, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45441, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=264047, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26669, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=264047, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19747]={ + ["next_chapter"]=19748, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137741, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45455, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=266687, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=26935, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=266687, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19748]={ + ["next_chapter"]=19749, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137781, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45468, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=269354, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27205, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=269354, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19749]={ + ["next_chapter"]=19750, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137822, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45481, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=272048, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27477, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=272048, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=26263, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1974, + ["unit"]=0 + } + }, + [19750]={ + ["next_chapter"]=19751, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=137862, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45494, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=274768, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=27752, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=274768, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19751]={ + ["next_chapter"]=19752, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137902, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45508, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=277516, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28029, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=277516, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19752]={ + ["next_chapter"]=19753, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137943, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45521, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=280291, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28309, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=280291, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19753]={ + ["next_chapter"]=19754, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=137983, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45534, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=283094, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28592, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=283094, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19754]={ + ["next_chapter"]=19755, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138023, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=285925, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=28878, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=285925, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19755]={ + ["next_chapter"]=19756, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138064, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45561, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=288784, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29167, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=288784, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19756]={ + ["next_chapter"]=19757, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138104, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45574, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=291672, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29459, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=291672, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19757]={ + ["next_chapter"]=19758, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138145, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45588, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=294589, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=29753, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=294589, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19758]={ + ["next_chapter"]=19759, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138185, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45601, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=297535, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30051, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=297535, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19759]={ + ["next_chapter"]=19760, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138225, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45614, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=300510, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30352, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=300510, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=29011, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1975, + ["unit"]=0 + } + }, + [19760]={ + ["next_chapter"]=19761, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=138266, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45628, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=303515, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30655, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=303515, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19761]={ + ["next_chapter"]=19762, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45641, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=306550, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=30962, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=306550, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19762]={ + ["next_chapter"]=19763, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138347, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=309616, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31271, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=309616, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19763]={ + ["next_chapter"]=19764, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138387, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45668, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=312712, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31584, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=312712, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19764]={ + ["next_chapter"]=19765, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138428, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45681, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=315839, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=31900, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=315839, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19765]={ + ["next_chapter"]=19766, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138468, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45694, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=318997, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32219, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=318997, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19766]={ + ["next_chapter"]=19767, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45708, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=322187, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32541, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=322187, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19767]={ + ["next_chapter"]=19768, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138549, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45721, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=325409, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=32866, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=325409, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19768]={ + ["next_chapter"]=19769, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138589, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45735, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=328663, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33195, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=328663, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19769]={ + ["next_chapter"]=19770, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138630, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45748, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=331950, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33527, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=331950, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=32046, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1976, + ["unit"]=0 + } + }, + [19770]={ + ["next_chapter"]=19771, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=138670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45761, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=335270, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=33862, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=335270, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19771]={ + ["next_chapter"]=19772, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138711, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45775, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=338622, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34201, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=338622, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19772]={ + ["next_chapter"]=19773, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45788, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=342008, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34543, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=342008, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19773]={ + ["next_chapter"]=19774, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138792, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45801, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=345429, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=34888, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=345429, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19774]={ + ["next_chapter"]=19775, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138833, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45815, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=348883, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35237, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=348883, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19775]={ + ["next_chapter"]=19776, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138873, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45828, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=352372, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35590, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=352372, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19776]={ + ["next_chapter"]=19777, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138914, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45841, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=355895, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=35945, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=355895, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19777]={ + ["next_chapter"]=19778, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138954, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45855, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=359454, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36305, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=359454, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19778]={ + ["next_chapter"]=19779, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=138995, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45868, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=363049, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=36668, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=363049, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19779]={ + ["next_chapter"]=19780, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139035, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45882, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=366679, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37035, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=366679, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=35398, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1977, + ["unit"]=0 + } + }, + [19780]={ + ["next_chapter"]=19781, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=139076, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45895, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=370346, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37405, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=370346, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19781]={ + ["next_chapter"]=19782, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139116, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45908, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=374050, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=37779, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=374050, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19782]={ + ["next_chapter"]=19783, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139157, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45922, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=377790, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38157, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=377790, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19783]={ + ["next_chapter"]=19784, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139198, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45935, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=381568, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38538, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=381568, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19784]={ + ["next_chapter"]=19785, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45949, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=385384, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=38924, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=385384, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19785]={ + ["next_chapter"]=19786, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139279, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45962, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=389238, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39313, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=389238, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19786]={ + ["next_chapter"]=19787, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139319, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45975, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=393130, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=39706, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=393130, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19787]={ + ["next_chapter"]=19788, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139360, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=45989, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=397061, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40103, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=397061, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19788]={ + ["next_chapter"]=19789, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139401, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=401032, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40504, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=401032, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19789]={ + ["next_chapter"]=19790, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139441, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=405042, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=40909, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=405042, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=39102, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1978, + ["unit"]=0 + } + }, + [19790]={ + ["next_chapter"]=19791, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=139482, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=409093, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41318, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=409093, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19791]={ + ["next_chapter"]=19792, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139523, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=413183, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=41732, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=413183, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19792]={ + ["next_chapter"]=19793, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139563, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=417315, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42149, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=417315, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19793]={ + ["next_chapter"]=19794, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46069, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=421488, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42570, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=421488, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19794]={ + ["next_chapter"]=19795, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139645, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46083, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=425703, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=42996, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=425703, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19795]={ + ["next_chapter"]=19796, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139685, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46096, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=429960, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43426, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=429960, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19796]={ + ["next_chapter"]=19797, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139726, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46110, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=434260, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=43860, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=434260, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19797]={ + ["next_chapter"]=19798, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139767, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46123, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=438603, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44299, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=438603, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19798]={ + ["next_chapter"]=19799, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139808, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46137, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=442989, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=44742, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=442989, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19799]={ + ["next_chapter"]=19800, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_03", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139848, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46150, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=447418, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45189, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=447418, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=43193, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1979, + ["unit"]=0 + } + }, + [19800]={ + ["next_chapter"]=19801, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_03", + ["time_limit"]=60000, + ["random_monster"]=208, + ["atk_coefficient"]={ + ["value"]=139889, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46163, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=451893, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=45641, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=451893, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19801]={ + ["next_chapter"]=19802, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46177, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=456412, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46098, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=456412, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19802]={ + ["next_chapter"]=19803, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=139971, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46190, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=460976, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=46559, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=460976, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19803]={ + ["next_chapter"]=19804, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140011, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46204, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=465585, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47024, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=465585, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19804]={ + ["next_chapter"]=19805, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140052, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46217, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=470241, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47494, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=470241, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19805]={ + ["next_chapter"]=19806, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140093, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46231, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=474944, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=47969, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=474944, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19806]={ + ["next_chapter"]=19807, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140134, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46244, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=479693, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48449, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=479693, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19807]={ + ["next_chapter"]=19808, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46258, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=484490, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=48933, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=484490, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19808]={ + ["next_chapter"]=19809, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46271, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=489335, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49423, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=489335, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19809]={ + ["next_chapter"]=19810, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46284, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=494228, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=49917, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=494228, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=47712, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1980, + ["unit"]=0 + } + }, + [19810]={ + ["next_chapter"]=19811, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=140297, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46298, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=499171, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50416, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=499171, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19811]={ + ["next_chapter"]=19812, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140338, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46311, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=504162, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=50920, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=504162, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19812]={ + ["next_chapter"]=19813, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46325, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=509204, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51430, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=509204, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19813]={ + ["next_chapter"]=19814, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46338, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=514296, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=51944, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=514296, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19814]={ + ["next_chapter"]=19815, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140460, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46352, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=519439, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52463, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=519439, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19815]={ + ["next_chapter"]=19816, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140501, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46365, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=524633, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=52988, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=524633, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19816]={ + ["next_chapter"]=19817, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140542, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46379, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=529880, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=53518, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=529880, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19817]={ + ["next_chapter"]=19818, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140583, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46392, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=535178, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54053, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=535178, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19818]={ + ["next_chapter"]=19819, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140624, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46406, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=540530, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=54594, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=540530, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19819]={ + ["next_chapter"]=19820, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140665, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46419, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=545936, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55139, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=545936, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=52703, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1981, + ["unit"]=0 + } + }, + [19820]={ + ["next_chapter"]=19821, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=140705, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46433, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=551395, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=55691, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=551395, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19821]={ + ["next_chapter"]=19822, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140746, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46446, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=556909, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56248, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=556909, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19822]={ + ["next_chapter"]=19823, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140787, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46460, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=562478, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=56810, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=562478, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19823]={ + ["next_chapter"]=19824, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140828, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=568103, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57378, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=568103, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19824]={ + ["next_chapter"]=19825, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140869, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46487, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=573784, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=57952, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=573784, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19825]={ + ["next_chapter"]=19826, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140910, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46500, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=579522, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=58532, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=579522, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19826]={ + ["next_chapter"]=19827, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140951, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46514, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=585317, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59117, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=585317, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19827]={ + ["next_chapter"]=19828, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=140992, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46527, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=591170, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=59708, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=591170, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19828]={ + ["next_chapter"]=19829, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141033, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46541, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=597082, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60305, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=597082, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19829]={ + ["next_chapter"]=19830, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141074, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46554, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=603052, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=60908, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=603052, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=58217, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1982, + ["unit"]=0 + } + }, + [19830]={ + ["next_chapter"]=19831, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=141115, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46568, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=609083, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=61517, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=609083, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19831]={ + ["next_chapter"]=19832, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141156, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46581, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=615174, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62133, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=615174, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19832]={ + ["next_chapter"]=19833, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141197, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46595, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=621326, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=62754, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=621326, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19833]={ + ["next_chapter"]=19834, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141238, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46608, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=627539, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=63381, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=627539, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19834]={ + ["next_chapter"]=19835, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141279, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46622, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=633814, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64015, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=633814, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19835]={ + ["next_chapter"]=19836, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141320, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46636, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=640152, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=64655, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=640152, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19836]={ + ["next_chapter"]=19837, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141361, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46649, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=646554, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65302, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=646554, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19837]={ + ["next_chapter"]=19838, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141402, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46663, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=653019, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=65955, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=653019, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19838]={ + ["next_chapter"]=19839, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141443, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46676, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=659550, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=66615, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=659550, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19839]={ + ["next_chapter"]=19840, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141484, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46690, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=666145, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67281, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=666145, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=64308, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1983, + ["unit"]=0 + } + }, + [19840]={ + ["next_chapter"]=19841, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=141525, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46703, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=672807, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=67953, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=672807, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19841]={ + ["next_chapter"]=19842, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141566, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46717, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=679535, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=68633, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=679535, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19842]={ + ["next_chapter"]=19843, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141607, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46730, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=686330, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=69319, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=686330, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19843]={ + ["next_chapter"]=19844, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141648, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46744, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=693193, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70013, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=693193, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19844]={ + ["next_chapter"]=19845, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141689, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46757, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=700125, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=70713, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=700125, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19845]={ + ["next_chapter"]=19846, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141730, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46771, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=707126, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=71420, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=707126, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19846]={ + ["next_chapter"]=19847, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141771, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46785, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=714198, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72134, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=714198, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19847]={ + ["next_chapter"]=19848, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141813, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46798, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=721340, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=72855, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=721340, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19848]={ + ["next_chapter"]=19849, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141854, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46812, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=728553, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=73584, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=728553, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19849]={ + ["next_chapter"]=19850, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141895, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46825, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=735839, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=74320, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=735839, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=71036, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1984, + ["unit"]=0 + } + }, + [19850]={ + ["next_chapter"]=19851, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=141936, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46839, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=743197, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75063, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=743197, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19851]={ + ["next_chapter"]=19852, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=141977, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46852, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=750629, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=75814, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=750629, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19852]={ + ["next_chapter"]=19853, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142018, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46866, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=758135, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=76572, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=758135, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19853]={ + ["next_chapter"]=19854, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142059, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46880, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=765717, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=77337, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=765717, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19854]={ + ["next_chapter"]=19855, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142100, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46893, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=773374, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78111, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=773374, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19855]={ + ["next_chapter"]=19856, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142142, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46907, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=781108, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=78892, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=781108, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19856]={ + ["next_chapter"]=19857, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142183, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46920, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=788919, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=79681, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=788919, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19857]={ + ["next_chapter"]=19858, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46934, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=796808, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=80478, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=796808, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19858]={ + ["next_chapter"]=19859, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142265, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46948, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=804776, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=81282, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=804776, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19859]={ + ["next_chapter"]=19860, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142306, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46961, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=812824, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82095, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=812824, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=78468, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1985, + ["unit"]=0 + } + }, + [19860]={ + ["next_chapter"]=19861, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=212, + ["atk_coefficient"]={ + ["value"]=142348, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46975, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=820952, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=82916, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=820952, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19861]={ + ["next_chapter"]=19862, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142389, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=46988, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=829161, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=83745, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=829161, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19862]={ + ["next_chapter"]=19863, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142430, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=837453, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=84583, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=837453, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19863]={ + ["next_chapter"]=19864, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142471, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=845828, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=85429, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=845828, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19864]={ + ["next_chapter"]=19865, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142513, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47029, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=854286, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=86283, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=854286, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19865]={ + ["next_chapter"]=19866, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142554, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47043, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=862829, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=87146, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=862829, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19866]={ + ["next_chapter"]=19867, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142595, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47056, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=871457, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88017, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=871457, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19867]={ + ["next_chapter"]=19868, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142636, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47070, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=880172, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=88897, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=880172, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19868]={ + ["next_chapter"]=19869, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142678, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47084, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=888973, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=89786, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=888973, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19869]={ + ["next_chapter"]=19870, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142719, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47097, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=897863, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=90684, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=897863, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=86678, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1986, + ["unit"]=0 + } + }, + [19870]={ + ["next_chapter"]=19871, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=205, + ["atk_coefficient"]={ + ["value"]=142760, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47111, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=906842, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=91591, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=906842, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19871]={ + ["next_chapter"]=19872, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142801, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47124, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=915910, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=92507, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=915910, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19872]={ + ["next_chapter"]=19873, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142843, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47138, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=925069, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=93432, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=925069, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19873]={ + ["next_chapter"]=19874, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142884, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47152, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=934320, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=94366, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=934320, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19874]={ + ["next_chapter"]=19875, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142925, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47165, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=943663, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=95310, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=943663, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19875]={ + ["next_chapter"]=19876, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=142967, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47179, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=953100, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=96263, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=953100, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19876]={ + ["next_chapter"]=19877, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143008, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47193, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=962631, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=97226, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=962631, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19877]={ + ["next_chapter"]=19878, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143049, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47206, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=972257, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=98198, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=972257, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19878]={ + ["next_chapter"]=19879, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143091, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47220, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=981980, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=99180, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=981980, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19879]={ + ["next_chapter"]=19880, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143132, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47234, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=991799, + ["unit"]=27 + }, + ["quick_pass_gold_reward"]={ + ["value"]=100172, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=991799, + ["unit"]=27 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=95746, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1987, + ["unit"]=0 + } + }, + [19880]={ + ["next_chapter"]=19881, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=143174, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47247, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1002, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=101173, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1002, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19881]={ + ["next_chapter"]=19882, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47261, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1012, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=102185, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1012, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19882]={ + ["next_chapter"]=19883, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143256, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47275, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1022, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=103207, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1022, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19883]={ + ["next_chapter"]=19884, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143298, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47288, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1032, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=104239, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1032, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19884]={ + ["next_chapter"]=19885, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143339, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47302, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1042, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=105281, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1042, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19885]={ + ["next_chapter"]=19886, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143380, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47316, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1053, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=106334, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1053, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19886]={ + ["next_chapter"]=19887, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143422, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47329, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1063, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=107398, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1063, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19887]={ + ["next_chapter"]=19888, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143463, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47343, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1074, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=108472, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1074, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19888]={ + ["next_chapter"]=19889, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143505, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47357, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1085, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=109556, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1085, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19889]={ + ["next_chapter"]=19890, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143546, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47370, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1096, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=110652, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1096, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=105763, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1988, + ["unit"]=0 + } + }, + [19890]={ + ["next_chapter"]=19891, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=203, + ["atk_coefficient"]={ + ["value"]=143588, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47384, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1107, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=111758, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1107, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19891]={ + ["next_chapter"]=19892, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143629, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47398, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1118, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=112876, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1118, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19892]={ + ["next_chapter"]=19893, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143671, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47411, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1129, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=114005, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1129, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19893]={ + ["next_chapter"]=19894, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47425, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1140, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=115145, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1140, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19894]={ + ["next_chapter"]=19895, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47439, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1151, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=116296, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1151, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19895]={ + ["next_chapter"]=19896, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143795, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47452, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1163, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=117459, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1163, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19896]={ + ["next_chapter"]=19897, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143837, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47466, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1175, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=118634, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1175, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19897]={ + ["next_chapter"]=19898, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143878, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47480, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1186, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=119820, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1186, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19898]={ + ["next_chapter"]=19899, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143920, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47493, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1198, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=121018, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1198, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19899]={ + ["next_chapter"]=19900, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_04", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=143961, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47507, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1210, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=122229, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1210, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=116829, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1989, + ["unit"]=0 + } + }, + [19900]={ + ["next_chapter"]=19901, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_04", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=144003, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47521, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1222, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=123451, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1222, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19901]={ + ["next_chapter"]=19902, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144044, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47535, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1235, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=124685, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1235, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19902]={ + ["next_chapter"]=19903, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144086, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47548, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1247, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=125932, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1247, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19903]={ + ["next_chapter"]=19904, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144127, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47562, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1259, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=127192, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1259, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19904]={ + ["next_chapter"]=19905, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144169, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47576, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1272, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=128463, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1272, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19905]={ + ["next_chapter"]=19906, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47589, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1285, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=129748, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1285, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19906]={ + ["next_chapter"]=19907, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144252, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47603, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1297, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=131046, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1297, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19907]={ + ["next_chapter"]=19908, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144294, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47617, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1310, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=132356, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1310, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19908]={ + ["next_chapter"]=19909, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144335, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47631, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1324, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=133680, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1324, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19909]={ + ["next_chapter"]=19910, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144377, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47644, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1337, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=135016, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1337, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=129051, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1990, + ["unit"]=0 + } + }, + [19910]={ + ["next_chapter"]=19911, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=201, + ["atk_coefficient"]={ + ["value"]=144418, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47658, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1350, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=136367, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1350, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19911]={ + ["next_chapter"]=19912, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144460, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47672, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1364, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=137730, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1364, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19912]={ + ["next_chapter"]=19913, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144502, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47686, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1377, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=139107, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1377, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19913]={ + ["next_chapter"]=19914, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144543, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47699, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1391, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=140499, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1391, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19914]={ + ["next_chapter"]=19915, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144585, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47713, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1405, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=141904, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1405, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19915]={ + ["next_chapter"]=19916, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144626, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47727, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1419, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=143323, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1419, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19916]={ + ["next_chapter"]=19917, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144668, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47740, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1433, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=144756, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1433, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19917]={ + ["next_chapter"]=19918, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144710, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47754, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1448, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=146203, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1448, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19918]={ + ["next_chapter"]=19919, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144751, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47768, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1462, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=147665, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1462, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19919]={ + ["next_chapter"]=19920, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144793, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47782, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1477, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=149142, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1477, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=142553, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1991, + ["unit"]=0 + } + }, + [19920]={ + ["next_chapter"]=19921, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=210, + ["atk_coefficient"]={ + ["value"]=144835, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47796, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1491, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=150633, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1491, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19921]={ + ["next_chapter"]=19922, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144877, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47809, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1506, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=152140, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1506, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19922]={ + ["next_chapter"]=19923, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144918, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47823, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1521, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=153661, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1521, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19923]={ + ["next_chapter"]=19924, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=144960, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47837, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1537, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=155198, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1537, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19924]={ + ["next_chapter"]=19925, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145002, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47851, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1552, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=156750, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1552, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19925]={ + ["next_chapter"]=19926, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145043, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47864, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1567, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=158317, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1567, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19926]={ + ["next_chapter"]=19927, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145085, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47878, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1583, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=159900, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1583, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19927]={ + ["next_chapter"]=19928, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145127, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47892, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1599, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=161499, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1599, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19928]={ + ["next_chapter"]=19929, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145169, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47906, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1615, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=163114, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1615, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19929]={ + ["next_chapter"]=19930, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145210, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47919, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1631, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=164746, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1631, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=157467, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1992, + ["unit"]=0 + } + }, + [19930]={ + ["next_chapter"]=19931, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=145252, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47933, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1647, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=166393, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1647, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19931]={ + ["next_chapter"]=19932, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145294, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47947, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1664, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=168057, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1664, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19932]={ + ["next_chapter"]=19933, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145336, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47961, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1681, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=169738, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1681, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19933]={ + ["next_chapter"]=19934, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145378, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47975, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1697, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=171435, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1697, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19934]={ + ["next_chapter"]=19935, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145419, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=47988, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1714, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=173149, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1714, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19935]={ + ["next_chapter"]=19936, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145461, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48002, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1731, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=174881, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1731, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19936]={ + ["next_chapter"]=19937, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145503, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48016, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1749, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=176630, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1749, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19937]={ + ["next_chapter"]=19938, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145545, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48030, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1766, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=178396, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1766, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19938]={ + ["next_chapter"]=19939, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145587, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48044, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1784, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=180180, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1784, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19939]={ + ["next_chapter"]=19940, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145628, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48057, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1802, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=181982, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1802, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=173942, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1993, + ["unit"]=0 + } + }, + [19940]={ + ["next_chapter"]=19941, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=145670, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48071, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1820, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=183801, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1820, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19941]={ + ["next_chapter"]=19942, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145712, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48085, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1838, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=185639, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1838, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19942]={ + ["next_chapter"]=19943, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145754, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48099, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1856, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=187496, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1856, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19943]={ + ["next_chapter"]=19944, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145796, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48113, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1875, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=189371, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1875, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19944]={ + ["next_chapter"]=19945, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145838, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48126, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1894, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=191265, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1894, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19945]={ + ["next_chapter"]=19946, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145880, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48140, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1913, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=193177, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1913, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19946]={ + ["next_chapter"]=19947, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145922, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48154, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1932, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=195109, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1932, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19947]={ + ["next_chapter"]=19948, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=145963, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48168, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1951, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=197060, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1951, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19948]={ + ["next_chapter"]=19949, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146005, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48182, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1971, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=199031, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1971, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19949]={ + ["next_chapter"]=19950, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146047, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48196, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=1990, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=201021, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=1990, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=192140, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1994, + ["unit"]=0 + } + }, + [19950]={ + ["next_chapter"]=19951, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=146089, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48209, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2010, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=203031, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2010, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19951]={ + ["next_chapter"]=19952, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146131, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48223, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2030, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=205061, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2030, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19952]={ + ["next_chapter"]=19953, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146173, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48237, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2051, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=207112, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2051, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19953]={ + ["next_chapter"]=19954, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146215, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48251, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2071, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=209183, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2071, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19954]={ + ["next_chapter"]=19955, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146257, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48265, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2092, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=211275, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2092, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19955]={ + ["next_chapter"]=19956, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146299, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48279, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2113, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=213388, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2113, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19956]={ + ["next_chapter"]=19957, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146341, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48293, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2134, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=215522, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2134, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19957]={ + ["next_chapter"]=19958, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146383, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48306, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2155, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=217677, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2155, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19958]={ + ["next_chapter"]=19959, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146425, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48320, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2177, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=219854, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2177, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19959]={ + ["next_chapter"]=19960, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146467, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48334, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2199, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=222052, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2199, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=212242, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1995, + ["unit"]=0 + } + }, + [19960]={ + ["next_chapter"]=19961, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=146509, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48348, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2221, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=224273, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2221, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19961]={ + ["next_chapter"]=19962, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146551, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48362, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2243, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=226515, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2243, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19962]={ + ["next_chapter"]=19963, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146593, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48376, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2265, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=228781, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2265, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19963]={ + ["next_chapter"]=19964, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146635, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48390, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2288, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=231068, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2288, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19964]={ + ["next_chapter"]=19965, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146677, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48403, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2311, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=233379, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2311, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19965]={ + ["next_chapter"]=19966, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146719, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48417, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2334, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=235713, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2334, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19966]={ + ["next_chapter"]=19967, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146761, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48431, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2357, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=238070, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2357, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19967]={ + ["next_chapter"]=19968, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146803, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48445, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2381, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=240451, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2381, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19968]={ + ["next_chapter"]=19969, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146845, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48459, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2405, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=242855, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2405, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19969]={ + ["next_chapter"]=19970, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146887, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48473, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2429, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=245284, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2429, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=234447, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1996, + ["unit"]=0 + } + }, + [19970]={ + ["next_chapter"]=19971, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=213, + ["atk_coefficient"]={ + ["value"]=146930, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48487, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2453, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=247737, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2453, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19971]={ + ["next_chapter"]=19972, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=146972, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48501, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2477, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=250214, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2477, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19972]={ + ["next_chapter"]=19973, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147014, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48515, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2502, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=252716, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2502, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19973]={ + ["next_chapter"]=19974, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147056, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48528, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2527, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=255243, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2527, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19974]={ + ["next_chapter"]=19975, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147098, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48542, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2552, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=257796, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2552, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19975]={ + ["next_chapter"]=19976, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147140, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48556, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2578, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=260374, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2578, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19976]={ + ["next_chapter"]=19977, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147182, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48570, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2604, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=262977, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2604, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19977]={ + ["next_chapter"]=19978, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147224, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48584, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2630, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=265607, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2630, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19978]={ + ["next_chapter"]=19979, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147267, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48598, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2656, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=268263, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2656, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19979]={ + ["next_chapter"]=19980, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147309, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48612, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2683, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=270946, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2683, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=258976, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1997, + ["unit"]=0 + } + }, + [19980]={ + ["next_chapter"]=19981, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=207, + ["atk_coefficient"]={ + ["value"]=147351, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48626, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2709, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=273655, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2709, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19981]={ + ["next_chapter"]=19982, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147393, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48640, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2737, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=276392, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2737, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19982]={ + ["next_chapter"]=19983, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147435, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48654, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2764, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=279156, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2764, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19983]={ + ["next_chapter"]=19984, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147477, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48668, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2792, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=281947, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2792, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19984]={ + ["next_chapter"]=19985, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147520, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48681, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2819, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=284767, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2819, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19985]={ + ["next_chapter"]=19986, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147562, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48695, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2848, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=287615, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2848, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19986]={ + ["next_chapter"]=19987, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147604, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48709, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2876, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=290491, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2876, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19987]={ + ["next_chapter"]=19988, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147646, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48723, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2905, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=293396, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2905, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19988]={ + ["next_chapter"]=19989, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147689, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48737, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2934, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=296330, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2934, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19989]={ + ["next_chapter"]=19990, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147731, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48751, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2963, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=299293, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2963, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=286070, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1998, + ["unit"]=0 + } + }, + [19990]={ + ["next_chapter"]=19991, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=206, + ["atk_coefficient"]={ + ["value"]=147773, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48765, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=2993, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=302286, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=2993, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19991]={ + ["next_chapter"]=19992, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147815, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48779, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3023, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=305309, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3023, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19992]={ + ["next_chapter"]=19993, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147858, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48793, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3053, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=308362, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3053, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19993]={ + ["next_chapter"]=19994, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147900, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48807, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3084, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=311445, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3084, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19994]={ + ["next_chapter"]=19995, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147942, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48821, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3114, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=314560, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3114, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19995]={ + ["next_chapter"]=19996, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=147984, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48835, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3146, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=317705, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3146, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19996]={ + ["next_chapter"]=19997, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148027, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48849, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3177, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=320882, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3177, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19997]={ + ["next_chapter"]=19998, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148069, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48863, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3209, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=324091, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3209, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19998]={ + ["next_chapter"]=19999, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148111, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48877, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3241, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=327332, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3241, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [19999]={ + ["next_chapter"]=20000, + ["type"]=1, + ["scene"]="ui_chapter_bg_main_05", + ["random_monster"]=100, + ["atk_coefficient"]={ + ["value"]=148154, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48891, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3273, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=330605, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3273, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=316000, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=1999, + ["unit"]=0 + } + }, + [20000]={ + ["next_chapter"]=20001, + ["type"]=2, + ["scene"]="ui_chapter_bg_main_05", + ["time_limit"]=60000, + ["random_monster"]=202, + ["atk_coefficient"]={ + ["value"]=148196, + ["unit"]=9 + }, + ["hp_coefficient"]={ + ["value"]=48905, + ["unit"]=10 + }, + ["gold_reward"]={ + ["value"]=3306, + ["unit"]=28 + }, + ["quick_pass_gold_reward"]={ + ["value"]=333912, + ["unit"]=28 + }, + ["idle_gold"]={ + ["value"]=3306, + ["unit"]=28 + }, + ["chapter_drop"]=67, + ["grasp_gold_reward"]={ + ["value"]=349060, + ["unit"]=28 + }, + ["grasp_mastery_reward"]={ + ["value"]=2000, + ["unit"]=0 + } + } +} +local config = { +data=chapter4,count=5000 +} +return config \ No newline at end of file diff --git a/lua/app/config/chapter4.lua.meta b/lua/app/config/chapter4.lua.meta new file mode 100644 index 00000000..b51860fd --- /dev/null +++ b/lua/app/config/chapter4.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 91fed305e3d492e438ffc014382686ef +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/chapter_drop.lua b/lua/app/config/chapter_drop.lua new file mode 100644 index 00000000..41289e98 --- /dev/null +++ b/lua/app/config/chapter_drop.lua @@ -0,0 +1,1047 @@ +local chapter_drop = { + [1]={ + ["idle_equip"]={ + { + 1, + 1, + 1 + }, + { + 1, + 0, + 19 + } + } + }, + [2]={ + ["idle_equip"]={ + { + 1, + 1, + 2 + }, + { + 1, + 0, + 18 + } + } + }, + [3]={ + ["idle_equip"]={ + { + 1, + 1, + 3 + }, + { + 1, + 0, + 17 + } + } + }, + [4]={ + ["idle_equip"]={ + { + 1, + 1, + 4 + }, + { + 1, + 0, + 16 + } + } + }, + [5]={ + ["idle_equip"]={ + { + 1, + 1, + 5 + }, + { + 1, + 0, + 15 + } + } + }, + [6]={ + ["idle_equip"]={ + { + 1, + 1, + 6 + }, + { + 1, + 0, + 14 + } + } + }, + [7]={ + ["idle_equip"]={ + { + 1, + 1, + 7 + }, + { + 1, + 0, + 13 + } + } + }, + [8]={ + ["idle_equip"]={ + { + 1, + 1, + 8 + }, + { + 1, + 0, + 12 + } + } + }, + [9]={ + ["idle_equip"]={ + { + 1, + 1, + 9 + }, + { + 1, + 0, + 11 + } + } + }, + [10]={ + ["idle_equip"]={ + { + 1, + 1, + 10 + }, + { + 1, + 0, + 10 + } + } + }, + [11]={ + ["idle_equip"]={ + { + 1, + 1, + 11 + }, + { + 1, + 2, + 1 + }, + { + 1, + 0, + 8 + } + } + }, + [12]={ + ["idle_equip"]={ + { + 1, + 1, + 12 + }, + { + 1, + 2, + 1 + }, + { + 1, + 0, + 7 + } + } + }, + [13]={ + ["idle_equip"]={ + { + 1, + 1, + 13 + }, + { + 1, + 2, + 2 + }, + { + 1, + 0, + 5 + } + } + }, + [14]={ + ["idle_equip"]={ + { + 1, + 1, + 14 + }, + { + 1, + 2, + 2 + }, + { + 1, + 0, + 4 + } + } + }, + [15]={ + ["idle_equip"]={ + { + 1, + 1, + 15 + }, + { + 1, + 2, + 3 + }, + { + 1, + 0, + 2 + } + } + }, + [16]={ + ["idle_equip"]={ + { + 1, + 1, + 16 + }, + { + 1, + 2, + 3 + }, + { + 1, + 0, + 1 + } + } + }, + [17]={ + ["idle_equip"]={ + { + 1, + 1, + 16 + }, + { + 1, + 2, + 4 + } + } + }, + [18]={ + ["idle_equip"]={ + { + 1, + 1, + 15 + }, + { + 1, + 2, + 5 + } + } + }, + [19]={ + ["idle_equip"]={ + { + 1, + 1, + 14 + }, + { + 1, + 2, + 6 + } + } + }, + [20]={ + ["idle_equip"]={ + { + 1, + 1, + 13 + }, + { + 1, + 2, + 7 + } + } + }, + [21]={ + ["idle_equip"]={ + { + 1, + 1, + 12 + }, + { + 1, + 2, + 8 + } + } + }, + [22]={ + ["idle_equip"]={ + { + 1, + 1, + 11 + }, + { + 1, + 2, + 8 + }, + { + 1, + 3, + 1 + } + } + }, + [23]={ + ["idle_equip"]={ + { + 1, + 1, + 10 + }, + { + 1, + 2, + 9 + }, + { + 1, + 3, + 1 + } + } + }, + [24]={ + ["idle_equip"]={ + { + 1, + 1, + 9 + }, + { + 1, + 2, + 10 + }, + { + 1, + 3, + 1 + } + } + }, + [25]={ + ["idle_equip"]={ + { + 1, + 1, + 8 + }, + { + 1, + 2, + 10 + }, + { + 1, + 3, + 2 + } + } + }, + [26]={ + ["idle_equip"]={ + { + 1, + 1, + 7 + }, + { + 1, + 2, + 11 + }, + { + 1, + 3, + 2 + } + } + }, + [27]={ + ["idle_equip"]={ + { + 1, + 1, + 6 + }, + { + 1, + 2, + 12 + }, + { + 1, + 3, + 2 + } + } + }, + [28]={ + ["idle_equip"]={ + { + 1, + 1, + 5 + }, + { + 1, + 2, + 12 + }, + { + 1, + 3, + 3 + } + } + }, + [29]={ + ["idle_equip"]={ + { + 1, + 1, + 4 + }, + { + 1, + 2, + 13 + }, + { + 1, + 3, + 3 + } + } + }, + [30]={ + ["idle_equip"]={ + { + 1, + 1, + 3 + }, + { + 1, + 2, + 14 + }, + { + 1, + 3, + 3 + } + } + }, + [31]={ + ["idle_equip"]={ + { + 1, + 1, + 2 + }, + { + 1, + 2, + 14 + }, + { + 1, + 3, + 4 + } + } + }, + [32]={ + ["idle_equip"]={ + { + 1, + 1, + 1 + }, + { + 1, + 2, + 15 + }, + { + 1, + 3, + 4 + } + } + }, + [33]={ + ["idle_equip"]={ + { + 1, + 2, + 16 + }, + { + 1, + 3, + 4 + } + } + }, + [34]={ + ["idle_equip"]={ + { + 1, + 2, + 15 + }, + { + 1, + 3, + 5 + } + } + }, + [35]={ + ["idle_equip"]={ + { + 1, + 2, + 14 + }, + { + 1, + 3, + 6 + } + } + }, + [36]={ + ["idle_equip"]={ + { + 1, + 2, + 13 + }, + { + 1, + 3, + 7 + } + } + }, + [37]={ + ["idle_equip"]={ + { + 1, + 2, + 12 + }, + { + 1, + 3, + 8 + } + } + }, + [38]={ + ["idle_equip"]={ + { + 1, + 2, + 11 + }, + { + 1, + 3, + 9 + } + } + }, + [39]={ + ["idle_equip"]={ + { + 1, + 2, + 10 + }, + { + 1, + 3, + 10 + } + } + }, + [40]={ + ["idle_equip"]={ + { + 1, + 2, + 9 + }, + { + 1, + 3, + 11 + } + } + }, + [41]={ + ["idle_equip"]={ + { + 1, + 2, + 8 + }, + { + 1, + 3, + 12 + } + } + }, + [42]={ + ["idle_equip"]={ + { + 1, + 2, + 7 + }, + { + 1, + 3, + 13 + } + } + }, + [43]={ + ["idle_equip"]={ + { + 1, + 2, + 6 + }, + { + 1, + 3, + 14 + } + } + }, + [44]={ + ["idle_equip"]={ + { + 1, + 2, + 5 + }, + { + 1, + 3, + 15 + } + } + }, + [45]={ + ["idle_equip"]={ + { + 1, + 2, + 4 + }, + { + 1, + 3, + 16 + } + } + }, + [46]={ + ["idle_equip"]={ + { + 1, + 2, + 3 + }, + { + 1, + 3, + 17 + } + } + }, + [47]={ + ["idle_equip"]={ + { + 1, + 2, + 2 + }, + { + 1, + 3, + 18 + } + } + }, + [48]={ + ["idle_equip"]={ + { + 1, + 2, + 1 + }, + { + 1, + 3, + 19 + } + } + }, + [49]={ + ["idle_equip"]={ + { + 1, + 3, + 20 + } + } + }, + [50]={ + ["idle_equip"]={ + { + 1, + 3, + 19 + }, + { + 1, + 4, + 1 + } + } + }, + [51]={ + ["idle_equip"]={ + { + 1, + 3, + 18 + }, + { + 1, + 4, + 2 + } + } + }, + [52]={ + ["idle_equip"]={ + { + 1, + 3, + 17 + }, + { + 1, + 4, + 3 + } + } + }, + [53]={ + ["idle_equip"]={ + { + 1, + 3, + 16 + }, + { + 1, + 4, + 4 + } + } + }, + [54]={ + ["idle_equip"]={ + { + 1, + 3, + 15 + }, + { + 1, + 4, + 5 + } + } + }, + [55]={ + ["idle_equip"]={ + { + 1, + 3, + 14 + }, + { + 1, + 4, + 6 + } + } + }, + [56]={ + ["idle_equip"]={ + { + 1, + 3, + 13 + }, + { + 1, + 4, + 7 + } + } + }, + [57]={ + ["idle_equip"]={ + { + 1, + 3, + 12 + }, + { + 1, + 4, + 8 + } + } + }, + [58]={ + ["idle_equip"]={ + { + 1, + 3, + 11 + }, + { + 1, + 4, + 9 + } + } + }, + [59]={ + ["idle_equip"]={ + { + 1, + 3, + 10 + }, + { + 1, + 4, + 10 + } + } + }, + [60]={ + ["idle_equip"]={ + { + 1, + 3, + 9 + }, + { + 1, + 4, + 11 + } + } + }, + [61]={ + ["idle_equip"]={ + { + 1, + 3, + 8 + }, + { + 1, + 4, + 12 + } + } + }, + [62]={ + ["idle_equip"]={ + { + 1, + 3, + 7 + }, + { + 1, + 4, + 13 + } + } + }, + [63]={ + ["idle_equip"]={ + { + 1, + 3, + 6 + }, + { + 1, + 4, + 14 + } + } + }, + [64]={ + ["idle_equip"]={ + { + 1, + 3, + 5 + }, + { + 1, + 4, + 15 + } + } + }, + [65]={ + ["idle_equip"]={ + { + 1, + 3, + 4 + }, + { + 1, + 4, + 16 + } + } + }, + [66]={ + ["idle_equip"]={ + { + 1, + 3, + 3 + }, + { + 1, + 4, + 17 + } + } + }, + [67]={ + ["idle_equip"]={ + { + 1, + 3, + 2 + }, + { + 1, + 4, + 18 + } + } + }, + [68]={ + ["idle_equip"]={ + { + 1, + 3, + 1 + }, + { + 1, + 4, + 19 + } + } + }, + [69]={ + ["idle_equip"]={ + { + 1, + 4, + 20 + } + } + } +} +local config = { +data=chapter_drop,count=69 +} +return config \ No newline at end of file diff --git a/lua/app/config/chapter_drop.lua.meta b/lua/app/config/chapter_drop.lua.meta new file mode 100644 index 00000000..c2cf3df8 --- /dev/null +++ b/lua/app/config/chapter_drop.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 99fbed847a1a5b54eb9b31f9642f9609 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/chapter_first_reward.lua b/lua/app/config/chapter_first_reward.lua new file mode 100644 index 00000000..6379f145 --- /dev/null +++ b/lua/app/config/chapter_first_reward.lua @@ -0,0 +1,7132 @@ +local chapter_first_reward = { + [1]={ + ["chapter"]=10, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [2]={ + ["chapter"]=20, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [3]={ + ["chapter"]=30, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [4]={ + ["chapter"]=50, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [5]={ + ["chapter"]=70, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=18, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [6]={ + ["chapter"]=100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [7]={ + ["chapter"]=150, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [8]={ + ["chapter"]=200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [9]={ + ["chapter"]=250, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [10]={ + ["chapter"]=300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [11]={ + ["chapter"]=350, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [12]={ + ["chapter"]=400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [13]={ + ["chapter"]=450, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [14]={ + ["chapter"]=500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [15]={ + ["chapter"]=600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [16]={ + ["chapter"]=700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [17]={ + ["chapter"]=800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [18]={ + ["chapter"]=900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [19]={ + ["chapter"]=1000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [20]={ + ["chapter"]=1100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [21]={ + ["chapter"]=1200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [22]={ + ["chapter"]=1300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [23]={ + ["chapter"]=1400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [24]={ + ["chapter"]=1500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [25]={ + ["chapter"]=1600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [26]={ + ["chapter"]=1700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [27]={ + ["chapter"]=1800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [28]={ + ["chapter"]=1900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [29]={ + ["chapter"]=2000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [30]={ + ["chapter"]=2100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [31]={ + ["chapter"]=2200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [32]={ + ["chapter"]=2300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [33]={ + ["chapter"]=2400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [34]={ + ["chapter"]=2500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [35]={ + ["chapter"]=2600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [36]={ + ["chapter"]=2700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [37]={ + ["chapter"]=2800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [38]={ + ["chapter"]=2900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [39]={ + ["chapter"]=3000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [40]={ + ["chapter"]=3100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [41]={ + ["chapter"]=3200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [42]={ + ["chapter"]=3300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [43]={ + ["chapter"]=3400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [44]={ + ["chapter"]=3500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [45]={ + ["chapter"]=3600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [46]={ + ["chapter"]=3700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [47]={ + ["chapter"]=3800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [48]={ + ["chapter"]=3900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [49]={ + ["chapter"]=4000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [50]={ + ["chapter"]=4100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [51]={ + ["chapter"]=4200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [52]={ + ["chapter"]=4300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [53]={ + ["chapter"]=4400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [54]={ + ["chapter"]=4500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [55]={ + ["chapter"]=4600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [56]={ + ["chapter"]=4700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [57]={ + ["chapter"]=4800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [58]={ + ["chapter"]=4900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [59]={ + ["chapter"]=5000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [60]={ + ["chapter"]=5100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [61]={ + ["chapter"]=5200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [62]={ + ["chapter"]=5300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [63]={ + ["chapter"]=5400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [64]={ + ["chapter"]=5500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [65]={ + ["chapter"]=5600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [66]={ + ["chapter"]=5700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [67]={ + ["chapter"]=5800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [68]={ + ["chapter"]=5900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [69]={ + ["chapter"]=6000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [70]={ + ["chapter"]=6100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [71]={ + ["chapter"]=6200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [72]={ + ["chapter"]=6300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [73]={ + ["chapter"]=6400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [74]={ + ["chapter"]=6500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [75]={ + ["chapter"]=6600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [76]={ + ["chapter"]=6700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [77]={ + ["chapter"]=6800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [78]={ + ["chapter"]=6900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [79]={ + ["chapter"]=7000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [80]={ + ["chapter"]=7100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [81]={ + ["chapter"]=7200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [82]={ + ["chapter"]=7300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [83]={ + ["chapter"]=7400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [84]={ + ["chapter"]=7500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [85]={ + ["chapter"]=7600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [86]={ + ["chapter"]=7700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [87]={ + ["chapter"]=7800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [88]={ + ["chapter"]=7900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [89]={ + ["chapter"]=8000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [90]={ + ["chapter"]=8100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [91]={ + ["chapter"]=8200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [92]={ + ["chapter"]=8300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [93]={ + ["chapter"]=8400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [94]={ + ["chapter"]=8500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [95]={ + ["chapter"]=8600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [96]={ + ["chapter"]=8700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [97]={ + ["chapter"]=8800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [98]={ + ["chapter"]=8900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [99]={ + ["chapter"]=9000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [100]={ + ["chapter"]=9100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [101]={ + ["chapter"]=9200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [102]={ + ["chapter"]=9300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [103]={ + ["chapter"]=9400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [104]={ + ["chapter"]=9500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [105]={ + ["chapter"]=9600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [106]={ + ["chapter"]=9700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [107]={ + ["chapter"]=9800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [108]={ + ["chapter"]=9900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [109]={ + ["chapter"]=10000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [110]={ + ["chapter"]=10100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [111]={ + ["chapter"]=10200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [112]={ + ["chapter"]=10300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [113]={ + ["chapter"]=10400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [114]={ + ["chapter"]=10500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [115]={ + ["chapter"]=10600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [116]={ + ["chapter"]=10700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [117]={ + ["chapter"]=10800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [118]={ + ["chapter"]=10900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [119]={ + ["chapter"]=11000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [120]={ + ["chapter"]=11100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [121]={ + ["chapter"]=11200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [122]={ + ["chapter"]=11300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [123]={ + ["chapter"]=11400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [124]={ + ["chapter"]=11500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [125]={ + ["chapter"]=11600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [126]={ + ["chapter"]=11700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [127]={ + ["chapter"]=11800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [128]={ + ["chapter"]=11900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [129]={ + ["chapter"]=12000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [130]={ + ["chapter"]=12100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [131]={ + ["chapter"]=12200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [132]={ + ["chapter"]=12300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [133]={ + ["chapter"]=12400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [134]={ + ["chapter"]=12500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [135]={ + ["chapter"]=12600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [136]={ + ["chapter"]=12700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [137]={ + ["chapter"]=12800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [138]={ + ["chapter"]=12900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [139]={ + ["chapter"]=13000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [140]={ + ["chapter"]=13100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [141]={ + ["chapter"]=13200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [142]={ + ["chapter"]=13300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [143]={ + ["chapter"]=13400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [144]={ + ["chapter"]=13500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [145]={ + ["chapter"]=13600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [146]={ + ["chapter"]=13700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [147]={ + ["chapter"]=13800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [148]={ + ["chapter"]=13900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [149]={ + ["chapter"]=14000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [150]={ + ["chapter"]=14100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [151]={ + ["chapter"]=14200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [152]={ + ["chapter"]=14300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [153]={ + ["chapter"]=14400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [154]={ + ["chapter"]=14500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [155]={ + ["chapter"]=14600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [156]={ + ["chapter"]=14700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [157]={ + ["chapter"]=14800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [158]={ + ["chapter"]=14900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [159]={ + ["chapter"]=15000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [160]={ + ["chapter"]=15100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [161]={ + ["chapter"]=15200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [162]={ + ["chapter"]=15300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [163]={ + ["chapter"]=15400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [164]={ + ["chapter"]=15500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [165]={ + ["chapter"]=15600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [166]={ + ["chapter"]=15700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [167]={ + ["chapter"]=15800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [168]={ + ["chapter"]=15900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [169]={ + ["chapter"]=16000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [170]={ + ["chapter"]=16100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [171]={ + ["chapter"]=16200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [172]={ + ["chapter"]=16300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [173]={ + ["chapter"]=16400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [174]={ + ["chapter"]=16500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [175]={ + ["chapter"]=16600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [176]={ + ["chapter"]=16700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [177]={ + ["chapter"]=16800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [178]={ + ["chapter"]=16900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [179]={ + ["chapter"]=17000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [180]={ + ["chapter"]=17100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [181]={ + ["chapter"]=17200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [182]={ + ["chapter"]=17300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [183]={ + ["chapter"]=17400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [184]={ + ["chapter"]=17500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [185]={ + ["chapter"]=17600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [186]={ + ["chapter"]=17700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [187]={ + ["chapter"]=17800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [188]={ + ["chapter"]=17900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [189]={ + ["chapter"]=18000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [190]={ + ["chapter"]=18100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [191]={ + ["chapter"]=18200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [192]={ + ["chapter"]=18300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [193]={ + ["chapter"]=18400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [194]={ + ["chapter"]=18500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [195]={ + ["chapter"]=18600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [196]={ + ["chapter"]=18700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [197]={ + ["chapter"]=18800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [198]={ + ["chapter"]=18900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [199]={ + ["chapter"]=19000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [200]={ + ["chapter"]=19100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [201]={ + ["chapter"]=19200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [202]={ + ["chapter"]=19300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [203]={ + ["chapter"]=19400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [204]={ + ["chapter"]=19500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [205]={ + ["chapter"]=19600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [206]={ + ["chapter"]=19700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [207]={ + ["chapter"]=19800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [208]={ + ["chapter"]=19900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [209]={ + ["chapter"]=20000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [210]={ + ["chapter"]=20100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [211]={ + ["chapter"]=20200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [212]={ + ["chapter"]=20300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [213]={ + ["chapter"]=20400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [214]={ + ["chapter"]=20500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [215]={ + ["chapter"]=20600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [216]={ + ["chapter"]=20700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [217]={ + ["chapter"]=20800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [218]={ + ["chapter"]=20900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [219]={ + ["chapter"]=21000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [220]={ + ["chapter"]=21100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [221]={ + ["chapter"]=21200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [222]={ + ["chapter"]=21300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [223]={ + ["chapter"]=21400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [224]={ + ["chapter"]=21500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [225]={ + ["chapter"]=21600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [226]={ + ["chapter"]=21700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [227]={ + ["chapter"]=21800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [228]={ + ["chapter"]=21900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [229]={ + ["chapter"]=22000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [230]={ + ["chapter"]=22100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [231]={ + ["chapter"]=22200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [232]={ + ["chapter"]=22300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [233]={ + ["chapter"]=22400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [234]={ + ["chapter"]=22500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [235]={ + ["chapter"]=22600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [236]={ + ["chapter"]=22700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [237]={ + ["chapter"]=22800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [238]={ + ["chapter"]=22900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [239]={ + ["chapter"]=23000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [240]={ + ["chapter"]=23100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [241]={ + ["chapter"]=23200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [242]={ + ["chapter"]=23300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [243]={ + ["chapter"]=23400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [244]={ + ["chapter"]=23500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [245]={ + ["chapter"]=23600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [246]={ + ["chapter"]=23700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [247]={ + ["chapter"]=23800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [248]={ + ["chapter"]=23900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [249]={ + ["chapter"]=24000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [250]={ + ["chapter"]=24100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [251]={ + ["chapter"]=24200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [252]={ + ["chapter"]=24300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [253]={ + ["chapter"]=24400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [254]={ + ["chapter"]=24500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [255]={ + ["chapter"]=24600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [256]={ + ["chapter"]=24700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [257]={ + ["chapter"]=24800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [258]={ + ["chapter"]=24900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [259]={ + ["chapter"]=25000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [260]={ + ["chapter"]=25100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [261]={ + ["chapter"]=25200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [262]={ + ["chapter"]=25300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [263]={ + ["chapter"]=25400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [264]={ + ["chapter"]=25500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [265]={ + ["chapter"]=25600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [266]={ + ["chapter"]=25700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [267]={ + ["chapter"]=25800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [268]={ + ["chapter"]=25900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [269]={ + ["chapter"]=26000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [270]={ + ["chapter"]=26100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [271]={ + ["chapter"]=26200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [272]={ + ["chapter"]=26300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [273]={ + ["chapter"]=26400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [274]={ + ["chapter"]=26500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [275]={ + ["chapter"]=26600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [276]={ + ["chapter"]=26700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [277]={ + ["chapter"]=26800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [278]={ + ["chapter"]=26900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [279]={ + ["chapter"]=27000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [280]={ + ["chapter"]=27100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [281]={ + ["chapter"]=27200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [282]={ + ["chapter"]=27300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [283]={ + ["chapter"]=27400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [284]={ + ["chapter"]=27500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [285]={ + ["chapter"]=27600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [286]={ + ["chapter"]=27700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [287]={ + ["chapter"]=27800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [288]={ + ["chapter"]=27900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [289]={ + ["chapter"]=28000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [290]={ + ["chapter"]=28100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [291]={ + ["chapter"]=28200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [292]={ + ["chapter"]=28300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [293]={ + ["chapter"]=28400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [294]={ + ["chapter"]=28500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [295]={ + ["chapter"]=28600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [296]={ + ["chapter"]=28700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [297]={ + ["chapter"]=28800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [298]={ + ["chapter"]=28900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [299]={ + ["chapter"]=29000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [300]={ + ["chapter"]=29100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [301]={ + ["chapter"]=29200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [302]={ + ["chapter"]=29300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [303]={ + ["chapter"]=29400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [304]={ + ["chapter"]=29500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [305]={ + ["chapter"]=29600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [306]={ + ["chapter"]=29700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [307]={ + ["chapter"]=29800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [308]={ + ["chapter"]=29900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [309]={ + ["chapter"]=30000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [310]={ + ["chapter"]=30100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [311]={ + ["chapter"]=30200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [312]={ + ["chapter"]=30300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [313]={ + ["chapter"]=30400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [314]={ + ["chapter"]=30500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [315]={ + ["chapter"]=30600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [316]={ + ["chapter"]=30700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [317]={ + ["chapter"]=30800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [318]={ + ["chapter"]=30900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [319]={ + ["chapter"]=31000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [320]={ + ["chapter"]=31100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [321]={ + ["chapter"]=31200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [322]={ + ["chapter"]=31300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [323]={ + ["chapter"]=31400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [324]={ + ["chapter"]=31500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [325]={ + ["chapter"]=31600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [326]={ + ["chapter"]=31700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [327]={ + ["chapter"]=31800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [328]={ + ["chapter"]=31900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [329]={ + ["chapter"]=32000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [330]={ + ["chapter"]=32100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [331]={ + ["chapter"]=32200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [332]={ + ["chapter"]=32300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [333]={ + ["chapter"]=32400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [334]={ + ["chapter"]=32500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [335]={ + ["chapter"]=32600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [336]={ + ["chapter"]=32700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [337]={ + ["chapter"]=32800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [338]={ + ["chapter"]=32900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [339]={ + ["chapter"]=33000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [340]={ + ["chapter"]=33100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [341]={ + ["chapter"]=33200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [342]={ + ["chapter"]=33300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [343]={ + ["chapter"]=33400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [344]={ + ["chapter"]=33500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [345]={ + ["chapter"]=33600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [346]={ + ["chapter"]=33700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [347]={ + ["chapter"]=33800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [348]={ + ["chapter"]=33900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [349]={ + ["chapter"]=34000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [350]={ + ["chapter"]=34100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [351]={ + ["chapter"]=34200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [352]={ + ["chapter"]=34300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [353]={ + ["chapter"]=34400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [354]={ + ["chapter"]=34500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [355]={ + ["chapter"]=34600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [356]={ + ["chapter"]=34700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [357]={ + ["chapter"]=34800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [358]={ + ["chapter"]=34900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [359]={ + ["chapter"]=35000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [360]={ + ["chapter"]=35100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [361]={ + ["chapter"]=35200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [362]={ + ["chapter"]=35300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [363]={ + ["chapter"]=35400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [364]={ + ["chapter"]=35500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [365]={ + ["chapter"]=35600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [366]={ + ["chapter"]=35700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [367]={ + ["chapter"]=35800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [368]={ + ["chapter"]=35900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [369]={ + ["chapter"]=36000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [370]={ + ["chapter"]=36100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [371]={ + ["chapter"]=36200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [372]={ + ["chapter"]=36300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [373]={ + ["chapter"]=36400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [374]={ + ["chapter"]=36500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [375]={ + ["chapter"]=36600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [376]={ + ["chapter"]=36700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [377]={ + ["chapter"]=36800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [378]={ + ["chapter"]=36900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [379]={ + ["chapter"]=37000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [380]={ + ["chapter"]=37100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [381]={ + ["chapter"]=37200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [382]={ + ["chapter"]=37300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [383]={ + ["chapter"]=37400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [384]={ + ["chapter"]=37500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [385]={ + ["chapter"]=37600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [386]={ + ["chapter"]=37700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [387]={ + ["chapter"]=37800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [388]={ + ["chapter"]=37900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [389]={ + ["chapter"]=38000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [390]={ + ["chapter"]=38100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [391]={ + ["chapter"]=38200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [392]={ + ["chapter"]=38300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [393]={ + ["chapter"]=38400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [394]={ + ["chapter"]=38500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [395]={ + ["chapter"]=38600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [396]={ + ["chapter"]=38700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [397]={ + ["chapter"]=38800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [398]={ + ["chapter"]=38900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [399]={ + ["chapter"]=39000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [400]={ + ["chapter"]=39100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [401]={ + ["chapter"]=39200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [402]={ + ["chapter"]=39300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [403]={ + ["chapter"]=39400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [404]={ + ["chapter"]=39500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [405]={ + ["chapter"]=39600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [406]={ + ["chapter"]=39700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [407]={ + ["chapter"]=39800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [408]={ + ["chapter"]=39900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [409]={ + ["chapter"]=40000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [410]={ + ["chapter"]=40100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [411]={ + ["chapter"]=40200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [412]={ + ["chapter"]=40300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [413]={ + ["chapter"]=40400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [414]={ + ["chapter"]=40500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [415]={ + ["chapter"]=40600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [416]={ + ["chapter"]=40700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [417]={ + ["chapter"]=40800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [418]={ + ["chapter"]=40900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [419]={ + ["chapter"]=41000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [420]={ + ["chapter"]=41100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [421]={ + ["chapter"]=41200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [422]={ + ["chapter"]=41300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [423]={ + ["chapter"]=41400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [424]={ + ["chapter"]=41500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [425]={ + ["chapter"]=41600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [426]={ + ["chapter"]=41700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [427]={ + ["chapter"]=41800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [428]={ + ["chapter"]=41900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [429]={ + ["chapter"]=42000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [430]={ + ["chapter"]=42100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30013 + }, + [431]={ + ["chapter"]=42200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [432]={ + ["chapter"]=42300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [433]={ + ["chapter"]=42400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [434]={ + ["chapter"]=42500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [435]={ + ["chapter"]=42600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [436]={ + ["chapter"]=42700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [437]={ + ["chapter"]=42800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [438]={ + ["chapter"]=42900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [439]={ + ["chapter"]=43000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [440]={ + ["chapter"]=43100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [441]={ + ["chapter"]=43200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [442]={ + ["chapter"]=43300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [443]={ + ["chapter"]=43400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [444]={ + ["chapter"]=43500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [445]={ + ["chapter"]=43600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [446]={ + ["chapter"]=43700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [447]={ + ["chapter"]=43800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [448]={ + ["chapter"]=43900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [449]={ + ["chapter"]=44000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [450]={ + ["chapter"]=44100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [451]={ + ["chapter"]=44200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [452]={ + ["chapter"]=44300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [453]={ + ["chapter"]=44400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [454]={ + ["chapter"]=44500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [455]={ + ["chapter"]=44600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [456]={ + ["chapter"]=44700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [457]={ + ["chapter"]=44800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [458]={ + ["chapter"]=44900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [459]={ + ["chapter"]=45000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [460]={ + ["chapter"]=45100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [461]={ + ["chapter"]=45200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [462]={ + ["chapter"]=45300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [463]={ + ["chapter"]=45400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30016 + }, + [464]={ + ["chapter"]=45500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [465]={ + ["chapter"]=45600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [466]={ + ["chapter"]=45700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [467]={ + ["chapter"]=45800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=2003 + }, + [468]={ + ["chapter"]=45900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [469]={ + ["chapter"]=46000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [470]={ + ["chapter"]=46100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [471]={ + ["chapter"]=46200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [472]={ + ["chapter"]=46300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [473]={ + ["chapter"]=46400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [474]={ + ["chapter"]=46500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [475]={ + ["chapter"]=46600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [476]={ + ["chapter"]=46700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [477]={ + ["chapter"]=46800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [478]={ + ["chapter"]=46900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [479]={ + ["chapter"]=47000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [480]={ + ["chapter"]=47100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [481]={ + ["chapter"]=47200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [482]={ + ["chapter"]=47300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [483]={ + ["chapter"]=47400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [484]={ + ["chapter"]=47500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [485]={ + ["chapter"]=47600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [486]={ + ["chapter"]=47700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [487]={ + ["chapter"]=47800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [488]={ + ["chapter"]=47900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3009 + }, + [489]={ + ["chapter"]=48000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [490]={ + ["chapter"]=48100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [491]={ + ["chapter"]=48200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [492]={ + ["chapter"]=48300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30011 + }, + [493]={ + ["chapter"]=48400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=30015 + }, + [494]={ + ["chapter"]=48500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [495]={ + ["chapter"]=48600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [496]={ + ["chapter"]=48700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [497]={ + ["chapter"]=48800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [498]={ + ["chapter"]=48900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [499]={ + ["chapter"]=49000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + }, + [500]={ + ["chapter"]=49100, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [501]={ + ["chapter"]=49200, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [502]={ + ["chapter"]=49300, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3002 + }, + [503]={ + ["chapter"]=49400, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3019 + }, + [504]={ + ["chapter"]=49500, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3008 + }, + [505]={ + ["chapter"]=49600, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3004 + }, + [506]={ + ["chapter"]=49700, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3011 + }, + [507]={ + ["chapter"]=49800, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3016 + }, + [508]={ + ["chapter"]=49900, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3005 + }, + [509]={ + ["chapter"]=50000, + ["first_reward"]={ + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["monster_base"]=3012 + } +} +local config = { +data=chapter_first_reward,count=509 +} +return config \ No newline at end of file diff --git a/lua/app/config/chapter_first_reward.lua.meta b/lua/app/config/chapter_first_reward.lua.meta new file mode 100644 index 00000000..3054e294 --- /dev/null +++ b/lua/app/config/chapter_first_reward.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 78bdb0a0622fa6e48a66cb02e647a688 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/collection.lua b/lua/app/config/collection.lua new file mode 100644 index 00000000..80ba54de --- /dev/null +++ b/lua/app/config/collection.lua @@ -0,0 +1,733 @@ +local collection = { + [1]={ + ["type"]=1, + ["equip"]={ + 10001 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [2]={ + ["type"]=1, + ["equip"]={ + 10101, + 10201, + 10102, + 10201 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [3]={ + ["type"]=1, + ["equip"]={ + 10301, + 10302, + 10303, + 10304 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [4]={ + ["type"]=1, + ["equip"]={ + 10003, + 10103, + 10004, + 10104 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + [5]={ + ["type"]=1, + ["equip"]={ + 10203, + 10204, + 10205 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [6]={ + ["type"]=1, + ["equip"]={ + 10005, + 10105 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="dmg_addition_skill", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="dmg_addition_skill", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + [7]={ + ["type"]=1, + ["equip"]={ + 10305, + 10306, + 10307 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + } + }, + [8]={ + ["type"]=1, + ["equip"]={ + 10006, + 10206, + 10007, + 10207 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + } + }, + [9]={ + ["type"]=1, + ["equip"]={ + 10106, + 10107, + 10108, + 10109 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="crit_time", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="crit_time", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + } + }, + [10]={ + ["type"]=1, + ["equip"]={ + 10308, + 10208, + 10309, + 10209 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + }, + [101]={ + ["type"]=2, + ["equip"]={ + 20001, + 30001, + 20101, + 30101 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [102]={ + ["type"]=2, + ["equip"]={ + 20202, + 30102 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [103]={ + ["type"]=2, + ["equip"]={ + 20103, + 20302, + 30303, + 30103 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [104]={ + ["type"]=2, + ["equip"]={ + 20304, + 20003, + 30004 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + [105]={ + ["type"]=2, + ["equip"]={ + 20005, + 30204 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [106]={ + ["type"]=2, + ["equip"]={ + 20205, + 30205, + 30104 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + [107]={ + ["type"]=2, + ["equip"]={ + 20006, + 30305, + 30105 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + } + }, + [108]={ + ["type"]=2, + ["equip"]={ + 20206, + 30106, + 30306 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + } + }, + [109]={ + ["type"]=2, + ["equip"]={ + 20207, + 20106, + 30207 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + } + }, + [110]={ + ["type"]=2, + ["equip"]={ + 20007, + 20107, + 30107, + 30307 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + }, + [201]={ + ["type"]=3, + ["equip"]={ + 40003, + 40004, + 40005 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [202]={ + ["type"]=3, + ["equip"]={ + 40002, + 40101 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="crit_time", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="crit_time", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [203]={ + ["type"]=3, + ["equip"]={ + 40102, + 40103, + 40105, + 40202 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [204]={ + ["type"]=3, + ["equip"]={ + 40201, + 40301, + 40302 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + [205]={ + ["type"]=3, + ["equip"]={ + 40205, + 40303, + 40304, + 40305 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="dmg_addition_skill", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="dmg_addition_skill", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [206]={ + ["type"]=3, + ["equip"]={ + 40001, + 40203, + 40405 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + [207]={ + ["type"]=3, + ["equip"]={ + 40402, + 40403, + 40404 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + } + }, + [208]={ + ["type"]=3, + ["equip"]={ + 40401, + 40501, + 40503 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + } + }, + [209]={ + ["type"]=3, + ["equip"]={ + 40502, + 40504, + 40505, + 40601 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="hpp_4", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + } + }, + [210]={ + ["type"]=3, + ["equip"]={ + 40602, + 40603, + 40605, + 40606 + }, + ["base_lv_request"]=1, + ["grow_lv_request"]=1, + ["base"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + ["grow"]={ + ["type"]="atkp_7", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/collection.lua.meta b/lua/app/config/collection.lua.meta new file mode 100644 index 00000000..dcb1e4b3 --- /dev/null +++ b/lua/app/config/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1d3aaca27e5862d4988f88ede63cf4d8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/const.lua b/lua/app/config/const.lua new file mode 100644 index 00000000..74ed524e --- /dev/null +++ b/lua/app/config/const.lua @@ -0,0 +1,150 @@ +local const = { + ["acceleration_time"]={ + ["value"]=2 + }, + ["comprehend_time"]={ + ["value"]=5 + }, + ["quick_pass_time"]={ + ["value"]=5 + }, + ["summon_times_ad"]={ + ["value"]=3 + }, + ["summon_times_ad_interval"]={ + ["value"]=10 + }, + ["summon_times_1"]={ + ["value"]=11 + }, + ["summon_times_1_cost"]={ + ["value"]=500 + }, + ["summon_times_2"]={ + ["value"]=35 + }, + ["summon_times_2_cost"]={ + ["value"]=1500 + }, + ["mail_limit"]={ + ["value"]=100 + }, + ["mail_time_limit"]={ + ["value"]=24 + }, + ["summon_ad_min"]={ + ["value"]=11 + }, + ["summon_ad_max"]={ + ["value"]=35 + }, + ["idle_cd_gold"]={ + ["value"]=300 + }, + ["idle_cd_equip"]={ + ["value"]=1080 + }, + ["quick_idle_time"]={ + ["value"]=21600 + }, + ["idle_time"]={ + ["value"]=43200 + }, + ["mine_item_ad"]={ + ["value"]=2 + }, + ["research_ad_time"]={ + ["value"]=30 + }, + ["research_ad"]={ + ["value"]=4 + }, + ["acceleration_duration"]={ + ["value"]=20 + }, + ["train_atk"]={ + ["value"]=100000 + }, + ["train_hp"]={ + ["value"]=100000 + }, + ["quick_pass_cost"]={ + ["value"]=100 + }, + ["quick_pass_level"]={ + ["value"]=300 + }, + ["arena_reborn_cost"]={ + ["value"]=50 + }, + ["change_name_cost"]={ + ["value"]=100 + }, + ["mine_research_item"]={ + ["value"]=12 + }, + ["idle_extra_time"]={ + ["value"]=3600 + }, + ["cross_chapter_time_min"]={ + ["value"]=2 + }, + ["mastery_reset_cost"]={ + ["value"]=20 + }, + ["tutorial_mine"]={ + ["value"]=200 + }, + ["tutorialtask_tutorialmax"]={ + ["value"]=20 + }, + ["fail_popup_cd"]={ + ["value"]=600 + }, + ["seven_day_time"]={ + ["value"]=15 + }, + ["fail_popup_cd_time"]={ + ["value"]=10 + }, + ["fail_popup_last_time"]={ + ["value"]=5 + }, + ["fail_interface_last_time"]={ + ["value"]=2 + }, + ["legacy_grid_open_1"]={ + ["value"]=70 + }, + ["legacy_grid_open_2"]={ + ["value"]=170 + }, + ["legacy_grid_open_3"]={ + ["value"]=260 + }, + ["legacy_grid_open_4"]={ + ["value"]=350 + }, + ["legacy_grid_open_5"]={ + ["value"]=550 + }, + ["comprehend_cd"]={ + ["value"]=900 + }, + ["mine_torch_ad_num"]={ + ["value"]=15 + }, + ["mine_item_ad_num"]={ + ["value"]=1 + }, + ["comprehend_min_stage"]={ + ["value"]=100 + }, + ["dead_back_open"]={ + ["value"]=29 + } +} +local config = { +data=const,count=48 +} +return config \ No newline at end of file diff --git a/lua/app/config/const.lua.meta b/lua/app/config/const.lua.meta new file mode 100644 index 00000000..d7d4f141 --- /dev/null +++ b/lua/app/config/const.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 799bb62e7797e2044b59d683cd7e5bb9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/cultivation.lua b/lua/app/config/cultivation.lua new file mode 100644 index 00000000..c0abd596 --- /dev/null +++ b/lua/app/config/cultivation.lua @@ -0,0 +1,160006 @@ +local cultivation = { + [1]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [2]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [3]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [4]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [5]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZc", + ["value"]=5.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZc", + ["value"]=5.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [6]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZc", + ["value"]=6.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZc", + ["value"]=6.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [7]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZc", + ["value"]=7.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZc", + ["value"]=7.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [8]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZc", + ["value"]=8.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZc", + ["value"]=8.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [9]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZc", + ["value"]=9.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZc", + ["value"]=9.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [10]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [11]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [12]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [13]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [14]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [15]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [16]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [17]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [18]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [19]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [20]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [21]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [22]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [23]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [24]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [25]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [26]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [27]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [28]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [29]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [30]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [31]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [32]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [33]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [34]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [35]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [36]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [37]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAw==", + ["value"]=37.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAw==", + ["value"]=37.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [38]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [39]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [40]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [41]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAw==", + ["value"]=41.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAw==", + ["value"]=41.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [42]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [43]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [44]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAw==", + ["value"]=44.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAw==", + ["value"]=44.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [45]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAw==", + ["value"]=45.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAw==", + ["value"]=45.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [46]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [47]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAw==", + ["value"]=47.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAw==", + ["value"]=47.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [48]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [49]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [50]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [51]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAw==", + ["value"]=51.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAw==", + ["value"]=51.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [52]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAw==", + ["value"]=52.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAw==", + ["value"]=52.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [53]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [54]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAw==", + ["value"]=54.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAw==", + ["value"]=54.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [55]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAw==", + ["value"]=55.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAw==", + ["value"]=55.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [56]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAw==", + ["value"]=56.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAw==", + ["value"]=56.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [57]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [58]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAw==", + ["value"]=58.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAw==", + ["value"]=58.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [59]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAw==", + ["value"]=59.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAw==", + ["value"]=59.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [60]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAw==", + ["value"]=60.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAw==", + ["value"]=60.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [61]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [62]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAw==", + ["value"]=62.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAw==", + ["value"]=62.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [63]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAw==", + ["value"]=63.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAw==", + ["value"]=63.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [64]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAw==", + ["value"]=64.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAw==", + ["value"]=64.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [65]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAw==", + ["value"]=65.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CAw==", + ["value"]=65.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [66]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAw==", + ["value"]=66.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CAw==", + ["value"]=66.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [67]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAw==", + ["value"]=67.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CAw==", + ["value"]=67.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [68]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAw==", + ["value"]=68.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCAw==", + ["value"]=68.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [69]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAw==", + ["value"]=69.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCAw==", + ["value"]=69.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [70]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAw==", + ["value"]=70.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAw==", + ["value"]=70.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [71]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAw==", + ["value"]=71.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAw==", + ["value"]=71.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [72]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAw==", + ["value"]=72.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAw==", + ["value"]=72.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [73]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCAw==", + ["value"]=73.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAw==", + ["value"]=73.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [74]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAw==", + ["value"]=74.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCAw==", + ["value"]=74.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [75]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CAw==", + ["value"]=75.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CAw==", + ["value"]=75.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [76]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAw==", + ["value"]=76.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CAw==", + ["value"]=76.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [77]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CAw==", + ["value"]=77.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CAw==", + ["value"]=77.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [78]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCAw==", + ["value"]=79.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCAw==", + ["value"]=78.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [79]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCAw==", + ["value"]=81.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCAw==", + ["value"]=79.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [80]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCAw==", + ["value"]=83.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCAw==", + ["value"]=80.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [81]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CAw==", + ["value"]=85.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCAw==", + ["value"]=81.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [82]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CAw==", + ["value"]=87.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCAw==", + ["value"]=83.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [83]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCAw==", + ["value"]=89.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CAw==", + ["value"]=85.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [84]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCAw==", + ["value"]=91.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CAw==", + ["value"]=87.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [85]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCAw==", + ["value"]=93.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCAw==", + ["value"]=89.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [86]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CAw==", + ["value"]=95.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCAw==", + ["value"]=91.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [87]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CAw==", + ["value"]=97.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCAw==", + ["value"]=93.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [88]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCAw==", + ["value"]=99.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CAw==", + ["value"]=95.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [89]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CAw==", + ["value"]=97.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [90]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCAw==", + ["value"]=99.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [91]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [92]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [93]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [94]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [95]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [96]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [97]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [98]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [99]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhUHWU=", + ["value"]=308.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpdHWU=", + ["value"]=321.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpYHWU=", + ["value"]=324.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxdHWU=", + ["value"]=341.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtfHWU=", + ["value"]=333.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtaHWU=", + ["value"]=336.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxUHWU=", + ["value"]=348.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5eHWU=", + ["value"]=362.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9dHWU=", + ["value"]=371.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5cHWU=", + ["value"]=360.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9bHWU=", + ["value"]=377.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBcHWU=", + ["value"]=380.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5VHWU=", + ["value"]=369.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBfHWU=", + ["value"]=383.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBaHWU=", + ["value"]=386.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9ZHWU=", + ["value"]=375.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBVHWU=", + ["value"]=389.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFeHWU=", + ["value"]=392.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBdHWU=", + ["value"]=381.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFUHWU=", + ["value"]=398.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBbHWU=", + ["value"]=387.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghYHWU=", + ["value"]=404.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghbHWU=", + ["value"]=407.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFaHWU=", + ["value"]=396.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglcHWU=", + ["value"]=410.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglfHWU=", + ["value"]=413.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgheHWU=", + ["value"]=402.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglaHWU=", + ["value"]=416.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghZHWU=", + ["value"]=405.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglVHWU=", + ["value"]=419.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghUHWU=", + ["value"]=408.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpeHWU=", + ["value"]=422.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgldHWU=", + ["value"]=411.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpZHWU=", + ["value"]=425.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglYHWU=", + ["value"]=414.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtdHWU=", + ["value"]=431.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpcHWU=", + ["value"]=420.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtYHWU=", + ["value"]=434.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpfHWU=", + ["value"]=423.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtbHWU=", + ["value"]=437.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpaHWU=", + ["value"]=426.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxcHWU=", + ["value"]=440.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpVHWU=", + ["value"]=429.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxfHWU=", + ["value"]=443.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgteHWU=", + ["value"]=432.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxaHWU=", + ["value"]=446.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtZHWU=", + ["value"]=435.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxVHWU=", + ["value"]=449.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtUHWU=", + ["value"]=438.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1eHWU=", + ["value"]=452.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxdHWU=", + ["value"]=441.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1ZHWU=", + ["value"]=455.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxYHWU=", + ["value"]=444.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1UHWU=", + ["value"]=458.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxbHWU=", + ["value"]=447.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5dHWU=", + ["value"]=461.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1cHWU=", + ["value"]=450.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5YHWU=", + ["value"]=464.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1fHWU=", + ["value"]=453.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5bHWU=", + ["value"]=467.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1aHWU=", + ["value"]=456.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9dHWU=", + ["value"]=471.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1VHWU=", + ["value"]=459.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9ZHWU=", + ["value"]=475.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5eHWU=", + ["value"]=462.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9VHWU=", + ["value"]=479.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5ZHWU=", + ["value"]=465.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBfHWU=", + ["value"]=483.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5UHWU=", + ["value"]=468.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBbHWU=", + ["value"]=487.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9dHWU=", + ["value"]=471.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFdHWU=", + ["value"]=491.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9YHWU=", + ["value"]=474.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFZHWU=", + ["value"]=495.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9bHWU=", + ["value"]=477.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFVHWU=", + ["value"]=499.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBcHWU=", + ["value"]=480.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhfHWU=", + ["value"]=503.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBfHWU=", + ["value"]=483.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhbHWU=", + ["value"]=507.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBaHWU=", + ["value"]=486.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwldHWU=", + ["value"]=511.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBVHWU=", + ["value"]=489.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlZHWU=", + ["value"]=515.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFfHWU=", + ["value"]=493.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlVHWU=", + ["value"]=519.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFbHWU=", + ["value"]=497.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpfHWU=", + ["value"]=523.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhdHWU=", + ["value"]=501.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpbHWU=", + ["value"]=527.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhZHWU=", + ["value"]=505.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtdHWU=", + ["value"]=531.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhVHWU=", + ["value"]=509.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtZHWU=", + ["value"]=535.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlfHWU=", + ["value"]=513.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtVHWU=", + ["value"]=539.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlbHWU=", + ["value"]=517.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxfHWU=", + ["value"]=543.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpdHWU=", + ["value"]=521.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxbHWU=", + ["value"]=547.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpZHWU=", + ["value"]=525.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1dHWU=", + ["value"]=551.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpVHWU=", + ["value"]=529.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1ZHWU=", + ["value"]=555.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtfHWU=", + ["value"]=533.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1VHWU=", + ["value"]=559.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtbHWU=", + ["value"]=537.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5fHWU=", + ["value"]=563.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxdHWU=", + ["value"]=541.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5bHWU=", + ["value"]=567.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxZHWU=", + ["value"]=545.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9dHWU=", + ["value"]=571.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxVHWU=", + ["value"]=549.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9ZHWU=", + ["value"]=575.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1fHWU=", + ["value"]=553.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9VHWU=", + ["value"]=579.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1bHWU=", + ["value"]=557.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBfHWU=", + ["value"]=583.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5dHWU=", + ["value"]=561.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBbHWU=", + ["value"]=587.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5ZHWU=", + ["value"]=565.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFdHWU=", + ["value"]=591.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5VHWU=", + ["value"]=569.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFZHWU=", + ["value"]=595.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9fHWU=", + ["value"]=573.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFVHWU=", + ["value"]=599.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9bHWU=", + ["value"]=577.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhfHWU=", + ["value"]=603.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBdHWU=", + ["value"]=581.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhbHWU=", + ["value"]=607.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBZHWU=", + ["value"]=585.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAldHWU=", + ["value"]=611.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBVHWU=", + ["value"]=589.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlZHWU=", + ["value"]=615.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFfHWU=", + ["value"]=593.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlVHWU=", + ["value"]=619.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFbHWU=", + ["value"]=597.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApfHWU=", + ["value"]=623.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhdHWU=", + ["value"]=601.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApbHWU=", + ["value"]=627.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhZHWU=", + ["value"]=605.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtdHWU=", + ["value"]=631.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhVHWU=", + ["value"]=609.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtZHWU=", + ["value"]=635.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlfHWU=", + ["value"]=613.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtVHWU=", + ["value"]=639.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlbHWU=", + ["value"]=617.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxfHWU=", + ["value"]=643.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApdHWU=", + ["value"]=621.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxbHWU=", + ["value"]=647.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApZHWU=", + ["value"]=625.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1dHWU=", + ["value"]=651.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApVHWU=", + ["value"]=629.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1ZHWU=", + ["value"]=655.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtfHWU=", + ["value"]=633.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1VHWU=", + ["value"]=659.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtbHWU=", + ["value"]=637.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5fHWU=", + ["value"]=663.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxdHWU=", + ["value"]=641.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5UHWU=", + ["value"]=668.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxZHWU=", + ["value"]=645.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9fHWU=", + ["value"]=673.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxVHWU=", + ["value"]=649.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9UHWU=", + ["value"]=678.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1fHWU=", + ["value"]=653.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABfHWU=", + ["value"]=683.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1bHWU=", + ["value"]=657.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABUHWU=", + ["value"]=688.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5dHWU=", + ["value"]=661.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFfHWU=", + ["value"]=693.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5ZHWU=", + ["value"]=665.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFUHWU=", + ["value"]=698.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5VHWU=", + ["value"]=669.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhfHWU=", + ["value"]=703.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9fHWU=", + ["value"]=673.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhUHWU=", + ["value"]=708.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9bHWU=", + ["value"]=677.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlfHWU=", + ["value"]=713.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABdHWU=", + ["value"]=681.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlUHWU=", + ["value"]=718.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABZHWU=", + ["value"]=685.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpfHWU=", + ["value"]=723.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABVHWU=", + ["value"]=689.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpUHWU=", + ["value"]=728.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFYHWU=", + ["value"]=694.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtfHWU=", + ["value"]=733.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFVHWU=", + ["value"]=699.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtUHWU=", + ["value"]=738.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhYHWU=", + ["value"]=704.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxfHWU=", + ["value"]=743.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhVHWU=", + ["value"]=709.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxUHWU=", + ["value"]=748.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlYHWU=", + ["value"]=714.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1fHWU=", + ["value"]=753.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlVHWU=", + ["value"]=719.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1UHWU=", + ["value"]=758.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpYHWU=", + ["value"]=724.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5fHWU=", + ["value"]=763.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpVHWU=", + ["value"]=729.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5UHWU=", + ["value"]=768.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtYHWU=", + ["value"]=734.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9fHWU=", + ["value"]=773.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtVHWU=", + ["value"]=739.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9UHWU=", + ["value"]=778.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxYHWU=", + ["value"]=744.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBfHWU=", + ["value"]=783.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxVHWU=", + ["value"]=749.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBUHWU=", + ["value"]=788.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1YHWU=", + ["value"]=754.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFfHWU=", + ["value"]=793.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1VHWU=", + ["value"]=759.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFUHWU=", + ["value"]=798.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5YHWU=", + ["value"]=764.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghfHWU=", + ["value"]=803.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5VHWU=", + ["value"]=769.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghUHWU=", + ["value"]=808.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9YHWU=", + ["value"]=774.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglfHWU=", + ["value"]=813.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9VHWU=", + ["value"]=779.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglUHWU=", + ["value"]=818.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBYHWU=", + ["value"]=784.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpfHWU=", + ["value"]=823.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBVHWU=", + ["value"]=789.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpUHWU=", + ["value"]=828.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFYHWU=", + ["value"]=794.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtfHWU=", + ["value"]=833.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFVHWU=", + ["value"]=799.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtUHWU=", + ["value"]=838.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghYHWU=", + ["value"]=804.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxfHWU=", + ["value"]=843.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghVHWU=", + ["value"]=809.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxUHWU=", + ["value"]=848.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglYHWU=", + ["value"]=814.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1fHWU=", + ["value"]=853.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglVHWU=", + ["value"]=819.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1VHWU=", + ["value"]=859.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpYHWU=", + ["value"]=824.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5ZHWU=", + ["value"]=865.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpVHWU=", + ["value"]=829.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9dHWU=", + ["value"]=871.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtYHWU=", + ["value"]=834.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9bHWU=", + ["value"]=877.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtVHWU=", + ["value"]=839.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBfHWU=", + ["value"]=883.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxYHWU=", + ["value"]=844.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBVHWU=", + ["value"]=889.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxVHWU=", + ["value"]=849.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFZHWU=", + ["value"]=895.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1YHWU=", + ["value"]=854.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhdHWU=", + ["value"]=901.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1VHWU=", + ["value"]=859.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhbHWU=", + ["value"]=907.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5YHWU=", + ["value"]=864.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlfHWU=", + ["value"]=913.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5VHWU=", + ["value"]=869.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlVHWU=", + ["value"]=919.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9YHWU=", + ["value"]=874.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpZHWU=", + ["value"]=925.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9VHWU=", + ["value"]=879.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtdHWU=", + ["value"]=931.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBYHWU=", + ["value"]=884.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtbHWU=", + ["value"]=937.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBVHWU=", + ["value"]=889.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxfHWU=", + ["value"]=943.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFZHWU=", + ["value"]=895.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxVHWU=", + ["value"]=949.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhdHWU=", + ["value"]=901.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1ZHWU=", + ["value"]=955.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhbHWU=", + ["value"]=907.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5dHWU=", + ["value"]=961.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlfHWU=", + ["value"]=913.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5bHWU=", + ["value"]=967.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlVHWU=", + ["value"]=919.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9fHWU=", + ["value"]=973.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpZHWU=", + ["value"]=925.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9VHWU=", + ["value"]=979.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtdHWU=", + ["value"]=931.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBZHWU=", + ["value"]=985.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtbHWU=", + ["value"]=937.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFdHWU=", + ["value"]=991.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxfHWU=", + ["value"]=943.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFbHWU=", + ["value"]=997.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxVHWU=", + ["value"]=949.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1ZHWU=", + ["value"]=955.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5dHWU=", + ["value"]=961.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5bHWU=", + ["value"]=967.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9fHWU=", + ["value"]=973.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9VHWU=", + ["value"]=979.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBZHWU=", + ["value"]=985.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFdHWU=", + ["value"]=991.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFbHWU=", + ["value"]=997.0, + ["unit_for_nothing"]="Vg==", + ["unit"]=0 + } + }, + [360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCg==", + ["value"]=2.99, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBg==", + ["value"]=3.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAQ==", + ["value"]=3.22, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBw==", + ["value"]=3.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCw==", + ["value"]=3.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZY", + ["value"]=3.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCg==", + ["value"]=3.19, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBQ==", + ["value"]=3.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeCw==", + ["value"]=3.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZf", + ["value"]=3.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBg==", + ["value"]=3.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBg==", + ["value"]=3.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBA==", + ["value"]=3.67, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBA==", + ["value"]=3.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaCg==", + ["value"]=3.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAg==", + ["value"]=3.71, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZY", + ["value"]=3.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAA==", + ["value"]=3.73, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBg==", + ["value"]=3.75, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBA==", + ["value"]=3.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbCg==", + ["value"]=3.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCg==", + ["value"]=3.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVCg==", + ["value"]=3.99, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBg==", + ["value"]=3.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAg==", + ["value"]=4.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAA==", + ["value"]=4.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBg==", + ["value"]=4.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZb", + ["value"]=3.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBA==", + ["value"]=4.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAQ==", + ["value"]=3.72, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZd", + ["value"]=4.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBw==", + ["value"]=3.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAQ==", + ["value"]=4.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBQ==", + ["value"]=3.76, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBw==", + ["value"]=4.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBQ==", + ["value"]=4.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZU", + ["value"]=3.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdCg==", + ["value"]=4.19, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAg==", + ["value"]=4.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAA==", + ["value"]=4.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBQ==", + ["value"]=4.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeCw==", + ["value"]=4.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZf", + ["value"]=4.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAQ==", + ["value"]=4.32, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBg==", + ["value"]=4.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBA==", + ["value"]=3.97, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBA==", + ["value"]=4.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVCg==", + ["value"]=3.99, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAg==", + ["value"]=4.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAQ==", + ["value"]=4.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAA==", + ["value"]=4.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBw==", + ["value"]=4.44, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBg==", + ["value"]=4.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBA==", + ["value"]=4.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYCg==", + ["value"]=4.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcCg==", + ["value"]=4.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAQ==", + ["value"]=4.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAg==", + ["value"]=4.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBw==", + ["value"]=4.54, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBw==", + ["value"]=4.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBA==", + ["value"]=4.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBQ==", + ["value"]=4.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZCg==", + ["value"]=4.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdCw==", + ["value"]=4.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAQ==", + ["value"]=4.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZe", + ["value"]=4.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBw==", + ["value"]=4.64, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAQ==", + ["value"]=4.22, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBA==", + ["value"]=4.67, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBg==", + ["value"]=4.25, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaCg==", + ["value"]=4.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBA==", + ["value"]=4.27, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAQ==", + ["value"]=4.72, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeCg==", + ["value"]=4.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBw==", + ["value"]=4.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAg==", + ["value"]=4.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBA==", + ["value"]=4.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBw==", + ["value"]=4.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZU", + ["value"]=4.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBQ==", + ["value"]=4.36, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAQ==", + ["value"]=4.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfCw==", + ["value"]=4.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBg==", + ["value"]=4.85, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBA==", + ["value"]=4.87, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAA==", + ["value"]=4.43, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZV", + ["value"]=4.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBg==", + ["value"]=4.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAA==", + ["value"]=4.93, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBg==", + ["value"]=4.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZ", + ["value"]=4.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVCw==", + ["value"]=4.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAQ==", + ["value"]=4.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAg==", + ["value"]=5.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBw==", + ["value"]=4.54, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAA==", + ["value"]=5.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBA==", + ["value"]=4.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBQ==", + ["value"]=5.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZCg==", + ["value"]=4.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcCg==", + ["value"]=5.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAQ==", + ["value"]=4.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAQ==", + ["value"]=5.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBw==", + ["value"]=4.64, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBw==", + ["value"]=5.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBQ==", + ["value"]=4.66, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBA==", + ["value"]=5.17, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaCg==", + ["value"]=4.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZe", + ["value"]=5.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbAg==", + ["value"]=4.71, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAA==", + ["value"]=5.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBw==", + ["value"]=4.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBQ==", + ["value"]=5.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBQ==", + ["value"]=4.76, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeCw==", + ["value"]=5.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbCg==", + ["value"]=4.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAg==", + ["value"]=5.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAg==", + ["value"]=4.81, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBw==", + ["value"]=5.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBw==", + ["value"]=4.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBA==", + ["value"]=5.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBQ==", + ["value"]=4.86, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZY", + ["value"]=5.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUCg==", + ["value"]=4.89, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYAA==", + ["value"]=5.43, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAg==", + ["value"]=4.91, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBQ==", + ["value"]=5.46, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBw==", + ["value"]=4.94, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYCg==", + ["value"]=5.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBA==", + ["value"]=4.97, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAQ==", + ["value"]=5.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVCg==", + ["value"]=4.99, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBg==", + ["value"]=5.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAQ==", + ["value"]=5.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZCw==", + ["value"]=5.58, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBw==", + ["value"]=5.04, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaAg==", + ["value"]=5.61, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBA==", + ["value"]=5.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBw==", + ["value"]=5.64, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZd", + ["value"]=5.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBA==", + ["value"]=5.67, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdAQ==", + ["value"]=5.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZb", + ["value"]=5.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBg==", + ["value"]=5.15, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbAA==", + ["value"]=5.73, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdCw==", + ["value"]=5.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBQ==", + ["value"]=5.76, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZe", + ["value"]=5.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbCg==", + ["value"]=5.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeAA==", + ["value"]=5.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUAQ==", + ["value"]=5.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBQ==", + ["value"]=5.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBg==", + ["value"]=5.85, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeCg==", + ["value"]=5.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUCg==", + ["value"]=5.89, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfAg==", + ["value"]=5.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVAQ==", + ["value"]=5.92, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBw==", + ["value"]=5.34, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBg==", + ["value"]=5.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBA==", + ["value"]=5.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVCw==", + ["value"]=5.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZY", + ["value"]=5.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcAg==", + ["value"]=6.01, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYAQ==", + ["value"]=5.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBg==", + ["value"]=6.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBg==", + ["value"]=5.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcCw==", + ["value"]=6.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYCw==", + ["value"]=5.48, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdAg==", + ["value"]=6.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZAg==", + ["value"]=5.51, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBw==", + ["value"]=6.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBw==", + ["value"]=5.54, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdCw==", + ["value"]=6.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBA==", + ["value"]=5.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeAg==", + ["value"]=6.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZa", + ["value"]=5.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBw==", + ["value"]=6.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaAQ==", + ["value"]=5.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeCw==", + ["value"]=6.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBg==", + ["value"]=5.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfAg==", + ["value"]=6.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaCw==", + ["value"]=5.68, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfBg==", + ["value"]=6.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbAg==", + ["value"]=5.71, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfCw==", + ["value"]=6.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBw==", + ["value"]=5.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYAg==", + ["value"]=6.41, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBA==", + ["value"]=5.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYBg==", + ["value"]=6.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZU", + ["value"]=5.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYCw==", + ["value"]=6.48, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUAA==", + ["value"]=5.83, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZAQ==", + ["value"]=6.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBQ==", + ["value"]=5.86, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBg==", + ["value"]=6.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUCg==", + ["value"]=5.89, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZCg==", + ["value"]=6.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVAQ==", + ["value"]=5.92, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaAQ==", + ["value"]=6.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBg==", + ["value"]=5.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBQ==", + ["value"]=6.66, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVCw==", + ["value"]=5.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaCg==", + ["value"]=6.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcAQ==", + ["value"]=6.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbAA==", + ["value"]=6.73, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcBg==", + ["value"]=6.05, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBA==", + ["value"]=6.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcCw==", + ["value"]=6.08, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZU", + ["value"]=6.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdAg==", + ["value"]=6.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBw==", + ["value"]=6.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBw==", + ["value"]=6.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUCw==", + ["value"]=6.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBA==", + ["value"]=6.17, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVAg==", + ["value"]=6.91, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZe", + ["value"]=6.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBg==", + ["value"]=6.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBw==", + ["value"]=6.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVCg==", + ["value"]=6.99, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBA==", + ["value"]=6.27, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcAQ==", + ["value"]=7.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZf", + ["value"]=6.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBQ==", + ["value"]=7.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfAA==", + ["value"]=6.33, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZd", + ["value"]=7.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBA==", + ["value"]=6.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBw==", + ["value"]=7.14, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZY", + ["value"]=6.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdCw==", + ["value"]=7.18, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYAA==", + ["value"]=6.43, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeAg==", + ["value"]=7.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBA==", + ["value"]=6.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeBg==", + ["value"]=7.25, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZ", + ["value"]=6.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeCg==", + ["value"]=7.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZAA==", + ["value"]=6.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfAA==", + ["value"]=7.33, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZBA==", + ["value"]=6.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfBA==", + ["value"]=7.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZa", + ["value"]=6.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYAg==", + ["value"]=7.41, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaAA==", + ["value"]=6.63, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYBg==", + ["value"]=7.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaBA==", + ["value"]=6.67, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYCg==", + ["value"]=7.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZb", + ["value"]=6.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZAA==", + ["value"]=7.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBw==", + ["value"]=6.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZBA==", + ["value"]=7.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBA==", + ["value"]=6.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaAg==", + ["value"]=7.61, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUAg==", + ["value"]=6.81, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaBg==", + ["value"]=7.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUBw==", + ["value"]=6.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaCg==", + ["value"]=7.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUCw==", + ["value"]=6.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbAA==", + ["value"]=7.73, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVAg==", + ["value"]=6.91, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbBA==", + ["value"]=7.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVBg==", + ["value"]=6.95, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUAQ==", + ["value"]=7.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVCw==", + ["value"]=6.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUBQ==", + ["value"]=7.86, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcAQ==", + ["value"]=7.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZV", + ["value"]=7.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcBQ==", + ["value"]=7.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVBw==", + ["value"]=7.94, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcCg==", + ["value"]=7.09, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVCw==", + ["value"]=7.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdAA==", + ["value"]=7.13, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcAA==", + ["value"]=8.03, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdBA==", + ["value"]=7.17, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcBA==", + ["value"]=8.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZe", + ["value"]=7.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdAg==", + ["value"]=8.11, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeBw==", + ["value"]=7.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdBQ==", + ["value"]=8.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeCw==", + ["value"]=7.28, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZe", + ["value"]=8.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfAg==", + ["value"]=7.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeBw==", + ["value"]=8.24, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfBg==", + ["value"]=7.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeCg==", + ["value"]=8.29, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfCg==", + ["value"]=7.39, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfAA==", + ["value"]=8.33, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYAA==", + ["value"]=7.43, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfCw==", + ["value"]=8.38, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYBA==", + ["value"]=7.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYAQ==", + ["value"]=8.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZ", + ["value"]=7.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYBA==", + ["value"]=8.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZBw==", + ["value"]=7.54, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZAg==", + ["value"]=8.51, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZCw==", + ["value"]=7.58, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZBQ==", + ["value"]=8.56, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaAQ==", + ["value"]=7.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZa", + ["value"]=8.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaBQ==", + ["value"]=7.66, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaBg==", + ["value"]=8.65, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZb", + ["value"]=7.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaCg==", + ["value"]=8.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbBw==", + ["value"]=7.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbBw==", + ["value"]=8.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbCw==", + ["value"]=7.78, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbCg==", + ["value"]=8.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUAQ==", + ["value"]=7.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUAA==", + ["value"]=8.83, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUBQ==", + ["value"]=7.86, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUCw==", + ["value"]=8.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZV", + ["value"]=7.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVAA==", + ["value"]=8.93, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVBw==", + ["value"]=7.94, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVCw==", + ["value"]=8.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVCw==", + ["value"]=7.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcAQ==", + ["value"]=9.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcAQ==", + ["value"]=8.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcBA==", + ["value"]=9.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcBQ==", + ["value"]=8.06, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdAQ==", + ["value"]=9.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZd", + ["value"]=8.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdBA==", + ["value"]=9.17, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdBg==", + ["value"]=8.15, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeAQ==", + ["value"]=9.22, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdCg==", + ["value"]=8.19, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeBA==", + ["value"]=9.27, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeAA==", + ["value"]=8.23, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfAQ==", + ["value"]=9.32, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeBA==", + ["value"]=8.27, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfBA==", + ["value"]=9.37, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfAg==", + ["value"]=8.31, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYAQ==", + ["value"]=9.42, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfBQ==", + ["value"]=8.36, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYBA==", + ["value"]=9.47, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZY", + ["value"]=8.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZAQ==", + ["value"]=9.52, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYBw==", + ["value"]=8.44, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZBA==", + ["value"]=9.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYCg==", + ["value"]=8.49, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaAQ==", + ["value"]=9.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZAA==", + ["value"]=8.53, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaBA==", + ["value"]=9.67, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZBA==", + ["value"]=8.57, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbAQ==", + ["value"]=9.72, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaAQ==", + ["value"]=8.62, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbBA==", + ["value"]=9.77, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaBQ==", + ["value"]=8.66, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUAQ==", + ["value"]=9.82, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbAg==", + ["value"]=8.71, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUCw==", + ["value"]=9.88, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbBg==", + ["value"]=8.75, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVAA==", + ["value"]=9.93, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZU", + ["value"]=8.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVCw==", + ["value"]=9.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUBw==", + ["value"]=8.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUCg==", + ["value"]=8.89, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVAA==", + ["value"]=8.93, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVCw==", + ["value"]=8.98, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcAQ==", + ["value"]=9.02, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcBA==", + ["value"]=9.07, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdAQ==", + ["value"]=9.12, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdBQ==", + ["value"]=9.16, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeAg==", + ["value"]=9.21, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeBQ==", + ["value"]=9.26, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZf", + ["value"]=9.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfBg==", + ["value"]=9.35, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZY", + ["value"]=9.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYBg==", + ["value"]=9.45, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZ", + ["value"]=9.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZBg==", + ["value"]=9.55, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZCg==", + ["value"]=9.59, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaBw==", + ["value"]=9.64, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaCg==", + ["value"]=9.69, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbBw==", + ["value"]=9.74, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbCg==", + ["value"]=9.79, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUBw==", + ["value"]=9.84, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUCg==", + ["value"]=9.89, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVBw==", + ["value"]=9.94, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVCg==", + ["value"]=9.99, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCw==", + ["value"]=28.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBw==", + ["value"]=29.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBA==", + ["value"]=29.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAA==", + ["value"]=30.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBQ==", + ["value"]=30.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAg==", + ["value"]=31.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBw==", + ["value"]=31.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBQ==", + ["value"]=31.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCw==", + ["value"]=31.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAA==", + ["value"]=32.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBQ==", + ["value"]=32.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCCw==", + ["value"]=32.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAg==", + ["value"]=33.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAA==", + ["value"]=33.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBg==", + ["value"]=33.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCCw==", + ["value"]=33.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAQ==", + ["value"]=34.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBg==", + ["value"]=34.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBA==", + ["value"]=34.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBw==", + ["value"]=35.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBQ==", + ["value"]=35.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CCw==", + ["value"]=35.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAQ==", + ["value"]=36.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBw==", + ["value"]=36.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBQ==", + ["value"]=36.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAw==", + ["value"]=37.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAQ==", + ["value"]=37.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBw==", + ["value"]=37.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBg==", + ["value"]=37.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBQ==", + ["value"]=31.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBA==", + ["value"]=37.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCw==", + ["value"]=31.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CCg==", + ["value"]=37.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAg==", + ["value"]=38.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAA==", + ["value"]=38.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAA==", + ["value"]=32.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBg==", + ["value"]=38.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBA==", + ["value"]=38.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBQ==", + ["value"]=32.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCCg==", + ["value"]=38.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCw==", + ["value"]=32.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAg==", + ["value"]=33.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAA==", + ["value"]=33.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCCw==", + ["value"]=39.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAQ==", + ["value"]=40.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCw==", + ["value"]=33.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBw==", + ["value"]=40.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBQ==", + ["value"]=40.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAg==", + ["value"]=34.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCCw==", + ["value"]=40.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAA==", + ["value"]=34.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAw==", + ["value"]=41.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAA==", + ["value"]=41.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBg==", + ["value"]=41.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCw==", + ["value"]=34.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBA==", + ["value"]=41.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCCg==", + ["value"]=41.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAg==", + ["value"]=42.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAA==", + ["value"]=42.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBg==", + ["value"]=35.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBA==", + ["value"]=35.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCCw==", + ["value"]=42.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CCg==", + ["value"]=35.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAQ==", + ["value"]=43.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAQ==", + ["value"]=36.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBg==", + ["value"]=43.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBw==", + ["value"]=36.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBA==", + ["value"]=43.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBQ==", + ["value"]=36.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCCg==", + ["value"]=43.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAg==", + ["value"]=44.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCg==", + ["value"]=36.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBw==", + ["value"]=44.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAg==", + ["value"]=37.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBQ==", + ["value"]=44.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAA==", + ["value"]=37.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCCw==", + ["value"]=44.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBg==", + ["value"]=37.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAg==", + ["value"]=45.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBA==", + ["value"]=37.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAA==", + ["value"]=45.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CCg==", + ["value"]=37.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBQ==", + ["value"]=45.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAg==", + ["value"]=38.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CCw==", + ["value"]=45.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAA==", + ["value"]=38.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBg==", + ["value"]=38.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAA==", + ["value"]=46.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBA==", + ["value"]=38.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBg==", + ["value"]=46.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCCg==", + ["value"]=38.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CCw==", + ["value"]=46.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAw==", + ["value"]=47.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAQ==", + ["value"]=47.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBg==", + ["value"]=47.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBA==", + ["value"]=47.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCCw==", + ["value"]=39.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAQ==", + ["value"]=48.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAQ==", + ["value"]=40.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBg==", + ["value"]=48.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBw==", + ["value"]=40.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCCw==", + ["value"]=48.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBQ==", + ["value"]=40.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCCw==", + ["value"]=40.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAA==", + ["value"]=49.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAg==", + ["value"]=41.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBg==", + ["value"]=49.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAA==", + ["value"]=41.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCCw==", + ["value"]=49.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBg==", + ["value"]=41.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBA==", + ["value"]=41.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAA==", + ["value"]=50.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCCg==", + ["value"]=41.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBQ==", + ["value"]=50.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAg==", + ["value"]=42.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCCw==", + ["value"]=50.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAA==", + ["value"]=42.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAg==", + ["value"]=51.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBg==", + ["value"]=42.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBw==", + ["value"]=51.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBA==", + ["value"]=42.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBQ==", + ["value"]=51.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCCg==", + ["value"]=42.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCCg==", + ["value"]=51.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAQ==", + ["value"]=43.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAQ==", + ["value"]=52.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBw==", + ["value"]=43.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBw==", + ["value"]=52.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBQ==", + ["value"]=43.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBA==", + ["value"]=52.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCCw==", + ["value"]=43.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAw==", + ["value"]=44.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAA==", + ["value"]=53.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAA==", + ["value"]=44.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBQ==", + ["value"]=53.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBg==", + ["value"]=44.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCCw==", + ["value"]=53.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBA==", + ["value"]=44.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAg==", + ["value"]=54.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCCg==", + ["value"]=44.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBw==", + ["value"]=54.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAQ==", + ["value"]=45.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBA==", + ["value"]=54.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBw==", + ["value"]=45.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAw==", + ["value"]=55.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBQ==", + ["value"]=45.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAA==", + ["value"]=55.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CCw==", + ["value"]=45.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBg==", + ["value"]=55.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAg==", + ["value"]=46.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CCw==", + ["value"]=55.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAA==", + ["value"]=46.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAg==", + ["value"]=56.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBg==", + ["value"]=46.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBw==", + ["value"]=56.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CCw==", + ["value"]=46.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBA==", + ["value"]=56.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAw==", + ["value"]=47.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAQ==", + ["value"]=47.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAA==", + ["value"]=57.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBg==", + ["value"]=47.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CBQ==", + ["value"]=57.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBA==", + ["value"]=47.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CCg==", + ["value"]=57.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAQ==", + ["value"]=58.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAQ==", + ["value"]=48.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCBg==", + ["value"]=58.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBw==", + ["value"]=48.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCCw==", + ["value"]=58.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBA==", + ["value"]=48.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAg==", + ["value"]=59.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCCg==", + ["value"]=48.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBw==", + ["value"]=59.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAQ==", + ["value"]=49.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCCw==", + ["value"]=59.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBw==", + ["value"]=49.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAg==", + ["value"]=60.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBA==", + ["value"]=49.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBw==", + ["value"]=60.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCCg==", + ["value"]=49.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBA==", + ["value"]=60.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAQ==", + ["value"]=50.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBw==", + ["value"]=50.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAA==", + ["value"]=61.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBA==", + ["value"]=50.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBA==", + ["value"]=61.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCCg==", + ["value"]=50.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAw==", + ["value"]=62.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAQ==", + ["value"]=51.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAA==", + ["value"]=62.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBw==", + ["value"]=51.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCBQ==", + ["value"]=62.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBA==", + ["value"]=51.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAw==", + ["value"]=63.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAw==", + ["value"]=52.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAA==", + ["value"]=63.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAQ==", + ["value"]=52.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCBQ==", + ["value"]=63.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBg==", + ["value"]=52.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCCg==", + ["value"]=63.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBA==", + ["value"]=52.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAA==", + ["value"]=64.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCBQ==", + ["value"]=64.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAA==", + ["value"]=53.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAw==", + ["value"]=65.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBg==", + ["value"]=53.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAA==", + ["value"]=65.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCCw==", + ["value"]=53.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CBQ==", + ["value"]=65.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAg==", + ["value"]=54.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAw==", + ["value"]=66.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBw==", + ["value"]=54.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAA==", + ["value"]=66.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBQ==", + ["value"]=54.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CBA==", + ["value"]=66.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCCg==", + ["value"]=54.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAw==", + ["value"]=67.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAQ==", + ["value"]=55.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBw==", + ["value"]=67.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBg==", + ["value"]=55.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBA==", + ["value"]=67.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBA==", + ["value"]=55.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAg==", + ["value"]=68.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAw==", + ["value"]=56.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCBw==", + ["value"]=68.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAA==", + ["value"]=56.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCCw==", + ["value"]=68.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBQ==", + ["value"]=56.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAg==", + ["value"]=69.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CCg==", + ["value"]=56.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCBg==", + ["value"]=69.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAQ==", + ["value"]=57.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCCg==", + ["value"]=69.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBw==", + ["value"]=57.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAQ==", + ["value"]=70.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBA==", + ["value"]=57.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCBQ==", + ["value"]=70.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAw==", + ["value"]=58.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAw==", + ["value"]=71.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAA==", + ["value"]=58.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAA==", + ["value"]=71.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBQ==", + ["value"]=58.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCBA==", + ["value"]=71.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCCg==", + ["value"]=58.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAg==", + ["value"]=72.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAQ==", + ["value"]=59.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCBg==", + ["value"]=72.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCBg==", + ["value"]=59.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCCw==", + ["value"]=72.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCCw==", + ["value"]=59.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCAQ==", + ["value"]=73.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAg==", + ["value"]=60.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCBQ==", + ["value"]=73.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBw==", + ["value"]=60.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAw==", + ["value"]=74.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBA==", + ["value"]=60.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCBw==", + ["value"]=74.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCCw==", + ["value"]=74.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAA==", + ["value"]=61.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CAQ==", + ["value"]=75.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBQ==", + ["value"]=61.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CBQ==", + ["value"]=75.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCCg==", + ["value"]=61.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAw==", + ["value"]=76.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAQ==", + ["value"]=62.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAA==", + ["value"]=76.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBg==", + ["value"]=62.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CBA==", + ["value"]=76.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCCg==", + ["value"]=62.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CAg==", + ["value"]=77.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAQ==", + ["value"]=63.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CBQ==", + ["value"]=77.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCBg==", + ["value"]=63.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCAw==", + ["value"]=78.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCCw==", + ["value"]=63.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCBw==", + ["value"]=78.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAg==", + ["value"]=64.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCCw==", + ["value"]=78.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCBw==", + ["value"]=64.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCAQ==", + ["value"]=79.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCCw==", + ["value"]=64.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCBQ==", + ["value"]=79.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CAg==", + ["value"]=65.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCAw==", + ["value"]=80.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBw==", + ["value"]=65.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCBw==", + ["value"]=80.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CCw==", + ["value"]=65.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCCg==", + ["value"]=80.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CAg==", + ["value"]=66.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCAA==", + ["value"]=81.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBw==", + ["value"]=66.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCBA==", + ["value"]=81.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBA==", + ["value"]=66.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCAg==", + ["value"]=82.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CAg==", + ["value"]=67.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCBQ==", + ["value"]=82.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBw==", + ["value"]=67.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCAw==", + ["value"]=83.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CCw==", + ["value"]=67.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCBw==", + ["value"]=83.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCAg==", + ["value"]=68.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCCg==", + ["value"]=83.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCBw==", + ["value"]=68.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCAA==", + ["value"]=84.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCCw==", + ["value"]=68.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCBA==", + ["value"]=84.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCAg==", + ["value"]=69.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CAQ==", + ["value"]=85.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCBg==", + ["value"]=69.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CBQ==", + ["value"]=85.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCCw==", + ["value"]=69.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CAg==", + ["value"]=86.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAQ==", + ["value"]=70.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CBg==", + ["value"]=86.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCBg==", + ["value"]=70.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CAw==", + ["value"]=87.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCCg==", + ["value"]=70.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CBw==", + ["value"]=87.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAQ==", + ["value"]=71.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CCg==", + ["value"]=87.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCBQ==", + ["value"]=71.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCAA==", + ["value"]=88.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAw==", + ["value"]=72.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCCw==", + ["value"]=88.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAA==", + ["value"]=72.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCAA==", + ["value"]=89.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCBA==", + ["value"]=72.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCBA==", + ["value"]=89.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAw==", + ["value"]=73.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCAQ==", + ["value"]=90.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCBw==", + ["value"]=73.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCBA==", + ["value"]=90.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCCw==", + ["value"]=73.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCAg==", + ["value"]=91.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCAg==", + ["value"]=74.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCBQ==", + ["value"]=91.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCBg==", + ["value"]=74.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCAg==", + ["value"]=92.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCCg==", + ["value"]=74.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCBQ==", + ["value"]=92.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CAA==", + ["value"]=75.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCAg==", + ["value"]=93.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CBQ==", + ["value"]=75.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCBQ==", + ["value"]=93.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CAw==", + ["value"]=76.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCAw==", + ["value"]=94.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CBw==", + ["value"]=76.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCBg==", + ["value"]=94.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CCw==", + ["value"]=76.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CAw==", + ["value"]=95.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CAQ==", + ["value"]=77.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CBg==", + ["value"]=95.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CBQ==", + ["value"]=77.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CAw==", + ["value"]=96.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CCg==", + ["value"]=77.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CBg==", + ["value"]=96.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCAA==", + ["value"]=78.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CAw==", + ["value"]=97.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCBA==", + ["value"]=78.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CBg==", + ["value"]=97.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCAg==", + ["value"]=79.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCAw==", + ["value"]=98.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCBg==", + ["value"]=79.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCBQ==", + ["value"]=98.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCCg==", + ["value"]=79.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCAg==", + ["value"]=99.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCAA==", + ["value"]=80.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCBQ==", + ["value"]=99.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCBA==", + ["value"]=80.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCAg==", + ["value"]=81.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCBg==", + ["value"]=81.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCCg==", + ["value"]=81.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCBw==", + ["value"]=82.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCCw==", + ["value"]=82.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCAQ==", + ["value"]=83.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCBQ==", + ["value"]=83.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCAw==", + ["value"]=84.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCBw==", + ["value"]=84.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCCg==", + ["value"]=84.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CAA==", + ["value"]=85.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CBA==", + ["value"]=85.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CAQ==", + ["value"]=86.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CBQ==", + ["value"]=86.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CAw==", + ["value"]=87.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CBg==", + ["value"]=87.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CCg==", + ["value"]=87.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCAA==", + ["value"]=88.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCCw==", + ["value"]=88.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCAQ==", + ["value"]=89.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCBA==", + ["value"]=89.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCAg==", + ["value"]=90.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCBQ==", + ["value"]=90.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCAw==", + ["value"]=91.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCBg==", + ["value"]=91.5, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCCg==", + ["value"]=91.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCBw==", + ["value"]=92.4, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCCg==", + ["value"]=92.9, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCAA==", + ["value"]=93.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCCw==", + ["value"]=93.8, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCAA==", + ["value"]=94.3, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCBA==", + ["value"]=94.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CAQ==", + ["value"]=95.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CBA==", + ["value"]=95.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CAQ==", + ["value"]=96.2, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CBA==", + ["value"]=96.7, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CAg==", + ["value"]=97.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CBQ==", + ["value"]=97.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCAg==", + ["value"]=98.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCBQ==", + ["value"]=98.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCAg==", + ["value"]=99.1, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCBQ==", + ["value"]=99.6, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFeHWU=", + ["value"]=292.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhUHWU=", + ["value"]=308.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlaHWU=", + ["value"]=316.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpdHWU=", + ["value"]=321.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpUHWU=", + ["value"]=328.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtdHWU=", + ["value"]=331.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtfHWU=", + ["value"]=333.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxVHWU=", + ["value"]=349.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1ZHWU=", + ["value"]=355.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1UHWU=", + ["value"]=358.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5cHWU=", + ["value"]=360.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5eHWU=", + ["value"]=362.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5YHWU=", + ["value"]=364.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9cHWU=", + ["value"]=370.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9fHWU=", + ["value"]=373.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9ZHWU=", + ["value"]=375.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9bHWU=", + ["value"]=377.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9VHWU=", + ["value"]=379.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFeHWU=", + ["value"]=292.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBdHWU=", + ["value"]=381.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBfHWU=", + ["value"]=383.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBZHWU=", + ["value"]=385.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBbHWU=", + ["value"]=387.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBVHWU=", + ["value"]=389.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFdHWU=", + ["value"]=391.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFUHWU=", + ["value"]=398.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghcHWU=", + ["value"]=400.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgheHWU=", + ["value"]=402.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhUHWU=", + ["value"]=308.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghYHWU=", + ["value"]=404.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghaHWU=", + ["value"]=406.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghUHWU=", + ["value"]=408.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglcHWU=", + ["value"]=410.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgleHWU=", + ["value"]=412.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlaHWU=", + ["value"]=316.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglYHWU=", + ["value"]=414.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlVHWU=", + ["value"]=319.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglVHWU=", + ["value"]=419.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpdHWU=", + ["value"]=321.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpdHWU=", + ["value"]=421.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpfHWU=", + ["value"]=423.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpYHWU=", + ["value"]=324.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpZHWU=", + ["value"]=425.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtcHWU=", + ["value"]=430.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgteHWU=", + ["value"]=432.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtYHWU=", + ["value"]=434.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtbHWU=", + ["value"]=437.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtVHWU=", + ["value"]=439.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxdHWU=", + ["value"]=441.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxfHWU=", + ["value"]=443.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxaHWU=", + ["value"]=446.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxUHWU=", + ["value"]=448.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1cHWU=", + ["value"]=450.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1fHWU=", + ["value"]=453.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxaHWU=", + ["value"]=346.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1ZHWU=", + ["value"]=455.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1bHWU=", + ["value"]=457.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxVHWU=", + ["value"]=349.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5cHWU=", + ["value"]=460.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5eHWU=", + ["value"]=462.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5ZHWU=", + ["value"]=465.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5bHWU=", + ["value"]=467.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9cHWU=", + ["value"]=470.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1UHWU=", + ["value"]=358.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9eHWU=", + ["value"]=472.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5cHWU=", + ["value"]=360.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9YHWU=", + ["value"]=474.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5eHWU=", + ["value"]=362.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9bHWU=", + ["value"]=477.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9VHWU=", + ["value"]=479.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBeHWU=", + ["value"]=482.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5bHWU=", + ["value"]=367.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBYHWU=", + ["value"]=484.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5VHWU=", + ["value"]=369.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBbHWU=", + ["value"]=487.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9dHWU=", + ["value"]=371.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBVHWU=", + ["value"]=489.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9fHWU=", + ["value"]=373.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFeHWU=", + ["value"]=492.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFZHWU=", + ["value"]=495.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9aHWU=", + ["value"]=376.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFbHWU=", + ["value"]=497.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhcHWU=", + ["value"]=500.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBcHWU=", + ["value"]=380.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwheHWU=", + ["value"]=502.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBeHWU=", + ["value"]=382.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhZHWU=", + ["value"]=505.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhUHWU=", + ["value"]=508.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBaHWU=", + ["value"]=386.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlcHWU=", + ["value"]=510.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBUHWU=", + ["value"]=388.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlfHWU=", + ["value"]=513.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlaHWU=", + ["value"]=516.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFeHWU=", + ["value"]=392.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlUHWU=", + ["value"]=518.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFYHWU=", + ["value"]=394.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpdHWU=", + ["value"]=521.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFaHWU=", + ["value"]=396.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpYHWU=", + ["value"]=524.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFbHWU=", + ["value"]=397.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpaHWU=", + ["value"]=526.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpVHWU=", + ["value"]=529.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwteHWU=", + ["value"]=532.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghfHWU=", + ["value"]=403.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtZHWU=", + ["value"]=535.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghaHWU=", + ["value"]=406.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtbHWU=", + ["value"]=537.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghUHWU=", + ["value"]=408.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxcHWU=", + ["value"]=540.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglcHWU=", + ["value"]=410.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxfHWU=", + ["value"]=543.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgleHWU=", + ["value"]=412.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxaHWU=", + ["value"]=546.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglYHWU=", + ["value"]=414.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxVHWU=", + ["value"]=549.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglaHWU=", + ["value"]=416.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1eHWU=", + ["value"]=552.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglUHWU=", + ["value"]=418.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1ZHWU=", + ["value"]=555.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpcHWU=", + ["value"]=420.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1bHWU=", + ["value"]=557.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpeHWU=", + ["value"]=422.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5cHWU=", + ["value"]=560.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpYHWU=", + ["value"]=424.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5fHWU=", + ["value"]=563.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpaHWU=", + ["value"]=426.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5aHWU=", + ["value"]=566.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5VHWU=", + ["value"]=569.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtdHWU=", + ["value"]=431.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9eHWU=", + ["value"]=572.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtfHWU=", + ["value"]=433.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9ZHWU=", + ["value"]=575.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtZHWU=", + ["value"]=435.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9UHWU=", + ["value"]=578.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtbHWU=", + ["value"]=437.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBdHWU=", + ["value"]=581.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtVHWU=", + ["value"]=439.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBYHWU=", + ["value"]=584.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxdHWU=", + ["value"]=441.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBbHWU=", + ["value"]=587.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxYHWU=", + ["value"]=444.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFcHWU=", + ["value"]=590.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxaHWU=", + ["value"]=446.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFfHWU=", + ["value"]=593.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxUHWU=", + ["value"]=448.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFaHWU=", + ["value"]=596.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1cHWU=", + ["value"]=450.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhcHWU=", + ["value"]=600.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1fHWU=", + ["value"]=453.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhfHWU=", + ["value"]=603.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1ZHWU=", + ["value"]=455.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhaHWU=", + ["value"]=606.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1bHWU=", + ["value"]=457.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhVHWU=", + ["value"]=609.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1VHWU=", + ["value"]=459.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAleHWU=", + ["value"]=612.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5eHWU=", + ["value"]=462.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlZHWU=", + ["value"]=615.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5YHWU=", + ["value"]=464.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlVHWU=", + ["value"]=619.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5aHWU=", + ["value"]=466.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApeHWU=", + ["value"]=622.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5VHWU=", + ["value"]=469.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApZHWU=", + ["value"]=625.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9dHWU=", + ["value"]=471.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApUHWU=", + ["value"]=628.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9fHWU=", + ["value"]=473.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAteHWU=", + ["value"]=632.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9aHWU=", + ["value"]=476.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtZHWU=", + ["value"]=635.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9UHWU=", + ["value"]=478.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtUHWU=", + ["value"]=638.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBdHWU=", + ["value"]=481.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxdHWU=", + ["value"]=641.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBfHWU=", + ["value"]=483.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxZHWU=", + ["value"]=645.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBZHWU=", + ["value"]=485.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxUHWU=", + ["value"]=648.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBUHWU=", + ["value"]=488.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1eHWU=", + ["value"]=652.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFcHWU=", + ["value"]=490.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1ZHWU=", + ["value"]=655.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFfHWU=", + ["value"]=493.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1UHWU=", + ["value"]=658.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFZHWU=", + ["value"]=495.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5eHWU=", + ["value"]=662.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFUHWU=", + ["value"]=498.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5ZHWU=", + ["value"]=665.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhcHWU=", + ["value"]=500.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5VHWU=", + ["value"]=669.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhfHWU=", + ["value"]=503.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9eHWU=", + ["value"]=672.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhZHWU=", + ["value"]=505.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9aHWU=", + ["value"]=676.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhUHWU=", + ["value"]=508.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9VHWU=", + ["value"]=679.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlcHWU=", + ["value"]=510.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABfHWU=", + ["value"]=683.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlfHWU=", + ["value"]=513.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABaHWU=", + ["value"]=686.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlZHWU=", + ["value"]=515.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFcHWU=", + ["value"]=690.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlUHWU=", + ["value"]=518.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFfHWU=", + ["value"]=693.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpdHWU=", + ["value"]=521.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFbHWU=", + ["value"]=697.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpfHWU=", + ["value"]=523.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhdHWU=", + ["value"]=701.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpaHWU=", + ["value"]=526.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhYHWU=", + ["value"]=704.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpUHWU=", + ["value"]=528.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhUHWU=", + ["value"]=708.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtdHWU=", + ["value"]=531.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQleHWU=", + ["value"]=712.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtYHWU=", + ["value"]=534.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlZHWU=", + ["value"]=715.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtaHWU=", + ["value"]=536.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlVHWU=", + ["value"]=719.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtVHWU=", + ["value"]=539.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpfHWU=", + ["value"]=723.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxeHWU=", + ["value"]=542.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpbHWU=", + ["value"]=727.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxYHWU=", + ["value"]=544.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtdHWU=", + ["value"]=731.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxbHWU=", + ["value"]=547.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtYHWU=", + ["value"]=734.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1cHWU=", + ["value"]=550.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtUHWU=", + ["value"]=738.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1fHWU=", + ["value"]=553.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxeHWU=", + ["value"]=742.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1ZHWU=", + ["value"]=555.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxaHWU=", + ["value"]=746.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1UHWU=", + ["value"]=558.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1cHWU=", + ["value"]=750.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5dHWU=", + ["value"]=561.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1YHWU=", + ["value"]=754.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5YHWU=", + ["value"]=564.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1UHWU=", + ["value"]=758.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5bHWU=", + ["value"]=567.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5eHWU=", + ["value"]=762.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5VHWU=", + ["value"]=569.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5aHWU=", + ["value"]=766.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9eHWU=", + ["value"]=572.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5VHWU=", + ["value"]=769.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9ZHWU=", + ["value"]=575.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9YHWU=", + ["value"]=774.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9UHWU=", + ["value"]=578.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9UHWU=", + ["value"]=778.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBdHWU=", + ["value"]=581.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBeHWU=", + ["value"]=782.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBYHWU=", + ["value"]=584.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBaHWU=", + ["value"]=786.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBbHWU=", + ["value"]=587.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFcHWU=", + ["value"]=790.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFcHWU=", + ["value"]=590.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFYHWU=", + ["value"]=794.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFfHWU=", + ["value"]=593.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFUHWU=", + ["value"]=798.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFaHWU=", + ["value"]=596.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgheHWU=", + ["value"]=802.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFVHWU=", + ["value"]=599.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghaHWU=", + ["value"]=806.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAheHWU=", + ["value"]=602.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgldHWU=", + ["value"]=811.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhZHWU=", + ["value"]=605.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglZHWU=", + ["value"]=815.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhUHWU=", + ["value"]=608.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglVHWU=", + ["value"]=819.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAldHWU=", + ["value"]=611.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpfHWU=", + ["value"]=823.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlYHWU=", + ["value"]=614.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpUHWU=", + ["value"]=828.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlbHWU=", + ["value"]=617.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgteHWU=", + ["value"]=832.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApcHWU=", + ["value"]=620.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtaHWU=", + ["value"]=836.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApfHWU=", + ["value"]=623.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxdHWU=", + ["value"]=841.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApaHWU=", + ["value"]=626.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxZHWU=", + ["value"]=845.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApVHWU=", + ["value"]=629.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxVHWU=", + ["value"]=849.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAteHWU=", + ["value"]=632.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1YHWU=", + ["value"]=854.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtaHWU=", + ["value"]=636.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1UHWU=", + ["value"]=858.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtVHWU=", + ["value"]=639.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5fHWU=", + ["value"]=863.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxeHWU=", + ["value"]=642.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5bHWU=", + ["value"]=867.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxZHWU=", + ["value"]=645.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9eHWU=", + ["value"]=872.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxUHWU=", + ["value"]=648.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9aHWU=", + ["value"]=876.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1eHWU=", + ["value"]=652.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBdHWU=", + ["value"]=881.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1ZHWU=", + ["value"]=655.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBZHWU=", + ["value"]=885.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1UHWU=", + ["value"]=658.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFcHWU=", + ["value"]=890.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5dHWU=", + ["value"]=661.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFZHWU=", + ["value"]=895.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5ZHWU=", + ["value"]=665.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFVHWU=", + ["value"]=899.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5UHWU=", + ["value"]=668.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhYHWU=", + ["value"]=904.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9dHWU=", + ["value"]=671.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhVHWU=", + ["value"]=909.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9ZHWU=", + ["value"]=675.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlYHWU=", + ["value"]=914.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9UHWU=", + ["value"]=678.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlUHWU=", + ["value"]=918.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABeHWU=", + ["value"]=682.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpfHWU=", + ["value"]=923.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABZHWU=", + ["value"]=685.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpUHWU=", + ["value"]=928.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABUHWU=", + ["value"]=688.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtfHWU=", + ["value"]=933.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFeHWU=", + ["value"]=692.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtUHWU=", + ["value"]=938.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFZHWU=", + ["value"]=695.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxeHWU=", + ["value"]=942.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFVHWU=", + ["value"]=699.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxbHWU=", + ["value"]=947.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQheHWU=", + ["value"]=702.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1eHWU=", + ["value"]=952.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhaHWU=", + ["value"]=706.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1bHWU=", + ["value"]=957.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhVHWU=", + ["value"]=709.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5eHWU=", + ["value"]=962.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlfHWU=", + ["value"]=713.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5bHWU=", + ["value"]=967.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlaHWU=", + ["value"]=716.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9eHWU=", + ["value"]=972.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpcHWU=", + ["value"]=720.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9bHWU=", + ["value"]=977.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpYHWU=", + ["value"]=724.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBfHWU=", + ["value"]=983.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpbHWU=", + ["value"]=727.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBUHWU=", + ["value"]=988.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtdHWU=", + ["value"]=731.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFfHWU=", + ["value"]=993.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtZHWU=", + ["value"]=735.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFUHWU=", + ["value"]=998.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtUHWU=", + ["value"]=738.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxeHWU=", + ["value"]=742.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxaHWU=", + ["value"]=746.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxVHWU=", + ["value"]=749.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1fHWU=", + ["value"]=753.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1bHWU=", + ["value"]=757.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5dHWU=", + ["value"]=761.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5YHWU=", + ["value"]=764.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5UHWU=", + ["value"]=768.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9eHWU=", + ["value"]=772.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9aHWU=", + ["value"]=776.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBcHWU=", + ["value"]=780.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBYHWU=", + ["value"]=784.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBUHWU=", + ["value"]=788.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFeHWU=", + ["value"]=792.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFaHWU=", + ["value"]=796.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghcHWU=", + ["value"]=800.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghYHWU=", + ["value"]=804.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghUHWU=", + ["value"]=808.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgleHWU=", + ["value"]=812.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglaHWU=", + ["value"]=816.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpcHWU=", + ["value"]=820.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpYHWU=", + ["value"]=824.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpUHWU=", + ["value"]=828.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgteHWU=", + ["value"]=832.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtaHWU=", + ["value"]=836.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxdHWU=", + ["value"]=841.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxZHWU=", + ["value"]=845.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxVHWU=", + ["value"]=849.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1fHWU=", + ["value"]=853.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1UHWU=", + ["value"]=858.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5eHWU=", + ["value"]=862.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5aHWU=", + ["value"]=866.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9cHWU=", + ["value"]=870.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9ZHWU=", + ["value"]=875.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9VHWU=", + ["value"]=879.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBYHWU=", + ["value"]=884.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBUHWU=", + ["value"]=888.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFeHWU=", + ["value"]=892.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFbHWU=", + ["value"]=897.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhdHWU=", + ["value"]=901.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhaHWU=", + ["value"]=906.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlcHWU=", + ["value"]=910.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlZHWU=", + ["value"]=915.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpcHWU=", + ["value"]=920.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpYHWU=", + ["value"]=924.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpVHWU=", + ["value"]=929.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtfHWU=", + ["value"]=933.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtUHWU=", + ["value"]=938.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxfHWU=", + ["value"]=943.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxUHWU=", + ["value"]=948.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1eHWU=", + ["value"]=952.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1bHWU=", + ["value"]=957.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5eHWU=", + ["value"]=962.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5bHWU=", + ["value"]=967.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9dHWU=", + ["value"]=971.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9aHWU=", + ["value"]=976.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBdHWU=", + ["value"]=981.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBaHWU=", + ["value"]=986.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFdHWU=", + ["value"]=991.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFaHWU=", + ["value"]=996.0, + ["unit_for_nothing"]="Vw==", + ["unit"]=1 + } + }, + [1706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBw==", + ["value"]=2.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBA==", + ["value"]=2.97, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCg==", + ["value"]=2.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAQ==", + ["value"]=3.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBg==", + ["value"]=3.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBA==", + ["value"]=3.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCw==", + ["value"]=3.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZf", + ["value"]=3.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBg==", + ["value"]=3.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBA==", + ["value"]=3.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZY", + ["value"]=3.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCg==", + ["value"]=3.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZa", + ["value"]=3.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAQ==", + ["value"]=3.62, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBw==", + ["value"]=3.64, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZb", + ["value"]=3.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAQ==", + ["value"]=3.72, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBw==", + ["value"]=3.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBQ==", + ["value"]=3.76, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZU", + ["value"]=3.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVCw==", + ["value"]=3.98, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAQ==", + ["value"]=4.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBw==", + ["value"]=4.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBQ==", + ["value"]=4.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcCw==", + ["value"]=4.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBQ==", + ["value"]=2.86, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZd", + ["value"]=4.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAA==", + ["value"]=4.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBg==", + ["value"]=4.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBA==", + ["value"]=4.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdCg==", + ["value"]=4.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAg==", + ["value"]=4.21, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBw==", + ["value"]=2.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAA==", + ["value"]=4.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBQ==", + ["value"]=4.26, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBA==", + ["value"]=2.97, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeCw==", + ["value"]=4.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCg==", + ["value"]=2.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZf", + ["value"]=4.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAQ==", + ["value"]=4.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAQ==", + ["value"]=3.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBg==", + ["value"]=4.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBA==", + ["value"]=4.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBg==", + ["value"]=3.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfCg==", + ["value"]=4.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAg==", + ["value"]=4.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBw==", + ["value"]=4.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBQ==", + ["value"]=4.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYCw==", + ["value"]=4.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAg==", + ["value"]=4.51, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAA==", + ["value"]=4.53, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBg==", + ["value"]=4.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBA==", + ["value"]=3.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZCw==", + ["value"]=4.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCg==", + ["value"]=3.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZa", + ["value"]=4.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAA==", + ["value"]=4.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAQ==", + ["value"]=3.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBg==", + ["value"]=4.65, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBA==", + ["value"]=4.67, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZb", + ["value"]=4.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAQ==", + ["value"]=4.72, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeCw==", + ["value"]=3.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBg==", + ["value"]=4.75, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZf", + ["value"]=3.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBA==", + ["value"]=4.77, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZU", + ["value"]=4.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAQ==", + ["value"]=4.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBg==", + ["value"]=3.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBg==", + ["value"]=4.85, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBA==", + ["value"]=3.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBA==", + ["value"]=4.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfCw==", + ["value"]=3.38, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZV", + ["value"]=4.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZY", + ["value"]=3.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAQ==", + ["value"]=4.92, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBg==", + ["value"]=4.95, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVCw==", + ["value"]=4.98, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBg==", + ["value"]=3.45, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZc", + ["value"]=5.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBA==", + ["value"]=3.47, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAA==", + ["value"]=5.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCg==", + ["value"]=3.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBg==", + ["value"]=5.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcCw==", + ["value"]=5.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAQ==", + ["value"]=3.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAg==", + ["value"]=5.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBw==", + ["value"]=3.54, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAA==", + ["value"]=5.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBQ==", + ["value"]=3.56, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBQ==", + ["value"]=5.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdCg==", + ["value"]=5.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAg==", + ["value"]=5.21, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBw==", + ["value"]=5.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBA==", + ["value"]=5.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBg==", + ["value"]=3.65, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZf", + ["value"]=5.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAQ==", + ["value"]=5.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBg==", + ["value"]=5.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZb", + ["value"]=3.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfCw==", + ["value"]=5.38, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAQ==", + ["value"]=3.72, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYAg==", + ["value"]=5.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBw==", + ["value"]=3.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBw==", + ["value"]=5.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBQ==", + ["value"]=3.76, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBQ==", + ["value"]=5.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYCg==", + ["value"]=5.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbCg==", + ["value"]=3.79, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAQ==", + ["value"]=5.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAg==", + ["value"]=3.81, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBg==", + ["value"]=5.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAA==", + ["value"]=3.83, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZCw==", + ["value"]=5.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBg==", + ["value"]=3.85, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaAg==", + ["value"]=5.61, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBA==", + ["value"]=3.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBw==", + ["value"]=5.64, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUCg==", + ["value"]=3.89, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBA==", + ["value"]=5.67, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAg==", + ["value"]=3.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZb", + ["value"]=5.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAA==", + ["value"]=3.93, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbAA==", + ["value"]=5.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBg==", + ["value"]=3.95, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBg==", + ["value"]=5.75, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBA==", + ["value"]=3.97, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbCw==", + ["value"]=5.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVCg==", + ["value"]=3.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUAQ==", + ["value"]=5.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAg==", + ["value"]=4.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBg==", + ["value"]=5.85, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAA==", + ["value"]=4.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUCw==", + ["value"]=5.88, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBg==", + ["value"]=4.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVAg==", + ["value"]=5.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBA==", + ["value"]=4.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBw==", + ["value"]=5.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcCg==", + ["value"]=4.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBA==", + ["value"]=5.97, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAg==", + ["value"]=4.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZc", + ["value"]=6.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAA==", + ["value"]=4.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcAA==", + ["value"]=6.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBg==", + ["value"]=4.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBQ==", + ["value"]=6.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBA==", + ["value"]=4.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcCg==", + ["value"]=6.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdCg==", + ["value"]=4.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdAA==", + ["value"]=6.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAg==", + ["value"]=4.21, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBQ==", + ["value"]=6.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBw==", + ["value"]=4.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdCg==", + ["value"]=6.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBQ==", + ["value"]=4.26, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeAQ==", + ["value"]=6.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeCw==", + ["value"]=4.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBg==", + ["value"]=6.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZf", + ["value"]=4.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [1999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeCg==", + ["value"]=6.29, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAQ==", + ["value"]=4.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfAQ==", + ["value"]=6.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBw==", + ["value"]=4.34, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfBg==", + ["value"]=6.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBQ==", + ["value"]=4.36, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfCg==", + ["value"]=6.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfCg==", + ["value"]=4.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYAQ==", + ["value"]=6.42, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAg==", + ["value"]=4.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYBg==", + ["value"]=6.45, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAA==", + ["value"]=4.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYCg==", + ["value"]=6.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBg==", + ["value"]=4.45, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZAQ==", + ["value"]=6.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBg==", + ["value"]=6.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZ", + ["value"]=4.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZCg==", + ["value"]=6.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAQ==", + ["value"]=4.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaAQ==", + ["value"]=6.62, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBw==", + ["value"]=4.54, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBQ==", + ["value"]=6.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBQ==", + ["value"]=4.56, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaCg==", + ["value"]=6.69, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZCg==", + ["value"]=4.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbAA==", + ["value"]=6.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAg==", + ["value"]=4.61, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBQ==", + ["value"]=6.76, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAA==", + ["value"]=4.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZU", + ["value"]=6.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBQ==", + ["value"]=4.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUAA==", + ["value"]=6.83, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaCw==", + ["value"]=4.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBA==", + ["value"]=6.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZb", + ["value"]=4.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZV", + ["value"]=6.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbAA==", + ["value"]=4.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBw==", + ["value"]=6.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBg==", + ["value"]=4.75, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVCw==", + ["value"]=6.98, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBA==", + ["value"]=4.77, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcAg==", + ["value"]=7.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZU", + ["value"]=4.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBg==", + ["value"]=7.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAQ==", + ["value"]=4.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcCg==", + ["value"]=7.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBg==", + ["value"]=4.85, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdAQ==", + ["value"]=7.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBA==", + ["value"]=4.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBQ==", + ["value"]=7.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZV", + ["value"]=4.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZe", + ["value"]=7.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAQ==", + ["value"]=4.92, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeAA==", + ["value"]=7.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBw==", + ["value"]=4.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeBA==", + ["value"]=7.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBA==", + ["value"]=4.97, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfAg==", + ["value"]=7.31, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVCg==", + ["value"]=4.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfBg==", + ["value"]=7.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAQ==", + ["value"]=5.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfCg==", + ["value"]=7.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBw==", + ["value"]=5.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYAQ==", + ["value"]=7.42, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBA==", + ["value"]=5.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYBQ==", + ["value"]=7.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcCg==", + ["value"]=5.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZ", + ["value"]=7.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdAQ==", + ["value"]=5.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZBw==", + ["value"]=7.54, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBg==", + ["value"]=5.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZCw==", + ["value"]=7.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBA==", + ["value"]=5.17, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaAQ==", + ["value"]=7.62, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZe", + ["value"]=5.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaBQ==", + ["value"]=7.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeAQ==", + ["value"]=5.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZb", + ["value"]=7.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBg==", + ["value"]=5.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbBw==", + ["value"]=7.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeCw==", + ["value"]=5.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbCw==", + ["value"]=7.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZf", + ["value"]=5.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUAQ==", + ["value"]=7.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfAA==", + ["value"]=5.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUBQ==", + ["value"]=7.86, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBQ==", + ["value"]=5.36, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZV", + ["value"]=7.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfCw==", + ["value"]=5.38, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVBw==", + ["value"]=7.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYAg==", + ["value"]=5.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVCg==", + ["value"]=7.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBw==", + ["value"]=5.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcAA==", + ["value"]=8.03, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBQ==", + ["value"]=5.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcBA==", + ["value"]=8.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYCg==", + ["value"]=5.49, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdAg==", + ["value"]=8.11, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZAQ==", + ["value"]=5.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdBg==", + ["value"]=8.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBg==", + ["value"]=5.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZe", + ["value"]=8.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBA==", + ["value"]=5.57, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeBw==", + ["value"]=8.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZa", + ["value"]=5.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeCw==", + ["value"]=8.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaAA==", + ["value"]=5.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfAQ==", + ["value"]=8.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBQ==", + ["value"]=5.66, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfBA==", + ["value"]=8.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaCg==", + ["value"]=5.69, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYAg==", + ["value"]=8.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbAg==", + ["value"]=5.71, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYBQ==", + ["value"]=8.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBw==", + ["value"]=5.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZ", + ["value"]=8.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBA==", + ["value"]=5.77, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZBw==", + ["value"]=8.54, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZU", + ["value"]=5.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZCg==", + ["value"]=8.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUAA==", + ["value"]=5.83, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaAA==", + ["value"]=8.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBQ==", + ["value"]=5.86, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaCw==", + ["value"]=8.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUCg==", + ["value"]=5.89, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbAQ==", + ["value"]=8.72, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVAQ==", + ["value"]=5.92, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbBA==", + ["value"]=8.77, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBg==", + ["value"]=5.95, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUAg==", + ["value"]=8.81, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVCw==", + ["value"]=5.98, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUBQ==", + ["value"]=8.86, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcAg==", + ["value"]=6.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVAg==", + ["value"]=8.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcBw==", + ["value"]=6.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVBg==", + ["value"]=8.95, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcBA==", + ["value"]=6.07, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZc", + ["value"]=9.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZd", + ["value"]=6.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcBg==", + ["value"]=9.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdAA==", + ["value"]=6.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcCg==", + ["value"]=9.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBQ==", + ["value"]=6.16, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdBw==", + ["value"]=9.14, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdCg==", + ["value"]=6.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdCg==", + ["value"]=9.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeAQ==", + ["value"]=6.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeBw==", + ["value"]=9.24, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBg==", + ["value"]=6.25, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeCw==", + ["value"]=9.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeCw==", + ["value"]=6.28, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfAA==", + ["value"]=9.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfAg==", + ["value"]=6.31, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfCw==", + ["value"]=9.38, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBg==", + ["value"]=6.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYAA==", + ["value"]=9.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfCw==", + ["value"]=6.38, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYCw==", + ["value"]=9.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYAg==", + ["value"]=6.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZAA==", + ["value"]=9.53, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBw==", + ["value"]=6.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZCw==", + ["value"]=9.58, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBA==", + ["value"]=6.47, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaAA==", + ["value"]=9.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZAg==", + ["value"]=6.51, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaCw==", + ["value"]=9.68, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZBw==", + ["value"]=6.54, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbAA==", + ["value"]=9.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZBA==", + ["value"]=6.57, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbCw==", + ["value"]=9.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZa", + ["value"]=6.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUAA==", + ["value"]=9.83, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaBw==", + ["value"]=6.64, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUCw==", + ["value"]=9.88, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaBA==", + ["value"]=6.67, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVAA==", + ["value"]=9.93, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZb", + ["value"]=6.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVCg==", + ["value"]=9.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBw==", + ["value"]=6.74, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBA==", + ["value"]=6.77, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZU", + ["value"]=6.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUBw==", + ["value"]=6.84, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUBA==", + ["value"]=6.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVAg==", + ["value"]=6.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVBw==", + ["value"]=6.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVCw==", + ["value"]=6.98, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcAg==", + ["value"]=7.01, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcBg==", + ["value"]=7.05, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcCw==", + ["value"]=7.08, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdAQ==", + ["value"]=7.12, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdBg==", + ["value"]=7.15, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdCg==", + ["value"]=7.19, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeAQ==", + ["value"]=7.22, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeBQ==", + ["value"]=7.26, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZf", + ["value"]=7.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfAA==", + ["value"]=7.33, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfBA==", + ["value"]=7.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYAg==", + ["value"]=7.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYBw==", + ["value"]=7.44, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYCw==", + ["value"]=7.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZAQ==", + ["value"]=7.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZBQ==", + ["value"]=7.56, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZCg==", + ["value"]=7.59, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaAA==", + ["value"]=7.63, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaBA==", + ["value"]=7.67, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbAg==", + ["value"]=7.71, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbBg==", + ["value"]=7.75, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbCg==", + ["value"]=7.79, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUAA==", + ["value"]=7.83, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUBQ==", + ["value"]=7.86, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZV", + ["value"]=7.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVBw==", + ["value"]=7.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVCw==", + ["value"]=7.98, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcAQ==", + ["value"]=8.02, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcBQ==", + ["value"]=8.06, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZd", + ["value"]=8.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdBw==", + ["value"]=8.14, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdCw==", + ["value"]=8.18, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeAA==", + ["value"]=8.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeBA==", + ["value"]=8.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfAg==", + ["value"]=8.31, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfBg==", + ["value"]=8.35, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfCg==", + ["value"]=8.39, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYAA==", + ["value"]=8.43, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYCw==", + ["value"]=8.48, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZAQ==", + ["value"]=8.52, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZBQ==", + ["value"]=8.56, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZa", + ["value"]=8.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaBg==", + ["value"]=8.65, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaCg==", + ["value"]=8.69, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbAA==", + ["value"]=8.73, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbCw==", + ["value"]=8.78, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUAQ==", + ["value"]=8.82, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUBA==", + ["value"]=8.87, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVAg==", + ["value"]=8.91, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVBg==", + ["value"]=8.95, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZc", + ["value"]=9.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcBw==", + ["value"]=9.04, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcCg==", + ["value"]=9.09, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdAA==", + ["value"]=9.13, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdCw==", + ["value"]=9.18, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeAA==", + ["value"]=9.23, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeBA==", + ["value"]=9.27, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfAQ==", + ["value"]=9.32, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfBA==", + ["value"]=9.37, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYAg==", + ["value"]=9.41, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYBQ==", + ["value"]=9.46, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZAg==", + ["value"]=9.51, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZBg==", + ["value"]=9.55, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZa", + ["value"]=9.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaBg==", + ["value"]=9.65, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZb", + ["value"]=9.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbBg==", + ["value"]=9.75, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZU", + ["value"]=9.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUBw==", + ["value"]=9.84, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUCg==", + ["value"]=9.89, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVBw==", + ["value"]=9.94, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVCg==", + ["value"]=9.99, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCg==", + ["value"]=24.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBw==", + ["value"]=28.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCw==", + ["value"]=28.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBw==", + ["value"]=29.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCw==", + ["value"]=31.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAQ==", + ["value"]=32.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAA==", + ["value"]=32.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBg==", + ["value"]=32.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCCw==", + ["value"]=32.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBg==", + ["value"]=33.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAg==", + ["value"]=34.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAQ==", + ["value"]=34.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCCw==", + ["value"]=34.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBg==", + ["value"]=35.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBA==", + ["value"]=35.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CCg==", + ["value"]=35.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAg==", + ["value"]=36.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAQ==", + ["value"]=36.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBw==", + ["value"]=36.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBQ==", + ["value"]=36.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAw==", + ["value"]=37.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAQ==", + ["value"]=37.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBw==", + ["value"]=37.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBQ==", + ["value"]=37.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CCw==", + ["value"]=37.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAQ==", + ["value"]=38.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBw==", + ["value"]=38.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBQ==", + ["value"]=38.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCCw==", + ["value"]=38.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCg==", + ["value"]=24.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCCw==", + ["value"]=39.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAQ==", + ["value"]=40.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBw==", + ["value"]=40.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBQ==", + ["value"]=40.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCCg==", + ["value"]=40.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAg==", + ["value"]=41.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAA==", + ["value"]=41.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBg==", + ["value"]=41.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBA==", + ["value"]=41.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCCg==", + ["value"]=41.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAg==", + ["value"]=42.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBw==", + ["value"]=42.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCCw==", + ["value"]=42.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAA==", + ["value"]=43.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBg==", + ["value"]=43.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBA==", + ["value"]=43.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCCg==", + ["value"]=43.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAQ==", + ["value"]=44.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBw==", + ["value"]=44.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBQ==", + ["value"]=44.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBw==", + ["value"]=28.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCCg==", + ["value"]=44.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAg==", + ["value"]=45.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAA==", + ["value"]=45.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCw==", + ["value"]=28.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBQ==", + ["value"]=45.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CCw==", + ["value"]=45.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAA==", + ["value"]=46.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBw==", + ["value"]=29.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBg==", + ["value"]=46.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CCw==", + ["value"]=46.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBA==", + ["value"]=29.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAw==", + ["value"]=47.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAA==", + ["value"]=47.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBg==", + ["value"]=47.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBA==", + ["value"]=47.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAA==", + ["value"]=30.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAQ==", + ["value"]=48.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBQ==", + ["value"]=30.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBg==", + ["value"]=48.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCCw==", + ["value"]=48.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAA==", + ["value"]=49.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBg==", + ["value"]=49.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCCw==", + ["value"]=49.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAA==", + ["value"]=50.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCw==", + ["value"]=31.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBQ==", + ["value"]=50.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCCw==", + ["value"]=50.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAg==", + ["value"]=51.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAA==", + ["value"]=32.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBw==", + ["value"]=51.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBg==", + ["value"]=32.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBQ==", + ["value"]=51.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBQ==", + ["value"]=32.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCCg==", + ["value"]=51.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCw==", + ["value"]=32.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAQ==", + ["value"]=52.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBw==", + ["value"]=52.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAg==", + ["value"]=33.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBA==", + ["value"]=52.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAA==", + ["value"]=33.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAA==", + ["value"]=53.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBg==", + ["value"]=53.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCw==", + ["value"]=33.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCCw==", + ["value"]=53.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAg==", + ["value"]=54.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAg==", + ["value"]=34.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBw==", + ["value"]=54.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAA==", + ["value"]=34.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBA==", + ["value"]=54.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBg==", + ["value"]=34.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCCg==", + ["value"]=54.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAQ==", + ["value"]=55.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCw==", + ["value"]=34.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBg==", + ["value"]=55.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CCw==", + ["value"]=55.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAg==", + ["value"]=56.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBw==", + ["value"]=56.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBg==", + ["value"]=35.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBA==", + ["value"]=56.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBA==", + ["value"]=35.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CCg==", + ["value"]=35.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAA==", + ["value"]=57.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CBQ==", + ["value"]=57.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAQ==", + ["value"]=36.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CCg==", + ["value"]=57.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBw==", + ["value"]=36.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAQ==", + ["value"]=58.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBQ==", + ["value"]=36.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCBg==", + ["value"]=58.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCCw==", + ["value"]=58.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCg==", + ["value"]=36.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAg==", + ["value"]=59.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAg==", + ["value"]=37.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBw==", + ["value"]=59.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAA==", + ["value"]=37.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBA==", + ["value"]=59.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBg==", + ["value"]=37.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAw==", + ["value"]=60.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBA==", + ["value"]=37.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAA==", + ["value"]=60.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CCg==", + ["value"]=37.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBQ==", + ["value"]=60.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAg==", + ["value"]=38.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAA==", + ["value"]=38.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAA==", + ["value"]=61.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBg==", + ["value"]=38.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBQ==", + ["value"]=61.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBQ==", + ["value"]=38.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCCg==", + ["value"]=61.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCCw==", + ["value"]=38.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAQ==", + ["value"]=62.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCBQ==", + ["value"]=62.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCCg==", + ["value"]=62.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAQ==", + ["value"]=63.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCBQ==", + ["value"]=63.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCCw==", + ["value"]=39.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCCg==", + ["value"]=63.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAQ==", + ["value"]=64.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAQ==", + ["value"]=40.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCBg==", + ["value"]=64.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBw==", + ["value"]=40.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCCg==", + ["value"]=64.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBQ==", + ["value"]=40.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAQ==", + ["value"]=65.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCCw==", + ["value"]=40.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CBQ==", + ["value"]=65.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAw==", + ["value"]=41.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CCg==", + ["value"]=65.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAQ==", + ["value"]=41.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAQ==", + ["value"]=66.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBw==", + ["value"]=41.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CBQ==", + ["value"]=66.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBQ==", + ["value"]=41.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CCg==", + ["value"]=66.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCCg==", + ["value"]=41.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAA==", + ["value"]=67.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAg==", + ["value"]=42.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBQ==", + ["value"]=67.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAA==", + ["value"]=42.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAw==", + ["value"]=68.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBg==", + ["value"]=42.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAA==", + ["value"]=68.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBA==", + ["value"]=42.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCBA==", + ["value"]=68.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCCg==", + ["value"]=42.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAg==", + ["value"]=69.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAg==", + ["value"]=43.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCBw==", + ["value"]=69.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAA==", + ["value"]=43.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCCw==", + ["value"]=69.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBQ==", + ["value"]=43.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAg==", + ["value"]=70.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCCw==", + ["value"]=43.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCBg==", + ["value"]=70.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAw==", + ["value"]=44.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCCg==", + ["value"]=70.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAQ==", + ["value"]=44.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAA==", + ["value"]=71.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBw==", + ["value"]=44.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCBQ==", + ["value"]=71.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBA==", + ["value"]=44.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAw==", + ["value"]=72.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCCg==", + ["value"]=44.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCBw==", + ["value"]=72.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAg==", + ["value"]=45.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCBA==", + ["value"]=72.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAA==", + ["value"]=45.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCAg==", + ["value"]=73.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBQ==", + ["value"]=45.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCBg==", + ["value"]=73.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CCw==", + ["value"]=45.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCCg==", + ["value"]=73.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAA==", + ["value"]=74.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAQ==", + ["value"]=46.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCBA==", + ["value"]=74.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBg==", + ["value"]=46.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CAg==", + ["value"]=75.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBA==", + ["value"]=46.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CBw==", + ["value"]=75.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CCg==", + ["value"]=46.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CCw==", + ["value"]=75.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAQ==", + ["value"]=47.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAQ==", + ["value"]=76.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBw==", + ["value"]=47.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CBQ==", + ["value"]=76.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBA==", + ["value"]=47.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CAw==", + ["value"]=77.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CCg==", + ["value"]=47.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CBw==", + ["value"]=77.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAg==", + ["value"]=48.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CCw==", + ["value"]=77.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBw==", + ["value"]=48.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCAQ==", + ["value"]=78.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBQ==", + ["value"]=48.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCBQ==", + ["value"]=78.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCCg==", + ["value"]=48.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCAg==", + ["value"]=79.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAg==", + ["value"]=49.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCBg==", + ["value"]=79.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAA==", + ["value"]=49.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCCg==", + ["value"]=79.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBQ==", + ["value"]=49.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCAA==", + ["value"]=80.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCCw==", + ["value"]=49.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCBA==", + ["value"]=80.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAg==", + ["value"]=50.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCAg==", + ["value"]=81.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAA==", + ["value"]=50.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCBQ==", + ["value"]=81.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBQ==", + ["value"]=50.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCAw==", + ["value"]=82.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCCg==", + ["value"]=50.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCBw==", + ["value"]=82.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAg==", + ["value"]=51.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCCw==", + ["value"]=82.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBw==", + ["value"]=51.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCAA==", + ["value"]=83.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBQ==", + ["value"]=51.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCBA==", + ["value"]=83.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCCg==", + ["value"]=51.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCAg==", + ["value"]=84.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAg==", + ["value"]=52.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCBQ==", + ["value"]=84.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBw==", + ["value"]=52.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CAw==", + ["value"]=85.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBA==", + ["value"]=52.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CBg==", + ["value"]=85.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCCg==", + ["value"]=52.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CCg==", + ["value"]=85.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAQ==", + ["value"]=53.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CBw==", + ["value"]=86.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBg==", + ["value"]=53.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CCw==", + ["value"]=86.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBA==", + ["value"]=53.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CAA==", + ["value"]=87.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAw==", + ["value"]=54.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CBA==", + ["value"]=87.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAA==", + ["value"]=54.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCAQ==", + ["value"]=88.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBg==", + ["value"]=54.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCBQ==", + ["value"]=88.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCCw==", + ["value"]=54.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCAg==", + ["value"]=89.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAg==", + ["value"]=55.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCBQ==", + ["value"]=89.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBw==", + ["value"]=55.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCAw==", + ["value"]=90.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBQ==", + ["value"]=55.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCBg==", + ["value"]=90.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CCg==", + ["value"]=55.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCAw==", + ["value"]=91.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAQ==", + ["value"]=56.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCBw==", + ["value"]=91.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBg==", + ["value"]=56.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCCg==", + ["value"]=91.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CCw==", + ["value"]=56.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCBw==", + ["value"]=92.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCCg==", + ["value"]=92.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAA==", + ["value"]=57.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCBw==", + ["value"]=93.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBQ==", + ["value"]=57.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCCg==", + ["value"]=93.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CCg==", + ["value"]=57.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCAA==", + ["value"]=94.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAQ==", + ["value"]=58.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCCw==", + ["value"]=94.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBg==", + ["value"]=58.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CAA==", + ["value"]=95.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCCw==", + ["value"]=58.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CCw==", + ["value"]=95.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAg==", + ["value"]=59.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CAA==", + ["value"]=96.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCBw==", + ["value"]=59.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CCw==", + ["value"]=96.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCBA==", + ["value"]=59.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CAA==", + ["value"]=97.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAw==", + ["value"]=60.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CCw==", + ["value"]=97.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAA==", + ["value"]=60.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCAA==", + ["value"]=98.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBQ==", + ["value"]=60.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCCg==", + ["value"]=98.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCCg==", + ["value"]=60.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCBw==", + ["value"]=99.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAQ==", + ["value"]=61.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCCg==", + ["value"]=99.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBg==", + ["value"]=61.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCCw==", + ["value"]=61.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAg==", + ["value"]=62.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBw==", + ["value"]=62.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBA==", + ["value"]=62.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAw==", + ["value"]=63.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAA==", + ["value"]=63.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCBA==", + ["value"]=63.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAw==", + ["value"]=64.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAA==", + ["value"]=64.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCBQ==", + ["value"]=64.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCCg==", + ["value"]=64.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CAA==", + ["value"]=65.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBQ==", + ["value"]=65.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CCg==", + ["value"]=65.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CAQ==", + ["value"]=66.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBQ==", + ["value"]=66.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CCg==", + ["value"]=66.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CAQ==", + ["value"]=67.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBQ==", + ["value"]=67.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CCg==", + ["value"]=67.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCAA==", + ["value"]=68.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCBQ==", + ["value"]=68.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCCg==", + ["value"]=68.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCAA==", + ["value"]=69.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCBQ==", + ["value"]=69.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAw==", + ["value"]=70.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAA==", + ["value"]=70.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCBA==", + ["value"]=70.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAw==", + ["value"]=71.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCBw==", + ["value"]=71.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCCw==", + ["value"]=71.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAg==", + ["value"]=72.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCBg==", + ["value"]=72.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCCw==", + ["value"]=72.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAQ==", + ["value"]=73.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCBQ==", + ["value"]=73.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCCg==", + ["value"]=73.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCAA==", + ["value"]=74.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCBA==", + ["value"]=74.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CAw==", + ["value"]=75.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CBw==", + ["value"]=75.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CCw==", + ["value"]=75.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CAQ==", + ["value"]=76.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CBQ==", + ["value"]=76.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CCg==", + ["value"]=76.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CAA==", + ["value"]=77.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CBA==", + ["value"]=77.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCAg==", + ["value"]=78.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCBg==", + ["value"]=78.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCCg==", + ["value"]=78.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCAA==", + ["value"]=79.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCBA==", + ["value"]=79.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCAg==", + ["value"]=80.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCBg==", + ["value"]=80.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCCg==", + ["value"]=80.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCAA==", + ["value"]=81.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCBA==", + ["value"]=81.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCAg==", + ["value"]=82.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCBg==", + ["value"]=82.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCCg==", + ["value"]=82.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCAA==", + ["value"]=83.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCCw==", + ["value"]=83.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCAQ==", + ["value"]=84.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCBQ==", + ["value"]=84.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CAw==", + ["value"]=85.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CBw==", + ["value"]=85.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CCg==", + ["value"]=85.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CAA==", + ["value"]=86.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CBA==", + ["value"]=86.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CAQ==", + ["value"]=87.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CBQ==", + ["value"]=87.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCAw==", + ["value"]=88.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCBg==", + ["value"]=88.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCCg==", + ["value"]=88.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCBw==", + ["value"]=89.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCCw==", + ["value"]=89.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCAA==", + ["value"]=90.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCBA==", + ["value"]=90.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCAQ==", + ["value"]=91.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCBQ==", + ["value"]=91.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCAg==", + ["value"]=92.1, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCBQ==", + ["value"]=92.6, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCAw==", + ["value"]=93.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCBg==", + ["value"]=93.5, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCCg==", + ["value"]=93.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCBw==", + ["value"]=94.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCCg==", + ["value"]=94.9, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CBw==", + ["value"]=95.4, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CCw==", + ["value"]=95.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CAA==", + ["value"]=96.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CCw==", + ["value"]=96.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CAA==", + ["value"]=97.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CCw==", + ["value"]=97.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCAA==", + ["value"]=98.3, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCCw==", + ["value"]=98.8, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCAQ==", + ["value"]=99.2, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCBA==", + ["value"]=99.7, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9YHWU=", + ["value"]=274.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxdHWU=", + ["value"]=341.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxaHWU=", + ["value"]=346.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxUHWU=", + ["value"]=348.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1ZHWU=", + ["value"]=355.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5dHWU=", + ["value"]=361.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9cHWU=", + ["value"]=370.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9aHWU=", + ["value"]=376.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBcHWU=", + ["value"]=380.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBeHWU=", + ["value"]=382.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBaHWU=", + ["value"]=386.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBUHWU=", + ["value"]=388.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFeHWU=", + ["value"]=392.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFYHWU=", + ["value"]=394.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFaHWU=", + ["value"]=396.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFUHWU=", + ["value"]=398.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghcHWU=", + ["value"]=400.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgheHWU=", + ["value"]=402.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghYHWU=", + ["value"]=404.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghbHWU=", + ["value"]=407.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghVHWU=", + ["value"]=409.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgldHWU=", + ["value"]=411.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglfHWU=", + ["value"]=413.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglZHWU=", + ["value"]=415.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglVHWU=", + ["value"]=419.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpeHWU=", + ["value"]=422.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpYHWU=", + ["value"]=424.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpaHWU=", + ["value"]=426.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtcHWU=", + ["value"]=430.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtfHWU=", + ["value"]=433.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtZHWU=", + ["value"]=435.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtbHWU=", + ["value"]=437.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxcHWU=", + ["value"]=440.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxeHWU=", + ["value"]=442.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxYHWU=", + ["value"]=444.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxaHWU=", + ["value"]=446.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxVHWU=", + ["value"]=449.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1dHWU=", + ["value"]=451.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1fHWU=", + ["value"]=453.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1aHWU=", + ["value"]=456.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1UHWU=", + ["value"]=458.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5dHWU=", + ["value"]=461.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5fHWU=", + ["value"]=463.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5ZHWU=", + ["value"]=465.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5UHWU=", + ["value"]=468.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9cHWU=", + ["value"]=470.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9fHWU=", + ["value"]=473.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9ZHWU=", + ["value"]=475.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9UHWU=", + ["value"]=478.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBcHWU=", + ["value"]=480.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBfHWU=", + ["value"]=483.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBZHWU=", + ["value"]=485.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBUHWU=", + ["value"]=488.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFcHWU=", + ["value"]=490.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFfHWU=", + ["value"]=493.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFZHWU=", + ["value"]=495.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFUHWU=", + ["value"]=498.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhdHWU=", + ["value"]=501.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhfHWU=", + ["value"]=503.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhaHWU=", + ["value"]=506.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFeHWU=", + ["value"]=292.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhUHWU=", + ["value"]=508.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwldHWU=", + ["value"]=511.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlYHWU=", + ["value"]=514.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlaHWU=", + ["value"]=516.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlVHWU=", + ["value"]=519.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpeHWU=", + ["value"]=522.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpZHWU=", + ["value"]=525.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpbHWU=", + ["value"]=527.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtcHWU=", + ["value"]=530.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtfHWU=", + ["value"]=533.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtaHWU=", + ["value"]=536.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhUHWU=", + ["value"]=308.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtUHWU=", + ["value"]=538.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxdHWU=", + ["value"]=541.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxYHWU=", + ["value"]=544.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxbHWU=", + ["value"]=547.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1cHWU=", + ["value"]=550.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlaHWU=", + ["value"]=316.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1fHWU=", + ["value"]=553.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1ZHWU=", + ["value"]=555.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlVHWU=", + ["value"]=319.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1UHWU=", + ["value"]=558.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpdHWU=", + ["value"]=321.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5dHWU=", + ["value"]=561.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5YHWU=", + ["value"]=564.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpYHWU=", + ["value"]=324.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5bHWU=", + ["value"]=567.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9cHWU=", + ["value"]=570.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9fHWU=", + ["value"]=573.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9aHWU=", + ["value"]=576.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9VHWU=", + ["value"]=579.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBeHWU=", + ["value"]=582.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBZHWU=", + ["value"]=585.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBUHWU=", + ["value"]=588.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFdHWU=", + ["value"]=591.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFYHWU=", + ["value"]=594.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFbHWU=", + ["value"]=597.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhcHWU=", + ["value"]=600.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhYHWU=", + ["value"]=604.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxaHWU=", + ["value"]=346.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhbHWU=", + ["value"]=607.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlcHWU=", + ["value"]=610.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxVHWU=", + ["value"]=349.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlfHWU=", + ["value"]=613.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlaHWU=", + ["value"]=616.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlVHWU=", + ["value"]=619.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApfHWU=", + ["value"]=623.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApaHWU=", + ["value"]=626.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1UHWU=", + ["value"]=358.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApVHWU=", + ["value"]=629.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5cHWU=", + ["value"]=360.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAteHWU=", + ["value"]=632.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5dHWU=", + ["value"]=361.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtaHWU=", + ["value"]=636.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtVHWU=", + ["value"]=639.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxeHWU=", + ["value"]=642.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5bHWU=", + ["value"]=367.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxaHWU=", + ["value"]=646.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5VHWU=", + ["value"]=369.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxVHWU=", + ["value"]=649.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9dHWU=", + ["value"]=371.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1fHWU=", + ["value"]=653.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1aHWU=", + ["value"]=656.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1VHWU=", + ["value"]=659.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9aHWU=", + ["value"]=376.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5fHWU=", + ["value"]=663.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5aHWU=", + ["value"]=666.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBcHWU=", + ["value"]=380.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9cHWU=", + ["value"]=670.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBeHWU=", + ["value"]=382.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9fHWU=", + ["value"]=673.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9bHWU=", + ["value"]=677.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBaHWU=", + ["value"]=386.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABcHWU=", + ["value"]=680.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBUHWU=", + ["value"]=388.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABYHWU=", + ["value"]=684.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABbHWU=", + ["value"]=687.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFeHWU=", + ["value"]=392.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFdHWU=", + ["value"]=691.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFZHWU=", + ["value"]=695.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFUHWU=", + ["value"]=698.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFbHWU=", + ["value"]=397.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQheHWU=", + ["value"]=702.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhZHWU=", + ["value"]=705.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhVHWU=", + ["value"]=709.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghfHWU=", + ["value"]=403.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlfHWU=", + ["value"]=713.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghZHWU=", + ["value"]=405.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlbHWU=", + ["value"]=717.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghbHWU=", + ["value"]=407.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpcHWU=", + ["value"]=720.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglcHWU=", + ["value"]=410.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpYHWU=", + ["value"]=724.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgleHWU=", + ["value"]=412.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpUHWU=", + ["value"]=728.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglYHWU=", + ["value"]=414.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQteHWU=", + ["value"]=732.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglaHWU=", + ["value"]=416.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtZHWU=", + ["value"]=735.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglUHWU=", + ["value"]=418.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtVHWU=", + ["value"]=739.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpcHWU=", + ["value"]=420.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxfHWU=", + ["value"]=743.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpeHWU=", + ["value"]=422.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxbHWU=", + ["value"]=747.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpYHWU=", + ["value"]=424.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1dHWU=", + ["value"]=751.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpaHWU=", + ["value"]=426.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1ZHWU=", + ["value"]=755.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1VHWU=", + ["value"]=759.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtcHWU=", + ["value"]=430.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5fHWU=", + ["value"]=763.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtfHWU=", + ["value"]=433.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5bHWU=", + ["value"]=767.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtZHWU=", + ["value"]=435.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9dHWU=", + ["value"]=771.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtbHWU=", + ["value"]=437.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9ZHWU=", + ["value"]=775.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtVHWU=", + ["value"]=439.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9VHWU=", + ["value"]=779.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxdHWU=", + ["value"]=441.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBfHWU=", + ["value"]=783.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxYHWU=", + ["value"]=444.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBbHWU=", + ["value"]=787.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxaHWU=", + ["value"]=446.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFdHWU=", + ["value"]=791.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxUHWU=", + ["value"]=448.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFZHWU=", + ["value"]=795.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1cHWU=", + ["value"]=450.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFVHWU=", + ["value"]=799.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1fHWU=", + ["value"]=453.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghfHWU=", + ["value"]=803.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1ZHWU=", + ["value"]=455.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghUHWU=", + ["value"]=808.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1bHWU=", + ["value"]=457.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgleHWU=", + ["value"]=812.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1VHWU=", + ["value"]=459.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglaHWU=", + ["value"]=816.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5eHWU=", + ["value"]=462.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpcHWU=", + ["value"]=820.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5YHWU=", + ["value"]=464.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpYHWU=", + ["value"]=824.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5aHWU=", + ["value"]=466.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpVHWU=", + ["value"]=829.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5VHWU=", + ["value"]=469.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtfHWU=", + ["value"]=833.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9dHWU=", + ["value"]=471.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtbHWU=", + ["value"]=837.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9fHWU=", + ["value"]=473.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxeHWU=", + ["value"]=842.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9aHWU=", + ["value"]=476.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxaHWU=", + ["value"]=846.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9UHWU=", + ["value"]=478.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1dHWU=", + ["value"]=851.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBcHWU=", + ["value"]=480.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1ZHWU=", + ["value"]=855.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBfHWU=", + ["value"]=483.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1VHWU=", + ["value"]=859.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBZHWU=", + ["value"]=485.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5YHWU=", + ["value"]=864.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBUHWU=", + ["value"]=488.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5UHWU=", + ["value"]=868.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFcHWU=", + ["value"]=490.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9fHWU=", + ["value"]=873.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFfHWU=", + ["value"]=493.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9UHWU=", + ["value"]=878.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFZHWU=", + ["value"]=495.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBeHWU=", + ["value"]=882.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFUHWU=", + ["value"]=498.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBbHWU=", + ["value"]=887.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhcHWU=", + ["value"]=500.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFdHWU=", + ["value"]=891.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhfHWU=", + ["value"]=503.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFaHWU=", + ["value"]=896.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhZHWU=", + ["value"]=505.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhdHWU=", + ["value"]=901.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhUHWU=", + ["value"]=508.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhZHWU=", + ["value"]=905.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlcHWU=", + ["value"]=510.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlcHWU=", + ["value"]=910.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlfHWU=", + ["value"]=513.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlZHWU=", + ["value"]=915.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlZHWU=", + ["value"]=515.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpcHWU=", + ["value"]=920.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlUHWU=", + ["value"]=518.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpYHWU=", + ["value"]=924.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpcHWU=", + ["value"]=520.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpVHWU=", + ["value"]=929.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpfHWU=", + ["value"]=523.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtYHWU=", + ["value"]=934.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpaHWU=", + ["value"]=526.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtVHWU=", + ["value"]=939.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpUHWU=", + ["value"]=528.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxYHWU=", + ["value"]=944.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtdHWU=", + ["value"]=531.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxVHWU=", + ["value"]=949.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtYHWU=", + ["value"]=534.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1YHWU=", + ["value"]=954.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtaHWU=", + ["value"]=536.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1VHWU=", + ["value"]=959.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtVHWU=", + ["value"]=539.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5YHWU=", + ["value"]=964.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxeHWU=", + ["value"]=542.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5VHWU=", + ["value"]=969.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxYHWU=", + ["value"]=544.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9YHWU=", + ["value"]=974.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxbHWU=", + ["value"]=547.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9VHWU=", + ["value"]=979.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1cHWU=", + ["value"]=550.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBYHWU=", + ["value"]=984.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1eHWU=", + ["value"]=552.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBVHWU=", + ["value"]=989.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1ZHWU=", + ["value"]=555.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFYHWU=", + ["value"]=994.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1UHWU=", + ["value"]=558.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFVHWU=", + ["value"]=999.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5dHWU=", + ["value"]=561.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5YHWU=", + ["value"]=564.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5aHWU=", + ["value"]=566.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5VHWU=", + ["value"]=569.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9eHWU=", + ["value"]=572.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9ZHWU=", + ["value"]=575.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9UHWU=", + ["value"]=578.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBdHWU=", + ["value"]=581.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBYHWU=", + ["value"]=584.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBbHWU=", + ["value"]=587.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFcHWU=", + ["value"]=590.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFeHWU=", + ["value"]=592.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFZHWU=", + ["value"]=595.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFUHWU=", + ["value"]=598.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhdHWU=", + ["value"]=601.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhYHWU=", + ["value"]=604.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhbHWU=", + ["value"]=607.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlcHWU=", + ["value"]=610.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlYHWU=", + ["value"]=614.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlbHWU=", + ["value"]=617.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApcHWU=", + ["value"]=620.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApfHWU=", + ["value"]=623.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApaHWU=", + ["value"]=626.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApVHWU=", + ["value"]=629.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAteHWU=", + ["value"]=632.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [2999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtZHWU=", + ["value"]=635.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtVHWU=", + ["value"]=639.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxeHWU=", + ["value"]=642.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxZHWU=", + ["value"]=645.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxUHWU=", + ["value"]=648.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1dHWU=", + ["value"]=651.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1ZHWU=", + ["value"]=655.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1UHWU=", + ["value"]=658.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5dHWU=", + ["value"]=661.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5ZHWU=", + ["value"]=665.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5UHWU=", + ["value"]=668.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9dHWU=", + ["value"]=671.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9ZHWU=", + ["value"]=675.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9UHWU=", + ["value"]=678.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABdHWU=", + ["value"]=681.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABZHWU=", + ["value"]=685.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABUHWU=", + ["value"]=688.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFeHWU=", + ["value"]=692.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFZHWU=", + ["value"]=695.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFVHWU=", + ["value"]=699.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQheHWU=", + ["value"]=702.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhaHWU=", + ["value"]=706.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhVHWU=", + ["value"]=709.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlfHWU=", + ["value"]=713.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlaHWU=", + ["value"]=716.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpcHWU=", + ["value"]=720.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpfHWU=", + ["value"]=723.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpbHWU=", + ["value"]=727.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtdHWU=", + ["value"]=731.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtYHWU=", + ["value"]=734.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtUHWU=", + ["value"]=738.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxeHWU=", + ["value"]=742.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxZHWU=", + ["value"]=745.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxVHWU=", + ["value"]=749.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1fHWU=", + ["value"]=753.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1bHWU=", + ["value"]=757.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5cHWU=", + ["value"]=760.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5YHWU=", + ["value"]=764.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5UHWU=", + ["value"]=768.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9eHWU=", + ["value"]=772.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9aHWU=", + ["value"]=776.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBcHWU=", + ["value"]=780.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBfHWU=", + ["value"]=783.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBbHWU=", + ["value"]=787.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFdHWU=", + ["value"]=791.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFZHWU=", + ["value"]=795.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFVHWU=", + ["value"]=799.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghfHWU=", + ["value"]=803.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghbHWU=", + ["value"]=807.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgldHWU=", + ["value"]=811.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglZHWU=", + ["value"]=815.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglVHWU=", + ["value"]=819.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpYHWU=", + ["value"]=824.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpUHWU=", + ["value"]=828.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgteHWU=", + ["value"]=832.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtaHWU=", + ["value"]=836.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxcHWU=", + ["value"]=840.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxYHWU=", + ["value"]=844.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxVHWU=", + ["value"]=849.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1fHWU=", + ["value"]=853.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1bHWU=", + ["value"]=857.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5dHWU=", + ["value"]=861.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5aHWU=", + ["value"]=866.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9cHWU=", + ["value"]=870.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9YHWU=", + ["value"]=874.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9VHWU=", + ["value"]=879.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBfHWU=", + ["value"]=883.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBUHWU=", + ["value"]=888.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFeHWU=", + ["value"]=892.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFbHWU=", + ["value"]=897.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhdHWU=", + ["value"]=901.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhaHWU=", + ["value"]=906.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlcHWU=", + ["value"]=910.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlZHWU=", + ["value"]=915.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlVHWU=", + ["value"]=919.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpYHWU=", + ["value"]=924.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpUHWU=", + ["value"]=928.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtfHWU=", + ["value"]=933.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtUHWU=", + ["value"]=938.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxeHWU=", + ["value"]=942.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxbHWU=", + ["value"]=947.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1eHWU=", + ["value"]=952.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1bHWU=", + ["value"]=957.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5dHWU=", + ["value"]=961.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5aHWU=", + ["value"]=966.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9dHWU=", + ["value"]=971.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9aHWU=", + ["value"]=976.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBdHWU=", + ["value"]=981.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBaHWU=", + ["value"]=986.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFdHWU=", + ["value"]=991.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFaHWU=", + ["value"]=996.0, + ["unit_for_nothing"]="VA==", + ["unit"]=2 + } + }, + [3090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBQ==", + ["value"]=2.86, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCg==", + ["value"]=2.89, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCg==", + ["value"]=2.99, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAQ==", + ["value"]=3.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBA==", + ["value"]=3.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCg==", + ["value"]=3.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAQ==", + ["value"]=3.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZf", + ["value"]=3.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBw==", + ["value"]=3.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBA==", + ["value"]=3.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAg==", + ["value"]=3.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAQ==", + ["value"]=3.52, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBg==", + ["value"]=3.65, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBA==", + ["value"]=3.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZb", + ["value"]=3.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAQ==", + ["value"]=3.72, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBw==", + ["value"]=3.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBQ==", + ["value"]=3.76, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZU", + ["value"]=3.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVCw==", + ["value"]=3.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAA==", + ["value"]=4.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBg==", + ["value"]=4.05, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBA==", + ["value"]=4.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcCg==", + ["value"]=4.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAg==", + ["value"]=4.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAA==", + ["value"]=4.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBg==", + ["value"]=4.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBA==", + ["value"]=4.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZe", + ["value"]=4.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAQ==", + ["value"]=4.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBw==", + ["value"]=4.24, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBQ==", + ["value"]=4.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeCw==", + ["value"]=4.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAg==", + ["value"]=4.31, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAA==", + ["value"]=4.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBg==", + ["value"]=4.35, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBA==", + ["value"]=4.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAQ==", + ["value"]=4.42, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBw==", + ["value"]=4.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYCg==", + ["value"]=4.49, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAg==", + ["value"]=4.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBw==", + ["value"]=4.54, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBQ==", + ["value"]=4.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZCw==", + ["value"]=4.58, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAg==", + ["value"]=4.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAA==", + ["value"]=4.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBQ==", + ["value"]=4.66, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaCw==", + ["value"]=4.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZb", + ["value"]=4.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAA==", + ["value"]=4.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBg==", + ["value"]=4.75, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbCw==", + ["value"]=4.78, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZU", + ["value"]=4.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAA==", + ["value"]=4.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBg==", + ["value"]=4.85, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUCw==", + ["value"]=4.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZV", + ["value"]=4.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAA==", + ["value"]=4.93, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBQ==", + ["value"]=4.96, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVCw==", + ["value"]=4.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAg==", + ["value"]=5.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAA==", + ["value"]=5.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBQ==", + ["value"]=5.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcCg==", + ["value"]=5.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAg==", + ["value"]=5.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBw==", + ["value"]=5.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBA==", + ["value"]=5.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdCg==", + ["value"]=5.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAQ==", + ["value"]=5.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBg==", + ["value"]=5.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBA==", + ["value"]=5.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZf", + ["value"]=5.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAA==", + ["value"]=5.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBQ==", + ["value"]=5.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfCg==", + ["value"]=5.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYAg==", + ["value"]=5.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBw==", + ["value"]=5.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBA==", + ["value"]=5.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZ", + ["value"]=5.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAA==", + ["value"]=5.53, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBQ==", + ["value"]=5.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZCw==", + ["value"]=5.58, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaAg==", + ["value"]=5.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBw==", + ["value"]=2.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBw==", + ["value"]=5.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBA==", + ["value"]=5.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBA==", + ["value"]=2.97, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZb", + ["value"]=5.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbAA==", + ["value"]=5.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBQ==", + ["value"]=5.76, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbCg==", + ["value"]=5.79, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUAQ==", + ["value"]=5.82, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBg==", + ["value"]=5.85, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUCw==", + ["value"]=5.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVAg==", + ["value"]=5.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBw==", + ["value"]=5.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVCw==", + ["value"]=5.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcAg==", + ["value"]=6.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBw==", + ["value"]=6.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBA==", + ["value"]=6.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBA==", + ["value"]=3.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZd", + ["value"]=6.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdAA==", + ["value"]=6.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBQ==", + ["value"]=6.16, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAQ==", + ["value"]=3.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZe", + ["value"]=6.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeAA==", + ["value"]=6.23, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBQ==", + ["value"]=6.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeCg==", + ["value"]=6.29, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeCw==", + ["value"]=3.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfAA==", + ["value"]=6.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZf", + ["value"]=3.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfBQ==", + ["value"]=6.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfCg==", + ["value"]=6.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYAA==", + ["value"]=6.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBg==", + ["value"]=3.35, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYBQ==", + ["value"]=6.46, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYCg==", + ["value"]=6.49, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfCw==", + ["value"]=3.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZAA==", + ["value"]=6.53, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZY", + ["value"]=3.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBQ==", + ["value"]=6.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZa", + ["value"]=6.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaAA==", + ["value"]=6.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBg==", + ["value"]=3.45, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBQ==", + ["value"]=6.66, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBA==", + ["value"]=3.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZb", + ["value"]=6.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbAA==", + ["value"]=6.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBA==", + ["value"]=6.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAQ==", + ["value"]=3.52, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZU", + ["value"]=6.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBw==", + ["value"]=3.54, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBw==", + ["value"]=6.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUCw==", + ["value"]=6.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVAg==", + ["value"]=6.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBg==", + ["value"]=6.95, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVCw==", + ["value"]=6.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcAQ==", + ["value"]=7.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBw==", + ["value"]=3.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBQ==", + ["value"]=7.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcCg==", + ["value"]=7.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdAA==", + ["value"]=7.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZb", + ["value"]=3.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBA==", + ["value"]=7.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAQ==", + ["value"]=3.72, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeAg==", + ["value"]=7.21, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBw==", + ["value"]=3.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeBw==", + ["value"]=7.24, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBg==", + ["value"]=3.75, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeCw==", + ["value"]=7.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBA==", + ["value"]=3.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfAQ==", + ["value"]=7.32, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbCg==", + ["value"]=3.79, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfBQ==", + ["value"]=7.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAg==", + ["value"]=3.81, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZY", + ["value"]=7.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAA==", + ["value"]=3.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYAA==", + ["value"]=7.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBg==", + ["value"]=3.85, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYBA==", + ["value"]=7.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBA==", + ["value"]=3.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZAg==", + ["value"]=7.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUCg==", + ["value"]=3.89, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZBg==", + ["value"]=7.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAg==", + ["value"]=3.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZCg==", + ["value"]=7.59, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAA==", + ["value"]=3.93, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaAA==", + ["value"]=7.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBg==", + ["value"]=3.95, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaBA==", + ["value"]=7.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBA==", + ["value"]=3.97, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbAg==", + ["value"]=7.71, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVCg==", + ["value"]=3.99, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbBg==", + ["value"]=7.75, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAg==", + ["value"]=4.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbCg==", + ["value"]=7.79, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAA==", + ["value"]=4.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUAA==", + ["value"]=7.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBg==", + ["value"]=4.05, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUBA==", + ["value"]=7.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBA==", + ["value"]=4.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVAg==", + ["value"]=7.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcCg==", + ["value"]=4.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVBg==", + ["value"]=7.95, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAg==", + ["value"]=4.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVCg==", + ["value"]=7.99, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAA==", + ["value"]=4.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcBw==", + ["value"]=8.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBg==", + ["value"]=4.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcCw==", + ["value"]=8.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBA==", + ["value"]=4.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdAQ==", + ["value"]=8.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdCg==", + ["value"]=4.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdBQ==", + ["value"]=8.16, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAg==", + ["value"]=4.21, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeAg==", + ["value"]=8.21, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAA==", + ["value"]=4.23, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeBg==", + ["value"]=8.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBg==", + ["value"]=4.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeCg==", + ["value"]=8.29, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeCw==", + ["value"]=4.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfAA==", + ["value"]=8.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZf", + ["value"]=4.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfCw==", + ["value"]=8.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAQ==", + ["value"]=4.32, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYAQ==", + ["value"]=8.42, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBw==", + ["value"]=4.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYBA==", + ["value"]=8.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBQ==", + ["value"]=4.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZAg==", + ["value"]=8.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfCw==", + ["value"]=4.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZBg==", + ["value"]=8.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAg==", + ["value"]=4.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZa", + ["value"]=8.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAA==", + ["value"]=4.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaBw==", + ["value"]=8.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBg==", + ["value"]=4.45, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaCg==", + ["value"]=8.69, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbAA==", + ["value"]=8.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYCg==", + ["value"]=4.49, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbCw==", + ["value"]=8.78, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAQ==", + ["value"]=4.52, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUAQ==", + ["value"]=8.82, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBw==", + ["value"]=4.54, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUBA==", + ["value"]=8.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBQ==", + ["value"]=4.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVAQ==", + ["value"]=8.92, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZCw==", + ["value"]=4.58, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVBQ==", + ["value"]=8.96, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAg==", + ["value"]=4.61, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcAg==", + ["value"]=9.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAA==", + ["value"]=4.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcBQ==", + ["value"]=9.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBg==", + ["value"]=4.65, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZd", + ["value"]=9.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaCw==", + ["value"]=4.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdBg==", + ["value"]=9.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZb", + ["value"]=4.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZe", + ["value"]=9.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbAQ==", + ["value"]=4.72, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeBg==", + ["value"]=9.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBg==", + ["value"]=4.75, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZf", + ["value"]=9.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBA==", + ["value"]=4.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfBw==", + ["value"]=9.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZU", + ["value"]=4.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfCg==", + ["value"]=9.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAQ==", + ["value"]=4.82, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYBw==", + ["value"]=9.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBw==", + ["value"]=4.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYCg==", + ["value"]=9.49, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBA==", + ["value"]=4.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZBw==", + ["value"]=9.54, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUCg==", + ["value"]=4.89, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZCg==", + ["value"]=9.59, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAQ==", + ["value"]=4.92, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaBw==", + ["value"]=9.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBw==", + ["value"]=4.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaCg==", + ["value"]=9.69, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBA==", + ["value"]=4.97, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbBw==", + ["value"]=9.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVCg==", + ["value"]=4.99, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbCg==", + ["value"]=9.79, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAQ==", + ["value"]=5.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUBw==", + ["value"]=9.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBw==", + ["value"]=5.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUCg==", + ["value"]=9.89, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBA==", + ["value"]=5.07, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVBg==", + ["value"]=9.95, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcCg==", + ["value"]=5.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdAQ==", + ["value"]=5.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBw==", + ["value"]=5.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBA==", + ["value"]=5.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdCg==", + ["value"]=5.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeAQ==", + ["value"]=5.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBg==", + ["value"]=5.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBA==", + ["value"]=5.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZf", + ["value"]=5.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfAA==", + ["value"]=5.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBg==", + ["value"]=5.35, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfCw==", + ["value"]=5.38, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYAg==", + ["value"]=5.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYAA==", + ["value"]=5.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBQ==", + ["value"]=5.46, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYCg==", + ["value"]=5.49, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZAg==", + ["value"]=5.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBw==", + ["value"]=5.54, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBA==", + ["value"]=5.57, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZa", + ["value"]=5.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaAA==", + ["value"]=5.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBg==", + ["value"]=5.65, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaCw==", + ["value"]=5.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbAg==", + ["value"]=5.71, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBw==", + ["value"]=5.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBA==", + ["value"]=5.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZU", + ["value"]=5.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUAA==", + ["value"]=5.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBg==", + ["value"]=5.85, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUCw==", + ["value"]=5.88, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVAg==", + ["value"]=5.91, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBw==", + ["value"]=5.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBA==", + ["value"]=5.97, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZc", + ["value"]=6.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcAA==", + ["value"]=6.03, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcBQ==", + ["value"]=6.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcCg==", + ["value"]=6.09, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdAQ==", + ["value"]=6.12, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBg==", + ["value"]=6.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdCg==", + ["value"]=6.19, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeAQ==", + ["value"]=6.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBg==", + ["value"]=6.25, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeCw==", + ["value"]=6.28, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfAg==", + ["value"]=6.31, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBw==", + ["value"]=6.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBA==", + ["value"]=6.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYAg==", + ["value"]=6.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBw==", + ["value"]=6.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBA==", + ["value"]=6.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZ", + ["value"]=6.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZAA==", + ["value"]=6.53, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZBA==", + ["value"]=6.57, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZa", + ["value"]=6.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaAA==", + ["value"]=6.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaBA==", + ["value"]=6.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZb", + ["value"]=6.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbAA==", + ["value"]=6.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBA==", + ["value"]=6.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZU", + ["value"]=6.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUAA==", + ["value"]=6.83, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUBA==", + ["value"]=6.87, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZV", + ["value"]=6.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVBw==", + ["value"]=6.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVBA==", + ["value"]=6.97, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcAg==", + ["value"]=7.01, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcBw==", + ["value"]=7.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcCw==", + ["value"]=7.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdAg==", + ["value"]=7.11, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdBg==", + ["value"]=7.15, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdCw==", + ["value"]=7.18, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeAQ==", + ["value"]=7.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeBQ==", + ["value"]=7.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeCg==", + ["value"]=7.29, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfAA==", + ["value"]=7.33, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfBA==", + ["value"]=7.37, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZY", + ["value"]=7.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYBw==", + ["value"]=7.44, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYCw==", + ["value"]=7.48, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZAg==", + ["value"]=7.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZBg==", + ["value"]=7.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZCg==", + ["value"]=7.59, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaAA==", + ["value"]=7.63, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaBA==", + ["value"]=7.67, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZb", + ["value"]=7.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbBw==", + ["value"]=7.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbCw==", + ["value"]=7.78, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUAQ==", + ["value"]=7.82, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUBQ==", + ["value"]=7.86, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZV", + ["value"]=7.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVBw==", + ["value"]=7.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVCw==", + ["value"]=7.98, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcAQ==", + ["value"]=8.02, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcBQ==", + ["value"]=8.06, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZd", + ["value"]=8.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdBw==", + ["value"]=8.14, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdCw==", + ["value"]=8.18, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeAQ==", + ["value"]=8.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeBQ==", + ["value"]=8.26, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZf", + ["value"]=8.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfBw==", + ["value"]=8.34, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfCg==", + ["value"]=8.39, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYAA==", + ["value"]=8.43, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYBA==", + ["value"]=8.47, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZAg==", + ["value"]=8.51, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZBQ==", + ["value"]=8.56, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZa", + ["value"]=8.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaBw==", + ["value"]=8.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaCw==", + ["value"]=8.68, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbAA==", + ["value"]=8.73, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbBA==", + ["value"]=8.77, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUAQ==", + ["value"]=8.82, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUBQ==", + ["value"]=8.86, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZV", + ["value"]=8.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVBg==", + ["value"]=8.95, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVCg==", + ["value"]=8.99, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcBw==", + ["value"]=9.04, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcCw==", + ["value"]=9.08, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdAA==", + ["value"]=9.13, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdBA==", + ["value"]=9.17, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeAQ==", + ["value"]=9.22, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeBA==", + ["value"]=9.27, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfAg==", + ["value"]=9.31, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfBQ==", + ["value"]=9.36, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYAg==", + ["value"]=9.41, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYBg==", + ["value"]=9.45, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZ", + ["value"]=9.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZBg==", + ["value"]=9.55, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZa", + ["value"]=9.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaBw==", + ["value"]=9.64, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaCg==", + ["value"]=9.69, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbBw==", + ["value"]=9.74, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbCg==", + ["value"]=9.79, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUBw==", + ["value"]=9.84, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUCg==", + ["value"]=9.89, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVBw==", + ["value"]=9.94, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVCg==", + ["value"]=9.99, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBw==", + ["value"]=28.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAA==", + ["value"]=30.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBQ==", + ["value"]=30.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAg==", + ["value"]=31.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBw==", + ["value"]=31.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAQ==", + ["value"]=32.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBg==", + ["value"]=32.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAg==", + ["value"]=34.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAA==", + ["value"]=34.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBg==", + ["value"]=34.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCCw==", + ["value"]=34.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAQ==", + ["value"]=35.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBw==", + ["value"]=35.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBg==", + ["value"]=35.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBA==", + ["value"]=35.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CCg==", + ["value"]=35.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAg==", + ["value"]=36.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAA==", + ["value"]=36.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBg==", + ["value"]=36.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBA==", + ["value"]=36.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CCg==", + ["value"]=36.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAg==", + ["value"]=37.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAQ==", + ["value"]=37.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBw==", + ["value"]=37.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBQ==", + ["value"]=37.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CCw==", + ["value"]=37.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAQ==", + ["value"]=38.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBw==", + ["value"]=38.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBQ==", + ["value"]=38.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCCw==", + ["value"]=38.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCCg==", + ["value"]=39.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAg==", + ["value"]=40.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAA==", + ["value"]=40.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBg==", + ["value"]=40.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBA==", + ["value"]=40.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCCg==", + ["value"]=40.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAg==", + ["value"]=41.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAA==", + ["value"]=41.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBg==", + ["value"]=41.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCCw==", + ["value"]=41.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAQ==", + ["value"]=42.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBw==", + ["value"]=42.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCCg==", + ["value"]=42.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAg==", + ["value"]=43.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAA==", + ["value"]=43.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBg==", + ["value"]=43.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCCw==", + ["value"]=43.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAw==", + ["value"]=44.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAQ==", + ["value"]=44.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBw==", + ["value"]=44.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBA==", + ["value"]=44.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCCg==", + ["value"]=44.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAg==", + ["value"]=45.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBw==", + ["value"]=45.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBQ==", + ["value"]=45.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CCg==", + ["value"]=45.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAg==", + ["value"]=46.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAA==", + ["value"]=46.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBQ==", + ["value"]=46.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CCw==", + ["value"]=46.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAg==", + ["value"]=47.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAA==", + ["value"]=47.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBQ==", + ["value"]=47.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CCw==", + ["value"]=47.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAg==", + ["value"]=48.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAA==", + ["value"]=48.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBQ==", + ["value"]=48.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCCw==", + ["value"]=48.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAg==", + ["value"]=49.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAA==", + ["value"]=49.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBQ==", + ["value"]=49.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCCw==", + ["value"]=49.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAg==", + ["value"]=50.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBw==", + ["value"]=50.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBQ==", + ["value"]=50.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCCg==", + ["value"]=50.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAg==", + ["value"]=51.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBw==", + ["value"]=51.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBA==", + ["value"]=51.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAw==", + ["value"]=52.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCg==", + ["value"]=24.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAQ==", + ["value"]=52.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBg==", + ["value"]=52.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCCw==", + ["value"]=52.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAA==", + ["value"]=53.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBQ==", + ["value"]=53.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCCg==", + ["value"]=53.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAQ==", + ["value"]=54.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBw==", + ["value"]=54.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBA==", + ["value"]=54.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAw==", + ["value"]=55.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAA==", + ["value"]=55.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBQ==", + ["value"]=55.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CCg==", + ["value"]=55.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAQ==", + ["value"]=56.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBg==", + ["value"]=56.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CCw==", + ["value"]=56.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAA==", + ["value"]=57.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CBQ==", + ["value"]=57.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CCg==", + ["value"]=57.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAQ==", + ["value"]=58.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCBg==", + ["value"]=58.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCCg==", + ["value"]=58.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAQ==", + ["value"]=59.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBg==", + ["value"]=59.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCCw==", + ["value"]=59.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAg==", + ["value"]=60.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBw==", + ["value"]=60.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCw==", + ["value"]=28.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBA==", + ["value"]=60.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBw==", + ["value"]=61.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBA==", + ["value"]=61.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAw==", + ["value"]=62.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAA==", + ["value"]=62.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCBQ==", + ["value"]=62.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAw==", + ["value"]=63.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAA==", + ["value"]=63.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCBQ==", + ["value"]=63.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAw==", + ["value"]=64.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAA==", + ["value"]=64.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCBQ==", + ["value"]=64.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAw==", + ["value"]=65.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAA==", + ["value"]=65.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CBQ==", + ["value"]=65.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAw==", + ["value"]=66.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAA==", + ["value"]=66.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CBA==", + ["value"]=66.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBQ==", + ["value"]=31.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAw==", + ["value"]=67.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCw==", + ["value"]=31.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBw==", + ["value"]=67.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBA==", + ["value"]=67.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAg==", + ["value"]=68.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAA==", + ["value"]=32.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCBw==", + ["value"]=68.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCCw==", + ["value"]=68.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBQ==", + ["value"]=32.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAg==", + ["value"]=69.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCw==", + ["value"]=32.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCBg==", + ["value"]=69.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCCg==", + ["value"]=69.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAg==", + ["value"]=33.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAQ==", + ["value"]=70.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCBQ==", + ["value"]=70.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAw==", + ["value"]=71.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAA==", + ["value"]=71.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCBA==", + ["value"]=71.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAg==", + ["value"]=72.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAg==", + ["value"]=34.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCBg==", + ["value"]=72.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAA==", + ["value"]=34.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCCw==", + ["value"]=72.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCAQ==", + ["value"]=73.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCBQ==", + ["value"]=73.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCw==", + ["value"]=34.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAw==", + ["value"]=74.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCBw==", + ["value"]=74.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCCw==", + ["value"]=74.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CAg==", + ["value"]=75.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBg==", + ["value"]=35.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CBg==", + ["value"]=75.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBA==", + ["value"]=35.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CCg==", + ["value"]=75.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CCw==", + ["value"]=35.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAA==", + ["value"]=76.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CBA==", + ["value"]=76.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAQ==", + ["value"]=36.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CAg==", + ["value"]=77.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBw==", + ["value"]=36.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CBg==", + ["value"]=77.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBQ==", + ["value"]=36.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CCg==", + ["value"]=77.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBA==", + ["value"]=36.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCAA==", + ["value"]=78.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCg==", + ["value"]=36.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCBA==", + ["value"]=78.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAg==", + ["value"]=37.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCAQ==", + ["value"]=79.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAA==", + ["value"]=37.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCBQ==", + ["value"]=79.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBg==", + ["value"]=37.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCAw==", + ["value"]=80.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBA==", + ["value"]=37.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCBw==", + ["value"]=80.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CCg==", + ["value"]=37.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCCw==", + ["value"]=80.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCAQ==", + ["value"]=81.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAQ==", + ["value"]=38.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCBA==", + ["value"]=81.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBw==", + ["value"]=38.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCAg==", + ["value"]=82.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBQ==", + ["value"]=38.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCBg==", + ["value"]=82.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCCw==", + ["value"]=38.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCCg==", + ["value"]=82.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCBw==", + ["value"]=83.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCCw==", + ["value"]=83.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCAQ==", + ["value"]=84.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCBA==", + ["value"]=84.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCCw==", + ["value"]=39.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CAg==", + ["value"]=85.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CBQ==", + ["value"]=85.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAQ==", + ["value"]=40.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CAw==", + ["value"]=86.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBw==", + ["value"]=40.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CBg==", + ["value"]=86.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBQ==", + ["value"]=40.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CCg==", + ["value"]=86.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCCw==", + ["value"]=40.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CBw==", + ["value"]=87.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAw==", + ["value"]=41.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CCw==", + ["value"]=87.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAQ==", + ["value"]=41.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCAA==", + ["value"]=88.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBw==", + ["value"]=41.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCBA==", + ["value"]=88.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBQ==", + ["value"]=41.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCAQ==", + ["value"]=89.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCCw==", + ["value"]=41.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCBA==", + ["value"]=89.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCAg==", + ["value"]=90.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAQ==", + ["value"]=42.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCBQ==", + ["value"]=90.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBg==", + ["value"]=42.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCAg==", + ["value"]=91.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBA==", + ["value"]=42.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCBQ==", + ["value"]=91.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCCg==", + ["value"]=42.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCAw==", + ["value"]=92.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAg==", + ["value"]=43.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCBg==", + ["value"]=92.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAA==", + ["value"]=43.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCAw==", + ["value"]=93.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBg==", + ["value"]=43.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCBg==", + ["value"]=93.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBA==", + ["value"]=43.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCAw==", + ["value"]=94.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAw==", + ["value"]=44.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCBg==", + ["value"]=94.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAQ==", + ["value"]=44.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCCg==", + ["value"]=94.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBw==", + ["value"]=44.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CBw==", + ["value"]=95.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBQ==", + ["value"]=44.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CCg==", + ["value"]=95.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCCg==", + ["value"]=44.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CBw==", + ["value"]=96.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAg==", + ["value"]=45.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CCg==", + ["value"]=96.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAA==", + ["value"]=45.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CBw==", + ["value"]=97.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBg==", + ["value"]=45.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCAw==", + ["value"]=98.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CCw==", + ["value"]=45.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCBg==", + ["value"]=98.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCAw==", + ["value"]=99.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAQ==", + ["value"]=46.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCBg==", + ["value"]=99.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBw==", + ["value"]=46.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBA==", + ["value"]=46.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CCg==", + ["value"]=46.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAQ==", + ["value"]=47.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBw==", + ["value"]=47.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBQ==", + ["value"]=47.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CCg==", + ["value"]=47.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAg==", + ["value"]=48.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAA==", + ["value"]=48.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBQ==", + ["value"]=48.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCCw==", + ["value"]=48.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAg==", + ["value"]=49.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAA==", + ["value"]=49.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBQ==", + ["value"]=49.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCCw==", + ["value"]=49.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAg==", + ["value"]=50.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAA==", + ["value"]=50.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBQ==", + ["value"]=50.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCCw==", + ["value"]=50.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAg==", + ["value"]=51.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAA==", + ["value"]=51.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBQ==", + ["value"]=51.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCCw==", + ["value"]=51.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAg==", + ["value"]=52.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBw==", + ["value"]=52.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBQ==", + ["value"]=52.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCCg==", + ["value"]=52.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAQ==", + ["value"]=53.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBw==", + ["value"]=53.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBA==", + ["value"]=53.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAw==", + ["value"]=54.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAQ==", + ["value"]=54.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBg==", + ["value"]=54.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCCw==", + ["value"]=54.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAw==", + ["value"]=55.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAA==", + ["value"]=55.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBQ==", + ["value"]=55.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CCg==", + ["value"]=55.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAg==", + ["value"]=56.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBw==", + ["value"]=56.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBA==", + ["value"]=56.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAA==", + ["value"]=57.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBQ==", + ["value"]=57.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CCg==", + ["value"]=57.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAg==", + ["value"]=58.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBw==", + ["value"]=58.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBA==", + ["value"]=58.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAw==", + ["value"]=59.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAA==", + ["value"]=59.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCBQ==", + ["value"]=59.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCCg==", + ["value"]=59.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAQ==", + ["value"]=60.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBg==", + ["value"]=60.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCCw==", + ["value"]=60.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAg==", + ["value"]=61.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBw==", + ["value"]=61.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBA==", + ["value"]=61.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAw==", + ["value"]=62.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBw==", + ["value"]=62.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBA==", + ["value"]=62.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAw==", + ["value"]=63.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAA==", + ["value"]=63.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCBQ==", + ["value"]=63.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCCg==", + ["value"]=63.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAQ==", + ["value"]=64.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCBQ==", + ["value"]=64.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCCg==", + ["value"]=64.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CAQ==", + ["value"]=65.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBg==", + ["value"]=65.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CCg==", + ["value"]=65.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CAQ==", + ["value"]=66.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBg==", + ["value"]=66.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CCg==", + ["value"]=66.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CAQ==", + ["value"]=67.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBg==", + ["value"]=67.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CCg==", + ["value"]=67.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCAQ==", + ["value"]=68.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCBQ==", + ["value"]=68.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCCg==", + ["value"]=68.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCAQ==", + ["value"]=69.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCBQ==", + ["value"]=69.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCCg==", + ["value"]=69.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAA==", + ["value"]=70.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCBQ==", + ["value"]=70.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAw==", + ["value"]=71.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAA==", + ["value"]=71.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCBA==", + ["value"]=71.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAg==", + ["value"]=72.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCBw==", + ["value"]=72.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCCw==", + ["value"]=72.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAQ==", + ["value"]=73.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCBg==", + ["value"]=73.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCCg==", + ["value"]=73.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCAA==", + ["value"]=74.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCBQ==", + ["value"]=74.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CAw==", + ["value"]=75.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CBw==", + ["value"]=75.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CCw==", + ["value"]=75.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CAg==", + ["value"]=76.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CBg==", + ["value"]=76.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CCg==", + ["value"]=76.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CAA==", + ["value"]=77.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CBA==", + ["value"]=77.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCAg==", + ["value"]=78.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCBw==", + ["value"]=78.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCCw==", + ["value"]=78.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCAQ==", + ["value"]=79.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCBQ==", + ["value"]=79.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCAw==", + ["value"]=80.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCBw==", + ["value"]=80.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCCw==", + ["value"]=80.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCAQ==", + ["value"]=81.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCBQ==", + ["value"]=81.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCAw==", + ["value"]=82.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCBg==", + ["value"]=82.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCCg==", + ["value"]=82.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCAA==", + ["value"]=83.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCBA==", + ["value"]=83.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCAg==", + ["value"]=84.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCBg==", + ["value"]=84.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CAw==", + ["value"]=85.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CBw==", + ["value"]=85.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CCw==", + ["value"]=85.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CAQ==", + ["value"]=86.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CBA==", + ["value"]=86.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CAg==", + ["value"]=87.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CBg==", + ["value"]=87.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCAw==", + ["value"]=88.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCBw==", + ["value"]=88.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCCg==", + ["value"]=88.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCAA==", + ["value"]=89.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCCw==", + ["value"]=89.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCAQ==", + ["value"]=90.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCBA==", + ["value"]=90.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCAg==", + ["value"]=91.1, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCBQ==", + ["value"]=91.6, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCAw==", + ["value"]=92.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCBg==", + ["value"]=92.5, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCAw==", + ["value"]=93.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [3999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCBw==", + ["value"]=93.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCCg==", + ["value"]=93.9, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCBw==", + ["value"]=94.4, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCCw==", + ["value"]=94.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CAA==", + ["value"]=95.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CCw==", + ["value"]=95.8, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CAA==", + ["value"]=96.3, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CBA==", + ["value"]=96.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CAQ==", + ["value"]=97.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CBA==", + ["value"]=97.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCAQ==", + ["value"]=98.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCBA==", + ["value"]=98.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCAQ==", + ["value"]=99.2, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCBA==", + ["value"]=99.7, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9YHWU=", + ["value"]=274.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFeHWU=", + ["value"]=292.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlaHWU=", + ["value"]=316.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlVHWU=", + ["value"]=319.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpYHWU=", + ["value"]=324.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtdHWU=", + ["value"]=331.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtaHWU=", + ["value"]=336.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxdHWU=", + ["value"]=341.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxfHWU=", + ["value"]=343.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxaHWU=", + ["value"]=346.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxUHWU=", + ["value"]=348.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1eHWU=", + ["value"]=352.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5dHWU=", + ["value"]=361.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5bHWU=", + ["value"]=367.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5VHWU=", + ["value"]=369.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9dHWU=", + ["value"]=371.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9fHWU=", + ["value"]=373.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9ZHWU=", + ["value"]=375.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9bHWU=", + ["value"]=377.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBcHWU=", + ["value"]=380.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBeHWU=", + ["value"]=382.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBaHWU=", + ["value"]=386.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBUHWU=", + ["value"]=388.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFbHWU=", + ["value"]=397.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghfHWU=", + ["value"]=403.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghZHWU=", + ["value"]=405.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghbHWU=", + ["value"]=407.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghVHWU=", + ["value"]=409.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgldHWU=", + ["value"]=411.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglfHWU=", + ["value"]=413.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglaHWU=", + ["value"]=416.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglUHWU=", + ["value"]=418.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpcHWU=", + ["value"]=420.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpeHWU=", + ["value"]=422.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpYHWU=", + ["value"]=424.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpbHWU=", + ["value"]=427.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpVHWU=", + ["value"]=429.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtdHWU=", + ["value"]=431.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtfHWU=", + ["value"]=433.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtaHWU=", + ["value"]=436.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtUHWU=", + ["value"]=438.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxcHWU=", + ["value"]=440.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxeHWU=", + ["value"]=442.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxZHWU=", + ["value"]=445.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxbHWU=", + ["value"]=447.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxVHWU=", + ["value"]=449.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1eHWU=", + ["value"]=452.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1YHWU=", + ["value"]=454.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1aHWU=", + ["value"]=456.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1VHWU=", + ["value"]=459.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5dHWU=", + ["value"]=461.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5YHWU=", + ["value"]=464.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5aHWU=", + ["value"]=466.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5UHWU=", + ["value"]=468.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9dHWU=", + ["value"]=471.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9fHWU=", + ["value"]=473.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9aHWU=", + ["value"]=476.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9UHWU=", + ["value"]=478.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBdHWU=", + ["value"]=481.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBfHWU=", + ["value"]=483.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBaHWU=", + ["value"]=486.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBUHWU=", + ["value"]=488.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFdHWU=", + ["value"]=491.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFfHWU=", + ["value"]=493.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFaHWU=", + ["value"]=496.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFVHWU=", + ["value"]=499.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhdHWU=", + ["value"]=501.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhYHWU=", + ["value"]=504.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhaHWU=", + ["value"]=506.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhVHWU=", + ["value"]=509.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwleHWU=", + ["value"]=512.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlYHWU=", + ["value"]=514.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlbHWU=", + ["value"]=517.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpcHWU=", + ["value"]=520.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpeHWU=", + ["value"]=522.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpZHWU=", + ["value"]=525.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpUHWU=", + ["value"]=528.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtdHWU=", + ["value"]=531.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtfHWU=", + ["value"]=533.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtaHWU=", + ["value"]=536.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtVHWU=", + ["value"]=539.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxeHWU=", + ["value"]=542.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxZHWU=", + ["value"]=545.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxbHWU=", + ["value"]=547.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1cHWU=", + ["value"]=550.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1fHWU=", + ["value"]=553.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1aHWU=", + ["value"]=556.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1VHWU=", + ["value"]=559.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5eHWU=", + ["value"]=562.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5ZHWU=", + ["value"]=565.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5UHWU=", + ["value"]=568.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9dHWU=", + ["value"]=571.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9YHWU=", + ["value"]=574.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9bHWU=", + ["value"]=577.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBcHWU=", + ["value"]=580.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBfHWU=", + ["value"]=583.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBaHWU=", + ["value"]=586.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBVHWU=", + ["value"]=589.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFeHWU=", + ["value"]=592.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFZHWU=", + ["value"]=595.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFUHWU=", + ["value"]=598.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhdHWU=", + ["value"]=601.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhYHWU=", + ["value"]=604.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhbHWU=", + ["value"]=607.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAldHWU=", + ["value"]=611.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlYHWU=", + ["value"]=614.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlbHWU=", + ["value"]=617.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApcHWU=", + ["value"]=620.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApfHWU=", + ["value"]=623.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApbHWU=", + ["value"]=627.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtcHWU=", + ["value"]=630.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtfHWU=", + ["value"]=633.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtbHWU=", + ["value"]=637.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxcHWU=", + ["value"]=640.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxfHWU=", + ["value"]=643.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxbHWU=", + ["value"]=647.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1cHWU=", + ["value"]=650.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1fHWU=", + ["value"]=653.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1bHWU=", + ["value"]=657.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5cHWU=", + ["value"]=660.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5YHWU=", + ["value"]=664.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5bHWU=", + ["value"]=667.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9cHWU=", + ["value"]=670.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9YHWU=", + ["value"]=674.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9bHWU=", + ["value"]=677.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABdHWU=", + ["value"]=681.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABZHWU=", + ["value"]=685.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABUHWU=", + ["value"]=688.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFeHWU=", + ["value"]=692.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFZHWU=", + ["value"]=695.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFVHWU=", + ["value"]=699.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhfHWU=", + ["value"]=703.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhaHWU=", + ["value"]=706.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlcHWU=", + ["value"]=710.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlYHWU=", + ["value"]=714.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhUHWU=", + ["value"]=308.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlbHWU=", + ["value"]=717.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpdHWU=", + ["value"]=721.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpZHWU=", + ["value"]=725.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpVHWU=", + ["value"]=729.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQteHWU=", + ["value"]=732.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlaHWU=", + ["value"]=316.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtaHWU=", + ["value"]=736.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxcHWU=", + ["value"]=740.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlVHWU=", + ["value"]=319.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxYHWU=", + ["value"]=744.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxUHWU=", + ["value"]=748.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1eHWU=", + ["value"]=752.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpYHWU=", + ["value"]=324.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1aHWU=", + ["value"]=756.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5cHWU=", + ["value"]=760.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5YHWU=", + ["value"]=764.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5UHWU=", + ["value"]=768.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9eHWU=", + ["value"]=772.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9aHWU=", + ["value"]=776.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBcHWU=", + ["value"]=780.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBYHWU=", + ["value"]=784.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBUHWU=", + ["value"]=788.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFeHWU=", + ["value"]=792.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFaHWU=", + ["value"]=796.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghcHWU=", + ["value"]=800.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghYHWU=", + ["value"]=804.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghUHWU=", + ["value"]=808.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglfHWU=", + ["value"]=813.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxVHWU=", + ["value"]=349.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglbHWU=", + ["value"]=817.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpdHWU=", + ["value"]=821.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1eHWU=", + ["value"]=352.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpZHWU=", + ["value"]=825.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtcHWU=", + ["value"]=830.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtYHWU=", + ["value"]=834.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1UHWU=", + ["value"]=358.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtUHWU=", + ["value"]=838.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxfHWU=", + ["value"]=843.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5dHWU=", + ["value"]=361.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxbHWU=", + ["value"]=847.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1eHWU=", + ["value"]=852.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1aHWU=", + ["value"]=856.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5bHWU=", + ["value"]=367.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5dHWU=", + ["value"]=861.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5VHWU=", + ["value"]=369.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5ZHWU=", + ["value"]=865.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9cHWU=", + ["value"]=370.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9cHWU=", + ["value"]=870.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9YHWU=", + ["value"]=874.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9VHWU=", + ["value"]=879.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9aHWU=", + ["value"]=376.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBfHWU=", + ["value"]=883.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBUHWU=", + ["value"]=888.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBcHWU=", + ["value"]=380.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFeHWU=", + ["value"]=892.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBeHWU=", + ["value"]=382.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFbHWU=", + ["value"]=897.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwheHWU=", + ["value"]=902.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBZHWU=", + ["value"]=385.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhaHWU=", + ["value"]=906.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBbHWU=", + ["value"]=387.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwldHWU=", + ["value"]=911.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBVHWU=", + ["value"]=389.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlaHWU=", + ["value"]=916.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFdHWU=", + ["value"]=391.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpdHWU=", + ["value"]=921.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpZHWU=", + ["value"]=925.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtcHWU=", + ["value"]=930.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFbHWU=", + ["value"]=397.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtZHWU=", + ["value"]=935.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxcHWU=", + ["value"]=940.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxZHWU=", + ["value"]=945.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghfHWU=", + ["value"]=403.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1cHWU=", + ["value"]=950.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghZHWU=", + ["value"]=405.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1ZHWU=", + ["value"]=955.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghbHWU=", + ["value"]=407.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5cHWU=", + ["value"]=960.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghVHWU=", + ["value"]=409.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5ZHWU=", + ["value"]=965.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgldHWU=", + ["value"]=411.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9cHWU=", + ["value"]=970.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglfHWU=", + ["value"]=413.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9ZHWU=", + ["value"]=975.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglZHWU=", + ["value"]=415.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBcHWU=", + ["value"]=980.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBZHWU=", + ["value"]=985.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpcHWU=", + ["value"]=420.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFcHWU=", + ["value"]=990.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpeHWU=", + ["value"]=422.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFZHWU=", + ["value"]=995.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpYHWU=", + ["value"]=424.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpaHWU=", + ["value"]=426.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtcHWU=", + ["value"]=430.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgteHWU=", + ["value"]=432.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtYHWU=", + ["value"]=434.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtbHWU=", + ["value"]=437.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtVHWU=", + ["value"]=439.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxdHWU=", + ["value"]=441.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxfHWU=", + ["value"]=443.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxZHWU=", + ["value"]=445.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxUHWU=", + ["value"]=448.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1cHWU=", + ["value"]=450.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1eHWU=", + ["value"]=452.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1YHWU=", + ["value"]=454.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1bHWU=", + ["value"]=457.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1VHWU=", + ["value"]=459.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5dHWU=", + ["value"]=461.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5YHWU=", + ["value"]=464.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5aHWU=", + ["value"]=466.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5UHWU=", + ["value"]=468.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9dHWU=", + ["value"]=471.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9fHWU=", + ["value"]=473.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9ZHWU=", + ["value"]=475.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9UHWU=", + ["value"]=478.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBcHWU=", + ["value"]=480.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBfHWU=", + ["value"]=483.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBZHWU=", + ["value"]=485.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBbHWU=", + ["value"]=487.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFcHWU=", + ["value"]=490.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFeHWU=", + ["value"]=492.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFZHWU=", + ["value"]=495.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFbHWU=", + ["value"]=497.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhcHWU=", + ["value"]=500.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwheHWU=", + ["value"]=502.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhZHWU=", + ["value"]=505.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhbHWU=", + ["value"]=507.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlcHWU=", + ["value"]=510.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwleHWU=", + ["value"]=512.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlZHWU=", + ["value"]=515.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlbHWU=", + ["value"]=517.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpcHWU=", + ["value"]=520.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpfHWU=", + ["value"]=523.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpZHWU=", + ["value"]=525.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpUHWU=", + ["value"]=528.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtcHWU=", + ["value"]=530.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtfHWU=", + ["value"]=533.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtaHWU=", + ["value"]=536.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtUHWU=", + ["value"]=538.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxdHWU=", + ["value"]=541.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxYHWU=", + ["value"]=544.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxbHWU=", + ["value"]=547.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxVHWU=", + ["value"]=549.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1eHWU=", + ["value"]=552.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1ZHWU=", + ["value"]=555.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1UHWU=", + ["value"]=558.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5cHWU=", + ["value"]=560.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5fHWU=", + ["value"]=563.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5aHWU=", + ["value"]=566.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5VHWU=", + ["value"]=569.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9eHWU=", + ["value"]=572.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9ZHWU=", + ["value"]=575.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9bHWU=", + ["value"]=577.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBcHWU=", + ["value"]=580.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBfHWU=", + ["value"]=583.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBaHWU=", + ["value"]=586.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBVHWU=", + ["value"]=589.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFeHWU=", + ["value"]=592.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFZHWU=", + ["value"]=595.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFUHWU=", + ["value"]=598.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhdHWU=", + ["value"]=601.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhYHWU=", + ["value"]=604.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhbHWU=", + ["value"]=607.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlcHWU=", + ["value"]=610.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlfHWU=", + ["value"]=613.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlaHWU=", + ["value"]=616.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlVHWU=", + ["value"]=619.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApeHWU=", + ["value"]=622.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApZHWU=", + ["value"]=625.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApVHWU=", + ["value"]=629.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAteHWU=", + ["value"]=632.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtZHWU=", + ["value"]=635.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtUHWU=", + ["value"]=638.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxdHWU=", + ["value"]=641.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxYHWU=", + ["value"]=644.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxUHWU=", + ["value"]=648.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1dHWU=", + ["value"]=651.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1YHWU=", + ["value"]=654.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1bHWU=", + ["value"]=657.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5dHWU=", + ["value"]=661.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5YHWU=", + ["value"]=664.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5bHWU=", + ["value"]=667.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9dHWU=", + ["value"]=671.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9YHWU=", + ["value"]=674.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9bHWU=", + ["value"]=677.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABdHWU=", + ["value"]=681.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABYHWU=", + ["value"]=684.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABUHWU=", + ["value"]=688.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFdHWU=", + ["value"]=691.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFZHWU=", + ["value"]=695.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFUHWU=", + ["value"]=698.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQheHWU=", + ["value"]=702.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhZHWU=", + ["value"]=705.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhVHWU=", + ["value"]=709.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQleHWU=", + ["value"]=712.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlaHWU=", + ["value"]=716.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlVHWU=", + ["value"]=719.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpfHWU=", + ["value"]=723.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpaHWU=", + ["value"]=726.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtcHWU=", + ["value"]=730.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtYHWU=", + ["value"]=734.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtbHWU=", + ["value"]=737.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxdHWU=", + ["value"]=741.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxZHWU=", + ["value"]=745.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxVHWU=", + ["value"]=749.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1eHWU=", + ["value"]=752.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1aHWU=", + ["value"]=756.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5cHWU=", + ["value"]=760.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5YHWU=", + ["value"]=764.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5bHWU=", + ["value"]=767.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9dHWU=", + ["value"]=771.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9ZHWU=", + ["value"]=775.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9VHWU=", + ["value"]=779.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBfHWU=", + ["value"]=783.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBbHWU=", + ["value"]=787.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFdHWU=", + ["value"]=791.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFZHWU=", + ["value"]=795.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFVHWU=", + ["value"]=799.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghfHWU=", + ["value"]=803.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghbHWU=", + ["value"]=807.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgldHWU=", + ["value"]=811.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglZHWU=", + ["value"]=815.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglVHWU=", + ["value"]=819.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpfHWU=", + ["value"]=823.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpbHWU=", + ["value"]=827.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtdHWU=", + ["value"]=831.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtZHWU=", + ["value"]=835.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxcHWU=", + ["value"]=840.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxYHWU=", + ["value"]=844.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxUHWU=", + ["value"]=848.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1eHWU=", + ["value"]=852.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1bHWU=", + ["value"]=857.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5dHWU=", + ["value"]=861.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5ZHWU=", + ["value"]=865.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5VHWU=", + ["value"]=869.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9YHWU=", + ["value"]=874.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9UHWU=", + ["value"]=878.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBfHWU=", + ["value"]=883.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBbHWU=", + ["value"]=887.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFdHWU=", + ["value"]=891.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFaHWU=", + ["value"]=896.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhcHWU=", + ["value"]=900.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhZHWU=", + ["value"]=905.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhVHWU=", + ["value"]=909.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlYHWU=", + ["value"]=914.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlVHWU=", + ["value"]=919.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpfHWU=", + ["value"]=923.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpUHWU=", + ["value"]=928.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwteHWU=", + ["value"]=932.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtbHWU=", + ["value"]=937.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxeHWU=", + ["value"]=942.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxaHWU=", + ["value"]=946.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1dHWU=", + ["value"]=951.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1aHWU=", + ["value"]=956.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5dHWU=", + ["value"]=961.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5aHWU=", + ["value"]=966.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9cHWU=", + ["value"]=970.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9ZHWU=", + ["value"]=975.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBcHWU=", + ["value"]=980.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBZHWU=", + ["value"]=985.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFcHWU=", + ["value"]=990.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFZHWU=", + ["value"]=995.0, + ["unit_for_nothing"]="VQ==", + ["unit"]=3 + } + }, + [4474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBQ==", + ["value"]=2.86, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCg==", + ["value"]=2.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBA==", + ["value"]=2.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBA==", + ["value"]=3.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCg==", + ["value"]=3.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAQ==", + ["value"]=3.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBQ==", + ["value"]=3.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBw==", + ["value"]=3.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCw==", + ["value"]=3.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAg==", + ["value"]=3.41, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBg==", + ["value"]=3.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBA==", + ["value"]=3.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAQ==", + ["value"]=3.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBw==", + ["value"]=3.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBQ==", + ["value"]=3.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCw==", + ["value"]=3.58, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBg==", + ["value"]=3.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBA==", + ["value"]=3.67, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaCg==", + ["value"]=3.69, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAg==", + ["value"]=3.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAA==", + ["value"]=3.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBg==", + ["value"]=3.75, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBA==", + ["value"]=3.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbCg==", + ["value"]=3.79, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAg==", + ["value"]=3.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAA==", + ["value"]=3.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBg==", + ["value"]=3.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBA==", + ["value"]=3.87, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUCg==", + ["value"]=3.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAg==", + ["value"]=3.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAA==", + ["value"]=3.93, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBg==", + ["value"]=3.95, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBA==", + ["value"]=3.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVCg==", + ["value"]=3.99, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAg==", + ["value"]=4.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAA==", + ["value"]=4.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBg==", + ["value"]=4.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBA==", + ["value"]=4.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcCg==", + ["value"]=4.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAg==", + ["value"]=4.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBw==", + ["value"]=4.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBQ==", + ["value"]=4.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdCw==", + ["value"]=4.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZe", + ["value"]=4.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAQ==", + ["value"]=4.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBg==", + ["value"]=4.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBA==", + ["value"]=4.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeCg==", + ["value"]=4.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAg==", + ["value"]=4.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAA==", + ["value"]=4.33, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBQ==", + ["value"]=4.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfCw==", + ["value"]=4.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAA==", + ["value"]=4.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBg==", + ["value"]=4.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYCg==", + ["value"]=4.49, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAQ==", + ["value"]=4.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBw==", + ["value"]=4.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBA==", + ["value"]=4.57, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZCg==", + ["value"]=4.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAg==", + ["value"]=4.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBw==", + ["value"]=4.64, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBQ==", + ["value"]=4.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaCg==", + ["value"]=4.69, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAg==", + ["value"]=4.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAA==", + ["value"]=4.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBQ==", + ["value"]=4.76, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbCw==", + ["value"]=4.78, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAg==", + ["value"]=4.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAA==", + ["value"]=4.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBQ==", + ["value"]=4.86, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUCw==", + ["value"]=4.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAg==", + ["value"]=4.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBw==", + ["value"]=4.94, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBQ==", + ["value"]=4.96, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVCg==", + ["value"]=4.99, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAg==", + ["value"]=5.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBw==", + ["value"]=5.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBA==", + ["value"]=5.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcCg==", + ["value"]=5.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAQ==", + ["value"]=5.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBg==", + ["value"]=5.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBA==", + ["value"]=5.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZe", + ["value"]=5.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAA==", + ["value"]=5.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBg==", + ["value"]=5.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeCw==", + ["value"]=5.28, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAg==", + ["value"]=5.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBw==", + ["value"]=5.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBQ==", + ["value"]=5.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfCg==", + ["value"]=5.39, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYAQ==", + ["value"]=5.42, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBg==", + ["value"]=5.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYCw==", + ["value"]=5.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAg==", + ["value"]=5.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAA==", + ["value"]=5.53, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBQ==", + ["value"]=5.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZCg==", + ["value"]=5.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaAQ==", + ["value"]=5.62, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBg==", + ["value"]=5.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaCw==", + ["value"]=5.68, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbAg==", + ["value"]=5.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBw==", + ["value"]=5.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBA==", + ["value"]=5.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZU", + ["value"]=5.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUAA==", + ["value"]=5.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBQ==", + ["value"]=5.86, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUCg==", + ["value"]=5.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVAQ==", + ["value"]=5.92, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBg==", + ["value"]=5.95, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVCw==", + ["value"]=5.98, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcAg==", + ["value"]=6.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBg==", + ["value"]=6.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcCw==", + ["value"]=6.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdAg==", + ["value"]=6.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBw==", + ["value"]=6.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBA==", + ["value"]=6.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZe", + ["value"]=6.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBw==", + ["value"]=6.24, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBA==", + ["value"]=6.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZf", + ["value"]=6.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfAA==", + ["value"]=6.33, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfBA==", + ["value"]=6.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZY", + ["value"]=6.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYAA==", + ["value"]=6.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYBA==", + ["value"]=6.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZ", + ["value"]=6.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBw==", + ["value"]=6.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBA==", + ["value"]=6.57, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZa", + ["value"]=6.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBw==", + ["value"]=6.64, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBA==", + ["value"]=6.67, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbAg==", + ["value"]=6.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBw==", + ["value"]=6.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbCw==", + ["value"]=6.78, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUAg==", + ["value"]=6.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBg==", + ["value"]=6.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUCw==", + ["value"]=6.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVAQ==", + ["value"]=6.92, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBQ==", + ["value"]=6.96, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVCg==", + ["value"]=6.99, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcAA==", + ["value"]=7.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBA==", + ["value"]=7.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZd", + ["value"]=7.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBw==", + ["value"]=7.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdCw==", + ["value"]=7.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeAg==", + ["value"]=7.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeBg==", + ["value"]=7.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeCg==", + ["value"]=7.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfAA==", + ["value"]=7.33, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfBA==", + ["value"]=7.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCg==", + ["value"]=2.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZY", + ["value"]=7.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYBw==", + ["value"]=7.44, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYCw==", + ["value"]=7.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBw==", + ["value"]=2.94, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZAQ==", + ["value"]=7.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZBQ==", + ["value"]=7.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBA==", + ["value"]=2.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZa", + ["value"]=7.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaBw==", + ["value"]=7.64, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaCw==", + ["value"]=7.68, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbAQ==", + ["value"]=7.72, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbBQ==", + ["value"]=7.76, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZU", + ["value"]=7.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUBw==", + ["value"]=7.84, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUCw==", + ["value"]=7.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVAQ==", + ["value"]=7.92, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVBQ==", + ["value"]=7.96, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZc", + ["value"]=8.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcBg==", + ["value"]=8.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcCg==", + ["value"]=8.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBA==", + ["value"]=3.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdAA==", + ["value"]=8.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdBA==", + ["value"]=8.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeAQ==", + ["value"]=8.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeBQ==", + ["value"]=8.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZf", + ["value"]=8.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfBw==", + ["value"]=8.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBQ==", + ["value"]=3.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfCg==", + ["value"]=8.39, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeCw==", + ["value"]=3.28, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYAA==", + ["value"]=8.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZf", + ["value"]=3.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYCw==", + ["value"]=8.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZAQ==", + ["value"]=8.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZBQ==", + ["value"]=8.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBg==", + ["value"]=3.35, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaAg==", + ["value"]=8.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaBg==", + ["value"]=8.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfCw==", + ["value"]=3.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZb", + ["value"]=8.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZY", + ["value"]=3.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbBw==", + ["value"]=8.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAg==", + ["value"]=3.41, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbCg==", + ["value"]=8.79, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUBw==", + ["value"]=8.84, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBg==", + ["value"]=3.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUCw==", + ["value"]=8.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVAA==", + ["value"]=8.93, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVBA==", + ["value"]=8.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcAQ==", + ["value"]=9.02, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAQ==", + ["value"]=3.52, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcBA==", + ["value"]=9.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdAQ==", + ["value"]=9.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdBQ==", + ["value"]=9.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeAg==", + ["value"]=9.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeBQ==", + ["value"]=9.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfAg==", + ["value"]=9.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAQ==", + ["value"]=3.62, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfBQ==", + ["value"]=9.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBw==", + ["value"]=3.64, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZY", + ["value"]=9.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYBg==", + ["value"]=9.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZ", + ["value"]=9.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZb", + ["value"]=3.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZBg==", + ["value"]=9.55, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAQ==", + ["value"]=3.72, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZa", + ["value"]=9.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAA==", + ["value"]=3.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaBg==", + ["value"]=9.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBg==", + ["value"]=3.75, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZb", + ["value"]=9.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBA==", + ["value"]=3.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbBg==", + ["value"]=9.75, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbCg==", + ["value"]=3.79, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZU", + ["value"]=9.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAg==", + ["value"]=3.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUBg==", + ["value"]=9.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAA==", + ["value"]=3.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVAg==", + ["value"]=9.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBg==", + ["value"]=3.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVBQ==", + ["value"]=9.96, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBA==", + ["value"]=3.87, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUCg==", + ["value"]=3.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAg==", + ["value"]=3.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVCw==", + ["value"]=3.98, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAQ==", + ["value"]=4.02, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBw==", + ["value"]=4.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBQ==", + ["value"]=4.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcCw==", + ["value"]=4.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAg==", + ["value"]=4.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAA==", + ["value"]=4.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBg==", + ["value"]=4.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBA==", + ["value"]=4.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdCg==", + ["value"]=4.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAg==", + ["value"]=4.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAA==", + ["value"]=4.23, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBg==", + ["value"]=4.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBA==", + ["value"]=4.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeCg==", + ["value"]=4.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAQ==", + ["value"]=4.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBw==", + ["value"]=4.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBQ==", + ["value"]=4.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfCw==", + ["value"]=4.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAQ==", + ["value"]=4.42, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBg==", + ["value"]=4.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYCg==", + ["value"]=4.49, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAg==", + ["value"]=4.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBw==", + ["value"]=4.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBQ==", + ["value"]=4.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZCw==", + ["value"]=4.58, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZa", + ["value"]=4.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAA==", + ["value"]=4.63, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBg==", + ["value"]=4.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBA==", + ["value"]=4.67, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZb", + ["value"]=4.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbAQ==", + ["value"]=4.72, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBw==", + ["value"]=4.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBA==", + ["value"]=4.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbCg==", + ["value"]=4.79, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAQ==", + ["value"]=4.82, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBw==", + ["value"]=4.84, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBQ==", + ["value"]=4.86, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUCg==", + ["value"]=4.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAg==", + ["value"]=4.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBw==", + ["value"]=4.94, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBQ==", + ["value"]=4.96, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVCg==", + ["value"]=4.99, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAg==", + ["value"]=5.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBw==", + ["value"]=5.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBQ==", + ["value"]=5.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcCg==", + ["value"]=5.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdAg==", + ["value"]=5.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBw==", + ["value"]=5.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBQ==", + ["value"]=5.16, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdCg==", + ["value"]=5.19, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeAQ==", + ["value"]=5.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBw==", + ["value"]=5.24, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBA==", + ["value"]=5.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeCg==", + ["value"]=5.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfAQ==", + ["value"]=5.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBg==", + ["value"]=5.35, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBA==", + ["value"]=5.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZY", + ["value"]=5.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYAA==", + ["value"]=5.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBQ==", + ["value"]=5.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYCw==", + ["value"]=5.48, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZAg==", + ["value"]=5.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBw==", + ["value"]=5.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBA==", + ["value"]=5.57, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZCg==", + ["value"]=5.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaAQ==", + ["value"]=5.62, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBg==", + ["value"]=5.65, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaCw==", + ["value"]=5.68, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbAg==", + ["value"]=5.71, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBw==", + ["value"]=5.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBQ==", + ["value"]=5.76, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbCg==", + ["value"]=5.79, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUAQ==", + ["value"]=5.82, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBg==", + ["value"]=5.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUCw==", + ["value"]=5.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVAg==", + ["value"]=5.91, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBw==", + ["value"]=5.94, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBA==", + ["value"]=5.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZc", + ["value"]=6.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcAA==", + ["value"]=6.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcBQ==", + ["value"]=6.06, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcCg==", + ["value"]=6.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdAQ==", + ["value"]=6.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBg==", + ["value"]=6.15, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdCw==", + ["value"]=6.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeAg==", + ["value"]=6.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBw==", + ["value"]=6.24, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBA==", + ["value"]=6.27, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfAg==", + ["value"]=6.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBw==", + ["value"]=6.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBA==", + ["value"]=6.37, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZY", + ["value"]=6.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYAA==", + ["value"]=6.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBQ==", + ["value"]=6.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZ", + ["value"]=6.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZAA==", + ["value"]=6.53, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZBQ==", + ["value"]=6.56, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZa", + ["value"]=6.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaAA==", + ["value"]=6.63, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaBQ==", + ["value"]=6.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaCg==", + ["value"]=6.69, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbAA==", + ["value"]=6.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBQ==", + ["value"]=6.76, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZU", + ["value"]=6.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUAA==", + ["value"]=6.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUBQ==", + ["value"]=6.86, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZV", + ["value"]=6.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVAA==", + ["value"]=6.93, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVBA==", + ["value"]=6.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZc", + ["value"]=7.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcBw==", + ["value"]=7.04, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcBA==", + ["value"]=7.07, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdAg==", + ["value"]=7.11, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdBw==", + ["value"]=7.14, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdCw==", + ["value"]=7.18, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeAQ==", + ["value"]=7.22, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeBg==", + ["value"]=7.25, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeCg==", + ["value"]=7.29, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfAQ==", + ["value"]=7.32, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfBQ==", + ["value"]=7.36, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZY", + ["value"]=7.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYAA==", + ["value"]=7.43, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYBA==", + ["value"]=7.47, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZAg==", + ["value"]=7.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZBg==", + ["value"]=7.55, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZCw==", + ["value"]=7.58, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaAQ==", + ["value"]=7.62, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaBQ==", + ["value"]=7.66, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZb", + ["value"]=7.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbBw==", + ["value"]=7.74, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbCw==", + ["value"]=7.78, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUAg==", + ["value"]=7.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUBg==", + ["value"]=7.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUCg==", + ["value"]=7.89, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVAA==", + ["value"]=7.93, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVBA==", + ["value"]=7.97, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcAg==", + ["value"]=8.01, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcBg==", + ["value"]=8.05, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcCg==", + ["value"]=8.09, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdAA==", + ["value"]=8.13, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdBA==", + ["value"]=8.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeAg==", + ["value"]=8.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeBQ==", + ["value"]=8.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZf", + ["value"]=8.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfBw==", + ["value"]=8.34, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfCw==", + ["value"]=8.38, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYAQ==", + ["value"]=8.42, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYBQ==", + ["value"]=8.46, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZAg==", + ["value"]=8.51, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZBg==", + ["value"]=8.55, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZCg==", + ["value"]=8.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaBw==", + ["value"]=8.64, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaCw==", + ["value"]=8.68, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbAQ==", + ["value"]=8.72, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbBA==", + ["value"]=8.77, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUAg==", + ["value"]=8.81, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUBg==", + ["value"]=8.85, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZV", + ["value"]=8.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVBw==", + ["value"]=8.94, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVCg==", + ["value"]=8.99, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcAA==", + ["value"]=9.03, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcCw==", + ["value"]=9.08, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdAQ==", + ["value"]=9.12, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdBA==", + ["value"]=9.17, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeAg==", + ["value"]=9.21, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeBQ==", + ["value"]=9.26, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCg==", + ["value"]=24.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfAg==", + ["value"]=9.31, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfBg==", + ["value"]=9.35, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZY", + ["value"]=9.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYBg==", + ["value"]=9.45, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYCg==", + ["value"]=9.49, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZBw==", + ["value"]=9.54, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZCg==", + ["value"]=9.59, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaBw==", + ["value"]=9.64, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaCg==", + ["value"]=9.69, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbAA==", + ["value"]=9.73, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbCw==", + ["value"]=9.78, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUAA==", + ["value"]=9.83, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUCw==", + ["value"]=9.88, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVAA==", + ["value"]=9.93, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVCw==", + ["value"]=9.98, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCw==", + ["value"]=28.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBw==", + ["value"]=29.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBA==", + ["value"]=29.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAA==", + ["value"]=30.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBQ==", + ["value"]=30.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAg==", + ["value"]=31.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBw==", + ["value"]=31.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBQ==", + ["value"]=31.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAQ==", + ["value"]=32.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBQ==", + ["value"]=32.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAg==", + ["value"]=33.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAA==", + ["value"]=33.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCCw==", + ["value"]=33.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAg==", + ["value"]=34.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAA==", + ["value"]=34.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBg==", + ["value"]=34.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBA==", + ["value"]=34.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAQ==", + ["value"]=35.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBw==", + ["value"]=35.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBQ==", + ["value"]=35.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CCw==", + ["value"]=35.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAg==", + ["value"]=36.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAA==", + ["value"]=36.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBg==", + ["value"]=36.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBA==", + ["value"]=36.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CCg==", + ["value"]=36.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAg==", + ["value"]=37.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [4999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAA==", + ["value"]=37.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBg==", + ["value"]=37.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBA==", + ["value"]=37.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CCg==", + ["value"]=37.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAg==", + ["value"]=38.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAA==", + ["value"]=38.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBg==", + ["value"]=38.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBA==", + ["value"]=38.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCCg==", + ["value"]=38.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAg==", + ["value"]=39.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAA==", + ["value"]=39.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBg==", + ["value"]=39.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBA==", + ["value"]=39.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCCg==", + ["value"]=39.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAg==", + ["value"]=40.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAA==", + ["value"]=40.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBg==", + ["value"]=40.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBA==", + ["value"]=40.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCCg==", + ["value"]=40.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAQ==", + ["value"]=41.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBw==", + ["value"]=41.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBQ==", + ["value"]=41.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCCw==", + ["value"]=41.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAQ==", + ["value"]=42.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBg==", + ["value"]=42.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBA==", + ["value"]=42.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCCg==", + ["value"]=42.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAg==", + ["value"]=43.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBw==", + ["value"]=43.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBQ==", + ["value"]=43.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCCw==", + ["value"]=43.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAw==", + ["value"]=44.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAA==", + ["value"]=44.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBg==", + ["value"]=44.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBA==", + ["value"]=44.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAw==", + ["value"]=45.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAQ==", + ["value"]=45.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBw==", + ["value"]=45.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBA==", + ["value"]=45.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CCg==", + ["value"]=45.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAQ==", + ["value"]=46.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBw==", + ["value"]=46.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBQ==", + ["value"]=46.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CCg==", + ["value"]=46.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAg==", + ["value"]=47.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBw==", + ["value"]=47.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBQ==", + ["value"]=47.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CCg==", + ["value"]=47.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAg==", + ["value"]=48.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBw==", + ["value"]=48.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBQ==", + ["value"]=48.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCCg==", + ["value"]=48.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAg==", + ["value"]=49.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBw==", + ["value"]=49.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBQ==", + ["value"]=49.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCCg==", + ["value"]=49.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAQ==", + ["value"]=50.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBw==", + ["value"]=50.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBA==", + ["value"]=50.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCCg==", + ["value"]=50.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAQ==", + ["value"]=51.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBg==", + ["value"]=51.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBA==", + ["value"]=51.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAw==", + ["value"]=52.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAA==", + ["value"]=52.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBQ==", + ["value"]=52.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCCw==", + ["value"]=52.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAg==", + ["value"]=53.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBw==", + ["value"]=53.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBA==", + ["value"]=53.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCCg==", + ["value"]=53.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAQ==", + ["value"]=54.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBg==", + ["value"]=54.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCCw==", + ["value"]=54.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAg==", + ["value"]=55.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBw==", + ["value"]=55.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBQ==", + ["value"]=55.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CCg==", + ["value"]=55.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAQ==", + ["value"]=56.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBg==", + ["value"]=56.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CCw==", + ["value"]=56.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAg==", + ["value"]=57.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CBw==", + ["value"]=57.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CBA==", + ["value"]=57.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAw==", + ["value"]=58.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAA==", + ["value"]=58.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCBQ==", + ["value"]=58.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCCg==", + ["value"]=58.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAQ==", + ["value"]=59.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBg==", + ["value"]=59.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCCw==", + ["value"]=59.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAQ==", + ["value"]=60.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBg==", + ["value"]=60.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCCw==", + ["value"]=60.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAg==", + ["value"]=61.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBw==", + ["value"]=61.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBA==", + ["value"]=61.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAg==", + ["value"]=62.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCBw==", + ["value"]=62.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCBA==", + ["value"]=62.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAw==", + ["value"]=63.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCBw==", + ["value"]=63.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCBA==", + ["value"]=63.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAw==", + ["value"]=64.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCBw==", + ["value"]=64.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCBA==", + ["value"]=64.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAw==", + ["value"]=65.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CBw==", + ["value"]=65.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CBA==", + ["value"]=65.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAg==", + ["value"]=66.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CBw==", + ["value"]=66.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CCw==", + ["value"]=66.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAg==", + ["value"]=67.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBg==", + ["value"]=67.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CCw==", + ["value"]=67.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAQ==", + ["value"]=68.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCBg==", + ["value"]=68.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCCg==", + ["value"]=68.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAQ==", + ["value"]=69.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCg==", + ["value"]=24.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCBQ==", + ["value"]=69.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAw==", + ["value"]=70.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAA==", + ["value"]=70.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCBA==", + ["value"]=70.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAg==", + ["value"]=71.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCBw==", + ["value"]=71.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCCw==", + ["value"]=71.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAQ==", + ["value"]=72.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCBg==", + ["value"]=72.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCCg==", + ["value"]=72.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCAA==", + ["value"]=73.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCBA==", + ["value"]=73.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAg==", + ["value"]=74.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCBg==", + ["value"]=74.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCCw==", + ["value"]=74.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CAQ==", + ["value"]=75.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CBQ==", + ["value"]=75.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAw==", + ["value"]=76.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CBw==", + ["value"]=76.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CCw==", + ["value"]=76.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CAQ==", + ["value"]=77.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CBQ==", + ["value"]=77.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCAw==", + ["value"]=78.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCBw==", + ["value"]=78.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCCw==", + ["value"]=78.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCAQ==", + ["value"]=79.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCBA==", + ["value"]=79.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCAg==", + ["value"]=80.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCBg==", + ["value"]=80.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCCg==", + ["value"]=80.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCAA==", + ["value"]=81.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCCw==", + ["value"]=81.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCAQ==", + ["value"]=82.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCBQ==", + ["value"]=82.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCAw==", + ["value"]=83.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCBg==", + ["value"]=83.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCCg==", + ["value"]=83.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCAA==", + ["value"]=84.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCCw==", + ["value"]=84.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CAQ==", + ["value"]=85.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CBA==", + ["value"]=85.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CAg==", + ["value"]=86.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CBQ==", + ["value"]=86.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CAw==", + ["value"]=87.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CBg==", + ["value"]=87.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAg==", + ["value"]=31.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CCg==", + ["value"]=87.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCBw==", + ["value"]=88.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCCw==", + ["value"]=88.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBQ==", + ["value"]=31.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCAA==", + ["value"]=89.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCw==", + ["value"]=31.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCCw==", + ["value"]=89.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCAQ==", + ["value"]=90.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCBA==", + ["value"]=90.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAQ==", + ["value"]=32.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCAQ==", + ["value"]=91.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCBA==", + ["value"]=91.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBQ==", + ["value"]=32.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCAg==", + ["value"]=92.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCBQ==", + ["value"]=92.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCAg==", + ["value"]=93.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAg==", + ["value"]=33.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCBQ==", + ["value"]=93.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCAg==", + ["value"]=94.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCBQ==", + ["value"]=94.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CAg==", + ["value"]=95.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CBQ==", + ["value"]=95.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CAg==", + ["value"]=96.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAg==", + ["value"]=34.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CBQ==", + ["value"]=96.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAQ==", + ["value"]=34.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CAg==", + ["value"]=97.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CBQ==", + ["value"]=97.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCAg==", + ["value"]=98.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCw==", + ["value"]=34.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCBQ==", + ["value"]=98.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCAg==", + ["value"]=99.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCBQ==", + ["value"]=99.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBg==", + ["value"]=35.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBQ==", + ["value"]=35.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CCw==", + ["value"]=35.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAQ==", + ["value"]=36.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAA==", + ["value"]=36.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBg==", + ["value"]=36.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBA==", + ["value"]=36.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCg==", + ["value"]=36.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAg==", + ["value"]=37.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAA==", + ["value"]=37.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBg==", + ["value"]=37.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBQ==", + ["value"]=37.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CCw==", + ["value"]=37.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAQ==", + ["value"]=38.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBw==", + ["value"]=38.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBQ==", + ["value"]=38.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCCw==", + ["value"]=38.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCCw==", + ["value"]=39.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAQ==", + ["value"]=40.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBw==", + ["value"]=40.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBQ==", + ["value"]=40.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCCw==", + ["value"]=40.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAw==", + ["value"]=41.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAQ==", + ["value"]=41.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBw==", + ["value"]=41.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBQ==", + ["value"]=41.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCCw==", + ["value"]=41.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAQ==", + ["value"]=42.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBw==", + ["value"]=42.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCCg==", + ["value"]=42.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAg==", + ["value"]=43.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAA==", + ["value"]=43.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBg==", + ["value"]=43.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBA==", + ["value"]=43.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCCg==", + ["value"]=43.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAQ==", + ["value"]=44.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBw==", + ["value"]=44.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBQ==", + ["value"]=44.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCCw==", + ["value"]=44.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAw==", + ["value"]=45.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAA==", + ["value"]=45.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBg==", + ["value"]=45.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBA==", + ["value"]=45.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAQ==", + ["value"]=46.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBw==", + ["value"]=46.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBA==", + ["value"]=46.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CCg==", + ["value"]=46.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAg==", + ["value"]=47.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBw==", + ["value"]=47.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBQ==", + ["value"]=47.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CCw==", + ["value"]=47.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAg==", + ["value"]=48.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAA==", + ["value"]=48.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBQ==", + ["value"]=48.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCCw==", + ["value"]=48.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAA==", + ["value"]=49.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBg==", + ["value"]=49.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCCw==", + ["value"]=49.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAA==", + ["value"]=50.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBg==", + ["value"]=50.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCCw==", + ["value"]=50.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAw==", + ["value"]=51.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAA==", + ["value"]=51.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBg==", + ["value"]=51.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCCw==", + ["value"]=51.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAg==", + ["value"]=52.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAA==", + ["value"]=52.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBQ==", + ["value"]=52.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCCw==", + ["value"]=52.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAg==", + ["value"]=53.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBw==", + ["value"]=53.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBQ==", + ["value"]=53.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCCg==", + ["value"]=53.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAQ==", + ["value"]=54.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBg==", + ["value"]=54.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBA==", + ["value"]=54.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAw==", + ["value"]=55.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAA==", + ["value"]=55.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBQ==", + ["value"]=55.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CCw==", + ["value"]=55.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAg==", + ["value"]=56.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBw==", + ["value"]=56.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBA==", + ["value"]=56.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAQ==", + ["value"]=57.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBg==", + ["value"]=57.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CCw==", + ["value"]=57.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAg==", + ["value"]=58.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBw==", + ["value"]=58.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBA==", + ["value"]=58.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAw==", + ["value"]=59.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAA==", + ["value"]=59.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCBQ==", + ["value"]=59.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCCg==", + ["value"]=59.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAQ==", + ["value"]=60.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBg==", + ["value"]=60.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCCw==", + ["value"]=60.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAg==", + ["value"]=61.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBw==", + ["value"]=61.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBA==", + ["value"]=61.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAw==", + ["value"]=62.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAA==", + ["value"]=62.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBQ==", + ["value"]=62.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCCg==", + ["value"]=62.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAA==", + ["value"]=63.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCBQ==", + ["value"]=63.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCCg==", + ["value"]=63.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAQ==", + ["value"]=64.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCBg==", + ["value"]=64.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCCw==", + ["value"]=64.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CAQ==", + ["value"]=65.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBg==", + ["value"]=65.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CCw==", + ["value"]=65.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CAQ==", + ["value"]=66.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBg==", + ["value"]=66.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CCw==", + ["value"]=66.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CAQ==", + ["value"]=67.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBg==", + ["value"]=67.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CCw==", + ["value"]=67.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCAQ==", + ["value"]=68.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCBg==", + ["value"]=68.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCCg==", + ["value"]=68.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCAQ==", + ["value"]=69.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCBg==", + ["value"]=69.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCCg==", + ["value"]=69.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAQ==", + ["value"]=70.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCBQ==", + ["value"]=70.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCCg==", + ["value"]=70.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAA==", + ["value"]=71.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCBA==", + ["value"]=71.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAw==", + ["value"]=72.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCBw==", + ["value"]=72.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCBA==", + ["value"]=72.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAg==", + ["value"]=73.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCBg==", + ["value"]=73.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCCw==", + ["value"]=73.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCAQ==", + ["value"]=74.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCBQ==", + ["value"]=74.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCCg==", + ["value"]=74.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CAA==", + ["value"]=75.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CBA==", + ["value"]=75.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CAg==", + ["value"]=76.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CBg==", + ["value"]=76.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CCw==", + ["value"]=76.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CAQ==", + ["value"]=77.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CBQ==", + ["value"]=77.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCAw==", + ["value"]=78.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCBw==", + ["value"]=78.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCCw==", + ["value"]=78.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCAQ==", + ["value"]=79.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCBQ==", + ["value"]=79.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCAw==", + ["value"]=80.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCBw==", + ["value"]=80.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCCw==", + ["value"]=80.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCAQ==", + ["value"]=81.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCBQ==", + ["value"]=81.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCAw==", + ["value"]=82.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCBw==", + ["value"]=82.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCCw==", + ["value"]=82.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCAQ==", + ["value"]=83.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCBQ==", + ["value"]=83.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCAg==", + ["value"]=84.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCBg==", + ["value"]=84.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCCg==", + ["value"]=84.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CAA==", + ["value"]=85.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CCw==", + ["value"]=85.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CAQ==", + ["value"]=86.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CBQ==", + ["value"]=86.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CAg==", + ["value"]=87.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CBg==", + ["value"]=87.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CCg==", + ["value"]=87.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCBw==", + ["value"]=88.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCCw==", + ["value"]=88.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCAA==", + ["value"]=89.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCBA==", + ["value"]=89.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCAg==", + ["value"]=90.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCBQ==", + ["value"]=90.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCAg==", + ["value"]=91.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCBg==", + ["value"]=91.5, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCAw==", + ["value"]=92.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCBw==", + ["value"]=92.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCCg==", + ["value"]=92.9, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCBw==", + ["value"]=93.4, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCCw==", + ["value"]=93.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCAA==", + ["value"]=94.3, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCCw==", + ["value"]=94.8, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CAQ==", + ["value"]=95.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CBA==", + ["value"]=95.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CAQ==", + ["value"]=96.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CBA==", + ["value"]=96.7, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CAQ==", + ["value"]=97.2, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CBQ==", + ["value"]=97.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCAg==", + ["value"]=98.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCBQ==", + ["value"]=98.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFeHWU=", + ["value"]=292.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCAg==", + ["value"]=99.1, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCBQ==", + ["value"]=99.6, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhUHWU=", + ["value"]=308.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlaHWU=", + ["value"]=316.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlVHWU=", + ["value"]=319.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpdHWU=", + ["value"]=321.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpYHWU=", + ["value"]=324.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpUHWU=", + ["value"]=328.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtdHWU=", + ["value"]=331.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtfHWU=", + ["value"]=333.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtaHWU=", + ["value"]=336.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxfHWU=", + ["value"]=343.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxVHWU=", + ["value"]=349.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1eHWU=", + ["value"]=352.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1UHWU=", + ["value"]=358.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5cHWU=", + ["value"]=360.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5eHWU=", + ["value"]=362.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5bHWU=", + ["value"]=367.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5VHWU=", + ["value"]=369.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9dHWU=", + ["value"]=371.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9fHWU=", + ["value"]=373.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9ZHWU=", + ["value"]=375.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9bHWU=", + ["value"]=377.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9VHWU=", + ["value"]=379.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBdHWU=", + ["value"]=381.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBfHWU=", + ["value"]=383.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBZHWU=", + ["value"]=385.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBbHWU=", + ["value"]=387.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBVHWU=", + ["value"]=389.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFdHWU=", + ["value"]=391.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFbHWU=", + ["value"]=397.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghfHWU=", + ["value"]=403.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghZHWU=", + ["value"]=405.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghUHWU=", + ["value"]=408.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglcHWU=", + ["value"]=410.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgleHWU=", + ["value"]=412.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglYHWU=", + ["value"]=414.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglaHWU=", + ["value"]=416.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglUHWU=", + ["value"]=418.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpcHWU=", + ["value"]=420.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpfHWU=", + ["value"]=423.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpZHWU=", + ["value"]=425.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpbHWU=", + ["value"]=427.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpVHWU=", + ["value"]=429.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgteHWU=", + ["value"]=432.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtYHWU=", + ["value"]=434.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtaHWU=", + ["value"]=436.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtUHWU=", + ["value"]=438.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxdHWU=", + ["value"]=441.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxfHWU=", + ["value"]=443.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxZHWU=", + ["value"]=445.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxUHWU=", + ["value"]=448.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1cHWU=", + ["value"]=450.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1eHWU=", + ["value"]=452.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1ZHWU=", + ["value"]=455.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1bHWU=", + ["value"]=457.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1VHWU=", + ["value"]=459.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5eHWU=", + ["value"]=462.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5YHWU=", + ["value"]=464.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5bHWU=", + ["value"]=467.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5VHWU=", + ["value"]=469.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9dHWU=", + ["value"]=471.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9YHWU=", + ["value"]=474.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9aHWU=", + ["value"]=476.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9VHWU=", + ["value"]=479.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBdHWU=", + ["value"]=481.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBYHWU=", + ["value"]=484.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBaHWU=", + ["value"]=486.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBVHWU=", + ["value"]=489.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFdHWU=", + ["value"]=491.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFYHWU=", + ["value"]=494.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFbHWU=", + ["value"]=497.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFVHWU=", + ["value"]=499.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwheHWU=", + ["value"]=502.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhYHWU=", + ["value"]=504.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhbHWU=", + ["value"]=507.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlcHWU=", + ["value"]=510.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwleHWU=", + ["value"]=512.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlZHWU=", + ["value"]=515.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlUHWU=", + ["value"]=518.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpcHWU=", + ["value"]=520.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpfHWU=", + ["value"]=523.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpaHWU=", + ["value"]=526.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpVHWU=", + ["value"]=529.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtdHWU=", + ["value"]=531.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtYHWU=", + ["value"]=534.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtbHWU=", + ["value"]=537.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxcHWU=", + ["value"]=540.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxeHWU=", + ["value"]=542.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxZHWU=", + ["value"]=545.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxUHWU=", + ["value"]=548.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1dHWU=", + ["value"]=551.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1YHWU=", + ["value"]=554.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1bHWU=", + ["value"]=557.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5cHWU=", + ["value"]=560.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5fHWU=", + ["value"]=563.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5ZHWU=", + ["value"]=565.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5UHWU=", + ["value"]=568.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9dHWU=", + ["value"]=571.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9YHWU=", + ["value"]=574.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9bHWU=", + ["value"]=577.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBcHWU=", + ["value"]=580.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBfHWU=", + ["value"]=583.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBaHWU=", + ["value"]=586.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBVHWU=", + ["value"]=589.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFfHWU=", + ["value"]=593.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFaHWU=", + ["value"]=596.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFVHWU=", + ["value"]=599.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAheHWU=", + ["value"]=602.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhZHWU=", + ["value"]=605.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhUHWU=", + ["value"]=608.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAldHWU=", + ["value"]=611.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlZHWU=", + ["value"]=615.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlUHWU=", + ["value"]=618.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApdHWU=", + ["value"]=621.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApYHWU=", + ["value"]=624.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApbHWU=", + ["value"]=627.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtdHWU=", + ["value"]=631.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtYHWU=", + ["value"]=634.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtbHWU=", + ["value"]=637.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxdHWU=", + ["value"]=641.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxYHWU=", + ["value"]=644.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxbHWU=", + ["value"]=647.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1dHWU=", + ["value"]=651.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1YHWU=", + ["value"]=654.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1bHWU=", + ["value"]=657.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5dHWU=", + ["value"]=661.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5YHWU=", + ["value"]=664.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5UHWU=", + ["value"]=668.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9dHWU=", + ["value"]=671.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9ZHWU=", + ["value"]=675.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9UHWU=", + ["value"]=678.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABeHWU=", + ["value"]=682.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABZHWU=", + ["value"]=685.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABVHWU=", + ["value"]=689.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFfHWU=", + ["value"]=693.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFaHWU=", + ["value"]=696.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhcHWU=", + ["value"]=700.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhfHWU=", + ["value"]=703.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhbHWU=", + ["value"]=707.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQldHWU=", + ["value"]=711.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlYHWU=", + ["value"]=714.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlUHWU=", + ["value"]=718.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpeHWU=", + ["value"]=722.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpaHWU=", + ["value"]=726.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtcHWU=", + ["value"]=730.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtfHWU=", + ["value"]=733.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtbHWU=", + ["value"]=737.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxdHWU=", + ["value"]=741.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxZHWU=", + ["value"]=745.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxVHWU=", + ["value"]=749.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1fHWU=", + ["value"]=753.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1bHWU=", + ["value"]=757.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5cHWU=", + ["value"]=760.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5YHWU=", + ["value"]=764.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5UHWU=", + ["value"]=768.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9eHWU=", + ["value"]=772.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9aHWU=", + ["value"]=776.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBdHWU=", + ["value"]=781.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBZHWU=", + ["value"]=785.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBVHWU=", + ["value"]=789.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFfHWU=", + ["value"]=793.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFbHWU=", + ["value"]=797.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghdHWU=", + ["value"]=801.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghZHWU=", + ["value"]=805.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghVHWU=", + ["value"]=809.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglYHWU=", + ["value"]=814.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglUHWU=", + ["value"]=818.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpeHWU=", + ["value"]=822.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpaHWU=", + ["value"]=826.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtdHWU=", + ["value"]=831.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtZHWU=", + ["value"]=835.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtVHWU=", + ["value"]=839.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxYHWU=", + ["value"]=844.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9YHWU=", + ["value"]=274.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxUHWU=", + ["value"]=848.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1fHWU=", + ["value"]=853.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1bHWU=", + ["value"]=857.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5eHWU=", + ["value"]=862.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5aHWU=", + ["value"]=866.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9dHWU=", + ["value"]=871.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9ZHWU=", + ["value"]=875.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBcHWU=", + ["value"]=880.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBYHWU=", + ["value"]=884.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBVHWU=", + ["value"]=889.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFfHWU=", + ["value"]=893.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFUHWU=", + ["value"]=898.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhfHWU=", + ["value"]=903.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhUHWU=", + ["value"]=908.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwleHWU=", + ["value"]=912.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlbHWU=", + ["value"]=917.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpeHWU=", + ["value"]=922.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpbHWU=", + ["value"]=927.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtdHWU=", + ["value"]=931.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtaHWU=", + ["value"]=936.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxdHWU=", + ["value"]=941.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxaHWU=", + ["value"]=946.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1dHWU=", + ["value"]=951.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhUHWU=", + ["value"]=308.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1aHWU=", + ["value"]=956.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5dHWU=", + ["value"]=961.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5aHWU=", + ["value"]=966.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9dHWU=", + ["value"]=971.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9aHWU=", + ["value"]=976.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBdHWU=", + ["value"]=981.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBaHWU=", + ["value"]=986.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlVHWU=", + ["value"]=319.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFdHWU=", + ["value"]=991.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFbHWU=", + ["value"]=997.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpUHWU=", + ["value"]=328.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtfHWU=", + ["value"]=333.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxfHWU=", + ["value"]=343.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxVHWU=", + ["value"]=349.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1eHWU=", + ["value"]=352.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5dHWU=", + ["value"]=361.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9cHWU=", + ["value"]=370.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9aHWU=", + ["value"]=376.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9VHWU=", + ["value"]=379.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBdHWU=", + ["value"]=381.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBfHWU=", + ["value"]=383.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBZHWU=", + ["value"]=385.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBbHWU=", + ["value"]=387.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBVHWU=", + ["value"]=389.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFdHWU=", + ["value"]=391.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFbHWU=", + ["value"]=397.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghfHWU=", + ["value"]=403.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghZHWU=", + ["value"]=405.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghbHWU=", + ["value"]=407.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghVHWU=", + ["value"]=409.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgldHWU=", + ["value"]=411.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglfHWU=", + ["value"]=413.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglZHWU=", + ["value"]=415.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglVHWU=", + ["value"]=419.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpdHWU=", + ["value"]=421.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpfHWU=", + ["value"]=423.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpaHWU=", + ["value"]=426.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtcHWU=", + ["value"]=430.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgteHWU=", + ["value"]=432.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtYHWU=", + ["value"]=434.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtaHWU=", + ["value"]=436.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtVHWU=", + ["value"]=439.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxdHWU=", + ["value"]=441.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxfHWU=", + ["value"]=443.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxZHWU=", + ["value"]=445.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxbHWU=", + ["value"]=447.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1cHWU=", + ["value"]=450.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1eHWU=", + ["value"]=452.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1YHWU=", + ["value"]=454.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1aHWU=", + ["value"]=456.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1VHWU=", + ["value"]=459.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5dHWU=", + ["value"]=461.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5fHWU=", + ["value"]=463.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5aHWU=", + ["value"]=466.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5UHWU=", + ["value"]=468.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9cHWU=", + ["value"]=470.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9fHWU=", + ["value"]=473.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9ZHWU=", + ["value"]=475.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9bHWU=", + ["value"]=477.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBcHWU=", + ["value"]=480.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBeHWU=", + ["value"]=482.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBZHWU=", + ["value"]=485.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBbHWU=", + ["value"]=487.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBVHWU=", + ["value"]=489.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFeHWU=", + ["value"]=492.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFYHWU=", + ["value"]=494.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFbHWU=", + ["value"]=497.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFVHWU=", + ["value"]=499.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwheHWU=", + ["value"]=502.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhYHWU=", + ["value"]=504.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhbHWU=", + ["value"]=507.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhVHWU=", + ["value"]=509.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwleHWU=", + ["value"]=512.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlYHWU=", + ["value"]=514.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlbHWU=", + ["value"]=517.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpcHWU=", + ["value"]=520.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpeHWU=", + ["value"]=522.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpZHWU=", + ["value"]=525.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpbHWU=", + ["value"]=527.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtcHWU=", + ["value"]=530.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtfHWU=", + ["value"]=533.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtZHWU=", + ["value"]=535.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtUHWU=", + ["value"]=538.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxdHWU=", + ["value"]=541.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxYHWU=", + ["value"]=544.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxaHWU=", + ["value"]=546.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxVHWU=", + ["value"]=549.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1eHWU=", + ["value"]=552.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1YHWU=", + ["value"]=554.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1bHWU=", + ["value"]=557.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5cHWU=", + ["value"]=560.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5fHWU=", + ["value"]=563.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5aHWU=", + ["value"]=566.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5UHWU=", + ["value"]=568.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9dHWU=", + ["value"]=571.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9YHWU=", + ["value"]=574.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9bHWU=", + ["value"]=577.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBcHWU=", + ["value"]=580.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBfHWU=", + ["value"]=583.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBaHWU=", + ["value"]=586.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBVHWU=", + ["value"]=589.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFeHWU=", + ["value"]=592.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFZHWU=", + ["value"]=595.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFUHWU=", + ["value"]=598.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhdHWU=", + ["value"]=601.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhYHWU=", + ["value"]=604.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhbHWU=", + ["value"]=607.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlcHWU=", + ["value"]=610.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlfHWU=", + ["value"]=613.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlaHWU=", + ["value"]=616.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlVHWU=", + ["value"]=619.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApeHWU=", + ["value"]=622.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApZHWU=", + ["value"]=625.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApUHWU=", + ["value"]=628.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtdHWU=", + ["value"]=631.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtYHWU=", + ["value"]=634.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtUHWU=", + ["value"]=638.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxdHWU=", + ["value"]=641.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxYHWU=", + ["value"]=644.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxbHWU=", + ["value"]=647.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1dHWU=", + ["value"]=651.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1YHWU=", + ["value"]=654.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1bHWU=", + ["value"]=657.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5cHWU=", + ["value"]=660.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5YHWU=", + ["value"]=664.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5bHWU=", + ["value"]=667.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9cHWU=", + ["value"]=670.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9YHWU=", + ["value"]=674.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9bHWU=", + ["value"]=677.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABcHWU=", + ["value"]=680.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABYHWU=", + ["value"]=684.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABbHWU=", + ["value"]=687.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFdHWU=", + ["value"]=691.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFYHWU=", + ["value"]=694.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFUHWU=", + ["value"]=698.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhdHWU=", + ["value"]=701.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhZHWU=", + ["value"]=705.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhUHWU=", + ["value"]=708.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQleHWU=", + ["value"]=712.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlZHWU=", + ["value"]=715.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlVHWU=", + ["value"]=719.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpeHWU=", + ["value"]=722.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpaHWU=", + ["value"]=726.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtcHWU=", + ["value"]=730.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtfHWU=", + ["value"]=733.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtbHWU=", + ["value"]=737.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxdHWU=", + ["value"]=741.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxYHWU=", + ["value"]=744.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxUHWU=", + ["value"]=748.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1eHWU=", + ["value"]=752.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1aHWU=", + ["value"]=756.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1VHWU=", + ["value"]=759.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5fHWU=", + ["value"]=763.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5bHWU=", + ["value"]=767.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9dHWU=", + ["value"]=771.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9ZHWU=", + ["value"]=775.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9VHWU=", + ["value"]=779.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBeHWU=", + ["value"]=782.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBaHWU=", + ["value"]=786.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFcHWU=", + ["value"]=790.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFYHWU=", + ["value"]=794.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFUHWU=", + ["value"]=798.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgheHWU=", + ["value"]=802.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghaHWU=", + ["value"]=806.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglcHWU=", + ["value"]=810.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglYHWU=", + ["value"]=814.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglUHWU=", + ["value"]=818.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpeHWU=", + ["value"]=822.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpbHWU=", + ["value"]=827.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtdHWU=", + ["value"]=831.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtZHWU=", + ["value"]=835.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtVHWU=", + ["value"]=839.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxfHWU=", + ["value"]=843.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxbHWU=", + ["value"]=847.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1eHWU=", + ["value"]=852.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1aHWU=", + ["value"]=856.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5cHWU=", + ["value"]=860.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5ZHWU=", + ["value"]=865.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5VHWU=", + ["value"]=869.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9fHWU=", + ["value"]=873.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9UHWU=", + ["value"]=878.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBeHWU=", + ["value"]=882.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBQ==", + ["value"]=2.86, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBaHWU=", + ["value"]=886.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFdHWU=", + ["value"]=891.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCg==", + ["value"]=2.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFZHWU=", + ["value"]=895.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhcHWU=", + ["value"]=900.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhYHWU=", + ["value"]=904.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBw==", + ["value"]=2.94, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhVHWU=", + ["value"]=909.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlfHWU=", + ["value"]=913.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBA==", + ["value"]=2.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlUHWU=", + ["value"]=918.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpfHWU=", + ["value"]=923.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpbHWU=", + ["value"]=927.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAQ==", + ["value"]=3.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwteHWU=", + ["value"]=932.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtaHWU=", + ["value"]=936.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBg==", + ["value"]=3.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxdHWU=", + ["value"]=941.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxaHWU=", + ["value"]=946.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1dHWU=", + ["value"]=951.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1ZHWU=", + ["value"]=955.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5cHWU=", + ["value"]=960.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5ZHWU=", + ["value"]=965.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9cHWU=", + ["value"]=970.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9ZHWU=", + ["value"]=975.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9VHWU=", + ["value"]=979.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCg==", + ["value"]=3.19, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBYHWU=", + ["value"]=984.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBVHWU=", + ["value"]=989.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFYHWU=", + ["value"]=994.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFVHWU=", + ["value"]=999.0, + ["unit_for_nothing"]="Ug==", + ["unit"]=4 + } + }, + [5859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBQ==", + ["value"]=3.26, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCw==", + ["value"]=3.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBg==", + ["value"]=3.35, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCw==", + ["value"]=3.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZY", + ["value"]=3.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBg==", + ["value"]=3.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBA==", + ["value"]=3.47, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCg==", + ["value"]=3.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAQ==", + ["value"]=3.52, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBw==", + ["value"]=3.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBQ==", + ["value"]=3.56, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCw==", + ["value"]=3.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZa", + ["value"]=3.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAQ==", + ["value"]=3.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBw==", + ["value"]=3.64, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBA==", + ["value"]=3.67, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaCg==", + ["value"]=3.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAg==", + ["value"]=3.71, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAA==", + ["value"]=3.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBg==", + ["value"]=3.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBA==", + ["value"]=3.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbCg==", + ["value"]=3.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAg==", + ["value"]=3.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAA==", + ["value"]=3.83, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBg==", + ["value"]=3.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBA==", + ["value"]=3.87, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUCg==", + ["value"]=3.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAg==", + ["value"]=3.91, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAA==", + ["value"]=3.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBg==", + ["value"]=3.95, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBA==", + ["value"]=3.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVCg==", + ["value"]=3.99, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAg==", + ["value"]=4.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAA==", + ["value"]=4.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBQ==", + ["value"]=4.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcCw==", + ["value"]=4.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZd", + ["value"]=4.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAQ==", + ["value"]=4.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBw==", + ["value"]=4.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBQ==", + ["value"]=4.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdCw==", + ["value"]=4.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAg==", + ["value"]=4.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAA==", + ["value"]=4.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBg==", + ["value"]=4.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBA==", + ["value"]=4.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeCg==", + ["value"]=4.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAQ==", + ["value"]=4.32, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBw==", + ["value"]=4.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBQ==", + ["value"]=4.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfCw==", + ["value"]=4.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAg==", + ["value"]=4.41, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAA==", + ["value"]=4.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBg==", + ["value"]=4.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYCw==", + ["value"]=4.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZ", + ["value"]=4.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAQ==", + ["value"]=4.52, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBg==", + ["value"]=4.55, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBA==", + ["value"]=4.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZCg==", + ["value"]=4.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAQ==", + ["value"]=4.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBw==", + ["value"]=4.64, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBA==", + ["value"]=4.67, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaCg==", + ["value"]=4.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAQ==", + ["value"]=4.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBw==", + ["value"]=4.74, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBA==", + ["value"]=4.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbCg==", + ["value"]=4.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAg==", + ["value"]=4.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBw==", + ["value"]=4.84, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBA==", + ["value"]=4.87, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUCg==", + ["value"]=4.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAQ==", + ["value"]=4.92, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBw==", + ["value"]=4.94, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBA==", + ["value"]=4.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVCg==", + ["value"]=4.99, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAQ==", + ["value"]=5.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBg==", + ["value"]=5.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBA==", + ["value"]=5.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZd", + ["value"]=5.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAQ==", + ["value"]=5.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBg==", + ["value"]=5.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdCw==", + ["value"]=5.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAg==", + ["value"]=5.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAA==", + ["value"]=5.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBQ==", + ["value"]=5.26, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeCg==", + ["value"]=5.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAg==", + ["value"]=5.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBw==", + ["value"]=5.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBA==", + ["value"]=5.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZY", + ["value"]=5.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYAA==", + ["value"]=5.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBg==", + ["value"]=5.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYCw==", + ["value"]=5.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAg==", + ["value"]=5.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBw==", + ["value"]=5.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBA==", + ["value"]=5.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZa", + ["value"]=5.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaAA==", + ["value"]=5.63, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBQ==", + ["value"]=5.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaCg==", + ["value"]=5.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbAQ==", + ["value"]=5.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBg==", + ["value"]=5.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbCw==", + ["value"]=5.78, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUAg==", + ["value"]=5.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBw==", + ["value"]=5.84, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBA==", + ["value"]=5.87, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZV", + ["value"]=5.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVAA==", + ["value"]=5.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBQ==", + ["value"]=5.96, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVCg==", + ["value"]=5.99, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcAQ==", + ["value"]=6.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBg==", + ["value"]=6.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcCw==", + ["value"]=6.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdAQ==", + ["value"]=6.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBg==", + ["value"]=6.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdCw==", + ["value"]=6.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeAg==", + ["value"]=6.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBw==", + ["value"]=6.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeCw==", + ["value"]=6.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfAg==", + ["value"]=6.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfBw==", + ["value"]=6.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfCw==", + ["value"]=6.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYAg==", + ["value"]=6.41, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYBw==", + ["value"]=6.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYCw==", + ["value"]=6.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZAg==", + ["value"]=6.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBw==", + ["value"]=6.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZCw==", + ["value"]=6.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaAg==", + ["value"]=6.61, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBg==", + ["value"]=6.65, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaCw==", + ["value"]=6.68, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbAQ==", + ["value"]=6.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [5999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBg==", + ["value"]=6.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbCg==", + ["value"]=6.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUAQ==", + ["value"]=6.82, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBQ==", + ["value"]=6.86, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUCg==", + ["value"]=6.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVAA==", + ["value"]=6.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBQ==", + ["value"]=6.96, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZc", + ["value"]=7.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBw==", + ["value"]=7.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBA==", + ["value"]=7.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdAg==", + ["value"]=7.11, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBg==", + ["value"]=7.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdCw==", + ["value"]=7.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeAQ==", + ["value"]=7.22, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeBQ==", + ["value"]=7.26, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZf", + ["value"]=7.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfBw==", + ["value"]=7.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfBA==", + ["value"]=7.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYAg==", + ["value"]=7.41, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYBg==", + ["value"]=7.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYCg==", + ["value"]=7.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZAA==", + ["value"]=7.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZBA==", + ["value"]=7.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaAg==", + ["value"]=7.61, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaBg==", + ["value"]=7.65, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaCg==", + ["value"]=7.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbAA==", + ["value"]=7.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbBA==", + ["value"]=7.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUAg==", + ["value"]=7.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUBg==", + ["value"]=7.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUCg==", + ["value"]=7.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVAA==", + ["value"]=7.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVBA==", + ["value"]=7.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcAg==", + ["value"]=8.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcBQ==", + ["value"]=8.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZd", + ["value"]=8.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdBw==", + ["value"]=8.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdCw==", + ["value"]=8.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeAQ==", + ["value"]=8.22, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeBA==", + ["value"]=8.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfAg==", + ["value"]=8.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfBg==", + ["value"]=8.35, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZY", + ["value"]=8.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYBw==", + ["value"]=8.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYCg==", + ["value"]=8.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZAA==", + ["value"]=8.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZBA==", + ["value"]=8.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaAQ==", + ["value"]=8.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaBQ==", + ["value"]=8.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbAg==", + ["value"]=8.71, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbBg==", + ["value"]=8.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZU", + ["value"]=8.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUBg==", + ["value"]=8.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUCg==", + ["value"]=8.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVBw==", + ["value"]=8.94, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVCw==", + ["value"]=8.98, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcAA==", + ["value"]=9.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcCw==", + ["value"]=9.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdAA==", + ["value"]=9.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdBA==", + ["value"]=9.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeAQ==", + ["value"]=9.22, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeBA==", + ["value"]=9.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfAQ==", + ["value"]=9.32, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfBA==", + ["value"]=9.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYAQ==", + ["value"]=9.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYBQ==", + ["value"]=9.46, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZAg==", + ["value"]=9.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZBQ==", + ["value"]=9.56, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaAg==", + ["value"]=9.61, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaBQ==", + ["value"]=9.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbAg==", + ["value"]=9.71, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBQ==", + ["value"]=2.86, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbBQ==", + ["value"]=9.76, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUAg==", + ["value"]=9.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCg==", + ["value"]=2.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUBA==", + ["value"]=9.87, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVAQ==", + ["value"]=9.92, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVBA==", + ["value"]=9.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBw==", + ["value"]=2.94, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBA==", + ["value"]=2.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBQ==", + ["value"]=3.26, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeCw==", + ["value"]=3.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBw==", + ["value"]=3.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfCw==", + ["value"]=3.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAg==", + ["value"]=3.41, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZa", + ["value"]=3.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAQ==", + ["value"]=3.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBw==", + ["value"]=3.64, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaCg==", + ["value"]=3.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAg==", + ["value"]=3.71, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAA==", + ["value"]=3.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBg==", + ["value"]=3.75, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBA==", + ["value"]=3.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbCg==", + ["value"]=3.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAg==", + ["value"]=3.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAA==", + ["value"]=3.83, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVCw==", + ["value"]=3.98, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAQ==", + ["value"]=4.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBw==", + ["value"]=4.04, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBQ==", + ["value"]=4.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcCw==", + ["value"]=4.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZd", + ["value"]=4.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAQ==", + ["value"]=4.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBw==", + ["value"]=4.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBQ==", + ["value"]=4.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdCg==", + ["value"]=4.19, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAg==", + ["value"]=4.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAA==", + ["value"]=4.23, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBg==", + ["value"]=4.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBA==", + ["value"]=4.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeCg==", + ["value"]=4.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAg==", + ["value"]=4.31, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAA==", + ["value"]=4.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBQ==", + ["value"]=4.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfCw==", + ["value"]=4.38, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAQ==", + ["value"]=4.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBw==", + ["value"]=4.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYCg==", + ["value"]=4.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAg==", + ["value"]=4.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAA==", + ["value"]=4.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBQ==", + ["value"]=4.56, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZCw==", + ["value"]=4.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZa", + ["value"]=4.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAQ==", + ["value"]=4.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBg==", + ["value"]=4.65, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBA==", + ["value"]=4.67, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaCg==", + ["value"]=4.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbAQ==", + ["value"]=4.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBw==", + ["value"]=4.74, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBQ==", + ["value"]=4.76, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbCg==", + ["value"]=4.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAg==", + ["value"]=4.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBw==", + ["value"]=4.84, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBQ==", + ["value"]=4.86, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUCg==", + ["value"]=4.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAg==", + ["value"]=4.91, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAA==", + ["value"]=4.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBQ==", + ["value"]=4.96, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVCw==", + ["value"]=4.98, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAg==", + ["value"]=5.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAA==", + ["value"]=5.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBQ==", + ["value"]=5.06, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcCw==", + ["value"]=5.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdAg==", + ["value"]=5.11, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBw==", + ["value"]=5.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBQ==", + ["value"]=5.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdCg==", + ["value"]=5.19, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeAg==", + ["value"]=5.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBw==", + ["value"]=5.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBQ==", + ["value"]=5.26, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeCg==", + ["value"]=5.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfAQ==", + ["value"]=5.32, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBw==", + ["value"]=5.34, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBA==", + ["value"]=5.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZY", + ["value"]=5.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYAA==", + ["value"]=5.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBg==", + ["value"]=5.45, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYCw==", + ["value"]=5.48, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZAg==", + ["value"]=5.51, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZAA==", + ["value"]=5.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBQ==", + ["value"]=5.56, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZCg==", + ["value"]=5.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaAQ==", + ["value"]=5.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBg==", + ["value"]=5.65, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBA==", + ["value"]=5.67, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZb", + ["value"]=5.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbAA==", + ["value"]=5.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBQ==", + ["value"]=5.76, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbCg==", + ["value"]=5.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUAQ==", + ["value"]=5.82, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBg==", + ["value"]=5.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUCw==", + ["value"]=5.88, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVAg==", + ["value"]=5.91, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVAA==", + ["value"]=5.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBQ==", + ["value"]=5.96, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVCg==", + ["value"]=5.99, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcAQ==", + ["value"]=6.02, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcBg==", + ["value"]=6.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcCw==", + ["value"]=6.08, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdAQ==", + ["value"]=6.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBg==", + ["value"]=6.15, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdCw==", + ["value"]=6.18, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeAg==", + ["value"]=6.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBw==", + ["value"]=6.24, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBA==", + ["value"]=6.27, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZf", + ["value"]=6.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfAA==", + ["value"]=6.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBQ==", + ["value"]=6.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZY", + ["value"]=6.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYAA==", + ["value"]=6.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBQ==", + ["value"]=6.46, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYCg==", + ["value"]=6.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZAA==", + ["value"]=6.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZBQ==", + ["value"]=6.56, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZCg==", + ["value"]=6.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaAQ==", + ["value"]=6.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaBQ==", + ["value"]=6.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaCg==", + ["value"]=6.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbAQ==", + ["value"]=6.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBQ==", + ["value"]=6.76, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbCg==", + ["value"]=6.79, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUAA==", + ["value"]=6.83, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUBQ==", + ["value"]=6.86, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUCg==", + ["value"]=6.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVAA==", + ["value"]=6.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVBQ==", + ["value"]=6.96, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZc", + ["value"]=7.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcAA==", + ["value"]=7.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCg==", + ["value"]=24.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcBA==", + ["value"]=7.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZd", + ["value"]=7.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdBw==", + ["value"]=7.14, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdBA==", + ["value"]=7.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeAg==", + ["value"]=7.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeBg==", + ["value"]=7.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeCw==", + ["value"]=7.28, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfAQ==", + ["value"]=7.32, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfBQ==", + ["value"]=7.36, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfCg==", + ["value"]=7.39, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYAA==", + ["value"]=7.43, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYBA==", + ["value"]=7.47, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZ", + ["value"]=7.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZBw==", + ["value"]=7.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZCw==", + ["value"]=7.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaAQ==", + ["value"]=7.62, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaBQ==", + ["value"]=7.66, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaCg==", + ["value"]=7.69, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbAA==", + ["value"]=7.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbBA==", + ["value"]=7.77, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUAg==", + ["value"]=7.81, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUBg==", + ["value"]=7.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUCg==", + ["value"]=7.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVAA==", + ["value"]=7.93, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVBA==", + ["value"]=7.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcAg==", + ["value"]=8.01, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcBg==", + ["value"]=8.05, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcCg==", + ["value"]=8.09, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCw==", + ["value"]=28.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdAA==", + ["value"]=8.13, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdBA==", + ["value"]=8.17, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeAg==", + ["value"]=8.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeBg==", + ["value"]=8.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBw==", + ["value"]=29.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeCg==", + ["value"]=8.29, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfAA==", + ["value"]=8.33, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBA==", + ["value"]=29.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfBA==", + ["value"]=8.37, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYAQ==", + ["value"]=8.42, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYBQ==", + ["value"]=8.46, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZ", + ["value"]=8.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAA==", + ["value"]=30.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZBw==", + ["value"]=8.54, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZCg==", + ["value"]=8.59, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBQ==", + ["value"]=30.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaAA==", + ["value"]=8.63, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaBA==", + ["value"]=8.67, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbAQ==", + ["value"]=8.72, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAg==", + ["value"]=31.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbBQ==", + ["value"]=8.76, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZU", + ["value"]=8.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBw==", + ["value"]=31.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUBg==", + ["value"]=8.85, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBQ==", + ["value"]=31.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUCg==", + ["value"]=8.89, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCw==", + ["value"]=31.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVBw==", + ["value"]=8.94, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVCw==", + ["value"]=8.98, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcAA==", + ["value"]=9.03, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAA==", + ["value"]=32.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcBA==", + ["value"]=9.07, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdAQ==", + ["value"]=9.12, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBQ==", + ["value"]=32.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdBQ==", + ["value"]=9.16, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCCw==", + ["value"]=32.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeAg==", + ["value"]=9.21, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeBg==", + ["value"]=9.25, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAg==", + ["value"]=33.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZf", + ["value"]=9.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAA==", + ["value"]=33.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfBg==", + ["value"]=9.35, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBg==", + ["value"]=33.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfCg==", + ["value"]=9.39, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYBw==", + ["value"]=9.44, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCCw==", + ["value"]=33.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYCg==", + ["value"]=9.49, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZAA==", + ["value"]=9.53, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAQ==", + ["value"]=34.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZCw==", + ["value"]=9.58, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaAA==", + ["value"]=9.63, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBg==", + ["value"]=34.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaCw==", + ["value"]=9.68, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBA==", + ["value"]=34.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbAA==", + ["value"]=9.73, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbCw==", + ["value"]=9.78, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUAQ==", + ["value"]=9.82, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUBA==", + ["value"]=9.87, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBw==", + ["value"]=35.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVAQ==", + ["value"]=9.92, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBQ==", + ["value"]=35.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVBA==", + ["value"]=9.97, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CCw==", + ["value"]=35.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAQ==", + ["value"]=36.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBw==", + ["value"]=36.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBQ==", + ["value"]=36.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CCg==", + ["value"]=36.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAg==", + ["value"]=37.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAA==", + ["value"]=37.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBg==", + ["value"]=37.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBA==", + ["value"]=37.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CCg==", + ["value"]=37.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAg==", + ["value"]=38.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAA==", + ["value"]=38.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBg==", + ["value"]=38.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBA==", + ["value"]=38.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCCg==", + ["value"]=38.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAg==", + ["value"]=39.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAA==", + ["value"]=39.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBg==", + ["value"]=39.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBA==", + ["value"]=39.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCCg==", + ["value"]=39.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAQ==", + ["value"]=40.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBw==", + ["value"]=40.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBQ==", + ["value"]=40.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCCw==", + ["value"]=40.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAw==", + ["value"]=41.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAQ==", + ["value"]=41.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBw==", + ["value"]=41.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBQ==", + ["value"]=41.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCCg==", + ["value"]=41.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAg==", + ["value"]=42.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAA==", + ["value"]=42.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBg==", + ["value"]=42.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBA==", + ["value"]=42.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAQ==", + ["value"]=43.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBw==", + ["value"]=43.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBQ==", + ["value"]=43.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCCg==", + ["value"]=43.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAg==", + ["value"]=44.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAA==", + ["value"]=44.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBQ==", + ["value"]=44.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCCw==", + ["value"]=44.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAw==", + ["value"]=45.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAA==", + ["value"]=45.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBg==", + ["value"]=45.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBA==", + ["value"]=45.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAQ==", + ["value"]=46.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBw==", + ["value"]=46.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBA==", + ["value"]=46.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CCg==", + ["value"]=46.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAQ==", + ["value"]=47.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBw==", + ["value"]=47.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBA==", + ["value"]=47.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CCg==", + ["value"]=47.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAQ==", + ["value"]=48.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBw==", + ["value"]=48.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBA==", + ["value"]=48.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCCg==", + ["value"]=48.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAQ==", + ["value"]=49.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBw==", + ["value"]=49.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBA==", + ["value"]=49.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAQ==", + ["value"]=50.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBg==", + ["value"]=50.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBA==", + ["value"]=50.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAw==", + ["value"]=51.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAA==", + ["value"]=51.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBg==", + ["value"]=51.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCCw==", + ["value"]=51.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAg==", + ["value"]=52.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAA==", + ["value"]=52.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBQ==", + ["value"]=52.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCCg==", + ["value"]=52.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAQ==", + ["value"]=53.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBw==", + ["value"]=53.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBA==", + ["value"]=53.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAw==", + ["value"]=54.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAA==", + ["value"]=54.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBQ==", + ["value"]=54.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCCg==", + ["value"]=54.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAg==", + ["value"]=55.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBw==", + ["value"]=55.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBA==", + ["value"]=55.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAw==", + ["value"]=56.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAA==", + ["value"]=56.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBQ==", + ["value"]=56.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CCg==", + ["value"]=56.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAQ==", + ["value"]=57.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CBg==", + ["value"]=57.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CCw==", + ["value"]=57.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAg==", + ["value"]=58.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCBw==", + ["value"]=58.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCBA==", + ["value"]=58.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAw==", + ["value"]=59.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAA==", + ["value"]=59.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBQ==", + ["value"]=59.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCCg==", + ["value"]=59.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAQ==", + ["value"]=60.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBg==", + ["value"]=60.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCCg==", + ["value"]=60.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAQ==", + ["value"]=61.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBg==", + ["value"]=61.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCCw==", + ["value"]=61.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAg==", + ["value"]=62.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCBg==", + ["value"]=62.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCCw==", + ["value"]=62.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAg==", + ["value"]=63.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCBw==", + ["value"]=63.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCCw==", + ["value"]=63.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAg==", + ["value"]=64.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCBw==", + ["value"]=64.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCCw==", + ["value"]=64.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAg==", + ["value"]=65.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CBg==", + ["value"]=65.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CCw==", + ["value"]=65.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAg==", + ["value"]=66.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CBg==", + ["value"]=66.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CCw==", + ["value"]=66.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAQ==", + ["value"]=67.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBg==", + ["value"]=67.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CCg==", + ["value"]=67.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAQ==", + ["value"]=68.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCBQ==", + ["value"]=68.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAw==", + ["value"]=69.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAA==", + ["value"]=69.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCBA==", + ["value"]=69.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAw==", + ["value"]=70.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCBw==", + ["value"]=70.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCCw==", + ["value"]=70.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAg==", + ["value"]=71.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCBg==", + ["value"]=71.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCCg==", + ["value"]=71.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAA==", + ["value"]=72.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCBQ==", + ["value"]=72.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCAw==", + ["value"]=73.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCBw==", + ["value"]=73.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCCw==", + ["value"]=73.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAQ==", + ["value"]=74.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCBg==", + ["value"]=74.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCCg==", + ["value"]=74.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CAA==", + ["value"]=75.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CBA==", + ["value"]=75.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAg==", + ["value"]=76.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CBg==", + ["value"]=76.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CCg==", + ["value"]=76.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CAA==", + ["value"]=77.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CBA==", + ["value"]=77.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCAg==", + ["value"]=78.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCBg==", + ["value"]=78.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCCg==", + ["value"]=78.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCAA==", + ["value"]=79.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCCw==", + ["value"]=79.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCAQ==", + ["value"]=80.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCBQ==", + ["value"]=80.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCAw==", + ["value"]=81.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCBw==", + ["value"]=81.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCCg==", + ["value"]=81.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCAA==", + ["value"]=82.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCBA==", + ["value"]=82.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCAg==", + ["value"]=83.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCBQ==", + ["value"]=83.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCAw==", + ["value"]=84.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCBw==", + ["value"]=84.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCCg==", + ["value"]=84.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CAA==", + ["value"]=85.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CCw==", + ["value"]=85.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CAQ==", + ["value"]=86.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CBA==", + ["value"]=86.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CAg==", + ["value"]=87.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CBQ==", + ["value"]=87.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCAw==", + ["value"]=88.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCBg==", + ["value"]=88.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCAw==", + ["value"]=89.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCBw==", + ["value"]=89.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCCg==", + ["value"]=89.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCBw==", + ["value"]=90.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCCw==", + ["value"]=90.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCAA==", + ["value"]=91.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCCw==", + ["value"]=91.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCAA==", + ["value"]=92.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCg==", + ["value"]=24.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCBA==", + ["value"]=92.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCAQ==", + ["value"]=93.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCBA==", + ["value"]=93.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCAQ==", + ["value"]=94.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCBA==", + ["value"]=94.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CAQ==", + ["value"]=95.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CBA==", + ["value"]=95.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CAQ==", + ["value"]=96.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CBA==", + ["value"]=96.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CAQ==", + ["value"]=97.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CBA==", + ["value"]=97.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCAQ==", + ["value"]=98.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCBA==", + ["value"]=98.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCAQ==", + ["value"]=99.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCBA==", + ["value"]=99.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBw==", + ["value"]=28.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAg==", + ["value"]=31.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBw==", + ["value"]=31.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBQ==", + ["value"]=31.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAQ==", + ["value"]=32.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBg==", + ["value"]=32.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBg==", + ["value"]=33.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAQ==", + ["value"]=34.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBA==", + ["value"]=34.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBw==", + ["value"]=35.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBQ==", + ["value"]=35.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CCw==", + ["value"]=35.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAg==", + ["value"]=36.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAA==", + ["value"]=36.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBg==", + ["value"]=36.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBA==", + ["value"]=36.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCg==", + ["value"]=36.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAg==", + ["value"]=37.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAQ==", + ["value"]=37.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBw==", + ["value"]=37.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBQ==", + ["value"]=37.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CCw==", + ["value"]=37.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAQ==", + ["value"]=38.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBw==", + ["value"]=38.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBQ==", + ["value"]=38.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCCw==", + ["value"]=38.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAg==", + ["value"]=39.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAA==", + ["value"]=39.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBg==", + ["value"]=39.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBA==", + ["value"]=39.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCCg==", + ["value"]=39.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAg==", + ["value"]=40.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAA==", + ["value"]=40.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBg==", + ["value"]=40.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBA==", + ["value"]=40.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCCg==", + ["value"]=40.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAQ==", + ["value"]=41.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBw==", + ["value"]=41.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBQ==", + ["value"]=41.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCCw==", + ["value"]=41.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAQ==", + ["value"]=42.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBw==", + ["value"]=42.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCCw==", + ["value"]=42.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAA==", + ["value"]=43.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBg==", + ["value"]=43.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBA==", + ["value"]=43.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCCg==", + ["value"]=43.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAg==", + ["value"]=44.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAA==", + ["value"]=44.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBQ==", + ["value"]=44.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCCw==", + ["value"]=44.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAw==", + ["value"]=45.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAQ==", + ["value"]=45.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBg==", + ["value"]=45.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBA==", + ["value"]=45.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CCg==", + ["value"]=45.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAQ==", + ["value"]=46.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBw==", + ["value"]=46.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBQ==", + ["value"]=46.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CCg==", + ["value"]=46.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAg==", + ["value"]=47.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAA==", + ["value"]=47.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBQ==", + ["value"]=47.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CCw==", + ["value"]=47.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAA==", + ["value"]=48.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBg==", + ["value"]=48.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCCw==", + ["value"]=48.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAQ==", + ["value"]=49.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBg==", + ["value"]=49.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBA==", + ["value"]=49.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAQ==", + ["value"]=50.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBg==", + ["value"]=50.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBA==", + ["value"]=50.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAw==", + ["value"]=51.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAA==", + ["value"]=51.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBg==", + ["value"]=51.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCCw==", + ["value"]=51.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAw==", + ["value"]=52.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAA==", + ["value"]=52.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBQ==", + ["value"]=52.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCCw==", + ["value"]=52.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAg==", + ["value"]=53.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAA==", + ["value"]=53.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBQ==", + ["value"]=53.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCCg==", + ["value"]=53.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAg==", + ["value"]=54.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBw==", + ["value"]=54.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBA==", + ["value"]=54.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAw==", + ["value"]=55.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAQ==", + ["value"]=55.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBg==", + ["value"]=55.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CCw==", + ["value"]=55.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAg==", + ["value"]=56.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBw==", + ["value"]=56.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBQ==", + ["value"]=56.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CCg==", + ["value"]=56.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAQ==", + ["value"]=57.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBg==", + ["value"]=57.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CCw==", + ["value"]=57.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAg==", + ["value"]=58.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBw==", + ["value"]=58.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBQ==", + ["value"]=58.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCCg==", + ["value"]=58.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAQ==", + ["value"]=59.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCBg==", + ["value"]=59.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCCw==", + ["value"]=59.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAg==", + ["value"]=60.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBw==", + ["value"]=60.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBA==", + ["value"]=60.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAA==", + ["value"]=61.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBA==", + ["value"]=61.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAw==", + ["value"]=62.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAA==", + ["value"]=62.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBQ==", + ["value"]=62.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCCg==", + ["value"]=62.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAQ==", + ["value"]=63.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCBg==", + ["value"]=63.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCCw==", + ["value"]=63.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAQ==", + ["value"]=64.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCBg==", + ["value"]=64.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCCw==", + ["value"]=64.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CAg==", + ["value"]=65.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBg==", + ["value"]=65.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CCw==", + ["value"]=65.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CAg==", + ["value"]=66.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBw==", + ["value"]=66.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CCw==", + ["value"]=66.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CAg==", + ["value"]=67.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBw==", + ["value"]=67.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CCw==", + ["value"]=67.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCAg==", + ["value"]=68.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCBg==", + ["value"]=68.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCCw==", + ["value"]=68.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCAg==", + ["value"]=69.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCBg==", + ["value"]=69.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCCw==", + ["value"]=69.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAQ==", + ["value"]=70.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCBg==", + ["value"]=70.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCCg==", + ["value"]=70.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAA==", + ["value"]=71.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCBQ==", + ["value"]=71.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAw==", + ["value"]=72.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAA==", + ["value"]=72.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCBA==", + ["value"]=72.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAg==", + ["value"]=73.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCBw==", + ["value"]=73.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCCw==", + ["value"]=73.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCAQ==", + ["value"]=74.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCBg==", + ["value"]=74.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCCg==", + ["value"]=74.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CAA==", + ["value"]=75.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CBQ==", + ["value"]=75.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CAw==", + ["value"]=76.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CBw==", + ["value"]=76.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CCw==", + ["value"]=76.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CAQ==", + ["value"]=77.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CBQ==", + ["value"]=77.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CCg==", + ["value"]=77.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCAA==", + ["value"]=78.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCBA==", + ["value"]=78.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhUHWU=", + ["value"]=308.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCAg==", + ["value"]=79.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCBg==", + ["value"]=79.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCCg==", + ["value"]=79.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCAA==", + ["value"]=80.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCBA==", + ["value"]=80.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlaHWU=", + ["value"]=316.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCAg==", + ["value"]=81.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCBg==", + ["value"]=81.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCCg==", + ["value"]=81.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpdHWU=", + ["value"]=321.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCAA==", + ["value"]=82.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCCw==", + ["value"]=82.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCAQ==", + ["value"]=83.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCBQ==", + ["value"]=83.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpUHWU=", + ["value"]=328.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCAw==", + ["value"]=84.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCBw==", + ["value"]=84.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtdHWU=", + ["value"]=331.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCCw==", + ["value"]=84.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtfHWU=", + ["value"]=333.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CAA==", + ["value"]=85.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CBA==", + ["value"]=85.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CAg==", + ["value"]=86.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CBQ==", + ["value"]=86.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CAw==", + ["value"]=87.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CBw==", + ["value"]=87.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CCg==", + ["value"]=87.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCAA==", + ["value"]=88.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCBA==", + ["value"]=88.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxVHWU=", + ["value"]=349.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCAQ==", + ["value"]=89.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCBQ==", + ["value"]=89.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCAg==", + ["value"]=90.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1ZHWU=", + ["value"]=355.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCBg==", + ["value"]=90.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1aHWU=", + ["value"]=356.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCAw==", + ["value"]=91.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1UHWU=", + ["value"]=358.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCBw==", + ["value"]=91.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5cHWU=", + ["value"]=360.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCCg==", + ["value"]=91.9, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5eHWU=", + ["value"]=362.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCBw==", + ["value"]=92.4, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5YHWU=", + ["value"]=364.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCCw==", + ["value"]=92.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCAA==", + ["value"]=93.3, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCCw==", + ["value"]=93.8, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9cHWU=", + ["value"]=370.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCAQ==", + ["value"]=94.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCBA==", + ["value"]=94.7, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CAQ==", + ["value"]=95.2, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9ZHWU=", + ["value"]=375.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CBQ==", + ["value"]=95.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9bHWU=", + ["value"]=377.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CAg==", + ["value"]=96.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9VHWU=", + ["value"]=379.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CBQ==", + ["value"]=96.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBdHWU=", + ["value"]=381.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CAg==", + ["value"]=97.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBfHWU=", + ["value"]=383.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CBQ==", + ["value"]=97.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBZHWU=", + ["value"]=385.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCAg==", + ["value"]=98.1, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBbHWU=", + ["value"]=387.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCBQ==", + ["value"]=98.6, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBVHWU=", + ["value"]=389.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCAw==", + ["value"]=99.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFdHWU=", + ["value"]=391.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCBg==", + ["value"]=99.5, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFUHWU=", + ["value"]=398.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghcHWU=", + ["value"]=400.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgheHWU=", + ["value"]=402.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghYHWU=", + ["value"]=404.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghaHWU=", + ["value"]=406.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghUHWU=", + ["value"]=408.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglcHWU=", + ["value"]=410.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgleHWU=", + ["value"]=412.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglYHWU=", + ["value"]=414.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglVHWU=", + ["value"]=419.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpdHWU=", + ["value"]=421.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpfHWU=", + ["value"]=423.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpZHWU=", + ["value"]=425.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtcHWU=", + ["value"]=430.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgteHWU=", + ["value"]=432.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtYHWU=", + ["value"]=434.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtbHWU=", + ["value"]=437.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtVHWU=", + ["value"]=439.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxdHWU=", + ["value"]=441.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxfHWU=", + ["value"]=443.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxaHWU=", + ["value"]=446.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxUHWU=", + ["value"]=448.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1cHWU=", + ["value"]=450.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1fHWU=", + ["value"]=453.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1ZHWU=", + ["value"]=455.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1bHWU=", + ["value"]=457.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5cHWU=", + ["value"]=460.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5eHWU=", + ["value"]=462.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5ZHWU=", + ["value"]=465.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5bHWU=", + ["value"]=467.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9cHWU=", + ["value"]=470.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9eHWU=", + ["value"]=472.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9YHWU=", + ["value"]=474.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9bHWU=", + ["value"]=477.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9VHWU=", + ["value"]=479.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBeHWU=", + ["value"]=482.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBYHWU=", + ["value"]=484.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBbHWU=", + ["value"]=487.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBVHWU=", + ["value"]=489.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFeHWU=", + ["value"]=492.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFZHWU=", + ["value"]=495.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFbHWU=", + ["value"]=497.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhcHWU=", + ["value"]=500.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwheHWU=", + ["value"]=502.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhZHWU=", + ["value"]=505.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhUHWU=", + ["value"]=508.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlcHWU=", + ["value"]=510.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlfHWU=", + ["value"]=513.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlaHWU=", + ["value"]=516.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlUHWU=", + ["value"]=518.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpdHWU=", + ["value"]=521.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpYHWU=", + ["value"]=524.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpaHWU=", + ["value"]=526.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpVHWU=", + ["value"]=529.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwteHWU=", + ["value"]=532.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtZHWU=", + ["value"]=535.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtbHWU=", + ["value"]=537.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxcHWU=", + ["value"]=540.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxfHWU=", + ["value"]=543.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxaHWU=", + ["value"]=546.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxVHWU=", + ["value"]=549.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1eHWU=", + ["value"]=552.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1YHWU=", + ["value"]=554.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1bHWU=", + ["value"]=557.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5cHWU=", + ["value"]=560.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5fHWU=", + ["value"]=563.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5aHWU=", + ["value"]=566.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5VHWU=", + ["value"]=569.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9eHWU=", + ["value"]=572.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9ZHWU=", + ["value"]=575.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9UHWU=", + ["value"]=578.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBdHWU=", + ["value"]=581.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBYHWU=", + ["value"]=584.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBbHWU=", + ["value"]=587.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFcHWU=", + ["value"]=590.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFfHWU=", + ["value"]=593.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFaHWU=", + ["value"]=596.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFVHWU=", + ["value"]=599.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhfHWU=", + ["value"]=603.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhaHWU=", + ["value"]=606.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhVHWU=", + ["value"]=609.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAleHWU=", + ["value"]=612.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlZHWU=", + ["value"]=615.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlUHWU=", + ["value"]=618.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApeHWU=", + ["value"]=622.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApZHWU=", + ["value"]=625.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApUHWU=", + ["value"]=628.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtdHWU=", + ["value"]=631.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtZHWU=", + ["value"]=635.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtUHWU=", + ["value"]=638.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxdHWU=", + ["value"]=641.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxZHWU=", + ["value"]=645.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxUHWU=", + ["value"]=648.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1dHWU=", + ["value"]=651.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1ZHWU=", + ["value"]=655.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1UHWU=", + ["value"]=658.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5eHWU=", + ["value"]=662.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5ZHWU=", + ["value"]=665.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5VHWU=", + ["value"]=669.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9eHWU=", + ["value"]=672.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9aHWU=", + ["value"]=676.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9VHWU=", + ["value"]=679.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABfHWU=", + ["value"]=683.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABaHWU=", + ["value"]=686.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFcHWU=", + ["value"]=690.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFfHWU=", + ["value"]=693.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFbHWU=", + ["value"]=697.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhdHWU=", + ["value"]=701.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhYHWU=", + ["value"]=704.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhUHWU=", + ["value"]=708.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQleHWU=", + ["value"]=712.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlZHWU=", + ["value"]=715.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlVHWU=", + ["value"]=719.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpfHWU=", + ["value"]=723.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpbHWU=", + ["value"]=727.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtcHWU=", + ["value"]=730.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtYHWU=", + ["value"]=734.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtUHWU=", + ["value"]=738.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxeHWU=", + ["value"]=742.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxaHWU=", + ["value"]=746.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1cHWU=", + ["value"]=750.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1YHWU=", + ["value"]=754.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1bHWU=", + ["value"]=757.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5dHWU=", + ["value"]=761.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5ZHWU=", + ["value"]=765.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5VHWU=", + ["value"]=769.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9fHWU=", + ["value"]=773.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9bHWU=", + ["value"]=777.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBdHWU=", + ["value"]=781.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBaHWU=", + ["value"]=786.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFcHWU=", + ["value"]=790.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFYHWU=", + ["value"]=794.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFUHWU=", + ["value"]=798.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgheHWU=", + ["value"]=802.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghaHWU=", + ["value"]=806.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglcHWU=", + ["value"]=810.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglZHWU=", + ["value"]=815.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglVHWU=", + ["value"]=819.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpfHWU=", + ["value"]=823.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpbHWU=", + ["value"]=827.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgteHWU=", + ["value"]=832.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtaHWU=", + ["value"]=836.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxcHWU=", + ["value"]=840.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxZHWU=", + ["value"]=845.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxVHWU=", + ["value"]=849.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1YHWU=", + ["value"]=854.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1UHWU=", + ["value"]=858.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5fHWU=", + ["value"]=863.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5bHWU=", + ["value"]=867.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9eHWU=", + ["value"]=872.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9aHWU=", + ["value"]=876.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBdHWU=", + ["value"]=881.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBZHWU=", + ["value"]=885.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFcHWU=", + ["value"]=890.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFZHWU=", + ["value"]=895.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFVHWU=", + ["value"]=899.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhYHWU=", + ["value"]=904.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhVHWU=", + ["value"]=909.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlfHWU=", + ["value"]=913.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlUHWU=", + ["value"]=918.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpfHWU=", + ["value"]=923.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpUHWU=", + ["value"]=928.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtfHWU=", + ["value"]=933.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtbHWU=", + ["value"]=937.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxeHWU=", + ["value"]=942.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxbHWU=", + ["value"]=947.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1eHWU=", + ["value"]=952.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1bHWU=", + ["value"]=957.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5eHWU=", + ["value"]=962.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5bHWU=", + ["value"]=967.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9eHWU=", + ["value"]=972.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9bHWU=", + ["value"]=977.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBeHWU=", + ["value"]=982.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBbHWU=", + ["value"]=987.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFfHWU=", + ["value"]=993.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFUHWU=", + ["value"]=998.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9YHWU=", + ["value"]=274.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [6999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQldHWU=", + ["value"]=311.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpUHWU=", + ["value"]=328.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtdHWU=", + ["value"]=331.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtfHWU=", + ["value"]=333.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtaHWU=", + ["value"]=336.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxdHWU=", + ["value"]=341.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxfHWU=", + ["value"]=343.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxbHWU=", + ["value"]=347.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxUHWU=", + ["value"]=348.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1eHWU=", + ["value"]=352.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1ZHWU=", + ["value"]=355.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5dHWU=", + ["value"]=361.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5YHWU=", + ["value"]=364.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9cHWU=", + ["value"]=370.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9ZHWU=", + ["value"]=375.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9bHWU=", + ["value"]=377.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9VHWU=", + ["value"]=379.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBdHWU=", + ["value"]=381.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBfHWU=", + ["value"]=383.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBZHWU=", + ["value"]=385.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBbHWU=", + ["value"]=387.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBVHWU=", + ["value"]=389.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFdHWU=", + ["value"]=391.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFfHWU=", + ["value"]=393.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFZHWU=", + ["value"]=395.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFbHWU=", + ["value"]=397.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghfHWU=", + ["value"]=403.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghZHWU=", + ["value"]=405.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghbHWU=", + ["value"]=407.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghVHWU=", + ["value"]=409.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgldHWU=", + ["value"]=411.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglfHWU=", + ["value"]=413.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglZHWU=", + ["value"]=415.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglVHWU=", + ["value"]=419.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpdHWU=", + ["value"]=421.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpfHWU=", + ["value"]=423.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpZHWU=", + ["value"]=425.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpbHWU=", + ["value"]=427.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtcHWU=", + ["value"]=430.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgteHWU=", + ["value"]=432.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtYHWU=", + ["value"]=434.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtaHWU=", + ["value"]=436.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtUHWU=", + ["value"]=438.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxcHWU=", + ["value"]=440.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxfHWU=", + ["value"]=443.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxZHWU=", + ["value"]=445.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxbHWU=", + ["value"]=447.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxVHWU=", + ["value"]=449.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1eHWU=", + ["value"]=452.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1YHWU=", + ["value"]=454.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1aHWU=", + ["value"]=456.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1UHWU=", + ["value"]=458.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5dHWU=", + ["value"]=461.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5fHWU=", + ["value"]=463.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5ZHWU=", + ["value"]=465.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5UHWU=", + ["value"]=468.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9cHWU=", + ["value"]=470.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9eHWU=", + ["value"]=472.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9ZHWU=", + ["value"]=475.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9bHWU=", + ["value"]=477.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9VHWU=", + ["value"]=479.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBeHWU=", + ["value"]=482.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBYHWU=", + ["value"]=484.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBbHWU=", + ["value"]=487.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBVHWU=", + ["value"]=489.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFeHWU=", + ["value"]=492.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFYHWU=", + ["value"]=494.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFaHWU=", + ["value"]=496.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFVHWU=", + ["value"]=499.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhdHWU=", + ["value"]=501.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhYHWU=", + ["value"]=504.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhbHWU=", + ["value"]=507.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhVHWU=", + ["value"]=509.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwleHWU=", + ["value"]=512.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlYHWU=", + ["value"]=514.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlbHWU=", + ["value"]=517.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlVHWU=", + ["value"]=519.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpeHWU=", + ["value"]=522.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpZHWU=", + ["value"]=525.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpbHWU=", + ["value"]=527.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtcHWU=", + ["value"]=530.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwteHWU=", + ["value"]=532.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtZHWU=", + ["value"]=535.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtUHWU=", + ["value"]=538.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxcHWU=", + ["value"]=540.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxfHWU=", + ["value"]=543.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxaHWU=", + ["value"]=546.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxVHWU=", + ["value"]=549.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1dHWU=", + ["value"]=551.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1YHWU=", + ["value"]=554.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1bHWU=", + ["value"]=557.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5cHWU=", + ["value"]=560.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5eHWU=", + ["value"]=562.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5ZHWU=", + ["value"]=565.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5UHWU=", + ["value"]=568.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9dHWU=", + ["value"]=571.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9YHWU=", + ["value"]=574.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9bHWU=", + ["value"]=577.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBcHWU=", + ["value"]=580.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBeHWU=", + ["value"]=582.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBZHWU=", + ["value"]=585.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBUHWU=", + ["value"]=588.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFdHWU=", + ["value"]=591.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFYHWU=", + ["value"]=594.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFbHWU=", + ["value"]=597.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhcHWU=", + ["value"]=600.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhfHWU=", + ["value"]=603.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhaHWU=", + ["value"]=606.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhVHWU=", + ["value"]=609.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAleHWU=", + ["value"]=612.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlZHWU=", + ["value"]=615.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlUHWU=", + ["value"]=618.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApeHWU=", + ["value"]=622.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApZHWU=", + ["value"]=625.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApUHWU=", + ["value"]=628.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtdHWU=", + ["value"]=631.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtYHWU=", + ["value"]=634.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtbHWU=", + ["value"]=637.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxcHWU=", + ["value"]=640.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxYHWU=", + ["value"]=644.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxbHWU=", + ["value"]=647.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1cHWU=", + ["value"]=650.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1fHWU=", + ["value"]=653.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1bHWU=", + ["value"]=657.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5cHWU=", + ["value"]=660.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5fHWU=", + ["value"]=663.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5aHWU=", + ["value"]=666.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9cHWU=", + ["value"]=670.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9fHWU=", + ["value"]=673.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9bHWU=", + ["value"]=677.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABcHWU=", + ["value"]=680.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABfHWU=", + ["value"]=683.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABbHWU=", + ["value"]=687.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBw==", + ["value"]=2.94, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFcHWU=", + ["value"]=690.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFYHWU=", + ["value"]=694.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBA==", + ["value"]=2.97, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFbHWU=", + ["value"]=697.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCg==", + ["value"]=2.99, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhdHWU=", + ["value"]=701.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhYHWU=", + ["value"]=704.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAQ==", + ["value"]=3.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhUHWU=", + ["value"]=708.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQldHWU=", + ["value"]=711.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBg==", + ["value"]=3.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlZHWU=", + ["value"]=715.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlUHWU=", + ["value"]=718.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpeHWU=", + ["value"]=722.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpZHWU=", + ["value"]=725.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpVHWU=", + ["value"]=729.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtfHWU=", + ["value"]=733.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtaHWU=", + ["value"]=736.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxcHWU=", + ["value"]=740.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxYHWU=", + ["value"]=744.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxUHWU=", + ["value"]=748.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1dHWU=", + ["value"]=751.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1ZHWU=", + ["value"]=755.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1VHWU=", + ["value"]=759.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBQ==", + ["value"]=3.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5fHWU=", + ["value"]=763.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCw==", + ["value"]=3.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5aHWU=", + ["value"]=766.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZf", + ["value"]=3.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9cHWU=", + ["value"]=770.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9YHWU=", + ["value"]=774.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAA==", + ["value"]=3.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9UHWU=", + ["value"]=778.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBg==", + ["value"]=3.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBeHWU=", + ["value"]=782.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBA==", + ["value"]=3.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBaHWU=", + ["value"]=786.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFcHWU=", + ["value"]=790.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZY", + ["value"]=3.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFYHWU=", + ["value"]=794.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFUHWU=", + ["value"]=798.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgheHWU=", + ["value"]=802.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghaHWU=", + ["value"]=806.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBA==", + ["value"]=3.47, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglcHWU=", + ["value"]=810.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCg==", + ["value"]=3.49, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglYHWU=", + ["value"]=814.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglUHWU=", + ["value"]=818.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpeHWU=", + ["value"]=822.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpaHWU=", + ["value"]=826.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtcHWU=", + ["value"]=830.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCw==", + ["value"]=3.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtYHWU=", + ["value"]=834.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZa", + ["value"]=3.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtUHWU=", + ["value"]=838.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAQ==", + ["value"]=3.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxfHWU=", + ["value"]=843.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBw==", + ["value"]=3.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxbHWU=", + ["value"]=847.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1dHWU=", + ["value"]=851.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1ZHWU=", + ["value"]=855.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZb", + ["value"]=3.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5cHWU=", + ["value"]=860.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAQ==", + ["value"]=3.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5YHWU=", + ["value"]=864.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBw==", + ["value"]=3.74, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5UHWU=", + ["value"]=868.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBQ==", + ["value"]=3.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9fHWU=", + ["value"]=873.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9bHWU=", + ["value"]=877.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZU", + ["value"]=3.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBdHWU=", + ["value"]=881.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBaHWU=", + ["value"]=886.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAA==", + ["value"]=3.83, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFcHWU=", + ["value"]=890.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBg==", + ["value"]=3.85, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFZHWU=", + ["value"]=895.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFVHWU=", + ["value"]=899.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhYHWU=", + ["value"]=904.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhUHWU=", + ["value"]=908.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlfHWU=", + ["value"]=913.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlbHWU=", + ["value"]=917.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVCw==", + ["value"]=3.98, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpeHWU=", + ["value"]=922.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpaHWU=", + ["value"]=926.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAQ==", + ["value"]=4.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtdHWU=", + ["value"]=931.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBw==", + ["value"]=4.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtaHWU=", + ["value"]=936.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBQ==", + ["value"]=4.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxcHWU=", + ["value"]=940.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcCw==", + ["value"]=4.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxZHWU=", + ["value"]=945.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZd", + ["value"]=4.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1cHWU=", + ["value"]=950.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAQ==", + ["value"]=4.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1ZHWU=", + ["value"]=955.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBg==", + ["value"]=4.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1VHWU=", + ["value"]=959.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBA==", + ["value"]=4.17, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5YHWU=", + ["value"]=964.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdCg==", + ["value"]=4.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5VHWU=", + ["value"]=969.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAg==", + ["value"]=4.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9YHWU=", + ["value"]=974.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAA==", + ["value"]=4.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9VHWU=", + ["value"]=979.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBQ==", + ["value"]=4.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBYHWU=", + ["value"]=984.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeCw==", + ["value"]=4.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBVHWU=", + ["value"]=989.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZf", + ["value"]=4.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFYHWU=", + ["value"]=994.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAQ==", + ["value"]=4.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFVHWU=", + ["value"]=999.0, + ["unit_for_nothing"]="Uw==", + ["unit"]=5 + } + }, + [7243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBw==", + ["value"]=4.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBA==", + ["value"]=4.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfCg==", + ["value"]=4.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAg==", + ["value"]=4.41, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBw==", + ["value"]=4.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBQ==", + ["value"]=4.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYCw==", + ["value"]=4.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAg==", + ["value"]=4.51, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAA==", + ["value"]=4.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBg==", + ["value"]=4.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZCw==", + ["value"]=4.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZa", + ["value"]=4.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAQ==", + ["value"]=4.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBg==", + ["value"]=4.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBA==", + ["value"]=4.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZb", + ["value"]=4.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAQ==", + ["value"]=4.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBg==", + ["value"]=4.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBA==", + ["value"]=4.77, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZU", + ["value"]=4.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAQ==", + ["value"]=4.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBg==", + ["value"]=4.85, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBA==", + ["value"]=4.87, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZV", + ["value"]=4.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAQ==", + ["value"]=4.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBg==", + ["value"]=4.95, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBA==", + ["value"]=4.97, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZc", + ["value"]=5.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAA==", + ["value"]=5.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBg==", + ["value"]=5.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcCw==", + ["value"]=5.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZd", + ["value"]=5.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAA==", + ["value"]=5.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBQ==", + ["value"]=5.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdCw==", + ["value"]=5.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAg==", + ["value"]=5.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBw==", + ["value"]=5.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBA==", + ["value"]=5.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeCg==", + ["value"]=5.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAQ==", + ["value"]=5.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBg==", + ["value"]=5.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfCw==", + ["value"]=5.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZY", + ["value"]=5.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYAA==", + ["value"]=5.43, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBQ==", + ["value"]=5.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYCg==", + ["value"]=5.49, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAQ==", + ["value"]=5.52, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBg==", + ["value"]=5.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZCw==", + ["value"]=5.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZa", + ["value"]=5.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaAA==", + ["value"]=5.63, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBQ==", + ["value"]=5.66, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaCg==", + ["value"]=5.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbAQ==", + ["value"]=5.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBg==", + ["value"]=5.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbCw==", + ["value"]=5.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUAg==", + ["value"]=5.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBw==", + ["value"]=5.84, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBA==", + ["value"]=5.87, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZV", + ["value"]=5.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVAA==", + ["value"]=5.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBA==", + ["value"]=5.97, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZc", + ["value"]=6.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcAA==", + ["value"]=6.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBQ==", + ["value"]=6.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcCg==", + ["value"]=6.09, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdAQ==", + ["value"]=6.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBg==", + ["value"]=6.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdCg==", + ["value"]=6.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeAQ==", + ["value"]=6.22, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBg==", + ["value"]=6.25, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeCw==", + ["value"]=6.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfAQ==", + ["value"]=6.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfBg==", + ["value"]=6.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfCw==", + ["value"]=6.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYAQ==", + ["value"]=6.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYBg==", + ["value"]=6.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYCw==", + ["value"]=6.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZAQ==", + ["value"]=6.52, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBg==", + ["value"]=6.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZCg==", + ["value"]=6.59, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaAQ==", + ["value"]=6.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBg==", + ["value"]=6.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaCg==", + ["value"]=6.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbAQ==", + ["value"]=6.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBQ==", + ["value"]=6.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbCg==", + ["value"]=6.79, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUAA==", + ["value"]=6.83, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBQ==", + ["value"]=6.86, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZV", + ["value"]=6.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBw==", + ["value"]=6.94, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBA==", + ["value"]=6.97, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcAg==", + ["value"]=7.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBg==", + ["value"]=7.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcCw==", + ["value"]=7.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdAQ==", + ["value"]=7.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBQ==", + ["value"]=7.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdCg==", + ["value"]=7.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeAA==", + ["value"]=7.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeBA==", + ["value"]=7.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfAg==", + ["value"]=7.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfBw==", + ["value"]=7.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfCw==", + ["value"]=7.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYAQ==", + ["value"]=7.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYBQ==", + ["value"]=7.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZ", + ["value"]=7.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZBw==", + ["value"]=7.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZCw==", + ["value"]=7.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaAQ==", + ["value"]=7.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaBQ==", + ["value"]=7.66, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZb", + ["value"]=7.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbBw==", + ["value"]=7.74, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbCw==", + ["value"]=7.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUAQ==", + ["value"]=7.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUBQ==", + ["value"]=7.86, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZV", + ["value"]=7.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVBw==", + ["value"]=7.94, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVCw==", + ["value"]=7.98, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcAQ==", + ["value"]=8.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcBA==", + ["value"]=8.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdAg==", + ["value"]=8.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdBg==", + ["value"]=8.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdCg==", + ["value"]=8.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeAA==", + ["value"]=8.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeCw==", + ["value"]=8.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfAQ==", + ["value"]=8.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfBQ==", + ["value"]=8.36, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYAg==", + ["value"]=8.41, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYBg==", + ["value"]=8.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZ", + ["value"]=8.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZBw==", + ["value"]=8.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZCw==", + ["value"]=8.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaAA==", + ["value"]=8.63, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaBA==", + ["value"]=8.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbAQ==", + ["value"]=8.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbBQ==", + ["value"]=8.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUAg==", + ["value"]=8.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUBQ==", + ["value"]=8.86, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZV", + ["value"]=8.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVBg==", + ["value"]=8.95, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZc", + ["value"]=9.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcBw==", + ["value"]=9.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcCg==", + ["value"]=9.09, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdBw==", + ["value"]=9.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdCw==", + ["value"]=9.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeAA==", + ["value"]=9.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeCw==", + ["value"]=9.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfAA==", + ["value"]=9.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfCw==", + ["value"]=9.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYAA==", + ["value"]=9.43, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYCw==", + ["value"]=9.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZAQ==", + ["value"]=9.52, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZBA==", + ["value"]=9.57, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaAQ==", + ["value"]=9.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaBA==", + ["value"]=9.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbAA==", + ["value"]=9.73, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbCw==", + ["value"]=9.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUAA==", + ["value"]=9.83, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUCw==", + ["value"]=9.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVAA==", + ["value"]=9.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVCw==", + ["value"]=9.98, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBQ==", + ["value"]=2.86, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCg==", + ["value"]=2.89, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCg==", + ["value"]=2.99, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAQ==", + ["value"]=3.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBg==", + ["value"]=3.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCg==", + ["value"]=3.19, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBQ==", + ["value"]=3.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBw==", + ["value"]=3.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBA==", + ["value"]=3.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAg==", + ["value"]=3.41, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCg==", + ["value"]=3.49, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBQ==", + ["value"]=3.56, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZCw==", + ["value"]=3.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZa", + ["value"]=3.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAQ==", + ["value"]=3.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBw==", + ["value"]=3.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBg==", + ["value"]=3.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBA==", + ["value"]=3.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaCg==", + ["value"]=3.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAg==", + ["value"]=3.71, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAA==", + ["value"]=3.73, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBg==", + ["value"]=3.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBA==", + ["value"]=3.77, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZU", + ["value"]=3.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVCw==", + ["value"]=3.98, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAQ==", + ["value"]=4.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBw==", + ["value"]=4.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBQ==", + ["value"]=4.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcCw==", + ["value"]=4.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZd", + ["value"]=4.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAQ==", + ["value"]=4.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBw==", + ["value"]=4.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBQ==", + ["value"]=4.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdCw==", + ["value"]=4.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZe", + ["value"]=4.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAQ==", + ["value"]=4.22, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBg==", + ["value"]=4.25, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBA==", + ["value"]=4.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeCg==", + ["value"]=4.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAg==", + ["value"]=4.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAA==", + ["value"]=4.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBg==", + ["value"]=4.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBA==", + ["value"]=4.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAQ==", + ["value"]=4.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBw==", + ["value"]=4.44, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBQ==", + ["value"]=4.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYCw==", + ["value"]=4.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAg==", + ["value"]=4.51, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAA==", + ["value"]=4.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBg==", + ["value"]=4.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZCw==", + ["value"]=4.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZa", + ["value"]=4.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAQ==", + ["value"]=4.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBw==", + ["value"]=4.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBA==", + ["value"]=4.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaCg==", + ["value"]=4.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbAg==", + ["value"]=4.71, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBw==", + ["value"]=4.74, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBQ==", + ["value"]=4.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbCg==", + ["value"]=4.79, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAg==", + ["value"]=4.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAA==", + ["value"]=4.83, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBQ==", + ["value"]=4.86, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUCw==", + ["value"]=4.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAg==", + ["value"]=4.91, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAA==", + ["value"]=4.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBQ==", + ["value"]=4.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVCw==", + ["value"]=4.98, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAg==", + ["value"]=5.01, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAA==", + ["value"]=5.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBQ==", + ["value"]=5.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcCw==", + ["value"]=5.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdAg==", + ["value"]=5.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdAA==", + ["value"]=5.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBQ==", + ["value"]=5.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdCw==", + ["value"]=5.18, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeAg==", + ["value"]=5.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBw==", + ["value"]=5.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBQ==", + ["value"]=5.26, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeCg==", + ["value"]=5.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfAg==", + ["value"]=5.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBw==", + ["value"]=5.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCg==", + ["value"]=24.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBA==", + ["value"]=5.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfCg==", + ["value"]=5.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYAQ==", + ["value"]=5.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBg==", + ["value"]=5.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBw==", + ["value"]=25.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYCw==", + ["value"]=5.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZ", + ["value"]=5.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZAA==", + ["value"]=5.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBQ==", + ["value"]=5.56, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZCg==", + ["value"]=5.59, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaAg==", + ["value"]=5.61, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBw==", + ["value"]=5.64, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBA==", + ["value"]=5.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZb", + ["value"]=5.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbAA==", + ["value"]=5.73, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBQ==", + ["value"]=5.76, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbCw==", + ["value"]=5.78, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUAg==", + ["value"]=5.81, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBw==", + ["value"]=5.84, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBA==", + ["value"]=5.87, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZV", + ["value"]=5.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVAA==", + ["value"]=5.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBQ==", + ["value"]=5.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVCg==", + ["value"]=5.99, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcAQ==", + ["value"]=6.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAQ==", + ["value"]=28.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcBg==", + ["value"]=6.05, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBw==", + ["value"]=28.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcCw==", + ["value"]=6.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBg==", + ["value"]=28.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdAg==", + ["value"]=6.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBw==", + ["value"]=6.14, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCw==", + ["value"]=28.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBA==", + ["value"]=6.17, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZe", + ["value"]=6.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeAA==", + ["value"]=6.23, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBA==", + ["value"]=6.27, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBw==", + ["value"]=29.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZf", + ["value"]=6.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfAA==", + ["value"]=6.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBA==", + ["value"]=29.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBQ==", + ["value"]=6.36, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfCg==", + ["value"]=6.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYAQ==", + ["value"]=6.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBQ==", + ["value"]=6.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYCg==", + ["value"]=6.49, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZAQ==", + ["value"]=6.52, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZBg==", + ["value"]=6.55, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZCg==", + ["value"]=6.59, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaAQ==", + ["value"]=6.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaBg==", + ["value"]=6.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaCg==", + ["value"]=6.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbAQ==", + ["value"]=6.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBg==", + ["value"]=6.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCw==", + ["value"]=31.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbCg==", + ["value"]=6.79, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUAQ==", + ["value"]=6.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAg==", + ["value"]=32.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUBg==", + ["value"]=6.85, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAA==", + ["value"]=32.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUCg==", + ["value"]=6.89, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBg==", + ["value"]=32.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVAQ==", + ["value"]=6.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVBQ==", + ["value"]=6.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCCw==", + ["value"]=32.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVCg==", + ["value"]=6.99, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcAA==", + ["value"]=7.03, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcBQ==", + ["value"]=7.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAA==", + ["value"]=33.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZd", + ["value"]=7.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBg==", + ["value"]=33.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdAA==", + ["value"]=7.13, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdBA==", + ["value"]=7.17, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeAg==", + ["value"]=7.21, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeBw==", + ["value"]=7.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAQ==", + ["value"]=34.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeCw==", + ["value"]=7.28, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfAg==", + ["value"]=7.31, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfBg==", + ["value"]=7.35, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCCw==", + ["value"]=34.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfCg==", + ["value"]=7.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYAQ==", + ["value"]=7.42, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYBQ==", + ["value"]=7.46, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZ", + ["value"]=7.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBg==", + ["value"]=35.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZBw==", + ["value"]=7.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBA==", + ["value"]=35.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZBA==", + ["value"]=7.57, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CCg==", + ["value"]=35.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaAg==", + ["value"]=7.61, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAw==", + ["value"]=36.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaBg==", + ["value"]=7.65, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAQ==", + ["value"]=36.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaCg==", + ["value"]=7.69, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBw==", + ["value"]=36.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbAA==", + ["value"]=7.73, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBQ==", + ["value"]=36.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbBA==", + ["value"]=7.77, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZU", + ["value"]=7.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAw==", + ["value"]=37.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUBw==", + ["value"]=7.84, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAQ==", + ["value"]=37.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUCw==", + ["value"]=7.88, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBw==", + ["value"]=37.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVAQ==", + ["value"]=7.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBQ==", + ["value"]=37.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVBQ==", + ["value"]=7.96, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CCw==", + ["value"]=37.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZc", + ["value"]=8.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcBw==", + ["value"]=8.04, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAQ==", + ["value"]=38.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcCw==", + ["value"]=8.08, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBw==", + ["value"]=38.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdAQ==", + ["value"]=8.12, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBQ==", + ["value"]=38.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdBQ==", + ["value"]=8.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCCw==", + ["value"]=38.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZe", + ["value"]=8.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeBw==", + ["value"]=8.24, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeCg==", + ["value"]=8.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfAA==", + ["value"]=8.33, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfBA==", + ["value"]=8.37, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCCw==", + ["value"]=39.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYAg==", + ["value"]=8.41, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYBg==", + ["value"]=8.45, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAQ==", + ["value"]=40.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZ", + ["value"]=8.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBw==", + ["value"]=40.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZBw==", + ["value"]=8.54, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBQ==", + ["value"]=40.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZCw==", + ["value"]=8.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCCw==", + ["value"]=40.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaAQ==", + ["value"]=8.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAw==", + ["value"]=41.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaBA==", + ["value"]=8.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAA==", + ["value"]=41.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbAg==", + ["value"]=8.71, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBg==", + ["value"]=41.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbBg==", + ["value"]=8.75, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBA==", + ["value"]=41.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZU", + ["value"]=8.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCCg==", + ["value"]=41.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUBw==", + ["value"]=8.84, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAg==", + ["value"]=42.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUCg==", + ["value"]=8.89, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAA==", + ["value"]=42.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVAA==", + ["value"]=8.93, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVBA==", + ["value"]=8.97, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCCw==", + ["value"]=42.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcAQ==", + ["value"]=9.02, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcBQ==", + ["value"]=9.06, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAQ==", + ["value"]=43.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdAg==", + ["value"]=9.11, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBg==", + ["value"]=43.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdBQ==", + ["value"]=9.16, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBA==", + ["value"]=43.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZe", + ["value"]=9.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCCg==", + ["value"]=43.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeBg==", + ["value"]=9.25, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAg==", + ["value"]=44.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeCg==", + ["value"]=9.29, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBw==", + ["value"]=44.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfBw==", + ["value"]=9.34, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBQ==", + ["value"]=44.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfCg==", + ["value"]=9.39, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCCw==", + ["value"]=44.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYAA==", + ["value"]=9.43, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAg==", + ["value"]=45.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYCw==", + ["value"]=9.48, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAA==", + ["value"]=45.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZAA==", + ["value"]=9.53, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBg==", + ["value"]=45.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZCw==", + ["value"]=9.58, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CCw==", + ["value"]=45.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaAQ==", + ["value"]=9.62, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAw==", + ["value"]=46.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaBA==", + ["value"]=9.67, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAA==", + ["value"]=46.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbAQ==", + ["value"]=9.72, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBg==", + ["value"]=46.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbBA==", + ["value"]=9.77, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBA==", + ["value"]=46.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUAQ==", + ["value"]=9.82, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAw==", + ["value"]=47.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUBA==", + ["value"]=9.87, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAQ==", + ["value"]=47.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVAQ==", + ["value"]=9.92, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBg==", + ["value"]=47.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVBA==", + ["value"]=9.97, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBA==", + ["value"]=47.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAQ==", + ["value"]=48.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBg==", + ["value"]=48.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBA==", + ["value"]=48.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAQ==", + ["value"]=49.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBg==", + ["value"]=49.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCCw==", + ["value"]=49.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAA==", + ["value"]=50.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBg==", + ["value"]=50.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCCw==", + ["value"]=50.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAg==", + ["value"]=51.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAA==", + ["value"]=51.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBQ==", + ["value"]=51.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCCg==", + ["value"]=51.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAg==", + ["value"]=52.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBw==", + ["value"]=52.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBA==", + ["value"]=52.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAQ==", + ["value"]=53.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBg==", + ["value"]=53.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCCw==", + ["value"]=53.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAg==", + ["value"]=54.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAA==", + ["value"]=54.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBQ==", + ["value"]=54.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCCg==", + ["value"]=54.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAQ==", + ["value"]=55.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBg==", + ["value"]=55.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CCw==", + ["value"]=55.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAg==", + ["value"]=56.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBw==", + ["value"]=56.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBA==", + ["value"]=56.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAQ==", + ["value"]=57.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CBg==", + ["value"]=57.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CCw==", + ["value"]=57.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAg==", + ["value"]=58.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCBg==", + ["value"]=58.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCCw==", + ["value"]=58.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAg==", + ["value"]=59.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBw==", + ["value"]=59.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBA==", + ["value"]=59.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAw==", + ["value"]=60.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAA==", + ["value"]=60.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBQ==", + ["value"]=60.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCCg==", + ["value"]=60.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAA==", + ["value"]=61.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBQ==", + ["value"]=61.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCCg==", + ["value"]=61.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAQ==", + ["value"]=62.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCBg==", + ["value"]=62.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCCg==", + ["value"]=62.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAQ==", + ["value"]=63.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCBg==", + ["value"]=63.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCCg==", + ["value"]=63.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAQ==", + ["value"]=64.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCBg==", + ["value"]=64.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCCg==", + ["value"]=64.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAQ==", + ["value"]=65.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CBg==", + ["value"]=65.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CCg==", + ["value"]=65.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAQ==", + ["value"]=66.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CBQ==", + ["value"]=66.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CCg==", + ["value"]=66.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAA==", + ["value"]=67.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBQ==", + ["value"]=67.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAw==", + ["value"]=68.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAA==", + ["value"]=68.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCBA==", + ["value"]=68.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAw==", + ["value"]=69.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCBw==", + ["value"]=69.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCCw==", + ["value"]=69.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAg==", + ["value"]=70.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCBg==", + ["value"]=70.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCCg==", + ["value"]=70.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAQ==", + ["value"]=71.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCBQ==", + ["value"]=71.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAw==", + ["value"]=72.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAA==", + ["value"]=72.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCBA==", + ["value"]=72.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCAg==", + ["value"]=73.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCBg==", + ["value"]=73.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCCg==", + ["value"]=73.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAQ==", + ["value"]=74.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCBQ==", + ["value"]=74.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CAw==", + ["value"]=75.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CBw==", + ["value"]=75.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CCw==", + ["value"]=75.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAQ==", + ["value"]=76.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CBQ==", + ["value"]=76.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CAw==", + ["value"]=77.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CBw==", + ["value"]=77.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CCw==", + ["value"]=77.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCAQ==", + ["value"]=78.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCBQ==", + ["value"]=78.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCAw==", + ["value"]=79.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCBw==", + ["value"]=79.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCCw==", + ["value"]=79.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCAA==", + ["value"]=80.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCBA==", + ["value"]=80.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCAg==", + ["value"]=81.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCBg==", + ["value"]=81.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCAw==", + ["value"]=82.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCBw==", + ["value"]=82.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCCw==", + ["value"]=82.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCAQ==", + ["value"]=83.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCBA==", + ["value"]=83.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCAg==", + ["value"]=84.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCBg==", + ["value"]=84.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CAw==", + ["value"]=85.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CBw==", + ["value"]=85.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CCg==", + ["value"]=85.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CAA==", + ["value"]=86.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CCw==", + ["value"]=86.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CAQ==", + ["value"]=87.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CBA==", + ["value"]=87.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCAg==", + ["value"]=88.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCBQ==", + ["value"]=88.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCAg==", + ["value"]=89.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCBg==", + ["value"]=89.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCAw==", + ["value"]=90.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCBg==", + ["value"]=90.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCCg==", + ["value"]=90.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCBw==", + ["value"]=91.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCCg==", + ["value"]=91.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCBw==", + ["value"]=92.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCCw==", + ["value"]=92.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCAA==", + ["value"]=93.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCCw==", + ["value"]=93.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCAA==", + ["value"]=94.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCCw==", + ["value"]=94.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CAA==", + ["value"]=95.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CCw==", + ["value"]=95.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CAA==", + ["value"]=96.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CCw==", + ["value"]=96.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CAA==", + ["value"]=97.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CCw==", + ["value"]=97.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCAA==", + ["value"]=98.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCCw==", + ["value"]=98.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCAA==", + ["value"]=99.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCCg==", + ["value"]=99.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCg==", + ["value"]=27.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBw==", + ["value"]=28.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBw==", + ["value"]=29.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBA==", + ["value"]=29.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAA==", + ["value"]=30.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBQ==", + ["value"]=30.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAg==", + ["value"]=31.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAA==", + ["value"]=31.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBw==", + ["value"]=31.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBQ==", + ["value"]=31.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAQ==", + ["value"]=32.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBg==", + ["value"]=32.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAA==", + ["value"]=33.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBg==", + ["value"]=33.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCw==", + ["value"]=33.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAQ==", + ["value"]=34.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBg==", + ["value"]=34.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBA==", + ["value"]=34.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAg==", + ["value"]=35.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAQ==", + ["value"]=35.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBw==", + ["value"]=35.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBQ==", + ["value"]=35.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CCw==", + ["value"]=35.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CCg==", + ["value"]=35.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAg==", + ["value"]=36.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAA==", + ["value"]=36.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBg==", + ["value"]=36.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBA==", + ["value"]=36.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAw==", + ["value"]=37.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAQ==", + ["value"]=37.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBw==", + ["value"]=37.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBQ==", + ["value"]=37.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CCw==", + ["value"]=37.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAQ==", + ["value"]=38.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAA==", + ["value"]=38.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBg==", + ["value"]=38.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBA==", + ["value"]=38.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCCg==", + ["value"]=38.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAg==", + ["value"]=39.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAA==", + ["value"]=39.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBg==", + ["value"]=39.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBA==", + ["value"]=39.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCCg==", + ["value"]=39.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAg==", + ["value"]=40.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAA==", + ["value"]=40.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBg==", + ["value"]=40.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBA==", + ["value"]=40.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCCg==", + ["value"]=40.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAg==", + ["value"]=41.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAA==", + ["value"]=41.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBg==", + ["value"]=41.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBA==", + ["value"]=41.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAQ==", + ["value"]=42.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBw==", + ["value"]=42.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCCw==", + ["value"]=42.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAQ==", + ["value"]=43.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBw==", + ["value"]=43.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [7999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBA==", + ["value"]=43.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCCg==", + ["value"]=43.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAg==", + ["value"]=44.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAA==", + ["value"]=44.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBg==", + ["value"]=44.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCCw==", + ["value"]=44.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAw==", + ["value"]=45.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAQ==", + ["value"]=45.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBw==", + ["value"]=45.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBA==", + ["value"]=45.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CCg==", + ["value"]=45.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAg==", + ["value"]=46.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBw==", + ["value"]=46.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBQ==", + ["value"]=46.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CCw==", + ["value"]=46.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAg==", + ["value"]=47.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAA==", + ["value"]=47.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBg==", + ["value"]=47.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CCw==", + ["value"]=47.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAQ==", + ["value"]=48.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBg==", + ["value"]=48.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBA==", + ["value"]=48.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAQ==", + ["value"]=49.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBg==", + ["value"]=49.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBA==", + ["value"]=49.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAw==", + ["value"]=50.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAQ==", + ["value"]=50.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBg==", + ["value"]=50.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBA==", + ["value"]=50.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAw==", + ["value"]=51.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAQ==", + ["value"]=51.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBg==", + ["value"]=51.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBA==", + ["value"]=51.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAw==", + ["value"]=52.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAA==", + ["value"]=52.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBg==", + ["value"]=52.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCCw==", + ["value"]=52.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAA==", + ["value"]=53.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9YHWU=", + ["value"]=274.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBQ==", + ["value"]=53.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCCw==", + ["value"]=53.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAg==", + ["value"]=54.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBw==", + ["value"]=54.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBA==", + ["value"]=54.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCCg==", + ["value"]=54.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAQ==", + ["value"]=55.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBg==", + ["value"]=55.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CCw==", + ["value"]=55.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAw==", + ["value"]=56.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAA==", + ["value"]=56.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBQ==", + ["value"]=56.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CCg==", + ["value"]=56.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAQ==", + ["value"]=57.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBg==", + ["value"]=57.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBA==", + ["value"]=57.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAw==", + ["value"]=58.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAA==", + ["value"]=58.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBQ==", + ["value"]=58.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQheHWU=", + ["value"]=302.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCCg==", + ["value"]=58.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAQ==", + ["value"]=59.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhZHWU=", + ["value"]=305.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCBg==", + ["value"]=59.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCCw==", + ["value"]=59.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAg==", + ["value"]=60.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBw==", + ["value"]=60.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBA==", + ["value"]=60.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAA==", + ["value"]=61.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBQ==", + ["value"]=61.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCCg==", + ["value"]=61.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAQ==", + ["value"]=62.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBg==", + ["value"]=62.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCCg==", + ["value"]=62.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAQ==", + ["value"]=63.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCBg==", + ["value"]=63.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpUHWU=", + ["value"]=328.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCCw==", + ["value"]=63.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAg==", + ["value"]=64.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCBw==", + ["value"]=64.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCCw==", + ["value"]=64.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtZHWU=", + ["value"]=335.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CAg==", + ["value"]=65.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBw==", + ["value"]=65.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBA==", + ["value"]=65.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxdHWU=", + ["value"]=341.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CAg==", + ["value"]=66.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxeHWU=", + ["value"]=342.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBw==", + ["value"]=66.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBA==", + ["value"]=66.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxaHWU=", + ["value"]=346.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CAg==", + ["value"]=67.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxUHWU=", + ["value"]=348.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBw==", + ["value"]=67.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBA==", + ["value"]=67.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCAg==", + ["value"]=68.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCBw==", + ["value"]=68.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1ZHWU=", + ["value"]=355.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCCw==", + ["value"]=68.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCAg==", + ["value"]=69.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCBw==", + ["value"]=69.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5dHWU=", + ["value"]=361.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCCw==", + ["value"]=69.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5eHWU=", + ["value"]=362.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAg==", + ["value"]=70.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5YHWU=", + ["value"]=364.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCBg==", + ["value"]=70.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCCw==", + ["value"]=70.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAQ==", + ["value"]=71.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9cHWU=", + ["value"]=370.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCBQ==", + ["value"]=71.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCCg==", + ["value"]=71.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAA==", + ["value"]=72.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9aHWU=", + ["value"]=376.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCBQ==", + ["value"]=72.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAw==", + ["value"]=73.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBcHWU=", + ["value"]=380.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCBw==", + ["value"]=73.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBeHWU=", + ["value"]=382.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCBA==", + ["value"]=73.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCAg==", + ["value"]=74.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBaHWU=", + ["value"]=386.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCBg==", + ["value"]=74.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBUHWU=", + ["value"]=388.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCCw==", + ["value"]=74.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CAQ==", + ["value"]=75.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFeHWU=", + ["value"]=392.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CBQ==", + ["value"]=75.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFYHWU=", + ["value"]=394.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CAw==", + ["value"]=76.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFaHWU=", + ["value"]=396.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CBw==", + ["value"]=76.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFUHWU=", + ["value"]=398.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CBA==", + ["value"]=76.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghcHWU=", + ["value"]=400.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CAg==", + ["value"]=77.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgheHWU=", + ["value"]=402.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CBg==", + ["value"]=77.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghYHWU=", + ["value"]=404.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CCg==", + ["value"]=77.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghaHWU=", + ["value"]=406.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCAA==", + ["value"]=78.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghVHWU=", + ["value"]=409.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCBA==", + ["value"]=78.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgldHWU=", + ["value"]=411.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCAg==", + ["value"]=79.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglfHWU=", + ["value"]=413.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCBg==", + ["value"]=79.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglZHWU=", + ["value"]=415.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCCg==", + ["value"]=79.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCAA==", + ["value"]=80.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglVHWU=", + ["value"]=419.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCBA==", + ["value"]=80.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpdHWU=", + ["value"]=421.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCAg==", + ["value"]=81.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpYHWU=", + ["value"]=424.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCBg==", + ["value"]=81.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpaHWU=", + ["value"]=426.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCCg==", + ["value"]=81.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpUHWU=", + ["value"]=428.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCAA==", + ["value"]=82.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtcHWU=", + ["value"]=430.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCBA==", + ["value"]=82.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtfHWU=", + ["value"]=433.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCAg==", + ["value"]=83.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtZHWU=", + ["value"]=435.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCBg==", + ["value"]=83.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtbHWU=", + ["value"]=437.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCCg==", + ["value"]=83.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtVHWU=", + ["value"]=439.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCBw==", + ["value"]=84.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxeHWU=", + ["value"]=442.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCCw==", + ["value"]=84.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxYHWU=", + ["value"]=444.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CAQ==", + ["value"]=85.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxaHWU=", + ["value"]=446.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CBQ==", + ["value"]=85.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxVHWU=", + ["value"]=449.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CAg==", + ["value"]=86.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1dHWU=", + ["value"]=451.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CBg==", + ["value"]=86.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1fHWU=", + ["value"]=453.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CCg==", + ["value"]=86.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1aHWU=", + ["value"]=456.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CBw==", + ["value"]=87.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1UHWU=", + ["value"]=458.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CCw==", + ["value"]=87.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5cHWU=", + ["value"]=460.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCAQ==", + ["value"]=88.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5fHWU=", + ["value"]=463.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCBA==", + ["value"]=88.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5ZHWU=", + ["value"]=465.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCAg==", + ["value"]=89.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5UHWU=", + ["value"]=468.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCBQ==", + ["value"]=89.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9cHWU=", + ["value"]=470.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCAw==", + ["value"]=90.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9fHWU=", + ["value"]=473.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCBg==", + ["value"]=90.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9ZHWU=", + ["value"]=475.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCCg==", + ["value"]=90.9, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9bHWU=", + ["value"]=477.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCBw==", + ["value"]=91.4, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBcHWU=", + ["value"]=480.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCCw==", + ["value"]=91.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBeHWU=", + ["value"]=482.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCAA==", + ["value"]=92.3, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBZHWU=", + ["value"]=485.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCCw==", + ["value"]=92.8, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBbHWU=", + ["value"]=487.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCAQ==", + ["value"]=93.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFcHWU=", + ["value"]=490.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCBA==", + ["value"]=93.7, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFfHWU=", + ["value"]=493.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCAQ==", + ["value"]=94.2, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFZHWU=", + ["value"]=495.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCBQ==", + ["value"]=94.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFUHWU=", + ["value"]=498.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CAg==", + ["value"]=95.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhcHWU=", + ["value"]=500.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CBQ==", + ["value"]=95.6, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhfHWU=", + ["value"]=503.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CAg==", + ["value"]=96.1, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhaHWU=", + ["value"]=506.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CBg==", + ["value"]=96.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhUHWU=", + ["value"]=508.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CAw==", + ["value"]=97.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwldHWU=", + ["value"]=511.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CBg==", + ["value"]=97.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlfHWU=", + ["value"]=513.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCAw==", + ["value"]=98.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlaHWU=", + ["value"]=516.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCBg==", + ["value"]=98.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlVHWU=", + ["value"]=519.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCAw==", + ["value"]=99.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpeHWU=", + ["value"]=522.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCBg==", + ["value"]=99.5, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpYHWU=", + ["value"]=524.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpbHWU=", + ["value"]=527.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtcHWU=", + ["value"]=530.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtfHWU=", + ["value"]=533.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtZHWU=", + ["value"]=535.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtUHWU=", + ["value"]=538.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxdHWU=", + ["value"]=541.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxYHWU=", + ["value"]=544.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxbHWU=", + ["value"]=547.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxVHWU=", + ["value"]=549.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1eHWU=", + ["value"]=552.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1ZHWU=", + ["value"]=555.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1UHWU=", + ["value"]=558.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5dHWU=", + ["value"]=561.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5YHWU=", + ["value"]=564.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5bHWU=", + ["value"]=567.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9cHWU=", + ["value"]=570.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9fHWU=", + ["value"]=573.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9aHWU=", + ["value"]=576.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9VHWU=", + ["value"]=579.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBeHWU=", + ["value"]=582.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBZHWU=", + ["value"]=585.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBUHWU=", + ["value"]=588.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFdHWU=", + ["value"]=591.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFYHWU=", + ["value"]=594.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFbHWU=", + ["value"]=597.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhcHWU=", + ["value"]=600.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhfHWU=", + ["value"]=603.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhaHWU=", + ["value"]=606.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlcHWU=", + ["value"]=610.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlfHWU=", + ["value"]=613.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlaHWU=", + ["value"]=616.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlVHWU=", + ["value"]=619.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApeHWU=", + ["value"]=622.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApaHWU=", + ["value"]=626.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApVHWU=", + ["value"]=629.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAteHWU=", + ["value"]=632.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtZHWU=", + ["value"]=635.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtVHWU=", + ["value"]=639.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxeHWU=", + ["value"]=642.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxZHWU=", + ["value"]=645.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxVHWU=", + ["value"]=649.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1eHWU=", + ["value"]=652.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1aHWU=", + ["value"]=656.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1VHWU=", + ["value"]=659.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5eHWU=", + ["value"]=662.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5aHWU=", + ["value"]=666.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5VHWU=", + ["value"]=669.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9fHWU=", + ["value"]=673.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9aHWU=", + ["value"]=676.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABcHWU=", + ["value"]=680.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABfHWU=", + ["value"]=683.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABbHWU=", + ["value"]=687.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFdHWU=", + ["value"]=691.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFYHWU=", + ["value"]=694.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFUHWU=", + ["value"]=698.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhdHWU=", + ["value"]=701.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhZHWU=", + ["value"]=705.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhVHWU=", + ["value"]=709.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQleHWU=", + ["value"]=712.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlaHWU=", + ["value"]=716.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpcHWU=", + ["value"]=720.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpYHWU=", + ["value"]=724.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpbHWU=", + ["value"]=727.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtdHWU=", + ["value"]=731.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtZHWU=", + ["value"]=735.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtVHWU=", + ["value"]=739.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxfHWU=", + ["value"]=743.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxbHWU=", + ["value"]=747.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1cHWU=", + ["value"]=750.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1YHWU=", + ["value"]=754.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1UHWU=", + ["value"]=758.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5eHWU=", + ["value"]=762.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5aHWU=", + ["value"]=766.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9cHWU=", + ["value"]=770.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9YHWU=", + ["value"]=774.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9UHWU=", + ["value"]=778.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBeHWU=", + ["value"]=782.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBaHWU=", + ["value"]=786.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFdHWU=", + ["value"]=791.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFZHWU=", + ["value"]=795.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFVHWU=", + ["value"]=799.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghfHWU=", + ["value"]=803.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghbHWU=", + ["value"]=807.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgldHWU=", + ["value"]=811.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglaHWU=", + ["value"]=816.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpcHWU=", + ["value"]=820.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpYHWU=", + ["value"]=824.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpUHWU=", + ["value"]=828.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtfHWU=", + ["value"]=833.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtbHWU=", + ["value"]=837.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxdHWU=", + ["value"]=841.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxaHWU=", + ["value"]=846.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1cHWU=", + ["value"]=850.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1ZHWU=", + ["value"]=855.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1VHWU=", + ["value"]=859.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5YHWU=", + ["value"]=864.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5UHWU=", + ["value"]=868.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9fHWU=", + ["value"]=873.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9bHWU=", + ["value"]=877.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBeHWU=", + ["value"]=882.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBaHWU=", + ["value"]=886.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFdHWU=", + ["value"]=891.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFaHWU=", + ["value"]=896.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhcHWU=", + ["value"]=900.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhZHWU=", + ["value"]=905.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlcHWU=", + ["value"]=910.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlYHWU=", + ["value"]=914.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlVHWU=", + ["value"]=919.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpYHWU=", + ["value"]=924.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpVHWU=", + ["value"]=929.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtYHWU=", + ["value"]=934.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtUHWU=", + ["value"]=938.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxfHWU=", + ["value"]=943.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxUHWU=", + ["value"]=948.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1fHWU=", + ["value"]=953.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1UHWU=", + ["value"]=958.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5fHWU=", + ["value"]=963.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5UHWU=", + ["value"]=968.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9fHWU=", + ["value"]=973.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9UHWU=", + ["value"]=978.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBfHWU=", + ["value"]=983.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBVHWU=", + ["value"]=989.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFYHWU=", + ["value"]=994.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFVHWU=", + ["value"]=999.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtYHWU=", + ["value"]=234.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5dHWU=", + ["value"]=261.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5ZHWU=", + ["value"]=265.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5VHWU=", + ["value"]=269.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9YHWU=", + ["value"]=274.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFeHWU=", + ["value"]=292.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpdHWU=", + ["value"]=321.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpUHWU=", + ["value"]=328.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtdHWU=", + ["value"]=331.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtfHWU=", + ["value"]=333.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtaHWU=", + ["value"]=336.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxcHWU=", + ["value"]=340.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxdHWU=", + ["value"]=341.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxfHWU=", + ["value"]=343.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxaHWU=", + ["value"]=346.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxUHWU=", + ["value"]=348.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1eHWU=", + ["value"]=352.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1ZHWU=", + ["value"]=355.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5cHWU=", + ["value"]=360.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5eHWU=", + ["value"]=362.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5YHWU=", + ["value"]=364.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9cHWU=", + ["value"]=370.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9dHWU=", + ["value"]=371.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9fHWU=", + ["value"]=373.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9ZHWU=", + ["value"]=375.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9bHWU=", + ["value"]=377.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9VHWU=", + ["value"]=379.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBdHWU=", + ["value"]=381.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBfHWU=", + ["value"]=383.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBZHWU=", + ["value"]=385.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBbHWU=", + ["value"]=387.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBVHWU=", + ["value"]=389.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFeHWU=", + ["value"]=392.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFYHWU=", + ["value"]=394.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFaHWU=", + ["value"]=396.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFUHWU=", + ["value"]=398.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghcHWU=", + ["value"]=400.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgheHWU=", + ["value"]=402.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghYHWU=", + ["value"]=404.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghaHWU=", + ["value"]=406.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghUHWU=", + ["value"]=408.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglcHWU=", + ["value"]=410.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgleHWU=", + ["value"]=412.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglZHWU=", + ["value"]=415.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglbHWU=", + ["value"]=417.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglVHWU=", + ["value"]=419.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpdHWU=", + ["value"]=421.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpfHWU=", + ["value"]=423.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpZHWU=", + ["value"]=425.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpbHWU=", + ["value"]=427.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpVHWU=", + ["value"]=429.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtdHWU=", + ["value"]=431.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtYHWU=", + ["value"]=434.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtaHWU=", + ["value"]=436.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtUHWU=", + ["value"]=438.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxcHWU=", + ["value"]=440.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxeHWU=", + ["value"]=442.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxZHWU=", + ["value"]=445.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxbHWU=", + ["value"]=447.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxVHWU=", + ["value"]=449.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1dHWU=", + ["value"]=451.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAA==", + ["value"]=2.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1YHWU=", + ["value"]=454.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1aHWU=", + ["value"]=456.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1UHWU=", + ["value"]=458.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBA==", + ["value"]=2.57, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5cHWU=", + ["value"]=460.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5fHWU=", + ["value"]=463.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5ZHWU=", + ["value"]=465.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5bHWU=", + ["value"]=467.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9cHWU=", + ["value"]=470.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9eHWU=", + ["value"]=472.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9YHWU=", + ["value"]=474.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9bHWU=", + ["value"]=477.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9VHWU=", + ["value"]=479.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBeHWU=", + ["value"]=482.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBYHWU=", + ["value"]=484.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBaHWU=", + ["value"]=486.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBVHWU=", + ["value"]=489.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFdHWU=", + ["value"]=491.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFYHWU=", + ["value"]=494.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFaHWU=", + ["value"]=496.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFVHWU=", + ["value"]=499.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhdHWU=", + ["value"]=501.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhYHWU=", + ["value"]=504.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhaHWU=", + ["value"]=506.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhVHWU=", + ["value"]=509.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwldHWU=", + ["value"]=511.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCw==", + ["value"]=2.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlYHWU=", + ["value"]=514.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlaHWU=", + ["value"]=516.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAg==", + ["value"]=2.91, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlVHWU=", + ["value"]=519.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpeHWU=", + ["value"]=522.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpYHWU=", + ["value"]=524.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpbHWU=", + ["value"]=527.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpVHWU=", + ["value"]=529.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCg==", + ["value"]=2.99, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwteHWU=", + ["value"]=532.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtZHWU=", + ["value"]=535.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAQ==", + ["value"]=3.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtbHWU=", + ["value"]=537.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxcHWU=", + ["value"]=540.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBg==", + ["value"]=3.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxfHWU=", + ["value"]=543.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxaHWU=", + ["value"]=546.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxUHWU=", + ["value"]=548.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1dHWU=", + ["value"]=551.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1YHWU=", + ["value"]=554.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1bHWU=", + ["value"]=557.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1VHWU=", + ["value"]=559.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBA==", + ["value"]=3.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5eHWU=", + ["value"]=562.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5ZHWU=", + ["value"]=565.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5UHWU=", + ["value"]=568.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAQ==", + ["value"]=3.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9dHWU=", + ["value"]=571.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAA==", + ["value"]=3.23, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9fHWU=", + ["value"]=573.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9aHWU=", + ["value"]=576.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9VHWU=", + ["value"]=579.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBeHWU=", + ["value"]=582.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZf", + ["value"]=3.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBZHWU=", + ["value"]=585.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBUHWU=", + ["value"]=588.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBw==", + ["value"]=3.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFdHWU=", + ["value"]=591.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBg==", + ["value"]=3.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFYHWU=", + ["value"]=594.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBA==", + ["value"]=3.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFbHWU=", + ["value"]=597.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhcHWU=", + ["value"]=600.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAg==", + ["value"]=3.41, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhfHWU=", + ["value"]=603.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhaHWU=", + ["value"]=606.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhVHWU=", + ["value"]=609.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAleHWU=", + ["value"]=612.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlZHWU=", + ["value"]=615.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlUHWU=", + ["value"]=618.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApdHWU=", + ["value"]=621.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApYHWU=", + ["value"]=624.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBg==", + ["value"]=3.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApbHWU=", + ["value"]=627.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtcHWU=", + ["value"]=630.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtYHWU=", + ["value"]=634.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtbHWU=", + ["value"]=637.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxcHWU=", + ["value"]=640.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBw==", + ["value"]=3.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxfHWU=", + ["value"]=643.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBQ==", + ["value"]=3.66, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxaHWU=", + ["value"]=646.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaCw==", + ["value"]=3.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1cHWU=", + ["value"]=650.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZb", + ["value"]=3.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1fHWU=", + ["value"]=653.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAQ==", + ["value"]=3.72, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1aHWU=", + ["value"]=656.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBw==", + ["value"]=3.74, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1VHWU=", + ["value"]=659.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBQ==", + ["value"]=3.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5fHWU=", + ["value"]=663.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5aHWU=", + ["value"]=666.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZU", + ["value"]=3.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5VHWU=", + ["value"]=669.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9fHWU=", + ["value"]=673.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9aHWU=", + ["value"]=676.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9VHWU=", + ["value"]=679.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABfHWU=", + ["value"]=683.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABaHWU=", + ["value"]=686.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFcHWU=", + ["value"]=690.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFfHWU=", + ["value"]=693.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFbHWU=", + ["value"]=697.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVCw==", + ["value"]=3.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhcHWU=", + ["value"]=700.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhYHWU=", + ["value"]=704.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAQ==", + ["value"]=4.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhbHWU=", + ["value"]=707.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBw==", + ["value"]=4.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQldHWU=", + ["value"]=711.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBA==", + ["value"]=4.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlYHWU=", + ["value"]=714.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcCg==", + ["value"]=4.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlUHWU=", + ["value"]=718.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAg==", + ["value"]=4.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpdHWU=", + ["value"]=721.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAA==", + ["value"]=4.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpZHWU=", + ["value"]=725.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBg==", + ["value"]=4.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpVHWU=", + ["value"]=729.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBA==", + ["value"]=4.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQteHWU=", + ["value"]=732.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdCg==", + ["value"]=4.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtaHWU=", + ["value"]=736.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAQ==", + ["value"]=4.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxcHWU=", + ["value"]=740.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBw==", + ["value"]=4.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxfHWU=", + ["value"]=743.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBQ==", + ["value"]=4.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxbHWU=", + ["value"]=747.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeCw==", + ["value"]=4.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1dHWU=", + ["value"]=751.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZf", + ["value"]=4.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1ZHWU=", + ["value"]=755.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAA==", + ["value"]=4.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1UHWU=", + ["value"]=758.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBg==", + ["value"]=4.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5eHWU=", + ["value"]=762.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBA==", + ["value"]=4.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5aHWU=", + ["value"]=766.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9cHWU=", + ["value"]=770.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAQ==", + ["value"]=4.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9YHWU=", + ["value"]=774.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBw==", + ["value"]=4.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9bHWU=", + ["value"]=777.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBQ==", + ["value"]=4.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBdHWU=", + ["value"]=781.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYCg==", + ["value"]=4.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBZHWU=", + ["value"]=785.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAg==", + ["value"]=4.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBVHWU=", + ["value"]=789.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAA==", + ["value"]=4.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFfHWU=", + ["value"]=793.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBQ==", + ["value"]=4.56, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFbHWU=", + ["value"]=797.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZCw==", + ["value"]=4.58, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghdHWU=", + ["value"]=801.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAg==", + ["value"]=4.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghZHWU=", + ["value"]=805.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAA==", + ["value"]=4.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghVHWU=", + ["value"]=809.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBg==", + ["value"]=4.65, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglfHWU=", + ["value"]=813.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaCw==", + ["value"]=4.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglbHWU=", + ["value"]=817.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZb", + ["value"]=4.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpdHWU=", + ["value"]=821.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAA==", + ["value"]=4.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpZHWU=", + ["value"]=825.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBg==", + ["value"]=4.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtcHWU=", + ["value"]=830.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbCw==", + ["value"]=4.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtYHWU=", + ["value"]=834.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZU", + ["value"]=4.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtUHWU=", + ["value"]=838.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAA==", + ["value"]=4.83, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxeHWU=", + ["value"]=842.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBg==", + ["value"]=4.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxaHWU=", + ["value"]=846.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUCw==", + ["value"]=4.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1dHWU=", + ["value"]=851.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZV", + ["value"]=4.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1ZHWU=", + ["value"]=855.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAA==", + ["value"]=4.93, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1VHWU=", + ["value"]=859.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBg==", + ["value"]=4.95, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5fHWU=", + ["value"]=863.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVCw==", + ["value"]=4.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5UHWU=", + ["value"]=868.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAg==", + ["value"]=5.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9eHWU=", + ["value"]=872.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAA==", + ["value"]=5.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9aHWU=", + ["value"]=876.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBQ==", + ["value"]=5.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBdHWU=", + ["value"]=881.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcCw==", + ["value"]=5.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBZHWU=", + ["value"]=885.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAg==", + ["value"]=5.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFcHWU=", + ["value"]=890.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBw==", + ["value"]=5.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFYHWU=", + ["value"]=894.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBQ==", + ["value"]=5.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFVHWU=", + ["value"]=899.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdCg==", + ["value"]=5.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhfHWU=", + ["value"]=903.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAQ==", + ["value"]=5.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhUHWU=", + ["value"]=908.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBw==", + ["value"]=5.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwleHWU=", + ["value"]=912.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBA==", + ["value"]=5.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlbHWU=", + ["value"]=917.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZf", + ["value"]=5.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpdHWU=", + ["value"]=921.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAA==", + ["value"]=5.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpaHWU=", + ["value"]=926.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBQ==", + ["value"]=5.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtcHWU=", + ["value"]=930.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfCw==", + ["value"]=5.38, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtZHWU=", + ["value"]=935.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYAg==", + ["value"]=5.41, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxcHWU=", + ["value"]=940.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBw==", + ["value"]=5.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxZHWU=", + ["value"]=945.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBA==", + ["value"]=5.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxVHWU=", + ["value"]=949.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZ", + ["value"]=5.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1YHWU=", + ["value"]=954.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAQ==", + ["value"]=5.52, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1VHWU=", + ["value"]=959.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBg==", + ["value"]=5.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5YHWU=", + ["value"]=964.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZCw==", + ["value"]=5.58, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5UHWU=", + ["value"]=968.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaAg==", + ["value"]=5.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9fHWU=", + ["value"]=973.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBw==", + ["value"]=5.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9UHWU=", + ["value"]=978.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBA==", + ["value"]=5.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBfHWU=", + ["value"]=983.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZb", + ["value"]=5.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBUHWU=", + ["value"]=988.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbAA==", + ["value"]=5.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFfHWU=", + ["value"]=993.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBQ==", + ["value"]=5.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFUHWU=", + ["value"]=998.0, + ["unit_for_nothing"]="UA==", + ["unit"]=6 + } + }, + [8627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbCg==", + ["value"]=5.79, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUAQ==", + ["value"]=5.82, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBg==", + ["value"]=5.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUCw==", + ["value"]=5.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVAg==", + ["value"]=5.91, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBw==", + ["value"]=5.94, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBA==", + ["value"]=5.97, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZc", + ["value"]=6.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBw==", + ["value"]=6.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBA==", + ["value"]=6.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZd", + ["value"]=6.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdAA==", + ["value"]=6.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBQ==", + ["value"]=6.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdCg==", + ["value"]=6.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeAA==", + ["value"]=6.23, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBQ==", + ["value"]=6.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeCg==", + ["value"]=6.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfAQ==", + ["value"]=6.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfBQ==", + ["value"]=6.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfCg==", + ["value"]=6.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYAQ==", + ["value"]=6.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYBQ==", + ["value"]=6.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYCg==", + ["value"]=6.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZAQ==", + ["value"]=6.52, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBQ==", + ["value"]=6.56, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZCg==", + ["value"]=6.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaAA==", + ["value"]=6.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBQ==", + ["value"]=6.66, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZb", + ["value"]=6.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbAA==", + ["value"]=6.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBA==", + ["value"]=6.77, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZU", + ["value"]=6.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBw==", + ["value"]=6.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBA==", + ["value"]=6.87, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVAg==", + ["value"]=6.91, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBw==", + ["value"]=6.94, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVCw==", + ["value"]=6.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcAQ==", + ["value"]=7.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBg==", + ["value"]=7.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcCg==", + ["value"]=7.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdAA==", + ["value"]=7.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBQ==", + ["value"]=7.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZe", + ["value"]=7.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeBw==", + ["value"]=7.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeCw==", + ["value"]=7.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfAQ==", + ["value"]=7.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfBg==", + ["value"]=7.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZfCg==", + ["value"]=7.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYAA==", + ["value"]=7.43, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZYBA==", + ["value"]=7.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZAg==", + ["value"]=7.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZBg==", + ["value"]=7.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZZCg==", + ["value"]=7.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaAA==", + ["value"]=7.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZaBA==", + ["value"]=7.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbAg==", + ["value"]=7.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbBg==", + ["value"]=7.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZbCg==", + ["value"]=7.79, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUAA==", + ["value"]=7.83, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZUBA==", + ["value"]=7.87, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVAg==", + ["value"]=7.91, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVBg==", + ["value"]=7.95, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZVCg==", + ["value"]=7.99, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcAA==", + ["value"]=8.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZcBA==", + ["value"]=8.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdAQ==", + ["value"]=8.12, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZdBQ==", + ["value"]=8.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZe", + ["value"]=8.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeBw==", + ["value"]=8.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZeCg==", + ["value"]=8.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfAA==", + ["value"]=8.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZfBA==", + ["value"]=8.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYAQ==", + ["value"]=8.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZYBQ==", + ["value"]=8.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZAg==", + ["value"]=8.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZBg==", + ["value"]=8.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZZCg==", + ["value"]=8.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaBw==", + ["value"]=8.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZaCw==", + ["value"]=8.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbAA==", + ["value"]=8.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZbCw==", + ["value"]=8.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUAQ==", + ["value"]=8.82, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZUBA==", + ["value"]=8.87, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVAg==", + ["value"]=8.91, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XhZVBQ==", + ["value"]=8.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcAg==", + ["value"]=9.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZcBg==", + ["value"]=9.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZd", + ["value"]=9.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZdBg==", + ["value"]=9.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZe", + ["value"]=9.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeBw==", + ["value"]=9.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZeCg==", + ["value"]=9.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfBw==", + ["value"]=9.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZfCg==", + ["value"]=9.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYBw==", + ["value"]=9.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZYCg==", + ["value"]=9.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZBw==", + ["value"]=9.54, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZZCg==", + ["value"]=9.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaBw==", + ["value"]=9.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZaCg==", + ["value"]=9.69, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbBw==", + ["value"]=9.74, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZbCg==", + ["value"]=9.79, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUBw==", + ["value"]=9.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZUCg==", + ["value"]=9.89, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVBw==", + ["value"]=9.94, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XxZVCg==", + ["value"]=9.99, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAQ==", + ["value"]=2.12, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAg==", + ["value"]=2.21, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZeCw==", + ["value"]=2.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBw==", + ["value"]=2.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZfCg==", + ["value"]=2.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBw==", + ["value"]=2.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZYCg==", + ["value"]=2.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAg==", + ["value"]=2.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBg==", + ["value"]=2.65, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCw==", + ["value"]=2.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAQ==", + ["value"]=2.72, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBg==", + ["value"]=2.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZbCg==", + ["value"]=2.79, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAQ==", + ["value"]=2.82, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBg==", + ["value"]=2.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBQ==", + ["value"]=2.86, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZUCg==", + ["value"]=2.89, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VBZVCg==", + ["value"]=2.99, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcAQ==", + ["value"]=3.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBg==", + ["value"]=3.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZcCw==", + ["value"]=3.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZd", + ["value"]=3.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdAA==", + ["value"]=3.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdBQ==", + ["value"]=3.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCw==", + ["value"]=3.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZdCg==", + ["value"]=3.19, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAg==", + ["value"]=3.21, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeAQ==", + ["value"]=3.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBQ==", + ["value"]=3.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBw==", + ["value"]=3.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfBA==", + ["value"]=3.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAg==", + ["value"]=3.41, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCw==", + ["value"]=20.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYAQ==", + ["value"]=3.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBw==", + ["value"]=3.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYBA==", + ["value"]=3.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZYCg==", + ["value"]=3.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAg==", + ["value"]=3.51, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZAA==", + ["value"]=3.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBw==", + ["value"]=3.54, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZBQ==", + ["value"]=3.56, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZZCw==", + ["value"]=3.58, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZa", + ["value"]=3.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAQ==", + ["value"]=3.62, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCAA==", + ["value"]=22.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBg==", + ["value"]=3.65, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaBA==", + ["value"]=3.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZaCg==", + ["value"]=3.69, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAg==", + ["value"]=3.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbAA==", + ["value"]=3.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBw==", + ["value"]=3.74, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbBQ==", + ["value"]=3.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAg==", + ["value"]=23.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZU", + ["value"]=3.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCw==", + ["value"]=23.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBw==", + ["value"]=3.94, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVBQ==", + ["value"]=3.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VRZVCw==", + ["value"]=3.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBw==", + ["value"]=24.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZc", + ["value"]=4.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcAQ==", + ["value"]=4.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBw==", + ["value"]=4.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcBQ==", + ["value"]=4.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZcCw==", + ["value"]=4.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZd", + ["value"]=4.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdAQ==", + ["value"]=4.12, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBw==", + ["value"]=4.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdBQ==", + ["value"]=4.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZdCw==", + ["value"]=4.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZe", + ["value"]=4.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1CCg==", + ["value"]=25.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeAQ==", + ["value"]=4.22, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBw==", + ["value"]=4.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeBQ==", + ["value"]=4.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CAA==", + ["value"]=26.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZeCw==", + ["value"]=4.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAg==", + ["value"]=4.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfAA==", + ["value"]=4.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CBA==", + ["value"]=26.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBg==", + ["value"]=4.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfBA==", + ["value"]=4.37, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZfCg==", + ["value"]=4.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAg==", + ["value"]=27.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYAQ==", + ["value"]=4.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBw==", + ["value"]=4.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYBQ==", + ["value"]=4.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBg==", + ["value"]=27.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZYCw==", + ["value"]=4.48, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZ", + ["value"]=4.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZAA==", + ["value"]=4.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBg==", + ["value"]=4.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZBA==", + ["value"]=4.57, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZZCg==", + ["value"]=4.59, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBw==", + ["value"]=28.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaAQ==", + ["value"]=4.62, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBw==", + ["value"]=4.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaBQ==", + ["value"]=4.66, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABCCg==", + ["value"]=28.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZaCg==", + ["value"]=4.69, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbAg==", + ["value"]=4.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAQ==", + ["value"]=29.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbAA==", + ["value"]=4.73, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbBQ==", + ["value"]=4.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBg==", + ["value"]=29.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZbCw==", + ["value"]=4.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAg==", + ["value"]=4.81, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCw==", + ["value"]=29.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUAA==", + ["value"]=4.83, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUBg==", + ["value"]=4.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAg==", + ["value"]=30.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZUCw==", + ["value"]=4.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZV", + ["value"]=4.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBw==", + ["value"]=30.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVAA==", + ["value"]=4.93, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBQ==", + ["value"]=30.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVBg==", + ["value"]=4.95, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCBA==", + ["value"]=30.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UhZVCw==", + ["value"]=4.98, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZc", + ["value"]=5.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAw==", + ["value"]=31.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcAA==", + ["value"]=5.03, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcBg==", + ["value"]=5.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBw==", + ["value"]=31.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZcCw==", + ["value"]=5.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZd", + ["value"]=5.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdAA==", + ["value"]=5.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdBg==", + ["value"]=5.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZdCw==", + ["value"]=5.18, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCAQ==", + ["value"]=32.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeAg==", + ["value"]=5.21, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBw==", + ["value"]=32.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeAA==", + ["value"]=5.23, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBg==", + ["value"]=32.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeBQ==", + ["value"]=5.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZeCw==", + ["value"]=5.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpCCg==", + ["value"]=32.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfAg==", + ["value"]=5.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBw==", + ["value"]=5.34, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfBQ==", + ["value"]=5.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBw==", + ["value"]=33.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZfCg==", + ["value"]=5.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBQ==", + ["value"]=33.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYAQ==", + ["value"]=5.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBw==", + ["value"]=5.44, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtCCg==", + ["value"]=33.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZYBA==", + ["value"]=5.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAg==", + ["value"]=34.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZ", + ["value"]=5.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCAA==", + ["value"]=34.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZAA==", + ["value"]=5.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBw==", + ["value"]=34.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZBg==", + ["value"]=5.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCBQ==", + ["value"]=34.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZZCw==", + ["value"]=5.58, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxCCw==", + ["value"]=34.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaAg==", + ["value"]=5.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBw==", + ["value"]=5.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAQ==", + ["value"]=35.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaBA==", + ["value"]=5.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CAA==", + ["value"]=35.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZaCg==", + ["value"]=5.69, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBg==", + ["value"]=35.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbAQ==", + ["value"]=5.72, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CBA==", + ["value"]=35.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbBg==", + ["value"]=5.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1CCg==", + ["value"]=35.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZbCw==", + ["value"]=5.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAg==", + ["value"]=36.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUAg==", + ["value"]=5.81, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CAA==", + ["value"]=36.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBw==", + ["value"]=5.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBg==", + ["value"]=36.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZUBA==", + ["value"]=5.87, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CBA==", + ["value"]=36.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZV", + ["value"]=5.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVAA==", + ["value"]=5.93, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAw==", + ["value"]=37.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVBQ==", + ["value"]=5.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CAQ==", + ["value"]=37.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UxZVCg==", + ["value"]=5.99, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBw==", + ["value"]=37.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcAQ==", + ["value"]=6.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CBQ==", + ["value"]=37.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcBg==", + ["value"]=6.05, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9CCw==", + ["value"]=37.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZcCw==", + ["value"]=6.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAw==", + ["value"]=38.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdAg==", + ["value"]=6.11, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCAQ==", + ["value"]=38.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBw==", + ["value"]=6.14, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBw==", + ["value"]=38.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZdBA==", + ["value"]=6.17, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCBQ==", + ["value"]=38.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZe", + ["value"]=6.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBCCw==", + ["value"]=38.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeAA==", + ["value"]=6.23, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAw==", + ["value"]=39.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeBQ==", + ["value"]=6.26, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCAQ==", + ["value"]=39.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZeCg==", + ["value"]=6.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBw==", + ["value"]=39.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfAQ==", + ["value"]=6.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCBQ==", + ["value"]=39.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfBQ==", + ["value"]=6.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFCCw==", + ["value"]=39.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZfCg==", + ["value"]=6.39, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [8999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAw==", + ["value"]=40.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYAQ==", + ["value"]=6.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCAA==", + ["value"]=40.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYBg==", + ["value"]=6.45, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9001]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBg==", + ["value"]=40.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZYCw==", + ["value"]=6.48, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9002]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCBA==", + ["value"]=40.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZAQ==", + ["value"]=6.52, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9003]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghCCg==", + ["value"]=40.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZBg==", + ["value"]=6.55, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9004]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAg==", + ["value"]=41.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZZCw==", + ["value"]=6.58, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9005]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCAA==", + ["value"]=41.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaAg==", + ["value"]=6.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9006]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBg==", + ["value"]=41.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaBg==", + ["value"]=6.65, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9007]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglCBA==", + ["value"]=41.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZaCw==", + ["value"]=6.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9008]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAw==", + ["value"]=42.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbAg==", + ["value"]=6.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9009]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCAQ==", + ["value"]=42.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbBg==", + ["value"]=6.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9010]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBw==", + ["value"]=42.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZbCw==", + ["value"]=6.78, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9011]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUAQ==", + ["value"]=6.82, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9012]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpCCw==", + ["value"]=42.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUBg==", + ["value"]=6.85, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9013]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAg==", + ["value"]=43.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZUCw==", + ["value"]=6.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9014]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCAA==", + ["value"]=43.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVAQ==", + ["value"]=6.92, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9015]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBg==", + ["value"]=43.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVBg==", + ["value"]=6.95, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9016]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtCBA==", + ["value"]=43.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UBZVCg==", + ["value"]=6.99, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9017]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAw==", + ["value"]=44.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcAQ==", + ["value"]=7.02, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9018]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCAQ==", + ["value"]=44.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcBQ==", + ["value"]=7.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9019]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBw==", + ["value"]=44.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZcCg==", + ["value"]=7.09, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9020]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCBA==", + ["value"]=44.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdAA==", + ["value"]=7.13, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9021]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxCCg==", + ["value"]=44.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZdBQ==", + ["value"]=7.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9022]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CAg==", + ["value"]=45.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZe", + ["value"]=7.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9023]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBw==", + ["value"]=45.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeBw==", + ["value"]=7.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9024]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CBQ==", + ["value"]=45.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZeBA==", + ["value"]=7.27, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9025]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1CCw==", + ["value"]=45.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfAg==", + ["value"]=7.31, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9026]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAg==", + ["value"]=46.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfBg==", + ["value"]=7.35, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9027]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CAA==", + ["value"]=46.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZfCw==", + ["value"]=7.38, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9028]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CBQ==", + ["value"]=46.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYAQ==", + ["value"]=7.42, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9029]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5CCw==", + ["value"]=46.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYBQ==", + ["value"]=7.46, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9030]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAw==", + ["value"]=47.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZYCg==", + ["value"]=7.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9031]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CAA==", + ["value"]=47.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZAA==", + ["value"]=7.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9032]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CBg==", + ["value"]=47.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZZBA==", + ["value"]=7.57, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9033]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9CCw==", + ["value"]=47.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaAg==", + ["value"]=7.61, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9034]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaBw==", + ["value"]=7.64, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9035]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCAA==", + ["value"]=48.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZaCw==", + ["value"]=7.68, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9036]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCBg==", + ["value"]=48.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbAQ==", + ["value"]=7.72, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9037]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBCCw==", + ["value"]=48.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZbBQ==", + ["value"]=7.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9038]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAw==", + ["value"]=49.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZU", + ["value"]=7.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9039]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCAA==", + ["value"]=49.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUBw==", + ["value"]=7.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9040]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCBQ==", + ["value"]=49.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZUCw==", + ["value"]=7.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9041]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFCCw==", + ["value"]=49.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVAQ==", + ["value"]=7.92, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9042]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAg==", + ["value"]=50.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="URZVBQ==", + ["value"]=7.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9043]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCAA==", + ["value"]=50.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZc", + ["value"]=8.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9044]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCBQ==", + ["value"]=50.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcBw==", + ["value"]=8.04, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9045]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhCCg==", + ["value"]=50.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZcCw==", + ["value"]=8.08, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9046]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCAg==", + ["value"]=51.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdAQ==", + ["value"]=8.12, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9047]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBw==", + ["value"]=51.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZdBQ==", + ["value"]=8.16, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9048]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCBA==", + ["value"]=51.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZe", + ["value"]=8.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9049]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlCCg==", + ["value"]=51.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeBw==", + ["value"]=8.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9050]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCAQ==", + ["value"]=52.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZeCw==", + ["value"]=8.28, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9051]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBg==", + ["value"]=52.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfAQ==", + ["value"]=8.32, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9052]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpCBA==", + ["value"]=52.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZfBQ==", + ["value"]=8.36, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9053]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYAg==", + ["value"]=8.41, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9054]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCAA==", + ["value"]=53.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYBg==", + ["value"]=8.45, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9055]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCBQ==", + ["value"]=53.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZYCg==", + ["value"]=8.49, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9056]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtCCg==", + ["value"]=53.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZAA==", + ["value"]=8.53, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9057]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCAg==", + ["value"]=54.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZZBA==", + ["value"]=8.57, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9058]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBw==", + ["value"]=54.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaAQ==", + ["value"]=8.62, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9059]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxCBA==", + ["value"]=54.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZaBQ==", + ["value"]=8.66, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9060]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAw==", + ["value"]=55.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZb", + ["value"]=8.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9061]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CAA==", + ["value"]=55.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbBg==", + ["value"]=8.75, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9062]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CBQ==", + ["value"]=55.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZbCg==", + ["value"]=8.79, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9063]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1CCg==", + ["value"]=55.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUBw==", + ["value"]=8.84, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9064]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CAg==", + ["value"]=56.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZUCw==", + ["value"]=8.88, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9065]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBw==", + ["value"]=56.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVAQ==", + ["value"]=8.92, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9066]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5CBA==", + ["value"]=56.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XhZVBA==", + ["value"]=8.97, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9067]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAw==", + ["value"]=57.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcAg==", + ["value"]=9.01, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9068]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CAA==", + ["value"]=57.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZcBQ==", + ["value"]=9.06, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9069]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CBQ==", + ["value"]=57.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZd", + ["value"]=9.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9070]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9CCg==", + ["value"]=57.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZdBg==", + ["value"]=9.15, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9071]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCAQ==", + ["value"]=58.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZe", + ["value"]=9.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9072]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCBg==", + ["value"]=58.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeBw==", + ["value"]=9.24, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9073]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBCCw==", + ["value"]=58.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZeCg==", + ["value"]=9.29, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9074]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCAg==", + ["value"]=59.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfAA==", + ["value"]=9.33, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9075]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCBw==", + ["value"]=59.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZfCw==", + ["value"]=9.38, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9076]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFCCw==", + ["value"]=59.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYAA==", + ["value"]=9.43, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9077]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCAg==", + ["value"]=60.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZYBA==", + ["value"]=9.47, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9078]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBw==", + ["value"]=60.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZAQ==", + ["value"]=9.52, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9079]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhCBA==", + ["value"]=60.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZZBA==", + ["value"]=9.57, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9080]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaAQ==", + ["value"]=9.62, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9081]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCAA==", + ["value"]=61.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZaBA==", + ["value"]=9.67, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9082]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlCBA==", + ["value"]=61.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbAg==", + ["value"]=9.71, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9083]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAw==", + ["value"]=62.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZbBQ==", + ["value"]=9.76, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9084]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCAA==", + ["value"]=62.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUAg==", + ["value"]=9.81, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9085]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCBQ==", + ["value"]=62.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZUBQ==", + ["value"]=9.86, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9086]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApCCg==", + ["value"]=62.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVAg==", + ["value"]=9.91, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9087]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCAA==", + ["value"]=63.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XxZVBQ==", + ["value"]=9.96, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9088]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCBQ==", + ["value"]=63.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAw==", + ["value"]=10.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9089]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtCCg==", + ["value"]=63.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9090]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCAA==", + ["value"]=64.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAg==", + ["value"]=10.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9091]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCBQ==", + ["value"]=64.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9092]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxCCg==", + ["value"]=64.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAQ==", + ["value"]=10.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9093]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CAA==", + ["value"]=65.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9094]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1CBQ==", + ["value"]=65.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCAA==", + ["value"]=10.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9095]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAw==", + ["value"]=66.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9096]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CAA==", + ["value"]=66.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBw==", + ["value"]=10.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9097]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5CBQ==", + ["value"]=66.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9098]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAw==", + ["value"]=67.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBg==", + ["value"]=10.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9099]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CAA==", + ["value"]=67.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9100]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9CBA==", + ["value"]=67.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBQ==", + ["value"]=10.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9101]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCAg==", + ["value"]=68.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9102]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCBw==", + ["value"]=68.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCBA==", + ["value"]=10.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9103]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABCCw==", + ["value"]=68.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9104]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCAg==", + ["value"]=69.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCw==", + ["value"]=10.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9105]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCBg==", + ["value"]=69.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhCCg==", + ["value"]=10.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9106]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFCCw==", + ["value"]=69.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9107]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCAQ==", + ["value"]=70.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAw==", + ["value"]=11.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9108]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCBQ==", + ["value"]=70.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9109]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhCCg==", + ["value"]=70.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAg==", + ["value"]=11.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9110]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCAA==", + ["value"]=71.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9111]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlCBA==", + ["value"]=71.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAQ==", + ["value"]=11.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9112]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCAg==", + ["value"]=72.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9113]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCBw==", + ["value"]=72.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCAA==", + ["value"]=11.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9114]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpCCw==", + ["value"]=72.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBw==", + ["value"]=11.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9115]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCAQ==", + ["value"]=73.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9116]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtCBQ==", + ["value"]=73.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBg==", + ["value"]=11.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9117]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAw==", + ["value"]=74.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9118]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCAA==", + ["value"]=74.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBQ==", + ["value"]=11.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9119]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxCBA==", + ["value"]=74.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9120]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CAg==", + ["value"]=75.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCBA==", + ["value"]=11.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9121]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CBg==", + ["value"]=75.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCw==", + ["value"]=11.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9122]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1CCg==", + ["value"]=75.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9123]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CAA==", + ["value"]=76.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlCCg==", + ["value"]=11.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9124]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5CBA==", + ["value"]=76.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9125]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CAg==", + ["value"]=77.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAw==", + ["value"]=12.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9126]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CBg==", + ["value"]=77.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAg==", + ["value"]=12.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9127]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9CCg==", + ["value"]=77.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9128]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCAA==", + ["value"]=78.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAQ==", + ["value"]=12.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9129]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBCBA==", + ["value"]=78.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9130]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCAg==", + ["value"]=79.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCAA==", + ["value"]=12.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9131]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCBg==", + ["value"]=79.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBw==", + ["value"]=12.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9132]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFCCg==", + ["value"]=79.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9133]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCBw==", + ["value"]=80.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBg==", + ["value"]=12.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9134]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghCCw==", + ["value"]=80.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBQ==", + ["value"]=12.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9135]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCAQ==", + ["value"]=81.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9136]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglCBQ==", + ["value"]=81.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCBA==", + ["value"]=12.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9137]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCAg==", + ["value"]=82.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCw==", + ["value"]=12.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9138]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCBg==", + ["value"]=82.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9139]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpCCg==", + ["value"]=82.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpCCg==", + ["value"]=12.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9140]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCAA==", + ["value"]=83.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9141]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtCCw==", + ["value"]=83.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAw==", + ["value"]=13.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9142]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCAQ==", + ["value"]=84.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAg==", + ["value"]=13.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9143]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxCBQ==", + ["value"]=84.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9144]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CAg==", + ["value"]=85.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAQ==", + ["value"]=13.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9145]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1CBg==", + ["value"]=85.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCAA==", + ["value"]=13.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9146]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CAw==", + ["value"]=86.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9147]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CBw==", + ["value"]=86.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBw==", + ["value"]=13.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9148]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5CCg==", + ["value"]=86.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBg==", + ["value"]=13.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9149]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CAA==", + ["value"]=87.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9150]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9CCw==", + ["value"]=87.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBQ==", + ["value"]=13.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9151]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCAQ==", + ["value"]=88.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCBA==", + ["value"]=13.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9152]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBCBA==", + ["value"]=88.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9153]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCAQ==", + ["value"]=89.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCw==", + ["value"]=13.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9154]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFCBQ==", + ["value"]=89.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtCCg==", + ["value"]=13.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9155]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCAg==", + ["value"]=90.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAw==", + ["value"]=14.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9156]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhCBQ==", + ["value"]=90.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9157]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCAw==", + ["value"]=91.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAg==", + ["value"]=14.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9158]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlCBg==", + ["value"]=91.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAQ==", + ["value"]=14.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9159]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCAw==", + ["value"]=92.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9160]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpCBg==", + ["value"]=92.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCAA==", + ["value"]=14.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9161]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCAw==", + ["value"]=93.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBw==", + ["value"]=14.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9162]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCBw==", + ["value"]=93.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBg==", + ["value"]=14.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9163]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtCCg==", + ["value"]=93.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9164]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCBw==", + ["value"]=94.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBQ==", + ["value"]=14.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9165]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxCCg==", + ["value"]=94.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCBA==", + ["value"]=14.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9166]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CBw==", + ["value"]=95.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCw==", + ["value"]=14.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9167]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1CCg==", + ["value"]=95.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9168]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CBw==", + ["value"]=96.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxCCg==", + ["value"]=14.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9169]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5CCg==", + ["value"]=96.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAw==", + ["value"]=15.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9170]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CBw==", + ["value"]=97.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAg==", + ["value"]=15.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9171]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9CCg==", + ["value"]=97.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9172]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCBw==", + ["value"]=98.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAQ==", + ["value"]=15.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9173]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBCCg==", + ["value"]=98.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CAA==", + ["value"]=15.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9174]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFCBg==", + ["value"]=99.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBw==", + ["value"]=15.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9175]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9176]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBg==", + ["value"]=15.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9177]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBQ==", + ["value"]=15.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9178]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CBA==", + ["value"]=15.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9179]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9180]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCw==", + ["value"]=15.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9181]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1CCg==", + ["value"]=15.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9182]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAw==", + ["value"]=16.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9183]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAg==", + ["value"]=16.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9184]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9185]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAQ==", + ["value"]=16.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9186]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CAA==", + ["value"]=16.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9187]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBw==", + ["value"]=16.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9188]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBg==", + ["value"]=16.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9189]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBQ==", + ["value"]=16.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9190]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9191]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CBA==", + ["value"]=16.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9192]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCw==", + ["value"]=16.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9193]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5CCg==", + ["value"]=16.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9194]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAw==", + ["value"]=17.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9195]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAg==", + ["value"]=17.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9196]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9197]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAQ==", + ["value"]=17.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9198]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CAA==", + ["value"]=17.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9199]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBw==", + ["value"]=17.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9200]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBg==", + ["value"]=17.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9201]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBQ==", + ["value"]=17.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9202]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CBA==", + ["value"]=17.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9203]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCw==", + ["value"]=17.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9204]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9CCg==", + ["value"]=17.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9205]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9206]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAw==", + ["value"]=18.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9207]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAg==", + ["value"]=18.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9208]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAQ==", + ["value"]=18.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9209]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCAA==", + ["value"]=18.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9210]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBw==", + ["value"]=18.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9211]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBg==", + ["value"]=18.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9212]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBQ==", + ["value"]=18.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9213]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCBA==", + ["value"]=18.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9214]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCw==", + ["value"]=18.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9215]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBCCg==", + ["value"]=18.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9216]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAw==", + ["value"]=19.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9217]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAg==", + ["value"]=19.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9218]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAQ==", + ["value"]=19.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9219]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9220]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCAA==", + ["value"]=19.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9221]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBw==", + ["value"]=19.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9222]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBg==", + ["value"]=19.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9223]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBQ==", + ["value"]=19.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9224]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCBA==", + ["value"]=19.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9225]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCw==", + ["value"]=19.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9226]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFCCg==", + ["value"]=19.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9227]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAw==", + ["value"]=20.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9228]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAg==", + ["value"]=20.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9229]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAQ==", + ["value"]=20.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9230]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCAA==", + ["value"]=20.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9231]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBw==", + ["value"]=20.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9232]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBg==", + ["value"]=20.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9233]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBQ==", + ["value"]=20.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9234]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCBA==", + ["value"]=20.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9235]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhCCg==", + ["value"]=20.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9236]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAw==", + ["value"]=21.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9237]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAg==", + ["value"]=21.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9238]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAQ==", + ["value"]=21.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9239]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCAA==", + ["value"]=21.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9240]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBw==", + ["value"]=21.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9241]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBg==", + ["value"]=21.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9242]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBQ==", + ["value"]=21.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9243]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCBA==", + ["value"]=21.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9244]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCw==", + ["value"]=21.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9245]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlCCg==", + ["value"]=21.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9246]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAw==", + ["value"]=22.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9247]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAg==", + ["value"]=22.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9248]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCAQ==", + ["value"]=22.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9249]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBw==", + ["value"]=22.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9250]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBg==", + ["value"]=22.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9251]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBQ==", + ["value"]=22.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9252]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCBA==", + ["value"]=22.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9253]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCw==", + ["value"]=22.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9254]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApCCg==", + ["value"]=22.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9255]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAw==", + ["value"]=23.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9256]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAQ==", + ["value"]=23.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9257]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCAA==", + ["value"]=23.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9258]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBw==", + ["value"]=23.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9259]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBg==", + ["value"]=23.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9260]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBQ==", + ["value"]=23.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9261]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCBA==", + ["value"]=23.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9262]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtCCg==", + ["value"]=23.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9263]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAw==", + ["value"]=24.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9264]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAg==", + ["value"]=24.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9265]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAQ==", + ["value"]=24.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9266]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCAA==", + ["value"]=24.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9267]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBg==", + ["value"]=24.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9268]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBQ==", + ["value"]=24.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9269]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCBA==", + ["value"]=24.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9270]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxCCw==", + ["value"]=24.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9271]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAw==", + ["value"]=25.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9272]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAg==", + ["value"]=25.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9273]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAQ==", + ["value"]=25.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9274]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CAA==", + ["value"]=25.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9275]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBg==", + ["value"]=25.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9276]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBQ==", + ["value"]=25.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9277]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CBA==", + ["value"]=25.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9278]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1CCw==", + ["value"]=25.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9279]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAw==", + ["value"]=26.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9280]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAg==", + ["value"]=26.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9281]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CAQ==", + ["value"]=26.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9282]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBw==", + ["value"]=26.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9283]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBg==", + ["value"]=26.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9284]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CBQ==", + ["value"]=26.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9285]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCw==", + ["value"]=26.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9286]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5CCg==", + ["value"]=26.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9287]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAw==", + ["value"]=27.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9288]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAQ==", + ["value"]=27.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9289]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CAA==", + ["value"]=27.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9290]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBw==", + ["value"]=27.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9291]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBQ==", + ["value"]=27.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9292]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CBA==", + ["value"]=27.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9293]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9CCw==", + ["value"]=27.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9294]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAw==", + ["value"]=28.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9295]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAg==", + ["value"]=28.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9296]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCAA==", + ["value"]=28.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9297]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBw==", + ["value"]=28.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9298]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBQ==", + ["value"]=28.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9299]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCBA==", + ["value"]=28.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9300]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABCCw==", + ["value"]=28.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9301]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAw==", + ["value"]=29.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9302]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAg==", + ["value"]=29.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9303]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCAA==", + ["value"]=29.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9304]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBw==", + ["value"]=29.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9305]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBQ==", + ["value"]=29.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9306]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCBA==", + ["value"]=29.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9307]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFCCg==", + ["value"]=29.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9308]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAw==", + ["value"]=30.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9309]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAQ==", + ["value"]=30.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9310]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCAA==", + ["value"]=30.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9311]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBg==", + ["value"]=30.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9312]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCBQ==", + ["value"]=30.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9313]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCw==", + ["value"]=30.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9314]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhCCg==", + ["value"]=30.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9315]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAg==", + ["value"]=31.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9316]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCAQ==", + ["value"]=31.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9317]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBw==", + ["value"]=31.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9318]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBg==", + ["value"]=31.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9319]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCBA==", + ["value"]=31.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9320]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlCCg==", + ["value"]=31.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9321]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAw==", + ["value"]=32.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9322]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAQ==", + ["value"]=32.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9323]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlaHWU=", + ["value"]=216.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCAA==", + ["value"]=32.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9324]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBg==", + ["value"]=32.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9325]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCBA==", + ["value"]=32.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9326]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpCCw==", + ["value"]=32.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9327]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAw==", + ["value"]=33.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9328]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAQ==", + ["value"]=33.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9329]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCAA==", + ["value"]=33.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9330]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBg==", + ["value"]=33.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9331]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCBA==", + ["value"]=33.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9332]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtCCw==", + ["value"]=33.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9333]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApbHWU=", + ["value"]=227.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAw==", + ["value"]=34.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9334]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAQ==", + ["value"]=34.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9335]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCAA==", + ["value"]=34.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9336]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBg==", + ["value"]=34.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9337]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCBA==", + ["value"]=34.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9338]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxCCg==", + ["value"]=34.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9339]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAw==", + ["value"]=35.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9340]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CAQ==", + ["value"]=35.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9341]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBw==", + ["value"]=35.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9342]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBQ==", + ["value"]=35.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9343]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CBA==", + ["value"]=35.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9344]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxdHWU=", + ["value"]=241.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1CCg==", + ["value"]=35.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9345]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAg==", + ["value"]=36.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9346]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CAA==", + ["value"]=36.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9347]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBg==", + ["value"]=36.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9348]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxaHWU=", + ["value"]=246.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CBQ==", + ["value"]=36.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9349]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5CCw==", + ["value"]=36.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9350]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAw==", + ["value"]=37.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9351]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CAQ==", + ["value"]=37.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9352]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1dHWU=", + ["value"]=251.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBw==", + ["value"]=37.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9353]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CBQ==", + ["value"]=37.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9354]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CCw==", + ["value"]=37.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9355]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9CCg==", + ["value"]=37.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9356]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1aHWU=", + ["value"]=256.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAg==", + ["value"]=38.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9357]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCAA==", + ["value"]=38.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9358]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBg==", + ["value"]=38.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9359]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCBA==", + ["value"]=38.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9360]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBCCg==", + ["value"]=38.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9361]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAg==", + ["value"]=39.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9362]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCAA==", + ["value"]=39.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9363]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBg==", + ["value"]=39.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9364]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCBA==", + ["value"]=39.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9365]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFCCg==", + ["value"]=39.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9366]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAg==", + ["value"]=40.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9367]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCAA==", + ["value"]=40.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9368]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9fHWU=", + ["value"]=273.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBg==", + ["value"]=40.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9369]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9YHWU=", + ["value"]=274.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCBA==", + ["value"]=40.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9370]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9aHWU=", + ["value"]=276.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghCCg==", + ["value"]=40.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9371]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAg==", + ["value"]=41.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9372]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCAA==", + ["value"]=41.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9373]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABcHWU=", + ["value"]=280.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBg==", + ["value"]=41.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9374]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCBA==", + ["value"]=41.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9375]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABfHWU=", + ["value"]=283.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglCCg==", + ["value"]=41.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9376]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAg==", + ["value"]=42.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9377]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCAA==", + ["value"]=42.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9378]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABbHWU=", + ["value"]=287.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCBQ==", + ["value"]=42.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9379]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpCCw==", + ["value"]=42.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9380]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFcHWU=", + ["value"]=290.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAw==", + ["value"]=43.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9381]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFeHWU=", + ["value"]=292.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCAQ==", + ["value"]=43.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9382]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFfHWU=", + ["value"]=293.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBw==", + ["value"]=43.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9383]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCBQ==", + ["value"]=43.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9384]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFaHWU=", + ["value"]=296.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtCCg==", + ["value"]=43.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9385]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAg==", + ["value"]=44.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9386]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VAFVHWU=", + ["value"]=299.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCAA==", + ["value"]=44.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9387]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBg==", + ["value"]=44.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9388]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxCBA==", + ["value"]=44.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9389]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAw==", + ["value"]=45.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9390]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CAQ==", + ["value"]=45.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9391]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBw==", + ["value"]=45.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9392]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CBQ==", + ["value"]=45.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9393]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1CCg==", + ["value"]=45.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9394]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAg==", + ["value"]=46.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9395]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlYHWU=", + ["value"]=314.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CAA==", + ["value"]=46.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9396]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CBQ==", + ["value"]=46.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9397]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlbHWU=", + ["value"]=317.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5CCw==", + ["value"]=46.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9398]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQlVHWU=", + ["value"]=319.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAw==", + ["value"]=47.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9399]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CAA==", + ["value"]=47.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9400]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpeHWU=", + ["value"]=322.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBg==", + ["value"]=47.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9401]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpYHWU=", + ["value"]=324.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9CBA==", + ["value"]=47.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9402]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpZHWU=", + ["value"]=325.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAw==", + ["value"]=48.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9403]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpbHWU=", + ["value"]=327.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCAQ==", + ["value"]=48.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9404]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBg==", + ["value"]=48.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9405]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtcHWU=", + ["value"]=330.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCBA==", + ["value"]=48.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9406]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQteHWU=", + ["value"]=332.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBCCg==", + ["value"]=48.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9407]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCAQ==", + ["value"]=49.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9408]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtaHWU=", + ["value"]=336.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBw==", + ["value"]=49.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9409]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtbHWU=", + ["value"]=337.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCBA==", + ["value"]=49.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9410]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFCCg==", + ["value"]=49.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9411]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxdHWU=", + ["value"]=341.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCAQ==", + ["value"]=50.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9412]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxfHWU=", + ["value"]=343.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBw==", + ["value"]=50.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9413]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxZHWU=", + ["value"]=345.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCBA==", + ["value"]=50.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9414]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxaHWU=", + ["value"]=346.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhCCg==", + ["value"]=50.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9415]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQxUHWU=", + ["value"]=348.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCAQ==", + ["value"]=51.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9416]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBw==", + ["value"]=51.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9417]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1eHWU=", + ["value"]=352.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlCBA==", + ["value"]=51.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9418]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1YHWU=", + ["value"]=354.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAw==", + ["value"]=52.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9419]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1ZHWU=", + ["value"]=355.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCAQ==", + ["value"]=52.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9420]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBg==", + ["value"]=52.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9421]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ1VHWU=", + ["value"]=359.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpCBA==", + ["value"]=52.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9422]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5dHWU=", + ["value"]=361.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAw==", + ["value"]=53.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9423]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5fHWU=", + ["value"]=363.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCAA==", + ["value"]=53.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9424]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5ZHWU=", + ["value"]=365.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCBg==", + ["value"]=53.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9425]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5bHWU=", + ["value"]=367.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtCCw==", + ["value"]=53.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9426]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ5VHWU=", + ["value"]=369.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAg==", + ["value"]=54.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9427]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9dHWU=", + ["value"]=371.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCAA==", + ["value"]=54.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9428]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9eHWU=", + ["value"]=372.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCBQ==", + ["value"]=54.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9429]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9YHWU=", + ["value"]=374.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxCCg==", + ["value"]=54.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9430]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9aHWU=", + ["value"]=376.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CAQ==", + ["value"]=55.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9431]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQ9UHWU=", + ["value"]=378.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBw==", + ["value"]=55.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9432]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBcHWU=", + ["value"]=380.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1CBA==", + ["value"]=55.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9433]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBeHWU=", + ["value"]=382.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAw==", + ["value"]=56.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9434]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CAA==", + ["value"]=56.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9435]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBaHWU=", + ["value"]=386.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CBQ==", + ["value"]=56.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9436]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQBUHWU=", + ["value"]=388.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5CCw==", + ["value"]=56.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9437]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CAg==", + ["value"]=57.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9438]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFeHWU=", + ["value"]=392.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBw==", + ["value"]=57.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9439]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFYHWU=", + ["value"]=394.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9CBA==", + ["value"]=57.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9440]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFaHWU=", + ["value"]=396.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAw==", + ["value"]=58.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9441]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VQFVHWU=", + ["value"]=399.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCAA==", + ["value"]=58.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9442]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghdHWU=", + ["value"]=401.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCBQ==", + ["value"]=58.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9443]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghfHWU=", + ["value"]=403.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBCCg==", + ["value"]=58.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9444]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghZHWU=", + ["value"]=405.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCAQ==", + ["value"]=59.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9445]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghbHWU=", + ["value"]=407.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCBg==", + ["value"]=59.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9446]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UghVHWU=", + ["value"]=409.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFCCw==", + ["value"]=59.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9447]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgldHWU=", + ["value"]=411.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCAg==", + ["value"]=60.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9448]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglfHWU=", + ["value"]=413.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBw==", + ["value"]=60.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9449]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglZHWU=", + ["value"]=415.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhCBA==", + ["value"]=60.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9450]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UglUHWU=", + ["value"]=418.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAw==", + ["value"]=61.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9451]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpcHWU=", + ["value"]=420.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCAA==", + ["value"]=61.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9452]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpeHWU=", + ["value"]=422.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCBQ==", + ["value"]=61.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9453]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpYHWU=", + ["value"]=424.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlCCg==", + ["value"]=61.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9454]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpaHWU=", + ["value"]=426.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCAQ==", + ["value"]=62.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9455]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgpVHWU=", + ["value"]=429.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCBg==", + ["value"]=62.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9456]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtdHWU=", + ["value"]=431.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApCCw==", + ["value"]=62.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9457]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtfHWU=", + ["value"]=433.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCAg==", + ["value"]=63.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9458]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtZHWU=", + ["value"]=435.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCBw==", + ["value"]=63.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9459]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgtUHWU=", + ["value"]=438.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtCCw==", + ["value"]=63.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9460]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxcHWU=", + ["value"]=440.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCAg==", + ["value"]=64.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9461]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxeHWU=", + ["value"]=442.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCBw==", + ["value"]=64.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9462]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxYHWU=", + ["value"]=444.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxCBA==", + ["value"]=64.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9463]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxbHWU=", + ["value"]=447.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CAw==", + ["value"]=65.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9464]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgxVHWU=", + ["value"]=449.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBw==", + ["value"]=65.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9465]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1dHWU=", + ["value"]=451.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1CBA==", + ["value"]=65.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9466]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1YHWU=", + ["value"]=454.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CAw==", + ["value"]=66.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9467]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1aHWU=", + ["value"]=456.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBw==", + ["value"]=66.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9468]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug1VHWU=", + ["value"]=459.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5CBA==", + ["value"]=66.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9469]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5dHWU=", + ["value"]=461.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CAw==", + ["value"]=67.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9470]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5fHWU=", + ["value"]=463.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBw==", + ["value"]=67.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9471]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5aHWU=", + ["value"]=466.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9CBA==", + ["value"]=67.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9472]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug5UHWU=", + ["value"]=468.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCAw==", + ["value"]=68.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9473]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9dHWU=", + ["value"]=471.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCBw==", + ["value"]=68.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9474]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9fHWU=", + ["value"]=473.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABCBA==", + ["value"]=68.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9475]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9aHWU=", + ["value"]=476.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCAg==", + ["value"]=69.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9476]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Ug9UHWU=", + ["value"]=478.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCBw==", + ["value"]=69.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9477]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBdHWU=", + ["value"]=481.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFCCw==", + ["value"]=69.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9478]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBfHWU=", + ["value"]=483.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCAg==", + ["value"]=70.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9479]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBaHWU=", + ["value"]=486.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCBg==", + ["value"]=70.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9480]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgBUHWU=", + ["value"]=488.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhCCw==", + ["value"]=70.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9481]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFdHWU=", + ["value"]=491.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCAQ==", + ["value"]=71.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9482]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFfHWU=", + ["value"]=493.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCBg==", + ["value"]=71.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9483]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFaHWU=", + ["value"]=496.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlCCg==", + ["value"]=71.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9484]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UgFUHWU=", + ["value"]=498.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCAQ==", + ["value"]=72.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9485]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhdHWU=", + ["value"]=501.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpCBQ==", + ["value"]=72.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9486]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhYHWU=", + ["value"]=504.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAw==", + ["value"]=73.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9487]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhaHWU=", + ["value"]=506.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCAA==", + ["value"]=73.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9488]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwhVHWU=", + ["value"]=509.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtCBA==", + ["value"]=73.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9489]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwldHWU=", + ["value"]=511.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCAg==", + ["value"]=74.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9490]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlYHWU=", + ["value"]=514.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCBw==", + ["value"]=74.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9491]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlbHWU=", + ["value"]=517.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxCCw==", + ["value"]=74.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9492]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwlVHWU=", + ["value"]=519.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CAQ==", + ["value"]=75.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9493]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpeHWU=", + ["value"]=522.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CBg==", + ["value"]=75.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9494]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpZHWU=", + ["value"]=525.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1CCg==", + ["value"]=75.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9495]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwpUHWU=", + ["value"]=528.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CAA==", + ["value"]=76.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9496]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtcHWU=", + ["value"]=530.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5CBA==", + ["value"]=76.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9497]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtfHWU=", + ["value"]=533.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CAg==", + ["value"]=77.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9498]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtaHWU=", + ["value"]=536.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CBg==", + ["value"]=77.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9499]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwtVHWU=", + ["value"]=539.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9CCw==", + ["value"]=77.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9500]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxeHWU=", + ["value"]=542.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCAQ==", + ["value"]=78.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9501]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxYHWU=", + ["value"]=544.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBCBQ==", + ["value"]=78.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9502]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwxbHWU=", + ["value"]=547.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCAw==", + ["value"]=79.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9503]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1cHWU=", + ["value"]=550.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCBw==", + ["value"]=79.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9504]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1fHWU=", + ["value"]=553.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFCCw==", + ["value"]=79.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9505]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1aHWU=", + ["value"]=556.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCAQ==", + ["value"]=80.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9506]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw1VHWU=", + ["value"]=559.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghCBQ==", + ["value"]=80.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9507]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5eHWU=", + ["value"]=562.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCAw==", + ["value"]=81.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9508]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5ZHWU=", + ["value"]=565.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCBw==", + ["value"]=81.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9509]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw5bHWU=", + ["value"]=567.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglCCw==", + ["value"]=81.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9510]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9cHWU=", + ["value"]=570.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCAQ==", + ["value"]=82.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9511]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9fHWU=", + ["value"]=573.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpCBA==", + ["value"]=82.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9512]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9aHWU=", + ["value"]=576.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCAg==", + ["value"]=83.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9513]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Uw9VHWU=", + ["value"]=579.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCBg==", + ["value"]=83.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9514]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBeHWU=", + ["value"]=582.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtCCg==", + ["value"]=83.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9515]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBZHWU=", + ["value"]=585.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCAA==", + ["value"]=84.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9516]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwBVHWU=", + ["value"]=589.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxCBA==", + ["value"]=84.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9517]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFeHWU=", + ["value"]=592.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CAQ==", + ["value"]=85.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9518]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFZHWU=", + ["value"]=595.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1CBQ==", + ["value"]=85.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9519]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UwFUHWU=", + ["value"]=598.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CAw==", + ["value"]=86.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9520]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhdHWU=", + ["value"]=601.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CBw==", + ["value"]=86.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9521]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhYHWU=", + ["value"]=604.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5CCg==", + ["value"]=86.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9522]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAhbHWU=", + ["value"]=607.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CAA==", + ["value"]=87.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9523]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlcHWU=", + ["value"]=610.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9CCw==", + ["value"]=87.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9524]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlYHWU=", + ["value"]=614.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCAQ==", + ["value"]=88.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9525]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAlbHWU=", + ["value"]=617.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBCBQ==", + ["value"]=88.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9526]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApcHWU=", + ["value"]=620.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCAg==", + ["value"]=89.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9527]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApfHWU=", + ["value"]=623.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFCBg==", + ["value"]=89.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9528]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UApaHWU=", + ["value"]=626.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCAw==", + ["value"]=90.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9529]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtcHWU=", + ["value"]=630.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCBw==", + ["value"]=90.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9530]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtfHWU=", + ["value"]=633.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhCCg==", + ["value"]=90.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9531]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAtaHWU=", + ["value"]=636.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCAA==", + ["value"]=91.3, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9532]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxcHWU=", + ["value"]=640.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlCCw==", + ["value"]=91.8, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9533]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxfHWU=", + ["value"]=643.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCAQ==", + ["value"]=92.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9534]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAxaHWU=", + ["value"]=646.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpCBA==", + ["value"]=92.7, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9535]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1cHWU=", + ["value"]=650.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCAQ==", + ["value"]=93.2, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9536]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1fHWU=", + ["value"]=653.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtCBQ==", + ["value"]=93.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9537]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA1aHWU=", + ["value"]=656.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCAg==", + ["value"]=94.1, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9538]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5cHWU=", + ["value"]=660.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxCBQ==", + ["value"]=94.6, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9539]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5fHWU=", + ["value"]=663.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CAw==", + ["value"]=95.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9540]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA5bHWU=", + ["value"]=667.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw1CBg==", + ["value"]=95.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9541]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9cHWU=", + ["value"]=670.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CAw==", + ["value"]=96.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9542]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9YHWU=", + ["value"]=674.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw5CBg==", + ["value"]=96.5, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9543]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UA9bHWU=", + ["value"]=677.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CAw==", + ["value"]=97.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9544]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABdHWU=", + ["value"]=681.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CBw==", + ["value"]=97.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9545]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABYHWU=", + ["value"]=684.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xw9CCg==", + ["value"]=97.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9546]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UABUHWU=", + ["value"]=688.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCBw==", + ["value"]=98.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9547]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFdHWU=", + ["value"]=691.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwBCCg==", + ["value"]=98.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9548]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFZHWU=", + ["value"]=695.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCBw==", + ["value"]=99.4, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9549]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UAFVHWU=", + ["value"]=699.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwFCCg==", + ["value"]=99.9, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9550]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQheHWU=", + ["value"]=702.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhcHWU=", + ["value"]=100.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9551]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQhaHWU=", + ["value"]=706.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9552]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlcHWU=", + ["value"]=710.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhdHWU=", + ["value"]=101.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9553]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlfHWU=", + ["value"]=713.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9554]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQlbHWU=", + ["value"]=717.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwheHWU=", + ["value"]=102.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9555]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpdHWU=", + ["value"]=721.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9556]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpZHWU=", + ["value"]=725.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhfHWU=", + ["value"]=103.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9557]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQpUHWU=", + ["value"]=728.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9558]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQteHWU=", + ["value"]=732.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhYHWU=", + ["value"]=104.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9559]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQtaHWU=", + ["value"]=736.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhZHWU=", + ["value"]=105.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9560]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxcHWU=", + ["value"]=740.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9561]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxYHWU=", + ["value"]=744.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhaHWU=", + ["value"]=106.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9562]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQxbHWU=", + ["value"]=747.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9563]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1dHWU=", + ["value"]=751.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhbHWU=", + ["value"]=107.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9564]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1ZHWU=", + ["value"]=755.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9565]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ1VHWU=", + ["value"]=759.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhUHWU=", + ["value"]=108.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9566]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5fHWU=", + ["value"]=763.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9567]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ5bHWU=", + ["value"]=767.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwhVHWU=", + ["value"]=109.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9568]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9dHWU=", + ["value"]=771.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9569]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9ZHWU=", + ["value"]=775.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlcHWU=", + ["value"]=110.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9570]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQ9VHWU=", + ["value"]=779.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwldHWU=", + ["value"]=111.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9571]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBfHWU=", + ["value"]=783.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9572]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQBbHWU=", + ["value"]=787.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwleHWU=", + ["value"]=112.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9573]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFdHWU=", + ["value"]=791.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9574]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UQFaHWU=", + ["value"]=796.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlfHWU=", + ["value"]=113.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9575]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghcHWU=", + ["value"]=800.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9576]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghYHWU=", + ["value"]=804.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlYHWU=", + ["value"]=114.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9577]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XghUHWU=", + ["value"]=808.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9578]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgleHWU=", + ["value"]=812.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlZHWU=", + ["value"]=115.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9579]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XglbHWU=", + ["value"]=817.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlaHWU=", + ["value"]=116.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9580]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpdHWU=", + ["value"]=821.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9581]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpZHWU=", + ["value"]=825.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlbHWU=", + ["value"]=117.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9582]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgpVHWU=", + ["value"]=829.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9583]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtYHWU=", + ["value"]=834.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlUHWU=", + ["value"]=118.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9584]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgtUHWU=", + ["value"]=838.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwlVHWU=", + ["value"]=119.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9585]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxeHWU=", + ["value"]=842.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9586]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgxbHWU=", + ["value"]=847.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpcHWU=", + ["value"]=120.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9587]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1dHWU=", + ["value"]=851.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9588]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg1aHWU=", + ["value"]=856.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpdHWU=", + ["value"]=121.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9589]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5cHWU=", + ["value"]=860.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpeHWU=", + ["value"]=122.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9590]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5ZHWU=", + ["value"]=865.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9591]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg5VHWU=", + ["value"]=869.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpfHWU=", + ["value"]=123.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9592]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9YHWU=", + ["value"]=874.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9593]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xg9UHWU=", + ["value"]=878.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpYHWU=", + ["value"]=124.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9594]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBfHWU=", + ["value"]=883.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpZHWU=", + ["value"]=125.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9595]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgBbHWU=", + ["value"]=887.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9596]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFeHWU=", + ["value"]=892.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpaHWU=", + ["value"]=126.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9597]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XgFbHWU=", + ["value"]=897.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpbHWU=", + ["value"]=127.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9598]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhdHWU=", + ["value"]=901.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9599]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwhaHWU=", + ["value"]=906.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpUHWU=", + ["value"]=128.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9600]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwldHWU=", + ["value"]=911.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwpVHWU=", + ["value"]=129.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9601]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwlaHWU=", + ["value"]=916.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9602]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpcHWU=", + ["value"]=920.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtcHWU=", + ["value"]=130.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9603]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwpZHWU=", + ["value"]=925.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9604]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtcHWU=", + ["value"]=930.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtdHWU=", + ["value"]=131.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9605]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwtZHWU=", + ["value"]=935.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwteHWU=", + ["value"]=132.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9606]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxcHWU=", + ["value"]=940.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9607]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxZHWU=", + ["value"]=945.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtfHWU=", + ["value"]=133.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9608]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwxVHWU=", + ["value"]=949.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtYHWU=", + ["value"]=134.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9609]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1YHWU=", + ["value"]=954.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9610]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw1VHWU=", + ["value"]=959.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtZHWU=", + ["value"]=135.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9611]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5YHWU=", + ["value"]=964.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtaHWU=", + ["value"]=136.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9612]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw5VHWU=", + ["value"]=969.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtbHWU=", + ["value"]=137.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9613]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="Xw9YHWU=", + ["value"]=974.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9614]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBcHWU=", + ["value"]=980.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtUHWU=", + ["value"]=138.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9615]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwBZHWU=", + ["value"]=985.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwtVHWU=", + ["value"]=139.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9616]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFcHWU=", + ["value"]=990.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9617]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="XwFZHWU=", + ["value"]=995.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxcHWU=", + ["value"]=140.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9618]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZc", + ["value"]=1.0, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxdHWU=", + ["value"]=141.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9619]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9620]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAg==", + ["value"]=1.01, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxeHWU=", + ["value"]=142.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9621]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxfHWU=", + ["value"]=143.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9622]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAQ==", + ["value"]=1.02, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxYHWU=", + ["value"]=144.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9623]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9624]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcAA==", + ["value"]=1.03, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxZHWU=", + ["value"]=145.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9625]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxaHWU=", + ["value"]=146.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9626]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBw==", + ["value"]=1.04, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9627]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxbHWU=", + ["value"]=147.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9628]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBg==", + ["value"]=1.05, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxUHWU=", + ["value"]=148.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9629]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwxVHWU=", + ["value"]=149.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9630]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBQ==", + ["value"]=1.06, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9631]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcBA==", + ["value"]=1.07, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1cHWU=", + ["value"]=150.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9632]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1dHWU=", + ["value"]=151.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9633]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCw==", + ["value"]=1.08, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1eHWU=", + ["value"]=152.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9634]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9635]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZcCg==", + ["value"]=1.09, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1fHWU=", + ["value"]=153.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9636]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1YHWU=", + ["value"]=154.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9637]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZd", + ["value"]=1.1, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1ZHWU=", + ["value"]=155.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9638]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAg==", + ["value"]=1.11, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1aHWU=", + ["value"]=156.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9639]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9640]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAQ==", + ["value"]=1.12, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1bHWU=", + ["value"]=157.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9641]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1UHWU=", + ["value"]=158.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9642]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdAA==", + ["value"]=1.13, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw1VHWU=", + ["value"]=159.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9643]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5cHWU=", + ["value"]=160.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9644]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBw==", + ["value"]=1.14, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9645]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBg==", + ["value"]=1.15, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5dHWU=", + ["value"]=161.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9646]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5eHWU=", + ["value"]=162.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9647]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBQ==", + ["value"]=1.16, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5fHWU=", + ["value"]=163.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9648]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5YHWU=", + ["value"]=164.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9649]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdBA==", + ["value"]=1.17, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9650]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCw==", + ["value"]=1.18, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5ZHWU=", + ["value"]=165.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9651]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5aHWU=", + ["value"]=166.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9652]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZdCg==", + ["value"]=1.19, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5bHWU=", + ["value"]=167.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9653]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZe", + ["value"]=1.2, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5UHWU=", + ["value"]=168.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9654]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw5VHWU=", + ["value"]=169.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9655]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAg==", + ["value"]=1.21, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9656]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9cHWU=", + ["value"]=170.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9657]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAQ==", + ["value"]=1.22, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9dHWU=", + ["value"]=171.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9658]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeAA==", + ["value"]=1.23, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9eHWU=", + ["value"]=172.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9659]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9fHWU=", + ["value"]=173.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9660]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBw==", + ["value"]=1.24, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9YHWU=", + ["value"]=174.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9661]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBg==", + ["value"]=1.25, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9ZHWU=", + ["value"]=175.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9662]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9663]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBQ==", + ["value"]=1.26, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9aHWU=", + ["value"]=176.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9664]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeBA==", + ["value"]=1.27, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9bHWU=", + ["value"]=177.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9665]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9UHWU=", + ["value"]=178.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9666]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCw==", + ["value"]=1.28, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Vw9VHWU=", + ["value"]=179.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9667]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZeCg==", + ["value"]=1.29, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBcHWU=", + ["value"]=180.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9668]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBdHWU=", + ["value"]=181.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9669]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZf", + ["value"]=1.3, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBeHWU=", + ["value"]=182.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9670]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAg==", + ["value"]=1.31, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBfHWU=", + ["value"]=183.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9671]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBYHWU=", + ["value"]=184.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9672]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAQ==", + ["value"]=1.32, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBZHWU=", + ["value"]=185.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9673]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfAA==", + ["value"]=1.33, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9674]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBw==", + ["value"]=1.34, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBaHWU=", + ["value"]=186.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9675]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBbHWU=", + ["value"]=187.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9676]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBg==", + ["value"]=1.35, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBUHWU=", + ["value"]=188.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9677]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBQ==", + ["value"]=1.36, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwBVHWU=", + ["value"]=189.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9678]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFcHWU=", + ["value"]=190.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9679]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfBA==", + ["value"]=1.37, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFdHWU=", + ["value"]=191.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9680]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCw==", + ["value"]=1.38, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFeHWU=", + ["value"]=192.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9681]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFfHWU=", + ["value"]=193.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9682]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZfCg==", + ["value"]=1.39, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFYHWU=", + ["value"]=194.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9683]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZY", + ["value"]=1.4, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFZHWU=", + ["value"]=195.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9684]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAg==", + ["value"]=1.41, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFaHWU=", + ["value"]=196.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9685]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFbHWU=", + ["value"]=197.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9686]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAQ==", + ["value"]=1.42, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFUHWU=", + ["value"]=198.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9687]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYAA==", + ["value"]=1.43, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VwFVHWU=", + ["value"]=199.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9688]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBw==", + ["value"]=1.44, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhcHWU=", + ["value"]=200.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9689]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhdHWU=", + ["value"]=201.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9690]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBg==", + ["value"]=1.45, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAheHWU=", + ["value"]=202.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9691]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBQ==", + ["value"]=1.46, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhfHWU=", + ["value"]=203.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9692]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYBA==", + ["value"]=1.47, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhYHWU=", + ["value"]=204.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9693]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhZHWU=", + ["value"]=205.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9694]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCw==", + ["value"]=1.48, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhaHWU=", + ["value"]=206.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9695]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZYCg==", + ["value"]=1.49, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhbHWU=", + ["value"]=207.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9696]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZ", + ["value"]=1.5, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhUHWU=", + ["value"]=208.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9697]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAg==", + ["value"]=1.51, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAhVHWU=", + ["value"]=209.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9698]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlcHWU=", + ["value"]=210.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9699]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAQ==", + ["value"]=1.52, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAldHWU=", + ["value"]=211.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9700]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZAA==", + ["value"]=1.53, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAleHWU=", + ["value"]=212.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9701]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBw==", + ["value"]=1.54, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlfHWU=", + ["value"]=213.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9702]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBg==", + ["value"]=1.55, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlYHWU=", + ["value"]=214.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9703]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlZHWU=", + ["value"]=215.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9704]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBQ==", + ["value"]=1.56, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlbHWU=", + ["value"]=217.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9705]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZBA==", + ["value"]=1.57, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlUHWU=", + ["value"]=218.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9706]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCw==", + ["value"]=1.58, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAlVHWU=", + ["value"]=219.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9707]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZZCg==", + ["value"]=1.59, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApcHWU=", + ["value"]=220.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9708]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZa", + ["value"]=1.6, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApdHWU=", + ["value"]=221.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9709]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApeHWU=", + ["value"]=222.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9710]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAg==", + ["value"]=1.61, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApfHWU=", + ["value"]=223.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9711]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAQ==", + ["value"]=1.62, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApYHWU=", + ["value"]=224.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9712]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaAA==", + ["value"]=1.63, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApZHWU=", + ["value"]=225.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9713]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBw==", + ["value"]=1.64, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApaHWU=", + ["value"]=226.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9714]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBg==", + ["value"]=1.65, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApUHWU=", + ["value"]=228.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9715]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VApVHWU=", + ["value"]=229.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9716]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBQ==", + ["value"]=1.66, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtcHWU=", + ["value"]=230.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9717]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaBA==", + ["value"]=1.67, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtdHWU=", + ["value"]=231.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9718]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCw==", + ["value"]=1.68, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAteHWU=", + ["value"]=232.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9719]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZaCg==", + ["value"]=1.69, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtfHWU=", + ["value"]=233.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9720]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZb", + ["value"]=1.7, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtZHWU=", + ["value"]=235.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9721]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAg==", + ["value"]=1.71, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtaHWU=", + ["value"]=236.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9722]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAQ==", + ["value"]=1.72, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtbHWU=", + ["value"]=237.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9723]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbAA==", + ["value"]=1.73, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtUHWU=", + ["value"]=238.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9724]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAtVHWU=", + ["value"]=239.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9725]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBw==", + ["value"]=1.74, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxcHWU=", + ["value"]=240.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9726]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBg==", + ["value"]=1.75, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxeHWU=", + ["value"]=242.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9727]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBQ==", + ["value"]=1.76, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxfHWU=", + ["value"]=243.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9728]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbBA==", + ["value"]=1.77, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxYHWU=", + ["value"]=244.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9729]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCw==", + ["value"]=1.78, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxZHWU=", + ["value"]=245.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9730]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZbCg==", + ["value"]=1.79, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxbHWU=", + ["value"]=247.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9731]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZU", + ["value"]=1.8, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxUHWU=", + ["value"]=248.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9732]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAg==", + ["value"]=1.81, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAxVHWU=", + ["value"]=249.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9733]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAQ==", + ["value"]=1.82, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1cHWU=", + ["value"]=250.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9734]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUAA==", + ["value"]=1.83, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1eHWU=", + ["value"]=252.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9735]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBw==", + ["value"]=1.84, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1fHWU=", + ["value"]=253.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9736]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBg==", + ["value"]=1.85, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1YHWU=", + ["value"]=254.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9737]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBQ==", + ["value"]=1.86, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1ZHWU=", + ["value"]=255.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9738]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUBA==", + ["value"]=1.87, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1bHWU=", + ["value"]=257.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9739]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCw==", + ["value"]=1.88, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1UHWU=", + ["value"]=258.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9740]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZUCg==", + ["value"]=1.89, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA1VHWU=", + ["value"]=259.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9741]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZV", + ["value"]=1.9, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5cHWU=", + ["value"]=260.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9742]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAg==", + ["value"]=1.91, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5eHWU=", + ["value"]=262.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9743]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAQ==", + ["value"]=1.92, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5fHWU=", + ["value"]=263.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9744]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVAA==", + ["value"]=1.93, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5YHWU=", + ["value"]=264.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9745]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBw==", + ["value"]=1.94, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5aHWU=", + ["value"]=266.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9746]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBg==", + ["value"]=1.95, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5bHWU=", + ["value"]=267.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9747]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBQ==", + ["value"]=1.96, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA5UHWU=", + ["value"]=268.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9748]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVBA==", + ["value"]=1.97, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9cHWU=", + ["value"]=270.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9749]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCw==", + ["value"]=1.98, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9dHWU=", + ["value"]=271.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9750]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VxZVCg==", + ["value"]=1.99, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9eHWU=", + ["value"]=272.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9751]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZc", + ["value"]=2.0, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9YHWU=", + ["value"]=274.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9752]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAg==", + ["value"]=2.01, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9ZHWU=", + ["value"]=275.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9753]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAQ==", + ["value"]=2.02, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9bHWU=", + ["value"]=277.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9754]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcAA==", + ["value"]=2.03, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9UHWU=", + ["value"]=278.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9755]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBw==", + ["value"]=2.04, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VA9VHWU=", + ["value"]=279.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9756]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBg==", + ["value"]=2.05, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABdHWU=", + ["value"]=281.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9757]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBQ==", + ["value"]=2.06, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABeHWU=", + ["value"]=282.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9758]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcBA==", + ["value"]=2.07, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABYHWU=", + ["value"]=284.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9759]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCw==", + ["value"]=2.08, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABZHWU=", + ["value"]=285.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9760]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZcCg==", + ["value"]=2.09, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABaHWU=", + ["value"]=286.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9761]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZd", + ["value"]=2.1, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABUHWU=", + ["value"]=288.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9762]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAg==", + ["value"]=2.11, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VABVHWU=", + ["value"]=289.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9763]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdAA==", + ["value"]=2.13, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFdHWU=", + ["value"]=291.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9764]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBw==", + ["value"]=2.14, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFeHWU=", + ["value"]=292.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9765]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBg==", + ["value"]=2.15, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFYHWU=", + ["value"]=294.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9766]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBQ==", + ["value"]=2.16, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFZHWU=", + ["value"]=295.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9767]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdBA==", + ["value"]=2.17, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFbHWU=", + ["value"]=297.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9768]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCw==", + ["value"]=2.18, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VAFUHWU=", + ["value"]=298.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9769]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZdCg==", + ["value"]=2.19, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhcHWU=", + ["value"]=300.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9770]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZe", + ["value"]=2.2, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhdHWU=", + ["value"]=301.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9771]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAQ==", + ["value"]=2.22, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhfHWU=", + ["value"]=303.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9772]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeAA==", + ["value"]=2.23, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhYHWU=", + ["value"]=304.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9773]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBw==", + ["value"]=2.24, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhaHWU=", + ["value"]=306.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9774]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBg==", + ["value"]=2.25, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhbHWU=", + ["value"]=307.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9775]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBQ==", + ["value"]=2.26, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQhVHWU=", + ["value"]=309.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9776]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeBA==", + ["value"]=2.27, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlcHWU=", + ["value"]=310.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9777]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZeCg==", + ["value"]=2.29, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQleHWU=", + ["value"]=312.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9778]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZf", + ["value"]=2.3, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlfHWU=", + ["value"]=313.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9779]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAg==", + ["value"]=2.31, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlZHWU=", + ["value"]=315.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9780]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAQ==", + ["value"]=2.32, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlaHWU=", + ["value"]=316.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9781]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfAA==", + ["value"]=2.33, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQlUHWU=", + ["value"]=318.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9782]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBg==", + ["value"]=2.35, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpcHWU=", + ["value"]=320.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9783]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBQ==", + ["value"]=2.36, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpdHWU=", + ["value"]=321.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9784]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfBA==", + ["value"]=2.37, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpfHWU=", + ["value"]=323.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9785]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZfCw==", + ["value"]=2.38, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpYHWU=", + ["value"]=324.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9786]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZY", + ["value"]=2.4, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpaHWU=", + ["value"]=326.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9787]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAg==", + ["value"]=2.41, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpUHWU=", + ["value"]=328.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9788]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAQ==", + ["value"]=2.42, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQpVHWU=", + ["value"]=329.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9789]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYAA==", + ["value"]=2.43, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtdHWU=", + ["value"]=331.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9790]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBg==", + ["value"]=2.45, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtfHWU=", + ["value"]=333.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9791]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBQ==", + ["value"]=2.46, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtYHWU=", + ["value"]=334.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9792]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYBA==", + ["value"]=2.47, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtaHWU=", + ["value"]=336.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9793]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZYCw==", + ["value"]=2.48, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtUHWU=", + ["value"]=338.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9794]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZ", + ["value"]=2.5, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQtVHWU=", + ["value"]=339.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9795]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAg==", + ["value"]=2.51, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxdHWU=", + ["value"]=341.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9796]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZAQ==", + ["value"]=2.52, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxfHWU=", + ["value"]=343.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9797]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBw==", + ["value"]=2.54, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxYHWU=", + ["value"]=344.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9798]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBg==", + ["value"]=2.55, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxaHWU=", + ["value"]=346.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9799]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZBQ==", + ["value"]=2.56, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQxUHWU=", + ["value"]=348.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9800]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCw==", + ["value"]=2.58, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1cHWU=", + ["value"]=350.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9801]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZZCg==", + ["value"]=2.59, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1dHWU=", + ["value"]=351.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9802]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZa", + ["value"]=2.6, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1fHWU=", + ["value"]=353.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9803]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAQ==", + ["value"]=2.62, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1ZHWU=", + ["value"]=355.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9804]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaAA==", + ["value"]=2.63, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1bHWU=", + ["value"]=357.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9805]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBw==", + ["value"]=2.64, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ1UHWU=", + ["value"]=358.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9806]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBQ==", + ["value"]=2.66, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5cHWU=", + ["value"]=360.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9807]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaBA==", + ["value"]=2.67, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5eHWU=", + ["value"]=362.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9808]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZaCg==", + ["value"]=2.69, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5YHWU=", + ["value"]=364.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9809]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZb", + ["value"]=2.7, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5aHWU=", + ["value"]=366.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9810]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAg==", + ["value"]=2.71, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5UHWU=", + ["value"]=368.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9811]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbAA==", + ["value"]=2.73, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ5VHWU=", + ["value"]=369.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9812]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBw==", + ["value"]=2.74, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9dHWU=", + ["value"]=371.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9813]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBQ==", + ["value"]=2.76, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9fHWU=", + ["value"]=373.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9814]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbBA==", + ["value"]=2.77, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9ZHWU=", + ["value"]=375.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9815]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZbCw==", + ["value"]=2.78, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9bHWU=", + ["value"]=377.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9816]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZU", + ["value"]=2.8, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQ9VHWU=", + ["value"]=379.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9817]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAg==", + ["value"]=2.81, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBdHWU=", + ["value"]=381.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9818]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUAA==", + ["value"]=2.83, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBeHWU=", + ["value"]=382.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9819]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBw==", + ["value"]=2.84, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBYHWU=", + ["value"]=384.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9820]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBQ==", + ["value"]=2.86, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBaHWU=", + ["value"]=386.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9821]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUBA==", + ["value"]=2.87, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQBUHWU=", + ["value"]=388.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9822]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZUCg==", + ["value"]=2.89, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFcHWU=", + ["value"]=390.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9823]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZV", + ["value"]=2.9, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFeHWU=", + ["value"]=392.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9824]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAQ==", + ["value"]=2.92, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFYHWU=", + ["value"]=394.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9825]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVAA==", + ["value"]=2.93, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFaHWU=", + ["value"]=396.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9826]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBg==", + ["value"]=2.95, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="VQFUHWU=", + ["value"]=398.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9827]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVBQ==", + ["value"]=2.96, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghcHWU=", + ["value"]=400.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9828]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VBZVCw==", + ["value"]=2.98, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgheHWU=", + ["value"]=402.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9829]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZc", + ["value"]=3.0, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghYHWU=", + ["value"]=404.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9830]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAg==", + ["value"]=3.01, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghaHWU=", + ["value"]=406.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9831]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcAA==", + ["value"]=3.03, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UghUHWU=", + ["value"]=408.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9832]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBw==", + ["value"]=3.04, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglcHWU=", + ["value"]=410.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9833]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBQ==", + ["value"]=3.06, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgleHWU=", + ["value"]=412.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9834]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcBA==", + ["value"]=3.07, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglYHWU=", + ["value"]=414.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9835]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZcCg==", + ["value"]=3.09, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglaHWU=", + ["value"]=416.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9836]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAg==", + ["value"]=3.11, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UglUHWU=", + ["value"]=418.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9837]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdAQ==", + ["value"]=3.12, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpdHWU=", + ["value"]=421.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9838]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBw==", + ["value"]=3.14, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpfHWU=", + ["value"]=423.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9839]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBg==", + ["value"]=3.15, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpZHWU=", + ["value"]=425.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9840]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdBA==", + ["value"]=3.17, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpbHWU=", + ["value"]=427.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9841]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZdCg==", + ["value"]=3.19, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgpVHWU=", + ["value"]=429.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9842]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZe", + ["value"]=3.2, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtdHWU=", + ["value"]=431.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9843]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeAQ==", + ["value"]=3.22, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtfHWU=", + ["value"]=433.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9844]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBw==", + ["value"]=3.24, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtZHWU=", + ["value"]=435.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9845]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBg==", + ["value"]=3.25, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgtUHWU=", + ["value"]=438.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9846]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeBA==", + ["value"]=3.27, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxcHWU=", + ["value"]=440.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9847]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZeCg==", + ["value"]=3.29, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxeHWU=", + ["value"]=442.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9848]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAg==", + ["value"]=3.31, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxYHWU=", + ["value"]=444.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9849]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfAQ==", + ["value"]=3.32, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxaHWU=", + ["value"]=446.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9850]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBw==", + ["value"]=3.34, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgxVHWU=", + ["value"]=449.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9851]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfBQ==", + ["value"]=3.36, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1dHWU=", + ["value"]=451.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9852]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCw==", + ["value"]=3.38, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1fHWU=", + ["value"]=453.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9853]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZfCg==", + ["value"]=3.39, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1ZHWU=", + ["value"]=455.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9854]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAg==", + ["value"]=3.41, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug1UHWU=", + ["value"]=458.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9855]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYAA==", + ["value"]=3.43, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5cHWU=", + ["value"]=460.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9856]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBg==", + ["value"]=3.45, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5eHWU=", + ["value"]=462.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9857]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYBQ==", + ["value"]=3.46, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5ZHWU=", + ["value"]=465.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9858]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZYCw==", + ["value"]=3.48, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5bHWU=", + ["value"]=467.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9859]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZ", + ["value"]=3.5, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug5VHWU=", + ["value"]=469.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9860]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZAQ==", + ["value"]=3.52, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9eHWU=", + ["value"]=472.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9861]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBw==", + ["value"]=3.54, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9YHWU=", + ["value"]=474.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9862]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBQ==", + ["value"]=3.56, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9aHWU=", + ["value"]=476.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9863]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZBA==", + ["value"]=3.57, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Ug9VHWU=", + ["value"]=479.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9864]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZZCg==", + ["value"]=3.59, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBdHWU=", + ["value"]=481.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9865]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAg==", + ["value"]=3.61, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBYHWU=", + ["value"]=484.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9866]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaAA==", + ["value"]=3.63, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBaHWU=", + ["value"]=486.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9867]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBg==", + ["value"]=3.65, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgBUHWU=", + ["value"]=488.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9868]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaBA==", + ["value"]=3.67, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFdHWU=", + ["value"]=491.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9869]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZaCg==", + ["value"]=3.69, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFfHWU=", + ["value"]=493.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9870]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAg==", + ["value"]=3.71, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFaHWU=", + ["value"]=496.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9871]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbAA==", + ["value"]=3.73, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UgFUHWU=", + ["value"]=498.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9872]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBg==", + ["value"]=3.75, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhdHWU=", + ["value"]=501.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9873]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbBQ==", + ["value"]=3.76, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhfHWU=", + ["value"]=503.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9874]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZbCw==", + ["value"]=3.78, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhaHWU=", + ["value"]=506.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9875]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZU", + ["value"]=3.8, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwhUHWU=", + ["value"]=508.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9876]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUAQ==", + ["value"]=3.82, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwldHWU=", + ["value"]=511.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9877]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBw==", + ["value"]=3.84, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlfHWU=", + ["value"]=513.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9878]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUBQ==", + ["value"]=3.86, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlaHWU=", + ["value"]=516.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9879]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZUCw==", + ["value"]=3.88, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwlVHWU=", + ["value"]=519.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9880]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZV", + ["value"]=3.9, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpdHWU=", + ["value"]=521.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9881]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVAQ==", + ["value"]=3.92, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpYHWU=", + ["value"]=524.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9882]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBg==", + ["value"]=3.95, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpaHWU=", + ["value"]=526.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9883]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVBA==", + ["value"]=3.97, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwpVHWU=", + ["value"]=529.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9884]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="VRZVCg==", + ["value"]=3.99, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwteHWU=", + ["value"]=532.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9885]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAg==", + ["value"]=4.01, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtYHWU=", + ["value"]=534.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9886]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcAA==", + ["value"]=4.03, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwtbHWU=", + ["value"]=537.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9887]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBg==", + ["value"]=4.05, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxcHWU=", + ["value"]=540.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9888]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcBA==", + ["value"]=4.07, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxeHWU=", + ["value"]=542.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9889]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZcCg==", + ["value"]=4.09, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxZHWU=", + ["value"]=545.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9890]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAg==", + ["value"]=4.11, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwxUHWU=", + ["value"]=548.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9891]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdAA==", + ["value"]=4.13, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1dHWU=", + ["value"]=551.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9892]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdBQ==", + ["value"]=4.16, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1fHWU=", + ["value"]=553.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9893]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZdCw==", + ["value"]=4.18, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1aHWU=", + ["value"]=556.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9894]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZe", + ["value"]=4.2, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw1VHWU=", + ["value"]=559.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9895]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeAQ==", + ["value"]=4.22, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5eHWU=", + ["value"]=562.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9896]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBw==", + ["value"]=4.24, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5ZHWU=", + ["value"]=565.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9897]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeBA==", + ["value"]=4.27, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw5bHWU=", + ["value"]=567.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9898]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZeCg==", + ["value"]=4.29, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9cHWU=", + ["value"]=570.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9899]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAg==", + ["value"]=4.31, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9fHWU=", + ["value"]=573.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9900]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfAA==", + ["value"]=4.33, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9aHWU=", + ["value"]=576.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9901]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfBg==", + ["value"]=4.35, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Uw9VHWU=", + ["value"]=579.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9902]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZfCw==", + ["value"]=4.38, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBeHWU=", + ["value"]=582.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9903]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZY", + ["value"]=4.4, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBZHWU=", + ["value"]=585.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9904]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYAQ==", + ["value"]=4.42, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwBUHWU=", + ["value"]=588.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9905]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBg==", + ["value"]=4.45, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFcHWU=", + ["value"]=590.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9906]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYBA==", + ["value"]=4.47, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFfHWU=", + ["value"]=593.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9907]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZYCg==", + ["value"]=4.49, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFaHWU=", + ["value"]=596.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9908]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZAQ==", + ["value"]=4.52, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UwFVHWU=", + ["value"]=599.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9909]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBw==", + ["value"]=4.54, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAheHWU=", + ["value"]=602.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9910]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZBQ==", + ["value"]=4.56, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhZHWU=", + ["value"]=605.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9911]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZZCg==", + ["value"]=4.59, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAhUHWU=", + ["value"]=608.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9912]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaAg==", + ["value"]=4.61, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAldHWU=", + ["value"]=611.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9913]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBw==", + ["value"]=4.64, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlYHWU=", + ["value"]=614.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9914]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaBQ==", + ["value"]=4.66, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAlUHWU=", + ["value"]=618.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9915]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZaCw==", + ["value"]=4.68, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApdHWU=", + ["value"]=621.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9916]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAg==", + ["value"]=4.71, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApYHWU=", + ["value"]=624.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9917]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbAA==", + ["value"]=4.73, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UApbHWU=", + ["value"]=627.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9918]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbBQ==", + ["value"]=4.76, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtcHWU=", + ["value"]=630.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9919]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZbCw==", + ["value"]=4.78, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtfHWU=", + ["value"]=633.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9920]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAg==", + ["value"]=4.81, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAtaHWU=", + ["value"]=636.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9921]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUAA==", + ["value"]=4.83, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxcHWU=", + ["value"]=640.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9922]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUBQ==", + ["value"]=4.86, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxfHWU=", + ["value"]=643.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9923]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZUCw==", + ["value"]=4.88, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxaHWU=", + ["value"]=646.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9924]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAg==", + ["value"]=4.91, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAxVHWU=", + ["value"]=649.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9925]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVAA==", + ["value"]=4.93, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1eHWU=", + ["value"]=652.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9926]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVBQ==", + ["value"]=4.96, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1aHWU=", + ["value"]=656.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9927]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UhZVCg==", + ["value"]=4.99, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA1VHWU=", + ["value"]=659.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9928]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcAg==", + ["value"]=5.01, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5eHWU=", + ["value"]=662.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9929]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBw==", + ["value"]=5.04, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5aHWU=", + ["value"]=666.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9930]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcBQ==", + ["value"]=5.06, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA5VHWU=", + ["value"]=669.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9931]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZcCg==", + ["value"]=5.09, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9eHWU=", + ["value"]=672.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9932]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdAQ==", + ["value"]=5.12, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9aHWU=", + ["value"]=676.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9933]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBw==", + ["value"]=5.14, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UA9VHWU=", + ["value"]=679.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9934]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZdBA==", + ["value"]=5.17, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABeHWU=", + ["value"]=682.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9935]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZe", + ["value"]=5.2, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABaHWU=", + ["value"]=686.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9936]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeAQ==", + ["value"]=5.22, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UABVHWU=", + ["value"]=689.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9937]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeBg==", + ["value"]=5.25, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFfHWU=", + ["value"]=693.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9938]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZeCw==", + ["value"]=5.28, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UAFaHWU=", + ["value"]=696.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9939]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAg==", + ["value"]=5.31, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhcHWU=", + ["value"]=700.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9940]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfAA==", + ["value"]=5.33, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhfHWU=", + ["value"]=703.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9941]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfBQ==", + ["value"]=5.36, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQhbHWU=", + ["value"]=707.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9942]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZfCg==", + ["value"]=5.39, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlcHWU=", + ["value"]=710.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9943]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYAQ==", + ["value"]=5.42, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlYHWU=", + ["value"]=714.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9944]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBg==", + ["value"]=5.45, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQlbHWU=", + ["value"]=717.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9945]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZYBA==", + ["value"]=5.47, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpdHWU=", + ["value"]=721.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9946]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZ", + ["value"]=5.5, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpZHWU=", + ["value"]=725.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9947]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZAA==", + ["value"]=5.53, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQpUHWU=", + ["value"]=728.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9948]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZBQ==", + ["value"]=5.56, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQteHWU=", + ["value"]=732.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9949]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZZCg==", + ["value"]=5.59, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtZHWU=", + ["value"]=735.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9950]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaAQ==", + ["value"]=5.62, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQtVHWU=", + ["value"]=739.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9951]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaBg==", + ["value"]=5.65, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxfHWU=", + ["value"]=743.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9952]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZaCw==", + ["value"]=5.68, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQxbHWU=", + ["value"]=747.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9953]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbAg==", + ["value"]=5.71, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1cHWU=", + ["value"]=750.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9954]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBw==", + ["value"]=5.74, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1YHWU=", + ["value"]=754.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9955]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZbBA==", + ["value"]=5.77, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ1UHWU=", + ["value"]=758.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9956]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZU", + ["value"]=5.8, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5eHWU=", + ["value"]=762.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9957]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUAA==", + ["value"]=5.83, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5ZHWU=", + ["value"]=765.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9958]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUBQ==", + ["value"]=5.86, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ5VHWU=", + ["value"]=769.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9959]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZUCg==", + ["value"]=5.89, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9fHWU=", + ["value"]=773.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9960]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVAQ==", + ["value"]=5.92, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQ9bHWU=", + ["value"]=777.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9961]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVBg==", + ["value"]=5.95, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBdHWU=", + ["value"]=781.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9962]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UxZVCw==", + ["value"]=5.98, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBZHWU=", + ["value"]=785.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9963]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcAg==", + ["value"]=6.01, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQBVHWU=", + ["value"]=789.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9964]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBw==", + ["value"]=6.04, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFfHWU=", + ["value"]=793.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9965]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZcBA==", + ["value"]=6.07, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="UQFbHWU=", + ["value"]=797.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9966]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdAg==", + ["value"]=6.11, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghdHWU=", + ["value"]=801.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9967]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBw==", + ["value"]=6.14, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghZHWU=", + ["value"]=805.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9968]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZdBA==", + ["value"]=6.17, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XghVHWU=", + ["value"]=809.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9969]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZe", + ["value"]=6.2, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglfHWU=", + ["value"]=813.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9970]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeAA==", + ["value"]=6.23, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XglbHWU=", + ["value"]=817.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9971]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZeBA==", + ["value"]=6.27, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpdHWU=", + ["value"]=821.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9972]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZf", + ["value"]=6.3, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpZHWU=", + ["value"]=825.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9973]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfAA==", + ["value"]=6.33, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgpVHWU=", + ["value"]=829.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9974]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZfBQ==", + ["value"]=6.36, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtfHWU=", + ["value"]=833.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9975]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZY", + ["value"]=6.4, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgtbHWU=", + ["value"]=837.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9976]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYAA==", + ["value"]=6.43, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxeHWU=", + ["value"]=842.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9977]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZYBQ==", + ["value"]=6.46, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgxaHWU=", + ["value"]=846.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9978]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZ", + ["value"]=6.5, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1cHWU=", + ["value"]=850.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9979]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZAA==", + ["value"]=6.53, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1YHWU=", + ["value"]=854.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9980]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZZBA==", + ["value"]=6.57, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg1UHWU=", + ["value"]=858.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9981]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZa", + ["value"]=6.6, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5fHWU=", + ["value"]=863.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9982]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBw==", + ["value"]=6.64, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg5bHWU=", + ["value"]=867.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9983]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZaBA==", + ["value"]=6.67, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9dHWU=", + ["value"]=871.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9984]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZb", + ["value"]=6.7, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="Xg9aHWU=", + ["value"]=876.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9985]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBw==", + ["value"]=6.74, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBcHWU=", + ["value"]=880.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9986]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZbBA==", + ["value"]=6.77, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBZHWU=", + ["value"]=885.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9987]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUAg==", + ["value"]=6.81, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgBVHWU=", + ["value"]=889.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9988]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUBg==", + ["value"]=6.85, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFfHWU=", + ["value"]=893.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9989]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZUCw==", + ["value"]=6.88, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XgFUHWU=", + ["value"]=898.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9990]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVAQ==", + ["value"]=6.92, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwheHWU=", + ["value"]=902.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9991]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVBg==", + ["value"]=6.95, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwhbHWU=", + ["value"]=907.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9992]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="UBZVCg==", + ["value"]=6.99, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwldHWU=", + ["value"]=911.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9993]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcAA==", + ["value"]=7.03, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwlaHWU=", + ["value"]=916.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9994]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZcBQ==", + ["value"]=7.06, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpdHWU=", + ["value"]=921.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9995]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZd", + ["value"]=7.1, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwpZHWU=", + ["value"]=925.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9996]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBw==", + ["value"]=7.14, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtcHWU=", + ["value"]=930.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9997]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZdBA==", + ["value"]=7.17, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtZHWU=", + ["value"]=935.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9998]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeAg==", + ["value"]=7.21, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwtVHWU=", + ["value"]=939.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [9999]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeBg==", + ["value"]=7.25, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxYHWU=", + ["value"]=944.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + }, + [10000]={ + ["atk"]=10, + ["hp"]=10, + ["cost_atk"]={ + ["value_for_nothing"]="URZeCg==", + ["value"]=7.29, + ["unit_for_nothing"]="Xg==", + ["unit"]=8 + }, + ["cost_hp"]={ + ["value_for_nothing"]="XwxVHWU=", + ["value"]=949.0, + ["unit_for_nothing"]="UQ==", + ["unit"]=7 + } + } +} +local config = { +data=cultivation,count=10000 +} +return config \ No newline at end of file diff --git a/lua/app/config/cultivation.lua.meta b/lua/app/config/cultivation.lua.meta new file mode 100644 index 00000000..b1f7834f --- /dev/null +++ b/lua/app/config/cultivation.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 03c663139e4b068489c6e080d7d2a2fd +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/dungeon.lua b/lua/app/config/dungeon.lua new file mode 100644 index 00000000..5f46e7a2 --- /dev/null +++ b/lua/app/config/dungeon.lua @@ -0,0 +1,6493 @@ +local dungeon = { + [1]={ + ["type"]=1, + ["bg"]="dungeon_bg_1", + ["title"]="dungeon_title_2", + ["key_id"]=4, + ["ad_times"]=2, + ["wave"]=5, + ["atk_coefficient"]={ + { + ["value"]=100, + ["unit"]=0 + }, + { + ["value"]=200, + ["unit"]=0 + }, + { + ["value"]=400, + ["unit"]=0 + }, + { + ["value"]=800, + ["unit"]=0 + }, + { + ["value"]=4000, + ["unit"]=0 + }, + { + ["value"]=20000, + ["unit"]=0 + }, + { + ["value"]=100000, + ["unit"]=0 + }, + { + ["value"]=1000, + ["unit"]=1 + }, + { + ["value"]=10000, + ["unit"]=1 + }, + { + ["value"]=100000, + ["unit"]=1 + }, + { + ["value"]=500000, + ["unit"]=1 + }, + { + ["value"]=2500, + ["unit"]=2 + }, + { + ["value"]=12500, + ["unit"]=2 + }, + { + ["value"]=62500, + ["unit"]=2 + }, + { + ["value"]=312500, + ["unit"]=2 + }, + { + ["value"]=1250, + ["unit"]=3 + }, + { + ["value"]=5000, + ["unit"]=3 + }, + { + ["value"]=20000, + ["unit"]=3 + }, + { + ["value"]=80000, + ["unit"]=3 + }, + { + ["value"]=320000, + ["unit"]=3 + }, + { + ["value"]=960000, + ["unit"]=3 + }, + { + ["value"]=2880, + ["unit"]=4 + }, + { + ["value"]=8640, + ["unit"]=4 + }, + { + ["value"]=25920, + ["unit"]=4 + }, + { + ["value"]=77760, + ["unit"]=4 + }, + { + ["value"]=155520, + ["unit"]=4 + }, + { + ["value"]=311040, + ["unit"]=4 + }, + { + ["value"]=622080, + ["unit"]=4 + }, + { + ["value"]=1244, + ["unit"]=5 + }, + { + ["value"]=2488, + ["unit"]=5 + }, + { + ["value"]=4977, + ["unit"]=5 + }, + { + ["value"]=9953, + ["unit"]=5 + }, + { + ["value"]=19907, + ["unit"]=5 + }, + { + ["value"]=39813, + ["unit"]=5 + }, + { + ["value"]=79626, + ["unit"]=5 + }, + { + ["value"]=159252, + ["unit"]=5 + }, + { + ["value"]=318505, + ["unit"]=5 + }, + { + ["value"]=637010, + ["unit"]=5 + }, + { + ["value"]=1274, + ["unit"]=6 + }, + { + ["value"]=2548, + ["unit"]=6 + }, + { + ["value"]=5096, + ["unit"]=6 + }, + { + ["value"]=10192, + ["unit"]=6 + }, + { + ["value"]=20384, + ["unit"]=6 + }, + { + ["value"]=40769, + ["unit"]=6 + }, + { + ["value"]=81537, + ["unit"]=6 + }, + { + ["value"]=163075, + ["unit"]=6 + }, + { + ["value"]=326149, + ["unit"]=6 + }, + { + ["value"]=652298, + ["unit"]=6 + }, + { + ["value"]=1305, + ["unit"]=7 + }, + { + ["value"]=2609, + ["unit"]=7 + }, + { + ["value"]=5218, + ["unit"]=7 + }, + { + ["value"]=10437, + ["unit"]=7 + }, + { + ["value"]=20874, + ["unit"]=7 + }, + { + ["value"]=41747, + ["unit"]=7 + }, + { + ["value"]=83494, + ["unit"]=7 + }, + { + ["value"]=166988, + ["unit"]=7 + }, + { + ["value"]=333977, + ["unit"]=7 + }, + { + ["value"]=667953, + ["unit"]=7 + }, + { + ["value"]=1336, + ["unit"]=8 + }, + { + ["value"]=2672, + ["unit"]=8 + }, + { + ["value"]=5344, + ["unit"]=8 + }, + { + ["value"]=10687, + ["unit"]=8 + }, + { + ["value"]=21375, + ["unit"]=8 + }, + { + ["value"]=42749, + ["unit"]=8 + }, + { + ["value"]=85498, + ["unit"]=8 + }, + { + ["value"]=170996, + ["unit"]=8 + }, + { + ["value"]=341992, + ["unit"]=8 + }, + { + ["value"]=683984, + ["unit"]=8 + }, + { + ["value"]=1368, + ["unit"]=9 + }, + { + ["value"]=2736, + ["unit"]=9 + }, + { + ["value"]=5472, + ["unit"]=9 + }, + { + ["value"]=10944, + ["unit"]=9 + }, + { + ["value"]=21887, + ["unit"]=9 + }, + { + ["value"]=43775, + ["unit"]=9 + }, + { + ["value"]=87550, + ["unit"]=9 + }, + { + ["value"]=175100, + ["unit"]=9 + }, + { + ["value"]=350200, + ["unit"]=9 + }, + { + ["value"]=700400, + ["unit"]=9 + }, + { + ["value"]=1401, + ["unit"]=10 + }, + { + ["value"]=2802, + ["unit"]=10 + }, + { + ["value"]=5603, + ["unit"]=10 + }, + { + ["value"]=11206, + ["unit"]=10 + }, + { + ["value"]=22413, + ["unit"]=10 + }, + { + ["value"]=44826, + ["unit"]=10 + }, + { + ["value"]=89651, + ["unit"]=10 + }, + { + ["value"]=179302, + ["unit"]=10 + }, + { + ["value"]=358605, + ["unit"]=10 + }, + { + ["value"]=717209, + ["unit"]=10 + }, + { + ["value"]=1434, + ["unit"]=11 + }, + { + ["value"]=2869, + ["unit"]=11 + }, + { + ["value"]=5738, + ["unit"]=11 + }, + { + ["value"]=11475, + ["unit"]=11 + }, + { + ["value"]=22951, + ["unit"]=11 + }, + { + ["value"]=45901, + ["unit"]=11 + }, + { + ["value"]=91803, + ["unit"]=11 + }, + { + ["value"]=183606, + ["unit"]=11 + }, + { + ["value"]=367211, + ["unit"]=11 + }, + { + ["value"]=734422, + ["unit"]=11 + }, + { + ["value"]=1469, + ["unit"]=12 + }, + { + ["value"]=2938, + ["unit"]=12 + } + }, + ["hp_coefficient"]={ + { + ["value"]=20000, + ["unit"]=0 + }, + { + ["value"]=40000, + ["unit"]=0 + }, + { + ["value"]=80000, + ["unit"]=0 + }, + { + ["value"]=160000, + ["unit"]=0 + }, + { + ["value"]=800000, + ["unit"]=0 + }, + { + ["value"]=4000, + ["unit"]=1 + }, + { + ["value"]=20000, + ["unit"]=1 + }, + { + ["value"]=200000, + ["unit"]=1 + }, + { + ["value"]=2000, + ["unit"]=2 + }, + { + ["value"]=20000, + ["unit"]=2 + }, + { + ["value"]=100000, + ["unit"]=2 + }, + { + ["value"]=500000, + ["unit"]=2 + }, + { + ["value"]=2500, + ["unit"]=3 + }, + { + ["value"]=12500, + ["unit"]=3 + }, + { + ["value"]=62500, + ["unit"]=3 + }, + { + ["value"]=250000, + ["unit"]=3 + }, + { + ["value"]=1000, + ["unit"]=4 + }, + { + ["value"]=4000, + ["unit"]=4 + }, + { + ["value"]=16000, + ["unit"]=4 + }, + { + ["value"]=64000, + ["unit"]=4 + }, + { + ["value"]=192000, + ["unit"]=4 + }, + { + ["value"]=576000, + ["unit"]=4 + }, + { + ["value"]=1728, + ["unit"]=5 + }, + { + ["value"]=5184, + ["unit"]=5 + }, + { + ["value"]=15552, + ["unit"]=5 + }, + { + ["value"]=31104, + ["unit"]=5 + }, + { + ["value"]=62208, + ["unit"]=5 + }, + { + ["value"]=124416, + ["unit"]=5 + }, + { + ["value"]=248832, + ["unit"]=5 + }, + { + ["value"]=497664, + ["unit"]=5 + }, + { + ["value"]=995328, + ["unit"]=5 + }, + { + ["value"]=1991, + ["unit"]=6 + }, + { + ["value"]=3981, + ["unit"]=6 + }, + { + ["value"]=7963, + ["unit"]=6 + }, + { + ["value"]=15925, + ["unit"]=6 + }, + { + ["value"]=31850, + ["unit"]=6 + }, + { + ["value"]=63701, + ["unit"]=6 + }, + { + ["value"]=127402, + ["unit"]=6 + }, + { + ["value"]=254804, + ["unit"]=6 + }, + { + ["value"]=509608, + ["unit"]=6 + }, + { + ["value"]=1019, + ["unit"]=7 + }, + { + ["value"]=2038, + ["unit"]=7 + }, + { + ["value"]=4077, + ["unit"]=7 + }, + { + ["value"]=8154, + ["unit"]=7 + }, + { + ["value"]=16307, + ["unit"]=7 + }, + { + ["value"]=32615, + ["unit"]=7 + }, + { + ["value"]=65230, + ["unit"]=7 + }, + { + ["value"]=130460, + ["unit"]=7 + }, + { + ["value"]=260919, + ["unit"]=7 + }, + { + ["value"]=521839, + ["unit"]=7 + }, + { + ["value"]=1044, + ["unit"]=8 + }, + { + ["value"]=2087, + ["unit"]=8 + }, + { + ["value"]=4175, + ["unit"]=8 + }, + { + ["value"]=8349, + ["unit"]=8 + }, + { + ["value"]=16699, + ["unit"]=8 + }, + { + ["value"]=33398, + ["unit"]=8 + }, + { + ["value"]=66795, + ["unit"]=8 + }, + { + ["value"]=133591, + ["unit"]=8 + }, + { + ["value"]=267181, + ["unit"]=8 + }, + { + ["value"]=534363, + ["unit"]=8 + }, + { + ["value"]=1069, + ["unit"]=9 + }, + { + ["value"]=2137, + ["unit"]=9 + }, + { + ["value"]=4275, + ["unit"]=9 + }, + { + ["value"]=8550, + ["unit"]=9 + }, + { + ["value"]=17100, + ["unit"]=9 + }, + { + ["value"]=34199, + ["unit"]=9 + }, + { + ["value"]=68398, + ["unit"]=9 + }, + { + ["value"]=136797, + ["unit"]=9 + }, + { + ["value"]=273594, + ["unit"]=9 + }, + { + ["value"]=547187, + ["unit"]=9 + }, + { + ["value"]=1094, + ["unit"]=10 + }, + { + ["value"]=2189, + ["unit"]=10 + }, + { + ["value"]=4377, + ["unit"]=10 + }, + { + ["value"]=8755, + ["unit"]=10 + }, + { + ["value"]=17510, + ["unit"]=10 + }, + { + ["value"]=35020, + ["unit"]=10 + }, + { + ["value"]=70040, + ["unit"]=10 + }, + { + ["value"]=140080, + ["unit"]=10 + }, + { + ["value"]=280160, + ["unit"]=10 + }, + { + ["value"]=560320, + ["unit"]=10 + }, + { + ["value"]=1121, + ["unit"]=11 + }, + { + ["value"]=2241, + ["unit"]=11 + }, + { + ["value"]=4483, + ["unit"]=11 + }, + { + ["value"]=8965, + ["unit"]=11 + }, + { + ["value"]=17930, + ["unit"]=11 + }, + { + ["value"]=35860, + ["unit"]=11 + }, + { + ["value"]=71721, + ["unit"]=11 + }, + { + ["value"]=143442, + ["unit"]=11 + }, + { + ["value"]=286884, + ["unit"]=11 + }, + { + ["value"]=573768, + ["unit"]=11 + }, + { + ["value"]=1148, + ["unit"]=12 + }, + { + ["value"]=2295, + ["unit"]=12 + }, + { + ["value"]=4590, + ["unit"]=12 + }, + { + ["value"]=9180, + ["unit"]=12 + }, + { + ["value"]=18361, + ["unit"]=12 + }, + { + ["value"]=36721, + ["unit"]=12 + }, + { + ["value"]=73442, + ["unit"]=12 + }, + { + ["value"]=146884, + ["unit"]=12 + }, + { + ["value"]=293769, + ["unit"]=12 + }, + { + ["value"]=587538, + ["unit"]=12 + } + }, + ["time_limit"]=20, + ["max_lv"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=40000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=80000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=150000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=300000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=500000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=700000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1000, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=2000, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=3000, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=4096, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=8192, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=16384, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=32768, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=65536, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=131072, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=393216, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1180, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=3539, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=10617, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=31850, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=95551, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=286654, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=859963, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=2580, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=7740, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=23219, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=69657, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=208971, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=626913, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1881, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=5642, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=16927, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=50780, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=152340, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=457020, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1828, + ["unit"]=5 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=9140, + ["unit"]=5 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=45702, + ["unit"]=5 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=228510, + ["unit"]=5 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=2285, + ["unit"]=6 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=22851, + ["unit"]=6 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=228510, + ["unit"]=6 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=2285, + ["unit"]=7 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=45702, + ["unit"]=7 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=2285, + ["unit"]=8 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=114255, + ["unit"]=8 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=11425, + ["unit"]=9 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1143, + ["unit"]=10 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=114255, + ["unit"]=10 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=22851, + ["unit"]=11 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=4570, + ["unit"]=12 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=2285, + ["unit"]=13 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1143, + ["unit"]=14 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=571275, + ["unit"]=14 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=28564, + ["unit"]=15 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1428, + ["unit"]=16 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=71409, + ["unit"]=16 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=64268, + ["unit"]=17 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=57842, + ["unit"]=18 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=52057, + ["unit"]=19 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=46852, + ["unit"]=20 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=42167, + ["unit"]=21 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=63250, + ["unit"]=22 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=189749, + ["unit"]=23 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=569248, + ["unit"]=24 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1708, + ["unit"]=26 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=5123, + ["unit"]=27 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=15370, + ["unit"]=28 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=46109, + ["unit"]=29 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=138327, + ["unit"]=30 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=414982, + ["unit"]=31 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1245, + ["unit"]=33 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=3735, + ["unit"]=34 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=11205, + ["unit"]=35 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=33614, + ["unit"]=36 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=100841, + ["unit"]=37 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=302522, + ["unit"]=38 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=907565, + ["unit"]=39 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=2723, + ["unit"]=41 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=8168, + ["unit"]=42 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=24504, + ["unit"]=43 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=73513, + ["unit"]=44 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=220538, + ["unit"]=45 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=661615, + ["unit"]=46 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1985, + ["unit"]=48 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=5955, + ["unit"]=49 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=17864, + ["unit"]=50 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=53591, + ["unit"]=51 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=160772, + ["unit"]=52 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=482317, + ["unit"]=53 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1447, + ["unit"]=55 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=4341, + ["unit"]=56 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=13023, + ["unit"]=57 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=39068, + ["unit"]=58 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=117203, + ["unit"]=59 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=351609, + ["unit"]=60 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1055, + ["unit"]=62 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=3164, + ["unit"]=63 + } + } + }, + ["random_monster"]={ + 1001, + 1002, + 1003, + 1004, + 1005 + } + }, + [2]={ + ["type"]=2, + ["bg"]="dungeon_bg_2", + ["title"]="dungeon_title_1", + ["key_id"]=5, + ["ad_times"]=2, + ["wave"]=1, + ["atk_coefficient"]={ + { + ["value"]=125, + ["unit"]=0 + }, + { + ["value"]=500, + ["unit"]=0 + }, + { + ["value"]=2000, + ["unit"]=0 + }, + { + ["value"]=8000, + ["unit"]=0 + }, + { + ["value"]=40000, + ["unit"]=0 + }, + { + ["value"]=200, + ["unit"]=1 + }, + { + ["value"]=1000, + ["unit"]=1 + }, + { + ["value"]=10000, + ["unit"]=1 + }, + { + ["value"]=100000, + ["unit"]=1 + }, + { + ["value"]=1000, + ["unit"]=2 + }, + { + ["value"]=5000, + ["unit"]=2 + }, + { + ["value"]=25000, + ["unit"]=2 + }, + { + ["value"]=125000, + ["unit"]=2 + }, + { + ["value"]=625000, + ["unit"]=2 + }, + { + ["value"]=3125, + ["unit"]=3 + }, + { + ["value"]=12500, + ["unit"]=3 + }, + { + ["value"]=50000, + ["unit"]=3 + }, + { + ["value"]=200000, + ["unit"]=3 + }, + { + ["value"]=800000, + ["unit"]=3 + }, + { + ["value"]=3200, + ["unit"]=4 + }, + { + ["value"]=9600, + ["unit"]=4 + }, + { + ["value"]=28800, + ["unit"]=4 + }, + { + ["value"]=86400, + ["unit"]=4 + }, + { + ["value"]=259200, + ["unit"]=4 + }, + { + ["value"]=777600, + ["unit"]=4 + }, + { + ["value"]=1555, + ["unit"]=5 + }, + { + ["value"]=3110, + ["unit"]=5 + }, + { + ["value"]=6221, + ["unit"]=5 + }, + { + ["value"]=12442, + ["unit"]=5 + }, + { + ["value"]=24883, + ["unit"]=5 + }, + { + ["value"]=49766, + ["unit"]=5 + }, + { + ["value"]=99533, + ["unit"]=5 + }, + { + ["value"]=199066, + ["unit"]=5 + }, + { + ["value"]=398131, + ["unit"]=5 + }, + { + ["value"]=796262, + ["unit"]=5 + }, + { + ["value"]=1593, + ["unit"]=6 + }, + { + ["value"]=3185, + ["unit"]=6 + }, + { + ["value"]=6370, + ["unit"]=6 + }, + { + ["value"]=12740, + ["unit"]=6 + }, + { + ["value"]=25480, + ["unit"]=6 + }, + { + ["value"]=50961, + ["unit"]=6 + }, + { + ["value"]=101922, + ["unit"]=6 + }, + { + ["value"]=203843, + ["unit"]=6 + }, + { + ["value"]=407686, + ["unit"]=6 + }, + { + ["value"]=815373, + ["unit"]=6 + }, + { + ["value"]=1631, + ["unit"]=7 + }, + { + ["value"]=3261, + ["unit"]=7 + }, + { + ["value"]=6523, + ["unit"]=7 + }, + { + ["value"]=13046, + ["unit"]=7 + }, + { + ["value"]=26092, + ["unit"]=7 + }, + { + ["value"]=52184, + ["unit"]=7 + }, + { + ["value"]=104368, + ["unit"]=7 + }, + { + ["value"]=208735, + ["unit"]=7 + }, + { + ["value"]=417471, + ["unit"]=7 + }, + { + ["value"]=834942, + ["unit"]=7 + }, + { + ["value"]=1670, + ["unit"]=8 + }, + { + ["value"]=3340, + ["unit"]=8 + }, + { + ["value"]=6680, + ["unit"]=8 + }, + { + ["value"]=13359, + ["unit"]=8 + }, + { + ["value"]=26718, + ["unit"]=8 + }, + { + ["value"]=53436, + ["unit"]=8 + }, + { + ["value"]=106873, + ["unit"]=8 + }, + { + ["value"]=213745, + ["unit"]=8 + }, + { + ["value"]=427490, + ["unit"]=8 + }, + { + ["value"]=854980, + ["unit"]=8 + }, + { + ["value"]=1710, + ["unit"]=9 + }, + { + ["value"]=3420, + ["unit"]=9 + }, + { + ["value"]=6840, + ["unit"]=9 + }, + { + ["value"]=13680, + ["unit"]=9 + }, + { + ["value"]=27359, + ["unit"]=9 + }, + { + ["value"]=54719, + ["unit"]=9 + }, + { + ["value"]=109437, + ["unit"]=9 + }, + { + ["value"]=218875, + ["unit"]=9 + }, + { + ["value"]=437750, + ["unit"]=9 + }, + { + ["value"]=875500, + ["unit"]=9 + }, + { + ["value"]=1751, + ["unit"]=10 + }, + { + ["value"]=3502, + ["unit"]=10 + }, + { + ["value"]=7004, + ["unit"]=10 + }, + { + ["value"]=14008, + ["unit"]=10 + }, + { + ["value"]=28016, + ["unit"]=10 + }, + { + ["value"]=56032, + ["unit"]=10 + }, + { + ["value"]=112064, + ["unit"]=10 + }, + { + ["value"]=224128, + ["unit"]=10 + }, + { + ["value"]=448256, + ["unit"]=10 + }, + { + ["value"]=896512, + ["unit"]=10 + }, + { + ["value"]=1793, + ["unit"]=11 + }, + { + ["value"]=3586, + ["unit"]=11 + }, + { + ["value"]=7172, + ["unit"]=11 + }, + { + ["value"]=14344, + ["unit"]=11 + }, + { + ["value"]=28688, + ["unit"]=11 + }, + { + ["value"]=57377, + ["unit"]=11 + }, + { + ["value"]=114754, + ["unit"]=11 + }, + { + ["value"]=229507, + ["unit"]=11 + }, + { + ["value"]=459014, + ["unit"]=11 + }, + { + ["value"]=918028, + ["unit"]=11 + }, + { + ["value"]=1836, + ["unit"]=12 + }, + { + ["value"]=3672, + ["unit"]=12 + }, + { + ["value"]=7344, + ["unit"]=12 + }, + { + ["value"]=14688, + ["unit"]=12 + }, + { + ["value"]=29377, + ["unit"]=12 + } + }, + ["hp_coefficient"]={ + { + ["value"]=200000, + ["unit"]=0 + }, + { + ["value"]=400000, + ["unit"]=0 + }, + { + ["value"]=800000, + ["unit"]=0 + }, + { + ["value"]=1600000, + ["unit"]=0 + }, + { + ["value"]=8000, + ["unit"]=1 + }, + { + ["value"]=40000, + ["unit"]=1 + }, + { + ["value"]=200000, + ["unit"]=1 + }, + { + ["value"]=2000, + ["unit"]=2 + }, + { + ["value"]=20000, + ["unit"]=2 + }, + { + ["value"]=200000, + ["unit"]=2 + }, + { + ["value"]=1000, + ["unit"]=3 + }, + { + ["value"]=5000, + ["unit"]=3 + }, + { + ["value"]=25000, + ["unit"]=3 + }, + { + ["value"]=125000, + ["unit"]=3 + }, + { + ["value"]=625000, + ["unit"]=3 + }, + { + ["value"]=2500, + ["unit"]=4 + }, + { + ["value"]=10000, + ["unit"]=4 + }, + { + ["value"]=40000, + ["unit"]=4 + }, + { + ["value"]=160000, + ["unit"]=4 + }, + { + ["value"]=640000, + ["unit"]=4 + }, + { + ["value"]=1920, + ["unit"]=5 + }, + { + ["value"]=5760, + ["unit"]=5 + }, + { + ["value"]=17280, + ["unit"]=5 + }, + { + ["value"]=51840, + ["unit"]=5 + }, + { + ["value"]=155520, + ["unit"]=5 + }, + { + ["value"]=311040, + ["unit"]=5 + }, + { + ["value"]=622080, + ["unit"]=5 + }, + { + ["value"]=1244, + ["unit"]=6 + }, + { + ["value"]=2488, + ["unit"]=6 + }, + { + ["value"]=4977, + ["unit"]=6 + }, + { + ["value"]=9953, + ["unit"]=6 + }, + { + ["value"]=19907, + ["unit"]=6 + }, + { + ["value"]=39813, + ["unit"]=6 + }, + { + ["value"]=79626, + ["unit"]=6 + }, + { + ["value"]=159252, + ["unit"]=6 + }, + { + ["value"]=318505, + ["unit"]=6 + }, + { + ["value"]=637010, + ["unit"]=6 + }, + { + ["value"]=1274, + ["unit"]=7 + }, + { + ["value"]=2548, + ["unit"]=7 + }, + { + ["value"]=5096, + ["unit"]=7 + }, + { + ["value"]=10192, + ["unit"]=7 + }, + { + ["value"]=20384, + ["unit"]=7 + }, + { + ["value"]=40769, + ["unit"]=7 + }, + { + ["value"]=81537, + ["unit"]=7 + }, + { + ["value"]=163075, + ["unit"]=7 + }, + { + ["value"]=326149, + ["unit"]=7 + }, + { + ["value"]=652298, + ["unit"]=7 + }, + { + ["value"]=1305, + ["unit"]=8 + }, + { + ["value"]=2609, + ["unit"]=8 + }, + { + ["value"]=5218, + ["unit"]=8 + }, + { + ["value"]=10437, + ["unit"]=8 + }, + { + ["value"]=20874, + ["unit"]=8 + }, + { + ["value"]=41747, + ["unit"]=8 + }, + { + ["value"]=83494, + ["unit"]=8 + }, + { + ["value"]=166988, + ["unit"]=8 + }, + { + ["value"]=333977, + ["unit"]=8 + }, + { + ["value"]=667953, + ["unit"]=8 + }, + { + ["value"]=1336, + ["unit"]=9 + }, + { + ["value"]=2672, + ["unit"]=9 + }, + { + ["value"]=5344, + ["unit"]=9 + }, + { + ["value"]=10687, + ["unit"]=9 + }, + { + ["value"]=21375, + ["unit"]=9 + }, + { + ["value"]=42749, + ["unit"]=9 + }, + { + ["value"]=85498, + ["unit"]=9 + }, + { + ["value"]=170996, + ["unit"]=9 + }, + { + ["value"]=341992, + ["unit"]=9 + }, + { + ["value"]=683984, + ["unit"]=9 + }, + { + ["value"]=1368, + ["unit"]=10 + }, + { + ["value"]=2736, + ["unit"]=10 + }, + { + ["value"]=5472, + ["unit"]=10 + }, + { + ["value"]=10944, + ["unit"]=10 + }, + { + ["value"]=21887, + ["unit"]=10 + }, + { + ["value"]=43775, + ["unit"]=10 + }, + { + ["value"]=87550, + ["unit"]=10 + }, + { + ["value"]=175100, + ["unit"]=10 + }, + { + ["value"]=350200, + ["unit"]=10 + }, + { + ["value"]=700400, + ["unit"]=10 + }, + { + ["value"]=1401, + ["unit"]=11 + }, + { + ["value"]=2802, + ["unit"]=11 + }, + { + ["value"]=5603, + ["unit"]=11 + }, + { + ["value"]=11206, + ["unit"]=11 + }, + { + ["value"]=22413, + ["unit"]=11 + }, + { + ["value"]=44826, + ["unit"]=11 + }, + { + ["value"]=89651, + ["unit"]=11 + }, + { + ["value"]=179302, + ["unit"]=11 + }, + { + ["value"]=358605, + ["unit"]=11 + }, + { + ["value"]=717209, + ["unit"]=11 + }, + { + ["value"]=1434, + ["unit"]=12 + }, + { + ["value"]=2869, + ["unit"]=12 + }, + { + ["value"]=5738, + ["unit"]=12 + }, + { + ["value"]=11475, + ["unit"]=12 + }, + { + ["value"]=22951, + ["unit"]=12 + }, + { + ["value"]=45901, + ["unit"]=12 + }, + { + ["value"]=91803, + ["unit"]=12 + }, + { + ["value"]=183606, + ["unit"]=12 + }, + { + ["value"]=367211, + ["unit"]=12 + }, + { + ["value"]=734422, + ["unit"]=12 + }, + { + ["value"]=1469, + ["unit"]=13 + }, + { + ["value"]=2938, + ["unit"]=13 + }, + { + ["value"]=5875, + ["unit"]=13 + } + }, + ["time_limit"]=60, + ["max_lv"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=510, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=520, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=530, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=540, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=550, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=560, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=570, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=580, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=590, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=610, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=620, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=630, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=640, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=650, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=660, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=670, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=680, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=690, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=710, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=720, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=730, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=740, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=750, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=760, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=770, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=780, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=790, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=810, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=820, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=830, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=840, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=850, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=860, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=870, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=880, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=890, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=910, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=920, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=930, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=940, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=950, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=960, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=970, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=980, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=990, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1010, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1020, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1030, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1040, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1060, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1070, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1080, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1090, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1110, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1130, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1140, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1150, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1160, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1170, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1180, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1190, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1210, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1220, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1230, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1240, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1250, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1260, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1270, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1290, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1310, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1320, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1330, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1340, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1360, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1370, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1380, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1390, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1410, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1430, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1450, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1460, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1470, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1480, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1490, + ["unit"]=0 + } + } + }, + ["random_monster"]={ + 2001 + } + }, + [3]={ + ["type"]=3, + ["bg"]="dungeon_bg_3", + ["title"]="dungeon_title_4", + ["key_id"]=6, + ["ad_times"]=2, + ["wave"]=1, + ["atk_coefficient"]={ + { + ["value"]=3000, + ["unit"]=0 + }, + { + ["value"]=6000, + ["unit"]=0 + }, + { + ["value"]=12000, + ["unit"]=0 + }, + { + ["value"]=24000, + ["unit"]=0 + }, + { + ["value"]=120000, + ["unit"]=0 + }, + { + ["value"]=600, + ["unit"]=1 + }, + { + ["value"]=3000, + ["unit"]=1 + }, + { + ["value"]=30000, + ["unit"]=1 + }, + { + ["value"]=300000, + ["unit"]=1 + }, + { + ["value"]=3000, + ["unit"]=2 + }, + { + ["value"]=15000, + ["unit"]=2 + }, + { + ["value"]=75000, + ["unit"]=2 + }, + { + ["value"]=375000, + ["unit"]=2 + }, + { + ["value"]=1875, + ["unit"]=3 + }, + { + ["value"]=9375, + ["unit"]=3 + }, + { + ["value"]=37500, + ["unit"]=3 + }, + { + ["value"]=150000, + ["unit"]=3 + }, + { + ["value"]=600000, + ["unit"]=3 + }, + { + ["value"]=2400, + ["unit"]=4 + }, + { + ["value"]=9600, + ["unit"]=4 + }, + { + ["value"]=28800, + ["unit"]=4 + }, + { + ["value"]=86400, + ["unit"]=4 + }, + { + ["value"]=259200, + ["unit"]=4 + }, + { + ["value"]=777600, + ["unit"]=4 + }, + { + ["value"]=2333, + ["unit"]=5 + }, + { + ["value"]=4666, + ["unit"]=5 + }, + { + ["value"]=9331, + ["unit"]=5 + }, + { + ["value"]=18662, + ["unit"]=5 + }, + { + ["value"]=37325, + ["unit"]=5 + }, + { + ["value"]=74650, + ["unit"]=5 + }, + { + ["value"]=149299, + ["unit"]=5 + }, + { + ["value"]=298598, + ["unit"]=5 + }, + { + ["value"]=597197, + ["unit"]=5 + }, + { + ["value"]=1194, + ["unit"]=6 + }, + { + ["value"]=2389, + ["unit"]=6 + }, + { + ["value"]=4778, + ["unit"]=6 + }, + { + ["value"]=9555, + ["unit"]=6 + }, + { + ["value"]=19110, + ["unit"]=6 + }, + { + ["value"]=38221, + ["unit"]=6 + }, + { + ["value"]=76441, + ["unit"]=6 + }, + { + ["value"]=152882, + ["unit"]=6 + }, + { + ["value"]=305765, + ["unit"]=6 + }, + { + ["value"]=611530, + ["unit"]=6 + }, + { + ["value"]=1223, + ["unit"]=7 + }, + { + ["value"]=2446, + ["unit"]=7 + }, + { + ["value"]=4892, + ["unit"]=7 + }, + { + ["value"]=9784, + ["unit"]=7 + }, + { + ["value"]=19569, + ["unit"]=7 + }, + { + ["value"]=39138, + ["unit"]=7 + }, + { + ["value"]=78276, + ["unit"]=7 + }, + { + ["value"]=156552, + ["unit"]=7 + }, + { + ["value"]=313103, + ["unit"]=7 + }, + { + ["value"]=626206, + ["unit"]=7 + }, + { + ["value"]=1252, + ["unit"]=8 + }, + { + ["value"]=2505, + ["unit"]=8 + }, + { + ["value"]=5010, + ["unit"]=8 + }, + { + ["value"]=10019, + ["unit"]=8 + }, + { + ["value"]=20039, + ["unit"]=8 + }, + { + ["value"]=40077, + ["unit"]=8 + }, + { + ["value"]=80154, + ["unit"]=8 + }, + { + ["value"]=160309, + ["unit"]=8 + }, + { + ["value"]=320618, + ["unit"]=8 + }, + { + ["value"]=641235, + ["unit"]=8 + }, + { + ["value"]=1282, + ["unit"]=9 + }, + { + ["value"]=2565, + ["unit"]=9 + }, + { + ["value"]=5130, + ["unit"]=9 + }, + { + ["value"]=10260, + ["unit"]=9 + }, + { + ["value"]=20520, + ["unit"]=9 + }, + { + ["value"]=41039, + ["unit"]=9 + }, + { + ["value"]=82078, + ["unit"]=9 + }, + { + ["value"]=164156, + ["unit"]=9 + }, + { + ["value"]=328312, + ["unit"]=9 + }, + { + ["value"]=656625, + ["unit"]=9 + }, + { + ["value"]=1313, + ["unit"]=10 + }, + { + ["value"]=2626, + ["unit"]=10 + }, + { + ["value"]=5253, + ["unit"]=10 + }, + { + ["value"]=10506, + ["unit"]=10 + }, + { + ["value"]=21012, + ["unit"]=10 + }, + { + ["value"]=42024, + ["unit"]=10 + }, + { + ["value"]=84048, + ["unit"]=10 + }, + { + ["value"]=168096, + ["unit"]=10 + }, + { + ["value"]=336192, + ["unit"]=10 + }, + { + ["value"]=672384, + ["unit"]=10 + }, + { + ["value"]=1345, + ["unit"]=11 + }, + { + ["value"]=2690, + ["unit"]=11 + }, + { + ["value"]=5379, + ["unit"]=11 + }, + { + ["value"]=10758, + ["unit"]=11 + }, + { + ["value"]=21516, + ["unit"]=11 + }, + { + ["value"]=43033, + ["unit"]=11 + }, + { + ["value"]=86065, + ["unit"]=11 + }, + { + ["value"]=172130, + ["unit"]=11 + }, + { + ["value"]=344261, + ["unit"]=11 + }, + { + ["value"]=688521, + ["unit"]=11 + }, + { + ["value"]=1377, + ["unit"]=12 + }, + { + ["value"]=2754, + ["unit"]=12 + }, + { + ["value"]=5508, + ["unit"]=12 + }, + { + ["value"]=11016, + ["unit"]=12 + }, + { + ["value"]=22033, + ["unit"]=12 + }, + { + ["value"]=44065, + ["unit"]=12 + }, + { + ["value"]=88131, + ["unit"]=12 + } + }, + ["hp_coefficient"]={ + { + ["value"]=100000, + ["unit"]=0 + }, + { + ["value"]=200000, + ["unit"]=0 + }, + { + ["value"]=400000, + ["unit"]=0 + }, + { + ["value"]=800000, + ["unit"]=0 + }, + { + ["value"]=4000, + ["unit"]=1 + }, + { + ["value"]=20000, + ["unit"]=1 + }, + { + ["value"]=100000, + ["unit"]=1 + }, + { + ["value"]=1000, + ["unit"]=2 + }, + { + ["value"]=10000, + ["unit"]=2 + }, + { + ["value"]=100000, + ["unit"]=2 + }, + { + ["value"]=500000, + ["unit"]=2 + }, + { + ["value"]=2500, + ["unit"]=3 + }, + { + ["value"]=12500, + ["unit"]=3 + }, + { + ["value"]=62500, + ["unit"]=3 + }, + { + ["value"]=312500, + ["unit"]=3 + }, + { + ["value"]=1250, + ["unit"]=4 + }, + { + ["value"]=5000, + ["unit"]=4 + }, + { + ["value"]=20000, + ["unit"]=4 + }, + { + ["value"]=80000, + ["unit"]=4 + }, + { + ["value"]=320000, + ["unit"]=4 + }, + { + ["value"]=960000, + ["unit"]=4 + }, + { + ["value"]=2880, + ["unit"]=5 + }, + { + ["value"]=8640, + ["unit"]=5 + }, + { + ["value"]=25920, + ["unit"]=5 + }, + { + ["value"]=77760, + ["unit"]=5 + }, + { + ["value"]=155520, + ["unit"]=5 + }, + { + ["value"]=311040, + ["unit"]=5 + }, + { + ["value"]=622080, + ["unit"]=5 + }, + { + ["value"]=1244, + ["unit"]=6 + }, + { + ["value"]=2488, + ["unit"]=6 + }, + { + ["value"]=4977, + ["unit"]=6 + }, + { + ["value"]=9953, + ["unit"]=6 + }, + { + ["value"]=19907, + ["unit"]=6 + }, + { + ["value"]=39813, + ["unit"]=6 + }, + { + ["value"]=79626, + ["unit"]=6 + }, + { + ["value"]=159252, + ["unit"]=6 + }, + { + ["value"]=318505, + ["unit"]=6 + }, + { + ["value"]=637010, + ["unit"]=6 + }, + { + ["value"]=1274, + ["unit"]=7 + }, + { + ["value"]=2548, + ["unit"]=7 + }, + { + ["value"]=5096, + ["unit"]=7 + }, + { + ["value"]=10192, + ["unit"]=7 + }, + { + ["value"]=20384, + ["unit"]=7 + }, + { + ["value"]=40769, + ["unit"]=7 + }, + { + ["value"]=81537, + ["unit"]=7 + }, + { + ["value"]=163075, + ["unit"]=7 + }, + { + ["value"]=326149, + ["unit"]=7 + }, + { + ["value"]=652298, + ["unit"]=7 + }, + { + ["value"]=1305, + ["unit"]=8 + }, + { + ["value"]=2609, + ["unit"]=8 + }, + { + ["value"]=5218, + ["unit"]=8 + }, + { + ["value"]=10437, + ["unit"]=8 + }, + { + ["value"]=20874, + ["unit"]=8 + }, + { + ["value"]=41747, + ["unit"]=8 + }, + { + ["value"]=83494, + ["unit"]=8 + }, + { + ["value"]=166988, + ["unit"]=8 + }, + { + ["value"]=333977, + ["unit"]=8 + }, + { + ["value"]=667953, + ["unit"]=8 + }, + { + ["value"]=1336, + ["unit"]=9 + }, + { + ["value"]=2672, + ["unit"]=9 + }, + { + ["value"]=5344, + ["unit"]=9 + }, + { + ["value"]=10687, + ["unit"]=9 + }, + { + ["value"]=21375, + ["unit"]=9 + }, + { + ["value"]=42749, + ["unit"]=9 + }, + { + ["value"]=85498, + ["unit"]=9 + }, + { + ["value"]=170996, + ["unit"]=9 + }, + { + ["value"]=341992, + ["unit"]=9 + }, + { + ["value"]=683984, + ["unit"]=9 + }, + { + ["value"]=1368, + ["unit"]=10 + }, + { + ["value"]=2736, + ["unit"]=10 + }, + { + ["value"]=5472, + ["unit"]=10 + }, + { + ["value"]=10944, + ["unit"]=10 + }, + { + ["value"]=21887, + ["unit"]=10 + }, + { + ["value"]=43775, + ["unit"]=10 + }, + { + ["value"]=87550, + ["unit"]=10 + }, + { + ["value"]=175100, + ["unit"]=10 + }, + { + ["value"]=350200, + ["unit"]=10 + }, + { + ["value"]=700400, + ["unit"]=10 + }, + { + ["value"]=1401, + ["unit"]=11 + }, + { + ["value"]=2802, + ["unit"]=11 + }, + { + ["value"]=5603, + ["unit"]=11 + }, + { + ["value"]=11206, + ["unit"]=11 + }, + { + ["value"]=22413, + ["unit"]=11 + }, + { + ["value"]=44826, + ["unit"]=11 + }, + { + ["value"]=89651, + ["unit"]=11 + }, + { + ["value"]=179302, + ["unit"]=11 + }, + { + ["value"]=358605, + ["unit"]=11 + }, + { + ["value"]=717209, + ["unit"]=11 + }, + { + ["value"]=1434, + ["unit"]=12 + }, + { + ["value"]=2869, + ["unit"]=12 + }, + { + ["value"]=5738, + ["unit"]=12 + }, + { + ["value"]=11475, + ["unit"]=12 + }, + { + ["value"]=22951, + ["unit"]=12 + }, + { + ["value"]=45901, + ["unit"]=12 + }, + { + ["value"]=91803, + ["unit"]=12 + }, + { + ["value"]=183606, + ["unit"]=12 + }, + { + ["value"]=367211, + ["unit"]=12 + }, + { + ["value"]=734422, + ["unit"]=12 + }, + { + ["value"]=1469, + ["unit"]=13 + }, + { + ["value"]=2938, + ["unit"]=13 + } + }, + ["time_limit"]=60, + ["max_lv"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=40, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=80, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=160, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=320, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=640, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1280, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=2560, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=5120, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=10240, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=20480, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=40960, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=81920, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=163840, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=327680, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=655360, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1311, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=3932, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=11796, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=35389, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=106168, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=318505, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=955515, + ["unit"]=1 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=2867, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=8600, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=25799, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=77397, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=232190, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=696570, + ["unit"]=2 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=2090, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=6269, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=18807, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=56422, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=169267, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=507800, + ["unit"]=3 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1523, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=4570, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=18281, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=91404, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=457020, + ["unit"]=4 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=2285, + ["unit"]=5 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=22851, + ["unit"]=5 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=228510, + ["unit"]=5 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=2285, + ["unit"]=6 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=22851, + ["unit"]=6 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=457020, + ["unit"]=6 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=22851, + ["unit"]=7 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1143, + ["unit"]=8 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=114255, + ["unit"]=8 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=11425, + ["unit"]=9 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1143, + ["unit"]=10 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=228510, + ["unit"]=10 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=45702, + ["unit"]=11 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=22851, + ["unit"]=12 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=11425, + ["unit"]=13 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=5713, + ["unit"]=14 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=285637, + ["unit"]=14 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=14282, + ["unit"]=15 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=714093, + ["unit"]=15 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=642684, + ["unit"]=16 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=578416, + ["unit"]=17 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=520574, + ["unit"]=18 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=468517, + ["unit"]=19 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=421665, + ["unit"]=20 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=632498, + ["unit"]=21 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1897, + ["unit"]=23 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=5692, + ["unit"]=24 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=17077, + ["unit"]=25 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=51232, + ["unit"]=26 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=153697, + ["unit"]=27 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=461091, + ["unit"]=28 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1383, + ["unit"]=30 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=4150, + ["unit"]=31 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=12449, + ["unit"]=32 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=37348, + ["unit"]=33 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=112045, + ["unit"]=34 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=336135, + ["unit"]=35 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1008, + ["unit"]=37 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=3025, + ["unit"]=38 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=9076, + ["unit"]=39 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=27227, + ["unit"]=40 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=81681, + ["unit"]=41 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=245043, + ["unit"]=42 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=735128, + ["unit"]=43 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=2205, + ["unit"]=45 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=6616, + ["unit"]=46 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=19848, + ["unit"]=47 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=59545, + ["unit"]=48 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=178636, + ["unit"]=49 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=535908, + ["unit"]=50 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1608, + ["unit"]=52 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=4823, + ["unit"]=53 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=14470, + ["unit"]=54 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=43409, + ["unit"]=55 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=130226, + ["unit"]=56 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=390677, + ["unit"]=57 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=1172, + ["unit"]=59 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=3516, + ["unit"]=60 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=10548, + ["unit"]=61 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=31645, + ["unit"]=62 + } + } + }, + ["random_monster"]={ + 3001 + } + }, + [4]={ + ["type"]=4, + ["bg"]="dungeon_bg_4", + ["title"]="dungeon_title_3", + ["key_id"]=7, + ["ad_times"]=2, + ["wave"]=1, + ["atk_coefficient"]={ + { + ["value"]=10000, + ["unit"]=0 + }, + { + ["value"]=20000, + ["unit"]=0 + }, + { + ["value"]=40000, + ["unit"]=0 + }, + { + ["value"]=80000, + ["unit"]=0 + }, + { + ["value"]=400, + ["unit"]=1 + }, + { + ["value"]=2000, + ["unit"]=1 + }, + { + ["value"]=10000, + ["unit"]=1 + }, + { + ["value"]=100000, + ["unit"]=1 + }, + { + ["value"]=1000, + ["unit"]=2 + }, + { + ["value"]=10000, + ["unit"]=2 + }, + { + ["value"]=50000, + ["unit"]=2 + }, + { + ["value"]=250000, + ["unit"]=2 + }, + { + ["value"]=1250, + ["unit"]=3 + }, + { + ["value"]=6250, + ["unit"]=3 + }, + { + ["value"]=31250, + ["unit"]=3 + }, + { + ["value"]=125000, + ["unit"]=3 + }, + { + ["value"]=500000, + ["unit"]=3 + }, + { + ["value"]=2000, + ["unit"]=4 + }, + { + ["value"]=8000, + ["unit"]=4 + }, + { + ["value"]=32000, + ["unit"]=4 + }, + { + ["value"]=96000, + ["unit"]=4 + }, + { + ["value"]=288000, + ["unit"]=4 + }, + { + ["value"]=864000, + ["unit"]=4 + }, + { + ["value"]=2592, + ["unit"]=5 + }, + { + ["value"]=7776, + ["unit"]=5 + }, + { + ["value"]=15552, + ["unit"]=5 + }, + { + ["value"]=31104, + ["unit"]=5 + }, + { + ["value"]=62208, + ["unit"]=5 + }, + { + ["value"]=124416, + ["unit"]=5 + }, + { + ["value"]=248832, + ["unit"]=5 + }, + { + ["value"]=497664, + ["unit"]=5 + }, + { + ["value"]=995328, + ["unit"]=5 + }, + { + ["value"]=1991, + ["unit"]=6 + }, + { + ["value"]=3981, + ["unit"]=6 + }, + { + ["value"]=7963, + ["unit"]=6 + }, + { + ["value"]=15925, + ["unit"]=6 + }, + { + ["value"]=31850, + ["unit"]=6 + }, + { + ["value"]=63701, + ["unit"]=6 + }, + { + ["value"]=127402, + ["unit"]=6 + }, + { + ["value"]=254804, + ["unit"]=6 + }, + { + ["value"]=509608, + ["unit"]=6 + }, + { + ["value"]=1019, + ["unit"]=7 + }, + { + ["value"]=2038, + ["unit"]=7 + }, + { + ["value"]=4077, + ["unit"]=7 + }, + { + ["value"]=8154, + ["unit"]=7 + }, + { + ["value"]=16307, + ["unit"]=7 + }, + { + ["value"]=32615, + ["unit"]=7 + }, + { + ["value"]=65230, + ["unit"]=7 + }, + { + ["value"]=130460, + ["unit"]=7 + }, + { + ["value"]=260919, + ["unit"]=7 + }, + { + ["value"]=521839, + ["unit"]=7 + }, + { + ["value"]=1044, + ["unit"]=8 + }, + { + ["value"]=2087, + ["unit"]=8 + }, + { + ["value"]=4175, + ["unit"]=8 + }, + { + ["value"]=8349, + ["unit"]=8 + }, + { + ["value"]=16699, + ["unit"]=8 + }, + { + ["value"]=33398, + ["unit"]=8 + }, + { + ["value"]=66795, + ["unit"]=8 + }, + { + ["value"]=133591, + ["unit"]=8 + }, + { + ["value"]=267181, + ["unit"]=8 + }, + { + ["value"]=534363, + ["unit"]=8 + }, + { + ["value"]=1069, + ["unit"]=9 + }, + { + ["value"]=2137, + ["unit"]=9 + }, + { + ["value"]=4275, + ["unit"]=9 + }, + { + ["value"]=8550, + ["unit"]=9 + }, + { + ["value"]=17100, + ["unit"]=9 + }, + { + ["value"]=34199, + ["unit"]=9 + }, + { + ["value"]=68398, + ["unit"]=9 + }, + { + ["value"]=136797, + ["unit"]=9 + }, + { + ["value"]=273594, + ["unit"]=9 + }, + { + ["value"]=547187, + ["unit"]=9 + }, + { + ["value"]=1094, + ["unit"]=10 + }, + { + ["value"]=2189, + ["unit"]=10 + }, + { + ["value"]=4377, + ["unit"]=10 + }, + { + ["value"]=8755, + ["unit"]=10 + }, + { + ["value"]=17510, + ["unit"]=10 + }, + { + ["value"]=35020, + ["unit"]=10 + }, + { + ["value"]=70040, + ["unit"]=10 + }, + { + ["value"]=140080, + ["unit"]=10 + }, + { + ["value"]=280160, + ["unit"]=10 + }, + { + ["value"]=560320, + ["unit"]=10 + }, + { + ["value"]=1121, + ["unit"]=11 + }, + { + ["value"]=2241, + ["unit"]=11 + }, + { + ["value"]=4483, + ["unit"]=11 + }, + { + ["value"]=8965, + ["unit"]=11 + }, + { + ["value"]=17930, + ["unit"]=11 + }, + { + ["value"]=35860, + ["unit"]=11 + }, + { + ["value"]=71721, + ["unit"]=11 + }, + { + ["value"]=143442, + ["unit"]=11 + }, + { + ["value"]=286884, + ["unit"]=11 + }, + { + ["value"]=573768, + ["unit"]=11 + }, + { + ["value"]=1148, + ["unit"]=12 + }, + { + ["value"]=2295, + ["unit"]=12 + }, + { + ["value"]=4590, + ["unit"]=12 + }, + { + ["value"]=9180, + ["unit"]=12 + }, + { + ["value"]=18361, + ["unit"]=12 + }, + { + ["value"]=36721, + ["unit"]=12 + }, + { + ["value"]=73442, + ["unit"]=12 + }, + { + ["value"]=146884, + ["unit"]=12 + }, + { + ["value"]=293769, + ["unit"]=12 + } + }, + ["hp_coefficient"]={ + { + ["value"]=30000, + ["unit"]=0 + }, + { + ["value"]=60000, + ["unit"]=0 + }, + { + ["value"]=120000, + ["unit"]=0 + }, + { + ["value"]=240000, + ["unit"]=0 + }, + { + ["value"]=1200000, + ["unit"]=0 + }, + { + ["value"]=6000, + ["unit"]=1 + }, + { + ["value"]=30000, + ["unit"]=1 + }, + { + ["value"]=300000, + ["unit"]=1 + }, + { + ["value"]=3000, + ["unit"]=2 + }, + { + ["value"]=30000, + ["unit"]=2 + }, + { + ["value"]=150000, + ["unit"]=2 + }, + { + ["value"]=750000, + ["unit"]=2 + }, + { + ["value"]=3750, + ["unit"]=3 + }, + { + ["value"]=18750, + ["unit"]=3 + }, + { + ["value"]=93750, + ["unit"]=3 + }, + { + ["value"]=375000, + ["unit"]=3 + }, + { + ["value"]=1500, + ["unit"]=4 + }, + { + ["value"]=6000, + ["unit"]=4 + }, + { + ["value"]=24000, + ["unit"]=4 + }, + { + ["value"]=96000, + ["unit"]=4 + }, + { + ["value"]=288000, + ["unit"]=4 + }, + { + ["value"]=864000, + ["unit"]=4 + }, + { + ["value"]=2592, + ["unit"]=5 + }, + { + ["value"]=7776, + ["unit"]=5 + }, + { + ["value"]=23328, + ["unit"]=5 + }, + { + ["value"]=46656, + ["unit"]=5 + }, + { + ["value"]=93312, + ["unit"]=5 + }, + { + ["value"]=186624, + ["unit"]=5 + }, + { + ["value"]=373248, + ["unit"]=5 + }, + { + ["value"]=746496, + ["unit"]=5 + }, + { + ["value"]=1493, + ["unit"]=6 + }, + { + ["value"]=2986, + ["unit"]=6 + }, + { + ["value"]=5972, + ["unit"]=6 + }, + { + ["value"]=11944, + ["unit"]=6 + }, + { + ["value"]=23888, + ["unit"]=6 + }, + { + ["value"]=47776, + ["unit"]=6 + }, + { + ["value"]=95551, + ["unit"]=6 + }, + { + ["value"]=191103, + ["unit"]=6 + }, + { + ["value"]=382206, + ["unit"]=6 + }, + { + ["value"]=764412, + ["unit"]=6 + }, + { + ["value"]=1529, + ["unit"]=7 + }, + { + ["value"]=3058, + ["unit"]=7 + }, + { + ["value"]=6115, + ["unit"]=7 + }, + { + ["value"]=12231, + ["unit"]=7 + }, + { + ["value"]=24461, + ["unit"]=7 + }, + { + ["value"]=48922, + ["unit"]=7 + }, + { + ["value"]=97845, + ["unit"]=7 + }, + { + ["value"]=195689, + ["unit"]=7 + }, + { + ["value"]=391379, + ["unit"]=7 + }, + { + ["value"]=782758, + ["unit"]=7 + }, + { + ["value"]=1566, + ["unit"]=8 + }, + { + ["value"]=3131, + ["unit"]=8 + }, + { + ["value"]=6262, + ["unit"]=8 + }, + { + ["value"]=12524, + ["unit"]=8 + }, + { + ["value"]=25048, + ["unit"]=8 + }, + { + ["value"]=50096, + ["unit"]=8 + }, + { + ["value"]=100193, + ["unit"]=8 + }, + { + ["value"]=200386, + ["unit"]=8 + }, + { + ["value"]=400772, + ["unit"]=8 + }, + { + ["value"]=801544, + ["unit"]=8 + }, + { + ["value"]=1603, + ["unit"]=9 + }, + { + ["value"]=3206, + ["unit"]=9 + }, + { + ["value"]=6412, + ["unit"]=9 + }, + { + ["value"]=12825, + ["unit"]=9 + }, + { + ["value"]=25649, + ["unit"]=9 + }, + { + ["value"]=51299, + ["unit"]=9 + }, + { + ["value"]=102598, + ["unit"]=9 + }, + { + ["value"]=205195, + ["unit"]=9 + }, + { + ["value"]=410391, + ["unit"]=9 + }, + { + ["value"]=820781, + ["unit"]=9 + }, + { + ["value"]=1642, + ["unit"]=10 + }, + { + ["value"]=3283, + ["unit"]=10 + }, + { + ["value"]=6566, + ["unit"]=10 + }, + { + ["value"]=13132, + ["unit"]=10 + }, + { + ["value"]=26265, + ["unit"]=10 + }, + { + ["value"]=52530, + ["unit"]=10 + }, + { + ["value"]=105060, + ["unit"]=10 + }, + { + ["value"]=210120, + ["unit"]=10 + }, + { + ["value"]=420240, + ["unit"]=10 + }, + { + ["value"]=840480, + ["unit"]=10 + }, + { + ["value"]=1681, + ["unit"]=11 + }, + { + ["value"]=3362, + ["unit"]=11 + }, + { + ["value"]=6724, + ["unit"]=11 + }, + { + ["value"]=13448, + ["unit"]=11 + }, + { + ["value"]=26895, + ["unit"]=11 + }, + { + ["value"]=53791, + ["unit"]=11 + }, + { + ["value"]=107581, + ["unit"]=11 + }, + { + ["value"]=215163, + ["unit"]=11 + }, + { + ["value"]=430326, + ["unit"]=11 + }, + { + ["value"]=860651, + ["unit"]=11 + }, + { + ["value"]=1721, + ["unit"]=12 + }, + { + ["value"]=3443, + ["unit"]=12 + }, + { + ["value"]=6885, + ["unit"]=12 + }, + { + ["value"]=13770, + ["unit"]=12 + }, + { + ["value"]=27541, + ["unit"]=12 + }, + { + ["value"]=55082, + ["unit"]=12 + }, + { + ["value"]=110163, + ["unit"]=12 + }, + { + ["value"]=220327, + ["unit"]=12 + }, + { + ["value"]=440653, + ["unit"]=12 + }, + { + ["value"]=881307, + ["unit"]=12 + } + }, + ["time_limit"]=60, + ["max_lv"]=100, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=11, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=12, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=13, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=14, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=16, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=17, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=19, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=21, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=23, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=25, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=28, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=31, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=34, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=37, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=41, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=45, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=55, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=61, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=67, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=74, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=81, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=89, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=98, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=108, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=119, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=131, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=144, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=158, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=174, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=191, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=211, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=232, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=255, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=281, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=309, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=340, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=374, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=411, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=452, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=497, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=547, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=602, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=662, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=728, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=801, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=881, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=970, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1067, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1173, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1291, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1420, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1562, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1718, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1890, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2079, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2287, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2516, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2768, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3044, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3349, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3684, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=4052, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=4457, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=4903, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=5394, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=5933, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=6526, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=7179, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=7897, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=8687, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=9555, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=10511, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=11562, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=12718, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=13990, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=15389, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=16928, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=18621, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=20484, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=22532, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=24785, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=27264, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=29990, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=32989, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=36288, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=39917, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=43909, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=48300, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=53130, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=58443, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=64287, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=70716, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=77787, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=85566, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=94123, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=103535, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=113889, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=125278, + ["unit"]=0 + } + } + }, + ["random_monster"]={ + 10 + } + }, + [5]={ + ["type"]=5, + ["bg"]="dungeon_bg_4", + ["title"]="dungeon_title_3", + ["key_id"]=16, + ["ad_times"]=2 + } +} +local config = { +data=dungeon,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/dungeon.lua.meta b/lua/app/config/dungeon.lua.meta new file mode 100644 index 00000000..b473303d --- /dev/null +++ b/lua/app/config/dungeon.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5b388bf7a4924824d8d7c5902bb32a78 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/equip.lua b/lua/app/config/equip.lua new file mode 100644 index 00000000..f82bf8e0 --- /dev/null +++ b/lua/app/config/equip.lua @@ -0,0 +1,6258 @@ +local equip = { + [10001]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=1, + ["icon"]="10001", + ["equip_model"]="w1101", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11011, + 11012, + 11016 + }, + ["attack_id"]={ + 1101, + 1102, + 1103, + 1104, + 1105, + 1106 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10002]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=2, + ["icon"]="10002", + ["equip_model"]="w1102", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11021, + 11022, + 11026 + }, + ["attack_id"]={ + 1201, + 1202, + 1203, + 1204, + 1205, + 1206 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10003]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=3, + ["icon"]="10003", + ["equip_model"]="w1103", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11031, + 11032, + 11036 + }, + ["attack_id"]={ + 1301, + 1302, + 1303, + 1304, + 1305, + 1306 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10004]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=4, + ["icon"]="10004", + ["equip_model"]="w1104", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11041, + 11042, + 11046 + }, + ["attack_id"]={ + 1401, + 1402, + 1403, + 1404, + 1405, + 1406 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10005]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=5, + ["icon"]="10005", + ["equip_model"]="w1105", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11051, + 11052, + 11056 + }, + ["attack_id"]={ + 1501, + 1502, + 1503, + 1504, + 1505, + 1506 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10006]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=6, + ["icon"]="10006", + ["equip_model"]="w1106", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=1250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=250000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11061, + 11062, + 11066 + }, + ["attack_id"]={ + 1601, + 1602, + 1603, + 1604, + 1605, + 1606 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10007]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=6, + ["icon"]="10007", + ["equip_model"]="w1206", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=25000000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=5000000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11071, + 11072, + 11076 + }, + ["attack_id"]={ + 1601, + 1602, + 1603, + 1604, + 1605, + 1606 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10008]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=7, + ["icon"]="10008", + ["equip_model"]="w1107", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=6250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=1250000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=62500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11081, + 11082, + 11086 + }, + ["attack_id"]={ + 1601, + 1602, + 1603, + 1604, + 1605, + 1606 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10009]={ + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=7, + ["icon"]="10009", + ["equip_model"]="w1207", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=125000000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=25000000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 11091, + 11092, + 11096 + }, + ["attack_id"]={ + 1601, + 1602, + 1603, + 1604, + 1605, + 1606 + }, + ["attack_extra_id"]={ + 1001, + 1002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10101]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=1, + ["icon"]="10201", + ["equip_model"]="w2101", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21011, + 21014, + 21015 + }, + ["attack_id"]={ + 2101, + 2102, + 2103, + 2104, + 2105, + 2106 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10102]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=2, + ["icon"]="10202", + ["equip_model"]="w2102", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21021, + 21024, + 21025 + }, + ["attack_id"]={ + 2201, + 2202, + 2203, + 2204, + 2205, + 2206 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10103]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=3, + ["icon"]="10203", + ["equip_model"]="w2103", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21031, + 21034, + 21035 + }, + ["attack_id"]={ + 2301, + 2302, + 2303, + 2304, + 2305, + 2306 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10104]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=4, + ["icon"]="10204", + ["equip_model"]="w2104", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21041, + 21044, + 21045 + }, + ["attack_id"]={ + 2401, + 2402, + 2403, + 2404, + 2405, + 2406 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10105]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=5, + ["icon"]="10205", + ["equip_model"]="w2105", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21051, + 21054, + 21055 + }, + ["attack_id"]={ + 2501, + 2502, + 2503, + 2504, + 2505, + 2506 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10106]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=6, + ["icon"]="10206", + ["equip_model"]="w2106", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=1250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=250000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21061, + 21064, + 21065 + }, + ["attack_id"]={ + 2601, + 2602, + 2603, + 2604, + 2605, + 2606 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10107]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=6, + ["icon"]="10207", + ["equip_model"]="w2206", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=25000000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=5000000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21071, + 21074, + 21075 + }, + ["attack_id"]={ + 2601, + 2602, + 2603, + 2604, + 2605, + 2606 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10108]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=7, + ["icon"]="10208", + ["equip_model"]="w2107", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=6250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=1250000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=62500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21081, + 21084, + 21085 + }, + ["attack_id"]={ + 2601, + 2602, + 2603, + 2604, + 2605, + 2606 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10109]={ + ["part"]=1, + ["weapon_part"]=2, + ["qlt"]=7, + ["icon"]="10209", + ["equip_model"]="w2207", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=125000000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=25000000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 21091, + 21094, + 21095 + }, + ["attack_id"]={ + 2601, + 2602, + 2603, + 2604, + 2605, + 2606 + }, + ["attack_extra_id"]={ + 2001, + 2002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10201]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=1, + ["icon"]="10301", + ["equip_model"]="w3101", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31011, + 31012, + 31013 + }, + ["attack_id"]={ + 3101, + 3102, + 3103, + 3104, + 3105, + 3106 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10202]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=2, + ["icon"]="10302", + ["equip_model"]="w3102", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31021, + 31022, + 31023 + }, + ["attack_id"]={ + 3201, + 3202, + 3203, + 3204, + 3205, + 3206 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10203]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=3, + ["icon"]="10303", + ["equip_model"]="w3103", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31031, + 31032, + 31033 + }, + ["attack_id"]={ + 3301, + 3302, + 3303, + 3304, + 3305, + 3306 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10204]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=4, + ["icon"]="10304", + ["equip_model"]="w3104", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31041, + 31042, + 31043 + }, + ["attack_id"]={ + 3401, + 3402, + 3403, + 3404, + 3405, + 3406 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10205]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=5, + ["icon"]="10305", + ["equip_model"]="w3105", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31051, + 31052, + 31053 + }, + ["attack_id"]={ + 3501, + 3502, + 3503, + 3504, + 3505, + 3506 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10206]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=6, + ["icon"]="10306", + ["equip_model"]="w3106", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=1250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=250000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31061, + 31062, + 31063 + }, + ["attack_id"]={ + 3601, + 3602, + 3603, + 3604, + 3605, + 3606 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10207]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=6, + ["icon"]="10307", + ["equip_model"]="w3206", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=25000000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=5000000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31071, + 31072, + 31073 + }, + ["attack_id"]={ + 3601, + 3602, + 3603, + 3604, + 3605, + 3606 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10208]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=7, + ["icon"]="10308", + ["equip_model"]="w3107", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=6250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=1250000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=62500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31081, + 31082, + 31083 + }, + ["attack_id"]={ + 3601, + 3602, + 3603, + 3604, + 3605, + 3606 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10209]={ + ["part"]=1, + ["weapon_part"]=3, + ["qlt"]=7, + ["icon"]="10309", + ["equip_model"]="w3207", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=125000000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=25000000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 31091, + 31092, + 31093 + }, + ["attack_id"]={ + 3601, + 3602, + 3603, + 3604, + 3605, + 3606 + }, + ["attack_extra_id"]={ + 3001, + 3002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10301]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=1, + ["icon"]="10101", + ["equip_model"]="w4101", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41011, + 41012, + 41013 + }, + ["attack_id"]={ + 4101, + 4102, + 4103, + 4104, + 4105, + 4106 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10302]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=2, + ["icon"]="10102", + ["equip_model"]="w4102", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41021, + 41022, + 41023 + }, + ["attack_id"]={ + 4201, + 4202, + 4203, + 4204, + 4205, + 4206 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10303]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=3, + ["icon"]="10103", + ["equip_model"]="w4103", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41031, + 41032, + 41033 + }, + ["attack_id"]={ + 4301, + 4302, + 4303, + 4304, + 4305, + 4306 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10304]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=4, + ["icon"]="10104", + ["equip_model"]="w4104", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41041, + 41042, + 41043 + }, + ["attack_id"]={ + 4401, + 4402, + 4403, + 4404, + 4405, + 4406 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10305]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=5, + ["icon"]="10105", + ["equip_model"]="w4105", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41051, + 41052, + 41053 + }, + ["attack_id"]={ + 4501, + 4502, + 4503, + 4504, + 4505, + 4506 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10306]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=6, + ["icon"]="10106", + ["equip_model"]="w4106", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=1250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=250000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41061, + 41062, + 41063 + }, + ["attack_id"]={ + 4601, + 4602, + 4603, + 4604, + 4605, + 4606 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10307]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=6, + ["icon"]="10107", + ["equip_model"]="w4206", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=500000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=25000000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=5000000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41071, + 41072, + 41073 + }, + ["attack_id"]={ + 4601, + 4602, + 4603, + 4604, + 4605, + 4606 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10308]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=7, + ["icon"]="10108", + ["equip_model"]="w4107", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=6250000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=1250000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=62500000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41081, + 41082, + 41083 + }, + ["attack_id"]={ + 4601, + 4602, + 4603, + 4604, + 4605, + 4606 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [10309]={ + ["part"]=1, + ["weapon_part"]=4, + ["qlt"]=7, + ["icon"]="10109", + ["equip_model"]="w4207", + ["base_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=12500000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=2500000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=125000000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_2", + ["bignum"]={ + ["value"]=25000000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 41091, + 41092, + 41093 + }, + ["attack_id"]={ + 4601, + 4602, + 4603, + 4604, + 4605, + 4606 + }, + ["attack_extra_id"]={ + 4001, + 4002 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20001]={ + ["part"]=2, + ["qlt"]=1, + ["icon"]="20001", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=280, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=56, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2800, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=560, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20002]={ + ["part"]=2, + ["qlt"]=2, + ["icon"]="20002", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1400, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=280, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=14000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2800, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20003]={ + ["part"]=2, + ["qlt"]=3, + ["icon"]="20003", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=7000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1400, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=70000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=14000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20004]={ + ["part"]=2, + ["qlt"]=4, + ["icon"]="20004", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=35000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=7000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=350000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=70000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20005]={ + ["part"]=2, + ["qlt"]=5, + ["icon"]="20005", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=175000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=35000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1750000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=350000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20006]={ + ["part"]=2, + ["qlt"]=6, + ["icon"]="20006", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=875000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=175000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=8750000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1750000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20007]={ + ["part"]=2, + ["qlt"]=7, + ["icon"]="20007", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=4375000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=875000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=43750000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=8750000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20101]={ + ["part"]=2, + ["qlt"]=1, + ["icon"]="20101", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=360, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=72, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=720, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20102]={ + ["part"]=2, + ["qlt"]=2, + ["icon"]="20102", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=360, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=18000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20103]={ + ["part"]=2, + ["qlt"]=3, + ["icon"]="20103", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=9000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=90000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=18000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20104]={ + ["part"]=2, + ["qlt"]=4, + ["icon"]="20104", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=45000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=9000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=450000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=90000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20105]={ + ["part"]=2, + ["qlt"]=5, + ["icon"]="20105", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=225000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=45000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2250000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=450000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20106]={ + ["part"]=2, + ["qlt"]=6, + ["icon"]="20106", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1125000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=225000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=11250000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2250000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20107]={ + ["part"]=2, + ["qlt"]=7, + ["icon"]="20107", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=5625000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1125000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=56250000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=11250000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20201]={ + ["part"]=2, + ["qlt"]=1, + ["icon"]="20201", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=440, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=88, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=4400, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=880, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20202]={ + ["part"]=2, + ["qlt"]=2, + ["icon"]="20202", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2200, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=440, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=22000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=4400, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20203]={ + ["part"]=2, + ["qlt"]=3, + ["icon"]="20203", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=11000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2200, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=110000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=22000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20204]={ + ["part"]=2, + ["qlt"]=4, + ["icon"]="20204", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=55000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=11000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=550000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=110000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20205]={ + ["part"]=2, + ["qlt"]=5, + ["icon"]="20205", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=275000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=55000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2750000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=550000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20206]={ + ["part"]=2, + ["qlt"]=6, + ["icon"]="20206", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1375000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=275000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=13750000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2750000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20207]={ + ["part"]=2, + ["qlt"]=7, + ["icon"]="20207", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=6875000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1375000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=68750000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=13750000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20301]={ + ["part"]=2, + ["qlt"]=1, + ["icon"]="20301", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=520, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=104, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=5200, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1040, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20302]={ + ["part"]=2, + ["qlt"]=2, + ["icon"]="20302", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2600, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=520, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=26000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=5200, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20303]={ + ["part"]=2, + ["qlt"]=3, + ["icon"]="20303", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=13000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=2600, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=130000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=26000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20304]={ + ["part"]=2, + ["qlt"]=4, + ["icon"]="20304", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=65000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=13000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=650000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=130000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20305]={ + ["part"]=2, + ["qlt"]=5, + ["icon"]="20305", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=325000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=65000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=3250000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=650000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20306]={ + ["part"]=2, + ["qlt"]=6, + ["icon"]="20306", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1625000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=325000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=16250000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=3250000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [20307]={ + ["part"]=2, + ["qlt"]=7, + ["icon"]="20307", + ["base_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=8125000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=1625000, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=81250000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="hpp_2", + ["bignum"]={ + ["value"]=16250000, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30001]={ + ["part"]=3, + ["qlt"]=1, + ["icon"]="30001", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=140, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=140, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=28, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=28, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1050, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=175, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=175, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30002]={ + ["part"]=3, + ["qlt"]=2, + ["icon"]="30002", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=350, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=350, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=56, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=56, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=2100, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=2100, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=350, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=350, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30003]={ + ["part"]=3, + ["qlt"]=3, + ["icon"]="30003", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1120, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1120, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=140, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=140, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=5600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=5600, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30004]={ + ["part"]=3, + ["qlt"]=4, + ["icon"]="30004", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=4200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=4200, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=350, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=350, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=16800, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=16800, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1400, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30005]={ + ["part"]=3, + ["qlt"]=5, + ["icon"]="30005", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=17500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=17500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1050, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1050, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=52500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=52500, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=2800, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=2800, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30006]={ + ["part"]=3, + ["qlt"]=6, + ["icon"]="30006", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=42000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=42000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=2100, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=2100, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=105000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=105000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=5600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=5600, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30007]={ + ["part"]=3, + ["qlt"]=7, + ["icon"]="30007", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=105000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=105000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=4200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=4200, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=210000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=210000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=11200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=11200, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30101]={ + ["part"]=3, + ["qlt"]=1, + ["icon"]="30101", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=180, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=180, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=36, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=36, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1350, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=225, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=225, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30102]={ + ["part"]=3, + ["qlt"]=2, + ["icon"]="30102", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=450, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=450, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=72, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=72, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=2700, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=2700, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=450, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=450, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30103]={ + ["part"]=3, + ["qlt"]=3, + ["icon"]="30103", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1440, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1440, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=180, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=180, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=7200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=7200, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30104]={ + ["part"]=3, + ["qlt"]=4, + ["icon"]="30104", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=5400, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=5400, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=450, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=450, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=21600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=21600, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30105]={ + ["part"]=3, + ["qlt"]=5, + ["icon"]="30105", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=22500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=22500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1350, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1350, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=67500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=67500, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30106]={ + ["part"]=3, + ["qlt"]=6, + ["icon"]="30106", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=54000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=54000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=2700, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=2700, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=135000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=135000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=7200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=7200, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30107]={ + ["part"]=3, + ["qlt"]=7, + ["icon"]="30107", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=135000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=135000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=5400, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=5400, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=270000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=270000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=14400, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=14400, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30201]={ + ["part"]=3, + ["qlt"]=1, + ["icon"]="30201", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=220, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=220, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=44, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=44, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1650, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=275, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=275, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30202]={ + ["part"]=3, + ["qlt"]=2, + ["icon"]="30202", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=550, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=550, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=88, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=88, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=3300, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=3300, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=550, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=550, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30203]={ + ["part"]=3, + ["qlt"]=3, + ["icon"]="30203", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1760, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1760, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=220, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=220, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=8800, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=8800, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1100, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1100, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30204]={ + ["part"]=3, + ["qlt"]=4, + ["icon"]="30204", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=6600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=6600, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=550, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=550, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=26400, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=26400, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=2200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=2200, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30205]={ + ["part"]=3, + ["qlt"]=5, + ["icon"]="30205", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=27500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=27500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1650, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1650, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=82500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=82500, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=4400, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=4400, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30206]={ + ["part"]=3, + ["qlt"]=6, + ["icon"]="30206", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=66000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=66000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=3300, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=3300, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=165000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=165000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=8800, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=8800, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30207]={ + ["part"]=3, + ["qlt"]=7, + ["icon"]="30207", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=165000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=165000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=6600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=6600, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=330000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=330000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=17600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=17600, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30301]={ + ["part"]=3, + ["qlt"]=1, + ["icon"]="30301", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=260, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=260, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=52, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=52, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1950, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=325, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=325, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30302]={ + ["part"]=3, + ["qlt"]=2, + ["icon"]="30302", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=650, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=650, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=104, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=104, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=3900, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=3900, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=650, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=650, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30303]={ + ["part"]=3, + ["qlt"]=3, + ["icon"]="30303", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=2080, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=2080, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=260, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=260, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=10400, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=10400, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1300, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1300, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30304]={ + ["part"]=3, + ["qlt"]=4, + ["icon"]="30304", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=7800, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=7800, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=650, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=650, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=31200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=31200, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=2600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=2600, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30305]={ + ["part"]=3, + ["qlt"]=5, + ["icon"]="30305", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=32500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=32500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=1950, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=1950, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=97500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=97500, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=5200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=5200, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30306]={ + ["part"]=3, + ["qlt"]=6, + ["icon"]="30306", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=78000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=78000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=3900, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=3900, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=195000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=195000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=10400, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=10400, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + }, + [30307]={ + ["part"]=3, + ["qlt"]=7, + ["icon"]="30307", + ["base_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=195000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=195000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=7800, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=7800, + ["unit"]=0 + } + } + }, + ["base_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=390000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=390000, + ["unit"]=0 + } + } + }, + ["grow_wear"]={ + { + ["type"]="atkp_3", + ["bignum"]={ + ["value"]=20800, + ["unit"]=0 + } + }, + { + ["type"]="hpp_6", + ["bignum"]={ + ["value"]=20800, + ["unit"]=0 + } + } + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + } + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/equip.lua.meta b/lua/app/config/equip.lua.meta new file mode 100644 index 00000000..9412911e --- /dev/null +++ b/lua/app/config/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e53cb21c1e5aed244be59d9274afe328 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/func_open.lua b/lua/app/config/func_open.lua new file mode 100644 index 00000000..7e90aafc --- /dev/null +++ b/lua/app/config/func_open.lua @@ -0,0 +1,111 @@ +local func_open = { + ["dungeon_gold"]={ + ["task"]=36 + }, + ["dungeon_diamond"]={ + ["task"]=35 + }, + ["dungeon_rune"]={ + ["stage"]=320 + }, + ["dungeon_characteristic"]={ + ["task"]=9999 + }, + ["arena"]={ + ["stage"]=150, + ["tutorial_id"]=9 + }, + ["summon_weapon"]={ + ["task"]=9 + }, + ["summon_armor"]={ + ["task"]=17 + }, + ["summon_legacy"]={ + ["task"]=40 + }, + ["mine"]={ + ["stage"]=180, + ["tutorial_id"]=10 + }, + ["mine_research"]={ + ["stage"]=180 + }, + ["idle"]={ + ["stage"]=100 + }, + ["comprehend"]={ + ["stage"]=250 + }, + ["quick_pass"]={ + ["stage"]=250 + }, + ["train"]={ + + }, + ["mastery"]={ + ["task"]=11 + }, + ["runes"]={ + ["stage"]=320 + }, + ["shop"]={ + ["stage"]=10 + }, + ["sevenday"]={ + ["stage"]=30 + }, + ["signin"]={ + ["stage"]=30 + }, + ["tutorialtask"]={ + ["stage"]=1 + }, + ["dailytask"]={ + ["stage"]=20 + }, + ["blessing"]={ + ["stage"]=40 + }, + ["equip"]={ + ["task"]=9 + }, + ["collection"]={ + ["task"]=41, + ["tutorial_id"]=13 + }, + ["auto_fight"]={ + ["task"]=14 + }, + ["hero_open"]={ + + }, + ["weapon_open"]={ + ["task"]=9 + }, + ["armor_open"]={ + ["task"]=17 + }, + ["legacy_open"]={ + ["task"]=40 + }, + ["battle_pass"]={ + ["stage"]=29 + }, + ["fund_open"]={ + ["task"]=999999999 + }, + ["battle_speed_up"]={ + ["stage"]=50 + }, + ["mail_open"]={ + ["stage"]=40 + }, + ["save_power_open"]={ + ["stage"]=100 + } +} +local config = { +data=func_open,count=34 +} +return config \ No newline at end of file diff --git a/lua/app/config/func_open.lua.meta b/lua/app/config/func_open.lua.meta new file mode 100644 index 00000000..504bf6e2 --- /dev/null +++ b/lua/app/config/func_open.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7ed471fc91ac6e445a19871922e72bf5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/fx.lua b/lua/app/config/fx.lua new file mode 100644 index 00000000..33d67e63 --- /dev/null +++ b/lua/app/config/fx.lua @@ -0,0 +1,1257 @@ +local fx = { + [1]={ + ["res"]="sfx_common_hit_1", + ["fx_type"]=2, + ["bind"]="eff_hit" + }, + [2]={ + ["res"]="sfx_common_hit_2", + ["fx_type"]=2, + ["bind"]="eff_hit" + }, + [3]={ + ["res"]="sfx_buff_atk_add", + ["fx_type"]=2, + ["bind"]="eff_hit" + }, + [4]={ + ["res"]="sfx_buff_heal", + ["fx_type"]=2, + ["bind"]="eff_hit" + }, + [5]={ + ["res"]="sfx_buff_shield", + ["fx_type"]=2, + ["bind"]="eff_hit" + }, + [6]={ + ["res"]="sfx_buff_stun", + ["fx_type"]=2, + ["bind"]="eff_hit" + }, + [7]={ + ["res"]="sfx_buff_poison_1", + ["fx_type"]=2, + ["bind"]="eff_hit" + }, + [8]={ + ["res"]="sfx_legacy_airborne_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1 + }, + [9]={ + ["res"]="sfx_legacy_bo_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [10]={ + ["res"]="sfx_legacy_hitback_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1 + }, + [11]={ + ["res"]="sfx_legacy_lightning_b1", + ["fx_type"]=2, + ["in_scene"]=1 + }, + [1001]={ + ["res"]="sfx_w1101_skill1_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=2.0 + }, + [1002]={ + ["res"]="sfx_w1101_skill2_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1003]={ + ["res"]="sfx_w1101_skill2_hit_a", + ["fx_type"]=2, + ["bind"]="eff_hit", + ["follow_direction"]=1 + }, + [1004]={ + ["res"]="sfx_w1101_skill3_hit_a", + ["fx_type"]=2, + ["follow_direction"]=1, + ["scale"]=1.5 + }, + [1101]={ + ["res"]="sfx_w1101_attack_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1102]={ + ["res"]="sfx_w1101_attack_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1103]={ + ["res"]="sfx_w1101_attack_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1104]={ + ["res"]="sfx_w1101_attack_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1105]={ + ["res"]="sfx_w1101_attack_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1106]={ + ["res"]="sfx_w1101_attack_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1301]={ + ["res"]="sfx_w1101_attack_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1302]={ + ["res"]="sfx_w1101_attack_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1303]={ + ["res"]="sfx_w1101_attack_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1304]={ + ["res"]="sfx_w1101_attack_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1305]={ + ["res"]="sfx_w1101_attack_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1306]={ + ["res"]="sfx_w1101_attack_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1401]={ + ["res"]="sfx_w1101_attack_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [1402]={ + ["res"]="sfx_w1101_attack_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [1403]={ + ["res"]="sfx_w1101_attack_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [1404]={ + ["res"]="sfx_w1101_attack_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [1405]={ + ["res"]="sfx_w1101_attack_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [1406]={ + ["res"]="sfx_w1101_attack_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [1501]={ + ["res"]="sfx_w1105_attack_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1502]={ + ["res"]="sfx_w1105_attack_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1503]={ + ["res"]="sfx_w1105_attack_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1504]={ + ["res"]="sfx_w1105_attack_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1505]={ + ["res"]="sfx_w1105_attack_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1506]={ + ["res"]="sfx_w1105_attack_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1601]={ + ["res"]="sfx_w1106_attack_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1602]={ + ["res"]="sfx_w1106_attack_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1603]={ + ["res"]="sfx_w1106_attack_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1604]={ + ["res"]="sfx_w1106_attack_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1605]={ + ["res"]="sfx_w1106_attack_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [1606]={ + ["res"]="sfx_w1106_attack_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2001]={ + ["res"]="sfx_w2101_skill1_1_a", + ["fx_type"]=2, + ["bind"]="root" + }, + [2002]={ + ["res"]="sfx_w2101_skill1_2_a", + ["fx_type"]=2, + ["bind"]="root" + }, + [2003]={ + ["res"]="sfx_w2101_skill1_3_a", + ["fx_type"]=2, + ["bind"]="root" + }, + [2004]={ + ["res"]="sfx_w2101_skill2_a", + ["fx_type"]=2, + ["is_floor"]=1 + }, + [2005]={ + ["res"]="sfx_w2101_skill3_a", + ["fx_type"]=2, + ["bind"]="root" + }, + [2006]={ + ["res"]="sfx_w2101_skill3_hit_a", + ["fx_type"]=2, + ["bind"]="root" + }, + [2007]={ + ["res"]="sfx_w2101_skill1_hit_a", + ["fx_type"]=2, + ["bind"]="root" + }, + [2101]={ + ["res"]="sfx_w2101_attack1_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2102]={ + ["res"]="sfx_w2101_attack2_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2103]={ + ["res"]="sfx_w2101_attack3_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2104]={ + ["res"]="sfx_w2101_attack4_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2105]={ + ["res"]="sfx_w2101_attack5_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2106]={ + ["res"]="sfx_w2101_attack6_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2301]={ + ["res"]="sfx_w2101_attack1_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2302]={ + ["res"]="sfx_w2101_attack2_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2303]={ + ["res"]="sfx_w2101_attack3_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2304]={ + ["res"]="sfx_w2101_attack4_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2305]={ + ["res"]="sfx_w2101_attack5_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2306]={ + ["res"]="sfx_w2101_attack6_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2401]={ + ["res"]="sfx_w2101_attack1_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [2402]={ + ["res"]="sfx_w2101_attack2_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [2403]={ + ["res"]="sfx_w2101_attack3_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [2404]={ + ["res"]="sfx_w2101_attack4_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [2405]={ + ["res"]="sfx_w2101_attack5_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [2406]={ + ["res"]="sfx_w2101_attack6_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [2501]={ + ["res"]="sfx_w2105_attack1_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2502]={ + ["res"]="sfx_w2105_attack2_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2503]={ + ["res"]="sfx_w2105_attack3_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2504]={ + ["res"]="sfx_w2105_attack4_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2505]={ + ["res"]="sfx_w2105_attack5_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2506]={ + ["res"]="sfx_w2105_attack6_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2601]={ + ["res"]="sfx_w2106_attack1_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2602]={ + ["res"]="sfx_w2106_attack2_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2603]={ + ["res"]="sfx_w2106_attack3_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2604]={ + ["res"]="sfx_w2106_attack4_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2605]={ + ["res"]="sfx_w2106_attack5_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [2606]={ + ["res"]="sfx_w2106_attack6_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3001]={ + ["res"]="sfx_w3101_skill1_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.5 + }, + [3002]={ + ["res"]="sfx_w3101_skill1_hit_a", + ["fx_type"]=2, + ["bind"]="eff_hit", + ["follow_direction"]=1 + }, + [3003]={ + ["res"]="sfx_w3101_skill2_a", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [3004]={ + ["res"]="sfx_w3101_skill2_hit_a", + ["fx_type"]=2, + ["bind"]="eff_hit", + ["follow_direction"]=1 + }, + [3005]={ + ["res"]="sfx_w3101_skill3_a", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3101]={ + ["res"]="sfx_w3101_atk_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3102]={ + ["res"]="sfx_w3101_atk_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3103]={ + ["res"]="sfx_w3101_atk_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3104]={ + ["res"]="sfx_w3101_atk_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3105]={ + ["res"]="sfx_w3101_atk_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3106]={ + ["res"]="sfx_w3101_atk_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3301]={ + ["res"]="sfx_w3101_atk_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3302]={ + ["res"]="sfx_w3101_atk_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3303]={ + ["res"]="sfx_w3101_atk_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3304]={ + ["res"]="sfx_w3101_atk_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3305]={ + ["res"]="sfx_w3101_atk_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3306]={ + ["res"]="sfx_w3101_atk_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3401]={ + ["res"]="sfx_w3101_atk_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [3402]={ + ["res"]="sfx_w3101_atk_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [3403]={ + ["res"]="sfx_w3101_atk_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [3404]={ + ["res"]="sfx_w3101_atk_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [3405]={ + ["res"]="sfx_w3101_atk_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [3406]={ + ["res"]="sfx_w3101_atk_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1, + ["scale"]=1.2 + }, + [3501]={ + ["res"]="sfx_w3105_atk_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3502]={ + ["res"]="sfx_w3105_atk_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3503]={ + ["res"]="sfx_w3105_atk_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3504]={ + ["res"]="sfx_w3105_atk_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3505]={ + ["res"]="sfx_w3105_atk_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3506]={ + ["res"]="sfx_w3105_atk_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3601]={ + ["res"]="sfx_w3106_atk_b01", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3602]={ + ["res"]="sfx_w3106_atk_b02", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3603]={ + ["res"]="sfx_w3106_atk_b03", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3604]={ + ["res"]="sfx_w3106_atk_b04", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3605]={ + ["res"]="sfx_w3106_atk_b05", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [3606]={ + ["res"]="sfx_w3106_atk_b06", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4001]={ + ["res"]="sfx_w4101_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4002]={ + ["res"]="sfx_w4101_skill1_hit_b1", + ["fx_type"]=2, + ["bind"]="eff_hit", + ["follow_direction"]=1 + }, + [4003]={ + ["res"]="sfx_w4101_skill2_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [4004]={ + ["res"]="sfx_w4101_skill2_hit_b1", + ["fx_type"]=2, + ["bind"]="eff_hit", + ["follow_direction"]=1 + }, + [4005]={ + ["res"]="sfx_w4101_skill3_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [4006]={ + ["res"]="sfx_w4101_skill3_hit_b1", + ["fx_type"]=2, + ["bind"]="eff_hit", + ["follow_direction"]=1 + }, + [4101]={ + ["res"]="sfx_w4101_atk_b1", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4102]={ + ["res"]="sfx_w4101_atk_b2", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4103]={ + ["res"]="sfx_w4101_atk_b3", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4104]={ + ["res"]="sfx_w4101_atk_b4", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4105]={ + ["res"]="sfx_w4101_atk_b5", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4106]={ + ["res"]="sfx_w4101_atk_b6", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4301]={ + ["res"]="sfx_w4103_atk_b1", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4302]={ + ["res"]="sfx_w4103_atk_b2", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4303]={ + ["res"]="sfx_w4103_atk_b3", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4304]={ + ["res"]="sfx_w4103_atk_b4", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4305]={ + ["res"]="sfx_w4103_atk_b5", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4306]={ + ["res"]="sfx_w4103_atk_b6", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4401]={ + ["res"]="sfx_w4104_atk_b1", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4402]={ + ["res"]="sfx_w4104_atk_b2", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4403]={ + ["res"]="sfx_w4104_atk_b3", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4404]={ + ["res"]="sfx_w4104_atk_b4", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4405]={ + ["res"]="sfx_w4104_atk_b5", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4406]={ + ["res"]="sfx_w4104_atk_b6", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4501]={ + ["res"]="sfx_w4105_atk_b1", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4502]={ + ["res"]="sfx_w4105_atk_b2", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4503]={ + ["res"]="sfx_w4105_atk_b3", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4504]={ + ["res"]="sfx_w4105_atk_b4", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4505]={ + ["res"]="sfx_w4105_atk_b5", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4506]={ + ["res"]="sfx_w4105_atk_b6", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4601]={ + ["res"]="sfx_w4106_atk_b1", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4602]={ + ["res"]="sfx_w4106_atk_b2", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4603]={ + ["res"]="sfx_w4106_atk_b3", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4604]={ + ["res"]="sfx_w4106_atk_b4", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4605]={ + ["res"]="sfx_w4106_atk_b5", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [4606]={ + ["res"]="sfx_w4106_atk_b6", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [910021]={ + ["res"]="sfx_m1002_skill1_a", + ["fx_type"]=2, + ["in_scene"]=1 + }, + [910061]={ + ["res"]="sfx_m1006_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1 + }, + [910062]={ + ["res"]="sfx_m1006_skill1_b2", + ["fx_type"]=2, + ["bind"]="root" + }, + [920021]={ + ["res"]="sfx_m2003_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [920022]={ + ["res"]="sfx_m2003_skill2_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930011]={ + ["res"]="sfx_m3001_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930012]={ + ["res"]="sfx_m3001_skill2_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930013]={ + ["res"]="sfx_m3001_skill3_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930014]={ + ["res"]="sfx_m3001_skill4_b", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930015]={ + ["res"]="sfx_m3001_skill5_b1", + ["fx_type"]=2, + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [930021]={ + ["res"]="sfx_m3002_skill1_a", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930022]={ + ["res"]="sfx_m3002_skill2_a", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930023]={ + ["res"]="sfx_m3002_skill3_a", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930041]={ + ["res"]="sfx_m3004_skill2_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930042]={ + ["res"]="sfx_m3004_skill2_b2", + ["fx_type"]=2 + }, + [930051]={ + ["res"]="sfx_m3005_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930052]={ + ["res"]="sfx_m3005_skill2_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930053]={ + ["res"]="sfx_m3005_skill3_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930081]={ + ["res"]="sfx_m3008_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930082]={ + ["res"]="sfx_m3008_skill2_b1", + ["fx_type"]=2, + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [930083]={ + ["res"]="sfx_m3008_skill3_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930091]={ + ["res"]="sfx_m3009_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930092]={ + ["res"]="sfx_m3009_skill1_b2", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930093]={ + ["res"]="sfx_m3009_skill1_b3", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1, + ["scale"]=1.5 + }, + [930101]={ + ["res"]="sfx_m3010_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930102]={ + ["res"]="sfx_m3010_skill1_b2", + ["fx_type"]=2 + }, + [930103]={ + ["res"]="sfx_m3010_skill2_b1", + ["fx_type"]=2 + }, + [930121]={ + ["res"]="sfx_m3012_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930141]={ + ["res"]="sfx_m3014_skill1_b1", + ["fx_type"]=2 + }, + [930142]={ + ["res"]="sfx_m3014_skill2_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930161]={ + ["res"]="sfx_m3016_skill1_b1", + ["fx_type"]=2, + ["bind"]="root", + ["follow_direction"]=1 + }, + [930162]={ + ["res"]="sfx_m3016_skill2_b1", + ["fx_type"]=2, + ["bind"]="root", + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [930191]={ + ["res"]="sfx_m3019_skill2_b1", + ["fx_type"]=2, + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [930192]={ + ["res"]="sfx_m3019_skill2_b2", + ["fx_type"]=2, + ["in_scene"]=1, + ["follow_direction"]=1 + }, + [930193]={ + ["res"]="sfx_m3019_skill2_b3", + ["fx_type"]=2, + ["in_scene"]=1, + ["follow_direction"]=1 + } +} +local config = { +data=fx,count=188 +} +return config \ No newline at end of file diff --git a/lua/app/config/fx.lua.meta b/lua/app/config/fx.lua.meta new file mode 100644 index 00000000..a41eaa53 --- /dev/null +++ b/lua/app/config/fx.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4f6df1a993946874c8b48b06b94eaf26 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/hero.lua b/lua/app/config/hero.lua new file mode 100644 index 00000000..89d4daa3 --- /dev/null +++ b/lua/app/config/hero.lua @@ -0,0 +1,42 @@ +local hero = { + [60001]={ + ["atk"]={ + ["value"]=1000000, + ["unit"]=0 + }, + ["hp"]={ + ["value"]=6000000, + ["unit"]=0 + }, + ["recover"]={ + ["value"]=0, + ["unit"]=0 + }, + ["spd"]={ + ["value"]=100, + ["unit"]=0 + }, + ["crit"]={ + ["value"]=0, + ["unit"]=0 + }, + ["crit_time"]={ + ["value"]=15000, + ["unit"]=0 + }, + ["atk_interval"]={ + ["value"]=300, + ["unit"]=0 + }, + ["hero_card"]="hero_head_1", + ["model_id"]="p0001", + ["airborne_num"]={ + ["value"]=3, + ["unit"]=0 + } + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/hero.lua.meta b/lua/app/config/hero.lua.meta new file mode 100644 index 00000000..ce7d5af8 --- /dev/null +++ b/lua/app/config/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5f6a80401fec52540aa22c122d5378f3 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/item.lua b/lua/app/config/item.lua new file mode 100644 index 00000000..a17087d7 --- /dev/null +++ b/lua/app/config/item.lua @@ -0,0 +1,276 @@ +local item = { + [1]={ + ["type"]=1, + ["qlt"]=0, + ["icon"]="1" + }, + [2]={ + ["type"]=6, + ["qlt"]=0, + ["icon"]="2" + }, + [3]={ + ["type"]=1, + ["icon"]="3" + }, + [4]={ + ["type"]=6, + ["icon"]="4" + }, + [5]={ + ["type"]=6, + ["icon"]="5" + }, + [6]={ + ["type"]=6, + ["icon"]="6" + }, + [7]={ + ["type"]=6, + ["icon"]="7" + }, + [8]={ + ["type"]=1, + ["icon"]="8" + }, + [9]={ + ["type"]=6, + ["icon"]="9" + }, + [10]={ + ["type"]=6, + ["icon"]="10" + }, + [11]={ + ["type"]=6, + ["icon"]="11" + }, + [12]={ + ["type"]=1, + ["icon"]="12" + }, + [13]={ + ["type"]=1, + ["icon"]="13" + }, + [14]={ + ["type"]=1, + ["icon"]="14" + }, + [15]={ + ["type"]=1, + ["icon"]="15" + }, + [16]={ + ["type"]=6, + ["icon"]="16" + }, + [17]={ + ["type"]=4, + ["parameter"]=1, + ["icon"]="17" + }, + [18]={ + ["type"]=4, + ["parameter"]=10, + ["icon"]="18" + }, + [19]={ + ["type"]=6, + ["icon"]="19" + }, + [20]={ + ["type"]=3, + ["icon"]="20", + ["box_drop"]={ + { + ["type"]=1, + ["id"]=2, + ["num"]=50, + ["weight"]=2500 + }, + { + ["type"]=1, + ["id"]=2, + ["num"]=100, + ["weight"]=400 + }, + { + ["type"]=1, + ["id"]=2, + ["num"]=150, + ["weight"]=100 + }, + { + ["type"]=1, + ["id"]=12, + ["num"]=50, + ["weight"]=1500 + }, + { + ["type"]=1, + ["id"]=12, + ["num"]=200, + ["weight"]=1000 + }, + { + ["type"]=1, + ["id"]=12, + ["num"]=800, + ["weight"]=500 + }, + { + ["type"]=1, + ["id"]=9, + ["num"]=1, + ["weight"]=500 + }, + { + ["type"]=1, + ["id"]=9, + ["num"]=3, + ["weight"]=500 + }, + { + ["type"]=1, + ["id"]=10, + ["num"]=1, + ["weight"]=500 + }, + { + ["type"]=1, + ["id"]=11, + ["num"]=1, + ["weight"]=500 + }, + { + ["type"]=2, + ["id"]=10001, + ["num"]=1, + ["weight"]=500 + }, + { + ["type"]=2, + ["id"]=10101, + ["num"]=1, + ["weight"]=500 + }, + { + ["type"]=2, + ["id"]=10201, + ["num"]=1, + ["weight"]=500 + }, + { + ["type"]=2, + ["id"]=10301, + ["num"]=1, + ["weight"]=500 + } + } + }, + [21]={ + ["type"]=4, + ["parameter"]=35, + ["icon"]="21" + }, + [22]={ + ["type"]=4, + ["parameter"]=105, + ["icon"]="22" + }, + [23]={ + ["type"]=5, + ["icon"]="23", + ["reward"]={ + { + ["type"]=2, + ["id"]=10005, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=20005, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=30005, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } + }, + [24]={ + ["type"]=5, + ["icon"]="24", + ["reward"]={ + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + } + }, + [25]={ + ["type"]=5, + ["icon"]="25", + ["reward"]={ + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + } + }, + [26]={ + ["type"]=5, + ["icon"]="26", + ["reward"]={ + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [27]={ + ["type"]=5, + ["icon"]="27", + ["reward"]={ + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=2000, + ["unit"]=0 + } + } + } + }, + [28]={ + ["type"]=1, + ["icon"]="28" + } +} +local config = { +data=item,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/item.lua.meta b/lua/app/config/item.lua.meta new file mode 100644 index 00000000..502f5512 --- /dev/null +++ b/lua/app/config/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e10088dedb4f948419a7251250d783c7 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/legacy.lua b/lua/app/config/legacy.lua new file mode 100644 index 00000000..f3569101 --- /dev/null +++ b/lua/app/config/legacy.lua @@ -0,0 +1,1842 @@ +local legacy = { + [40001]={ + ["qlt"]=1, + ["icon"]="40001", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 400011 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=100 + }, + [40002]={ + ["qlt"]=1, + ["icon"]="40002", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 400021 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=100 + }, + [40003]={ + ["qlt"]=1, + ["icon"]="40003", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 400031 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=100 + }, + [40004]={ + ["qlt"]=1, + ["icon"]="40004", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 400041 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=100 + }, + [40005]={ + ["qlt"]=1, + ["icon"]="40005", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=40, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 400051 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=100 + }, + [40101]={ + ["qlt"]=2, + ["icon"]="40101", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 401011 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=200 + }, + [40102]={ + ["qlt"]=2, + ["icon"]="40102", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 401021 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=200 + }, + [40103]={ + ["qlt"]=2, + ["icon"]="40103", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 401031 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=200 + }, + [40104]={ + ["qlt"]=2, + ["icon"]="40104", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 401041 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=200 + }, + [40105]={ + ["qlt"]=2, + ["icon"]="40105", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=80, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 401051 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=200 + }, + [40201]={ + ["qlt"]=3, + ["icon"]="40201", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 402011 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=300 + }, + [40202]={ + ["qlt"]=3, + ["icon"]="40202", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 402021 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=300 + }, + [40203]={ + ["qlt"]=3, + ["icon"]="40203", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 402031 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=300 + }, + [40204]={ + ["qlt"]=3, + ["icon"]="40204", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 402041 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=300 + }, + [40205]={ + ["qlt"]=3, + ["icon"]="40205", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 402051 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=300 + }, + [40301]={ + ["qlt"]=4, + ["icon"]="40301", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 403011 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=400 + }, + [40302]={ + ["qlt"]=4, + ["icon"]="40302", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 403021 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=400 + }, + [40303]={ + ["qlt"]=4, + ["icon"]="40303", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 403031 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=400 + }, + [40304]={ + ["qlt"]=4, + ["icon"]="40304", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 403041 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=400 + }, + [40305]={ + ["qlt"]=4, + ["icon"]="40305", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 403051 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=400 + }, + [40401]={ + ["qlt"]=5, + ["icon"]="40401", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 404011 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=500 + }, + [40402]={ + ["qlt"]=5, + ["icon"]="40402", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 404021 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=500 + }, + [40403]={ + ["qlt"]=5, + ["icon"]="40403", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 404031 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=500 + }, + [40404]={ + ["qlt"]=5, + ["icon"]="40404", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 404041 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=500 + }, + [40405]={ + ["qlt"]=5, + ["icon"]="40405", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=25000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 404051 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=500 + }, + [40501]={ + ["qlt"]=6, + ["icon"]="40501", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 405011 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=600 + }, + [40502]={ + ["qlt"]=6, + ["icon"]="40502", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 405021 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=600 + }, + [40503]={ + ["qlt"]=6, + ["icon"]="40503", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 405031 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=600 + }, + [40504]={ + ["qlt"]=6, + ["icon"]="40504", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 405041 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=600 + }, + [40505]={ + ["qlt"]=6, + ["icon"]="40505", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 405051 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=600 + }, + [40601]={ + ["qlt"]=7, + ["icon"]="40601", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 406011 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=700 + }, + [40602]={ + ["qlt"]=7, + ["icon"]="40602", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 406021 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=700 + }, + [40603]={ + ["qlt"]=7, + ["icon"]="40603", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 406031 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=700 + }, + [40604]={ + ["qlt"]=7, + ["icon"]="40604", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 406041 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=700 + }, + [40605]={ + ["qlt"]=7, + ["icon"]="40605", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 406051 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=700 + }, + [40606]={ + ["qlt"]=7, + ["icon"]="40606", + ["base_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=150000, + ["unit"]=0 + } + } + }, + ["grow_own"]={ + { + ["type"]="atkp_4", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_7", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["skill_id"]={ + 406061 + }, + ["upgrade_cost"]={ + 2, + 3, + 4, + 5, + 7, + 9, + 11, + 13, + 15 + }, + ["weight"]=700 + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/legacy.lua.meta b/lua/app/config/legacy.lua.meta new file mode 100644 index 00000000..b461265c --- /dev/null +++ b/lua/app/config/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b70ed33ccb61f4c4ead20af843531026 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/localization.meta b/lua/app/config/localization.meta new file mode 100644 index 00000000..c3d42243 --- /dev/null +++ b/lua/app/config/localization.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 18b0e545a16533941a68d837fe7c3634 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/localization/localization_global_const.lua b/lua/app/config/localization/localization_global_const.lua new file mode 100644 index 00000000..326e3856 --- /dev/null +++ b/lua/app/config/localization/localization_global_const.lua @@ -0,0 +1,406 @@ +local LocalizationGlobalConst = +{ + TASK_DAILY_TITLE = "TASK_DAILY_TITLE", + COUNTDOWN = "COUNTDOWN", + EVENT_TITLE = "EVENT_TITLE", + ACT_SEVENDAY_TITLE = "ACT_SEVENDAY_TITLE", + ACT_SEVENDAY_BTN = "ACT_SEVENDAY_BTN", + ACT_SEVENDAY_LEFTTIME = "ACT_SEVENDAY_LEFTTIME", + ACT_SEVENDAY_TASK = "ACT_SEVENDAY_TASK", + ACT_SEVENDAY_DESC = "ACT_SEVENDAY_DESC", + BTN_CLAIM = "BTN_CLAIM", + BTN_DONE = "BTN_DONE", + BTN_GO = "BTN_GO", + BTN_FREE = "BTN_FREE", + BTN_CONFIRM = "BTN_CONFIRM", + SUMMON_TIMES = "SUMMON_TIMES", + SUMMON_RATE_TITLE = "SUMMON_RATE_TITLE", + SUMMON_RATE_DESC1 = "SUMMON_RATE_DESC1", + SUMMON_RATE_DESC2 = "SUMMON_RATE_DESC2", + IDLE_TITLE1 = "IDLE_TITLE1", + IDLE_TITLE2 = "IDLE_TITLE2", + IDLE_BTN = "IDLE_BTN", + IDLE_DESC = "IDLE_DESC", + MAIL_TITLE = "MAIL_TITLE", + MAIL_COUNTDOWN = "MAIL_COUNTDOWN", + BTN_READ = "BTN_READ", + BTN_DELETE_ALL = "BTN_DELETE_ALL", + BTN_CLAIM_ALL = "BTN_CLAIM_ALL", + FIRST_CHARGE_REWARD_DESC = "FIRST_CHARGE_REWARD_DESC", + SHOP_DESC1 = "SHOP_DESC1", + SUMMON_DESC1 = "SUMMON_DESC1", + SUMMON_DESC2 = "SUMMON_DESC2", + SUMMON_DESC3 = "SUMMON_DESC3", + DAILY_AND_WEEK = "DAILY_AND_WEEK", + TREASURE_DESC1 = "TREASURE_DESC1", + FAMILY_HEIRLOOM = "FAMILY_HEIRLOOM", + ARMOR_DESC1 = "ARMOR_DESC1", + QLT_DESC_1 = "QLT_DESC_1", + QLT_DESC_2 = "QLT_DESC_2", + QLT_DESC_3 = "QLT_DESC_3", + QLT_DESC_4 = "QLT_DESC_4", + QLT_DESC_5 = "QLT_DESC_5", + QLT_DESC_6 = "QLT_DESC_6", + QLT_DESC_7 = "QLT_DESC_7", + PROBABILITY_DESC1 = "PROBABILITY_DESC1", + PROBABILITY_DESC2 = "PROBABILITY_DESC2", + LEVEL_DESC1 = "LEVEL_DESC1", + WEAPON_DESC1 = "WEAPON_DESC1", + LV_POINT = "LV_POINT", + LOOK_AD_DESC1 = "LOOK_AD_DESC1", + LOOK_AD_DESC2 = "LOOK_AD_DESC2", + LOOK_AD_DESC3 = "LOOK_AD_DESC3", + NEXT_SUMMON_NUM = "NEXT_SUMMON_NUM", + MAX_SUMMON_NUM = "MAX_SUMMON_NUM", + CANCEL_1 = "CANCEL_1", + TIME_STR_DHM = "TIME_STR_DHM", + TIME_STR_M = "TIME_STR_M", + TIME_STR_MS = "TIME_STR_MS", + TIME_STR_S = "TIME_STR_S", + TIME_STR_DH = "TIME_STR_DH", + TIME_STR_HMS = "TIME_STR_HMS", + TIME_STR_HM = "TIME_STR_HM", + TIME_STR_D = "TIME_STR_D", + TIME_MS = "TIME_MS", + TIME_HMS = "TIME_HMS", + REMAIN_TIME_DESC1 = "REMAIN_TIME_DESC1", + SUPER_DESC1 = "SUPER_DESC1", + GIFT_DESC1 = "GIFT_DESC1", + DUMGEON_1 = "DUMGEON_1", + DUMGEON_2 = "DUMGEON_2", + DUMGEON_3 = "DUMGEON_3", + DUMGEON_4 = "DUMGEON_4", + BLESSING_1 = "BLESSING_1", + BLESSING_2 = "BLESSING_2", + BLESSING_3 = "BLESSING_3", + ACCELERATION = "ACCELERATION", + LOOK_AD = "LOOK_AD", + DAILY_SHOP = "DAILY_SHOP", + WEEK_SHOP = "WEEK_SHOP", + FIRST_BUY_AWARD = "FIRST_BUY_AWARD", + FIRST_BUT_AWARD_2 = "FIRST_BUT_AWARD_2", + EQUIP_TITLE = "EQUIP_TITLE ", + EQUIP_DESC_1 = "EQUIP_DESC_1", + EQUIP_DESC_2 = "EQUIP_DESC_2", + EQUIP_DESC_3 = "EQUIP_DESC_3", + EQUIP_DESC_4 = "EQUIP_DESC_4", + EQUIP_DESC_5 = "EQUIP_DESC_5", + EQUIP_DESC_6 = "EQUIP_DESC_6", + ATTR_NAME_1 = "ATTR_NAME_1", + ATTR_NAME_2 = "ATTR_NAME_2", + ATTR_NAME_3 = "ATTR_NAME_3", + ATTR_NAME_4 = "ATTR_NAME_4", + ATTR_NAME_5 = "ATTR_NAME_5", + ATTR_NAME_6 = "ATTR_NAME_6", + ATTR_NAME_7 = "ATTR_NAME_7", + ATTR_NAME_8 = "ATTR_NAME_8", + ATTR_NAME_9 = "ATTR_NAME_9", + ATTR_NAME_11 = "ATTR_NAME_11", + ATTR_NAME_20 = "ATTR_NAME_20", + CAN_NOT_DIGGING_DARK = "CAN_NOT_DIGGING_DARK", + MUST_PUT_IN_GROUND = "MUST_PUT_IN_GROUND", + ITEM_NOT_ENOUGH = "ITEM_NOT_ENOUGH", + MAX_LV_DESC = "MAX_LV_DESC", + RESET_DESC = "RESET_DESC", + STRENGTHEN_DESC = "STRENGTHEN_DESC", + MASTERY_DESC_1 = "MASTERY_DESC_1", + MASTERY_DESC_2 = "MASTERY_DESC_2", + MASTERY_DESC_3 = "MASTERY_DESC_3", + MASTERY_DESC_4 = "MASTERY_DESC_4", + MASTERY_DESC_5 = "MASTERY_DESC_5", + HERO_TITLE_1 = "HERO_TITLE_1", + HERO_TITLE_2 = "HERO_TITLE_2", + HERO_TITLE_3 = "HERO_TITLE_3", + HERO_TITLE_4 = "HERO_TITLE_4", + EQUIP_DESC_7 = "EQUIP_DESC_7", + EQUIP_DESC_8 = "EQUIP_DESC_8", + EQUIP_DESC_9 = "EQUIP_DESC_9", + EQUIP_DESC_10 = "EQUIP_DESC_10", + EQUIP_DESC_11 = "EQUIP_DESC_11", + EQUIP_DESC_12 = "EQUIP_DESC_12", + EQUIP_DESC_13 = "EQUIP_DESC_13", + CONGRATULATE_GET_DESC = "CONGRATULATE_GET_DESC", + MINING_TITLE = "MINING_TITLE", + NEXT = "Next", + MINING_TIPS_DESC1 = "MINING_TIPS_DESC1", + MINING_TIPS_DESC2 = "MINING_TIPS_DESC2", + MINING_TIPS_DESC3 = "MINING_TIPS_DESC3", + MINING_TIPS_DESC4 = "MINING_TIPS_DESC4", + RESEARCH_TITLE = "RESEARCH_TITLE", + RESEARCH_MAT = "RESEARCH_MAT", + RESEARCHING_QUICK_FINISH = "RESEARCHING_QUICK_FINISH", + RESEARCHING_JUMP_TIME = "RESEARCHING_JUMP_TIME", + RESEARCHING_DESC1 = "RESEARCHING_DESC1", + MAX = "MAX", + NEED_BEFORE_RESEARCH = "NEED_BEFORE_RESEARCH", + RESEARCH = "RESEARCH", + DISCONNECT_RELOGIN = "DISCONNECT_RELOGIN", + RECONNECT = "RECONNECT", + BTN_TEXT_OK = "BTN_TEXT_OK", + RELOGIN = "RELOGIN", + DUNGEON_GOLD = "DUNGEON_GOLD", + DUNGEON_TREASURE = "DUNGEON_TREASURE", + DUNGEON_MITHRIL = "DUNGEON_MITHRIL", + DUNGEON_CHARACTERISTIC = "DUNGEON_CHARACTERISTIC", + TRAIN_DESC_1 = "TRAIN_DESC_1", + TRAIN_DESC_2 = "TRAIN_DESC_2", + TRAIN_DESC_3 = "TRAIN_DESC_3", + TRAIN_DESC_4 = "TRAIN_DESC_4", + TRAIN_DESC_5 = "TRAIN_DESC_5", + TRAIN_DESC_6 = "TRAIN_DESC_6", + TRAIN_DESC_7 = "TRAIN_DESC_7", + TRAIN_DESC_8 = "TRAIN_DESC_8", + TRAIN_DESC_9 = "TRAIN_DESC_9", + TRAIN_DESC_10 = "TRAIN_DESC_10", + TRAIN_DESC_11 = "TRAIN_DESC_11", + TRAIN_DESC_12 = "TRAIN_DESC_12", + TRAIN_DESC_13 = "TRAIN_DESC_13", + TRAIN_DESC_14 = "TRAIN_DESC_14", + TRAIN_DESC_15 = "TRAIN_DESC_15", + TRAIN_DESC_16 = "TRAIN_DESC_16", + TRAIN_DESC_17 = "TRAIN_DESC_17", + TRAIN_DESC_18 = "TRAIN_DESC_18", + UPGRADE_DESC = "UPGRADE_DESC", + GET_REWARDS = "GET_REWARDS", + ARENA = "ARENA", + REFRESH_TIME = "REFRESH_TIME", + DUNGEON_DESC1 = "DUNGEON_DESC1", + CHAPTER_UNLOCK_DESC = "CHAPTER_UNLOCK_DESC", + LEVEL_UNLOCK_DESC = "LEVEL_UNLOCK_DESC", + ENTER_DUNGEON = "ENTER_DUNGEON", + TASK_COMPLETE_DESC = "TASK_COMPLETE_DESC", + DUNGEON_GOLD_HELP_CONTENT = "DUNGEON_GOLD_HELP_CONTENT", + DUNGEON_TREASURE_HELP_CONTENT = "DUNGEON_TREASURE_HELP_CONTENT", + DUNGEON_MITHRIL_HELP_CONTENT = "DUNGEON_MITHRIL_HELP_CONTENT", + DUNGEON_CHARACTERISTIC_HELP_CONTENT = "DUNGEON_CHARACTERISTIC_HELP_CONTENT", + ARENA_HELP_CONTENT = "ARENA_HELP_CONTENT", + GET_SEVER_ERROR = "GET_SEVER_ERROR", + ENTER_DUNGEON_AD = "ENTER_DUNGEON_AD", + DUNGEON_DIFFICULT = "DUNGEON_DIFFICULT", + PASS_REWARD = "PASS_REWARD", + ARENA_RULE_TITLE = "ARENA_RULE_TITLE", + ARENA_RULE_CONTENT = "ARENA_RULE_CONTENT", + LOOK_SEASON_REWARD = "LOOK_SEASON_REWARD", + ARENA_SUBJECT_DESC = "ARENA_SUBJECT_DESC", + SWARD = "SWARD", + WAND = "WAND", + KNIFE = "KNIFE", + SPEAR = "SPEAR", + REWARD_PREVIEW = "REWARD_PREVIEW", + ARENA_ENTER_TITLE = "ARENA_ENTER_TITLE", + ARENA_REFRESH_TIME_DESC = "ARENA_REFRESH_TIME_DESC", + CUR_RANK_LEVEL = "CUR_RANK_LEVEL", + SCORE_DESC = "SCORE_DESC", + RANK_ORDER = "RANK_ORDER", + HERO_RANKING_TITLE = "HERO_RANKING_TITLE", + ARENA_BATTLE_REWARD_TITLE = "ARENA_BATTLE_REWARD_TITLE", + ARENA_MAX_LEVEL = "ARENA_MAX_LEVEL", + BEST_DESC = "BEST_DESC", + RANKING_REWARD = "RANKING_REWARD", + RANK_LEVEL_REWARD = "RANK_LEVEL_REWARD", + RANKING_DESC1 = "RANKING_DESC1", + RANKING_DESC2 = "RANKING_DESC2", + CLEARING_REMAIN_DESC = "CLEARING_REMAIN_DESC", + NO_ONE_IN_THIS_SEGMENT = "NO_ONE_IN_THIS_SEGMENT", + NEED_SOMETHING = "NEED_SOMETHING", + SELF_RANKING = "SELF_RANKING", + RANKIN_LEVEL_DESC = "RANKIN_LEVEL_DESC", + ARENA_RANK_DESC_1 = "ARENA_RANK_DESC_1", + SELF_RANK_ORDER = "SELF_RANK_ORDER", + SEVEN_DAY_SIGNIN_TITLE = "SEVEN_DAY_SIGNIN_TITLE", + DAY_DESC1 = "DAY_DESC1", + SEVEN_DAY_DESC = "SEVEN_DAY_DESC", + NOT_IN_RANK = "NOT_IN_RANK", + DIAMOND_GIFT_TITLE = "DIAMOND_GIFT_TITLE", + LIMIT_GIFT = "LIMIT_GIFT", + DAILY_GIFT = "DAILY_GIFT", + WEEK_GIFT = "WEEK_GIFT", + MALL_GIFT = "MALL_GIFT", + WEAPON_SUMMON_TITLE = "WEAPON_SUMMON_TITLE", + ARMOR_SUMMON_TITLE = "ARMOR_SUMMON_TITLE", + FAMILY_HEIRLOOM_SUMMON_TITLE = "FAMILY_HEIRLOOM_SUMMON_TITLE", + CHAPTER_DESC_1 = "CHAPTER_DESC_1", + CHAPTER_DESC_2 = "CHAPTER_DESC_2", + CHAPTER_DESC_3 = "CHAPTER_DESC_3", + CHAPTER_DESC_4 = "CHAPTER_DESC_4", + LIMIT_DESC = "LIMIT_DESC", + QLT_DESC = "QLT_DESC", + ITEM_DESC = "ITEM_DESC", + IDLE_DROP_DESC_1 = "IDLE_DROP_DESC_1", + IDLE_DROP_DESC_2 = "IDLE_DROP_DESC_2", + IDLE_DROP_DESC_3 = "IDLE_DROP_DESC_3", + GET_REWARDS_1 = "GET_REWARDS_1", + EXT_REWARDS = "EXT_REWARDS", + CAN_NOT_DIG_GROUND = "CAN_NOT_DIG_GROUND", + SEVEN_DAY_DESC_1 = "SEVEN_DAY_DESC_1", + SEVEN_DAY_DESC_2 = "SEVEN_DAY_DESC_2", + SEVEN_DAY_DESC_3 = "SEVEN_DAY_DESC_3", + SEVEN_DAY_DESC_4 = "SEVEN_DAY_DESC_4", + DAILY_TASK_DESC_1 = "DAILY_TASK_DESC_1", + DAILY_TASK_DESC_2 = "DAILY_TASK_DESC_2", + GAME_SETTING_DESC_1 = "GAME_SETTING_DESC_1", + GAME_SETTING_DESC_2 = "GAME_SETTING_DESC_2", + GAME_SETTING_DESC_3 = "GAME_SETTING_DESC_3", + GAME_SETTING_DESC_4 = "GAME_SETTING_DESC_4", + GAME_SETTING_DESC_5 = "GAME_SETTING_DESC_5", + GAME_SETTING_FACEBOOK = "GAME_SETTING_FACEBOOK", + GAME_SETTING_DISCORD = "GAME_SETTING_DISCORD", + GAME_SETTING_DESC_6 = "GAME_SETTING_DESC_6", + GAME_SETTING_DESC_7 = "GAME_SETTING_DESC_7", + GAME_SETTING_DESC_8 = "GAME_SETTING_DESC_8", + GAME_SETTING_DESC_9 = "GAME_SETTING_DESC_9", + GAME_SETTING_DESC_10 = "GAME_SETTING_DESC_10", + GAME_SETTING_DESC_11 = "GAME_SETTING_DESC_11", + GAME_SETTING_DESC_12 = "GAME_SETTING_DESC_12", + GAME_SETTING_DESC_13 = "GAME_SETTING_DESC_13", + GAME_SETTING_DESC_14 = "GAME_SETTING_DESC_14", + TUTORIAL_MINE = "TUTORIAL_MINE", + HAS_RESEARCHING = "HAS_RESEARCHING", + BATTLE_FAILED = "BATTLE_FAILED", + BATTLE_FAIL_DESC_1 = "BATTLE_FAIL_DESC_1", + BATTLE_FAIL_DESC_2 = "BATTLE_FAIL_DESC_2", + BATTLE_FAIL_DESC_3 = "BATTLE_FAIL_DESC_3", + BATTLE_FAIL_DESC_4 = "BATTLE_FAIL_DESC_4", + ACCOUNT_DESC_1 = "ACCOUNT_DESC_1", + ACCOUNT_DESC_2 = "ACCOUNT_DESC_2", + LOGIN_BY_GOOGLE = "LOGIN_BY_GOOGLE", + LOGIN_BY_APPLE = "LOGIN_BY_APPLE", + DELETE_ACCOUNT = "DELETE_ACCOUNT", + BLESSING_TITLE = "BLESSING_TITLE", + BLESSING_TITLE_1 = "BLESSING_TITLE_1", + BLESSING_TITLE_2 = "BLESSING_TITLE_2", + BLESSING_TITLE_3 = "BLESSING_TITLE_3", + BLESSING_DESC_1 = "BLESSING_DESC_1", + BLESSING_DESC_2 = "BLESSING_DESC_2", + BLESSING_DESC_3 = "BLESSING_DESC_3", + BLESSING_DESC_4 = "BLESSING_DESC_4", + GET = "GET", + ACT_SEVENDAY_DESC_1 = "ACT_SEVENDAY_DESC_1", + BATTLE_SPEED_UP_DESC_1 = "BATTLE_SPEED_UP_DESC_1", + BATTLE_SPEED_UP_DESC_2 = "BATTLE_SPEED_UP_DESC_2", + BATTLE_SPEED_UP_DESC_3 = "BATTLE_SPEED_UP_DESC_3", + BATTLE_SPEED_UP_DESC_4 = "BATTLE_SPEED_UP_DESC_4", + BATTLE_SPEED_UP_DESC_5 = "BATTLE_SPEED_UP_DESC_5", + BATTLE_SPEED_UP_DESC_6 = "BATTLE_SPEED_UP_DESC_6", + BATTLE_FAIL = "BATTLE_FAIL", + BATTLE_VICTORY = "BATTLE_VICTORY", + CLICK_CLOSE_DESC = "CLICK_CLOSE_DESC", + FUNC_OPEN_LEVEL = "FUNC_OPEN_LEVEL", + FUNC_OPEN_STAGE = "FUNC_OPEN_STAGE", + FUNC_OPEN_TASK = "FUNC_OPEN_TASK", + TASK_DESC = "TASK_DESC", + TRAIN_DESC_19 = "TRAIN_DESC_19", + TRAIN_DESC_20 = "TRAIN_DESC_20", + RUNE_TITLE_1 = "RUNE_TITLE_1", + RUNE_TITLE_2 = "RUNE_TITLE_2", + RUNE_TITLE_3 = "RUNE_TITLE_3", + RUNE_TITLE_4 = "RUNE_TITLE_4", + RUNE_TITLE_5 = "RUNE_TITLE_5", + RUNE_TITLE_6 = "RUNE_TITLE_6", + RUNE_TITLE_7 = "RUNE_TITLE_7", + BATTLE_SPEED_UP_DESC_7 = "BATTLE_SPEED_UP_DESC_7", + MASTERY_DESC_6 = "MASTERY_DESC_6", + MESSAGE_BOX_TITLE = "MESSAGE_BOX_TITLE", + RESEARCH_COMPLETE = "RESEARCH_COMPLETE", + BOUNTY_DESC_1 = "BOUNTY_DESC_1", + BOUNTY_DESC_2 = "BOUNTY_DESC_2", + BOUNTY_DESC_4 = "BOUNTY_DESC_4", + BOUNTY_DESC_5 = "BOUNTY_DESC_5", + BOUNTY_DESC_6 = "BOUNTY_DESC_6", + BOUNTY_DESC_7 = "BOUNTY_DESC_7", + BOUNTY_DESC_8 = "BOUNTY_DESC_8", + BOUNTY_DESC_9 = "BOUNTY_DESC_9", + BOUNTY_DESC_10 = "BOUNTY_DESC_10", + BOUNTY_DESC_11 = "BOUNTY_DESC_11", + BOUNTY_DESC_12 = "BOUNTY_DESC_12", + BOUNTY_DESC_13 = "BOUNTY_DESC_13", + BOUNTY_DESC_14 = "BOUNTY_DESC_14", + BOUNTY_DESC_15 = "BOUNTY_DESC_15", + AUTO_FIGHT = "AUTO_FIGHT", + OPEN_AUTO_FIGHT = "OPEN_AUTO_FIGHT", + BATTLE_NEXT_WAVE = "BATTLE_NEXT_WAVE", + BATTLE_WAVE = "BATTLE_WAVE", + BATTLE_LEFT = "BATTLE_LEFT", + BATTLE_STAGE_FAILED_DESC = "BATTLE_STAGE_FAILED_DESC", + POWER = "POWER", + BATTLE_CHAPTER_PASS = "BATTLE_CHAPTER_PASS", + BATTLE_CHAPTER_DESC = "BATTLE_CHAPTER_DESC", + BATTLE_LIMIT_DESC = "BATTLE_LIMIT_DESC", + BATTLE_CHAPTER_STEP_DESC = "BATTLE_CHAPTER_STEP_DESC", + BATTLE_PAUSE = "BATTLE_PAUSE", + BATTLE_ATTR = "BATTLE_ATTR", + BATTLE_RESUME = "BATTLE_RESUME", + BATTLE_DUNGEON_EXIT = "BATTLE_DUNGEON_EXIT", + TRAIN_DESC_21 = "TRAIN_DESC_21", + TRAIN_DESC_22 = "TRAIN_DESC_22", + HELP_DESC = "HELP_DESC", + HISTORY_RECORD = "HISTORY_RECORD", + NEW_RECORD = "NEW_RECORD", + BATTLE_END = "BATTLE_END", + CUR_RECORD = "CUR_RECORD", + CLICK_CLOSE_DESC_2 = "CLICK_CLOSE_DESC_2", + BATTLE_REVIVE_TITLE = "BATTLE_REVIVE_TITLE", + BATTLE_REVIVE_AD = "BATTLE_REVIVE_AD", + BATTLE_REVIVE = "BATTLE_REVIVE", + SELECT_LEGACY_DESC = "SELECT_LEGACY_DESC", + SELECT_ONE_LEGACY = "SELECT_ONE_LEGACY", + CHANGE_OTHER = "CHANGE_OTHER", + VIEW_SELECTED_LEGACY = "VIEW_SELECTED_LEGACY", + ARENA_CHANGE_FINISH_DESC = "ARENA_CHANGE_FINISH_DESC", + ARENA_SCORE = "ARENA_SCORE", + BATTLE_AGAIN = "BATTLE_AGAIN", + RECHARGE_TITLE = "RECHARGE_TITLE", + BATTLE_ERROR = "BATTLE_ERROR", + ARENA_CALCULATE = "ARENA_CALCULATE", + RENAME_DESC_1 = "RENAME_DESC_1", + RENAME_DESC_2 = "RENAME_DESC_2", + RENAME_DESC_3 = "RENAME_DESC_3", + RENAME_DESC_4 = "RENAME_DESC_4", + SHIELDED_WORD_DESC = "SHIELDED_WORD_DESC", + NAME_ALREADY_USED_DESC = "NAME_ALREADY_USED_DESC", + NEW_PLAYER_DESC = "NEW_PLAYER_DESC", + LANGUAGE_DESC = "LANGUAGE_DESC", + ARENA_FIGHT_FORBID = "ARENA_FIGHT_FORBID", + FUNDCHAPTER_TITLE = "FUNDCHAPTER_TITLE", + FUNDCHAPTER_TITLE_DESC = "FUNDCHAPTER_TITLE_DESC", + ARENA_SEGMENT_TITLE = "ARENA_SEGMENT_TITLE", + ARENA_SEGMENT_TITLE_DESC = "ARENA_SEGMENT_TITLE_DESC", + RECEIVE_REWARD = "RECEIVE_REWARD", + REWARD_TITLE = "REWARD_TITLE", + MAX_SCORE = "MAX_SCORE", + SAVE_POWER_DESC_2 = "SAVE_POWER_DESC_2", + SAVE_POWER_DESC_3 = "SAVE_POWER_DESC_3", + SAVE_POWER_DESC_4 = "SAVE_POWER_DESC_4", + FUND_PROGRESS = "FUND_PROGRESS", + FUND_LOW_TX = "FUND_LOW_TX", + FUND_HIGH_TX = "FUND_HIGH_TX", + NO_NETWORK = "NO_NETWORK", + NETWORK_ERROE_1 = "NETWORK_ERROE_1", + REPEAT_PAY_ORDER = "REPEAT_PAY_ORDER", + BATTLE_STAGE_FAILED_DESC_2 = "BATTLE_STAGE_FAILED_DESC_2", + ACTIVITY_OVER_DESC = "ACTIVITY_OVER_DESC", + BINDED_DESC = "BINDED_DESC", + SWITCH_ACCOUNT_DESC = "SWITCH_ACCOUNT_DESC", + BATTLE_MISS = "BATTLE_MISS", + MAINTAIN = "MAINTAIN", + FORBIDDEN = "FORBIDDEN", + OTHER_LOGIN = "OTHER_LOGIN", + NO_ADS = "NO_ADS", + ACCOUNT_EXCHANGE_DESC_1 = "ACCOUNT_EXCHANGE_DESC_1", + ACCOUNT_EXCHANGE_DESC_2 = "ACCOUNT_EXCHANGE_DESC_2", + BESURE_DELETE_TIPS_DESC = "BESURE_DELETE_TIPS_DESC", + BESURE_DELETE_ACCOUNT_DESC = "BESURE_DELETE_ACCOUNT_DESC", + LOADING_DESC = "LOADING_DESC", + CLICK_COPY_ACOUNT_DESC = "CLICK_COPY_ACOUNT_DESC", + APP = "APP", + BLESS_DESC = "BLESS_DESC", + SKIP_AD_DESC = "SKIP_AD_DESC", + ARENA_SETTLE_DESC = "ARENA_SETTLE_DESC", + PAY_FAILED_DESC_1 = "PAY_FAILED_DESC_1", + MONTH_CARD_DESC = "MONTH_CARD_DESC", + SETTING_DESC_22 = "SETTING_DESC_22", + SETTING_DESC_23 = "SETTING_DESC_23", + SETTING_DESC_25 = "SETTING_DESC_25", +} + +return LocalizationGlobalConst \ No newline at end of file diff --git a/lua/app/config/localization/localization_global_const.lua.meta b/lua/app/config/localization/localization_global_const.lua.meta new file mode 100644 index 00000000..154bc37a --- /dev/null +++ b/lua/app/config/localization/localization_global_const.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f9a0f115d51720b449b9dc4638fa2e36 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mail.lua b/lua/app/config/mail.lua new file mode 100644 index 00000000..afd5ae6c --- /dev/null +++ b/lua/app/config/mail.lua @@ -0,0 +1,109 @@ +local mail = { + [1]={ + ["type"]=1, + ["time_type"]=1, + ["time_send"]={ + 0, + 0, + 0 + }, + ["time"]=24, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [2]={ + ["type"]=2, + ["time_type"]=1, + ["time_send"]={ + 0, + 0, + 0 + }, + ["time"]=24, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [3]={ + ["type"]=3, + ["time_type"]=2, + ["time_send"]={ + 5, + 12, + 0, + 0 + }, + ["time"]=24, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + } + } + }, + [4]={ + ["type"]=3, + ["time_type"]=2, + ["time_send"]={ + 6, + 12, + 0, + 0 + }, + ["time"]=24, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=5000, + ["unit"]=0 + } + } + } + }, + [5]={ + ["type"]=3, + ["time_type"]=2, + ["time_send"]={ + 7, + 12, + 0, + 0 + }, + ["time"]=24, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=7000, + ["unit"]=0 + } + } + } + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/mail.lua.meta b/lua/app/config/mail.lua.meta new file mode 100644 index 00000000..c6a12cd2 --- /dev/null +++ b/lua/app/config/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0dacdb09a36b90640995996e63af8c7d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mall_act.lua b/lua/app/config/mall_act.lua new file mode 100644 index 00000000..70c9fc59 --- /dev/null +++ b/lua/app/config/mall_act.lua @@ -0,0 +1,752 @@ +local mall_act = { + [10000]={ + ["type"]=6, + ["sort"]=1000000, + ["reward"]={ + { + ["type"]=2, + ["id"]=10305, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["limit"]=1 + }, + [10001]={ + ["type"]=1, + ["recharge_id"]=5, + ["sort"]=1000100, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=7500, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=1, + ["count"]={ + ["value"]=1000000, + ["unit"]=0 + } + } + }, + ["condition"]={ + 1, + 100 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_01", + ["bg"]="recharge_bg_13", + ["value"]=600 + }, + [10002]={ + ["type"]=1, + ["recharge_id"]=5, + ["sort"]=1000200, + ["reward"]={ + { + ["type"]=2, + ["id"]=10004, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=20004, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=30004, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=4, + ["id"]=40305, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["condition"]={ + 1, + 200 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_02", + ["bg"]="recharge_bg_13", + ["value"]=600 + }, + [10003]={ + ["type"]=1, + ["recharge_id"]=10, + ["sort"]=1000300, + ["reward"]={ + { + ["type"]=1, + ["id"]=9, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=10, + ["count"]={ + ["value"]=40, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=11, + ["count"]={ + ["value"]=40, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["condition"]={ + 1, + 300 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_06", + ["bg"]="recharge_bg_14", + ["value"]=600 + }, + [10004]={ + ["type"]=1, + ["recharge_id"]=10, + ["sort"]=1000400, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=30000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=6, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=14, + ["count"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["condition"]={ + 1, + 400 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_07", + ["bg"]="recharge_bg_14", + ["value"]=600 + }, + [10005]={ + ["type"]=1, + ["recharge_id"]=10, + ["sort"]=1000500, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["condition"]={ + 1, + 500 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_01", + ["bg"]="recharge_bg_14", + ["value"]=600 + }, + [10006]={ + ["type"]=1, + ["recharge_id"]=12, + ["sort"]=1000600, + ["reward"]={ + { + ["type"]=2, + ["id"]=10007, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=20306, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=30206, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=4, + ["id"]=40505, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["condition"]={ + 1, + 800 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_03", + ["bg"]="recharge_bg_10", + ["value"]=600 + }, + [10101]={ + ["type"]=1, + ["recharge_id"]=5, + ["sort"]=1010100, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=7500, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=9, + ["count"]={ + ["value"]=125, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=10, + ["count"]={ + ["value"]=25, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=11, + ["count"]={ + ["value"]=25, + ["unit"]=0 + } + } + }, + ["condition"]={ + 3, + 47 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_06", + ["bg"]="recharge_bg_13", + ["value"]=600 + }, + [10102]={ + ["type"]=1, + ["recharge_id"]=5, + ["sort"]=1010200, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=15000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=6, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + } + }, + ["condition"]={ + 3, + 72 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_07", + ["bg"]="recharge_bg_13", + ["value"]=600 + }, + [10103]={ + ["type"]=1, + ["recharge_id"]=10, + ["sort"]=1010300, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=30000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=16, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=10005, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["condition"]={ + 3, + 91 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_05", + ["bg"]="recharge_bg_14", + ["value"]=600 + }, + [10104]={ + ["type"]=1, + ["recharge_id"]=12, + ["sort"]=1010400, + ["reward"]={ + { + ["type"]=2, + ["id"]=10306, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=20006, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=30006, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=4, + ["id"]=40501, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["condition"]={ + 3, + 150 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_03", + ["bg"]="recharge_bg_10", + ["value"]=600 + }, + [10105]={ + ["type"]=1, + ["recharge_id"]=12, + ["sort"]=1010500, + ["reward"]={ + { + ["type"]=2, + ["id"]=10107, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=20106, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=30306, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=4, + ["id"]=40502, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["condition"]={ + 3, + 200 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_03", + ["bg"]="recharge_bg_10", + ["value"]=600 + }, + [10106]={ + ["type"]=1, + ["recharge_id"]=17, + ["sort"]=1010600, + ["reward"]={ + { + ["type"]=2, + ["id"]=10008, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["condition"]={ + 3, + 300 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_04", + ["bg"]="recharge_bg_11", + ["value"]=600 + }, + [10201]={ + ["type"]=1, + ["recharge_id"]=10, + ["sort"]=1020100, + ["reward"]={ + { + ["type"]=2, + ["id"]=10205, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=20305, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=30205, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["condition"]={ + 4, + 5 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_05", + ["bg"]="recharge_bg_14", + ["value"]=600 + }, + [10202]={ + ["type"]=1, + ["recharge_id"]=12, + ["sort"]=1020200, + ["reward"]={ + { + ["type"]=2, + ["id"]=10206, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=20206, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=2, + ["id"]=30106, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["condition"]={ + 4, + 6 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_03", + ["bg"]="recharge_bg_10", + ["value"]=600 + }, + [10301]={ + ["type"]=1, + ["recharge_id"]=10, + ["sort"]=1030100, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=15000, + ["unit"]=0 + } + }, + { + ["type"]=4, + ["id"]=40401, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + ["condition"]={ + 6, + 5 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_05", + ["bg"]="recharge_bg_14", + ["value"]=600 + }, + [10302]={ + ["type"]=1, + ["recharge_id"]=12, + ["sort"]=1030200, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=30000, + ["unit"]=0 + } + }, + { + ["type"]=4, + ["id"]=40503, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + ["condition"]={ + 6, + 6 + }, + ["continued_time"]=259200, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_03", + ["bg"]="recharge_bg_10", + ["value"]=600 + }, + [20001]={ + ["type"]=2, + ["recharge_id"]=12, + ["sort"]=2000100, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=30000, + ["unit"]=0 + } + } + }, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_09", + ["bg"]="recharge_bg_16", + ["value"]=2000 + }, + [30001]={ + ["type"]=3, + ["recharge_id"]=5, + ["sort"]=3000100, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=7500, + ["unit"]=0 + } + } + }, + ["limit"]=1, + ["effect"]="ui_mall_limit_gift_10", + ["bg"]="recharge_bg_17", + ["value"]=2000 + }, + [40001]={ + ["type"]=4, + ["recharge_id"]=10, + ["sort"]=4000100, + ["daily_reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=5000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=9, + ["count"]={ + ["value"]=30, + ["unit"]=0 + } + } + }, + ["effect_continued_time"]=30, + ["limit"]=9999, + ["effect"]="ui_mall_limit_gift_08", + ["bg"]="recharge_bg_8", + ["value"]=1500 + }, + [60001]={ + ["type"]=7, + ["recharge_id"]=5, + ["limit"]=1 + }, + [60002]={ + ["type"]=7, + ["recharge_id"]=11, + ["limit"]=1 + }, + [70001]={ + ["type"]=8, + ["recharge_id"]=12, + ["start_time"]="2023-03-15 00:00:00", + ["end_time"]="2023-04-14 00:00:00", + ["limit"]=1 + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/mall_act.lua.meta b/lua/app/config/mall_act.lua.meta new file mode 100644 index 00000000..de5c8afb --- /dev/null +++ b/lua/app/config/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f131211d0b4996a449c688f170c1b19a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mall_daily.lua b/lua/app/config/mall_daily.lua new file mode 100644 index 00000000..64f9e94e --- /dev/null +++ b/lua/app/config/mall_daily.lua @@ -0,0 +1,349 @@ +local mall_daily = { + [1001]={ + ["type"]=1, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + ["limit"]=1, + ["sort"]=100 + }, + [1002]={ + ["type"]=1, + ["recharge_id"]=2, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=3, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=3, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=6, + ["count"]={ + ["value"]=3, + ["unit"]=0 + } + } + }, + ["limit"]=2, + ["sort"]=200, + ["value"]=300 + }, + [1003]={ + ["type"]=1, + ["recharge_id"]=3, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=4500, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=21, + ["count"]={ + ["value"]=3, + ["unit"]=0 + } + } + }, + ["limit"]=2, + ["sort"]=300, + ["value"]=300 + }, + [1004]={ + ["type"]=1, + ["recharge_id"]=5, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=7500, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=16, + ["count"]={ + ["value"]=5, + ["unit"]=0 + } + } + }, + ["limit"]=2, + ["sort"]=400, + ["value"]=300 + }, + [1005]={ + ["type"]=1, + ["recharge_id"]=10, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=15000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=9, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=10, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=11, + ["count"]={ + ["value"]=10, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=5000, + ["unit"]=0 + } + } + }, + ["limit"]=2, + ["sort"]=500, + ["value"]=300 + }, + [2001]={ + ["type"]=2, + ["recharge_id"]=5, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=9000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=7, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=7, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=6, + ["count"]={ + ["value"]=7, + ["unit"]=0 + } + } + }, + ["limit"]=2, + ["sort"]=100100, + ["value"]=400 + }, + [2002]={ + ["type"]=2, + ["recharge_id"]=10, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=22, + ["count"]={ + ["value"]=3, + ["unit"]=0 + } + } + }, + ["limit"]=2, + ["sort"]=100200, + ["value"]=400 + }, + [2003]={ + ["type"]=2, + ["recharge_id"]=11, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=30000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=16, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + } + }, + ["limit"]=2, + ["sort"]=100300, + ["value"]=400 + }, + [2004]={ + ["type"]=2, + ["recharge_id"]=12, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=40000, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=9, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=10, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=11, + ["count"]={ + ["value"]=20, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=15000, + ["unit"]=0 + } + } + }, + ["limit"]=2, + ["sort"]=100400, + ["value"]=400 + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/mall_daily.lua.meta b/lua/app/config/mall_daily.lua.meta new file mode 100644 index 00000000..86a53b3c --- /dev/null +++ b/lua/app/config/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8eeae65399037a242b3437855c5f7b2c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mall_treasure.lua b/lua/app/config/mall_treasure.lua new file mode 100644 index 00000000..77b41ec7 --- /dev/null +++ b/lua/app/config/mall_treasure.lua @@ -0,0 +1,96 @@ +local mall_treasure = { + [1]={ + ["recharge_id"]=1, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1500, + ["unit"]=0 + } + } + }, + ["bg"]="recharge_diamond_1", + ["limit"]=1 + }, + [2]={ + ["recharge_id"]=5, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=7500, + ["unit"]=0 + } + } + }, + ["bg"]="recharge_diamond_2", + ["limit"]=1 + }, + [3]={ + ["recharge_id"]=10, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=15000, + ["unit"]=0 + } + } + }, + ["bg"]="recharge_diamond_3", + ["limit"]=1 + }, + [4]={ + ["recharge_id"]=12, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=30000, + ["unit"]=0 + } + } + }, + ["bg"]="recharge_diamond_4", + ["limit"]=1 + }, + [5]={ + ["recharge_id"]=15, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=75000, + ["unit"]=0 + } + } + }, + ["bg"]="recharge_diamond_5", + ["limit"]=1 + }, + [6]={ + ["recharge_id"]=17, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=150000, + ["unit"]=0 + } + } + }, + ["bg"]="recharge_diamond_6", + ["limit"]=1 + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/mall_treasure.lua.meta b/lua/app/config/mall_treasure.lua.meta new file mode 100644 index 00000000..925f132f --- /dev/null +++ b/lua/app/config/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4fed9ae52ff8728488929d1b10939996 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mastery.lua b/lua/app/config/mastery.lua new file mode 100644 index 00000000..f3cbf6ad --- /dev/null +++ b/lua/app/config/mastery.lua @@ -0,0 +1,7208 @@ +local mastery = { + [1]={ + ["icon"]="hero_mastery_dec_9", + ["level"]=1, + ["next_mastery"]={ + 2, + 3, + 4 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 2 + }, + ["skill"]={ + 0, + 600011 + } + }, + [2]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=2, + ["before_mastery"]={ + 1 + }, + ["next_mastery"]={ + 5 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2, + 2 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [3]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=2, + ["before_mastery"]={ + 1 + }, + ["next_mastery"]={ + 6 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 4, + 4, + 4, + 4, + 4 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + } + }, + [4]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=2, + ["before_mastery"]={ + 1 + }, + ["next_mastery"]={ + 6 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 4, + 4, + 4, + 4, + 4 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + } + }, + [5]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=3, + ["before_mastery"]={ + 2 + }, + ["next_mastery"]={ + 7 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 6, + 6 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [6]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=3, + ["before_mastery"]={ + 3, + 4 + }, + ["next_mastery"]={ + 8, + 9 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 12, + 12, + 12, + 12, + 12 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [7]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=4, + ["before_mastery"]={ + 5 + }, + ["next_mastery"]={ + 10 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 10, + 10, + 10, + 10, + 10, + 10, + 10, + 10, + 10, + 10 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [8]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=4, + ["before_mastery"]={ + 6 + }, + ["next_mastery"]={ + 10 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 20, + 20, + 20, + 20, + 20 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=12000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + } + }, + [9]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=4, + ["before_mastery"]={ + 6 + }, + ["next_mastery"]={ + 10 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 20, + 20, + 20, + 20, + 20 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=12000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + } + }, + [10]={ + ["icon"]="hero_mastery_dec_10", + ["level"]=5, + ["before_mastery"]={ + 7, + 8, + 9 + }, + ["next_mastery"]={ + 11, + 12 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 200 + }, + ["skill"]={ + 0, + 600021 + } + }, + [11]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=6, + ["before_mastery"]={ + 10 + }, + ["next_mastery"]={ + 13 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 40, + 40, + 40, + 40, + 40, + 40, + 40, + 40, + 40, + 40 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [12]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=6, + ["before_mastery"]={ + 10 + }, + ["next_mastery"]={ + 14, + 15 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 80, + 80, + 80, + 80, + 80 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [13]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=7, + ["before_mastery"]={ + 11 + }, + ["next_mastery"]={ + 16 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 60, + 60, + 60, + 60, + 60, + 60, + 60, + 60, + 60, + 60 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + } + }, + [14]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=7, + ["before_mastery"]={ + 12 + }, + ["next_mastery"]={ + 17 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 120, + 120, + 120, + 120, + 120 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=24000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=40000, + ["unit"]=0 + } + } + } + }, + [15]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=7, + ["before_mastery"]={ + 12 + }, + ["next_mastery"]={ + 17 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 120, + 120, + 120, + 120, + 120 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=24000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=40000, + ["unit"]=0 + } + } + } + }, + [16]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=8, + ["before_mastery"]={ + 13 + }, + ["next_mastery"]={ + 18 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 80, + 80, + 80, + 80, + 80, + 80, + 80, + 80, + 80, + 80 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [17]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=8, + ["before_mastery"]={ + 14, + 15 + }, + ["next_mastery"]={ + 19, + 20 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 160, + 160, + 160, + 160, + 160 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [18]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=9, + ["before_mastery"]={ + 16 + }, + ["next_mastery"]={ + 21 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100, + 100 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + } + }, + [19]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=9, + ["before_mastery"]={ + 17 + }, + ["next_mastery"]={ + 21 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 200, + 200, + 200, + 200, + 200 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=40000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=80000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + } + }, + [20]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=9, + ["before_mastery"]={ + 17 + }, + ["next_mastery"]={ + 21 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 200, + 200, + 200, + 200, + 200 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=40000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=80000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + } + }, + [21]={ + ["icon"]="hero_mastery_dec_8", + ["level"]=10, + ["before_mastery"]={ + 18, + 19, + 20 + }, + ["next_mastery"]={ + 22, + 23 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 500 + }, + ["skill"]={ + 0, + 600031 + } + }, + [22]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=11, + ["before_mastery"]={ + 21 + }, + ["next_mastery"]={ + 24 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120, + 120 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [23]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=11, + ["before_mastery"]={ + 21 + }, + ["next_mastery"]={ + 25, + 26 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 240, + 240, + 240, + 240, + 240 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [24]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=12, + ["before_mastery"]={ + 22 + }, + ["next_mastery"]={ + 27 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 140, + 140, + 140, + 140, + 140, + 140, + 140, + 140, + 140, + 140 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2100, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2700, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + } + } + }, + [25]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=12, + ["before_mastery"]={ + 23 + }, + ["next_mastery"]={ + 28 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 280, + 280, + 280, + 280, + 280 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=40000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=80000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=120000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=160000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=200000, + ["unit"]=0 + } + } + } + }, + [26]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=12, + ["before_mastery"]={ + 23 + }, + ["next_mastery"]={ + 28 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 280, + 280, + 280, + 280, + 280 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=40000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=80000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=120000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=160000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=200000, + ["unit"]=0 + } + } + } + }, + [27]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=13, + ["before_mastery"]={ + 24 + }, + ["next_mastery"]={ + 29 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 160, + 160, + 160, + 160, + 160, + 160, + 160, + 160, + 160, + 160 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [28]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=13, + ["before_mastery"]={ + 25, + 26 + }, + ["next_mastery"]={ + 30, + 31 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 320, + 320, + 320, + 320, + 320 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [29]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=14, + ["before_mastery"]={ + 27 + }, + ["next_mastery"]={ + 32 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 180, + 180, + 180, + 180, + 180, + 180, + 180, + 180, + 180, + 180 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2100, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2700, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + } + } + }, + [30]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=14, + ["before_mastery"]={ + 28 + }, + ["next_mastery"]={ + 32 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 360, + 360, + 360, + 360, + 360 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=80000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=160000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=240000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=320000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=400000, + ["unit"]=0 + } + } + } + }, + [31]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=14, + ["before_mastery"]={ + 28 + }, + ["next_mastery"]={ + 32 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 360, + 360, + 360, + 360, + 360 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=80000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=160000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=240000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=320000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=400000, + ["unit"]=0 + } + } + } + }, + [32]={ + ["icon"]="hero_mastery_dec_11", + ["level"]=15, + ["before_mastery"]={ + 29, + 30, + 31 + }, + ["next_mastery"]={ + 33, + 34 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 1000 + }, + ["skill"]={ + 0, + 600041 + } + }, + [33]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=16, + ["before_mastery"]={ + 32 + }, + ["next_mastery"]={ + 35 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 200, + 200, + 200, + 200, + 200, + 200, + 200, + 200, + 200, + 200 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [34]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=16, + ["before_mastery"]={ + 32 + }, + ["next_mastery"]={ + 36, + 37 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 400, + 400, + 400, + 400, + 400 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [35]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=17, + ["before_mastery"]={ + 33 + }, + ["next_mastery"]={ + 38 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 220, + 220, + 220, + 220, + 220, + 220, + 220, + 220, + 220, + 220 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + } + }, + [36]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=17, + ["before_mastery"]={ + 34 + }, + ["next_mastery"]={ + 39 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 440, + 440, + 440, + 440, + 440 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1000000, + ["unit"]=0 + } + } + } + }, + [37]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=17, + ["before_mastery"]={ + 34 + }, + ["next_mastery"]={ + 39 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 440, + 440, + 440, + 440, + 440 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1000000, + ["unit"]=0 + } + } + } + }, + [38]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=18, + ["before_mastery"]={ + 35 + }, + ["next_mastery"]={ + 40 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 240, + 240, + 240, + 240, + 240, + 240, + 240, + 240, + 240, + 240 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [39]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=18, + ["before_mastery"]={ + 36, + 37 + }, + ["next_mastery"]={ + 41, + 42 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 480, + 480, + 480, + 480, + 480 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [40]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=19, + ["before_mastery"]={ + 38 + }, + ["next_mastery"]={ + 43 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 260, + 260, + 260, + 260, + 260, + 260, + 260, + 260, + 260, + 260 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + } + }, + [41]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=19, + ["before_mastery"]={ + 39 + }, + ["next_mastery"]={ + 43 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 520, + 520, + 520, + 520, + 520 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2000000, + ["unit"]=0 + } + } + } + }, + [42]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=19, + ["before_mastery"]={ + 39 + }, + ["next_mastery"]={ + 43 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 520, + 520, + 520, + 520, + 520 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2000000, + ["unit"]=0 + } + } + } + }, + [43]={ + ["icon"]="hero_mastery_dec_3", + ["level"]=20, + ["before_mastery"]={ + 40, + 41, + 42 + }, + ["next_mastery"]={ + 44, + 45 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 1500 + }, + ["skill"]={ + 0, + 600051 + } + }, + [44]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=21, + ["before_mastery"]={ + 43 + }, + ["next_mastery"]={ + 46 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 280, + 280, + 280, + 280, + 280, + 280, + 280, + 280, + 280, + 280 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [45]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=21, + ["before_mastery"]={ + 43 + }, + ["next_mastery"]={ + 47, + 48 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 560, + 560, + 560, + 560, + 560 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [46]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=22, + ["before_mastery"]={ + 44 + }, + ["next_mastery"]={ + 49 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 300, + 300, + 300, + 300, + 300, + 300, + 300, + 300, + 300, + 300 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5000, + ["unit"]=0 + } + } + } + }, + [47]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=22, + ["before_mastery"]={ + 45 + }, + ["next_mastery"]={ + 50 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 600, + 600, + 600, + 600, + 600 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=3000000, + ["unit"]=0 + } + } + } + }, + [48]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=22, + ["before_mastery"]={ + 45 + }, + ["next_mastery"]={ + 50 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 600, + 600, + 600, + 600, + 600 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=3000000, + ["unit"]=0 + } + } + } + }, + [49]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=23, + ["before_mastery"]={ + 46 + }, + ["next_mastery"]={ + 51 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 320, + 320, + 320, + 320, + 320, + 320, + 320, + 320, + 320, + 320 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [50]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=23, + ["before_mastery"]={ + 47, + 48 + }, + ["next_mastery"]={ + 52, + 53 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 640, + 640, + 640, + 640, + 640 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [51]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=24, + ["before_mastery"]={ + 49 + }, + ["next_mastery"]={ + 54 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 340, + 340, + 340, + 340, + 340, + 340, + 340, + 340, + 340, + 340 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5000, + ["unit"]=0 + } + } + } + }, + [52]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=24, + ["before_mastery"]={ + 50 + }, + ["next_mastery"]={ + 54 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 680, + 680, + 680, + 680, + 680 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=3200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4000000, + ["unit"]=0 + } + } + } + }, + [53]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=24, + ["before_mastery"]={ + 50 + }, + ["next_mastery"]={ + 54 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 680, + 680, + 680, + 680, + 680 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=3200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4000000, + ["unit"]=0 + } + } + } + }, + [54]={ + ["icon"]="hero_mastery_dec_9", + ["level"]=25, + ["before_mastery"]={ + 51, + 52, + 53 + }, + ["next_mastery"]={ + 55, + 56 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 2000 + }, + ["skill"]={ + 600011, + 600061 + } + }, + [55]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=26, + ["before_mastery"]={ + 54 + }, + ["next_mastery"]={ + 57 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 380, + 380, + 380, + 380, + 380, + 380, + 380, + 380, + 380, + 380 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [56]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=26, + ["before_mastery"]={ + 54 + }, + ["next_mastery"]={ + 58, + 59 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 760, + 760, + 760, + 760, + 760 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [57]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=27, + ["before_mastery"]={ + 55 + }, + ["next_mastery"]={ + 60 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 420, + 420, + 420, + 420, + 420, + 420, + 420, + 420, + 420, + 420 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + } + }, + [58]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=27, + ["before_mastery"]={ + 56 + }, + ["next_mastery"]={ + 61 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 840, + 840, + 840, + 840, + 840 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1000000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2000000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=3000000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4000000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=5000000, + ["unit"]=0 + } + } + } + }, + [59]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=27, + ["before_mastery"]={ + 56 + }, + ["next_mastery"]={ + 61 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 840, + 840, + 840, + 840, + 840 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1000000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2000000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=3000000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4000000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=5000000, + ["unit"]=0 + } + } + } + }, + [60]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=28, + ["before_mastery"]={ + 57 + }, + ["next_mastery"]={ + 62 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460, + 460 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [61]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=28, + ["before_mastery"]={ + 58, + 59 + }, + ["next_mastery"]={ + 63, + 64 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 920, + 920, + 920, + 920, + 920 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [62]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=29, + ["before_mastery"]={ + 60 + }, + ["next_mastery"]={ + 65 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 500, + 500, + 500, + 500, + 500, + 500, + 500, + 500, + 500, + 500 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + } + }, + [63]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=29, + ["before_mastery"]={ + 61 + }, + ["next_mastery"]={ + 65 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1000, + 1000, + 1000, + 1000, + 1000 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=3600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=6000000, + ["unit"]=0 + } + } + } + }, + [64]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=29, + ["before_mastery"]={ + 61 + }, + ["next_mastery"]={ + 65 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1000, + 1000, + 1000, + 1000, + 1000 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=3600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=6000000, + ["unit"]=0 + } + } + } + }, + [65]={ + ["icon"]="hero_mastery_dec_10", + ["level"]=30, + ["before_mastery"]={ + 62, + 63, + 64 + }, + ["next_mastery"]={ + 66, + 67 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 3000 + }, + ["skill"]={ + 600021, + 600071 + } + }, + [66]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=31, + ["before_mastery"]={ + 65 + }, + ["next_mastery"]={ + 68 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 580, + 580, + 580, + 580, + 580, + 580, + 580, + 580, + 580, + 580 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [67]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=31, + ["before_mastery"]={ + 65 + }, + ["next_mastery"]={ + 69, + 70 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1160, + 1160, + 1160, + 1160, + 1160 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [68]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=32, + ["before_mastery"]={ + 66 + }, + ["next_mastery"]={ + 71 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 660, + 660, + 660, + 660, + 660, + 660, + 660, + 660, + 660, + 660 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2100, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4900, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6300, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=7000, + ["unit"]=0 + } + } + } + }, + [69]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=32, + ["before_mastery"]={ + 67 + }, + ["next_mastery"]={ + 72 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1320, + 1320, + 1320, + 1320, + 1320 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=5600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=7000000, + ["unit"]=0 + } + } + } + }, + [70]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=32, + ["before_mastery"]={ + 67 + }, + ["next_mastery"]={ + 72 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1320, + 1320, + 1320, + 1320, + 1320 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=5600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=7000000, + ["unit"]=0 + } + } + } + }, + [71]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=33, + ["before_mastery"]={ + 68 + }, + ["next_mastery"]={ + 73 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 740, + 740, + 740, + 740, + 740, + 740, + 740, + 740, + 740, + 740 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [72]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=33, + ["before_mastery"]={ + 69, + 70 + }, + ["next_mastery"]={ + 74, + 75 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1480, + 1480, + 1480, + 1480, + 1480 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [73]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=34, + ["before_mastery"]={ + 71 + }, + ["next_mastery"]={ + 76 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 820, + 820, + 820, + 820, + 820, + 820, + 820, + 820, + 820, + 820 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2100, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4900, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6300, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=7000, + ["unit"]=0 + } + } + } + }, + [74]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=34, + ["before_mastery"]={ + 72 + }, + ["next_mastery"]={ + 76 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1640, + 1640, + 1640, + 1640, + 1640 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=3200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=6400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=8000000, + ["unit"]=0 + } + } + } + }, + [75]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=34, + ["before_mastery"]={ + 72 + }, + ["next_mastery"]={ + 76 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1640, + 1640, + 1640, + 1640, + 1640 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=3200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=6400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=8000000, + ["unit"]=0 + } + } + } + }, + [76]={ + ["icon"]="hero_mastery_dec_8", + ["level"]=35, + ["before_mastery"]={ + 73, + 74, + 75 + }, + ["next_mastery"]={ + 77, + 78 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 4000 + }, + ["skill"]={ + 600031, + 600081 + } + }, + [77]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=36, + ["before_mastery"]={ + 76 + }, + ["next_mastery"]={ + 79 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 980, + 980, + 980, + 980, + 980, + 980, + 980, + 980, + 980, + 980 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [78]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=36, + ["before_mastery"]={ + 76 + }, + ["next_mastery"]={ + 80, + 81 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 1960, + 1960, + 1960, + 1960, + 1960 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [79]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=37, + ["before_mastery"]={ + 77 + }, + ["next_mastery"]={ + 82 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 1140, + 1140, + 1140, + 1140, + 1140, + 1140, + 1140, + 1140, + 1140, + 1140 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=7200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + } + } + }, + [80]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=37, + ["before_mastery"]={ + 78 + }, + ["next_mastery"]={ + 83 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 2280, + 2280, + 2280, + 2280, + 2280 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=1800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=3600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=5400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=7200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=9000000, + ["unit"]=0 + } + } + } + }, + [81]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=37, + ["before_mastery"]={ + 78 + }, + ["next_mastery"]={ + 83 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 2280, + 2280, + 2280, + 2280, + 2280 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=1800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=3600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=5400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=7200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=9000000, + ["unit"]=0 + } + } + } + }, + [82]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=38, + ["before_mastery"]={ + 79 + }, + ["next_mastery"]={ + 84 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 1300, + 1300, + 1300, + 1300, + 1300, + 1300, + 1300, + 1300, + 1300, + 1300 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [83]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=38, + ["before_mastery"]={ + 80, + 81 + }, + ["next_mastery"]={ + 85, + 86 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 2600, + 2600, + 2600, + 2600, + 2600 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [84]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=39, + ["before_mastery"]={ + 82 + }, + ["next_mastery"]={ + 87 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 1460, + 1460, + 1460, + 1460, + 1460, + 1460, + 1460, + 1460, + 1460, + 1460 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=7200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + } + } + }, + [85]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=39, + ["before_mastery"]={ + 83 + }, + ["next_mastery"]={ + 87 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 2920, + 2920, + 2920, + 2920, + 2920 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2000000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4000000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=6000000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=8000000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=10000000, + ["unit"]=0 + } + } + } + }, + [86]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=39, + ["before_mastery"]={ + 83 + }, + ["next_mastery"]={ + 87 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 2920, + 2920, + 2920, + 2920, + 2920 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2000000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4000000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=6000000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=8000000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=10000000, + ["unit"]=0 + } + } + } + }, + [87]={ + ["icon"]="hero_mastery_dec_3", + ["level"]=40, + ["before_mastery"]={ + 84, + 85, + 86 + }, + ["next_mastery"]={ + 88, + 89 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 6000 + }, + ["skill"]={ + 600051, + 600091 + } + }, + [88]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=41, + ["before_mastery"]={ + 87 + }, + ["next_mastery"]={ + 90 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 1780, + 1780, + 1780, + 1780, + 1780, + 1780, + 1780, + 1780, + 1780, + 1780 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [89]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=41, + ["before_mastery"]={ + 87 + }, + ["next_mastery"]={ + 91, + 92 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 3560, + 3560, + 3560, + 3560, + 3560 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [90]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=42, + ["before_mastery"]={ + 88 + }, + ["next_mastery"]={ + 93 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 2100, + 2100, + 2100, + 2100, + 2100, + 2100, + 2100, + 2100, + 2100, + 2100 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2700, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6300, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=7200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=8100, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=9000, + ["unit"]=0 + } + } + } + }, + [91]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=42, + ["before_mastery"]={ + 89 + }, + ["next_mastery"]={ + 94 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 4200, + 4200, + 4200, + 4200, + 4200 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=6600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=8800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=11000000, + ["unit"]=0 + } + } + } + }, + [92]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=42, + ["before_mastery"]={ + 89 + }, + ["next_mastery"]={ + 94 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 4200, + 4200, + 4200, + 4200, + 4200 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=6600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=8800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=11000000, + ["unit"]=0 + } + } + } + }, + [93]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=43, + ["before_mastery"]={ + 90 + }, + ["next_mastery"]={ + 95 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 2420, + 2420, + 2420, + 2420, + 2420, + 2420, + 2420, + 2420, + 2420, + 2420 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [94]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=43, + ["before_mastery"]={ + 91, + 92 + }, + ["next_mastery"]={ + 96, + 97 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 4840, + 4840, + 4840, + 4840, + 4840 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [95]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=44, + ["before_mastery"]={ + 93 + }, + ["next_mastery"]={ + 98 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 2740, + 2740, + 2740, + 2740, + 2740, + 2740, + 2740, + 2740, + 2740, + 2740 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1800, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2700, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3600, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4500, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5400, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6300, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=7200, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=8100, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=9000, + ["unit"]=0 + } + } + } + }, + [96]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=44, + ["before_mastery"]={ + 94 + }, + ["next_mastery"]={ + 98 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 5480, + 5480, + 5480, + 5480, + 5480 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=4800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=7200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=9600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=12000000, + ["unit"]=0 + } + } + } + }, + [97]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=44, + ["before_mastery"]={ + 94 + }, + ["next_mastery"]={ + 98 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 5480, + 5480, + 5480, + 5480, + 5480 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=4800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=7200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=9600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=12000000, + ["unit"]=0 + } + } + } + }, + [98]={ + ["icon"]="hero_mastery_dec_9", + ["level"]=45, + ["before_mastery"]={ + 95, + 96, + 97 + }, + ["next_mastery"]={ + 99, + 100 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 10000 + }, + ["skill"]={ + 600061, + 600101 + } + }, + [99]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=46, + ["before_mastery"]={ + 98 + }, + ["next_mastery"]={ + 101 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 3380, + 3380, + 3380, + 3380, + 3380, + 3380, + 3380, + 3380, + 3380, + 3380 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [100]={ + ["icon"]="hero_mastery_dec_6", + ["level"]=46, + ["before_mastery"]={ + 98 + }, + ["next_mastery"]={ + 102, + 103 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 6760, + 6760, + 6760, + 6760, + 6760 + }, + ["grow"]={ + { + ["type"]="miss", + ["bignum"]={ + ["value"]=50, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=150, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="miss", + ["bignum"]={ + ["value"]=250, + ["unit"]=0 + } + } + } + }, + [101]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=47, + ["before_mastery"]={ + 99 + }, + ["next_mastery"]={ + 104 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 4660, + 4660, + 4660, + 4660, + 4660, + 4660, + 4660, + 4660, + 4660, + 4660 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=7000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=9000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + } + }, + [102]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=47, + ["before_mastery"]={ + 100 + }, + ["next_mastery"]={ + 105 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 9320, + 9320, + 9320, + 9320, + 9320 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=5200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=7800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=10400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=13000000, + ["unit"]=0 + } + } + } + }, + [103]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=47, + ["before_mastery"]={ + 100 + }, + ["next_mastery"]={ + 105 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 9320, + 9320, + 9320, + 9320, + 9320 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=5200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=7800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=10400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=13000000, + ["unit"]=0 + } + } + } + }, + [104]={ + ["icon"]="hero_mastery_dec_1", + ["level"]=48, + ["before_mastery"]={ + 101 + }, + ["next_mastery"]={ + 106 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 7220, + 7220, + 7220, + 7220, + 7220, + 7220, + 7220, + 7220, + 7220, + 7220 + }, + ["grow"]={ + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=100, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=500, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=700, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=900, + ["unit"]=0 + } + }, + { + ["type"]="idle_income", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [105]={ + ["icon"]="hero_mastery_dec_5", + ["level"]=48, + ["before_mastery"]={ + 102, + 103 + }, + ["next_mastery"]={ + 107, + 108 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 14440, + 14440, + 14440, + 14440, + 14440 + }, + ["grow"]={ + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=200, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=400, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=600, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=800, + ["unit"]=0 + } + }, + { + ["type"]="dmg_addition_normal", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + } + }, + [106]={ + ["icon"]="hero_mastery_dec_4", + ["level"]=49, + ["before_mastery"]={ + 104 + }, + ["next_mastery"]={ + 109 + }, + ["max_lv"]=10, + ["mastery_cost"]={ + 12340, + 12340, + 12340, + 12340, + 12340, + 12340, + 12340, + 12340, + 12340, + 12340 + }, + ["grow"]={ + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=5000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=7000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=9000, + ["unit"]=0 + } + }, + { + ["type"]="gold_gain", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + } + }, + [107]={ + ["icon"]="hero_mastery_dec_2", + ["level"]=49, + ["before_mastery"]={ + 105 + }, + ["next_mastery"]={ + 109 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 24680, + 24680, + 24680, + 24680, + 24680 + }, + ["grow"]={ + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=2800000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=5600000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=8400000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=11200000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_1", + ["bignum"]={ + ["value"]=14000000, + ["unit"]=0 + } + } + } + }, + [108]={ + ["icon"]="hero_mastery_dec_7", + ["level"]=49, + ["before_mastery"]={ + 105 + }, + ["next_mastery"]={ + 109 + }, + ["max_lv"]=5, + ["mastery_cost"]={ + 24680, + 24680, + 24680, + 24680, + 24680 + }, + ["grow"]={ + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=2800000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=5600000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=8400000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=11200000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_1", + ["bignum"]={ + ["value"]=14000000, + ["unit"]=0 + } + } + } + }, + [109]={ + ["icon"]="hero_mastery_dec_10", + ["level"]=50, + ["before_mastery"]={ + 106, + 107, + 108 + }, + ["max_lv"]=1, + ["mastery_cost"]={ + 20000 + }, + ["skill"]={ + 600071, + 600111 + } + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/mastery.lua.meta b/lua/app/config/mastery.lua.meta new file mode 100644 index 00000000..f6a4c66e --- /dev/null +++ b/lua/app/config/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e4ff66a3800442e4e822fa7ca21bb1da +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mine.lua b/lua/app/config/mine.lua new file mode 100644 index 00000000..b14cacbf --- /dev/null +++ b/lua/app/config/mine.lua @@ -0,0 +1,66670 @@ +local mine = { + [1]={ + ["distance"]=1, + ["mine_stage"]=70 + }, + [2]={ + ["distance"]=7, + ["mine_stage"]=71 + }, + [3]={ + ["distance"]=13, + ["mine_stage"]=13 + }, + [4]={ + ["distance"]=19, + ["mine_stage"]=10 + }, + [5]={ + ["distance"]=25, + ["mine_stage"]=4 + }, + [6]={ + ["distance"]=31, + ["mine_stage"]=8 + }, + [7]={ + ["distance"]=37, + ["mine_stage"]=24 + }, + [8]={ + ["distance"]=43, + ["mine_stage"]=59 + }, + [9]={ + ["distance"]=49, + ["mine_stage"]=30 + }, + [10]={ + ["distance"]=55, + ["mine_stage"]=36 + }, + [11]={ + ["distance"]=61, + ["mine_stage"]=48 + }, + [12]={ + ["distance"]=67, + ["mine_stage"]=54 + }, + [13]={ + ["distance"]=73, + ["mine_stage"]=56 + }, + [14]={ + ["distance"]=79, + ["mine_stage"]=13 + }, + [15]={ + ["distance"]=85, + ["mine_stage"]=8 + }, + [16]={ + ["distance"]=91, + ["mine_stage"]=11 + }, + [17]={ + ["distance"]=97, + ["mine_stage"]=7 + }, + [18]={ + ["distance"]=103, + ["mine_stage"]=19 + }, + [19]={ + ["distance"]=109, + ["mine_stage"]=50 + }, + [20]={ + ["distance"]=115, + ["mine_stage"]=32 + }, + [21]={ + ["distance"]=121, + ["mine_stage"]=15 + }, + [22]={ + ["distance"]=127, + ["mine_stage"]=4 + }, + [23]={ + ["distance"]=133, + ["mine_stage"]=50 + }, + [24]={ + ["distance"]=139, + ["mine_stage"]=12 + }, + [25]={ + ["distance"]=145, + ["mine_stage"]=18 + }, + [26]={ + ["distance"]=151, + ["mine_stage"]=61 + }, + [27]={ + ["distance"]=157, + ["mine_stage"]=9 + }, + [28]={ + ["distance"]=163, + ["mine_stage"]=41 + }, + [29]={ + ["distance"]=169, + ["mine_stage"]=26 + }, + [30]={ + ["distance"]=175, + ["mine_stage"]=47 + }, + [31]={ + ["distance"]=181, + ["mine_stage"]=28 + }, + [32]={ + ["distance"]=187, + ["mine_stage"]=59 + }, + [33]={ + ["distance"]=193, + ["mine_stage"]=33 + }, + [34]={ + ["distance"]=199, + ["mine_stage"]=27 + }, + [35]={ + ["distance"]=205, + ["mine_stage"]=53 + }, + [36]={ + ["distance"]=211, + ["mine_stage"]=16 + }, + [37]={ + ["distance"]=217, + ["mine_stage"]=16 + }, + [38]={ + ["distance"]=223, + ["mine_stage"]=23 + }, + [39]={ + ["distance"]=229, + ["mine_stage"]=38 + }, + [40]={ + ["distance"]=235, + ["mine_stage"]=20 + }, + [41]={ + ["distance"]=241, + ["mine_stage"]=42 + }, + [42]={ + ["distance"]=247, + ["mine_stage"]=16 + }, + [43]={ + ["distance"]=253, + ["mine_stage"]=55 + }, + [44]={ + ["distance"]=259, + ["mine_stage"]=52 + }, + [45]={ + ["distance"]=265, + ["mine_stage"]=33 + }, + [46]={ + ["distance"]=271, + ["mine_stage"]=41 + }, + [47]={ + ["distance"]=277, + ["mine_stage"]=44 + }, + [48]={ + ["distance"]=283, + ["mine_stage"]=14 + }, + [49]={ + ["distance"]=289, + ["mine_stage"]=35 + }, + [50]={ + ["distance"]=295, + ["mine_stage"]=34 + }, + [51]={ + ["distance"]=301, + ["mine_stage"]=62 + }, + [52]={ + ["distance"]=307, + ["mine_stage"]=57 + }, + [53]={ + ["distance"]=313, + ["mine_stage"]=59 + }, + [54]={ + ["distance"]=319, + ["mine_stage"]=56 + }, + [55]={ + ["distance"]=325, + ["mine_stage"]=17 + }, + [56]={ + ["distance"]=331, + ["mine_stage"]=42 + }, + [57]={ + ["distance"]=337, + ["mine_stage"]=52 + }, + [58]={ + ["distance"]=343, + ["mine_stage"]=10 + }, + [59]={ + ["distance"]=349, + ["mine_stage"]=13 + }, + [60]={ + ["distance"]=355, + ["mine_stage"]=10 + }, + [61]={ + ["distance"]=361, + ["mine_stage"]=36 + }, + [62]={ + ["distance"]=367, + ["mine_stage"]=11 + }, + [63]={ + ["distance"]=373, + ["mine_stage"]=46 + }, + [64]={ + ["distance"]=379, + ["mine_stage"]=16 + }, + [65]={ + ["distance"]=385, + ["mine_stage"]=42 + }, + [66]={ + ["distance"]=391, + ["mine_stage"]=7 + }, + [67]={ + ["distance"]=397, + ["mine_stage"]=53 + }, + [68]={ + ["distance"]=403, + ["mine_stage"]=57 + }, + [69]={ + ["distance"]=409, + ["mine_stage"]=59 + }, + [70]={ + ["distance"]=415, + ["mine_stage"]=2 + }, + [71]={ + ["distance"]=421, + ["mine_stage"]=44 + }, + [72]={ + ["distance"]=427, + ["mine_stage"]=15 + }, + [73]={ + ["distance"]=433, + ["mine_stage"]=7 + }, + [74]={ + ["distance"]=439, + ["mine_stage"]=43 + }, + [75]={ + ["distance"]=445, + ["mine_stage"]=49 + }, + [76]={ + ["distance"]=451, + ["mine_stage"]=63 + }, + [77]={ + ["distance"]=457, + ["mine_stage"]=53 + }, + [78]={ + ["distance"]=463, + ["mine_stage"]=31 + }, + [79]={ + ["distance"]=469, + ["mine_stage"]=58 + }, + [80]={ + ["distance"]=475, + ["mine_stage"]=17 + }, + [81]={ + ["distance"]=481, + ["mine_stage"]=38 + }, + [82]={ + ["distance"]=487, + ["mine_stage"]=55 + }, + [83]={ + ["distance"]=493, + ["mine_stage"]=54 + }, + [84]={ + ["distance"]=499, + ["mine_stage"]=58 + }, + [85]={ + ["distance"]=505, + ["mine_stage"]=43 + }, + [86]={ + ["distance"]=511, + ["mine_stage"]=40 + }, + [87]={ + ["distance"]=517, + ["mine_stage"]=21 + }, + [88]={ + ["distance"]=523, + ["mine_stage"]=6 + }, + [89]={ + ["distance"]=529, + ["mine_stage"]=17 + }, + [90]={ + ["distance"]=535, + ["mine_stage"]=19 + }, + [91]={ + ["distance"]=541, + ["mine_stage"]=41 + }, + [92]={ + ["distance"]=547, + ["mine_stage"]=59 + }, + [93]={ + ["distance"]=553, + ["mine_stage"]=32 + }, + [94]={ + ["distance"]=559, + ["mine_stage"]=31 + }, + [95]={ + ["distance"]=565, + ["mine_stage"]=55 + }, + [96]={ + ["distance"]=571, + ["mine_stage"]=13 + }, + [97]={ + ["distance"]=577, + ["mine_stage"]=1 + }, + [98]={ + ["distance"]=583, + ["mine_stage"]=27 + }, + [99]={ + ["distance"]=589, + ["mine_stage"]=10 + }, + [100]={ + ["distance"]=595, + ["mine_stage"]=23 + }, + [101]={ + ["distance"]=601, + ["mine_stage"]=64 + }, + [102]={ + ["distance"]=607, + ["mine_stage"]=18 + }, + [103]={ + ["distance"]=613, + ["mine_stage"]=42 + }, + [104]={ + ["distance"]=619, + ["mine_stage"]=37 + }, + [105]={ + ["distance"]=625, + ["mine_stage"]=25 + }, + [106]={ + ["distance"]=631, + ["mine_stage"]=15 + }, + [107]={ + ["distance"]=637, + ["mine_stage"]=7 + }, + [108]={ + ["distance"]=643, + ["mine_stage"]=18 + }, + [109]={ + ["distance"]=649, + ["mine_stage"]=25 + }, + [110]={ + ["distance"]=655, + ["mine_stage"]=51 + }, + [111]={ + ["distance"]=661, + ["mine_stage"]=16 + }, + [112]={ + ["distance"]=667, + ["mine_stage"]=4 + }, + [113]={ + ["distance"]=673, + ["mine_stage"]=42 + }, + [114]={ + ["distance"]=679, + ["mine_stage"]=17 + }, + [115]={ + ["distance"]=685, + ["mine_stage"]=46 + }, + [116]={ + ["distance"]=691, + ["mine_stage"]=7 + }, + [117]={ + ["distance"]=697, + ["mine_stage"]=38 + }, + [118]={ + ["distance"]=703, + ["mine_stage"]=60 + }, + [119]={ + ["distance"]=709, + ["mine_stage"]=50 + }, + [120]={ + ["distance"]=715, + ["mine_stage"]=32 + }, + [121]={ + ["distance"]=721, + ["mine_stage"]=18 + }, + [122]={ + ["distance"]=727, + ["mine_stage"]=59 + }, + [123]={ + ["distance"]=733, + ["mine_stage"]=38 + }, + [124]={ + ["distance"]=739, + ["mine_stage"]=1 + }, + [125]={ + ["distance"]=745, + ["mine_stage"]=42 + }, + [126]={ + ["distance"]=751, + ["mine_stage"]=18 + }, + [127]={ + ["distance"]=757, + ["mine_stage"]=44 + }, + [128]={ + ["distance"]=763, + ["mine_stage"]=15 + }, + [129]={ + ["distance"]=769, + ["mine_stage"]=59 + }, + [130]={ + ["distance"]=775, + ["mine_stage"]=1 + }, + [131]={ + ["distance"]=781, + ["mine_stage"]=25 + }, + [132]={ + ["distance"]=787, + ["mine_stage"]=16 + }, + [133]={ + ["distance"]=793, + ["mine_stage"]=15 + }, + [134]={ + ["distance"]=799, + ["mine_stage"]=20 + }, + [135]={ + ["distance"]=805, + ["mine_stage"]=25 + }, + [136]={ + ["distance"]=811, + ["mine_stage"]=12 + }, + [137]={ + ["distance"]=817, + ["mine_stage"]=31 + }, + [138]={ + ["distance"]=823, + ["mine_stage"]=22 + }, + [139]={ + ["distance"]=829, + ["mine_stage"]=17 + }, + [140]={ + ["distance"]=835, + ["mine_stage"]=7 + }, + [141]={ + ["distance"]=841, + ["mine_stage"]=12 + }, + [142]={ + ["distance"]=847, + ["mine_stage"]=57 + }, + [143]={ + ["distance"]=853, + ["mine_stage"]=26 + }, + [144]={ + ["distance"]=859, + ["mine_stage"]=49 + }, + [145]={ + ["distance"]=865, + ["mine_stage"]=45 + }, + [146]={ + ["distance"]=871, + ["mine_stage"]=51 + }, + [147]={ + ["distance"]=877, + ["mine_stage"]=42 + }, + [148]={ + ["distance"]=883, + ["mine_stage"]=46 + }, + [149]={ + ["distance"]=889, + ["mine_stage"]=55 + }, + [150]={ + ["distance"]=895, + ["mine_stage"]=29 + }, + [151]={ + ["distance"]=901, + ["mine_stage"]=65 + }, + [152]={ + ["distance"]=907, + ["mine_stage"]=52 + }, + [153]={ + ["distance"]=913, + ["mine_stage"]=40 + }, + [154]={ + ["distance"]=919, + ["mine_stage"]=10 + }, + [155]={ + ["distance"]=925, + ["mine_stage"]=45 + }, + [156]={ + ["distance"]=931, + ["mine_stage"]=55 + }, + [157]={ + ["distance"]=937, + ["mine_stage"]=47 + }, + [158]={ + ["distance"]=943, + ["mine_stage"]=40 + }, + [159]={ + ["distance"]=949, + ["mine_stage"]=11 + }, + [160]={ + ["distance"]=955, + ["mine_stage"]=1 + }, + [161]={ + ["distance"]=961, + ["mine_stage"]=39 + }, + [162]={ + ["distance"]=967, + ["mine_stage"]=60 + }, + [163]={ + ["distance"]=973, + ["mine_stage"]=14 + }, + [164]={ + ["distance"]=979, + ["mine_stage"]=13 + }, + [165]={ + ["distance"]=985, + ["mine_stage"]=7 + }, + [166]={ + ["distance"]=991, + ["mine_stage"]=33 + }, + [167]={ + ["distance"]=997, + ["mine_stage"]=24 + }, + [168]={ + ["distance"]=1003, + ["mine_stage"]=16 + }, + [169]={ + ["distance"]=1009, + ["mine_stage"]=26 + }, + [170]={ + ["distance"]=1015, + ["mine_stage"]=36 + }, + [171]={ + ["distance"]=1021, + ["mine_stage"]=32 + }, + [172]={ + ["distance"]=1027, + ["mine_stage"]=30 + }, + [173]={ + ["distance"]=1033, + ["mine_stage"]=26 + }, + [174]={ + ["distance"]=1039, + ["mine_stage"]=49 + }, + [175]={ + ["distance"]=1045, + ["mine_stage"]=30 + }, + [176]={ + ["distance"]=1051, + ["mine_stage"]=4 + }, + [177]={ + ["distance"]=1057, + ["mine_stage"]=30 + }, + [178]={ + ["distance"]=1063, + ["mine_stage"]=6 + }, + [179]={ + ["distance"]=1069, + ["mine_stage"]=58 + }, + [180]={ + ["distance"]=1075, + ["mine_stage"]=4 + }, + [181]={ + ["distance"]=1081, + ["mine_stage"]=14 + }, + [182]={ + ["distance"]=1087, + ["mine_stage"]=43 + }, + [183]={ + ["distance"]=1093, + ["mine_stage"]=26 + }, + [184]={ + ["distance"]=1099, + ["mine_stage"]=53 + }, + [185]={ + ["distance"]=1105, + ["mine_stage"]=12 + }, + [186]={ + ["distance"]=1111, + ["mine_stage"]=24 + }, + [187]={ + ["distance"]=1117, + ["mine_stage"]=59 + }, + [188]={ + ["distance"]=1123, + ["mine_stage"]=11 + }, + [189]={ + ["distance"]=1129, + ["mine_stage"]=42 + }, + [190]={ + ["distance"]=1135, + ["mine_stage"]=52 + }, + [191]={ + ["distance"]=1141, + ["mine_stage"]=19 + }, + [192]={ + ["distance"]=1147, + ["mine_stage"]=13 + }, + [193]={ + ["distance"]=1153, + ["mine_stage"]=8 + }, + [194]={ + ["distance"]=1159, + ["mine_stage"]=27 + }, + [195]={ + ["distance"]=1165, + ["mine_stage"]=14 + }, + [196]={ + ["distance"]=1171, + ["mine_stage"]=10 + }, + [197]={ + ["distance"]=1177, + ["mine_stage"]=33 + }, + [198]={ + ["distance"]=1183, + ["mine_stage"]=53 + }, + [199]={ + ["distance"]=1189, + ["mine_stage"]=51 + }, + [200]={ + ["distance"]=1195, + ["mine_stage"]=58 + }, + [201]={ + ["distance"]=1201, + ["mine_stage"]=66 + }, + [202]={ + ["distance"]=1207, + ["mine_stage"]=22 + }, + [203]={ + ["distance"]=1213, + ["mine_stage"]=53 + }, + [204]={ + ["distance"]=1219, + ["mine_stage"]=42 + }, + [205]={ + ["distance"]=1225, + ["mine_stage"]=57 + }, + [206]={ + ["distance"]=1231, + ["mine_stage"]=27 + }, + [207]={ + ["distance"]=1237, + ["mine_stage"]=19 + }, + [208]={ + ["distance"]=1243, + ["mine_stage"]=36 + }, + [209]={ + ["distance"]=1249, + ["mine_stage"]=13 + }, + [210]={ + ["distance"]=1255, + ["mine_stage"]=24 + }, + [211]={ + ["distance"]=1261, + ["mine_stage"]=26 + }, + [212]={ + ["distance"]=1267, + ["mine_stage"]=35 + }, + [213]={ + ["distance"]=1273, + ["mine_stage"]=24 + }, + [214]={ + ["distance"]=1279, + ["mine_stage"]=14 + }, + [215]={ + ["distance"]=1285, + ["mine_stage"]=7 + }, + [216]={ + ["distance"]=1291, + ["mine_stage"]=13 + }, + [217]={ + ["distance"]=1297, + ["mine_stage"]=43 + }, + [218]={ + ["distance"]=1303, + ["mine_stage"]=32 + }, + [219]={ + ["distance"]=1309, + ["mine_stage"]=57 + }, + [220]={ + ["distance"]=1315, + ["mine_stage"]=48 + }, + [221]={ + ["distance"]=1321, + ["mine_stage"]=6 + }, + [222]={ + ["distance"]=1327, + ["mine_stage"]=4 + }, + [223]={ + ["distance"]=1333, + ["mine_stage"]=52 + }, + [224]={ + ["distance"]=1339, + ["mine_stage"]=46 + }, + [225]={ + ["distance"]=1345, + ["mine_stage"]=5 + }, + [226]={ + ["distance"]=1351, + ["mine_stage"]=11 + }, + [227]={ + ["distance"]=1357, + ["mine_stage"]=32 + }, + [228]={ + ["distance"]=1363, + ["mine_stage"]=23 + }, + [229]={ + ["distance"]=1369, + ["mine_stage"]=42 + }, + [230]={ + ["distance"]=1375, + ["mine_stage"]=58 + }, + [231]={ + ["distance"]=1381, + ["mine_stage"]=14 + }, + [232]={ + ["distance"]=1387, + ["mine_stage"]=47 + }, + [233]={ + ["distance"]=1393, + ["mine_stage"]=25 + }, + [234]={ + ["distance"]=1399, + ["mine_stage"]=12 + }, + [235]={ + ["distance"]=1405, + ["mine_stage"]=41 + }, + [236]={ + ["distance"]=1411, + ["mine_stage"]=19 + }, + [237]={ + ["distance"]=1417, + ["mine_stage"]=26 + }, + [238]={ + ["distance"]=1423, + ["mine_stage"]=13 + }, + [239]={ + ["distance"]=1429, + ["mine_stage"]=46 + }, + [240]={ + ["distance"]=1435, + ["mine_stage"]=28 + }, + [241]={ + ["distance"]=1441, + ["mine_stage"]=8 + }, + [242]={ + ["distance"]=1447, + ["mine_stage"]=28 + }, + [243]={ + ["distance"]=1453, + ["mine_stage"]=43 + }, + [244]={ + ["distance"]=1459, + ["mine_stage"]=48 + }, + [245]={ + ["distance"]=1465, + ["mine_stage"]=26 + }, + [246]={ + ["distance"]=1471, + ["mine_stage"]=52 + }, + [247]={ + ["distance"]=1477, + ["mine_stage"]=57 + }, + [248]={ + ["distance"]=1483, + ["mine_stage"]=2 + }, + [249]={ + ["distance"]=1489, + ["mine_stage"]=28 + }, + [250]={ + ["distance"]=1495, + ["mine_stage"]=60 + }, + [251]={ + ["distance"]=1501, + ["mine_stage"]=64 + }, + [252]={ + ["distance"]=1507, + ["mine_stage"]=33 + }, + [253]={ + ["distance"]=1513, + ["mine_stage"]=10 + }, + [254]={ + ["distance"]=1519, + ["mine_stage"]=41 + }, + [255]={ + ["distance"]=1525, + ["mine_stage"]=23 + }, + [256]={ + ["distance"]=1531, + ["mine_stage"]=33 + }, + [257]={ + ["distance"]=1537, + ["mine_stage"]=44 + }, + [258]={ + ["distance"]=1543, + ["mine_stage"]=35 + }, + [259]={ + ["distance"]=1549, + ["mine_stage"]=39 + }, + [260]={ + ["distance"]=1555, + ["mine_stage"]=58 + }, + [261]={ + ["distance"]=1561, + ["mine_stage"]=14 + }, + [262]={ + ["distance"]=1567, + ["mine_stage"]=11 + }, + [263]={ + ["distance"]=1573, + ["mine_stage"]=57 + }, + [264]={ + ["distance"]=1579, + ["mine_stage"]=3 + }, + [265]={ + ["distance"]=1585, + ["mine_stage"]=26 + }, + [266]={ + ["distance"]=1591, + ["mine_stage"]=30 + }, + [267]={ + ["distance"]=1597, + ["mine_stage"]=41 + }, + [268]={ + ["distance"]=1603, + ["mine_stage"]=28 + }, + [269]={ + ["distance"]=1609, + ["mine_stage"]=49 + }, + [270]={ + ["distance"]=1615, + ["mine_stage"]=24 + }, + [271]={ + ["distance"]=1621, + ["mine_stage"]=59 + }, + [272]={ + ["distance"]=1627, + ["mine_stage"]=32 + }, + [273]={ + ["distance"]=1633, + ["mine_stage"]=39 + }, + [274]={ + ["distance"]=1639, + ["mine_stage"]=38 + }, + [275]={ + ["distance"]=1645, + ["mine_stage"]=58 + }, + [276]={ + ["distance"]=1651, + ["mine_stage"]=37 + }, + [277]={ + ["distance"]=1657, + ["mine_stage"]=39 + }, + [278]={ + ["distance"]=1663, + ["mine_stage"]=50 + }, + [279]={ + ["distance"]=1669, + ["mine_stage"]=59 + }, + [280]={ + ["distance"]=1675, + ["mine_stage"]=52 + }, + [281]={ + ["distance"]=1681, + ["mine_stage"]=1 + }, + [282]={ + ["distance"]=1687, + ["mine_stage"]=2 + }, + [283]={ + ["distance"]=1693, + ["mine_stage"]=30 + }, + [284]={ + ["distance"]=1699, + ["mine_stage"]=41 + }, + [285]={ + ["distance"]=1705, + ["mine_stage"]=53 + }, + [286]={ + ["distance"]=1711, + ["mine_stage"]=25 + }, + [287]={ + ["distance"]=1717, + ["mine_stage"]=1 + }, + [288]={ + ["distance"]=1723, + ["mine_stage"]=11 + }, + [289]={ + ["distance"]=1729, + ["mine_stage"]=44 + }, + [290]={ + ["distance"]=1735, + ["mine_stage"]=37 + }, + [291]={ + ["distance"]=1741, + ["mine_stage"]=8 + }, + [292]={ + ["distance"]=1747, + ["mine_stage"]=44 + }, + [293]={ + ["distance"]=1753, + ["mine_stage"]=55 + }, + [294]={ + ["distance"]=1759, + ["mine_stage"]=11 + }, + [295]={ + ["distance"]=1765, + ["mine_stage"]=51 + }, + [296]={ + ["distance"]=1771, + ["mine_stage"]=29 + }, + [297]={ + ["distance"]=1777, + ["mine_stage"]=43 + }, + [298]={ + ["distance"]=1783, + ["mine_stage"]=46 + }, + [299]={ + ["distance"]=1789, + ["mine_stage"]=44 + }, + [300]={ + ["distance"]=1795, + ["mine_stage"]=8 + }, + [301]={ + ["distance"]=1801, + ["mine_stage"]=65 + }, + [302]={ + ["distance"]=1807, + ["mine_stage"]=58 + }, + [303]={ + ["distance"]=1813, + ["mine_stage"]=33 + }, + [304]={ + ["distance"]=1819, + ["mine_stage"]=2 + }, + [305]={ + ["distance"]=1825, + ["mine_stage"]=42 + }, + [306]={ + ["distance"]=1831, + ["mine_stage"]=13 + }, + [307]={ + ["distance"]=1837, + ["mine_stage"]=40 + }, + [308]={ + ["distance"]=1843, + ["mine_stage"]=36 + }, + [309]={ + ["distance"]=1849, + ["mine_stage"]=47 + }, + [310]={ + ["distance"]=1855, + ["mine_stage"]=54 + }, + [311]={ + ["distance"]=1861, + ["mine_stage"]=21 + }, + [312]={ + ["distance"]=1867, + ["mine_stage"]=1 + }, + [313]={ + ["distance"]=1873, + ["mine_stage"]=4 + }, + [314]={ + ["distance"]=1879, + ["mine_stage"]=52 + }, + [315]={ + ["distance"]=1885, + ["mine_stage"]=58 + }, + [316]={ + ["distance"]=1891, + ["mine_stage"]=32 + }, + [317]={ + ["distance"]=1897, + ["mine_stage"]=13 + }, + [318]={ + ["distance"]=1903, + ["mine_stage"]=26 + }, + [319]={ + ["distance"]=1909, + ["mine_stage"]=9 + }, + [320]={ + ["distance"]=1915, + ["mine_stage"]=7 + }, + [321]={ + ["distance"]=1921, + ["mine_stage"]=50 + }, + [322]={ + ["distance"]=1927, + ["mine_stage"]=53 + }, + [323]={ + ["distance"]=1933, + ["mine_stage"]=38 + }, + [324]={ + ["distance"]=1939, + ["mine_stage"]=6 + }, + [325]={ + ["distance"]=1945, + ["mine_stage"]=59 + }, + [326]={ + ["distance"]=1951, + ["mine_stage"]=51 + }, + [327]={ + ["distance"]=1957, + ["mine_stage"]=8 + }, + [328]={ + ["distance"]=1963, + ["mine_stage"]=46 + }, + [329]={ + ["distance"]=1969, + ["mine_stage"]=55 + }, + [330]={ + ["distance"]=1975, + ["mine_stage"]=23 + }, + [331]={ + ["distance"]=1981, + ["mine_stage"]=34 + }, + [332]={ + ["distance"]=1987, + ["mine_stage"]=58 + }, + [333]={ + ["distance"]=1993, + ["mine_stage"]=33 + }, + [334]={ + ["distance"]=1999, + ["mine_stage"]=49 + }, + [335]={ + ["distance"]=2005, + ["mine_stage"]=37 + }, + [336]={ + ["distance"]=2011, + ["mine_stage"]=7 + }, + [337]={ + ["distance"]=2017, + ["mine_stage"]=13 + }, + [338]={ + ["distance"]=2023, + ["mine_stage"]=3 + }, + [339]={ + ["distance"]=2029, + ["mine_stage"]=35 + }, + [340]={ + ["distance"]=2035, + ["mine_stage"]=33 + }, + [341]={ + ["distance"]=2041, + ["mine_stage"]=13 + }, + [342]={ + ["distance"]=2047, + ["mine_stage"]=23 + }, + [343]={ + ["distance"]=2053, + ["mine_stage"]=48 + }, + [344]={ + ["distance"]=2059, + ["mine_stage"]=56 + }, + [345]={ + ["distance"]=2065, + ["mine_stage"]=8 + }, + [346]={ + ["distance"]=2071, + ["mine_stage"]=16 + }, + [347]={ + ["distance"]=2077, + ["mine_stage"]=48 + }, + [348]={ + ["distance"]=2083, + ["mine_stage"]=33 + }, + [349]={ + ["distance"]=2089, + ["mine_stage"]=8 + }, + [350]={ + ["distance"]=2095, + ["mine_stage"]=17 + }, + [351]={ + ["distance"]=2101, + ["mine_stage"]=66 + }, + [352]={ + ["distance"]=2107, + ["mine_stage"]=58 + }, + [353]={ + ["distance"]=2113, + ["mine_stage"]=1 + }, + [354]={ + ["distance"]=2119, + ["mine_stage"]=44 + }, + [355]={ + ["distance"]=2125, + ["mine_stage"]=50 + }, + [356]={ + ["distance"]=2131, + ["mine_stage"]=24 + }, + [357]={ + ["distance"]=2137, + ["mine_stage"]=46 + }, + [358]={ + ["distance"]=2143, + ["mine_stage"]=42 + }, + [359]={ + ["distance"]=2149, + ["mine_stage"]=19 + }, + [360]={ + ["distance"]=2155, + ["mine_stage"]=7 + }, + [361]={ + ["distance"]=2161, + ["mine_stage"]=36 + }, + [362]={ + ["distance"]=2167, + ["mine_stage"]=34 + }, + [363]={ + ["distance"]=2173, + ["mine_stage"]=28 + }, + [364]={ + ["distance"]=2179, + ["mine_stage"]=43 + }, + [365]={ + ["distance"]=2185, + ["mine_stage"]=26 + }, + [366]={ + ["distance"]=2191, + ["mine_stage"]=38 + }, + [367]={ + ["distance"]=2197, + ["mine_stage"]=22 + }, + [368]={ + ["distance"]=2203, + ["mine_stage"]=6 + }, + [369]={ + ["distance"]=2209, + ["mine_stage"]=22 + }, + [370]={ + ["distance"]=2215, + ["mine_stage"]=12 + }, + [371]={ + ["distance"]=2221, + ["mine_stage"]=37 + }, + [372]={ + ["distance"]=2227, + ["mine_stage"]=14 + }, + [373]={ + ["distance"]=2233, + ["mine_stage"]=17 + }, + [374]={ + ["distance"]=2239, + ["mine_stage"]=44 + }, + [375]={ + ["distance"]=2245, + ["mine_stage"]=48 + }, + [376]={ + ["distance"]=2251, + ["mine_stage"]=8 + }, + [377]={ + ["distance"]=2257, + ["mine_stage"]=8 + }, + [378]={ + ["distance"]=2263, + ["mine_stage"]=28 + }, + [379]={ + ["distance"]=2269, + ["mine_stage"]=3 + }, + [380]={ + ["distance"]=2275, + ["mine_stage"]=13 + }, + [381]={ + ["distance"]=2281, + ["mine_stage"]=54 + }, + [382]={ + ["distance"]=2287, + ["mine_stage"]=41 + }, + [383]={ + ["distance"]=2293, + ["mine_stage"]=10 + }, + [384]={ + ["distance"]=2299, + ["mine_stage"]=21 + }, + [385]={ + ["distance"]=2305, + ["mine_stage"]=5 + }, + [386]={ + ["distance"]=2311, + ["mine_stage"]=55 + }, + [387]={ + ["distance"]=2317, + ["mine_stage"]=14 + }, + [388]={ + ["distance"]=2323, + ["mine_stage"]=34 + }, + [389]={ + ["distance"]=2329, + ["mine_stage"]=30 + }, + [390]={ + ["distance"]=2335, + ["mine_stage"]=53 + }, + [391]={ + ["distance"]=2341, + ["mine_stage"]=48 + }, + [392]={ + ["distance"]=2347, + ["mine_stage"]=10 + }, + [393]={ + ["distance"]=2353, + ["mine_stage"]=54 + }, + [394]={ + ["distance"]=2359, + ["mine_stage"]=53 + }, + [395]={ + ["distance"]=2365, + ["mine_stage"]=54 + }, + [396]={ + ["distance"]=2371, + ["mine_stage"]=36 + }, + [397]={ + ["distance"]=2377, + ["mine_stage"]=59 + }, + [398]={ + ["distance"]=2383, + ["mine_stage"]=12 + }, + [399]={ + ["distance"]=2389, + ["mine_stage"]=36 + }, + [400]={ + ["distance"]=2395, + ["mine_stage"]=47 + }, + [401]={ + ["distance"]=2401, + ["mine_stage"]=64 + }, + [402]={ + ["distance"]=2407, + ["mine_stage"]=52 + }, + [403]={ + ["distance"]=2413, + ["mine_stage"]=28 + }, + [404]={ + ["distance"]=2419, + ["mine_stage"]=54 + }, + [405]={ + ["distance"]=2425, + ["mine_stage"]=17 + }, + [406]={ + ["distance"]=2431, + ["mine_stage"]=39 + }, + [407]={ + ["distance"]=2437, + ["mine_stage"]=29 + }, + [408]={ + ["distance"]=2443, + ["mine_stage"]=57 + }, + [409]={ + ["distance"]=2449, + ["mine_stage"]=8 + }, + [410]={ + ["distance"]=2455, + ["mine_stage"]=30 + }, + [411]={ + ["distance"]=2461, + ["mine_stage"]=23 + }, + [412]={ + ["distance"]=2467, + ["mine_stage"]=20 + }, + [413]={ + ["distance"]=2473, + ["mine_stage"]=2 + }, + [414]={ + ["distance"]=2479, + ["mine_stage"]=23 + }, + [415]={ + ["distance"]=2485, + ["mine_stage"]=37 + }, + [416]={ + ["distance"]=2491, + ["mine_stage"]=42 + }, + [417]={ + ["distance"]=2497, + ["mine_stage"]=22 + }, + [418]={ + ["distance"]=2503, + ["mine_stage"]=39 + }, + [419]={ + ["distance"]=2509, + ["mine_stage"]=20 + }, + [420]={ + ["distance"]=2515, + ["mine_stage"]=48 + }, + [421]={ + ["distance"]=2521, + ["mine_stage"]=19 + }, + [422]={ + ["distance"]=2527, + ["mine_stage"]=37 + }, + [423]={ + ["distance"]=2533, + ["mine_stage"]=21 + }, + [424]={ + ["distance"]=2539, + ["mine_stage"]=27 + }, + [425]={ + ["distance"]=2545, + ["mine_stage"]=4 + }, + [426]={ + ["distance"]=2551, + ["mine_stage"]=43 + }, + [427]={ + ["distance"]=2557, + ["mine_stage"]=33 + }, + [428]={ + ["distance"]=2563, + ["mine_stage"]=17 + }, + [429]={ + ["distance"]=2569, + ["mine_stage"]=46 + }, + [430]={ + ["distance"]=2575, + ["mine_stage"]=55 + }, + [431]={ + ["distance"]=2581, + ["mine_stage"]=58 + }, + [432]={ + ["distance"]=2587, + ["mine_stage"]=38 + }, + [433]={ + ["distance"]=2593, + ["mine_stage"]=57 + }, + [434]={ + ["distance"]=2599, + ["mine_stage"]=5 + }, + [435]={ + ["distance"]=2605, + ["mine_stage"]=15 + }, + [436]={ + ["distance"]=2611, + ["mine_stage"]=36 + }, + [437]={ + ["distance"]=2617, + ["mine_stage"]=31 + }, + [438]={ + ["distance"]=2623, + ["mine_stage"]=10 + }, + [439]={ + ["distance"]=2629, + ["mine_stage"]=44 + }, + [440]={ + ["distance"]=2635, + ["mine_stage"]=59 + }, + [441]={ + ["distance"]=2641, + ["mine_stage"]=45 + }, + [442]={ + ["distance"]=2647, + ["mine_stage"]=56 + }, + [443]={ + ["distance"]=2653, + ["mine_stage"]=2 + }, + [444]={ + ["distance"]=2659, + ["mine_stage"]=28 + }, + [445]={ + ["distance"]=2665, + ["mine_stage"]=16 + }, + [446]={ + ["distance"]=2671, + ["mine_stage"]=48 + }, + [447]={ + ["distance"]=2677, + ["mine_stage"]=5 + }, + [448]={ + ["distance"]=2683, + ["mine_stage"]=42 + }, + [449]={ + ["distance"]=2689, + ["mine_stage"]=46 + }, + [450]={ + ["distance"]=2695, + ["mine_stage"]=43 + }, + [451]={ + ["distance"]=2701, + ["mine_stage"]=67 + }, + [452]={ + ["distance"]=2707, + ["mine_stage"]=47 + }, + [453]={ + ["distance"]=2713, + ["mine_stage"]=29 + }, + [454]={ + ["distance"]=2719, + ["mine_stage"]=42 + }, + [455]={ + ["distance"]=2725, + ["mine_stage"]=40 + }, + [456]={ + ["distance"]=2731, + ["mine_stage"]=10 + }, + [457]={ + ["distance"]=2737, + ["mine_stage"]=52 + }, + [458]={ + ["distance"]=2743, + ["mine_stage"]=51 + }, + [459]={ + ["distance"]=2749, + ["mine_stage"]=49 + }, + [460]={ + ["distance"]=2755, + ["mine_stage"]=31 + }, + [461]={ + ["distance"]=2761, + ["mine_stage"]=38 + }, + [462]={ + ["distance"]=2767, + ["mine_stage"]=54 + }, + [463]={ + ["distance"]=2773, + ["mine_stage"]=7 + }, + [464]={ + ["distance"]=2779, + ["mine_stage"]=27 + }, + [465]={ + ["distance"]=2785, + ["mine_stage"]=53 + }, + [466]={ + ["distance"]=2791, + ["mine_stage"]=45 + }, + [467]={ + ["distance"]=2797, + ["mine_stage"]=33 + }, + [468]={ + ["distance"]=2803, + ["mine_stage"]=42 + }, + [469]={ + ["distance"]=2809, + ["mine_stage"]=9 + }, + [470]={ + ["distance"]=2815, + ["mine_stage"]=42 + }, + [471]={ + ["distance"]=2821, + ["mine_stage"]=49 + }, + [472]={ + ["distance"]=2827, + ["mine_stage"]=49 + }, + [473]={ + ["distance"]=2833, + ["mine_stage"]=12 + }, + [474]={ + ["distance"]=2839, + ["mine_stage"]=34 + }, + [475]={ + ["distance"]=2845, + ["mine_stage"]=56 + }, + [476]={ + ["distance"]=2851, + ["mine_stage"]=4 + }, + [477]={ + ["distance"]=2857, + ["mine_stage"]=35 + }, + [478]={ + ["distance"]=2863, + ["mine_stage"]=50 + }, + [479]={ + ["distance"]=2869, + ["mine_stage"]=25 + }, + [480]={ + ["distance"]=2875, + ["mine_stage"]=12 + }, + [481]={ + ["distance"]=2881, + ["mine_stage"]=29 + }, + [482]={ + ["distance"]=2887, + ["mine_stage"]=16 + }, + [483]={ + ["distance"]=2893, + ["mine_stage"]=54 + }, + [484]={ + ["distance"]=2899, + ["mine_stage"]=28 + }, + [485]={ + ["distance"]=2905, + ["mine_stage"]=17 + }, + [486]={ + ["distance"]=2911, + ["mine_stage"]=42 + }, + [487]={ + ["distance"]=2917, + ["mine_stage"]=23 + }, + [488]={ + ["distance"]=2923, + ["mine_stage"]=29 + }, + [489]={ + ["distance"]=2929, + ["mine_stage"]=57 + }, + [490]={ + ["distance"]=2935, + ["mine_stage"]=30 + }, + [491]={ + ["distance"]=2941, + ["mine_stage"]=50 + }, + [492]={ + ["distance"]=2947, + ["mine_stage"]=2 + }, + [493]={ + ["distance"]=2953, + ["mine_stage"]=53 + }, + [494]={ + ["distance"]=2959, + ["mine_stage"]=1 + }, + [495]={ + ["distance"]=2965, + ["mine_stage"]=51 + }, + [496]={ + ["distance"]=2971, + ["mine_stage"]=35 + }, + [497]={ + ["distance"]=2977, + ["mine_stage"]=50 + }, + [498]={ + ["distance"]=2983, + ["mine_stage"]=3 + }, + [499]={ + ["distance"]=2989, + ["mine_stage"]=6 + }, + [500]={ + ["distance"]=2995, + ["mine_stage"]=4 + }, + [501]={ + ["distance"]=3001, + ["mine_stage"]=65 + }, + [502]={ + ["distance"]=3007, + ["mine_stage"]=52 + }, + [503]={ + ["distance"]=3013, + ["mine_stage"]=36 + }, + [504]={ + ["distance"]=3019, + ["mine_stage"]=49 + }, + [505]={ + ["distance"]=3025, + ["mine_stage"]=41 + }, + [506]={ + ["distance"]=3031, + ["mine_stage"]=12 + }, + [507]={ + ["distance"]=3037, + ["mine_stage"]=29 + }, + [508]={ + ["distance"]=3043, + ["mine_stage"]=13 + }, + [509]={ + ["distance"]=3049, + ["mine_stage"]=8 + }, + [510]={ + ["distance"]=3055, + ["mine_stage"]=57 + }, + [511]={ + ["distance"]=3061, + ["mine_stage"]=43 + }, + [512]={ + ["distance"]=3067, + ["mine_stage"]=1 + }, + [513]={ + ["distance"]=3073, + ["mine_stage"]=9 + }, + [514]={ + ["distance"]=3079, + ["mine_stage"]=53 + }, + [515]={ + ["distance"]=3085, + ["mine_stage"]=27 + }, + [516]={ + ["distance"]=3091, + ["mine_stage"]=25 + }, + [517]={ + ["distance"]=3097, + ["mine_stage"]=54 + }, + [518]={ + ["distance"]=3103, + ["mine_stage"]=60 + }, + [519]={ + ["distance"]=3109, + ["mine_stage"]=40 + }, + [520]={ + ["distance"]=3115, + ["mine_stage"]=53 + }, + [521]={ + ["distance"]=3121, + ["mine_stage"]=41 + }, + [522]={ + ["distance"]=3127, + ["mine_stage"]=25 + }, + [523]={ + ["distance"]=3133, + ["mine_stage"]=53 + }, + [524]={ + ["distance"]=3139, + ["mine_stage"]=56 + }, + [525]={ + ["distance"]=3145, + ["mine_stage"]=29 + }, + [526]={ + ["distance"]=3151, + ["mine_stage"]=53 + }, + [527]={ + ["distance"]=3157, + ["mine_stage"]=21 + }, + [528]={ + ["distance"]=3163, + ["mine_stage"]=45 + }, + [529]={ + ["distance"]=3169, + ["mine_stage"]=28 + }, + [530]={ + ["distance"]=3175, + ["mine_stage"]=39 + }, + [531]={ + ["distance"]=3181, + ["mine_stage"]=22 + }, + [532]={ + ["distance"]=3187, + ["mine_stage"]=57 + }, + [533]={ + ["distance"]=3193, + ["mine_stage"]=23 + }, + [534]={ + ["distance"]=3199, + ["mine_stage"]=53 + }, + [535]={ + ["distance"]=3205, + ["mine_stage"]=5 + }, + [536]={ + ["distance"]=3211, + ["mine_stage"]=59 + }, + [537]={ + ["distance"]=3217, + ["mine_stage"]=10 + }, + [538]={ + ["distance"]=3223, + ["mine_stage"]=40 + }, + [539]={ + ["distance"]=3229, + ["mine_stage"]=24 + }, + [540]={ + ["distance"]=3235, + ["mine_stage"]=60 + }, + [541]={ + ["distance"]=3241, + ["mine_stage"]=38 + }, + [542]={ + ["distance"]=3247, + ["mine_stage"]=39 + }, + [543]={ + ["distance"]=3253, + ["mine_stage"]=1 + }, + [544]={ + ["distance"]=3259, + ["mine_stage"]=6 + }, + [545]={ + ["distance"]=3265, + ["mine_stage"]=2 + }, + [546]={ + ["distance"]=3271, + ["mine_stage"]=20 + }, + [547]={ + ["distance"]=3277, + ["mine_stage"]=14 + }, + [548]={ + ["distance"]=3283, + ["mine_stage"]=46 + }, + [549]={ + ["distance"]=3289, + ["mine_stage"]=12 + }, + [550]={ + ["distance"]=3295, + ["mine_stage"]=1 + }, + [551]={ + ["distance"]=3301, + ["mine_stage"]=68 + }, + [552]={ + ["distance"]=3307, + ["mine_stage"]=57 + }, + [553]={ + ["distance"]=3313, + ["mine_stage"]=22 + }, + [554]={ + ["distance"]=3319, + ["mine_stage"]=30 + }, + [555]={ + ["distance"]=3325, + ["mine_stage"]=56 + }, + [556]={ + ["distance"]=3331, + ["mine_stage"]=25 + }, + [557]={ + ["distance"]=3337, + ["mine_stage"]=22 + }, + [558]={ + ["distance"]=3343, + ["mine_stage"]=20 + }, + [559]={ + ["distance"]=3349, + ["mine_stage"]=10 + }, + [560]={ + ["distance"]=3355, + ["mine_stage"]=1 + }, + [561]={ + ["distance"]=3361, + ["mine_stage"]=60 + }, + [562]={ + ["distance"]=3367, + ["mine_stage"]=47 + }, + [563]={ + ["distance"]=3373, + ["mine_stage"]=26 + }, + [564]={ + ["distance"]=3379, + ["mine_stage"]=49 + }, + [565]={ + ["distance"]=3385, + ["mine_stage"]=14 + }, + [566]={ + ["distance"]=3391, + ["mine_stage"]=49 + }, + [567]={ + ["distance"]=3397, + ["mine_stage"]=53 + }, + [568]={ + ["distance"]=3403, + ["mine_stage"]=29 + }, + [569]={ + ["distance"]=3409, + ["mine_stage"]=26 + }, + [570]={ + ["distance"]=3415, + ["mine_stage"]=52 + }, + [571]={ + ["distance"]=3421, + ["mine_stage"]=19 + }, + [572]={ + ["distance"]=3427, + ["mine_stage"]=42 + }, + [573]={ + ["distance"]=3433, + ["mine_stage"]=23 + }, + [574]={ + ["distance"]=3439, + ["mine_stage"]=34 + }, + [575]={ + ["distance"]=3445, + ["mine_stage"]=47 + }, + [576]={ + ["distance"]=3451, + ["mine_stage"]=42 + }, + [577]={ + ["distance"]=3457, + ["mine_stage"]=51 + }, + [578]={ + ["distance"]=3463, + ["mine_stage"]=57 + }, + [579]={ + ["distance"]=3469, + ["mine_stage"]=11 + }, + [580]={ + ["distance"]=3475, + ["mine_stage"]=16 + }, + [581]={ + ["distance"]=3481, + ["mine_stage"]=13 + }, + [582]={ + ["distance"]=3487, + ["mine_stage"]=22 + }, + [583]={ + ["distance"]=3493, + ["mine_stage"]=46 + }, + [584]={ + ["distance"]=3499, + ["mine_stage"]=29 + }, + [585]={ + ["distance"]=3505, + ["mine_stage"]=17 + }, + [586]={ + ["distance"]=3511, + ["mine_stage"]=8 + }, + [587]={ + ["distance"]=3517, + ["mine_stage"]=49 + }, + [588]={ + ["distance"]=3523, + ["mine_stage"]=47 + }, + [589]={ + ["distance"]=3529, + ["mine_stage"]=7 + }, + [590]={ + ["distance"]=3535, + ["mine_stage"]=54 + }, + [591]={ + ["distance"]=3541, + ["mine_stage"]=20 + }, + [592]={ + ["distance"]=3547, + ["mine_stage"]=47 + }, + [593]={ + ["distance"]=3553, + ["mine_stage"]=29 + }, + [594]={ + ["distance"]=3559, + ["mine_stage"]=9 + }, + [595]={ + ["distance"]=3565, + ["mine_stage"]=45 + }, + [596]={ + ["distance"]=3571, + ["mine_stage"]=37 + }, + [597]={ + ["distance"]=3577, + ["mine_stage"]=23 + }, + [598]={ + ["distance"]=3583, + ["mine_stage"]=10 + }, + [599]={ + ["distance"]=3589, + ["mine_stage"]=19 + }, + [600]={ + ["distance"]=3595, + ["mine_stage"]=60 + }, + [601]={ + ["distance"]=3601, + ["mine_stage"]=66 + }, + [602]={ + ["distance"]=3607, + ["mine_stage"]=23 + }, + [603]={ + ["distance"]=3613, + ["mine_stage"]=31 + }, + [604]={ + ["distance"]=3619, + ["mine_stage"]=48 + }, + [605]={ + ["distance"]=3625, + ["mine_stage"]=52 + }, + [606]={ + ["distance"]=3631, + ["mine_stage"]=15 + }, + [607]={ + ["distance"]=3637, + ["mine_stage"]=24 + }, + [608]={ + ["distance"]=3643, + ["mine_stage"]=30 + }, + [609]={ + ["distance"]=3649, + ["mine_stage"]=26 + }, + [610]={ + ["distance"]=3655, + ["mine_stage"]=23 + }, + [611]={ + ["distance"]=3661, + ["mine_stage"]=54 + }, + [612]={ + ["distance"]=3667, + ["mine_stage"]=42 + }, + [613]={ + ["distance"]=3673, + ["mine_stage"]=36 + }, + [614]={ + ["distance"]=3679, + ["mine_stage"]=46 + }, + [615]={ + ["distance"]=3685, + ["mine_stage"]=60 + }, + [616]={ + ["distance"]=3691, + ["mine_stage"]=18 + }, + [617]={ + ["distance"]=3697, + ["mine_stage"]=37 + }, + [618]={ + ["distance"]=3703, + ["mine_stage"]=29 + }, + [619]={ + ["distance"]=3709, + ["mine_stage"]=12 + }, + [620]={ + ["distance"]=3715, + ["mine_stage"]=25 + }, + [621]={ + ["distance"]=3721, + ["mine_stage"]=44 + }, + [622]={ + ["distance"]=3727, + ["mine_stage"]=23 + }, + [623]={ + ["distance"]=3733, + ["mine_stage"]=15 + }, + [624]={ + ["distance"]=3739, + ["mine_stage"]=11 + }, + [625]={ + ["distance"]=3745, + ["mine_stage"]=12 + }, + [626]={ + ["distance"]=3751, + ["mine_stage"]=32 + }, + [627]={ + ["distance"]=3757, + ["mine_stage"]=8 + }, + [628]={ + ["distance"]=3763, + ["mine_stage"]=59 + }, + [629]={ + ["distance"]=3769, + ["mine_stage"]=9 + }, + [630]={ + ["distance"]=3775, + ["mine_stage"]=53 + }, + [631]={ + ["distance"]=3781, + ["mine_stage"]=49 + }, + [632]={ + ["distance"]=3787, + ["mine_stage"]=6 + }, + [633]={ + ["distance"]=3793, + ["mine_stage"]=15 + }, + [634]={ + ["distance"]=3799, + ["mine_stage"]=17 + }, + [635]={ + ["distance"]=3805, + ["mine_stage"]=45 + }, + [636]={ + ["distance"]=3811, + ["mine_stage"]=45 + }, + [637]={ + ["distance"]=3817, + ["mine_stage"]=59 + }, + [638]={ + ["distance"]=3823, + ["mine_stage"]=29 + }, + [639]={ + ["distance"]=3829, + ["mine_stage"]=47 + }, + [640]={ + ["distance"]=3835, + ["mine_stage"]=51 + }, + [641]={ + ["distance"]=3841, + ["mine_stage"]=20 + }, + [642]={ + ["distance"]=3847, + ["mine_stage"]=13 + }, + [643]={ + ["distance"]=3853, + ["mine_stage"]=27 + }, + [644]={ + ["distance"]=3859, + ["mine_stage"]=11 + }, + [645]={ + ["distance"]=3865, + ["mine_stage"]=15 + }, + [646]={ + ["distance"]=3871, + ["mine_stage"]=24 + }, + [647]={ + ["distance"]=3877, + ["mine_stage"]=57 + }, + [648]={ + ["distance"]=3883, + ["mine_stage"]=2 + }, + [649]={ + ["distance"]=3889, + ["mine_stage"]=43 + }, + [650]={ + ["distance"]=3895, + ["mine_stage"]=43 + }, + [651]={ + ["distance"]=3901, + ["mine_stage"]=69 + }, + [652]={ + ["distance"]=3907, + ["mine_stage"]=29 + }, + [653]={ + ["distance"]=3913, + ["mine_stage"]=55 + }, + [654]={ + ["distance"]=3919, + ["mine_stage"]=1 + }, + [655]={ + ["distance"]=3925, + ["mine_stage"]=16 + }, + [656]={ + ["distance"]=3931, + ["mine_stage"]=11 + }, + [657]={ + ["distance"]=3937, + ["mine_stage"]=40 + }, + [658]={ + ["distance"]=3943, + ["mine_stage"]=42 + }, + [659]={ + ["distance"]=3949, + ["mine_stage"]=11 + }, + [660]={ + ["distance"]=3955, + ["mine_stage"]=8 + }, + [661]={ + ["distance"]=3961, + ["mine_stage"]=60 + }, + [662]={ + ["distance"]=3967, + ["mine_stage"]=32 + }, + [663]={ + ["distance"]=3973, + ["mine_stage"]=56 + }, + [664]={ + ["distance"]=3979, + ["mine_stage"]=54 + }, + [665]={ + ["distance"]=3985, + ["mine_stage"]=33 + }, + [666]={ + ["distance"]=3991, + ["mine_stage"]=47 + }, + [667]={ + ["distance"]=3997, + ["mine_stage"]=35 + }, + [668]={ + ["distance"]=4003, + ["mine_stage"]=35 + }, + [669]={ + ["distance"]=4009, + ["mine_stage"]=16 + }, + [670]={ + ["distance"]=4015, + ["mine_stage"]=3 + }, + [671]={ + ["distance"]=4021, + ["mine_stage"]=40 + }, + [672]={ + ["distance"]=4027, + ["mine_stage"]=20 + }, + [673]={ + ["distance"]=4033, + ["mine_stage"]=31 + }, + [674]={ + ["distance"]=4039, + ["mine_stage"]=57 + }, + [675]={ + ["distance"]=4045, + ["mine_stage"]=17 + }, + [676]={ + ["distance"]=4051, + ["mine_stage"]=45 + }, + [677]={ + ["distance"]=4057, + ["mine_stage"]=13 + }, + [678]={ + ["distance"]=4063, + ["mine_stage"]=41 + }, + [679]={ + ["distance"]=4069, + ["mine_stage"]=12 + }, + [680]={ + ["distance"]=4075, + ["mine_stage"]=1 + }, + [681]={ + ["distance"]=4081, + ["mine_stage"]=27 + }, + [682]={ + ["distance"]=4087, + ["mine_stage"]=23 + }, + [683]={ + ["distance"]=4093, + ["mine_stage"]=48 + }, + [684]={ + ["distance"]=4099, + ["mine_stage"]=25 + }, + [685]={ + ["distance"]=4105, + ["mine_stage"]=21 + }, + [686]={ + ["distance"]=4111, + ["mine_stage"]=44 + }, + [687]={ + ["distance"]=4117, + ["mine_stage"]=41 + }, + [688]={ + ["distance"]=4123, + ["mine_stage"]=16 + }, + [689]={ + ["distance"]=4129, + ["mine_stage"]=15 + }, + [690]={ + ["distance"]=4135, + ["mine_stage"]=50 + }, + [691]={ + ["distance"]=4141, + ["mine_stage"]=50 + }, + [692]={ + ["distance"]=4147, + ["mine_stage"]=38 + }, + [693]={ + ["distance"]=4153, + ["mine_stage"]=48 + }, + [694]={ + ["distance"]=4159, + ["mine_stage"]=41 + }, + [695]={ + ["distance"]=4165, + ["mine_stage"]=57 + }, + [696]={ + ["distance"]=4171, + ["mine_stage"]=33 + }, + [697]={ + ["distance"]=4177, + ["mine_stage"]=49 + }, + [698]={ + ["distance"]=4183, + ["mine_stage"]=44 + }, + [699]={ + ["distance"]=4189, + ["mine_stage"]=38 + }, + [700]={ + ["distance"]=4195, + ["mine_stage"]=48 + }, + [701]={ + ["distance"]=4201, + ["mine_stage"]=64 + }, + [702]={ + ["distance"]=4207, + ["mine_stage"]=34 + }, + [703]={ + ["distance"]=4213, + ["mine_stage"]=36 + }, + [704]={ + ["distance"]=4219, + ["mine_stage"]=53 + }, + [705]={ + ["distance"]=4225, + ["mine_stage"]=50 + }, + [706]={ + ["distance"]=4231, + ["mine_stage"]=22 + }, + [707]={ + ["distance"]=4237, + ["mine_stage"]=26 + }, + [708]={ + ["distance"]=4243, + ["mine_stage"]=10 + }, + [709]={ + ["distance"]=4249, + ["mine_stage"]=30 + }, + [710]={ + ["distance"]=4255, + ["mine_stage"]=49 + }, + [711]={ + ["distance"]=4261, + ["mine_stage"]=48 + }, + [712]={ + ["distance"]=4267, + ["mine_stage"]=13 + }, + [713]={ + ["distance"]=4273, + ["mine_stage"]=28 + }, + [714]={ + ["distance"]=4279, + ["mine_stage"]=39 + }, + [715]={ + ["distance"]=4285, + ["mine_stage"]=32 + }, + [716]={ + ["distance"]=4291, + ["mine_stage"]=56 + }, + [717]={ + ["distance"]=4297, + ["mine_stage"]=60 + }, + [718]={ + ["distance"]=4303, + ["mine_stage"]=49 + }, + [719]={ + ["distance"]=4309, + ["mine_stage"]=1 + }, + [720]={ + ["distance"]=4315, + ["mine_stage"]=28 + }, + [721]={ + ["distance"]=4321, + ["mine_stage"]=25 + }, + [722]={ + ["distance"]=4327, + ["mine_stage"]=23 + }, + [723]={ + ["distance"]=4333, + ["mine_stage"]=32 + }, + [724]={ + ["distance"]=4339, + ["mine_stage"]=53 + }, + [725]={ + ["distance"]=4345, + ["mine_stage"]=32 + }, + [726]={ + ["distance"]=4351, + ["mine_stage"]=32 + }, + [727]={ + ["distance"]=4357, + ["mine_stage"]=1 + }, + [728]={ + ["distance"]=4363, + ["mine_stage"]=49 + }, + [729]={ + ["distance"]=4369, + ["mine_stage"]=49 + }, + [730]={ + ["distance"]=4375, + ["mine_stage"]=27 + }, + [731]={ + ["distance"]=4381, + ["mine_stage"]=8 + }, + [732]={ + ["distance"]=4387, + ["mine_stage"]=55 + }, + [733]={ + ["distance"]=4393, + ["mine_stage"]=13 + }, + [734]={ + ["distance"]=4399, + ["mine_stage"]=41 + }, + [735]={ + ["distance"]=4405, + ["mine_stage"]=8 + }, + [736]={ + ["distance"]=4411, + ["mine_stage"]=35 + }, + [737]={ + ["distance"]=4417, + ["mine_stage"]=32 + }, + [738]={ + ["distance"]=4423, + ["mine_stage"]=11 + }, + [739]={ + ["distance"]=4429, + ["mine_stage"]=35 + }, + [740]={ + ["distance"]=4435, + ["mine_stage"]=41 + }, + [741]={ + ["distance"]=4441, + ["mine_stage"]=25 + }, + [742]={ + ["distance"]=4447, + ["mine_stage"]=5 + }, + [743]={ + ["distance"]=4453, + ["mine_stage"]=25 + }, + [744]={ + ["distance"]=4459, + ["mine_stage"]=29 + }, + [745]={ + ["distance"]=4465, + ["mine_stage"]=48 + }, + [746]={ + ["distance"]=4471, + ["mine_stage"]=34 + }, + [747]={ + ["distance"]=4477, + ["mine_stage"]=21 + }, + [748]={ + ["distance"]=4483, + ["mine_stage"]=4 + }, + [749]={ + ["distance"]=4489, + ["mine_stage"]=51 + }, + [750]={ + ["distance"]=4495, + ["mine_stage"]=37 + }, + [751]={ + ["distance"]=4501, + ["mine_stage"]=67 + }, + [752]={ + ["distance"]=4507, + ["mine_stage"]=26 + }, + [753]={ + ["distance"]=4513, + ["mine_stage"]=18 + }, + [754]={ + ["distance"]=4519, + ["mine_stage"]=22 + }, + [755]={ + ["distance"]=4525, + ["mine_stage"]=48 + }, + [756]={ + ["distance"]=4531, + ["mine_stage"]=7 + }, + [757]={ + ["distance"]=4537, + ["mine_stage"]=56 + }, + [758]={ + ["distance"]=4543, + ["mine_stage"]=42 + }, + [759]={ + ["distance"]=4549, + ["mine_stage"]=41 + }, + [760]={ + ["distance"]=4555, + ["mine_stage"]=42 + }, + [761]={ + ["distance"]=4561, + ["mine_stage"]=57 + }, + [762]={ + ["distance"]=4567, + ["mine_stage"]=18 + }, + [763]={ + ["distance"]=4573, + ["mine_stage"]=54 + }, + [764]={ + ["distance"]=4579, + ["mine_stage"]=32 + }, + [765]={ + ["distance"]=4585, + ["mine_stage"]=42 + }, + [766]={ + ["distance"]=4591, + ["mine_stage"]=11 + }, + [767]={ + ["distance"]=4597, + ["mine_stage"]=18 + }, + [768]={ + ["distance"]=4603, + ["mine_stage"]=52 + }, + [769]={ + ["distance"]=4609, + ["mine_stage"]=35 + }, + [770]={ + ["distance"]=4615, + ["mine_stage"]=49 + }, + [771]={ + ["distance"]=4621, + ["mine_stage"]=14 + }, + [772]={ + ["distance"]=4627, + ["mine_stage"]=7 + }, + [773]={ + ["distance"]=4633, + ["mine_stage"]=30 + }, + [774]={ + ["distance"]=4639, + ["mine_stage"]=41 + }, + [775]={ + ["distance"]=4645, + ["mine_stage"]=4 + }, + [776]={ + ["distance"]=4651, + ["mine_stage"]=10 + }, + [777]={ + ["distance"]=4657, + ["mine_stage"]=23 + }, + [778]={ + ["distance"]=4663, + ["mine_stage"]=55 + }, + [779]={ + ["distance"]=4669, + ["mine_stage"]=51 + }, + [780]={ + ["distance"]=4675, + ["mine_stage"]=49 + }, + [781]={ + ["distance"]=4681, + ["mine_stage"]=33 + }, + [782]={ + ["distance"]=4687, + ["mine_stage"]=43 + }, + [783]={ + ["distance"]=4693, + ["mine_stage"]=12 + }, + [784]={ + ["distance"]=4699, + ["mine_stage"]=51 + }, + [785]={ + ["distance"]=4705, + ["mine_stage"]=12 + }, + [786]={ + ["distance"]=4711, + ["mine_stage"]=59 + }, + [787]={ + ["distance"]=4717, + ["mine_stage"]=26 + }, + [788]={ + ["distance"]=4723, + ["mine_stage"]=5 + }, + [789]={ + ["distance"]=4729, + ["mine_stage"]=12 + }, + [790]={ + ["distance"]=4735, + ["mine_stage"]=24 + }, + [791]={ + ["distance"]=4741, + ["mine_stage"]=31 + }, + [792]={ + ["distance"]=4747, + ["mine_stage"]=5 + }, + [793]={ + ["distance"]=4753, + ["mine_stage"]=32 + }, + [794]={ + ["distance"]=4759, + ["mine_stage"]=50 + }, + [795]={ + ["distance"]=4765, + ["mine_stage"]=51 + }, + [796]={ + ["distance"]=4771, + ["mine_stage"]=18 + }, + [797]={ + ["distance"]=4777, + ["mine_stage"]=36 + }, + [798]={ + ["distance"]=4783, + ["mine_stage"]=17 + }, + [799]={ + ["distance"]=4789, + ["mine_stage"]=11 + }, + [800]={ + ["distance"]=4795, + ["mine_stage"]=55 + }, + [801]={ + ["distance"]=4801, + ["mine_stage"]=65 + }, + [802]={ + ["distance"]=4807, + ["mine_stage"]=46 + }, + [803]={ + ["distance"]=4813, + ["mine_stage"]=10 + }, + [804]={ + ["distance"]=4819, + ["mine_stage"]=35 + }, + [805]={ + ["distance"]=4825, + ["mine_stage"]=30 + }, + [806]={ + ["distance"]=4831, + ["mine_stage"]=31 + }, + [807]={ + ["distance"]=4837, + ["mine_stage"]=58 + }, + [808]={ + ["distance"]=4843, + ["mine_stage"]=58 + }, + [809]={ + ["distance"]=4849, + ["mine_stage"]=6 + }, + [810]={ + ["distance"]=4855, + ["mine_stage"]=60 + }, + [811]={ + ["distance"]=4861, + ["mine_stage"]=2 + }, + [812]={ + ["distance"]=4867, + ["mine_stage"]=36 + }, + [813]={ + ["distance"]=4873, + ["mine_stage"]=30 + }, + [814]={ + ["distance"]=4879, + ["mine_stage"]=48 + }, + [815]={ + ["distance"]=4885, + ["mine_stage"]=3 + }, + [816]={ + ["distance"]=4891, + ["mine_stage"]=11 + }, + [817]={ + ["distance"]=4897, + ["mine_stage"]=32 + }, + [818]={ + ["distance"]=4903, + ["mine_stage"]=45 + }, + [819]={ + ["distance"]=4909, + ["mine_stage"]=8 + }, + [820]={ + ["distance"]=4915, + ["mine_stage"]=35 + }, + [821]={ + ["distance"]=4921, + ["mine_stage"]=52 + }, + [822]={ + ["distance"]=4927, + ["mine_stage"]=4 + }, + [823]={ + ["distance"]=4933, + ["mine_stage"]=6 + }, + [824]={ + ["distance"]=4939, + ["mine_stage"]=19 + }, + [825]={ + ["distance"]=4945, + ["mine_stage"]=14 + }, + [826]={ + ["distance"]=4951, + ["mine_stage"]=53 + }, + [827]={ + ["distance"]=4957, + ["mine_stage"]=20 + }, + [828]={ + ["distance"]=4963, + ["mine_stage"]=21 + }, + [829]={ + ["distance"]=4969, + ["mine_stage"]=14 + }, + [830]={ + ["distance"]=4975, + ["mine_stage"]=1 + }, + [831]={ + ["distance"]=4981, + ["mine_stage"]=36 + }, + [832]={ + ["distance"]=4987, + ["mine_stage"]=18 + }, + [833]={ + ["distance"]=4993, + ["mine_stage"]=52 + }, + [834]={ + ["distance"]=4999, + ["mine_stage"]=5 + }, + [835]={ + ["distance"]=5005, + ["mine_stage"]=8 + }, + [836]={ + ["distance"]=5011, + ["mine_stage"]=8 + }, + [837]={ + ["distance"]=5017, + ["mine_stage"]=10 + }, + [838]={ + ["distance"]=5023, + ["mine_stage"]=22 + }, + [839]={ + ["distance"]=5029, + ["mine_stage"]=32 + }, + [840]={ + ["distance"]=5035, + ["mine_stage"]=34 + }, + [841]={ + ["distance"]=5041, + ["mine_stage"]=54 + }, + [842]={ + ["distance"]=5047, + ["mine_stage"]=21 + }, + [843]={ + ["distance"]=5053, + ["mine_stage"]=11 + }, + [844]={ + ["distance"]=5059, + ["mine_stage"]=60 + }, + [845]={ + ["distance"]=5065, + ["mine_stage"]=17 + }, + [846]={ + ["distance"]=5071, + ["mine_stage"]=47 + }, + [847]={ + ["distance"]=5077, + ["mine_stage"]=10 + }, + [848]={ + ["distance"]=5083, + ["mine_stage"]=52 + }, + [849]={ + ["distance"]=5089, + ["mine_stage"]=25 + }, + [850]={ + ["distance"]=5095, + ["mine_stage"]=12 + }, + [851]={ + ["distance"]=5101, + ["mine_stage"]=68 + }, + [852]={ + ["distance"]=5107, + ["mine_stage"]=31 + }, + [853]={ + ["distance"]=5113, + ["mine_stage"]=25 + }, + [854]={ + ["distance"]=5119, + ["mine_stage"]=6 + }, + [855]={ + ["distance"]=5125, + ["mine_stage"]=38 + }, + [856]={ + ["distance"]=5131, + ["mine_stage"]=42 + }, + [857]={ + ["distance"]=5137, + ["mine_stage"]=15 + }, + [858]={ + ["distance"]=5143, + ["mine_stage"]=37 + }, + [859]={ + ["distance"]=5149, + ["mine_stage"]=55 + }, + [860]={ + ["distance"]=5155, + ["mine_stage"]=6 + }, + [861]={ + ["distance"]=5161, + ["mine_stage"]=5 + }, + [862]={ + ["distance"]=5167, + ["mine_stage"]=14 + }, + [863]={ + ["distance"]=5173, + ["mine_stage"]=38 + }, + [864]={ + ["distance"]=5179, + ["mine_stage"]=30 + }, + [865]={ + ["distance"]=5185, + ["mine_stage"]=32 + }, + [866]={ + ["distance"]=5191, + ["mine_stage"]=2 + }, + [867]={ + ["distance"]=5197, + ["mine_stage"]=58 + }, + [868]={ + ["distance"]=5203, + ["mine_stage"]=10 + }, + [869]={ + ["distance"]=5209, + ["mine_stage"]=18 + }, + [870]={ + ["distance"]=5215, + ["mine_stage"]=50 + }, + [871]={ + ["distance"]=5221, + ["mine_stage"]=34 + }, + [872]={ + ["distance"]=5227, + ["mine_stage"]=52 + }, + [873]={ + ["distance"]=5233, + ["mine_stage"]=56 + }, + [874]={ + ["distance"]=5239, + ["mine_stage"]=15 + }, + [875]={ + ["distance"]=5245, + ["mine_stage"]=39 + }, + [876]={ + ["distance"]=5251, + ["mine_stage"]=6 + }, + [877]={ + ["distance"]=5257, + ["mine_stage"]=2 + }, + [878]={ + ["distance"]=5263, + ["mine_stage"]=58 + }, + [879]={ + ["distance"]=5269, + ["mine_stage"]=21 + }, + [880]={ + ["distance"]=5275, + ["mine_stage"]=33 + }, + [881]={ + ["distance"]=5281, + ["mine_stage"]=28 + }, + [882]={ + ["distance"]=5287, + ["mine_stage"]=7 + }, + [883]={ + ["distance"]=5293, + ["mine_stage"]=50 + }, + [884]={ + ["distance"]=5299, + ["mine_stage"]=35 + }, + [885]={ + ["distance"]=5305, + ["mine_stage"]=17 + }, + [886]={ + ["distance"]=5311, + ["mine_stage"]=2 + }, + [887]={ + ["distance"]=5317, + ["mine_stage"]=24 + }, + [888]={ + ["distance"]=5323, + ["mine_stage"]=48 + }, + [889]={ + ["distance"]=5329, + ["mine_stage"]=21 + }, + [890]={ + ["distance"]=5335, + ["mine_stage"]=28 + }, + [891]={ + ["distance"]=5341, + ["mine_stage"]=7 + }, + [892]={ + ["distance"]=5347, + ["mine_stage"]=30 + }, + [893]={ + ["distance"]=5353, + ["mine_stage"]=46 + }, + [894]={ + ["distance"]=5359, + ["mine_stage"]=1 + }, + [895]={ + ["distance"]=5365, + ["mine_stage"]=28 + }, + [896]={ + ["distance"]=5371, + ["mine_stage"]=58 + }, + [897]={ + ["distance"]=5377, + ["mine_stage"]=26 + }, + [898]={ + ["distance"]=5383, + ["mine_stage"]=20 + }, + [899]={ + ["distance"]=5389, + ["mine_stage"]=50 + }, + [900]={ + ["distance"]=5395, + ["mine_stage"]=7 + }, + [901]={ + ["distance"]=5401, + ["mine_stage"]=66 + }, + [902]={ + ["distance"]=5407, + ["mine_stage"]=13 + }, + [903]={ + ["distance"]=5413, + ["mine_stage"]=20 + }, + [904]={ + ["distance"]=5419, + ["mine_stage"]=7 + }, + [905]={ + ["distance"]=5425, + ["mine_stage"]=3 + }, + [906]={ + ["distance"]=5431, + ["mine_stage"]=22 + }, + [907]={ + ["distance"]=5437, + ["mine_stage"]=9 + }, + [908]={ + ["distance"]=5443, + ["mine_stage"]=44 + }, + [909]={ + ["distance"]=5449, + ["mine_stage"]=30 + }, + [910]={ + ["distance"]=5455, + ["mine_stage"]=33 + }, + [911]={ + ["distance"]=5461, + ["mine_stage"]=38 + }, + [912]={ + ["distance"]=5467, + ["mine_stage"]=32 + }, + [913]={ + ["distance"]=5473, + ["mine_stage"]=33 + }, + [914]={ + ["distance"]=5479, + ["mine_stage"]=9 + }, + [915]={ + ["distance"]=5485, + ["mine_stage"]=18 + }, + [916]={ + ["distance"]=5491, + ["mine_stage"]=19 + }, + [917]={ + ["distance"]=5497, + ["mine_stage"]=2 + }, + [918]={ + ["distance"]=5503, + ["mine_stage"]=41 + }, + [919]={ + ["distance"]=5509, + ["mine_stage"]=31 + }, + [920]={ + ["distance"]=5515, + ["mine_stage"]=33 + }, + [921]={ + ["distance"]=5521, + ["mine_stage"]=41 + }, + [922]={ + ["distance"]=5527, + ["mine_stage"]=9 + }, + [923]={ + ["distance"]=5533, + ["mine_stage"]=21 + }, + [924]={ + ["distance"]=5539, + ["mine_stage"]=52 + }, + [925]={ + ["distance"]=5545, + ["mine_stage"]=52 + }, + [926]={ + ["distance"]=5551, + ["mine_stage"]=41 + }, + [927]={ + ["distance"]=5557, + ["mine_stage"]=14 + }, + [928]={ + ["distance"]=5563, + ["mine_stage"]=5 + }, + [929]={ + ["distance"]=5569, + ["mine_stage"]=44 + }, + [930]={ + ["distance"]=5575, + ["mine_stage"]=55 + }, + [931]={ + ["distance"]=5581, + ["mine_stage"]=53 + }, + [932]={ + ["distance"]=5587, + ["mine_stage"]=26 + }, + [933]={ + ["distance"]=5593, + ["mine_stage"]=24 + }, + [934]={ + ["distance"]=5599, + ["mine_stage"]=13 + }, + [935]={ + ["distance"]=5605, + ["mine_stage"]=2 + }, + [936]={ + ["distance"]=5611, + ["mine_stage"]=37 + }, + [937]={ + ["distance"]=5617, + ["mine_stage"]=24 + }, + [938]={ + ["distance"]=5623, + ["mine_stage"]=16 + }, + [939]={ + ["distance"]=5629, + ["mine_stage"]=53 + }, + [940]={ + ["distance"]=5635, + ["mine_stage"]=34 + }, + [941]={ + ["distance"]=5641, + ["mine_stage"]=8 + }, + [942]={ + ["distance"]=5647, + ["mine_stage"]=44 + }, + [943]={ + ["distance"]=5653, + ["mine_stage"]=34 + }, + [944]={ + ["distance"]=5659, + ["mine_stage"]=18 + }, + [945]={ + ["distance"]=5665, + ["mine_stage"]=14 + }, + [946]={ + ["distance"]=5671, + ["mine_stage"]=5 + }, + [947]={ + ["distance"]=5677, + ["mine_stage"]=48 + }, + [948]={ + ["distance"]=5683, + ["mine_stage"]=56 + }, + [949]={ + ["distance"]=5689, + ["mine_stage"]=19 + }, + [950]={ + ["distance"]=5695, + ["mine_stage"]=31 + }, + [951]={ + ["distance"]=5701, + ["mine_stage"]=69 + }, + [952]={ + ["distance"]=5707, + ["mine_stage"]=23 + }, + [953]={ + ["distance"]=5713, + ["mine_stage"]=50 + }, + [954]={ + ["distance"]=5719, + ["mine_stage"]=58 + }, + [955]={ + ["distance"]=5725, + ["mine_stage"]=30 + }, + [956]={ + ["distance"]=5731, + ["mine_stage"]=32 + }, + [957]={ + ["distance"]=5737, + ["mine_stage"]=53 + }, + [958]={ + ["distance"]=5743, + ["mine_stage"]=11 + }, + [959]={ + ["distance"]=5749, + ["mine_stage"]=7 + }, + [960]={ + ["distance"]=5755, + ["mine_stage"]=6 + }, + [961]={ + ["distance"]=5761, + ["mine_stage"]=5 + }, + [962]={ + ["distance"]=5767, + ["mine_stage"]=8 + }, + [963]={ + ["distance"]=5773, + ["mine_stage"]=9 + }, + [964]={ + ["distance"]=5779, + ["mine_stage"]=49 + }, + [965]={ + ["distance"]=5785, + ["mine_stage"]=27 + }, + [966]={ + ["distance"]=5791, + ["mine_stage"]=54 + }, + [967]={ + ["distance"]=5797, + ["mine_stage"]=57 + }, + [968]={ + ["distance"]=5803, + ["mine_stage"]=35 + }, + [969]={ + ["distance"]=5809, + ["mine_stage"]=59 + }, + [970]={ + ["distance"]=5815, + ["mine_stage"]=26 + }, + [971]={ + ["distance"]=5821, + ["mine_stage"]=41 + }, + [972]={ + ["distance"]=5827, + ["mine_stage"]=2 + }, + [973]={ + ["distance"]=5833, + ["mine_stage"]=39 + }, + [974]={ + ["distance"]=5839, + ["mine_stage"]=36 + }, + [975]={ + ["distance"]=5845, + ["mine_stage"]=9 + }, + [976]={ + ["distance"]=5851, + ["mine_stage"]=26 + }, + [977]={ + ["distance"]=5857, + ["mine_stage"]=19 + }, + [978]={ + ["distance"]=5863, + ["mine_stage"]=46 + }, + [979]={ + ["distance"]=5869, + ["mine_stage"]=56 + }, + [980]={ + ["distance"]=5875, + ["mine_stage"]=41 + }, + [981]={ + ["distance"]=5881, + ["mine_stage"]=32 + }, + [982]={ + ["distance"]=5887, + ["mine_stage"]=5 + }, + [983]={ + ["distance"]=5893, + ["mine_stage"]=33 + }, + [984]={ + ["distance"]=5899, + ["mine_stage"]=24 + }, + [985]={ + ["distance"]=5905, + ["mine_stage"]=7 + }, + [986]={ + ["distance"]=5911, + ["mine_stage"]=41 + }, + [987]={ + ["distance"]=5917, + ["mine_stage"]=53 + }, + [988]={ + ["distance"]=5923, + ["mine_stage"]=58 + }, + [989]={ + ["distance"]=5929, + ["mine_stage"]=54 + }, + [990]={ + ["distance"]=5935, + ["mine_stage"]=53 + }, + [991]={ + ["distance"]=5941, + ["mine_stage"]=7 + }, + [992]={ + ["distance"]=5947, + ["mine_stage"]=1 + }, + [993]={ + ["distance"]=5953, + ["mine_stage"]=11 + }, + [994]={ + ["distance"]=5959, + ["mine_stage"]=27 + }, + [995]={ + ["distance"]=5965, + ["mine_stage"]=51 + }, + [996]={ + ["distance"]=5971, + ["mine_stage"]=29 + }, + [997]={ + ["distance"]=5977, + ["mine_stage"]=60 + }, + [998]={ + ["distance"]=5983, + ["mine_stage"]=23 + }, + [999]={ + ["distance"]=5989, + ["mine_stage"]=46 + }, + [1000]={ + ["distance"]=5995, + ["mine_stage"]=49 + }, + [1001]={ + ["distance"]=6001, + ["mine_stage"]=64 + }, + [1002]={ + ["distance"]=6007, + ["mine_stage"]=9 + }, + [1003]={ + ["distance"]=6013, + ["mine_stage"]=43 + }, + [1004]={ + ["distance"]=6019, + ["mine_stage"]=17 + }, + [1005]={ + ["distance"]=6025, + ["mine_stage"]=27 + }, + [1006]={ + ["distance"]=6031, + ["mine_stage"]=37 + }, + [1007]={ + ["distance"]=6037, + ["mine_stage"]=13 + }, + [1008]={ + ["distance"]=6043, + ["mine_stage"]=37 + }, + [1009]={ + ["distance"]=6049, + ["mine_stage"]=3 + }, + [1010]={ + ["distance"]=6055, + ["mine_stage"]=14 + }, + [1011]={ + ["distance"]=6061, + ["mine_stage"]=56 + }, + [1012]={ + ["distance"]=6067, + ["mine_stage"]=53 + }, + [1013]={ + ["distance"]=6073, + ["mine_stage"]=41 + }, + [1014]={ + ["distance"]=6079, + ["mine_stage"]=35 + }, + [1015]={ + ["distance"]=6085, + ["mine_stage"]=34 + }, + [1016]={ + ["distance"]=6091, + ["mine_stage"]=17 + }, + [1017]={ + ["distance"]=6097, + ["mine_stage"]=42 + }, + [1018]={ + ["distance"]=6103, + ["mine_stage"]=13 + }, + [1019]={ + ["distance"]=6109, + ["mine_stage"]=44 + }, + [1020]={ + ["distance"]=6115, + ["mine_stage"]=53 + }, + [1021]={ + ["distance"]=6121, + ["mine_stage"]=6 + }, + [1022]={ + ["distance"]=6127, + ["mine_stage"]=7 + }, + [1023]={ + ["distance"]=6133, + ["mine_stage"]=29 + }, + [1024]={ + ["distance"]=6139, + ["mine_stage"]=60 + }, + [1025]={ + ["distance"]=6145, + ["mine_stage"]=27 + }, + [1026]={ + ["distance"]=6151, + ["mine_stage"]=37 + }, + [1027]={ + ["distance"]=6157, + ["mine_stage"]=41 + }, + [1028]={ + ["distance"]=6163, + ["mine_stage"]=55 + }, + [1029]={ + ["distance"]=6169, + ["mine_stage"]=12 + }, + [1030]={ + ["distance"]=6175, + ["mine_stage"]=34 + }, + [1031]={ + ["distance"]=6181, + ["mine_stage"]=8 + }, + [1032]={ + ["distance"]=6187, + ["mine_stage"]=30 + }, + [1033]={ + ["distance"]=6193, + ["mine_stage"]=17 + }, + [1034]={ + ["distance"]=6199, + ["mine_stage"]=36 + }, + [1035]={ + ["distance"]=6205, + ["mine_stage"]=29 + }, + [1036]={ + ["distance"]=6211, + ["mine_stage"]=11 + }, + [1037]={ + ["distance"]=6217, + ["mine_stage"]=15 + }, + [1038]={ + ["distance"]=6223, + ["mine_stage"]=27 + }, + [1039]={ + ["distance"]=6229, + ["mine_stage"]=36 + }, + [1040]={ + ["distance"]=6235, + ["mine_stage"]=4 + }, + [1041]={ + ["distance"]=6241, + ["mine_stage"]=25 + }, + [1042]={ + ["distance"]=6247, + ["mine_stage"]=36 + }, + [1043]={ + ["distance"]=6253, + ["mine_stage"]=49 + }, + [1044]={ + ["distance"]=6259, + ["mine_stage"]=5 + }, + [1045]={ + ["distance"]=6265, + ["mine_stage"]=8 + }, + [1046]={ + ["distance"]=6271, + ["mine_stage"]=48 + }, + [1047]={ + ["distance"]=6277, + ["mine_stage"]=20 + }, + [1048]={ + ["distance"]=6283, + ["mine_stage"]=30 + }, + [1049]={ + ["distance"]=6289, + ["mine_stage"]=40 + }, + [1050]={ + ["distance"]=6295, + ["mine_stage"]=46 + }, + [1051]={ + ["distance"]=6301, + ["mine_stage"]=67 + }, + [1052]={ + ["distance"]=6307, + ["mine_stage"]=53 + }, + [1053]={ + ["distance"]=6313, + ["mine_stage"]=11 + }, + [1054]={ + ["distance"]=6319, + ["mine_stage"]=29 + }, + [1055]={ + ["distance"]=6325, + ["mine_stage"]=45 + }, + [1056]={ + ["distance"]=6331, + ["mine_stage"]=9 + }, + [1057]={ + ["distance"]=6337, + ["mine_stage"]=1 + }, + [1058]={ + ["distance"]=6343, + ["mine_stage"]=15 + }, + [1059]={ + ["distance"]=6349, + ["mine_stage"]=60 + }, + [1060]={ + ["distance"]=6355, + ["mine_stage"]=16 + }, + [1061]={ + ["distance"]=6361, + ["mine_stage"]=10 + }, + [1062]={ + ["distance"]=6367, + ["mine_stage"]=49 + }, + [1063]={ + ["distance"]=6373, + ["mine_stage"]=21 + }, + [1064]={ + ["distance"]=6379, + ["mine_stage"]=37 + }, + [1065]={ + ["distance"]=6385, + ["mine_stage"]=34 + }, + [1066]={ + ["distance"]=6391, + ["mine_stage"]=47 + }, + [1067]={ + ["distance"]=6397, + ["mine_stage"]=29 + }, + [1068]={ + ["distance"]=6403, + ["mine_stage"]=7 + }, + [1069]={ + ["distance"]=6409, + ["mine_stage"]=30 + }, + [1070]={ + ["distance"]=6415, + ["mine_stage"]=50 + }, + [1071]={ + ["distance"]=6421, + ["mine_stage"]=42 + }, + [1072]={ + ["distance"]=6427, + ["mine_stage"]=55 + }, + [1073]={ + ["distance"]=6433, + ["mine_stage"]=49 + }, + [1074]={ + ["distance"]=6439, + ["mine_stage"]=8 + }, + [1075]={ + ["distance"]=6445, + ["mine_stage"]=53 + }, + [1076]={ + ["distance"]=6451, + ["mine_stage"]=46 + }, + [1077]={ + ["distance"]=6457, + ["mine_stage"]=57 + }, + [1078]={ + ["distance"]=6463, + ["mine_stage"]=50 + }, + [1079]={ + ["distance"]=6469, + ["mine_stage"]=55 + }, + [1080]={ + ["distance"]=6475, + ["mine_stage"]=31 + }, + [1081]={ + ["distance"]=6481, + ["mine_stage"]=32 + }, + [1082]={ + ["distance"]=6487, + ["mine_stage"]=13 + }, + [1083]={ + ["distance"]=6493, + ["mine_stage"]=38 + }, + [1084]={ + ["distance"]=6499, + ["mine_stage"]=34 + }, + [1085]={ + ["distance"]=6505, + ["mine_stage"]=19 + }, + [1086]={ + ["distance"]=6511, + ["mine_stage"]=14 + }, + [1087]={ + ["distance"]=6517, + ["mine_stage"]=28 + }, + [1088]={ + ["distance"]=6523, + ["mine_stage"]=6 + }, + [1089]={ + ["distance"]=6529, + ["mine_stage"]=56 + }, + [1090]={ + ["distance"]=6535, + ["mine_stage"]=51 + }, + [1091]={ + ["distance"]=6541, + ["mine_stage"]=33 + }, + [1092]={ + ["distance"]=6547, + ["mine_stage"]=58 + }, + [1093]={ + ["distance"]=6553, + ["mine_stage"]=18 + }, + [1094]={ + ["distance"]=6559, + ["mine_stage"]=30 + }, + [1095]={ + ["distance"]=6565, + ["mine_stage"]=56 + }, + [1096]={ + ["distance"]=6571, + ["mine_stage"]=11 + }, + [1097]={ + ["distance"]=6577, + ["mine_stage"]=10 + }, + [1098]={ + ["distance"]=6583, + ["mine_stage"]=41 + }, + [1099]={ + ["distance"]=6589, + ["mine_stage"]=51 + }, + [1100]={ + ["distance"]=6595, + ["mine_stage"]=59 + }, + [1101]={ + ["distance"]=6601, + ["mine_stage"]=65 + }, + [1102]={ + ["distance"]=6607, + ["mine_stage"]=2 + }, + [1103]={ + ["distance"]=6613, + ["mine_stage"]=9 + }, + [1104]={ + ["distance"]=6619, + ["mine_stage"]=39 + }, + [1105]={ + ["distance"]=6625, + ["mine_stage"]=17 + }, + [1106]={ + ["distance"]=6631, + ["mine_stage"]=29 + }, + [1107]={ + ["distance"]=6637, + ["mine_stage"]=10 + }, + [1108]={ + ["distance"]=6643, + ["mine_stage"]=5 + }, + [1109]={ + ["distance"]=6649, + ["mine_stage"]=9 + }, + [1110]={ + ["distance"]=6655, + ["mine_stage"]=28 + }, + [1111]={ + ["distance"]=6661, + ["mine_stage"]=31 + }, + [1112]={ + ["distance"]=6667, + ["mine_stage"]=35 + }, + [1113]={ + ["distance"]=6673, + ["mine_stage"]=2 + }, + [1114]={ + ["distance"]=6679, + ["mine_stage"]=30 + }, + [1115]={ + ["distance"]=6685, + ["mine_stage"]=55 + }, + [1116]={ + ["distance"]=6691, + ["mine_stage"]=33 + }, + [1117]={ + ["distance"]=6697, + ["mine_stage"]=3 + }, + [1118]={ + ["distance"]=6703, + ["mine_stage"]=13 + }, + [1119]={ + ["distance"]=6709, + ["mine_stage"]=56 + }, + [1120]={ + ["distance"]=6715, + ["mine_stage"]=14 + }, + [1121]={ + ["distance"]=6721, + ["mine_stage"]=46 + }, + [1122]={ + ["distance"]=6727, + ["mine_stage"]=38 + }, + [1123]={ + ["distance"]=6733, + ["mine_stage"]=39 + }, + [1124]={ + ["distance"]=6739, + ["mine_stage"]=41 + }, + [1125]={ + ["distance"]=6745, + ["mine_stage"]=3 + }, + [1126]={ + ["distance"]=6751, + ["mine_stage"]=53 + }, + [1127]={ + ["distance"]=6757, + ["mine_stage"]=24 + }, + [1128]={ + ["distance"]=6763, + ["mine_stage"]=51 + }, + [1129]={ + ["distance"]=6769, + ["mine_stage"]=12 + }, + [1130]={ + ["distance"]=6775, + ["mine_stage"]=52 + }, + [1131]={ + ["distance"]=6781, + ["mine_stage"]=50 + }, + [1132]={ + ["distance"]=6787, + ["mine_stage"]=26 + }, + [1133]={ + ["distance"]=6793, + ["mine_stage"]=27 + }, + [1134]={ + ["distance"]=6799, + ["mine_stage"]=36 + }, + [1135]={ + ["distance"]=6805, + ["mine_stage"]=4 + }, + [1136]={ + ["distance"]=6811, + ["mine_stage"]=30 + }, + [1137]={ + ["distance"]=6817, + ["mine_stage"]=30 + }, + [1138]={ + ["distance"]=6823, + ["mine_stage"]=6 + }, + [1139]={ + ["distance"]=6829, + ["mine_stage"]=54 + }, + [1140]={ + ["distance"]=6835, + ["mine_stage"]=3 + }, + [1141]={ + ["distance"]=6841, + ["mine_stage"]=35 + }, + [1142]={ + ["distance"]=6847, + ["mine_stage"]=17 + }, + [1143]={ + ["distance"]=6853, + ["mine_stage"]=26 + }, + [1144]={ + ["distance"]=6859, + ["mine_stage"]=18 + }, + [1145]={ + ["distance"]=6865, + ["mine_stage"]=57 + }, + [1146]={ + ["distance"]=6871, + ["mine_stage"]=53 + }, + [1147]={ + ["distance"]=6877, + ["mine_stage"]=5 + }, + [1148]={ + ["distance"]=6883, + ["mine_stage"]=36 + }, + [1149]={ + ["distance"]=6889, + ["mine_stage"]=26 + }, + [1150]={ + ["distance"]=6895, + ["mine_stage"]=27 + }, + [1151]={ + ["distance"]=6901, + ["mine_stage"]=68 + }, + [1152]={ + ["distance"]=6907, + ["mine_stage"]=37 + }, + [1153]={ + ["distance"]=6913, + ["mine_stage"]=17 + }, + [1154]={ + ["distance"]=6919, + ["mine_stage"]=50 + }, + [1155]={ + ["distance"]=6925, + ["mine_stage"]=9 + }, + [1156]={ + ["distance"]=6931, + ["mine_stage"]=30 + }, + [1157]={ + ["distance"]=6937, + ["mine_stage"]=4 + }, + [1158]={ + ["distance"]=6943, + ["mine_stage"]=41 + }, + [1159]={ + ["distance"]=6949, + ["mine_stage"]=56 + }, + [1160]={ + ["distance"]=6955, + ["mine_stage"]=39 + }, + [1161]={ + ["distance"]=6961, + ["mine_stage"]=47 + }, + [1162]={ + ["distance"]=6967, + ["mine_stage"]=43 + }, + [1163]={ + ["distance"]=6973, + ["mine_stage"]=11 + }, + [1164]={ + ["distance"]=6979, + ["mine_stage"]=27 + }, + [1165]={ + ["distance"]=6985, + ["mine_stage"]=31 + }, + [1166]={ + ["distance"]=6991, + ["mine_stage"]=14 + }, + [1167]={ + ["distance"]=6997, + ["mine_stage"]=5 + }, + [1168]={ + ["distance"]=7003, + ["mine_stage"]=12 + }, + [1169]={ + ["distance"]=7009, + ["mine_stage"]=6 + }, + [1170]={ + ["distance"]=7015, + ["mine_stage"]=10 + }, + [1171]={ + ["distance"]=7021, + ["mine_stage"]=3 + }, + [1172]={ + ["distance"]=7027, + ["mine_stage"]=9 + }, + [1173]={ + ["distance"]=7033, + ["mine_stage"]=58 + }, + [1174]={ + ["distance"]=7039, + ["mine_stage"]=36 + }, + [1175]={ + ["distance"]=7045, + ["mine_stage"]=50 + }, + [1176]={ + ["distance"]=7051, + ["mine_stage"]=18 + }, + [1177]={ + ["distance"]=7057, + ["mine_stage"]=38 + }, + [1178]={ + ["distance"]=7063, + ["mine_stage"]=16 + }, + [1179]={ + ["distance"]=7069, + ["mine_stage"]=41 + }, + [1180]={ + ["distance"]=7075, + ["mine_stage"]=45 + }, + [1181]={ + ["distance"]=7081, + ["mine_stage"]=9 + }, + [1182]={ + ["distance"]=7087, + ["mine_stage"]=33 + }, + [1183]={ + ["distance"]=7093, + ["mine_stage"]=1 + }, + [1184]={ + ["distance"]=7099, + ["mine_stage"]=54 + }, + [1185]={ + ["distance"]=7105, + ["mine_stage"]=40 + }, + [1186]={ + ["distance"]=7111, + ["mine_stage"]=4 + }, + [1187]={ + ["distance"]=7117, + ["mine_stage"]=29 + }, + [1188]={ + ["distance"]=7123, + ["mine_stage"]=5 + }, + [1189]={ + ["distance"]=7129, + ["mine_stage"]=20 + }, + [1190]={ + ["distance"]=7135, + ["mine_stage"]=54 + }, + [1191]={ + ["distance"]=7141, + ["mine_stage"]=49 + }, + [1192]={ + ["distance"]=7147, + ["mine_stage"]=8 + }, + [1193]={ + ["distance"]=7153, + ["mine_stage"]=10 + }, + [1194]={ + ["distance"]=7159, + ["mine_stage"]=58 + }, + [1195]={ + ["distance"]=7165, + ["mine_stage"]=36 + }, + [1196]={ + ["distance"]=7171, + ["mine_stage"]=52 + }, + [1197]={ + ["distance"]=7177, + ["mine_stage"]=40 + }, + [1198]={ + ["distance"]=7183, + ["mine_stage"]=10 + }, + [1199]={ + ["distance"]=7189, + ["mine_stage"]=43 + }, + [1200]={ + ["distance"]=7195, + ["mine_stage"]=15 + }, + [1201]={ + ["distance"]=7201, + ["mine_stage"]=66 + }, + [1202]={ + ["distance"]=7207, + ["mine_stage"]=22 + }, + [1203]={ + ["distance"]=7213, + ["mine_stage"]=18 + }, + [1204]={ + ["distance"]=7219, + ["mine_stage"]=21 + }, + [1205]={ + ["distance"]=7225, + ["mine_stage"]=37 + }, + [1206]={ + ["distance"]=7231, + ["mine_stage"]=10 + }, + [1207]={ + ["distance"]=7237, + ["mine_stage"]=31 + }, + [1208]={ + ["distance"]=7243, + ["mine_stage"]=35 + }, + [1209]={ + ["distance"]=7249, + ["mine_stage"]=51 + }, + [1210]={ + ["distance"]=7255, + ["mine_stage"]=60 + }, + [1211]={ + ["distance"]=7261, + ["mine_stage"]=12 + }, + [1212]={ + ["distance"]=7267, + ["mine_stage"]=48 + }, + [1213]={ + ["distance"]=7273, + ["mine_stage"]=10 + }, + [1214]={ + ["distance"]=7279, + ["mine_stage"]=20 + }, + [1215]={ + ["distance"]=7285, + ["mine_stage"]=57 + }, + [1216]={ + ["distance"]=7291, + ["mine_stage"]=21 + }, + [1217]={ + ["distance"]=7297, + ["mine_stage"]=24 + }, + [1218]={ + ["distance"]=7303, + ["mine_stage"]=24 + }, + [1219]={ + ["distance"]=7309, + ["mine_stage"]=26 + }, + [1220]={ + ["distance"]=7315, + ["mine_stage"]=49 + }, + [1221]={ + ["distance"]=7321, + ["mine_stage"]=25 + }, + [1222]={ + ["distance"]=7327, + ["mine_stage"]=58 + }, + [1223]={ + ["distance"]=7333, + ["mine_stage"]=58 + }, + [1224]={ + ["distance"]=7339, + ["mine_stage"]=26 + }, + [1225]={ + ["distance"]=7345, + ["mine_stage"]=20 + }, + [1226]={ + ["distance"]=7351, + ["mine_stage"]=59 + }, + [1227]={ + ["distance"]=7357, + ["mine_stage"]=32 + }, + [1228]={ + ["distance"]=7363, + ["mine_stage"]=1 + }, + [1229]={ + ["distance"]=7369, + ["mine_stage"]=51 + }, + [1230]={ + ["distance"]=7375, + ["mine_stage"]=52 + }, + [1231]={ + ["distance"]=7381, + ["mine_stage"]=34 + }, + [1232]={ + ["distance"]=7387, + ["mine_stage"]=50 + }, + [1233]={ + ["distance"]=7393, + ["mine_stage"]=9 + }, + [1234]={ + ["distance"]=7399, + ["mine_stage"]=7 + }, + [1235]={ + ["distance"]=7405, + ["mine_stage"]=5 + }, + [1236]={ + ["distance"]=7411, + ["mine_stage"]=19 + }, + [1237]={ + ["distance"]=7417, + ["mine_stage"]=41 + }, + [1238]={ + ["distance"]=7423, + ["mine_stage"]=6 + }, + [1239]={ + ["distance"]=7429, + ["mine_stage"]=1 + }, + [1240]={ + ["distance"]=7435, + ["mine_stage"]=15 + }, + [1241]={ + ["distance"]=7441, + ["mine_stage"]=16 + }, + [1242]={ + ["distance"]=7447, + ["mine_stage"]=46 + }, + [1243]={ + ["distance"]=7453, + ["mine_stage"]=22 + }, + [1244]={ + ["distance"]=7459, + ["mine_stage"]=21 + }, + [1245]={ + ["distance"]=7465, + ["mine_stage"]=19 + }, + [1246]={ + ["distance"]=7471, + ["mine_stage"]=19 + }, + [1247]={ + ["distance"]=7477, + ["mine_stage"]=5 + }, + [1248]={ + ["distance"]=7483, + ["mine_stage"]=34 + }, + [1249]={ + ["distance"]=7489, + ["mine_stage"]=34 + }, + [1250]={ + ["distance"]=7495, + ["mine_stage"]=38 + }, + [1251]={ + ["distance"]=7501, + ["mine_stage"]=69 + }, + [1252]={ + ["distance"]=7507, + ["mine_stage"]=13 + }, + [1253]={ + ["distance"]=7513, + ["mine_stage"]=34 + }, + [1254]={ + ["distance"]=7519, + ["mine_stage"]=51 + }, + [1255]={ + ["distance"]=7525, + ["mine_stage"]=57 + }, + [1256]={ + ["distance"]=7531, + ["mine_stage"]=41 + }, + [1257]={ + ["distance"]=7537, + ["mine_stage"]=43 + }, + [1258]={ + ["distance"]=7543, + ["mine_stage"]=34 + }, + [1259]={ + ["distance"]=7549, + ["mine_stage"]=28 + }, + [1260]={ + ["distance"]=7555, + ["mine_stage"]=15 + }, + [1261]={ + ["distance"]=7561, + ["mine_stage"]=59 + }, + [1262]={ + ["distance"]=7567, + ["mine_stage"]=38 + }, + [1263]={ + ["distance"]=7573, + ["mine_stage"]=16 + }, + [1264]={ + ["distance"]=7579, + ["mine_stage"]=58 + }, + [1265]={ + ["distance"]=7585, + ["mine_stage"]=14 + }, + [1266]={ + ["distance"]=7591, + ["mine_stage"]=38 + }, + [1267]={ + ["distance"]=7597, + ["mine_stage"]=5 + }, + [1268]={ + ["distance"]=7603, + ["mine_stage"]=45 + }, + [1269]={ + ["distance"]=7609, + ["mine_stage"]=43 + }, + [1270]={ + ["distance"]=7615, + ["mine_stage"]=15 + }, + [1271]={ + ["distance"]=7621, + ["mine_stage"]=48 + }, + [1272]={ + ["distance"]=7627, + ["mine_stage"]=42 + }, + [1273]={ + ["distance"]=7633, + ["mine_stage"]=46 + }, + [1274]={ + ["distance"]=7639, + ["mine_stage"]=40 + }, + [1275]={ + ["distance"]=7645, + ["mine_stage"]=31 + }, + [1276]={ + ["distance"]=7651, + ["mine_stage"]=42 + }, + [1277]={ + ["distance"]=7657, + ["mine_stage"]=1 + }, + [1278]={ + ["distance"]=7663, + ["mine_stage"]=46 + }, + [1279]={ + ["distance"]=7669, + ["mine_stage"]=7 + }, + [1280]={ + ["distance"]=7675, + ["mine_stage"]=50 + }, + [1281]={ + ["distance"]=7681, + ["mine_stage"]=58 + }, + [1282]={ + ["distance"]=7687, + ["mine_stage"]=56 + }, + [1283]={ + ["distance"]=7693, + ["mine_stage"]=2 + }, + [1284]={ + ["distance"]=7699, + ["mine_stage"]=59 + }, + [1285]={ + ["distance"]=7705, + ["mine_stage"]=15 + }, + [1286]={ + ["distance"]=7711, + ["mine_stage"]=12 + }, + [1287]={ + ["distance"]=7717, + ["mine_stage"]=59 + }, + [1288]={ + ["distance"]=7723, + ["mine_stage"]=24 + }, + [1289]={ + ["distance"]=7729, + ["mine_stage"]=24 + }, + [1290]={ + ["distance"]=7735, + ["mine_stage"]=20 + }, + [1291]={ + ["distance"]=7741, + ["mine_stage"]=17 + }, + [1292]={ + ["distance"]=7747, + ["mine_stage"]=39 + }, + [1293]={ + ["distance"]=7753, + ["mine_stage"]=56 + }, + [1294]={ + ["distance"]=7759, + ["mine_stage"]=38 + }, + [1295]={ + ["distance"]=7765, + ["mine_stage"]=18 + }, + [1296]={ + ["distance"]=7771, + ["mine_stage"]=49 + }, + [1297]={ + ["distance"]=7777, + ["mine_stage"]=12 + }, + [1298]={ + ["distance"]=7783, + ["mine_stage"]=32 + }, + [1299]={ + ["distance"]=7789, + ["mine_stage"]=40 + }, + [1300]={ + ["distance"]=7795, + ["mine_stage"]=59 + }, + [1301]={ + ["distance"]=7801, + ["mine_stage"]=64 + }, + [1302]={ + ["distance"]=7807, + ["mine_stage"]=5 + }, + [1303]={ + ["distance"]=7813, + ["mine_stage"]=41 + }, + [1304]={ + ["distance"]=7819, + ["mine_stage"]=11 + }, + [1305]={ + ["distance"]=7825, + ["mine_stage"]=3 + }, + [1306]={ + ["distance"]=7831, + ["mine_stage"]=16 + }, + [1307]={ + ["distance"]=7837, + ["mine_stage"]=51 + }, + [1308]={ + ["distance"]=7843, + ["mine_stage"]=44 + }, + [1309]={ + ["distance"]=7849, + ["mine_stage"]=6 + }, + [1310]={ + ["distance"]=7855, + ["mine_stage"]=60 + }, + [1311]={ + ["distance"]=7861, + ["mine_stage"]=47 + }, + [1312]={ + ["distance"]=7867, + ["mine_stage"]=29 + }, + [1313]={ + ["distance"]=7873, + ["mine_stage"]=37 + }, + [1314]={ + ["distance"]=7879, + ["mine_stage"]=7 + }, + [1315]={ + ["distance"]=7885, + ["mine_stage"]=24 + }, + [1316]={ + ["distance"]=7891, + ["mine_stage"]=29 + }, + [1317]={ + ["distance"]=7897, + ["mine_stage"]=54 + }, + [1318]={ + ["distance"]=7903, + ["mine_stage"]=26 + }, + [1319]={ + ["distance"]=7909, + ["mine_stage"]=32 + }, + [1320]={ + ["distance"]=7915, + ["mine_stage"]=11 + }, + [1321]={ + ["distance"]=7921, + ["mine_stage"]=10 + }, + [1322]={ + ["distance"]=7927, + ["mine_stage"]=14 + }, + [1323]={ + ["distance"]=7933, + ["mine_stage"]=25 + }, + [1324]={ + ["distance"]=7939, + ["mine_stage"]=46 + }, + [1325]={ + ["distance"]=7945, + ["mine_stage"]=28 + }, + [1326]={ + ["distance"]=7951, + ["mine_stage"]=25 + }, + [1327]={ + ["distance"]=7957, + ["mine_stage"]=53 + }, + [1328]={ + ["distance"]=7963, + ["mine_stage"]=34 + }, + [1329]={ + ["distance"]=7969, + ["mine_stage"]=46 + }, + [1330]={ + ["distance"]=7975, + ["mine_stage"]=20 + }, + [1331]={ + ["distance"]=7981, + ["mine_stage"]=54 + }, + [1332]={ + ["distance"]=7987, + ["mine_stage"]=25 + }, + [1333]={ + ["distance"]=7993, + ["mine_stage"]=1 + }, + [1334]={ + ["distance"]=7999, + ["mine_stage"]=11 + }, + [1335]={ + ["distance"]=8005, + ["mine_stage"]=32 + }, + [1336]={ + ["distance"]=8011, + ["mine_stage"]=50 + }, + [1337]={ + ["distance"]=8017, + ["mine_stage"]=59 + }, + [1338]={ + ["distance"]=8023, + ["mine_stage"]=43 + }, + [1339]={ + ["distance"]=8029, + ["mine_stage"]=8 + }, + [1340]={ + ["distance"]=8035, + ["mine_stage"]=18 + }, + [1341]={ + ["distance"]=8041, + ["mine_stage"]=12 + }, + [1342]={ + ["distance"]=8047, + ["mine_stage"]=16 + }, + [1343]={ + ["distance"]=8053, + ["mine_stage"]=42 + }, + [1344]={ + ["distance"]=8059, + ["mine_stage"]=10 + }, + [1345]={ + ["distance"]=8065, + ["mine_stage"]=44 + }, + [1346]={ + ["distance"]=8071, + ["mine_stage"]=6 + }, + [1347]={ + ["distance"]=8077, + ["mine_stage"]=15 + }, + [1348]={ + ["distance"]=8083, + ["mine_stage"]=30 + }, + [1349]={ + ["distance"]=8089, + ["mine_stage"]=12 + }, + [1350]={ + ["distance"]=8095, + ["mine_stage"]=41 + }, + [1351]={ + ["distance"]=8101, + ["mine_stage"]=67 + }, + [1352]={ + ["distance"]=8107, + ["mine_stage"]=34 + }, + [1353]={ + ["distance"]=8113, + ["mine_stage"]=36 + }, + [1354]={ + ["distance"]=8119, + ["mine_stage"]=36 + }, + [1355]={ + ["distance"]=8125, + ["mine_stage"]=37 + }, + [1356]={ + ["distance"]=8131, + ["mine_stage"]=8 + }, + [1357]={ + ["distance"]=8137, + ["mine_stage"]=48 + }, + [1358]={ + ["distance"]=8143, + ["mine_stage"]=15 + }, + [1359]={ + ["distance"]=8149, + ["mine_stage"]=18 + }, + [1360]={ + ["distance"]=8155, + ["mine_stage"]=57 + }, + [1361]={ + ["distance"]=8161, + ["mine_stage"]=1 + }, + [1362]={ + ["distance"]=8167, + ["mine_stage"]=26 + }, + [1363]={ + ["distance"]=8173, + ["mine_stage"]=7 + }, + [1364]={ + ["distance"]=8179, + ["mine_stage"]=25 + }, + [1365]={ + ["distance"]=8185, + ["mine_stage"]=45 + }, + [1366]={ + ["distance"]=8191, + ["mine_stage"]=27 + }, + [1367]={ + ["distance"]=8197, + ["mine_stage"]=60 + }, + [1368]={ + ["distance"]=8203, + ["mine_stage"]=10 + }, + [1369]={ + ["distance"]=8209, + ["mine_stage"]=54 + }, + [1370]={ + ["distance"]=8215, + ["mine_stage"]=11 + }, + [1371]={ + ["distance"]=8221, + ["mine_stage"]=20 + }, + [1372]={ + ["distance"]=8227, + ["mine_stage"]=5 + }, + [1373]={ + ["distance"]=8233, + ["mine_stage"]=40 + }, + [1374]={ + ["distance"]=8239, + ["mine_stage"]=59 + }, + [1375]={ + ["distance"]=8245, + ["mine_stage"]=6 + }, + [1376]={ + ["distance"]=8251, + ["mine_stage"]=18 + }, + [1377]={ + ["distance"]=8257, + ["mine_stage"]=37 + }, + [1378]={ + ["distance"]=8263, + ["mine_stage"]=22 + }, + [1379]={ + ["distance"]=8269, + ["mine_stage"]=16 + }, + [1380]={ + ["distance"]=8275, + ["mine_stage"]=36 + }, + [1381]={ + ["distance"]=8281, + ["mine_stage"]=10 + }, + [1382]={ + ["distance"]=8287, + ["mine_stage"]=44 + }, + [1383]={ + ["distance"]=8293, + ["mine_stage"]=20 + }, + [1384]={ + ["distance"]=8299, + ["mine_stage"]=50 + }, + [1385]={ + ["distance"]=8305, + ["mine_stage"]=60 + }, + [1386]={ + ["distance"]=8311, + ["mine_stage"]=42 + }, + [1387]={ + ["distance"]=8317, + ["mine_stage"]=54 + }, + [1388]={ + ["distance"]=8323, + ["mine_stage"]=46 + }, + [1389]={ + ["distance"]=8329, + ["mine_stage"]=32 + }, + [1390]={ + ["distance"]=8335, + ["mine_stage"]=40 + }, + [1391]={ + ["distance"]=8341, + ["mine_stage"]=4 + }, + [1392]={ + ["distance"]=8347, + ["mine_stage"]=38 + }, + [1393]={ + ["distance"]=8353, + ["mine_stage"]=40 + }, + [1394]={ + ["distance"]=8359, + ["mine_stage"]=17 + }, + [1395]={ + ["distance"]=8365, + ["mine_stage"]=57 + }, + [1396]={ + ["distance"]=8371, + ["mine_stage"]=51 + }, + [1397]={ + ["distance"]=8377, + ["mine_stage"]=58 + }, + [1398]={ + ["distance"]=8383, + ["mine_stage"]=45 + }, + [1399]={ + ["distance"]=8389, + ["mine_stage"]=30 + }, + [1400]={ + ["distance"]=8395, + ["mine_stage"]=42 + }, + [1401]={ + ["distance"]=8401, + ["mine_stage"]=65 + }, + [1402]={ + ["distance"]=8407, + ["mine_stage"]=58 + }, + [1403]={ + ["distance"]=8413, + ["mine_stage"]=8 + }, + [1404]={ + ["distance"]=8419, + ["mine_stage"]=12 + }, + [1405]={ + ["distance"]=8425, + ["mine_stage"]=14 + }, + [1406]={ + ["distance"]=8431, + ["mine_stage"]=39 + }, + [1407]={ + ["distance"]=8437, + ["mine_stage"]=30 + }, + [1408]={ + ["distance"]=8443, + ["mine_stage"]=52 + }, + [1409]={ + ["distance"]=8449, + ["mine_stage"]=6 + }, + [1410]={ + ["distance"]=8455, + ["mine_stage"]=39 + }, + [1411]={ + ["distance"]=8461, + ["mine_stage"]=5 + }, + [1412]={ + ["distance"]=8467, + ["mine_stage"]=59 + }, + [1413]={ + ["distance"]=8473, + ["mine_stage"]=33 + }, + [1414]={ + ["distance"]=8479, + ["mine_stage"]=45 + }, + [1415]={ + ["distance"]=8485, + ["mine_stage"]=6 + }, + [1416]={ + ["distance"]=8491, + ["mine_stage"]=34 + }, + [1417]={ + ["distance"]=8497, + ["mine_stage"]=15 + }, + [1418]={ + ["distance"]=8503, + ["mine_stage"]=50 + }, + [1419]={ + ["distance"]=8509, + ["mine_stage"]=42 + }, + [1420]={ + ["distance"]=8515, + ["mine_stage"]=25 + }, + [1421]={ + ["distance"]=8521, + ["mine_stage"]=22 + }, + [1422]={ + ["distance"]=8527, + ["mine_stage"]=13 + }, + [1423]={ + ["distance"]=8533, + ["mine_stage"]=52 + }, + [1424]={ + ["distance"]=8539, + ["mine_stage"]=53 + }, + [1425]={ + ["distance"]=8545, + ["mine_stage"]=33 + }, + [1426]={ + ["distance"]=8551, + ["mine_stage"]=16 + }, + [1427]={ + ["distance"]=8557, + ["mine_stage"]=57 + }, + [1428]={ + ["distance"]=8563, + ["mine_stage"]=19 + }, + [1429]={ + ["distance"]=8569, + ["mine_stage"]=48 + }, + [1430]={ + ["distance"]=8575, + ["mine_stage"]=7 + }, + [1431]={ + ["distance"]=8581, + ["mine_stage"]=33 + }, + [1432]={ + ["distance"]=8587, + ["mine_stage"]=27 + }, + [1433]={ + ["distance"]=8593, + ["mine_stage"]=20 + }, + [1434]={ + ["distance"]=8599, + ["mine_stage"]=14 + }, + [1435]={ + ["distance"]=8605, + ["mine_stage"]=23 + }, + [1436]={ + ["distance"]=8611, + ["mine_stage"]=34 + }, + [1437]={ + ["distance"]=8617, + ["mine_stage"]=34 + }, + [1438]={ + ["distance"]=8623, + ["mine_stage"]=19 + }, + [1439]={ + ["distance"]=8629, + ["mine_stage"]=10 + }, + [1440]={ + ["distance"]=8635, + ["mine_stage"]=48 + }, + [1441]={ + ["distance"]=8641, + ["mine_stage"]=55 + }, + [1442]={ + ["distance"]=8647, + ["mine_stage"]=38 + }, + [1443]={ + ["distance"]=8653, + ["mine_stage"]=9 + }, + [1444]={ + ["distance"]=8659, + ["mine_stage"]=50 + }, + [1445]={ + ["distance"]=8665, + ["mine_stage"]=11 + }, + [1446]={ + ["distance"]=8671, + ["mine_stage"]=9 + }, + [1447]={ + ["distance"]=8677, + ["mine_stage"]=37 + }, + [1448]={ + ["distance"]=8683, + ["mine_stage"]=13 + }, + [1449]={ + ["distance"]=8689, + ["mine_stage"]=32 + }, + [1450]={ + ["distance"]=8695, + ["mine_stage"]=57 + }, + [1451]={ + ["distance"]=8701, + ["mine_stage"]=68 + }, + [1452]={ + ["distance"]=8707, + ["mine_stage"]=1 + }, + [1453]={ + ["distance"]=8713, + ["mine_stage"]=54 + }, + [1454]={ + ["distance"]=8719, + ["mine_stage"]=46 + }, + [1455]={ + ["distance"]=8725, + ["mine_stage"]=34 + }, + [1456]={ + ["distance"]=8731, + ["mine_stage"]=18 + }, + [1457]={ + ["distance"]=8737, + ["mine_stage"]=41 + }, + [1458]={ + ["distance"]=8743, + ["mine_stage"]=48 + }, + [1459]={ + ["distance"]=8749, + ["mine_stage"]=19 + }, + [1460]={ + ["distance"]=8755, + ["mine_stage"]=41 + }, + [1461]={ + ["distance"]=8761, + ["mine_stage"]=19 + }, + [1462]={ + ["distance"]=8767, + ["mine_stage"]=36 + }, + [1463]={ + ["distance"]=8773, + ["mine_stage"]=18 + }, + [1464]={ + ["distance"]=8779, + ["mine_stage"]=59 + }, + [1465]={ + ["distance"]=8785, + ["mine_stage"]=38 + }, + [1466]={ + ["distance"]=8791, + ["mine_stage"]=11 + }, + [1467]={ + ["distance"]=8797, + ["mine_stage"]=59 + }, + [1468]={ + ["distance"]=8803, + ["mine_stage"]=3 + }, + [1469]={ + ["distance"]=8809, + ["mine_stage"]=51 + }, + [1470]={ + ["distance"]=8815, + ["mine_stage"]=28 + }, + [1471]={ + ["distance"]=8821, + ["mine_stage"]=3 + }, + [1472]={ + ["distance"]=8827, + ["mine_stage"]=6 + }, + [1473]={ + ["distance"]=8833, + ["mine_stage"]=22 + }, + [1474]={ + ["distance"]=8839, + ["mine_stage"]=1 + }, + [1475]={ + ["distance"]=8845, + ["mine_stage"]=52 + }, + [1476]={ + ["distance"]=8851, + ["mine_stage"]=55 + }, + [1477]={ + ["distance"]=8857, + ["mine_stage"]=6 + }, + [1478]={ + ["distance"]=8863, + ["mine_stage"]=3 + }, + [1479]={ + ["distance"]=8869, + ["mine_stage"]=2 + }, + [1480]={ + ["distance"]=8875, + ["mine_stage"]=58 + }, + [1481]={ + ["distance"]=8881, + ["mine_stage"]=30 + }, + [1482]={ + ["distance"]=8887, + ["mine_stage"]=10 + }, + [1483]={ + ["distance"]=8893, + ["mine_stage"]=7 + }, + [1484]={ + ["distance"]=8899, + ["mine_stage"]=23 + }, + [1485]={ + ["distance"]=8905, + ["mine_stage"]=26 + }, + [1486]={ + ["distance"]=8911, + ["mine_stage"]=19 + }, + [1487]={ + ["distance"]=8917, + ["mine_stage"]=46 + }, + [1488]={ + ["distance"]=8923, + ["mine_stage"]=4 + }, + [1489]={ + ["distance"]=8929, + ["mine_stage"]=26 + }, + [1490]={ + ["distance"]=8935, + ["mine_stage"]=34 + }, + [1491]={ + ["distance"]=8941, + ["mine_stage"]=15 + }, + [1492]={ + ["distance"]=8947, + ["mine_stage"]=41 + }, + [1493]={ + ["distance"]=8953, + ["mine_stage"]=48 + }, + [1494]={ + ["distance"]=8959, + ["mine_stage"]=45 + }, + [1495]={ + ["distance"]=8965, + ["mine_stage"]=27 + }, + [1496]={ + ["distance"]=8971, + ["mine_stage"]=14 + }, + [1497]={ + ["distance"]=8977, + ["mine_stage"]=55 + }, + [1498]={ + ["distance"]=8983, + ["mine_stage"]=20 + }, + [1499]={ + ["distance"]=8989, + ["mine_stage"]=56 + }, + [1500]={ + ["distance"]=8995, + ["mine_stage"]=57 + }, + [1501]={ + ["distance"]=9001, + ["mine_stage"]=66 + }, + [1502]={ + ["distance"]=9007, + ["mine_stage"]=57 + }, + [1503]={ + ["distance"]=9013, + ["mine_stage"]=3 + }, + [1504]={ + ["distance"]=9019, + ["mine_stage"]=27 + }, + [1505]={ + ["distance"]=9025, + ["mine_stage"]=53 + }, + [1506]={ + ["distance"]=9031, + ["mine_stage"]=32 + }, + [1507]={ + ["distance"]=9037, + ["mine_stage"]=19 + }, + [1508]={ + ["distance"]=9043, + ["mine_stage"]=47 + }, + [1509]={ + ["distance"]=9049, + ["mine_stage"]=51 + }, + [1510]={ + ["distance"]=9055, + ["mine_stage"]=14 + }, + [1511]={ + ["distance"]=9061, + ["mine_stage"]=57 + }, + [1512]={ + ["distance"]=9067, + ["mine_stage"]=28 + }, + [1513]={ + ["distance"]=9073, + ["mine_stage"]=14 + }, + [1514]={ + ["distance"]=9079, + ["mine_stage"]=11 + }, + [1515]={ + ["distance"]=9085, + ["mine_stage"]=27 + }, + [1516]={ + ["distance"]=9091, + ["mine_stage"]=4 + }, + [1517]={ + ["distance"]=9097, + ["mine_stage"]=17 + }, + [1518]={ + ["distance"]=9103, + ["mine_stage"]=10 + }, + [1519]={ + ["distance"]=9109, + ["mine_stage"]=31 + }, + [1520]={ + ["distance"]=9115, + ["mine_stage"]=17 + }, + [1521]={ + ["distance"]=9121, + ["mine_stage"]=40 + }, + [1522]={ + ["distance"]=9127, + ["mine_stage"]=23 + }, + [1523]={ + ["distance"]=9133, + ["mine_stage"]=6 + }, + [1524]={ + ["distance"]=9139, + ["mine_stage"]=56 + }, + [1525]={ + ["distance"]=9145, + ["mine_stage"]=41 + }, + [1526]={ + ["distance"]=9151, + ["mine_stage"]=33 + }, + [1527]={ + ["distance"]=9157, + ["mine_stage"]=50 + }, + [1528]={ + ["distance"]=9163, + ["mine_stage"]=34 + }, + [1529]={ + ["distance"]=9169, + ["mine_stage"]=43 + }, + [1530]={ + ["distance"]=9175, + ["mine_stage"]=28 + }, + [1531]={ + ["distance"]=9181, + ["mine_stage"]=28 + }, + [1532]={ + ["distance"]=9187, + ["mine_stage"]=44 + }, + [1533]={ + ["distance"]=9193, + ["mine_stage"]=19 + }, + [1534]={ + ["distance"]=9199, + ["mine_stage"]=22 + }, + [1535]={ + ["distance"]=9205, + ["mine_stage"]=48 + }, + [1536]={ + ["distance"]=9211, + ["mine_stage"]=42 + }, + [1537]={ + ["distance"]=9217, + ["mine_stage"]=12 + }, + [1538]={ + ["distance"]=9223, + ["mine_stage"]=29 + }, + [1539]={ + ["distance"]=9229, + ["mine_stage"]=26 + }, + [1540]={ + ["distance"]=9235, + ["mine_stage"]=41 + }, + [1541]={ + ["distance"]=9241, + ["mine_stage"]=51 + }, + [1542]={ + ["distance"]=9247, + ["mine_stage"]=36 + }, + [1543]={ + ["distance"]=9253, + ["mine_stage"]=4 + }, + [1544]={ + ["distance"]=9259, + ["mine_stage"]=46 + }, + [1545]={ + ["distance"]=9265, + ["mine_stage"]=36 + }, + [1546]={ + ["distance"]=9271, + ["mine_stage"]=37 + }, + [1547]={ + ["distance"]=9277, + ["mine_stage"]=9 + }, + [1548]={ + ["distance"]=9283, + ["mine_stage"]=7 + }, + [1549]={ + ["distance"]=9289, + ["mine_stage"]=53 + }, + [1550]={ + ["distance"]=9295, + ["mine_stage"]=6 + }, + [1551]={ + ["distance"]=9301, + ["mine_stage"]=69 + }, + [1552]={ + ["distance"]=9307, + ["mine_stage"]=16 + }, + [1553]={ + ["distance"]=9313, + ["mine_stage"]=9 + }, + [1554]={ + ["distance"]=9319, + ["mine_stage"]=10 + }, + [1555]={ + ["distance"]=9325, + ["mine_stage"]=39 + }, + [1556]={ + ["distance"]=9331, + ["mine_stage"]=4 + }, + [1557]={ + ["distance"]=9337, + ["mine_stage"]=34 + }, + [1558]={ + ["distance"]=9343, + ["mine_stage"]=29 + }, + [1559]={ + ["distance"]=9349, + ["mine_stage"]=22 + }, + [1560]={ + ["distance"]=9355, + ["mine_stage"]=24 + }, + [1561]={ + ["distance"]=9361, + ["mine_stage"]=34 + }, + [1562]={ + ["distance"]=9367, + ["mine_stage"]=53 + }, + [1563]={ + ["distance"]=9373, + ["mine_stage"]=22 + }, + [1564]={ + ["distance"]=9379, + ["mine_stage"]=57 + }, + [1565]={ + ["distance"]=9385, + ["mine_stage"]=41 + }, + [1566]={ + ["distance"]=9391, + ["mine_stage"]=9 + }, + [1567]={ + ["distance"]=9397, + ["mine_stage"]=34 + }, + [1568]={ + ["distance"]=9403, + ["mine_stage"]=46 + }, + [1569]={ + ["distance"]=9409, + ["mine_stage"]=6 + }, + [1570]={ + ["distance"]=9415, + ["mine_stage"]=58 + }, + [1571]={ + ["distance"]=9421, + ["mine_stage"]=37 + }, + [1572]={ + ["distance"]=9427, + ["mine_stage"]=10 + }, + [1573]={ + ["distance"]=9433, + ["mine_stage"]=12 + }, + [1574]={ + ["distance"]=9439, + ["mine_stage"]=50 + }, + [1575]={ + ["distance"]=9445, + ["mine_stage"]=52 + }, + [1576]={ + ["distance"]=9451, + ["mine_stage"]=29 + }, + [1577]={ + ["distance"]=9457, + ["mine_stage"]=26 + }, + [1578]={ + ["distance"]=9463, + ["mine_stage"]=45 + }, + [1579]={ + ["distance"]=9469, + ["mine_stage"]=7 + }, + [1580]={ + ["distance"]=9475, + ["mine_stage"]=21 + }, + [1581]={ + ["distance"]=9481, + ["mine_stage"]=15 + }, + [1582]={ + ["distance"]=9487, + ["mine_stage"]=33 + }, + [1583]={ + ["distance"]=9493, + ["mine_stage"]=29 + }, + [1584]={ + ["distance"]=9499, + ["mine_stage"]=5 + }, + [1585]={ + ["distance"]=9505, + ["mine_stage"]=50 + }, + [1586]={ + ["distance"]=9511, + ["mine_stage"]=37 + }, + [1587]={ + ["distance"]=9517, + ["mine_stage"]=29 + }, + [1588]={ + ["distance"]=9523, + ["mine_stage"]=54 + }, + [1589]={ + ["distance"]=9529, + ["mine_stage"]=36 + }, + [1590]={ + ["distance"]=9535, + ["mine_stage"]=45 + }, + [1591]={ + ["distance"]=9541, + ["mine_stage"]=18 + }, + [1592]={ + ["distance"]=9547, + ["mine_stage"]=51 + }, + [1593]={ + ["distance"]=9553, + ["mine_stage"]=24 + }, + [1594]={ + ["distance"]=9559, + ["mine_stage"]=22 + }, + [1595]={ + ["distance"]=9565, + ["mine_stage"]=50 + }, + [1596]={ + ["distance"]=9571, + ["mine_stage"]=13 + }, + [1597]={ + ["distance"]=9577, + ["mine_stage"]=50 + }, + [1598]={ + ["distance"]=9583, + ["mine_stage"]=34 + }, + [1599]={ + ["distance"]=9589, + ["mine_stage"]=33 + }, + [1600]={ + ["distance"]=9595, + ["mine_stage"]=17 + }, + [1601]={ + ["distance"]=9601, + ["mine_stage"]=64 + }, + [1602]={ + ["distance"]=9607, + ["mine_stage"]=34 + }, + [1603]={ + ["distance"]=9613, + ["mine_stage"]=7 + }, + [1604]={ + ["distance"]=9619, + ["mine_stage"]=35 + }, + [1605]={ + ["distance"]=9625, + ["mine_stage"]=52 + }, + [1606]={ + ["distance"]=9631, + ["mine_stage"]=25 + }, + [1607]={ + ["distance"]=9637, + ["mine_stage"]=4 + }, + [1608]={ + ["distance"]=9643, + ["mine_stage"]=57 + }, + [1609]={ + ["distance"]=9649, + ["mine_stage"]=19 + }, + [1610]={ + ["distance"]=9655, + ["mine_stage"]=25 + }, + [1611]={ + ["distance"]=9661, + ["mine_stage"]=30 + }, + [1612]={ + ["distance"]=9667, + ["mine_stage"]=58 + }, + [1613]={ + ["distance"]=9673, + ["mine_stage"]=42 + }, + [1614]={ + ["distance"]=9679, + ["mine_stage"]=50 + }, + [1615]={ + ["distance"]=9685, + ["mine_stage"]=29 + }, + [1616]={ + ["distance"]=9691, + ["mine_stage"]=19 + }, + [1617]={ + ["distance"]=9697, + ["mine_stage"]=51 + }, + [1618]={ + ["distance"]=9703, + ["mine_stage"]=30 + }, + [1619]={ + ["distance"]=9709, + ["mine_stage"]=50 + }, + [1620]={ + ["distance"]=9715, + ["mine_stage"]=42 + }, + [1621]={ + ["distance"]=9721, + ["mine_stage"]=34 + }, + [1622]={ + ["distance"]=9727, + ["mine_stage"]=10 + }, + [1623]={ + ["distance"]=9733, + ["mine_stage"]=2 + }, + [1624]={ + ["distance"]=9739, + ["mine_stage"]=31 + }, + [1625]={ + ["distance"]=9745, + ["mine_stage"]=37 + }, + [1626]={ + ["distance"]=9751, + ["mine_stage"]=19 + }, + [1627]={ + ["distance"]=9757, + ["mine_stage"]=31 + }, + [1628]={ + ["distance"]=9763, + ["mine_stage"]=18 + }, + [1629]={ + ["distance"]=9769, + ["mine_stage"]=12 + }, + [1630]={ + ["distance"]=9775, + ["mine_stage"]=17 + }, + [1631]={ + ["distance"]=9781, + ["mine_stage"]=16 + }, + [1632]={ + ["distance"]=9787, + ["mine_stage"]=3 + }, + [1633]={ + ["distance"]=9793, + ["mine_stage"]=31 + }, + [1634]={ + ["distance"]=9799, + ["mine_stage"]=30 + }, + [1635]={ + ["distance"]=9805, + ["mine_stage"]=10 + }, + [1636]={ + ["distance"]=9811, + ["mine_stage"]=2 + }, + [1637]={ + ["distance"]=9817, + ["mine_stage"]=34 + }, + [1638]={ + ["distance"]=9823, + ["mine_stage"]=4 + }, + [1639]={ + ["distance"]=9829, + ["mine_stage"]=33 + }, + [1640]={ + ["distance"]=9835, + ["mine_stage"]=9 + }, + [1641]={ + ["distance"]=9841, + ["mine_stage"]=11 + }, + [1642]={ + ["distance"]=9847, + ["mine_stage"]=4 + }, + [1643]={ + ["distance"]=9853, + ["mine_stage"]=6 + }, + [1644]={ + ["distance"]=9859, + ["mine_stage"]=52 + }, + [1645]={ + ["distance"]=9865, + ["mine_stage"]=25 + }, + [1646]={ + ["distance"]=9871, + ["mine_stage"]=40 + }, + [1647]={ + ["distance"]=9877, + ["mine_stage"]=1 + }, + [1648]={ + ["distance"]=9883, + ["mine_stage"]=55 + }, + [1649]={ + ["distance"]=9889, + ["mine_stage"]=43 + }, + [1650]={ + ["distance"]=9895, + ["mine_stage"]=48 + }, + [1651]={ + ["distance"]=9901, + ["mine_stage"]=67 + }, + [1652]={ + ["distance"]=9907, + ["mine_stage"]=45 + }, + [1653]={ + ["distance"]=9913, + ["mine_stage"]=42 + }, + [1654]={ + ["distance"]=9919, + ["mine_stage"]=8 + }, + [1655]={ + ["distance"]=9925, + ["mine_stage"]=12 + }, + [1656]={ + ["distance"]=9931, + ["mine_stage"]=55 + }, + [1657]={ + ["distance"]=9937, + ["mine_stage"]=15 + }, + [1658]={ + ["distance"]=9943, + ["mine_stage"]=19 + }, + [1659]={ + ["distance"]=9949, + ["mine_stage"]=55 + }, + [1660]={ + ["distance"]=9955, + ["mine_stage"]=59 + }, + [1661]={ + ["distance"]=9961, + ["mine_stage"]=27 + }, + [1662]={ + ["distance"]=9967, + ["mine_stage"]=7 + }, + [1663]={ + ["distance"]=9973, + ["mine_stage"]=56 + }, + [1664]={ + ["distance"]=9979, + ["mine_stage"]=46 + }, + [1665]={ + ["distance"]=9985, + ["mine_stage"]=57 + }, + [1666]={ + ["distance"]=9991, + ["mine_stage"]=31 + }, + [1667]={ + ["distance"]=9997, + ["mine_stage"]=23 + }, + [1668]={ + ["distance"]=10003, + ["mine_stage"]=55 + }, + [1669]={ + ["distance"]=10009, + ["mine_stage"]=36 + }, + [1670]={ + ["distance"]=10015, + ["mine_stage"]=11 + }, + [1671]={ + ["distance"]=10021, + ["mine_stage"]=33 + }, + [1672]={ + ["distance"]=10027, + ["mine_stage"]=3 + }, + [1673]={ + ["distance"]=10033, + ["mine_stage"]=6 + }, + [1674]={ + ["distance"]=10039, + ["mine_stage"]=60 + }, + [1675]={ + ["distance"]=10045, + ["mine_stage"]=4 + }, + [1676]={ + ["distance"]=10051, + ["mine_stage"]=5 + }, + [1677]={ + ["distance"]=10057, + ["mine_stage"]=2 + }, + [1678]={ + ["distance"]=10063, + ["mine_stage"]=16 + }, + [1679]={ + ["distance"]=10069, + ["mine_stage"]=55 + }, + [1680]={ + ["distance"]=10075, + ["mine_stage"]=38 + }, + [1681]={ + ["distance"]=10081, + ["mine_stage"]=56 + }, + [1682]={ + ["distance"]=10087, + ["mine_stage"]=48 + }, + [1683]={ + ["distance"]=10093, + ["mine_stage"]=38 + }, + [1684]={ + ["distance"]=10099, + ["mine_stage"]=49 + }, + [1685]={ + ["distance"]=10105, + ["mine_stage"]=59 + }, + [1686]={ + ["distance"]=10111, + ["mine_stage"]=39 + }, + [1687]={ + ["distance"]=10117, + ["mine_stage"]=46 + }, + [1688]={ + ["distance"]=10123, + ["mine_stage"]=27 + }, + [1689]={ + ["distance"]=10129, + ["mine_stage"]=18 + }, + [1690]={ + ["distance"]=10135, + ["mine_stage"]=54 + }, + [1691]={ + ["distance"]=10141, + ["mine_stage"]=15 + }, + [1692]={ + ["distance"]=10147, + ["mine_stage"]=59 + }, + [1693]={ + ["distance"]=10153, + ["mine_stage"]=35 + }, + [1694]={ + ["distance"]=10159, + ["mine_stage"]=18 + }, + [1695]={ + ["distance"]=10165, + ["mine_stage"]=23 + }, + [1696]={ + ["distance"]=10171, + ["mine_stage"]=57 + }, + [1697]={ + ["distance"]=10177, + ["mine_stage"]=7 + }, + [1698]={ + ["distance"]=10183, + ["mine_stage"]=20 + }, + [1699]={ + ["distance"]=10189, + ["mine_stage"]=8 + }, + [1700]={ + ["distance"]=10195, + ["mine_stage"]=10 + }, + [1701]={ + ["distance"]=10201, + ["mine_stage"]=65 + }, + [1702]={ + ["distance"]=10207, + ["mine_stage"]=2 + }, + [1703]={ + ["distance"]=10213, + ["mine_stage"]=28 + }, + [1704]={ + ["distance"]=10219, + ["mine_stage"]=29 + }, + [1705]={ + ["distance"]=10225, + ["mine_stage"]=37 + }, + [1706]={ + ["distance"]=10231, + ["mine_stage"]=21 + }, + [1707]={ + ["distance"]=10237, + ["mine_stage"]=46 + }, + [1708]={ + ["distance"]=10243, + ["mine_stage"]=32 + }, + [1709]={ + ["distance"]=10249, + ["mine_stage"]=57 + }, + [1710]={ + ["distance"]=10255, + ["mine_stage"]=35 + }, + [1711]={ + ["distance"]=10261, + ["mine_stage"]=33 + }, + [1712]={ + ["distance"]=10267, + ["mine_stage"]=10 + }, + [1713]={ + ["distance"]=10273, + ["mine_stage"]=25 + }, + [1714]={ + ["distance"]=10279, + ["mine_stage"]=46 + }, + [1715]={ + ["distance"]=10285, + ["mine_stage"]=50 + }, + [1716]={ + ["distance"]=10291, + ["mine_stage"]=16 + }, + [1717]={ + ["distance"]=10297, + ["mine_stage"]=39 + }, + [1718]={ + ["distance"]=10303, + ["mine_stage"]=25 + }, + [1719]={ + ["distance"]=10309, + ["mine_stage"]=52 + }, + [1720]={ + ["distance"]=10315, + ["mine_stage"]=44 + }, + [1721]={ + ["distance"]=10321, + ["mine_stage"]=42 + }, + [1722]={ + ["distance"]=10327, + ["mine_stage"]=31 + }, + [1723]={ + ["distance"]=10333, + ["mine_stage"]=1 + }, + [1724]={ + ["distance"]=10339, + ["mine_stage"]=20 + }, + [1725]={ + ["distance"]=10345, + ["mine_stage"]=23 + }, + [1726]={ + ["distance"]=10351, + ["mine_stage"]=10 + }, + [1727]={ + ["distance"]=10357, + ["mine_stage"]=53 + }, + [1728]={ + ["distance"]=10363, + ["mine_stage"]=44 + }, + [1729]={ + ["distance"]=10369, + ["mine_stage"]=29 + }, + [1730]={ + ["distance"]=10375, + ["mine_stage"]=26 + }, + [1731]={ + ["distance"]=10381, + ["mine_stage"]=58 + }, + [1732]={ + ["distance"]=10387, + ["mine_stage"]=49 + }, + [1733]={ + ["distance"]=10393, + ["mine_stage"]=42 + }, + [1734]={ + ["distance"]=10399, + ["mine_stage"]=40 + }, + [1735]={ + ["distance"]=10405, + ["mine_stage"]=54 + }, + [1736]={ + ["distance"]=10411, + ["mine_stage"]=16 + }, + [1737]={ + ["distance"]=10417, + ["mine_stage"]=12 + }, + [1738]={ + ["distance"]=10423, + ["mine_stage"]=56 + }, + [1739]={ + ["distance"]=10429, + ["mine_stage"]=47 + }, + [1740]={ + ["distance"]=10435, + ["mine_stage"]=55 + }, + [1741]={ + ["distance"]=10441, + ["mine_stage"]=48 + }, + [1742]={ + ["distance"]=10447, + ["mine_stage"]=32 + }, + [1743]={ + ["distance"]=10453, + ["mine_stage"]=47 + }, + [1744]={ + ["distance"]=10459, + ["mine_stage"]=50 + }, + [1745]={ + ["distance"]=10465, + ["mine_stage"]=18 + }, + [1746]={ + ["distance"]=10471, + ["mine_stage"]=7 + }, + [1747]={ + ["distance"]=10477, + ["mine_stage"]=49 + }, + [1748]={ + ["distance"]=10483, + ["mine_stage"]=50 + }, + [1749]={ + ["distance"]=10489, + ["mine_stage"]=38 + }, + [1750]={ + ["distance"]=10495, + ["mine_stage"]=52 + }, + [1751]={ + ["distance"]=10501, + ["mine_stage"]=68 + }, + [1752]={ + ["distance"]=10507, + ["mine_stage"]=44 + }, + [1753]={ + ["distance"]=10513, + ["mine_stage"]=29 + }, + [1754]={ + ["distance"]=10519, + ["mine_stage"]=15 + }, + [1755]={ + ["distance"]=10525, + ["mine_stage"]=26 + }, + [1756]={ + ["distance"]=10531, + ["mine_stage"]=45 + }, + [1757]={ + ["distance"]=10537, + ["mine_stage"]=35 + }, + [1758]={ + ["distance"]=10543, + ["mine_stage"]=39 + }, + [1759]={ + ["distance"]=10549, + ["mine_stage"]=39 + }, + [1760]={ + ["distance"]=10555, + ["mine_stage"]=57 + }, + [1761]={ + ["distance"]=10561, + ["mine_stage"]=26 + }, + [1762]={ + ["distance"]=10567, + ["mine_stage"]=22 + }, + [1763]={ + ["distance"]=10573, + ["mine_stage"]=51 + }, + [1764]={ + ["distance"]=10579, + ["mine_stage"]=9 + }, + [1765]={ + ["distance"]=10585, + ["mine_stage"]=25 + }, + [1766]={ + ["distance"]=10591, + ["mine_stage"]=54 + }, + [1767]={ + ["distance"]=10597, + ["mine_stage"]=39 + }, + [1768]={ + ["distance"]=10603, + ["mine_stage"]=40 + }, + [1769]={ + ["distance"]=10609, + ["mine_stage"]=16 + }, + [1770]={ + ["distance"]=10615, + ["mine_stage"]=12 + }, + [1771]={ + ["distance"]=10621, + ["mine_stage"]=48 + }, + [1772]={ + ["distance"]=10627, + ["mine_stage"]=10 + }, + [1773]={ + ["distance"]=10633, + ["mine_stage"]=12 + }, + [1774]={ + ["distance"]=10639, + ["mine_stage"]=41 + }, + [1775]={ + ["distance"]=10645, + ["mine_stage"]=22 + }, + [1776]={ + ["distance"]=10651, + ["mine_stage"]=27 + }, + [1777]={ + ["distance"]=10657, + ["mine_stage"]=18 + }, + [1778]={ + ["distance"]=10663, + ["mine_stage"]=1 + }, + [1779]={ + ["distance"]=10669, + ["mine_stage"]=3 + }, + [1780]={ + ["distance"]=10675, + ["mine_stage"]=25 + }, + [1781]={ + ["distance"]=10681, + ["mine_stage"]=30 + }, + [1782]={ + ["distance"]=10687, + ["mine_stage"]=26 + }, + [1783]={ + ["distance"]=10693, + ["mine_stage"]=16 + }, + [1784]={ + ["distance"]=10699, + ["mine_stage"]=15 + }, + [1785]={ + ["distance"]=10705, + ["mine_stage"]=10 + }, + [1786]={ + ["distance"]=10711, + ["mine_stage"]=41 + }, + [1787]={ + ["distance"]=10717, + ["mine_stage"]=52 + }, + [1788]={ + ["distance"]=10723, + ["mine_stage"]=8 + }, + [1789]={ + ["distance"]=10729, + ["mine_stage"]=12 + }, + [1790]={ + ["distance"]=10735, + ["mine_stage"]=4 + }, + [1791]={ + ["distance"]=10741, + ["mine_stage"]=17 + }, + [1792]={ + ["distance"]=10747, + ["mine_stage"]=17 + }, + [1793]={ + ["distance"]=10753, + ["mine_stage"]=13 + }, + [1794]={ + ["distance"]=10759, + ["mine_stage"]=59 + }, + [1795]={ + ["distance"]=10765, + ["mine_stage"]=18 + }, + [1796]={ + ["distance"]=10771, + ["mine_stage"]=12 + }, + [1797]={ + ["distance"]=10777, + ["mine_stage"]=48 + }, + [1798]={ + ["distance"]=10783, + ["mine_stage"]=39 + }, + [1799]={ + ["distance"]=10789, + ["mine_stage"]=52 + }, + [1800]={ + ["distance"]=10795, + ["mine_stage"]=48 + }, + [1801]={ + ["distance"]=10801, + ["mine_stage"]=66 + }, + [1802]={ + ["distance"]=10807, + ["mine_stage"]=37 + }, + [1803]={ + ["distance"]=10813, + ["mine_stage"]=15 + }, + [1804]={ + ["distance"]=10819, + ["mine_stage"]=33 + }, + [1805]={ + ["distance"]=10825, + ["mine_stage"]=58 + }, + [1806]={ + ["distance"]=10831, + ["mine_stage"]=31 + }, + [1807]={ + ["distance"]=10837, + ["mine_stage"]=47 + }, + [1808]={ + ["distance"]=10843, + ["mine_stage"]=22 + }, + [1809]={ + ["distance"]=10849, + ["mine_stage"]=8 + }, + [1810]={ + ["distance"]=10855, + ["mine_stage"]=57 + }, + [1811]={ + ["distance"]=10861, + ["mine_stage"]=17 + }, + [1812]={ + ["distance"]=10867, + ["mine_stage"]=46 + }, + [1813]={ + ["distance"]=10873, + ["mine_stage"]=59 + }, + [1814]={ + ["distance"]=10879, + ["mine_stage"]=45 + }, + [1815]={ + ["distance"]=10885, + ["mine_stage"]=43 + }, + [1816]={ + ["distance"]=10891, + ["mine_stage"]=39 + }, + [1817]={ + ["distance"]=10897, + ["mine_stage"]=36 + }, + [1818]={ + ["distance"]=10903, + ["mine_stage"]=48 + }, + [1819]={ + ["distance"]=10909, + ["mine_stage"]=14 + }, + [1820]={ + ["distance"]=10915, + ["mine_stage"]=9 + }, + [1821]={ + ["distance"]=10921, + ["mine_stage"]=50 + }, + [1822]={ + ["distance"]=10927, + ["mine_stage"]=5 + }, + [1823]={ + ["distance"]=10933, + ["mine_stage"]=51 + }, + [1824]={ + ["distance"]=10939, + ["mine_stage"]=7 + }, + [1825]={ + ["distance"]=10945, + ["mine_stage"]=48 + }, + [1826]={ + ["distance"]=10951, + ["mine_stage"]=35 + }, + [1827]={ + ["distance"]=10957, + ["mine_stage"]=59 + }, + [1828]={ + ["distance"]=10963, + ["mine_stage"]=14 + }, + [1829]={ + ["distance"]=10969, + ["mine_stage"]=49 + }, + [1830]={ + ["distance"]=10975, + ["mine_stage"]=60 + }, + [1831]={ + ["distance"]=10981, + ["mine_stage"]=57 + }, + [1832]={ + ["distance"]=10987, + ["mine_stage"]=29 + }, + [1833]={ + ["distance"]=10993, + ["mine_stage"]=48 + }, + [1834]={ + ["distance"]=10999, + ["mine_stage"]=45 + }, + [1835]={ + ["distance"]=11005, + ["mine_stage"]=17 + }, + [1836]={ + ["distance"]=11011, + ["mine_stage"]=48 + }, + [1837]={ + ["distance"]=11017, + ["mine_stage"]=37 + }, + [1838]={ + ["distance"]=11023, + ["mine_stage"]=26 + }, + [1839]={ + ["distance"]=11029, + ["mine_stage"]=58 + }, + [1840]={ + ["distance"]=11035, + ["mine_stage"]=39 + }, + [1841]={ + ["distance"]=11041, + ["mine_stage"]=32 + }, + [1842]={ + ["distance"]=11047, + ["mine_stage"]=50 + }, + [1843]={ + ["distance"]=11053, + ["mine_stage"]=50 + }, + [1844]={ + ["distance"]=11059, + ["mine_stage"]=44 + }, + [1845]={ + ["distance"]=11065, + ["mine_stage"]=22 + }, + [1846]={ + ["distance"]=11071, + ["mine_stage"]=27 + }, + [1847]={ + ["distance"]=11077, + ["mine_stage"]=1 + }, + [1848]={ + ["distance"]=11083, + ["mine_stage"]=22 + }, + [1849]={ + ["distance"]=11089, + ["mine_stage"]=26 + }, + [1850]={ + ["distance"]=11095, + ["mine_stage"]=41 + }, + [1851]={ + ["distance"]=11101, + ["mine_stage"]=69 + }, + [1852]={ + ["distance"]=11107, + ["mine_stage"]=44 + }, + [1853]={ + ["distance"]=11113, + ["mine_stage"]=37 + }, + [1854]={ + ["distance"]=11119, + ["mine_stage"]=43 + }, + [1855]={ + ["distance"]=11125, + ["mine_stage"]=60 + }, + [1856]={ + ["distance"]=11131, + ["mine_stage"]=16 + }, + [1857]={ + ["distance"]=11137, + ["mine_stage"]=14 + }, + [1858]={ + ["distance"]=11143, + ["mine_stage"]=59 + }, + [1859]={ + ["distance"]=11149, + ["mine_stage"]=7 + }, + [1860]={ + ["distance"]=11155, + ["mine_stage"]=49 + }, + [1861]={ + ["distance"]=11161, + ["mine_stage"]=50 + }, + [1862]={ + ["distance"]=11167, + ["mine_stage"]=11 + }, + [1863]={ + ["distance"]=11173, + ["mine_stage"]=12 + }, + [1864]={ + ["distance"]=11179, + ["mine_stage"]=41 + }, + [1865]={ + ["distance"]=11185, + ["mine_stage"]=45 + }, + [1866]={ + ["distance"]=11191, + ["mine_stage"]=58 + }, + [1867]={ + ["distance"]=11197, + ["mine_stage"]=48 + }, + [1868]={ + ["distance"]=11203, + ["mine_stage"]=42 + }, + [1869]={ + ["distance"]=11209, + ["mine_stage"]=6 + }, + [1870]={ + ["distance"]=11215, + ["mine_stage"]=14 + }, + [1871]={ + ["distance"]=11221, + ["mine_stage"]=41 + }, + [1872]={ + ["distance"]=11227, + ["mine_stage"]=10 + }, + [1873]={ + ["distance"]=11233, + ["mine_stage"]=6 + }, + [1874]={ + ["distance"]=11239, + ["mine_stage"]=2 + }, + [1875]={ + ["distance"]=11245, + ["mine_stage"]=34 + }, + [1876]={ + ["distance"]=11251, + ["mine_stage"]=41 + }, + [1877]={ + ["distance"]=11257, + ["mine_stage"]=34 + }, + [1878]={ + ["distance"]=11263, + ["mine_stage"]=45 + }, + [1879]={ + ["distance"]=11269, + ["mine_stage"]=56 + }, + [1880]={ + ["distance"]=11275, + ["mine_stage"]=44 + }, + [1881]={ + ["distance"]=11281, + ["mine_stage"]=11 + }, + [1882]={ + ["distance"]=11287, + ["mine_stage"]=32 + }, + [1883]={ + ["distance"]=11293, + ["mine_stage"]=5 + }, + [1884]={ + ["distance"]=11299, + ["mine_stage"]=55 + }, + [1885]={ + ["distance"]=11305, + ["mine_stage"]=7 + }, + [1886]={ + ["distance"]=11311, + ["mine_stage"]=12 + }, + [1887]={ + ["distance"]=11317, + ["mine_stage"]=6 + }, + [1888]={ + ["distance"]=11323, + ["mine_stage"]=54 + }, + [1889]={ + ["distance"]=11329, + ["mine_stage"]=47 + }, + [1890]={ + ["distance"]=11335, + ["mine_stage"]=45 + }, + [1891]={ + ["distance"]=11341, + ["mine_stage"]=11 + }, + [1892]={ + ["distance"]=11347, + ["mine_stage"]=49 + }, + [1893]={ + ["distance"]=11353, + ["mine_stage"]=51 + }, + [1894]={ + ["distance"]=11359, + ["mine_stage"]=10 + }, + [1895]={ + ["distance"]=11365, + ["mine_stage"]=44 + }, + [1896]={ + ["distance"]=11371, + ["mine_stage"]=41 + }, + [1897]={ + ["distance"]=11377, + ["mine_stage"]=54 + }, + [1898]={ + ["distance"]=11383, + ["mine_stage"]=20 + }, + [1899]={ + ["distance"]=11389, + ["mine_stage"]=44 + }, + [1900]={ + ["distance"]=11395, + ["mine_stage"]=3 + }, + [1901]={ + ["distance"]=11401, + ["mine_stage"]=64 + }, + [1902]={ + ["distance"]=11407, + ["mine_stage"]=40 + }, + [1903]={ + ["distance"]=11413, + ["mine_stage"]=51 + }, + [1904]={ + ["distance"]=11419, + ["mine_stage"]=39 + }, + [1905]={ + ["distance"]=11425, + ["mine_stage"]=31 + }, + [1906]={ + ["distance"]=11431, + ["mine_stage"]=26 + }, + [1907]={ + ["distance"]=11437, + ["mine_stage"]=32 + }, + [1908]={ + ["distance"]=11443, + ["mine_stage"]=6 + }, + [1909]={ + ["distance"]=11449, + ["mine_stage"]=35 + }, + [1910]={ + ["distance"]=11455, + ["mine_stage"]=11 + }, + [1911]={ + ["distance"]=11461, + ["mine_stage"]=59 + }, + [1912]={ + ["distance"]=11467, + ["mine_stage"]=53 + }, + [1913]={ + ["distance"]=11473, + ["mine_stage"]=60 + }, + [1914]={ + ["distance"]=11479, + ["mine_stage"]=26 + }, + [1915]={ + ["distance"]=11485, + ["mine_stage"]=41 + }, + [1916]={ + ["distance"]=11491, + ["mine_stage"]=7 + }, + [1917]={ + ["distance"]=11497, + ["mine_stage"]=41 + }, + [1918]={ + ["distance"]=11503, + ["mine_stage"]=20 + }, + [1919]={ + ["distance"]=11509, + ["mine_stage"]=2 + }, + [1920]={ + ["distance"]=11515, + ["mine_stage"]=11 + }, + [1921]={ + ["distance"]=11521, + ["mine_stage"]=40 + }, + [1922]={ + ["distance"]=11527, + ["mine_stage"]=4 + }, + [1923]={ + ["distance"]=11533, + ["mine_stage"]=49 + }, + [1924]={ + ["distance"]=11539, + ["mine_stage"]=13 + }, + [1925]={ + ["distance"]=11545, + ["mine_stage"]=7 + }, + [1926]={ + ["distance"]=11551, + ["mine_stage"]=60 + }, + [1927]={ + ["distance"]=11557, + ["mine_stage"]=43 + }, + [1928]={ + ["distance"]=11563, + ["mine_stage"]=50 + }, + [1929]={ + ["distance"]=11569, + ["mine_stage"]=50 + }, + [1930]={ + ["distance"]=11575, + ["mine_stage"]=45 + }, + [1931]={ + ["distance"]=11581, + ["mine_stage"]=39 + }, + [1932]={ + ["distance"]=11587, + ["mine_stage"]=29 + }, + [1933]={ + ["distance"]=11593, + ["mine_stage"]=36 + }, + [1934]={ + ["distance"]=11599, + ["mine_stage"]=37 + }, + [1935]={ + ["distance"]=11605, + ["mine_stage"]=19 + }, + [1936]={ + ["distance"]=11611, + ["mine_stage"]=55 + }, + [1937]={ + ["distance"]=11617, + ["mine_stage"]=28 + }, + [1938]={ + ["distance"]=11623, + ["mine_stage"]=34 + }, + [1939]={ + ["distance"]=11629, + ["mine_stage"]=42 + }, + [1940]={ + ["distance"]=11635, + ["mine_stage"]=36 + }, + [1941]={ + ["distance"]=11641, + ["mine_stage"]=7 + }, + [1942]={ + ["distance"]=11647, + ["mine_stage"]=3 + }, + [1943]={ + ["distance"]=11653, + ["mine_stage"]=60 + }, + [1944]={ + ["distance"]=11659, + ["mine_stage"]=20 + }, + [1945]={ + ["distance"]=11665, + ["mine_stage"]=1 + }, + [1946]={ + ["distance"]=11671, + ["mine_stage"]=20 + }, + [1947]={ + ["distance"]=11677, + ["mine_stage"]=26 + }, + [1948]={ + ["distance"]=11683, + ["mine_stage"]=8 + }, + [1949]={ + ["distance"]=11689, + ["mine_stage"]=16 + }, + [1950]={ + ["distance"]=11695, + ["mine_stage"]=46 + }, + [1951]={ + ["distance"]=11701, + ["mine_stage"]=67 + }, + [1952]={ + ["distance"]=11707, + ["mine_stage"]=21 + }, + [1953]={ + ["distance"]=11713, + ["mine_stage"]=22 + }, + [1954]={ + ["distance"]=11719, + ["mine_stage"]=59 + }, + [1955]={ + ["distance"]=11725, + ["mine_stage"]=18 + }, + [1956]={ + ["distance"]=11731, + ["mine_stage"]=22 + }, + [1957]={ + ["distance"]=11737, + ["mine_stage"]=15 + }, + [1958]={ + ["distance"]=11743, + ["mine_stage"]=57 + }, + [1959]={ + ["distance"]=11749, + ["mine_stage"]=29 + }, + [1960]={ + ["distance"]=11755, + ["mine_stage"]=44 + }, + [1961]={ + ["distance"]=11761, + ["mine_stage"]=34 + }, + [1962]={ + ["distance"]=11767, + ["mine_stage"]=56 + }, + [1963]={ + ["distance"]=11773, + ["mine_stage"]=8 + }, + [1964]={ + ["distance"]=11779, + ["mine_stage"]=41 + }, + [1965]={ + ["distance"]=11785, + ["mine_stage"]=19 + }, + [1966]={ + ["distance"]=11791, + ["mine_stage"]=42 + }, + [1967]={ + ["distance"]=11797, + ["mine_stage"]=27 + }, + [1968]={ + ["distance"]=11803, + ["mine_stage"]=25 + }, + [1969]={ + ["distance"]=11809, + ["mine_stage"]=55 + }, + [1970]={ + ["distance"]=11815, + ["mine_stage"]=4 + }, + [1971]={ + ["distance"]=11821, + ["mine_stage"]=20 + }, + [1972]={ + ["distance"]=11827, + ["mine_stage"]=41 + }, + [1973]={ + ["distance"]=11833, + ["mine_stage"]=5 + }, + [1974]={ + ["distance"]=11839, + ["mine_stage"]=30 + }, + [1975]={ + ["distance"]=11845, + ["mine_stage"]=51 + }, + [1976]={ + ["distance"]=11851, + ["mine_stage"]=39 + }, + [1977]={ + ["distance"]=11857, + ["mine_stage"]=17 + }, + [1978]={ + ["distance"]=11863, + ["mine_stage"]=50 + }, + [1979]={ + ["distance"]=11869, + ["mine_stage"]=15 + }, + [1980]={ + ["distance"]=11875, + ["mine_stage"]=36 + }, + [1981]={ + ["distance"]=11881, + ["mine_stage"]=16 + }, + [1982]={ + ["distance"]=11887, + ["mine_stage"]=46 + }, + [1983]={ + ["distance"]=11893, + ["mine_stage"]=13 + }, + [1984]={ + ["distance"]=11899, + ["mine_stage"]=48 + }, + [1985]={ + ["distance"]=11905, + ["mine_stage"]=42 + }, + [1986]={ + ["distance"]=11911, + ["mine_stage"]=21 + }, + [1987]={ + ["distance"]=11917, + ["mine_stage"]=59 + }, + [1988]={ + ["distance"]=11923, + ["mine_stage"]=60 + }, + [1989]={ + ["distance"]=11929, + ["mine_stage"]=9 + }, + [1990]={ + ["distance"]=11935, + ["mine_stage"]=37 + }, + [1991]={ + ["distance"]=11941, + ["mine_stage"]=50 + }, + [1992]={ + ["distance"]=11947, + ["mine_stage"]=2 + }, + [1993]={ + ["distance"]=11953, + ["mine_stage"]=60 + }, + [1994]={ + ["distance"]=11959, + ["mine_stage"]=56 + }, + [1995]={ + ["distance"]=11965, + ["mine_stage"]=43 + }, + [1996]={ + ["distance"]=11971, + ["mine_stage"]=25 + }, + [1997]={ + ["distance"]=11977, + ["mine_stage"]=59 + }, + [1998]={ + ["distance"]=11983, + ["mine_stage"]=35 + }, + [1999]={ + ["distance"]=11989, + ["mine_stage"]=14 + }, + [2000]={ + ["distance"]=11995, + ["mine_stage"]=8 + }, + [2001]={ + ["distance"]=12001, + ["mine_stage"]=65 + }, + [2002]={ + ["distance"]=12007, + ["mine_stage"]=54 + }, + [2003]={ + ["distance"]=12013, + ["mine_stage"]=24 + }, + [2004]={ + ["distance"]=12019, + ["mine_stage"]=59 + }, + [2005]={ + ["distance"]=12025, + ["mine_stage"]=30 + }, + [2006]={ + ["distance"]=12031, + ["mine_stage"]=2 + }, + [2007]={ + ["distance"]=12037, + ["mine_stage"]=28 + }, + [2008]={ + ["distance"]=12043, + ["mine_stage"]=59 + }, + [2009]={ + ["distance"]=12049, + ["mine_stage"]=47 + }, + [2010]={ + ["distance"]=12055, + ["mine_stage"]=19 + }, + [2011]={ + ["distance"]=12061, + ["mine_stage"]=46 + }, + [2012]={ + ["distance"]=12067, + ["mine_stage"]=48 + }, + [2013]={ + ["distance"]=12073, + ["mine_stage"]=46 + }, + [2014]={ + ["distance"]=12079, + ["mine_stage"]=38 + }, + [2015]={ + ["distance"]=12085, + ["mine_stage"]=35 + }, + [2016]={ + ["distance"]=12091, + ["mine_stage"]=5 + }, + [2017]={ + ["distance"]=12097, + ["mine_stage"]=19 + }, + [2018]={ + ["distance"]=12103, + ["mine_stage"]=38 + }, + [2019]={ + ["distance"]=12109, + ["mine_stage"]=39 + }, + [2020]={ + ["distance"]=12115, + ["mine_stage"]=30 + }, + [2021]={ + ["distance"]=12121, + ["mine_stage"]=25 + }, + [2022]={ + ["distance"]=12127, + ["mine_stage"]=53 + }, + [2023]={ + ["distance"]=12133, + ["mine_stage"]=26 + }, + [2024]={ + ["distance"]=12139, + ["mine_stage"]=21 + }, + [2025]={ + ["distance"]=12145, + ["mine_stage"]=45 + }, + [2026]={ + ["distance"]=12151, + ["mine_stage"]=11 + }, + [2027]={ + ["distance"]=12157, + ["mine_stage"]=39 + }, + [2028]={ + ["distance"]=12163, + ["mine_stage"]=13 + }, + [2029]={ + ["distance"]=12169, + ["mine_stage"]=33 + }, + [2030]={ + ["distance"]=12175, + ["mine_stage"]=32 + }, + [2031]={ + ["distance"]=12181, + ["mine_stage"]=46 + }, + [2032]={ + ["distance"]=12187, + ["mine_stage"]=10 + }, + [2033]={ + ["distance"]=12193, + ["mine_stage"]=10 + }, + [2034]={ + ["distance"]=12199, + ["mine_stage"]=16 + }, + [2035]={ + ["distance"]=12205, + ["mine_stage"]=57 + }, + [2036]={ + ["distance"]=12211, + ["mine_stage"]=16 + }, + [2037]={ + ["distance"]=12217, + ["mine_stage"]=17 + }, + [2038]={ + ["distance"]=12223, + ["mine_stage"]=10 + }, + [2039]={ + ["distance"]=12229, + ["mine_stage"]=27 + }, + [2040]={ + ["distance"]=12235, + ["mine_stage"]=2 + }, + [2041]={ + ["distance"]=12241, + ["mine_stage"]=54 + }, + [2042]={ + ["distance"]=12247, + ["mine_stage"]=10 + }, + [2043]={ + ["distance"]=12253, + ["mine_stage"]=47 + }, + [2044]={ + ["distance"]=12259, + ["mine_stage"]=36 + }, + [2045]={ + ["distance"]=12265, + ["mine_stage"]=48 + }, + [2046]={ + ["distance"]=12271, + ["mine_stage"]=11 + }, + [2047]={ + ["distance"]=12277, + ["mine_stage"]=7 + }, + [2048]={ + ["distance"]=12283, + ["mine_stage"]=50 + }, + [2049]={ + ["distance"]=12289, + ["mine_stage"]=10 + }, + [2050]={ + ["distance"]=12295, + ["mine_stage"]=14 + }, + [2051]={ + ["distance"]=12301, + ["mine_stage"]=68 + }, + [2052]={ + ["distance"]=12307, + ["mine_stage"]=41 + }, + [2053]={ + ["distance"]=12313, + ["mine_stage"]=19 + }, + [2054]={ + ["distance"]=12319, + ["mine_stage"]=25 + }, + [2055]={ + ["distance"]=12325, + ["mine_stage"]=45 + }, + [2056]={ + ["distance"]=12331, + ["mine_stage"]=34 + }, + [2057]={ + ["distance"]=12337, + ["mine_stage"]=1 + }, + [2058]={ + ["distance"]=12343, + ["mine_stage"]=43 + }, + [2059]={ + ["distance"]=12349, + ["mine_stage"]=46 + }, + [2060]={ + ["distance"]=12355, + ["mine_stage"]=46 + }, + [2061]={ + ["distance"]=12361, + ["mine_stage"]=43 + }, + [2062]={ + ["distance"]=12367, + ["mine_stage"]=50 + }, + [2063]={ + ["distance"]=12373, + ["mine_stage"]=51 + }, + [2064]={ + ["distance"]=12379, + ["mine_stage"]=59 + }, + [2065]={ + ["distance"]=12385, + ["mine_stage"]=8 + }, + [2066]={ + ["distance"]=12391, + ["mine_stage"]=18 + }, + [2067]={ + ["distance"]=12397, + ["mine_stage"]=57 + }, + [2068]={ + ["distance"]=12403, + ["mine_stage"]=37 + }, + [2069]={ + ["distance"]=12409, + ["mine_stage"]=20 + }, + [2070]={ + ["distance"]=12415, + ["mine_stage"]=52 + }, + [2071]={ + ["distance"]=12421, + ["mine_stage"]=32 + }, + [2072]={ + ["distance"]=12427, + ["mine_stage"]=44 + }, + [2073]={ + ["distance"]=12433, + ["mine_stage"]=15 + }, + [2074]={ + ["distance"]=12439, + ["mine_stage"]=5 + }, + [2075]={ + ["distance"]=12445, + ["mine_stage"]=14 + }, + [2076]={ + ["distance"]=12451, + ["mine_stage"]=21 + }, + [2077]={ + ["distance"]=12457, + ["mine_stage"]=16 + }, + [2078]={ + ["distance"]=12463, + ["mine_stage"]=58 + }, + [2079]={ + ["distance"]=12469, + ["mine_stage"]=19 + }, + [2080]={ + ["distance"]=12475, + ["mine_stage"]=40 + }, + [2081]={ + ["distance"]=12481, + ["mine_stage"]=27 + }, + [2082]={ + ["distance"]=12487, + ["mine_stage"]=12 + }, + [2083]={ + ["distance"]=12493, + ["mine_stage"]=36 + }, + [2084]={ + ["distance"]=12499, + ["mine_stage"]=31 + }, + [2085]={ + ["distance"]=12505, + ["mine_stage"]=28 + }, + [2086]={ + ["distance"]=12511, + ["mine_stage"]=50 + }, + [2087]={ + ["distance"]=12517, + ["mine_stage"]=34 + }, + [2088]={ + ["distance"]=12523, + ["mine_stage"]=6 + }, + [2089]={ + ["distance"]=12529, + ["mine_stage"]=4 + }, + [2090]={ + ["distance"]=12535, + ["mine_stage"]=44 + }, + [2091]={ + ["distance"]=12541, + ["mine_stage"]=2 + }, + [2092]={ + ["distance"]=12547, + ["mine_stage"]=25 + }, + [2093]={ + ["distance"]=12553, + ["mine_stage"]=17 + }, + [2094]={ + ["distance"]=12559, + ["mine_stage"]=2 + }, + [2095]={ + ["distance"]=12565, + ["mine_stage"]=22 + }, + [2096]={ + ["distance"]=12571, + ["mine_stage"]=15 + }, + [2097]={ + ["distance"]=12577, + ["mine_stage"]=29 + }, + [2098]={ + ["distance"]=12583, + ["mine_stage"]=14 + }, + [2099]={ + ["distance"]=12589, + ["mine_stage"]=17 + }, + [2100]={ + ["distance"]=12595, + ["mine_stage"]=59 + }, + [2101]={ + ["distance"]=12601, + ["mine_stage"]=66 + }, + [2102]={ + ["distance"]=12607, + ["mine_stage"]=51 + }, + [2103]={ + ["distance"]=12613, + ["mine_stage"]=22 + }, + [2104]={ + ["distance"]=12619, + ["mine_stage"]=19 + }, + [2105]={ + ["distance"]=12625, + ["mine_stage"]=15 + }, + [2106]={ + ["distance"]=12631, + ["mine_stage"]=56 + }, + [2107]={ + ["distance"]=12637, + ["mine_stage"]=15 + }, + [2108]={ + ["distance"]=12643, + ["mine_stage"]=54 + }, + [2109]={ + ["distance"]=12649, + ["mine_stage"]=22 + }, + [2110]={ + ["distance"]=12655, + ["mine_stage"]=22 + }, + [2111]={ + ["distance"]=12661, + ["mine_stage"]=17 + }, + [2112]={ + ["distance"]=12667, + ["mine_stage"]=26 + }, + [2113]={ + ["distance"]=12673, + ["mine_stage"]=13 + }, + [2114]={ + ["distance"]=12679, + ["mine_stage"]=44 + }, + [2115]={ + ["distance"]=12685, + ["mine_stage"]=26 + }, + [2116]={ + ["distance"]=12691, + ["mine_stage"]=38 + }, + [2117]={ + ["distance"]=12697, + ["mine_stage"]=30 + }, + [2118]={ + ["distance"]=12703, + ["mine_stage"]=45 + }, + [2119]={ + ["distance"]=12709, + ["mine_stage"]=2 + }, + [2120]={ + ["distance"]=12715, + ["mine_stage"]=13 + }, + [2121]={ + ["distance"]=12721, + ["mine_stage"]=20 + }, + [2122]={ + ["distance"]=12727, + ["mine_stage"]=43 + }, + [2123]={ + ["distance"]=12733, + ["mine_stage"]=32 + }, + [2124]={ + ["distance"]=12739, + ["mine_stage"]=57 + }, + [2125]={ + ["distance"]=12745, + ["mine_stage"]=24 + }, + [2126]={ + ["distance"]=12751, + ["mine_stage"]=56 + }, + [2127]={ + ["distance"]=12757, + ["mine_stage"]=22 + }, + [2128]={ + ["distance"]=12763, + ["mine_stage"]=1 + }, + [2129]={ + ["distance"]=12769, + ["mine_stage"]=55 + }, + [2130]={ + ["distance"]=12775, + ["mine_stage"]=19 + }, + [2131]={ + ["distance"]=12781, + ["mine_stage"]=30 + }, + [2132]={ + ["distance"]=12787, + ["mine_stage"]=43 + }, + [2133]={ + ["distance"]=12793, + ["mine_stage"]=47 + }, + [2134]={ + ["distance"]=12799, + ["mine_stage"]=32 + }, + [2135]={ + ["distance"]=12805, + ["mine_stage"]=55 + }, + [2136]={ + ["distance"]=12811, + ["mine_stage"]=23 + }, + [2137]={ + ["distance"]=12817, + ["mine_stage"]=38 + }, + [2138]={ + ["distance"]=12823, + ["mine_stage"]=33 + }, + [2139]={ + ["distance"]=12829, + ["mine_stage"]=16 + }, + [2140]={ + ["distance"]=12835, + ["mine_stage"]=2 + }, + [2141]={ + ["distance"]=12841, + ["mine_stage"]=47 + }, + [2142]={ + ["distance"]=12847, + ["mine_stage"]=49 + }, + [2143]={ + ["distance"]=12853, + ["mine_stage"]=18 + }, + [2144]={ + ["distance"]=12859, + ["mine_stage"]=29 + }, + [2145]={ + ["distance"]=12865, + ["mine_stage"]=25 + }, + [2146]={ + ["distance"]=12871, + ["mine_stage"]=7 + }, + [2147]={ + ["distance"]=12877, + ["mine_stage"]=14 + }, + [2148]={ + ["distance"]=12883, + ["mine_stage"]=56 + }, + [2149]={ + ["distance"]=12889, + ["mine_stage"]=22 + }, + [2150]={ + ["distance"]=12895, + ["mine_stage"]=59 + }, + [2151]={ + ["distance"]=12901, + ["mine_stage"]=69 + }, + [2152]={ + ["distance"]=12907, + ["mine_stage"]=53 + }, + [2153]={ + ["distance"]=12913, + ["mine_stage"]=29 + }, + [2154]={ + ["distance"]=12919, + ["mine_stage"]=22 + }, + [2155]={ + ["distance"]=12925, + ["mine_stage"]=21 + }, + [2156]={ + ["distance"]=12931, + ["mine_stage"]=44 + }, + [2157]={ + ["distance"]=12937, + ["mine_stage"]=2 + }, + [2158]={ + ["distance"]=12943, + ["mine_stage"]=13 + }, + [2159]={ + ["distance"]=12949, + ["mine_stage"]=40 + }, + [2160]={ + ["distance"]=12955, + ["mine_stage"]=48 + }, + [2161]={ + ["distance"]=12961, + ["mine_stage"]=56 + }, + [2162]={ + ["distance"]=12967, + ["mine_stage"]=18 + }, + [2163]={ + ["distance"]=12973, + ["mine_stage"]=6 + }, + [2164]={ + ["distance"]=12979, + ["mine_stage"]=32 + }, + [2165]={ + ["distance"]=12985, + ["mine_stage"]=53 + }, + [2166]={ + ["distance"]=12991, + ["mine_stage"]=30 + }, + [2167]={ + ["distance"]=12997, + ["mine_stage"]=38 + }, + [2168]={ + ["distance"]=13003, + ["mine_stage"]=52 + }, + [2169]={ + ["distance"]=13009, + ["mine_stage"]=25 + }, + [2170]={ + ["distance"]=13015, + ["mine_stage"]=7 + }, + [2171]={ + ["distance"]=13021, + ["mine_stage"]=17 + }, + [2172]={ + ["distance"]=13027, + ["mine_stage"]=35 + }, + [2173]={ + ["distance"]=13033, + ["mine_stage"]=22 + }, + [2174]={ + ["distance"]=13039, + ["mine_stage"]=50 + }, + [2175]={ + ["distance"]=13045, + ["mine_stage"]=40 + }, + [2176]={ + ["distance"]=13051, + ["mine_stage"]=50 + }, + [2177]={ + ["distance"]=13057, + ["mine_stage"]=57 + }, + [2178]={ + ["distance"]=13063, + ["mine_stage"]=40 + }, + [2179]={ + ["distance"]=13069, + ["mine_stage"]=16 + }, + [2180]={ + ["distance"]=13075, + ["mine_stage"]=44 + }, + [2181]={ + ["distance"]=13081, + ["mine_stage"]=23 + }, + [2182]={ + ["distance"]=13087, + ["mine_stage"]=57 + }, + [2183]={ + ["distance"]=13093, + ["mine_stage"]=48 + }, + [2184]={ + ["distance"]=13099, + ["mine_stage"]=11 + }, + [2185]={ + ["distance"]=13105, + ["mine_stage"]=13 + }, + [2186]={ + ["distance"]=13111, + ["mine_stage"]=5 + }, + [2187]={ + ["distance"]=13117, + ["mine_stage"]=13 + }, + [2188]={ + ["distance"]=13123, + ["mine_stage"]=33 + }, + [2189]={ + ["distance"]=13129, + ["mine_stage"]=46 + }, + [2190]={ + ["distance"]=13135, + ["mine_stage"]=46 + }, + [2191]={ + ["distance"]=13141, + ["mine_stage"]=11 + }, + [2192]={ + ["distance"]=13147, + ["mine_stage"]=16 + }, + [2193]={ + ["distance"]=13153, + ["mine_stage"]=47 + }, + [2194]={ + ["distance"]=13159, + ["mine_stage"]=56 + }, + [2195]={ + ["distance"]=13165, + ["mine_stage"]=17 + }, + [2196]={ + ["distance"]=13171, + ["mine_stage"]=43 + }, + [2197]={ + ["distance"]=13177, + ["mine_stage"]=3 + }, + [2198]={ + ["distance"]=13183, + ["mine_stage"]=15 + }, + [2199]={ + ["distance"]=13189, + ["mine_stage"]=28 + }, + [2200]={ + ["distance"]=13195, + ["mine_stage"]=51 + }, + [2201]={ + ["distance"]=13201, + ["mine_stage"]=64 + }, + [2202]={ + ["distance"]=13207, + ["mine_stage"]=58 + }, + [2203]={ + ["distance"]=13213, + ["mine_stage"]=19 + }, + [2204]={ + ["distance"]=13219, + ["mine_stage"]=35 + }, + [2205]={ + ["distance"]=13225, + ["mine_stage"]=37 + }, + [2206]={ + ["distance"]=13231, + ["mine_stage"]=49 + }, + [2207]={ + ["distance"]=13237, + ["mine_stage"]=19 + }, + [2208]={ + ["distance"]=13243, + ["mine_stage"]=37 + }, + [2209]={ + ["distance"]=13249, + ["mine_stage"]=14 + }, + [2210]={ + ["distance"]=13255, + ["mine_stage"]=29 + }, + [2211]={ + ["distance"]=13261, + ["mine_stage"]=19 + }, + [2212]={ + ["distance"]=13267, + ["mine_stage"]=7 + }, + [2213]={ + ["distance"]=13273, + ["mine_stage"]=46 + }, + [2214]={ + ["distance"]=13279, + ["mine_stage"]=36 + }, + [2215]={ + ["distance"]=13285, + ["mine_stage"]=12 + }, + [2216]={ + ["distance"]=13291, + ["mine_stage"]=9 + }, + [2217]={ + ["distance"]=13297, + ["mine_stage"]=3 + }, + [2218]={ + ["distance"]=13303, + ["mine_stage"]=10 + }, + [2219]={ + ["distance"]=13309, + ["mine_stage"]=34 + }, + [2220]={ + ["distance"]=13315, + ["mine_stage"]=9 + }, + [2221]={ + ["distance"]=13321, + ["mine_stage"]=51 + }, + [2222]={ + ["distance"]=13327, + ["mine_stage"]=10 + }, + [2223]={ + ["distance"]=13333, + ["mine_stage"]=25 + }, + [2224]={ + ["distance"]=13339, + ["mine_stage"]=38 + }, + [2225]={ + ["distance"]=13345, + ["mine_stage"]=6 + }, + [2226]={ + ["distance"]=13351, + ["mine_stage"]=1 + }, + [2227]={ + ["distance"]=13357, + ["mine_stage"]=58 + }, + [2228]={ + ["distance"]=13363, + ["mine_stage"]=27 + }, + [2229]={ + ["distance"]=13369, + ["mine_stage"]=31 + }, + [2230]={ + ["distance"]=13375, + ["mine_stage"]=15 + }, + [2231]={ + ["distance"]=13381, + ["mine_stage"]=47 + }, + [2232]={ + ["distance"]=13387, + ["mine_stage"]=9 + }, + [2233]={ + ["distance"]=13393, + ["mine_stage"]=60 + }, + [2234]={ + ["distance"]=13399, + ["mine_stage"]=43 + }, + [2235]={ + ["distance"]=13405, + ["mine_stage"]=10 + }, + [2236]={ + ["distance"]=13411, + ["mine_stage"]=14 + }, + [2237]={ + ["distance"]=13417, + ["mine_stage"]=12 + }, + [2238]={ + ["distance"]=13423, + ["mine_stage"]=33 + }, + [2239]={ + ["distance"]=13429, + ["mine_stage"]=39 + }, + [2240]={ + ["distance"]=13435, + ["mine_stage"]=25 + }, + [2241]={ + ["distance"]=13441, + ["mine_stage"]=47 + }, + [2242]={ + ["distance"]=13447, + ["mine_stage"]=17 + }, + [2243]={ + ["distance"]=13453, + ["mine_stage"]=25 + }, + [2244]={ + ["distance"]=13459, + ["mine_stage"]=35 + }, + [2245]={ + ["distance"]=13465, + ["mine_stage"]=46 + }, + [2246]={ + ["distance"]=13471, + ["mine_stage"]=41 + }, + [2247]={ + ["distance"]=13477, + ["mine_stage"]=38 + }, + [2248]={ + ["distance"]=13483, + ["mine_stage"]=18 + }, + [2249]={ + ["distance"]=13489, + ["mine_stage"]=21 + }, + [2250]={ + ["distance"]=13495, + ["mine_stage"]=53 + }, + [2251]={ + ["distance"]=13501, + ["mine_stage"]=67 + }, + [2252]={ + ["distance"]=13507, + ["mine_stage"]=28 + }, + [2253]={ + ["distance"]=13513, + ["mine_stage"]=36 + }, + [2254]={ + ["distance"]=13519, + ["mine_stage"]=6 + }, + [2255]={ + ["distance"]=13525, + ["mine_stage"]=36 + }, + [2256]={ + ["distance"]=13531, + ["mine_stage"]=2 + }, + [2257]={ + ["distance"]=13537, + ["mine_stage"]=39 + }, + [2258]={ + ["distance"]=13543, + ["mine_stage"]=48 + }, + [2259]={ + ["distance"]=13549, + ["mine_stage"]=45 + }, + [2260]={ + ["distance"]=13555, + ["mine_stage"]=50 + }, + [2261]={ + ["distance"]=13561, + ["mine_stage"]=21 + }, + [2262]={ + ["distance"]=13567, + ["mine_stage"]=23 + }, + [2263]={ + ["distance"]=13573, + ["mine_stage"]=8 + }, + [2264]={ + ["distance"]=13579, + ["mine_stage"]=58 + }, + [2265]={ + ["distance"]=13585, + ["mine_stage"]=30 + }, + [2266]={ + ["distance"]=13591, + ["mine_stage"]=20 + }, + [2267]={ + ["distance"]=13597, + ["mine_stage"]=29 + }, + [2268]={ + ["distance"]=13603, + ["mine_stage"]=14 + }, + [2269]={ + ["distance"]=13609, + ["mine_stage"]=18 + }, + [2270]={ + ["distance"]=13615, + ["mine_stage"]=17 + }, + [2271]={ + ["distance"]=13621, + ["mine_stage"]=55 + }, + [2272]={ + ["distance"]=13627, + ["mine_stage"]=48 + }, + [2273]={ + ["distance"]=13633, + ["mine_stage"]=31 + }, + [2274]={ + ["distance"]=13639, + ["mine_stage"]=48 + }, + [2275]={ + ["distance"]=13645, + ["mine_stage"]=21 + }, + [2276]={ + ["distance"]=13651, + ["mine_stage"]=35 + }, + [2277]={ + ["distance"]=13657, + ["mine_stage"]=35 + }, + [2278]={ + ["distance"]=13663, + ["mine_stage"]=53 + }, + [2279]={ + ["distance"]=13669, + ["mine_stage"]=10 + }, + [2280]={ + ["distance"]=13675, + ["mine_stage"]=45 + }, + [2281]={ + ["distance"]=13681, + ["mine_stage"]=13 + }, + [2282]={ + ["distance"]=13687, + ["mine_stage"]=41 + }, + [2283]={ + ["distance"]=13693, + ["mine_stage"]=24 + }, + [2284]={ + ["distance"]=13699, + ["mine_stage"]=41 + }, + [2285]={ + ["distance"]=13705, + ["mine_stage"]=36 + }, + [2286]={ + ["distance"]=13711, + ["mine_stage"]=26 + }, + [2287]={ + ["distance"]=13717, + ["mine_stage"]=47 + }, + [2288]={ + ["distance"]=13723, + ["mine_stage"]=48 + }, + [2289]={ + ["distance"]=13729, + ["mine_stage"]=20 + }, + [2290]={ + ["distance"]=13735, + ["mine_stage"]=27 + }, + [2291]={ + ["distance"]=13741, + ["mine_stage"]=4 + }, + [2292]={ + ["distance"]=13747, + ["mine_stage"]=32 + }, + [2293]={ + ["distance"]=13753, + ["mine_stage"]=57 + }, + [2294]={ + ["distance"]=13759, + ["mine_stage"]=55 + }, + [2295]={ + ["distance"]=13765, + ["mine_stage"]=44 + }, + [2296]={ + ["distance"]=13771, + ["mine_stage"]=26 + }, + [2297]={ + ["distance"]=13777, + ["mine_stage"]=45 + }, + [2298]={ + ["distance"]=13783, + ["mine_stage"]=29 + }, + [2299]={ + ["distance"]=13789, + ["mine_stage"]=53 + }, + [2300]={ + ["distance"]=13795, + ["mine_stage"]=44 + }, + [2301]={ + ["distance"]=13801, + ["mine_stage"]=65 + }, + [2302]={ + ["distance"]=13807, + ["mine_stage"]=16 + }, + [2303]={ + ["distance"]=13813, + ["mine_stage"]=38 + }, + [2304]={ + ["distance"]=13819, + ["mine_stage"]=24 + }, + [2305]={ + ["distance"]=13825, + ["mine_stage"]=32 + }, + [2306]={ + ["distance"]=13831, + ["mine_stage"]=51 + }, + [2307]={ + ["distance"]=13837, + ["mine_stage"]=60 + }, + [2308]={ + ["distance"]=13843, + ["mine_stage"]=1 + }, + [2309]={ + ["distance"]=13849, + ["mine_stage"]=30 + }, + [2310]={ + ["distance"]=13855, + ["mine_stage"]=25 + }, + [2311]={ + ["distance"]=13861, + ["mine_stage"]=56 + }, + [2312]={ + ["distance"]=13867, + ["mine_stage"]=59 + }, + [2313]={ + ["distance"]=13873, + ["mine_stage"]=51 + }, + [2314]={ + ["distance"]=13879, + ["mine_stage"]=34 + }, + [2315]={ + ["distance"]=13885, + ["mine_stage"]=4 + }, + [2316]={ + ["distance"]=13891, + ["mine_stage"]=20 + }, + [2317]={ + ["distance"]=13897, + ["mine_stage"]=5 + }, + [2318]={ + ["distance"]=13903, + ["mine_stage"]=19 + }, + [2319]={ + ["distance"]=13909, + ["mine_stage"]=57 + }, + [2320]={ + ["distance"]=13915, + ["mine_stage"]=29 + }, + [2321]={ + ["distance"]=13921, + ["mine_stage"]=37 + }, + [2322]={ + ["distance"]=13927, + ["mine_stage"]=55 + }, + [2323]={ + ["distance"]=13933, + ["mine_stage"]=13 + }, + [2324]={ + ["distance"]=13939, + ["mine_stage"]=12 + }, + [2325]={ + ["distance"]=13945, + ["mine_stage"]=37 + }, + [2326]={ + ["distance"]=13951, + ["mine_stage"]=60 + }, + [2327]={ + ["distance"]=13957, + ["mine_stage"]=32 + }, + [2328]={ + ["distance"]=13963, + ["mine_stage"]=16 + }, + [2329]={ + ["distance"]=13969, + ["mine_stage"]=18 + }, + [2330]={ + ["distance"]=13975, + ["mine_stage"]=29 + }, + [2331]={ + ["distance"]=13981, + ["mine_stage"]=50 + }, + [2332]={ + ["distance"]=13987, + ["mine_stage"]=43 + }, + [2333]={ + ["distance"]=13993, + ["mine_stage"]=55 + }, + [2334]={ + ["distance"]=13999, + ["mine_stage"]=34 + }, + [2335]={ + ["distance"]=14005, + ["mine_stage"]=5 + }, + [2336]={ + ["distance"]=14011, + ["mine_stage"]=44 + }, + [2337]={ + ["distance"]=14017, + ["mine_stage"]=55 + }, + [2338]={ + ["distance"]=14023, + ["mine_stage"]=38 + }, + [2339]={ + ["distance"]=14029, + ["mine_stage"]=12 + }, + [2340]={ + ["distance"]=14035, + ["mine_stage"]=52 + }, + [2341]={ + ["distance"]=14041, + ["mine_stage"]=31 + }, + [2342]={ + ["distance"]=14047, + ["mine_stage"]=56 + }, + [2343]={ + ["distance"]=14053, + ["mine_stage"]=4 + }, + [2344]={ + ["distance"]=14059, + ["mine_stage"]=30 + }, + [2345]={ + ["distance"]=14065, + ["mine_stage"]=36 + }, + [2346]={ + ["distance"]=14071, + ["mine_stage"]=27 + }, + [2347]={ + ["distance"]=14077, + ["mine_stage"]=59 + }, + [2348]={ + ["distance"]=14083, + ["mine_stage"]=12 + }, + [2349]={ + ["distance"]=14089, + ["mine_stage"]=31 + }, + [2350]={ + ["distance"]=14095, + ["mine_stage"]=5 + }, + [2351]={ + ["distance"]=14101, + ["mine_stage"]=68 + }, + [2352]={ + ["distance"]=14107, + ["mine_stage"]=59 + }, + [2353]={ + ["distance"]=14113, + ["mine_stage"]=19 + }, + [2354]={ + ["distance"]=14119, + ["mine_stage"]=56 + }, + [2355]={ + ["distance"]=14125, + ["mine_stage"]=4 + }, + [2356]={ + ["distance"]=14131, + ["mine_stage"]=41 + }, + [2357]={ + ["distance"]=14137, + ["mine_stage"]=12 + }, + [2358]={ + ["distance"]=14143, + ["mine_stage"]=58 + }, + [2359]={ + ["distance"]=14149, + ["mine_stage"]=26 + }, + [2360]={ + ["distance"]=14155, + ["mine_stage"]=34 + }, + [2361]={ + ["distance"]=14161, + ["mine_stage"]=13 + }, + [2362]={ + ["distance"]=14167, + ["mine_stage"]=2 + }, + [2363]={ + ["distance"]=14173, + ["mine_stage"]=4 + }, + [2364]={ + ["distance"]=14179, + ["mine_stage"]=47 + }, + [2365]={ + ["distance"]=14185, + ["mine_stage"]=9 + }, + [2366]={ + ["distance"]=14191, + ["mine_stage"]=47 + }, + [2367]={ + ["distance"]=14197, + ["mine_stage"]=28 + }, + [2368]={ + ["distance"]=14203, + ["mine_stage"]=12 + }, + [2369]={ + ["distance"]=14209, + ["mine_stage"]=40 + }, + [2370]={ + ["distance"]=14215, + ["mine_stage"]=20 + }, + [2371]={ + ["distance"]=14221, + ["mine_stage"]=18 + }, + [2372]={ + ["distance"]=14227, + ["mine_stage"]=46 + }, + [2373]={ + ["distance"]=14233, + ["mine_stage"]=4 + }, + [2374]={ + ["distance"]=14239, + ["mine_stage"]=4 + }, + [2375]={ + ["distance"]=14245, + ["mine_stage"]=29 + }, + [2376]={ + ["distance"]=14251, + ["mine_stage"]=26 + }, + [2377]={ + ["distance"]=14257, + ["mine_stage"]=23 + }, + [2378]={ + ["distance"]=14263, + ["mine_stage"]=59 + }, + [2379]={ + ["distance"]=14269, + ["mine_stage"]=37 + }, + [2380]={ + ["distance"]=14275, + ["mine_stage"]=24 + }, + [2381]={ + ["distance"]=14281, + ["mine_stage"]=6 + }, + [2382]={ + ["distance"]=14287, + ["mine_stage"]=60 + }, + [2383]={ + ["distance"]=14293, + ["mine_stage"]=55 + }, + [2384]={ + ["distance"]=14299, + ["mine_stage"]=31 + }, + [2385]={ + ["distance"]=14305, + ["mine_stage"]=14 + }, + [2386]={ + ["distance"]=14311, + ["mine_stage"]=10 + }, + [2387]={ + ["distance"]=14317, + ["mine_stage"]=35 + }, + [2388]={ + ["distance"]=14323, + ["mine_stage"]=60 + }, + [2389]={ + ["distance"]=14329, + ["mine_stage"]=11 + }, + [2390]={ + ["distance"]=14335, + ["mine_stage"]=49 + }, + [2391]={ + ["distance"]=14341, + ["mine_stage"]=34 + }, + [2392]={ + ["distance"]=14347, + ["mine_stage"]=37 + }, + [2393]={ + ["distance"]=14353, + ["mine_stage"]=3 + }, + [2394]={ + ["distance"]=14359, + ["mine_stage"]=28 + }, + [2395]={ + ["distance"]=14365, + ["mine_stage"]=6 + }, + [2396]={ + ["distance"]=14371, + ["mine_stage"]=44 + }, + [2397]={ + ["distance"]=14377, + ["mine_stage"]=44 + }, + [2398]={ + ["distance"]=14383, + ["mine_stage"]=23 + }, + [2399]={ + ["distance"]=14389, + ["mine_stage"]=41 + }, + [2400]={ + ["distance"]=14395, + ["mine_stage"]=32 + }, + [2401]={ + ["distance"]=14401, + ["mine_stage"]=66 + }, + [2402]={ + ["distance"]=14407, + ["mine_stage"]=9 + }, + [2403]={ + ["distance"]=14413, + ["mine_stage"]=46 + }, + [2404]={ + ["distance"]=14419, + ["mine_stage"]=1 + }, + [2405]={ + ["distance"]=14425, + ["mine_stage"]=52 + }, + [2406]={ + ["distance"]=14431, + ["mine_stage"]=50 + }, + [2407]={ + ["distance"]=14437, + ["mine_stage"]=38 + }, + [2408]={ + ["distance"]=14443, + ["mine_stage"]=17 + }, + [2409]={ + ["distance"]=14449, + ["mine_stage"]=35 + }, + [2410]={ + ["distance"]=14455, + ["mine_stage"]=50 + }, + [2411]={ + ["distance"]=14461, + ["mine_stage"]=33 + }, + [2412]={ + ["distance"]=14467, + ["mine_stage"]=3 + }, + [2413]={ + ["distance"]=14473, + ["mine_stage"]=48 + }, + [2414]={ + ["distance"]=14479, + ["mine_stage"]=37 + }, + [2415]={ + ["distance"]=14485, + ["mine_stage"]=26 + }, + [2416]={ + ["distance"]=14491, + ["mine_stage"]=20 + }, + [2417]={ + ["distance"]=14497, + ["mine_stage"]=27 + }, + [2418]={ + ["distance"]=14503, + ["mine_stage"]=56 + }, + [2419]={ + ["distance"]=14509, + ["mine_stage"]=20 + }, + [2420]={ + ["distance"]=14515, + ["mine_stage"]=44 + }, + [2421]={ + ["distance"]=14521, + ["mine_stage"]=16 + }, + [2422]={ + ["distance"]=14527, + ["mine_stage"]=11 + }, + [2423]={ + ["distance"]=14533, + ["mine_stage"]=38 + }, + [2424]={ + ["distance"]=14539, + ["mine_stage"]=34 + }, + [2425]={ + ["distance"]=14545, + ["mine_stage"]=55 + }, + [2426]={ + ["distance"]=14551, + ["mine_stage"]=40 + }, + [2427]={ + ["distance"]=14557, + ["mine_stage"]=33 + }, + [2428]={ + ["distance"]=14563, + ["mine_stage"]=36 + }, + [2429]={ + ["distance"]=14569, + ["mine_stage"]=12 + }, + [2430]={ + ["distance"]=14575, + ["mine_stage"]=53 + }, + [2431]={ + ["distance"]=14581, + ["mine_stage"]=30 + }, + [2432]={ + ["distance"]=14587, + ["mine_stage"]=57 + }, + [2433]={ + ["distance"]=14593, + ["mine_stage"]=42 + }, + [2434]={ + ["distance"]=14599, + ["mine_stage"]=52 + }, + [2435]={ + ["distance"]=14605, + ["mine_stage"]=47 + }, + [2436]={ + ["distance"]=14611, + ["mine_stage"]=15 + }, + [2437]={ + ["distance"]=14617, + ["mine_stage"]=24 + }, + [2438]={ + ["distance"]=14623, + ["mine_stage"]=32 + }, + [2439]={ + ["distance"]=14629, + ["mine_stage"]=54 + }, + [2440]={ + ["distance"]=14635, + ["mine_stage"]=14 + }, + [2441]={ + ["distance"]=14641, + ["mine_stage"]=2 + }, + [2442]={ + ["distance"]=14647, + ["mine_stage"]=45 + }, + [2443]={ + ["distance"]=14653, + ["mine_stage"]=48 + }, + [2444]={ + ["distance"]=14659, + ["mine_stage"]=20 + }, + [2445]={ + ["distance"]=14665, + ["mine_stage"]=4 + }, + [2446]={ + ["distance"]=14671, + ["mine_stage"]=4 + }, + [2447]={ + ["distance"]=14677, + ["mine_stage"]=48 + }, + [2448]={ + ["distance"]=14683, + ["mine_stage"]=52 + }, + [2449]={ + ["distance"]=14689, + ["mine_stage"]=34 + }, + [2450]={ + ["distance"]=14695, + ["mine_stage"]=21 + }, + [2451]={ + ["distance"]=14701, + ["mine_stage"]=69 + }, + [2452]={ + ["distance"]=14707, + ["mine_stage"]=34 + }, + [2453]={ + ["distance"]=14713, + ["mine_stage"]=14 + }, + [2454]={ + ["distance"]=14719, + ["mine_stage"]=9 + }, + [2455]={ + ["distance"]=14725, + ["mine_stage"]=25 + }, + [2456]={ + ["distance"]=14731, + ["mine_stage"]=17 + }, + [2457]={ + ["distance"]=14737, + ["mine_stage"]=17 + }, + [2458]={ + ["distance"]=14743, + ["mine_stage"]=45 + }, + [2459]={ + ["distance"]=14749, + ["mine_stage"]=58 + }, + [2460]={ + ["distance"]=14755, + ["mine_stage"]=36 + }, + [2461]={ + ["distance"]=14761, + ["mine_stage"]=23 + }, + [2462]={ + ["distance"]=14767, + ["mine_stage"]=16 + }, + [2463]={ + ["distance"]=14773, + ["mine_stage"]=32 + }, + [2464]={ + ["distance"]=14779, + ["mine_stage"]=23 + }, + [2465]={ + ["distance"]=14785, + ["mine_stage"]=56 + }, + [2466]={ + ["distance"]=14791, + ["mine_stage"]=57 + }, + [2467]={ + ["distance"]=14797, + ["mine_stage"]=46 + }, + [2468]={ + ["distance"]=14803, + ["mine_stage"]=12 + }, + [2469]={ + ["distance"]=14809, + ["mine_stage"]=46 + }, + [2470]={ + ["distance"]=14815, + ["mine_stage"]=1 + }, + [2471]={ + ["distance"]=14821, + ["mine_stage"]=24 + }, + [2472]={ + ["distance"]=14827, + ["mine_stage"]=16 + }, + [2473]={ + ["distance"]=14833, + ["mine_stage"]=26 + }, + [2474]={ + ["distance"]=14839, + ["mine_stage"]=2 + }, + [2475]={ + ["distance"]=14845, + ["mine_stage"]=60 + }, + [2476]={ + ["distance"]=14851, + ["mine_stage"]=31 + }, + [2477]={ + ["distance"]=14857, + ["mine_stage"]=26 + }, + [2478]={ + ["distance"]=14863, + ["mine_stage"]=31 + }, + [2479]={ + ["distance"]=14869, + ["mine_stage"]=33 + }, + [2480]={ + ["distance"]=14875, + ["mine_stage"]=26 + }, + [2481]={ + ["distance"]=14881, + ["mine_stage"]=47 + }, + [2482]={ + ["distance"]=14887, + ["mine_stage"]=2 + }, + [2483]={ + ["distance"]=14893, + ["mine_stage"]=24 + }, + [2484]={ + ["distance"]=14899, + ["mine_stage"]=17 + }, + [2485]={ + ["distance"]=14905, + ["mine_stage"]=57 + }, + [2486]={ + ["distance"]=14911, + ["mine_stage"]=59 + }, + [2487]={ + ["distance"]=14917, + ["mine_stage"]=47 + }, + [2488]={ + ["distance"]=14923, + ["mine_stage"]=46 + }, + [2489]={ + ["distance"]=14929, + ["mine_stage"]=51 + }, + [2490]={ + ["distance"]=14935, + ["mine_stage"]=36 + }, + [2491]={ + ["distance"]=14941, + ["mine_stage"]=4 + }, + [2492]={ + ["distance"]=14947, + ["mine_stage"]=1 + }, + [2493]={ + ["distance"]=14953, + ["mine_stage"]=53 + }, + [2494]={ + ["distance"]=14959, + ["mine_stage"]=30 + }, + [2495]={ + ["distance"]=14965, + ["mine_stage"]=57 + }, + [2496]={ + ["distance"]=14971, + ["mine_stage"]=32 + }, + [2497]={ + ["distance"]=14977, + ["mine_stage"]=4 + }, + [2498]={ + ["distance"]=14983, + ["mine_stage"]=53 + }, + [2499]={ + ["distance"]=14989, + ["mine_stage"]=32 + }, + [2500]={ + ["distance"]=14995, + ["mine_stage"]=6 + }, + [2501]={ + ["distance"]=15001, + ["mine_stage"]=64 + }, + [2502]={ + ["distance"]=15007, + ["mine_stage"]=19 + }, + [2503]={ + ["distance"]=15013, + ["mine_stage"]=2 + }, + [2504]={ + ["distance"]=15019, + ["mine_stage"]=48 + }, + [2505]={ + ["distance"]=15025, + ["mine_stage"]=44 + }, + [2506]={ + ["distance"]=15031, + ["mine_stage"]=29 + }, + [2507]={ + ["distance"]=15037, + ["mine_stage"]=23 + }, + [2508]={ + ["distance"]=15043, + ["mine_stage"]=29 + }, + [2509]={ + ["distance"]=15049, + ["mine_stage"]=14 + }, + [2510]={ + ["distance"]=15055, + ["mine_stage"]=43 + }, + [2511]={ + ["distance"]=15061, + ["mine_stage"]=19 + }, + [2512]={ + ["distance"]=15067, + ["mine_stage"]=57 + }, + [2513]={ + ["distance"]=15073, + ["mine_stage"]=24 + }, + [2514]={ + ["distance"]=15079, + ["mine_stage"]=21 + }, + [2515]={ + ["distance"]=15085, + ["mine_stage"]=1 + }, + [2516]={ + ["distance"]=15091, + ["mine_stage"]=54 + }, + [2517]={ + ["distance"]=15097, + ["mine_stage"]=48 + }, + [2518]={ + ["distance"]=15103, + ["mine_stage"]=15 + }, + [2519]={ + ["distance"]=15109, + ["mine_stage"]=8 + }, + [2520]={ + ["distance"]=15115, + ["mine_stage"]=2 + }, + [2521]={ + ["distance"]=15121, + ["mine_stage"]=19 + }, + [2522]={ + ["distance"]=15127, + ["mine_stage"]=48 + }, + [2523]={ + ["distance"]=15133, + ["mine_stage"]=11 + }, + [2524]={ + ["distance"]=15139, + ["mine_stage"]=18 + }, + [2525]={ + ["distance"]=15145, + ["mine_stage"]=58 + }, + [2526]={ + ["distance"]=15151, + ["mine_stage"]=29 + }, + [2527]={ + ["distance"]=15157, + ["mine_stage"]=52 + }, + [2528]={ + ["distance"]=15163, + ["mine_stage"]=16 + }, + [2529]={ + ["distance"]=15169, + ["mine_stage"]=55 + }, + [2530]={ + ["distance"]=15175, + ["mine_stage"]=2 + }, + [2531]={ + ["distance"]=15181, + ["mine_stage"]=8 + }, + [2532]={ + ["distance"]=15187, + ["mine_stage"]=5 + }, + [2533]={ + ["distance"]=15193, + ["mine_stage"]=57 + }, + [2534]={ + ["distance"]=15199, + ["mine_stage"]=25 + }, + [2535]={ + ["distance"]=15205, + ["mine_stage"]=40 + }, + [2536]={ + ["distance"]=15211, + ["mine_stage"]=12 + }, + [2537]={ + ["distance"]=15217, + ["mine_stage"]=27 + }, + [2538]={ + ["distance"]=15223, + ["mine_stage"]=15 + }, + [2539]={ + ["distance"]=15229, + ["mine_stage"]=22 + }, + [2540]={ + ["distance"]=15235, + ["mine_stage"]=13 + }, + [2541]={ + ["distance"]=15241, + ["mine_stage"]=47 + }, + [2542]={ + ["distance"]=15247, + ["mine_stage"]=11 + }, + [2543]={ + ["distance"]=15253, + ["mine_stage"]=15 + }, + [2544]={ + ["distance"]=15259, + ["mine_stage"]=2 + }, + [2545]={ + ["distance"]=15265, + ["mine_stage"]=53 + }, + [2546]={ + ["distance"]=15271, + ["mine_stage"]=55 + }, + [2547]={ + ["distance"]=15277, + ["mine_stage"]=10 + }, + [2548]={ + ["distance"]=15283, + ["mine_stage"]=53 + }, + [2549]={ + ["distance"]=15289, + ["mine_stage"]=1 + }, + [2550]={ + ["distance"]=15295, + ["mine_stage"]=14 + }, + [2551]={ + ["distance"]=15301, + ["mine_stage"]=67 + }, + [2552]={ + ["distance"]=15307, + ["mine_stage"]=45 + }, + [2553]={ + ["distance"]=15313, + ["mine_stage"]=12 + }, + [2554]={ + ["distance"]=15319, + ["mine_stage"]=52 + }, + [2555]={ + ["distance"]=15325, + ["mine_stage"]=44 + }, + [2556]={ + ["distance"]=15331, + ["mine_stage"]=34 + }, + [2557]={ + ["distance"]=15337, + ["mine_stage"]=58 + }, + [2558]={ + ["distance"]=15343, + ["mine_stage"]=43 + }, + [2559]={ + ["distance"]=15349, + ["mine_stage"]=29 + }, + [2560]={ + ["distance"]=15355, + ["mine_stage"]=16 + }, + [2561]={ + ["distance"]=15361, + ["mine_stage"]=6 + }, + [2562]={ + ["distance"]=15367, + ["mine_stage"]=19 + }, + [2563]={ + ["distance"]=15373, + ["mine_stage"]=42 + }, + [2564]={ + ["distance"]=15379, + ["mine_stage"]=38 + }, + [2565]={ + ["distance"]=15385, + ["mine_stage"]=16 + }, + [2566]={ + ["distance"]=15391, + ["mine_stage"]=57 + }, + [2567]={ + ["distance"]=15397, + ["mine_stage"]=38 + }, + [2568]={ + ["distance"]=15403, + ["mine_stage"]=8 + }, + [2569]={ + ["distance"]=15409, + ["mine_stage"]=59 + }, + [2570]={ + ["distance"]=15415, + ["mine_stage"]=50 + }, + [2571]={ + ["distance"]=15421, + ["mine_stage"]=3 + }, + [2572]={ + ["distance"]=15427, + ["mine_stage"]=7 + }, + [2573]={ + ["distance"]=15433, + ["mine_stage"]=20 + }, + [2574]={ + ["distance"]=15439, + ["mine_stage"]=2 + }, + [2575]={ + ["distance"]=15445, + ["mine_stage"]=57 + }, + [2576]={ + ["distance"]=15451, + ["mine_stage"]=44 + }, + [2577]={ + ["distance"]=15457, + ["mine_stage"]=43 + }, + [2578]={ + ["distance"]=15463, + ["mine_stage"]=29 + }, + [2579]={ + ["distance"]=15469, + ["mine_stage"]=6 + }, + [2580]={ + ["distance"]=15475, + ["mine_stage"]=57 + }, + [2581]={ + ["distance"]=15481, + ["mine_stage"]=22 + }, + [2582]={ + ["distance"]=15487, + ["mine_stage"]=40 + }, + [2583]={ + ["distance"]=15493, + ["mine_stage"]=46 + }, + [2584]={ + ["distance"]=15499, + ["mine_stage"]=7 + }, + [2585]={ + ["distance"]=15505, + ["mine_stage"]=25 + }, + [2586]={ + ["distance"]=15511, + ["mine_stage"]=30 + }, + [2587]={ + ["distance"]=15517, + ["mine_stage"]=30 + }, + [2588]={ + ["distance"]=15523, + ["mine_stage"]=22 + }, + [2589]={ + ["distance"]=15529, + ["mine_stage"]=54 + }, + [2590]={ + ["distance"]=15535, + ["mine_stage"]=40 + }, + [2591]={ + ["distance"]=15541, + ["mine_stage"]=43 + }, + [2592]={ + ["distance"]=15547, + ["mine_stage"]=41 + }, + [2593]={ + ["distance"]=15553, + ["mine_stage"]=4 + }, + [2594]={ + ["distance"]=15559, + ["mine_stage"]=50 + }, + [2595]={ + ["distance"]=15565, + ["mine_stage"]=21 + }, + [2596]={ + ["distance"]=15571, + ["mine_stage"]=9 + }, + [2597]={ + ["distance"]=15577, + ["mine_stage"]=42 + }, + [2598]={ + ["distance"]=15583, + ["mine_stage"]=23 + }, + [2599]={ + ["distance"]=15589, + ["mine_stage"]=11 + }, + [2600]={ + ["distance"]=15595, + ["mine_stage"]=40 + }, + [2601]={ + ["distance"]=15601, + ["mine_stage"]=65 + }, + [2602]={ + ["distance"]=15607, + ["mine_stage"]=24 + }, + [2603]={ + ["distance"]=15613, + ["mine_stage"]=1 + }, + [2604]={ + ["distance"]=15619, + ["mine_stage"]=25 + }, + [2605]={ + ["distance"]=15625, + ["mine_stage"]=28 + }, + [2606]={ + ["distance"]=15631, + ["mine_stage"]=43 + }, + [2607]={ + ["distance"]=15637, + ["mine_stage"]=8 + }, + [2608]={ + ["distance"]=15643, + ["mine_stage"]=48 + }, + [2609]={ + ["distance"]=15649, + ["mine_stage"]=1 + }, + [2610]={ + ["distance"]=15655, + ["mine_stage"]=58 + }, + [2611]={ + ["distance"]=15661, + ["mine_stage"]=9 + }, + [2612]={ + ["distance"]=15667, + ["mine_stage"]=51 + }, + [2613]={ + ["distance"]=15673, + ["mine_stage"]=1 + }, + [2614]={ + ["distance"]=15679, + ["mine_stage"]=37 + }, + [2615]={ + ["distance"]=15685, + ["mine_stage"]=31 + }, + [2616]={ + ["distance"]=15691, + ["mine_stage"]=1 + }, + [2617]={ + ["distance"]=15697, + ["mine_stage"]=41 + }, + [2618]={ + ["distance"]=15703, + ["mine_stage"]=19 + }, + [2619]={ + ["distance"]=15709, + ["mine_stage"]=12 + }, + [2620]={ + ["distance"]=15715, + ["mine_stage"]=48 + }, + [2621]={ + ["distance"]=15721, + ["mine_stage"]=11 + }, + [2622]={ + ["distance"]=15727, + ["mine_stage"]=26 + }, + [2623]={ + ["distance"]=15733, + ["mine_stage"]=17 + }, + [2624]={ + ["distance"]=15739, + ["mine_stage"]=14 + }, + [2625]={ + ["distance"]=15745, + ["mine_stage"]=43 + }, + [2626]={ + ["distance"]=15751, + ["mine_stage"]=25 + }, + [2627]={ + ["distance"]=15757, + ["mine_stage"]=6 + }, + [2628]={ + ["distance"]=15763, + ["mine_stage"]=22 + }, + [2629]={ + ["distance"]=15769, + ["mine_stage"]=39 + }, + [2630]={ + ["distance"]=15775, + ["mine_stage"]=33 + }, + [2631]={ + ["distance"]=15781, + ["mine_stage"]=32 + }, + [2632]={ + ["distance"]=15787, + ["mine_stage"]=3 + }, + [2633]={ + ["distance"]=15793, + ["mine_stage"]=34 + }, + [2634]={ + ["distance"]=15799, + ["mine_stage"]=27 + }, + [2635]={ + ["distance"]=15805, + ["mine_stage"]=28 + }, + [2636]={ + ["distance"]=15811, + ["mine_stage"]=23 + }, + [2637]={ + ["distance"]=15817, + ["mine_stage"]=58 + }, + [2638]={ + ["distance"]=15823, + ["mine_stage"]=50 + }, + [2639]={ + ["distance"]=15829, + ["mine_stage"]=37 + }, + [2640]={ + ["distance"]=15835, + ["mine_stage"]=39 + }, + [2641]={ + ["distance"]=15841, + ["mine_stage"]=25 + }, + [2642]={ + ["distance"]=15847, + ["mine_stage"]=51 + }, + [2643]={ + ["distance"]=15853, + ["mine_stage"]=53 + }, + [2644]={ + ["distance"]=15859, + ["mine_stage"]=20 + }, + [2645]={ + ["distance"]=15865, + ["mine_stage"]=20 + }, + [2646]={ + ["distance"]=15871, + ["mine_stage"]=16 + }, + [2647]={ + ["distance"]=15877, + ["mine_stage"]=3 + }, + [2648]={ + ["distance"]=15883, + ["mine_stage"]=14 + }, + [2649]={ + ["distance"]=15889, + ["mine_stage"]=37 + }, + [2650]={ + ["distance"]=15895, + ["mine_stage"]=23 + }, + [2651]={ + ["distance"]=15901, + ["mine_stage"]=68 + }, + [2652]={ + ["distance"]=15907, + ["mine_stage"]=60 + }, + [2653]={ + ["distance"]=15913, + ["mine_stage"]=16 + }, + [2654]={ + ["distance"]=15919, + ["mine_stage"]=56 + }, + [2655]={ + ["distance"]=15925, + ["mine_stage"]=30 + }, + [2656]={ + ["distance"]=15931, + ["mine_stage"]=2 + }, + [2657]={ + ["distance"]=15937, + ["mine_stage"]=12 + }, + [2658]={ + ["distance"]=15943, + ["mine_stage"]=26 + }, + [2659]={ + ["distance"]=15949, + ["mine_stage"]=32 + }, + [2660]={ + ["distance"]=15955, + ["mine_stage"]=59 + }, + [2661]={ + ["distance"]=15961, + ["mine_stage"]=17 + }, + [2662]={ + ["distance"]=15967, + ["mine_stage"]=30 + }, + [2663]={ + ["distance"]=15973, + ["mine_stage"]=39 + }, + [2664]={ + ["distance"]=15979, + ["mine_stage"]=57 + }, + [2665]={ + ["distance"]=15985, + ["mine_stage"]=20 + }, + [2666]={ + ["distance"]=15991, + ["mine_stage"]=58 + }, + [2667]={ + ["distance"]=15997, + ["mine_stage"]=39 + }, + [2668]={ + ["distance"]=16003, + ["mine_stage"]=39 + }, + [2669]={ + ["distance"]=16009, + ["mine_stage"]=18 + }, + [2670]={ + ["distance"]=16015, + ["mine_stage"]=8 + }, + [2671]={ + ["distance"]=16021, + ["mine_stage"]=49 + }, + [2672]={ + ["distance"]=16027, + ["mine_stage"]=38 + }, + [2673]={ + ["distance"]=16033, + ["mine_stage"]=40 + }, + [2674]={ + ["distance"]=16039, + ["mine_stage"]=37 + }, + [2675]={ + ["distance"]=16045, + ["mine_stage"]=19 + }, + [2676]={ + ["distance"]=16051, + ["mine_stage"]=16 + }, + [2677]={ + ["distance"]=16057, + ["mine_stage"]=30 + }, + [2678]={ + ["distance"]=16063, + ["mine_stage"]=39 + }, + [2679]={ + ["distance"]=16069, + ["mine_stage"]=2 + }, + [2680]={ + ["distance"]=16075, + ["mine_stage"]=15 + }, + [2681]={ + ["distance"]=16081, + ["mine_stage"]=37 + }, + [2682]={ + ["distance"]=16087, + ["mine_stage"]=39 + }, + [2683]={ + ["distance"]=16093, + ["mine_stage"]=37 + }, + [2684]={ + ["distance"]=16099, + ["mine_stage"]=56 + }, + [2685]={ + ["distance"]=16105, + ["mine_stage"]=1 + }, + [2686]={ + ["distance"]=16111, + ["mine_stage"]=58 + }, + [2687]={ + ["distance"]=16117, + ["mine_stage"]=24 + }, + [2688]={ + ["distance"]=16123, + ["mine_stage"]=5 + }, + [2689]={ + ["distance"]=16129, + ["mine_stage"]=48 + }, + [2690]={ + ["distance"]=16135, + ["mine_stage"]=34 + }, + [2691]={ + ["distance"]=16141, + ["mine_stage"]=3 + }, + [2692]={ + ["distance"]=16147, + ["mine_stage"]=18 + }, + [2693]={ + ["distance"]=16153, + ["mine_stage"]=28 + }, + [2694]={ + ["distance"]=16159, + ["mine_stage"]=49 + }, + [2695]={ + ["distance"]=16165, + ["mine_stage"]=60 + }, + [2696]={ + ["distance"]=16171, + ["mine_stage"]=55 + }, + [2697]={ + ["distance"]=16177, + ["mine_stage"]=2 + }, + [2698]={ + ["distance"]=16183, + ["mine_stage"]=44 + }, + [2699]={ + ["distance"]=16189, + ["mine_stage"]=12 + }, + [2700]={ + ["distance"]=16195, + ["mine_stage"]=10 + }, + [2701]={ + ["distance"]=16201, + ["mine_stage"]=66 + }, + [2702]={ + ["distance"]=16207, + ["mine_stage"]=29 + }, + [2703]={ + ["distance"]=16213, + ["mine_stage"]=14 + }, + [2704]={ + ["distance"]=16219, + ["mine_stage"]=41 + }, + [2705]={ + ["distance"]=16225, + ["mine_stage"]=26 + }, + [2706]={ + ["distance"]=16231, + ["mine_stage"]=25 + }, + [2707]={ + ["distance"]=16237, + ["mine_stage"]=25 + }, + [2708]={ + ["distance"]=16243, + ["mine_stage"]=4 + }, + [2709]={ + ["distance"]=16249, + ["mine_stage"]=11 + }, + [2710]={ + ["distance"]=16255, + ["mine_stage"]=55 + }, + [2711]={ + ["distance"]=16261, + ["mine_stage"]=43 + }, + [2712]={ + ["distance"]=16267, + ["mine_stage"]=28 + }, + [2713]={ + ["distance"]=16273, + ["mine_stage"]=31 + }, + [2714]={ + ["distance"]=16279, + ["mine_stage"]=46 + }, + [2715]={ + ["distance"]=16285, + ["mine_stage"]=11 + }, + [2716]={ + ["distance"]=16291, + ["mine_stage"]=29 + }, + [2717]={ + ["distance"]=16297, + ["mine_stage"]=22 + }, + [2718]={ + ["distance"]=16303, + ["mine_stage"]=20 + }, + [2719]={ + ["distance"]=16309, + ["mine_stage"]=59 + }, + [2720]={ + ["distance"]=16315, + ["mine_stage"]=25 + }, + [2721]={ + ["distance"]=16321, + ["mine_stage"]=31 + }, + [2722]={ + ["distance"]=16327, + ["mine_stage"]=52 + }, + [2723]={ + ["distance"]=16333, + ["mine_stage"]=5 + }, + [2724]={ + ["distance"]=16339, + ["mine_stage"]=43 + }, + [2725]={ + ["distance"]=16345, + ["mine_stage"]=25 + }, + [2726]={ + ["distance"]=16351, + ["mine_stage"]=46 + }, + [2727]={ + ["distance"]=16357, + ["mine_stage"]=41 + }, + [2728]={ + ["distance"]=16363, + ["mine_stage"]=50 + }, + [2729]={ + ["distance"]=16369, + ["mine_stage"]=51 + }, + [2730]={ + ["distance"]=16375, + ["mine_stage"]=40 + }, + [2731]={ + ["distance"]=16381, + ["mine_stage"]=53 + }, + [2732]={ + ["distance"]=16387, + ["mine_stage"]=56 + }, + [2733]={ + ["distance"]=16393, + ["mine_stage"]=47 + }, + [2734]={ + ["distance"]=16399, + ["mine_stage"]=13 + }, + [2735]={ + ["distance"]=16405, + ["mine_stage"]=22 + }, + [2736]={ + ["distance"]=16411, + ["mine_stage"]=36 + }, + [2737]={ + ["distance"]=16417, + ["mine_stage"]=50 + }, + [2738]={ + ["distance"]=16423, + ["mine_stage"]=32 + }, + [2739]={ + ["distance"]=16429, + ["mine_stage"]=40 + }, + [2740]={ + ["distance"]=16435, + ["mine_stage"]=37 + }, + [2741]={ + ["distance"]=16441, + ["mine_stage"]=34 + }, + [2742]={ + ["distance"]=16447, + ["mine_stage"]=52 + }, + [2743]={ + ["distance"]=16453, + ["mine_stage"]=39 + }, + [2744]={ + ["distance"]=16459, + ["mine_stage"]=6 + }, + [2745]={ + ["distance"]=16465, + ["mine_stage"]=19 + }, + [2746]={ + ["distance"]=16471, + ["mine_stage"]=29 + }, + [2747]={ + ["distance"]=16477, + ["mine_stage"]=22 + }, + [2748]={ + ["distance"]=16483, + ["mine_stage"]=24 + }, + [2749]={ + ["distance"]=16489, + ["mine_stage"]=25 + }, + [2750]={ + ["distance"]=16495, + ["mine_stage"]=39 + }, + [2751]={ + ["distance"]=16501, + ["mine_stage"]=69 + }, + [2752]={ + ["distance"]=16507, + ["mine_stage"]=52 + }, + [2753]={ + ["distance"]=16513, + ["mine_stage"]=21 + }, + [2754]={ + ["distance"]=16519, + ["mine_stage"]=50 + }, + [2755]={ + ["distance"]=16525, + ["mine_stage"]=22 + }, + [2756]={ + ["distance"]=16531, + ["mine_stage"]=48 + }, + [2757]={ + ["distance"]=16537, + ["mine_stage"]=42 + }, + [2758]={ + ["distance"]=16543, + ["mine_stage"]=4 + }, + [2759]={ + ["distance"]=16549, + ["mine_stage"]=16 + }, + [2760]={ + ["distance"]=16555, + ["mine_stage"]=29 + }, + [2761]={ + ["distance"]=16561, + ["mine_stage"]=1 + }, + [2762]={ + ["distance"]=16567, + ["mine_stage"]=40 + }, + [2763]={ + ["distance"]=16573, + ["mine_stage"]=19 + }, + [2764]={ + ["distance"]=16579, + ["mine_stage"]=9 + }, + [2765]={ + ["distance"]=16585, + ["mine_stage"]=21 + }, + [2766]={ + ["distance"]=16591, + ["mine_stage"]=38 + }, + [2767]={ + ["distance"]=16597, + ["mine_stage"]=56 + }, + [2768]={ + ["distance"]=16603, + ["mine_stage"]=19 + }, + [2769]={ + ["distance"]=16609, + ["mine_stage"]=60 + }, + [2770]={ + ["distance"]=16615, + ["mine_stage"]=58 + }, + [2771]={ + ["distance"]=16621, + ["mine_stage"]=40 + }, + [2772]={ + ["distance"]=16627, + ["mine_stage"]=46 + }, + [2773]={ + ["distance"]=16633, + ["mine_stage"]=28 + }, + [2774]={ + ["distance"]=16639, + ["mine_stage"]=54 + }, + [2775]={ + ["distance"]=16645, + ["mine_stage"]=31 + }, + [2776]={ + ["distance"]=16651, + ["mine_stage"]=50 + }, + [2777]={ + ["distance"]=16657, + ["mine_stage"]=49 + }, + [2778]={ + ["distance"]=16663, + ["mine_stage"]=47 + }, + [2779]={ + ["distance"]=16669, + ["mine_stage"]=14 + }, + [2780]={ + ["distance"]=16675, + ["mine_stage"]=15 + }, + [2781]={ + ["distance"]=16681, + ["mine_stage"]=51 + }, + [2782]={ + ["distance"]=16687, + ["mine_stage"]=11 + }, + [2783]={ + ["distance"]=16693, + ["mine_stage"]=19 + }, + [2784]={ + ["distance"]=16699, + ["mine_stage"]=53 + }, + [2785]={ + ["distance"]=16705, + ["mine_stage"]=26 + }, + [2786]={ + ["distance"]=16711, + ["mine_stage"]=15 + }, + [2787]={ + ["distance"]=16717, + ["mine_stage"]=49 + }, + [2788]={ + ["distance"]=16723, + ["mine_stage"]=8 + }, + [2789]={ + ["distance"]=16729, + ["mine_stage"]=46 + }, + [2790]={ + ["distance"]=16735, + ["mine_stage"]=17 + }, + [2791]={ + ["distance"]=16741, + ["mine_stage"]=15 + }, + [2792]={ + ["distance"]=16747, + ["mine_stage"]=30 + }, + [2793]={ + ["distance"]=16753, + ["mine_stage"]=49 + }, + [2794]={ + ["distance"]=16759, + ["mine_stage"]=28 + }, + [2795]={ + ["distance"]=16765, + ["mine_stage"]=23 + }, + [2796]={ + ["distance"]=16771, + ["mine_stage"]=30 + }, + [2797]={ + ["distance"]=16777, + ["mine_stage"]=60 + }, + [2798]={ + ["distance"]=16783, + ["mine_stage"]=37 + }, + [2799]={ + ["distance"]=16789, + ["mine_stage"]=50 + }, + [2800]={ + ["distance"]=16795, + ["mine_stage"]=47 + }, + [2801]={ + ["distance"]=16801, + ["mine_stage"]=64 + }, + [2802]={ + ["distance"]=16807, + ["mine_stage"]=51 + }, + [2803]={ + ["distance"]=16813, + ["mine_stage"]=60 + }, + [2804]={ + ["distance"]=16819, + ["mine_stage"]=35 + }, + [2805]={ + ["distance"]=16825, + ["mine_stage"]=40 + }, + [2806]={ + ["distance"]=16831, + ["mine_stage"]=12 + }, + [2807]={ + ["distance"]=16837, + ["mine_stage"]=21 + }, + [2808]={ + ["distance"]=16843, + ["mine_stage"]=11 + }, + [2809]={ + ["distance"]=16849, + ["mine_stage"]=19 + }, + [2810]={ + ["distance"]=16855, + ["mine_stage"]=12 + }, + [2811]={ + ["distance"]=16861, + ["mine_stage"]=36 + }, + [2812]={ + ["distance"]=16867, + ["mine_stage"]=26 + }, + [2813]={ + ["distance"]=16873, + ["mine_stage"]=57 + }, + [2814]={ + ["distance"]=16879, + ["mine_stage"]=33 + }, + [2815]={ + ["distance"]=16885, + ["mine_stage"]=44 + }, + [2816]={ + ["distance"]=16891, + ["mine_stage"]=55 + }, + [2817]={ + ["distance"]=16897, + ["mine_stage"]=49 + }, + [2818]={ + ["distance"]=16903, + ["mine_stage"]=22 + }, + [2819]={ + ["distance"]=16909, + ["mine_stage"]=38 + }, + [2820]={ + ["distance"]=16915, + ["mine_stage"]=19 + }, + [2821]={ + ["distance"]=16921, + ["mine_stage"]=24 + }, + [2822]={ + ["distance"]=16927, + ["mine_stage"]=34 + }, + [2823]={ + ["distance"]=16933, + ["mine_stage"]=29 + }, + [2824]={ + ["distance"]=16939, + ["mine_stage"]=1 + }, + [2825]={ + ["distance"]=16945, + ["mine_stage"]=20 + }, + [2826]={ + ["distance"]=16951, + ["mine_stage"]=46 + }, + [2827]={ + ["distance"]=16957, + ["mine_stage"]=55 + }, + [2828]={ + ["distance"]=16963, + ["mine_stage"]=10 + }, + [2829]={ + ["distance"]=16969, + ["mine_stage"]=7 + }, + [2830]={ + ["distance"]=16975, + ["mine_stage"]=13 + }, + [2831]={ + ["distance"]=16981, + ["mine_stage"]=42 + }, + [2832]={ + ["distance"]=16987, + ["mine_stage"]=40 + }, + [2833]={ + ["distance"]=16993, + ["mine_stage"]=2 + }, + [2834]={ + ["distance"]=16999, + ["mine_stage"]=46 + }, + [2835]={ + ["distance"]=17005, + ["mine_stage"]=24 + }, + [2836]={ + ["distance"]=17011, + ["mine_stage"]=13 + }, + [2837]={ + ["distance"]=17017, + ["mine_stage"]=1 + }, + [2838]={ + ["distance"]=17023, + ["mine_stage"]=44 + }, + [2839]={ + ["distance"]=17029, + ["mine_stage"]=39 + }, + [2840]={ + ["distance"]=17035, + ["mine_stage"]=39 + }, + [2841]={ + ["distance"]=17041, + ["mine_stage"]=5 + }, + [2842]={ + ["distance"]=17047, + ["mine_stage"]=45 + }, + [2843]={ + ["distance"]=17053, + ["mine_stage"]=45 + }, + [2844]={ + ["distance"]=17059, + ["mine_stage"]=57 + }, + [2845]={ + ["distance"]=17065, + ["mine_stage"]=21 + }, + [2846]={ + ["distance"]=17071, + ["mine_stage"]=8 + }, + [2847]={ + ["distance"]=17077, + ["mine_stage"]=27 + }, + [2848]={ + ["distance"]=17083, + ["mine_stage"]=42 + }, + [2849]={ + ["distance"]=17089, + ["mine_stage"]=18 + }, + [2850]={ + ["distance"]=17095, + ["mine_stage"]=11 + }, + [2851]={ + ["distance"]=17101, + ["mine_stage"]=67 + }, + [2852]={ + ["distance"]=17107, + ["mine_stage"]=17 + }, + [2853]={ + ["distance"]=17113, + ["mine_stage"]=54 + }, + [2854]={ + ["distance"]=17119, + ["mine_stage"]=26 + }, + [2855]={ + ["distance"]=17125, + ["mine_stage"]=53 + }, + [2856]={ + ["distance"]=17131, + ["mine_stage"]=17 + }, + [2857]={ + ["distance"]=17137, + ["mine_stage"]=48 + }, + [2858]={ + ["distance"]=17143, + ["mine_stage"]=20 + }, + [2859]={ + ["distance"]=17149, + ["mine_stage"]=30 + }, + [2860]={ + ["distance"]=17155, + ["mine_stage"]=12 + }, + [2861]={ + ["distance"]=17161, + ["mine_stage"]=12 + }, + [2862]={ + ["distance"]=17167, + ["mine_stage"]=21 + }, + [2863]={ + ["distance"]=17173, + ["mine_stage"]=57 + }, + [2864]={ + ["distance"]=17179, + ["mine_stage"]=39 + }, + [2865]={ + ["distance"]=17185, + ["mine_stage"]=15 + }, + [2866]={ + ["distance"]=17191, + ["mine_stage"]=26 + }, + [2867]={ + ["distance"]=17197, + ["mine_stage"]=4 + }, + [2868]={ + ["distance"]=17203, + ["mine_stage"]=22 + }, + [2869]={ + ["distance"]=17209, + ["mine_stage"]=23 + }, + [2870]={ + ["distance"]=17215, + ["mine_stage"]=25 + }, + [2871]={ + ["distance"]=17221, + ["mine_stage"]=7 + }, + [2872]={ + ["distance"]=17227, + ["mine_stage"]=49 + }, + [2873]={ + ["distance"]=17233, + ["mine_stage"]=2 + }, + [2874]={ + ["distance"]=17239, + ["mine_stage"]=10 + }, + [2875]={ + ["distance"]=17245, + ["mine_stage"]=16 + }, + [2876]={ + ["distance"]=17251, + ["mine_stage"]=40 + }, + [2877]={ + ["distance"]=17257, + ["mine_stage"]=22 + }, + [2878]={ + ["distance"]=17263, + ["mine_stage"]=56 + }, + [2879]={ + ["distance"]=17269, + ["mine_stage"]=57 + }, + [2880]={ + ["distance"]=17275, + ["mine_stage"]=30 + }, + [2881]={ + ["distance"]=17281, + ["mine_stage"]=47 + }, + [2882]={ + ["distance"]=17287, + ["mine_stage"]=21 + }, + [2883]={ + ["distance"]=17293, + ["mine_stage"]=7 + }, + [2884]={ + ["distance"]=17299, + ["mine_stage"]=52 + }, + [2885]={ + ["distance"]=17305, + ["mine_stage"]=48 + }, + [2886]={ + ["distance"]=17311, + ["mine_stage"]=9 + }, + [2887]={ + ["distance"]=17317, + ["mine_stage"]=8 + }, + [2888]={ + ["distance"]=17323, + ["mine_stage"]=34 + }, + [2889]={ + ["distance"]=17329, + ["mine_stage"]=10 + }, + [2890]={ + ["distance"]=17335, + ["mine_stage"]=51 + }, + [2891]={ + ["distance"]=17341, + ["mine_stage"]=14 + }, + [2892]={ + ["distance"]=17347, + ["mine_stage"]=57 + }, + [2893]={ + ["distance"]=17353, + ["mine_stage"]=51 + }, + [2894]={ + ["distance"]=17359, + ["mine_stage"]=15 + }, + [2895]={ + ["distance"]=17365, + ["mine_stage"]=39 + }, + [2896]={ + ["distance"]=17371, + ["mine_stage"]=43 + }, + [2897]={ + ["distance"]=17377, + ["mine_stage"]=12 + }, + [2898]={ + ["distance"]=17383, + ["mine_stage"]=29 + }, + [2899]={ + ["distance"]=17389, + ["mine_stage"]=52 + }, + [2900]={ + ["distance"]=17395, + ["mine_stage"]=34 + }, + [2901]={ + ["distance"]=17401, + ["mine_stage"]=65 + }, + [2902]={ + ["distance"]=17407, + ["mine_stage"]=28 + }, + [2903]={ + ["distance"]=17413, + ["mine_stage"]=18 + }, + [2904]={ + ["distance"]=17419, + ["mine_stage"]=58 + }, + [2905]={ + ["distance"]=17425, + ["mine_stage"]=34 + }, + [2906]={ + ["distance"]=17431, + ["mine_stage"]=58 + }, + [2907]={ + ["distance"]=17437, + ["mine_stage"]=42 + }, + [2908]={ + ["distance"]=17443, + ["mine_stage"]=25 + }, + [2909]={ + ["distance"]=17449, + ["mine_stage"]=11 + }, + [2910]={ + ["distance"]=17455, + ["mine_stage"]=43 + }, + [2911]={ + ["distance"]=17461, + ["mine_stage"]=38 + }, + [2912]={ + ["distance"]=17467, + ["mine_stage"]=53 + }, + [2913]={ + ["distance"]=17473, + ["mine_stage"]=1 + }, + [2914]={ + ["distance"]=17479, + ["mine_stage"]=5 + }, + [2915]={ + ["distance"]=17485, + ["mine_stage"]=25 + }, + [2916]={ + ["distance"]=17491, + ["mine_stage"]=15 + }, + [2917]={ + ["distance"]=17497, + ["mine_stage"]=52 + }, + [2918]={ + ["distance"]=17503, + ["mine_stage"]=53 + }, + [2919]={ + ["distance"]=17509, + ["mine_stage"]=35 + }, + [2920]={ + ["distance"]=17515, + ["mine_stage"]=17 + }, + [2921]={ + ["distance"]=17521, + ["mine_stage"]=49 + }, + [2922]={ + ["distance"]=17527, + ["mine_stage"]=32 + }, + [2923]={ + ["distance"]=17533, + ["mine_stage"]=38 + }, + [2924]={ + ["distance"]=17539, + ["mine_stage"]=43 + }, + [2925]={ + ["distance"]=17545, + ["mine_stage"]=36 + }, + [2926]={ + ["distance"]=17551, + ["mine_stage"]=7 + }, + [2927]={ + ["distance"]=17557, + ["mine_stage"]=45 + }, + [2928]={ + ["distance"]=17563, + ["mine_stage"]=20 + }, + [2929]={ + ["distance"]=17569, + ["mine_stage"]=59 + }, + [2930]={ + ["distance"]=17575, + ["mine_stage"]=26 + }, + [2931]={ + ["distance"]=17581, + ["mine_stage"]=47 + }, + [2932]={ + ["distance"]=17587, + ["mine_stage"]=15 + }, + [2933]={ + ["distance"]=17593, + ["mine_stage"]=32 + }, + [2934]={ + ["distance"]=17599, + ["mine_stage"]=8 + }, + [2935]={ + ["distance"]=17605, + ["mine_stage"]=51 + }, + [2936]={ + ["distance"]=17611, + ["mine_stage"]=11 + }, + [2937]={ + ["distance"]=17617, + ["mine_stage"]=30 + }, + [2938]={ + ["distance"]=17623, + ["mine_stage"]=12 + }, + [2939]={ + ["distance"]=17629, + ["mine_stage"]=4 + }, + [2940]={ + ["distance"]=17635, + ["mine_stage"]=34 + }, + [2941]={ + ["distance"]=17641, + ["mine_stage"]=21 + }, + [2942]={ + ["distance"]=17647, + ["mine_stage"]=56 + }, + [2943]={ + ["distance"]=17653, + ["mine_stage"]=57 + }, + [2944]={ + ["distance"]=17659, + ["mine_stage"]=43 + }, + [2945]={ + ["distance"]=17665, + ["mine_stage"]=45 + }, + [2946]={ + ["distance"]=17671, + ["mine_stage"]=36 + }, + [2947]={ + ["distance"]=17677, + ["mine_stage"]=33 + }, + [2948]={ + ["distance"]=17683, + ["mine_stage"]=28 + }, + [2949]={ + ["distance"]=17689, + ["mine_stage"]=39 + }, + [2950]={ + ["distance"]=17695, + ["mine_stage"]=48 + }, + [2951]={ + ["distance"]=17701, + ["mine_stage"]=68 + }, + [2952]={ + ["distance"]=17707, + ["mine_stage"]=16 + }, + [2953]={ + ["distance"]=17713, + ["mine_stage"]=34 + }, + [2954]={ + ["distance"]=17719, + ["mine_stage"]=48 + }, + [2955]={ + ["distance"]=17725, + ["mine_stage"]=51 + }, + [2956]={ + ["distance"]=17731, + ["mine_stage"]=3 + }, + [2957]={ + ["distance"]=17737, + ["mine_stage"]=35 + }, + [2958]={ + ["distance"]=17743, + ["mine_stage"]=35 + }, + [2959]={ + ["distance"]=17749, + ["mine_stage"]=53 + }, + [2960]={ + ["distance"]=17755, + ["mine_stage"]=26 + }, + [2961]={ + ["distance"]=17761, + ["mine_stage"]=9 + }, + [2962]={ + ["distance"]=17767, + ["mine_stage"]=46 + }, + [2963]={ + ["distance"]=17773, + ["mine_stage"]=29 + }, + [2964]={ + ["distance"]=17779, + ["mine_stage"]=26 + }, + [2965]={ + ["distance"]=17785, + ["mine_stage"]=55 + }, + [2966]={ + ["distance"]=17791, + ["mine_stage"]=24 + }, + [2967]={ + ["distance"]=17797, + ["mine_stage"]=38 + }, + [2968]={ + ["distance"]=17803, + ["mine_stage"]=54 + }, + [2969]={ + ["distance"]=17809, + ["mine_stage"]=11 + }, + [2970]={ + ["distance"]=17815, + ["mine_stage"]=60 + }, + [2971]={ + ["distance"]=17821, + ["mine_stage"]=37 + }, + [2972]={ + ["distance"]=17827, + ["mine_stage"]=27 + }, + [2973]={ + ["distance"]=17833, + ["mine_stage"]=20 + }, + [2974]={ + ["distance"]=17839, + ["mine_stage"]=26 + }, + [2975]={ + ["distance"]=17845, + ["mine_stage"]=42 + }, + [2976]={ + ["distance"]=17851, + ["mine_stage"]=34 + }, + [2977]={ + ["distance"]=17857, + ["mine_stage"]=14 + }, + [2978]={ + ["distance"]=17863, + ["mine_stage"]=15 + }, + [2979]={ + ["distance"]=17869, + ["mine_stage"]=24 + }, + [2980]={ + ["distance"]=17875, + ["mine_stage"]=38 + }, + [2981]={ + ["distance"]=17881, + ["mine_stage"]=15 + }, + [2982]={ + ["distance"]=17887, + ["mine_stage"]=43 + }, + [2983]={ + ["distance"]=17893, + ["mine_stage"]=57 + }, + [2984]={ + ["distance"]=17899, + ["mine_stage"]=26 + }, + [2985]={ + ["distance"]=17905, + ["mine_stage"]=20 + }, + [2986]={ + ["distance"]=17911, + ["mine_stage"]=48 + }, + [2987]={ + ["distance"]=17917, + ["mine_stage"]=39 + }, + [2988]={ + ["distance"]=17923, + ["mine_stage"]=17 + }, + [2989]={ + ["distance"]=17929, + ["mine_stage"]=12 + }, + [2990]={ + ["distance"]=17935, + ["mine_stage"]=24 + }, + [2991]={ + ["distance"]=17941, + ["mine_stage"]=43 + }, + [2992]={ + ["distance"]=17947, + ["mine_stage"]=5 + }, + [2993]={ + ["distance"]=17953, + ["mine_stage"]=10 + }, + [2994]={ + ["distance"]=17959, + ["mine_stage"]=33 + }, + [2995]={ + ["distance"]=17965, + ["mine_stage"]=43 + }, + [2996]={ + ["distance"]=17971, + ["mine_stage"]=36 + }, + [2997]={ + ["distance"]=17977, + ["mine_stage"]=45 + }, + [2998]={ + ["distance"]=17983, + ["mine_stage"]=34 + }, + [2999]={ + ["distance"]=17989, + ["mine_stage"]=15 + }, + [3000]={ + ["distance"]=17995, + ["mine_stage"]=52 + }, + [3001]={ + ["distance"]=18001, + ["mine_stage"]=66 + }, + [3002]={ + ["distance"]=18007, + ["mine_stage"]=37 + }, + [3003]={ + ["distance"]=18013, + ["mine_stage"]=29 + }, + [3004]={ + ["distance"]=18019, + ["mine_stage"]=31 + }, + [3005]={ + ["distance"]=18025, + ["mine_stage"]=24 + }, + [3006]={ + ["distance"]=18031, + ["mine_stage"]=1 + }, + [3007]={ + ["distance"]=18037, + ["mine_stage"]=28 + }, + [3008]={ + ["distance"]=18043, + ["mine_stage"]=46 + }, + [3009]={ + ["distance"]=18049, + ["mine_stage"]=14 + }, + [3010]={ + ["distance"]=18055, + ["mine_stage"]=48 + }, + [3011]={ + ["distance"]=18061, + ["mine_stage"]=11 + }, + [3012]={ + ["distance"]=18067, + ["mine_stage"]=35 + }, + [3013]={ + ["distance"]=18073, + ["mine_stage"]=11 + }, + [3014]={ + ["distance"]=18079, + ["mine_stage"]=19 + }, + [3015]={ + ["distance"]=18085, + ["mine_stage"]=47 + }, + [3016]={ + ["distance"]=18091, + ["mine_stage"]=15 + }, + [3017]={ + ["distance"]=18097, + ["mine_stage"]=6 + }, + [3018]={ + ["distance"]=18103, + ["mine_stage"]=25 + }, + [3019]={ + ["distance"]=18109, + ["mine_stage"]=59 + }, + [3020]={ + ["distance"]=18115, + ["mine_stage"]=36 + }, + [3021]={ + ["distance"]=18121, + ["mine_stage"]=16 + }, + [3022]={ + ["distance"]=18127, + ["mine_stage"]=27 + }, + [3023]={ + ["distance"]=18133, + ["mine_stage"]=21 + }, + [3024]={ + ["distance"]=18139, + ["mine_stage"]=49 + }, + [3025]={ + ["distance"]=18145, + ["mine_stage"]=4 + }, + [3026]={ + ["distance"]=18151, + ["mine_stage"]=41 + }, + [3027]={ + ["distance"]=18157, + ["mine_stage"]=38 + }, + [3028]={ + ["distance"]=18163, + ["mine_stage"]=58 + }, + [3029]={ + ["distance"]=18169, + ["mine_stage"]=55 + }, + [3030]={ + ["distance"]=18175, + ["mine_stage"]=26 + }, + [3031]={ + ["distance"]=18181, + ["mine_stage"]=46 + }, + [3032]={ + ["distance"]=18187, + ["mine_stage"]=27 + }, + [3033]={ + ["distance"]=18193, + ["mine_stage"]=16 + }, + [3034]={ + ["distance"]=18199, + ["mine_stage"]=8 + }, + [3035]={ + ["distance"]=18205, + ["mine_stage"]=21 + }, + [3036]={ + ["distance"]=18211, + ["mine_stage"]=12 + }, + [3037]={ + ["distance"]=18217, + ["mine_stage"]=8 + }, + [3038]={ + ["distance"]=18223, + ["mine_stage"]=8 + }, + [3039]={ + ["distance"]=18229, + ["mine_stage"]=17 + }, + [3040]={ + ["distance"]=18235, + ["mine_stage"]=20 + }, + [3041]={ + ["distance"]=18241, + ["mine_stage"]=8 + }, + [3042]={ + ["distance"]=18247, + ["mine_stage"]=8 + }, + [3043]={ + ["distance"]=18253, + ["mine_stage"]=6 + }, + [3044]={ + ["distance"]=18259, + ["mine_stage"]=9 + }, + [3045]={ + ["distance"]=18265, + ["mine_stage"]=48 + }, + [3046]={ + ["distance"]=18271, + ["mine_stage"]=26 + }, + [3047]={ + ["distance"]=18277, + ["mine_stage"]=19 + }, + [3048]={ + ["distance"]=18283, + ["mine_stage"]=2 + }, + [3049]={ + ["distance"]=18289, + ["mine_stage"]=3 + }, + [3050]={ + ["distance"]=18295, + ["mine_stage"]=35 + }, + [3051]={ + ["distance"]=18301, + ["mine_stage"]=69 + }, + [3052]={ + ["distance"]=18307, + ["mine_stage"]=41 + }, + [3053]={ + ["distance"]=18313, + ["mine_stage"]=31 + }, + [3054]={ + ["distance"]=18319, + ["mine_stage"]=3 + }, + [3055]={ + ["distance"]=18325, + ["mine_stage"]=49 + }, + [3056]={ + ["distance"]=18331, + ["mine_stage"]=26 + }, + [3057]={ + ["distance"]=18337, + ["mine_stage"]=24 + }, + [3058]={ + ["distance"]=18343, + ["mine_stage"]=15 + }, + [3059]={ + ["distance"]=18349, + ["mine_stage"]=43 + }, + [3060]={ + ["distance"]=18355, + ["mine_stage"]=6 + }, + [3061]={ + ["distance"]=18361, + ["mine_stage"]=52 + }, + [3062]={ + ["distance"]=18367, + ["mine_stage"]=15 + }, + [3063]={ + ["distance"]=18373, + ["mine_stage"]=9 + }, + [3064]={ + ["distance"]=18379, + ["mine_stage"]=46 + }, + [3065]={ + ["distance"]=18385, + ["mine_stage"]=13 + }, + [3066]={ + ["distance"]=18391, + ["mine_stage"]=59 + }, + [3067]={ + ["distance"]=18397, + ["mine_stage"]=36 + }, + [3068]={ + ["distance"]=18403, + ["mine_stage"]=28 + }, + [3069]={ + ["distance"]=18409, + ["mine_stage"]=44 + }, + [3070]={ + ["distance"]=18415, + ["mine_stage"]=41 + }, + [3071]={ + ["distance"]=18421, + ["mine_stage"]=50 + }, + [3072]={ + ["distance"]=18427, + ["mine_stage"]=40 + }, + [3073]={ + ["distance"]=18433, + ["mine_stage"]=48 + }, + [3074]={ + ["distance"]=18439, + ["mine_stage"]=25 + }, + [3075]={ + ["distance"]=18445, + ["mine_stage"]=21 + }, + [3076]={ + ["distance"]=18451, + ["mine_stage"]=13 + }, + [3077]={ + ["distance"]=18457, + ["mine_stage"]=34 + }, + [3078]={ + ["distance"]=18463, + ["mine_stage"]=25 + }, + [3079]={ + ["distance"]=18469, + ["mine_stage"]=50 + }, + [3080]={ + ["distance"]=18475, + ["mine_stage"]=27 + }, + [3081]={ + ["distance"]=18481, + ["mine_stage"]=5 + }, + [3082]={ + ["distance"]=18487, + ["mine_stage"]=41 + }, + [3083]={ + ["distance"]=18493, + ["mine_stage"]=55 + }, + [3084]={ + ["distance"]=18499, + ["mine_stage"]=60 + }, + [3085]={ + ["distance"]=18505, + ["mine_stage"]=3 + }, + [3086]={ + ["distance"]=18511, + ["mine_stage"]=23 + }, + [3087]={ + ["distance"]=18517, + ["mine_stage"]=18 + }, + [3088]={ + ["distance"]=18523, + ["mine_stage"]=16 + }, + [3089]={ + ["distance"]=18529, + ["mine_stage"]=19 + }, + [3090]={ + ["distance"]=18535, + ["mine_stage"]=2 + }, + [3091]={ + ["distance"]=18541, + ["mine_stage"]=42 + }, + [3092]={ + ["distance"]=18547, + ["mine_stage"]=53 + }, + [3093]={ + ["distance"]=18553, + ["mine_stage"]=39 + }, + [3094]={ + ["distance"]=18559, + ["mine_stage"]=22 + }, + [3095]={ + ["distance"]=18565, + ["mine_stage"]=7 + }, + [3096]={ + ["distance"]=18571, + ["mine_stage"]=46 + }, + [3097]={ + ["distance"]=18577, + ["mine_stage"]=31 + }, + [3098]={ + ["distance"]=18583, + ["mine_stage"]=16 + }, + [3099]={ + ["distance"]=18589, + ["mine_stage"]=52 + }, + [3100]={ + ["distance"]=18595, + ["mine_stage"]=11 + }, + [3101]={ + ["distance"]=18601, + ["mine_stage"]=64 + }, + [3102]={ + ["distance"]=18607, + ["mine_stage"]=16 + }, + [3103]={ + ["distance"]=18613, + ["mine_stage"]=21 + }, + [3104]={ + ["distance"]=18619, + ["mine_stage"]=10 + }, + [3105]={ + ["distance"]=18625, + ["mine_stage"]=15 + }, + [3106]={ + ["distance"]=18631, + ["mine_stage"]=34 + }, + [3107]={ + ["distance"]=18637, + ["mine_stage"]=10 + }, + [3108]={ + ["distance"]=18643, + ["mine_stage"]=47 + }, + [3109]={ + ["distance"]=18649, + ["mine_stage"]=51 + }, + [3110]={ + ["distance"]=18655, + ["mine_stage"]=31 + }, + [3111]={ + ["distance"]=18661, + ["mine_stage"]=41 + }, + [3112]={ + ["distance"]=18667, + ["mine_stage"]=15 + }, + [3113]={ + ["distance"]=18673, + ["mine_stage"]=58 + }, + [3114]={ + ["distance"]=18679, + ["mine_stage"]=58 + }, + [3115]={ + ["distance"]=18685, + ["mine_stage"]=20 + }, + [3116]={ + ["distance"]=18691, + ["mine_stage"]=12 + }, + [3117]={ + ["distance"]=18697, + ["mine_stage"]=21 + }, + [3118]={ + ["distance"]=18703, + ["mine_stage"]=16 + }, + [3119]={ + ["distance"]=18709, + ["mine_stage"]=38 + }, + [3120]={ + ["distance"]=18715, + ["mine_stage"]=21 + }, + [3121]={ + ["distance"]=18721, + ["mine_stage"]=32 + }, + [3122]={ + ["distance"]=18727, + ["mine_stage"]=57 + }, + [3123]={ + ["distance"]=18733, + ["mine_stage"]=22 + }, + [3124]={ + ["distance"]=18739, + ["mine_stage"]=56 + }, + [3125]={ + ["distance"]=18745, + ["mine_stage"]=6 + }, + [3126]={ + ["distance"]=18751, + ["mine_stage"]=3 + }, + [3127]={ + ["distance"]=18757, + ["mine_stage"]=27 + }, + [3128]={ + ["distance"]=18763, + ["mine_stage"]=13 + }, + [3129]={ + ["distance"]=18769, + ["mine_stage"]=11 + }, + [3130]={ + ["distance"]=18775, + ["mine_stage"]=2 + }, + [3131]={ + ["distance"]=18781, + ["mine_stage"]=30 + }, + [3132]={ + ["distance"]=18787, + ["mine_stage"]=32 + }, + [3133]={ + ["distance"]=18793, + ["mine_stage"]=8 + }, + [3134]={ + ["distance"]=18799, + ["mine_stage"]=22 + }, + [3135]={ + ["distance"]=18805, + ["mine_stage"]=17 + }, + [3136]={ + ["distance"]=18811, + ["mine_stage"]=30 + }, + [3137]={ + ["distance"]=18817, + ["mine_stage"]=25 + }, + [3138]={ + ["distance"]=18823, + ["mine_stage"]=54 + }, + [3139]={ + ["distance"]=18829, + ["mine_stage"]=59 + }, + [3140]={ + ["distance"]=18835, + ["mine_stage"]=38 + }, + [3141]={ + ["distance"]=18841, + ["mine_stage"]=34 + }, + [3142]={ + ["distance"]=18847, + ["mine_stage"]=11 + }, + [3143]={ + ["distance"]=18853, + ["mine_stage"]=13 + }, + [3144]={ + ["distance"]=18859, + ["mine_stage"]=46 + }, + [3145]={ + ["distance"]=18865, + ["mine_stage"]=58 + }, + [3146]={ + ["distance"]=18871, + ["mine_stage"]=42 + }, + [3147]={ + ["distance"]=18877, + ["mine_stage"]=36 + }, + [3148]={ + ["distance"]=18883, + ["mine_stage"]=5 + }, + [3149]={ + ["distance"]=18889, + ["mine_stage"]=1 + }, + [3150]={ + ["distance"]=18895, + ["mine_stage"]=43 + }, + [3151]={ + ["distance"]=18901, + ["mine_stage"]=67 + }, + [3152]={ + ["distance"]=18907, + ["mine_stage"]=7 + }, + [3153]={ + ["distance"]=18913, + ["mine_stage"]=57 + }, + [3154]={ + ["distance"]=18919, + ["mine_stage"]=1 + }, + [3155]={ + ["distance"]=18925, + ["mine_stage"]=32 + }, + [3156]={ + ["distance"]=18931, + ["mine_stage"]=8 + }, + [3157]={ + ["distance"]=18937, + ["mine_stage"]=33 + }, + [3158]={ + ["distance"]=18943, + ["mine_stage"]=17 + }, + [3159]={ + ["distance"]=18949, + ["mine_stage"]=31 + }, + [3160]={ + ["distance"]=18955, + ["mine_stage"]=11 + }, + [3161]={ + ["distance"]=18961, + ["mine_stage"]=50 + }, + [3162]={ + ["distance"]=18967, + ["mine_stage"]=39 + }, + [3163]={ + ["distance"]=18973, + ["mine_stage"]=43 + }, + [3164]={ + ["distance"]=18979, + ["mine_stage"]=19 + }, + [3165]={ + ["distance"]=18985, + ["mine_stage"]=6 + }, + [3166]={ + ["distance"]=18991, + ["mine_stage"]=12 + }, + [3167]={ + ["distance"]=18997, + ["mine_stage"]=30 + }, + [3168]={ + ["distance"]=19003, + ["mine_stage"]=33 + }, + [3169]={ + ["distance"]=19009, + ["mine_stage"]=49 + }, + [3170]={ + ["distance"]=19015, + ["mine_stage"]=28 + }, + [3171]={ + ["distance"]=19021, + ["mine_stage"]=1 + }, + [3172]={ + ["distance"]=19027, + ["mine_stage"]=12 + }, + [3173]={ + ["distance"]=19033, + ["mine_stage"]=1 + }, + [3174]={ + ["distance"]=19039, + ["mine_stage"]=7 + }, + [3175]={ + ["distance"]=19045, + ["mine_stage"]=4 + }, + [3176]={ + ["distance"]=19051, + ["mine_stage"]=53 + }, + [3177]={ + ["distance"]=19057, + ["mine_stage"]=27 + }, + [3178]={ + ["distance"]=19063, + ["mine_stage"]=57 + }, + [3179]={ + ["distance"]=19069, + ["mine_stage"]=9 + }, + [3180]={ + ["distance"]=19075, + ["mine_stage"]=47 + }, + [3181]={ + ["distance"]=19081, + ["mine_stage"]=55 + }, + [3182]={ + ["distance"]=19087, + ["mine_stage"]=28 + }, + [3183]={ + ["distance"]=19093, + ["mine_stage"]=24 + }, + [3184]={ + ["distance"]=19099, + ["mine_stage"]=59 + }, + [3185]={ + ["distance"]=19105, + ["mine_stage"]=57 + }, + [3186]={ + ["distance"]=19111, + ["mine_stage"]=4 + }, + [3187]={ + ["distance"]=19117, + ["mine_stage"]=11 + }, + [3188]={ + ["distance"]=19123, + ["mine_stage"]=34 + }, + [3189]={ + ["distance"]=19129, + ["mine_stage"]=54 + }, + [3190]={ + ["distance"]=19135, + ["mine_stage"]=37 + }, + [3191]={ + ["distance"]=19141, + ["mine_stage"]=7 + }, + [3192]={ + ["distance"]=19147, + ["mine_stage"]=28 + }, + [3193]={ + ["distance"]=19153, + ["mine_stage"]=21 + }, + [3194]={ + ["distance"]=19159, + ["mine_stage"]=18 + }, + [3195]={ + ["distance"]=19165, + ["mine_stage"]=25 + }, + [3196]={ + ["distance"]=19171, + ["mine_stage"]=19 + }, + [3197]={ + ["distance"]=19177, + ["mine_stage"]=5 + }, + [3198]={ + ["distance"]=19183, + ["mine_stage"]=29 + }, + [3199]={ + ["distance"]=19189, + ["mine_stage"]=53 + }, + [3200]={ + ["distance"]=19195, + ["mine_stage"]=22 + }, + [3201]={ + ["distance"]=19201, + ["mine_stage"]=65 + }, + [3202]={ + ["distance"]=19207, + ["mine_stage"]=15 + }, + [3203]={ + ["distance"]=19213, + ["mine_stage"]=32 + }, + [3204]={ + ["distance"]=19219, + ["mine_stage"]=51 + }, + [3205]={ + ["distance"]=19225, + ["mine_stage"]=13 + }, + [3206]={ + ["distance"]=19231, + ["mine_stage"]=47 + }, + [3207]={ + ["distance"]=19237, + ["mine_stage"]=42 + }, + [3208]={ + ["distance"]=19243, + ["mine_stage"]=13 + }, + [3209]={ + ["distance"]=19249, + ["mine_stage"]=45 + }, + [3210]={ + ["distance"]=19255, + ["mine_stage"]=46 + }, + [3211]={ + ["distance"]=19261, + ["mine_stage"]=22 + }, + [3212]={ + ["distance"]=19267, + ["mine_stage"]=24 + }, + [3213]={ + ["distance"]=19273, + ["mine_stage"]=56 + }, + [3214]={ + ["distance"]=19279, + ["mine_stage"]=20 + }, + [3215]={ + ["distance"]=19285, + ["mine_stage"]=49 + }, + [3216]={ + ["distance"]=19291, + ["mine_stage"]=19 + }, + [3217]={ + ["distance"]=19297, + ["mine_stage"]=36 + }, + [3218]={ + ["distance"]=19303, + ["mine_stage"]=33 + }, + [3219]={ + ["distance"]=19309, + ["mine_stage"]=45 + }, + [3220]={ + ["distance"]=19315, + ["mine_stage"]=31 + }, + [3221]={ + ["distance"]=19321, + ["mine_stage"]=32 + }, + [3222]={ + ["distance"]=19327, + ["mine_stage"]=10 + }, + [3223]={ + ["distance"]=19333, + ["mine_stage"]=39 + }, + [3224]={ + ["distance"]=19339, + ["mine_stage"]=40 + }, + [3225]={ + ["distance"]=19345, + ["mine_stage"]=54 + }, + [3226]={ + ["distance"]=19351, + ["mine_stage"]=18 + }, + [3227]={ + ["distance"]=19357, + ["mine_stage"]=26 + }, + [3228]={ + ["distance"]=19363, + ["mine_stage"]=51 + }, + [3229]={ + ["distance"]=19369, + ["mine_stage"]=14 + }, + [3230]={ + ["distance"]=19375, + ["mine_stage"]=26 + }, + [3231]={ + ["distance"]=19381, + ["mine_stage"]=24 + }, + [3232]={ + ["distance"]=19387, + ["mine_stage"]=9 + }, + [3233]={ + ["distance"]=19393, + ["mine_stage"]=54 + }, + [3234]={ + ["distance"]=19399, + ["mine_stage"]=55 + }, + [3235]={ + ["distance"]=19405, + ["mine_stage"]=39 + }, + [3236]={ + ["distance"]=19411, + ["mine_stage"]=51 + }, + [3237]={ + ["distance"]=19417, + ["mine_stage"]=29 + }, + [3238]={ + ["distance"]=19423, + ["mine_stage"]=45 + }, + [3239]={ + ["distance"]=19429, + ["mine_stage"]=43 + }, + [3240]={ + ["distance"]=19435, + ["mine_stage"]=15 + }, + [3241]={ + ["distance"]=19441, + ["mine_stage"]=58 + }, + [3242]={ + ["distance"]=19447, + ["mine_stage"]=42 + }, + [3243]={ + ["distance"]=19453, + ["mine_stage"]=18 + }, + [3244]={ + ["distance"]=19459, + ["mine_stage"]=29 + }, + [3245]={ + ["distance"]=19465, + ["mine_stage"]=3 + }, + [3246]={ + ["distance"]=19471, + ["mine_stage"]=7 + }, + [3247]={ + ["distance"]=19477, + ["mine_stage"]=10 + }, + [3248]={ + ["distance"]=19483, + ["mine_stage"]=39 + }, + [3249]={ + ["distance"]=19489, + ["mine_stage"]=38 + }, + [3250]={ + ["distance"]=19495, + ["mine_stage"]=16 + }, + [3251]={ + ["distance"]=19501, + ["mine_stage"]=68 + }, + [3252]={ + ["distance"]=19507, + ["mine_stage"]=31 + }, + [3253]={ + ["distance"]=19513, + ["mine_stage"]=17 + }, + [3254]={ + ["distance"]=19519, + ["mine_stage"]=48 + }, + [3255]={ + ["distance"]=19525, + ["mine_stage"]=58 + }, + [3256]={ + ["distance"]=19531, + ["mine_stage"]=51 + }, + [3257]={ + ["distance"]=19537, + ["mine_stage"]=46 + }, + [3258]={ + ["distance"]=19543, + ["mine_stage"]=13 + }, + [3259]={ + ["distance"]=19549, + ["mine_stage"]=21 + }, + [3260]={ + ["distance"]=19555, + ["mine_stage"]=56 + }, + [3261]={ + ["distance"]=19561, + ["mine_stage"]=13 + }, + [3262]={ + ["distance"]=19567, + ["mine_stage"]=2 + }, + [3263]={ + ["distance"]=19573, + ["mine_stage"]=9 + }, + [3264]={ + ["distance"]=19579, + ["mine_stage"]=14 + }, + [3265]={ + ["distance"]=19585, + ["mine_stage"]=18 + }, + [3266]={ + ["distance"]=19591, + ["mine_stage"]=2 + }, + [3267]={ + ["distance"]=19597, + ["mine_stage"]=59 + }, + [3268]={ + ["distance"]=19603, + ["mine_stage"]=15 + }, + [3269]={ + ["distance"]=19609, + ["mine_stage"]=31 + }, + [3270]={ + ["distance"]=19615, + ["mine_stage"]=28 + }, + [3271]={ + ["distance"]=19621, + ["mine_stage"]=27 + }, + [3272]={ + ["distance"]=19627, + ["mine_stage"]=38 + }, + [3273]={ + ["distance"]=19633, + ["mine_stage"]=20 + }, + [3274]={ + ["distance"]=19639, + ["mine_stage"]=23 + }, + [3275]={ + ["distance"]=19645, + ["mine_stage"]=18 + }, + [3276]={ + ["distance"]=19651, + ["mine_stage"]=7 + }, + [3277]={ + ["distance"]=19657, + ["mine_stage"]=32 + }, + [3278]={ + ["distance"]=19663, + ["mine_stage"]=60 + }, + [3279]={ + ["distance"]=19669, + ["mine_stage"]=13 + }, + [3280]={ + ["distance"]=19675, + ["mine_stage"]=57 + }, + [3281]={ + ["distance"]=19681, + ["mine_stage"]=24 + }, + [3282]={ + ["distance"]=19687, + ["mine_stage"]=29 + }, + [3283]={ + ["distance"]=19693, + ["mine_stage"]=10 + }, + [3284]={ + ["distance"]=19699, + ["mine_stage"]=19 + }, + [3285]={ + ["distance"]=19705, + ["mine_stage"]=6 + }, + [3286]={ + ["distance"]=19711, + ["mine_stage"]=13 + }, + [3287]={ + ["distance"]=19717, + ["mine_stage"]=26 + }, + [3288]={ + ["distance"]=19723, + ["mine_stage"]=19 + }, + [3289]={ + ["distance"]=19729, + ["mine_stage"]=45 + }, + [3290]={ + ["distance"]=19735, + ["mine_stage"]=10 + }, + [3291]={ + ["distance"]=19741, + ["mine_stage"]=9 + }, + [3292]={ + ["distance"]=19747, + ["mine_stage"]=1 + }, + [3293]={ + ["distance"]=19753, + ["mine_stage"]=40 + }, + [3294]={ + ["distance"]=19759, + ["mine_stage"]=48 + }, + [3295]={ + ["distance"]=19765, + ["mine_stage"]=44 + }, + [3296]={ + ["distance"]=19771, + ["mine_stage"]=31 + }, + [3297]={ + ["distance"]=19777, + ["mine_stage"]=10 + }, + [3298]={ + ["distance"]=19783, + ["mine_stage"]=2 + }, + [3299]={ + ["distance"]=19789, + ["mine_stage"]=48 + }, + [3300]={ + ["distance"]=19795, + ["mine_stage"]=8 + }, + [3301]={ + ["distance"]=19801, + ["mine_stage"]=66 + }, + [3302]={ + ["distance"]=19807, + ["mine_stage"]=60 + }, + [3303]={ + ["distance"]=19813, + ["mine_stage"]=25 + }, + [3304]={ + ["distance"]=19819, + ["mine_stage"]=17 + }, + [3305]={ + ["distance"]=19825, + ["mine_stage"]=4 + }, + [3306]={ + ["distance"]=19831, + ["mine_stage"]=15 + }, + [3307]={ + ["distance"]=19837, + ["mine_stage"]=17 + }, + [3308]={ + ["distance"]=19843, + ["mine_stage"]=50 + }, + [3309]={ + ["distance"]=19849, + ["mine_stage"]=60 + }, + [3310]={ + ["distance"]=19855, + ["mine_stage"]=20 + }, + [3311]={ + ["distance"]=19861, + ["mine_stage"]=18 + }, + [3312]={ + ["distance"]=19867, + ["mine_stage"]=56 + }, + [3313]={ + ["distance"]=19873, + ["mine_stage"]=4 + }, + [3314]={ + ["distance"]=19879, + ["mine_stage"]=48 + }, + [3315]={ + ["distance"]=19885, + ["mine_stage"]=36 + }, + [3316]={ + ["distance"]=19891, + ["mine_stage"]=29 + }, + [3317]={ + ["distance"]=19897, + ["mine_stage"]=3 + }, + [3318]={ + ["distance"]=19903, + ["mine_stage"]=19 + }, + [3319]={ + ["distance"]=19909, + ["mine_stage"]=23 + }, + [3320]={ + ["distance"]=19915, + ["mine_stage"]=12 + }, + [3321]={ + ["distance"]=19921, + ["mine_stage"]=13 + }, + [3322]={ + ["distance"]=19927, + ["mine_stage"]=3 + }, + [3323]={ + ["distance"]=19933, + ["mine_stage"]=60 + }, + [3324]={ + ["distance"]=19939, + ["mine_stage"]=29 + }, + [3325]={ + ["distance"]=19945, + ["mine_stage"]=21 + }, + [3326]={ + ["distance"]=19951, + ["mine_stage"]=36 + }, + [3327]={ + ["distance"]=19957, + ["mine_stage"]=57 + }, + [3328]={ + ["distance"]=19963, + ["mine_stage"]=3 + }, + [3329]={ + ["distance"]=19969, + ["mine_stage"]=44 + }, + [3330]={ + ["distance"]=19975, + ["mine_stage"]=38 + }, + [3331]={ + ["distance"]=19981, + ["mine_stage"]=9 + }, + [3332]={ + ["distance"]=19987, + ["mine_stage"]=31 + }, + [3333]={ + ["distance"]=19993, + ["mine_stage"]=13 + }, + [3334]={ + ["distance"]=19999, + ["mine_stage"]=32 + }, + [3335]={ + ["distance"]=20005, + ["mine_stage"]=58 + }, + [3336]={ + ["distance"]=20011, + ["mine_stage"]=39 + }, + [3337]={ + ["distance"]=20017, + ["mine_stage"]=8 + }, + [3338]={ + ["distance"]=20023, + ["mine_stage"]=44 + }, + [3339]={ + ["distance"]=20029, + ["mine_stage"]=34 + }, + [3340]={ + ["distance"]=20035, + ["mine_stage"]=45 + }, + [3341]={ + ["distance"]=20041, + ["mine_stage"]=32 + }, + [3342]={ + ["distance"]=20047, + ["mine_stage"]=46 + }, + [3343]={ + ["distance"]=20053, + ["mine_stage"]=55 + }, + [3344]={ + ["distance"]=20059, + ["mine_stage"]=34 + }, + [3345]={ + ["distance"]=20065, + ["mine_stage"]=21 + }, + [3346]={ + ["distance"]=20071, + ["mine_stage"]=14 + }, + [3347]={ + ["distance"]=20077, + ["mine_stage"]=34 + }, + [3348]={ + ["distance"]=20083, + ["mine_stage"]=56 + }, + [3349]={ + ["distance"]=20089, + ["mine_stage"]=53 + }, + [3350]={ + ["distance"]=20095, + ["mine_stage"]=50 + }, + [3351]={ + ["distance"]=20101, + ["mine_stage"]=69 + }, + [3352]={ + ["distance"]=20107, + ["mine_stage"]=38 + }, + [3353]={ + ["distance"]=20113, + ["mine_stage"]=8 + }, + [3354]={ + ["distance"]=20119, + ["mine_stage"]=26 + }, + [3355]={ + ["distance"]=20125, + ["mine_stage"]=1 + }, + [3356]={ + ["distance"]=20131, + ["mine_stage"]=33 + }, + [3357]={ + ["distance"]=20137, + ["mine_stage"]=21 + }, + [3358]={ + ["distance"]=20143, + ["mine_stage"]=60 + }, + [3359]={ + ["distance"]=20149, + ["mine_stage"]=32 + }, + [3360]={ + ["distance"]=20155, + ["mine_stage"]=26 + }, + [3361]={ + ["distance"]=20161, + ["mine_stage"]=41 + }, + [3362]={ + ["distance"]=20167, + ["mine_stage"]=35 + }, + [3363]={ + ["distance"]=20173, + ["mine_stage"]=58 + }, + [3364]={ + ["distance"]=20179, + ["mine_stage"]=58 + }, + [3365]={ + ["distance"]=20185, + ["mine_stage"]=50 + }, + [3366]={ + ["distance"]=20191, + ["mine_stage"]=26 + }, + [3367]={ + ["distance"]=20197, + ["mine_stage"]=36 + }, + [3368]={ + ["distance"]=20203, + ["mine_stage"]=48 + }, + [3369]={ + ["distance"]=20209, + ["mine_stage"]=14 + }, + [3370]={ + ["distance"]=20215, + ["mine_stage"]=59 + }, + [3371]={ + ["distance"]=20221, + ["mine_stage"]=29 + }, + [3372]={ + ["distance"]=20227, + ["mine_stage"]=45 + }, + [3373]={ + ["distance"]=20233, + ["mine_stage"]=59 + }, + [3374]={ + ["distance"]=20239, + ["mine_stage"]=20 + }, + [3375]={ + ["distance"]=20245, + ["mine_stage"]=11 + }, + [3376]={ + ["distance"]=20251, + ["mine_stage"]=47 + }, + [3377]={ + ["distance"]=20257, + ["mine_stage"]=52 + }, + [3378]={ + ["distance"]=20263, + ["mine_stage"]=45 + }, + [3379]={ + ["distance"]=20269, + ["mine_stage"]=12 + }, + [3380]={ + ["distance"]=20275, + ["mine_stage"]=42 + }, + [3381]={ + ["distance"]=20281, + ["mine_stage"]=25 + }, + [3382]={ + ["distance"]=20287, + ["mine_stage"]=22 + }, + [3383]={ + ["distance"]=20293, + ["mine_stage"]=57 + }, + [3384]={ + ["distance"]=20299, + ["mine_stage"]=20 + }, + [3385]={ + ["distance"]=20305, + ["mine_stage"]=57 + }, + [3386]={ + ["distance"]=20311, + ["mine_stage"]=19 + }, + [3387]={ + ["distance"]=20317, + ["mine_stage"]=46 + }, + [3388]={ + ["distance"]=20323, + ["mine_stage"]=1 + }, + [3389]={ + ["distance"]=20329, + ["mine_stage"]=42 + }, + [3390]={ + ["distance"]=20335, + ["mine_stage"]=51 + }, + [3391]={ + ["distance"]=20341, + ["mine_stage"]=16 + }, + [3392]={ + ["distance"]=20347, + ["mine_stage"]=45 + }, + [3393]={ + ["distance"]=20353, + ["mine_stage"]=42 + }, + [3394]={ + ["distance"]=20359, + ["mine_stage"]=54 + }, + [3395]={ + ["distance"]=20365, + ["mine_stage"]=37 + }, + [3396]={ + ["distance"]=20371, + ["mine_stage"]=34 + }, + [3397]={ + ["distance"]=20377, + ["mine_stage"]=43 + }, + [3398]={ + ["distance"]=20383, + ["mine_stage"]=35 + }, + [3399]={ + ["distance"]=20389, + ["mine_stage"]=5 + }, + [3400]={ + ["distance"]=20395, + ["mine_stage"]=31 + }, + [3401]={ + ["distance"]=20401, + ["mine_stage"]=64 + }, + [3402]={ + ["distance"]=20407, + ["mine_stage"]=56 + }, + [3403]={ + ["distance"]=20413, + ["mine_stage"]=4 + }, + [3404]={ + ["distance"]=20419, + ["mine_stage"]=35 + }, + [3405]={ + ["distance"]=20425, + ["mine_stage"]=12 + }, + [3406]={ + ["distance"]=20431, + ["mine_stage"]=56 + }, + [3407]={ + ["distance"]=20437, + ["mine_stage"]=16 + }, + [3408]={ + ["distance"]=20443, + ["mine_stage"]=27 + }, + [3409]={ + ["distance"]=20449, + ["mine_stage"]=43 + }, + [3410]={ + ["distance"]=20455, + ["mine_stage"]=46 + }, + [3411]={ + ["distance"]=20461, + ["mine_stage"]=42 + }, + [3412]={ + ["distance"]=20467, + ["mine_stage"]=15 + }, + [3413]={ + ["distance"]=20473, + ["mine_stage"]=38 + }, + [3414]={ + ["distance"]=20479, + ["mine_stage"]=4 + }, + [3415]={ + ["distance"]=20485, + ["mine_stage"]=5 + }, + [3416]={ + ["distance"]=20491, + ["mine_stage"]=58 + }, + [3417]={ + ["distance"]=20497, + ["mine_stage"]=18 + }, + [3418]={ + ["distance"]=20503, + ["mine_stage"]=10 + }, + [3419]={ + ["distance"]=20509, + ["mine_stage"]=21 + }, + [3420]={ + ["distance"]=20515, + ["mine_stage"]=32 + }, + [3421]={ + ["distance"]=20521, + ["mine_stage"]=22 + }, + [3422]={ + ["distance"]=20527, + ["mine_stage"]=54 + }, + [3423]={ + ["distance"]=20533, + ["mine_stage"]=12 + }, + [3424]={ + ["distance"]=20539, + ["mine_stage"]=42 + }, + [3425]={ + ["distance"]=20545, + ["mine_stage"]=45 + }, + [3426]={ + ["distance"]=20551, + ["mine_stage"]=19 + }, + [3427]={ + ["distance"]=20557, + ["mine_stage"]=43 + }, + [3428]={ + ["distance"]=20563, + ["mine_stage"]=34 + }, + [3429]={ + ["distance"]=20569, + ["mine_stage"]=51 + }, + [3430]={ + ["distance"]=20575, + ["mine_stage"]=55 + }, + [3431]={ + ["distance"]=20581, + ["mine_stage"]=43 + }, + [3432]={ + ["distance"]=20587, + ["mine_stage"]=4 + }, + [3433]={ + ["distance"]=20593, + ["mine_stage"]=25 + }, + [3434]={ + ["distance"]=20599, + ["mine_stage"]=57 + }, + [3435]={ + ["distance"]=20605, + ["mine_stage"]=44 + }, + [3436]={ + ["distance"]=20611, + ["mine_stage"]=55 + }, + [3437]={ + ["distance"]=20617, + ["mine_stage"]=11 + }, + [3438]={ + ["distance"]=20623, + ["mine_stage"]=8 + }, + [3439]={ + ["distance"]=20629, + ["mine_stage"]=57 + }, + [3440]={ + ["distance"]=20635, + ["mine_stage"]=52 + }, + [3441]={ + ["distance"]=20641, + ["mine_stage"]=14 + }, + [3442]={ + ["distance"]=20647, + ["mine_stage"]=31 + }, + [3443]={ + ["distance"]=20653, + ["mine_stage"]=10 + }, + [3444]={ + ["distance"]=20659, + ["mine_stage"]=4 + }, + [3445]={ + ["distance"]=20665, + ["mine_stage"]=34 + }, + [3446]={ + ["distance"]=20671, + ["mine_stage"]=45 + }, + [3447]={ + ["distance"]=20677, + ["mine_stage"]=5 + }, + [3448]={ + ["distance"]=20683, + ["mine_stage"]=33 + }, + [3449]={ + ["distance"]=20689, + ["mine_stage"]=21 + }, + [3450]={ + ["distance"]=20695, + ["mine_stage"]=31 + }, + [3451]={ + ["distance"]=20701, + ["mine_stage"]=67 + }, + [3452]={ + ["distance"]=20707, + ["mine_stage"]=35 + }, + [3453]={ + ["distance"]=20713, + ["mine_stage"]=45 + }, + [3454]={ + ["distance"]=20719, + ["mine_stage"]=36 + }, + [3455]={ + ["distance"]=20725, + ["mine_stage"]=14 + }, + [3456]={ + ["distance"]=20731, + ["mine_stage"]=11 + }, + [3457]={ + ["distance"]=20737, + ["mine_stage"]=27 + }, + [3458]={ + ["distance"]=20743, + ["mine_stage"]=19 + }, + [3459]={ + ["distance"]=20749, + ["mine_stage"]=19 + }, + [3460]={ + ["distance"]=20755, + ["mine_stage"]=7 + }, + [3461]={ + ["distance"]=20761, + ["mine_stage"]=56 + }, + [3462]={ + ["distance"]=20767, + ["mine_stage"]=37 + }, + [3463]={ + ["distance"]=20773, + ["mine_stage"]=19 + }, + [3464]={ + ["distance"]=20779, + ["mine_stage"]=33 + }, + [3465]={ + ["distance"]=20785, + ["mine_stage"]=3 + }, + [3466]={ + ["distance"]=20791, + ["mine_stage"]=55 + }, + [3467]={ + ["distance"]=20797, + ["mine_stage"]=49 + }, + [3468]={ + ["distance"]=20803, + ["mine_stage"]=21 + }, + [3469]={ + ["distance"]=20809, + ["mine_stage"]=40 + }, + [3470]={ + ["distance"]=20815, + ["mine_stage"]=59 + }, + [3471]={ + ["distance"]=20821, + ["mine_stage"]=36 + }, + [3472]={ + ["distance"]=20827, + ["mine_stage"]=51 + }, + [3473]={ + ["distance"]=20833, + ["mine_stage"]=54 + }, + [3474]={ + ["distance"]=20839, + ["mine_stage"]=2 + }, + [3475]={ + ["distance"]=20845, + ["mine_stage"]=35 + }, + [3476]={ + ["distance"]=20851, + ["mine_stage"]=51 + }, + [3477]={ + ["distance"]=20857, + ["mine_stage"]=41 + }, + [3478]={ + ["distance"]=20863, + ["mine_stage"]=42 + }, + [3479]={ + ["distance"]=20869, + ["mine_stage"]=37 + }, + [3480]={ + ["distance"]=20875, + ["mine_stage"]=47 + }, + [3481]={ + ["distance"]=20881, + ["mine_stage"]=28 + }, + [3482]={ + ["distance"]=20887, + ["mine_stage"]=26 + }, + [3483]={ + ["distance"]=20893, + ["mine_stage"]=32 + }, + [3484]={ + ["distance"]=20899, + ["mine_stage"]=25 + }, + [3485]={ + ["distance"]=20905, + ["mine_stage"]=36 + }, + [3486]={ + ["distance"]=20911, + ["mine_stage"]=41 + }, + [3487]={ + ["distance"]=20917, + ["mine_stage"]=6 + }, + [3488]={ + ["distance"]=20923, + ["mine_stage"]=57 + }, + [3489]={ + ["distance"]=20929, + ["mine_stage"]=56 + }, + [3490]={ + ["distance"]=20935, + ["mine_stage"]=41 + }, + [3491]={ + ["distance"]=20941, + ["mine_stage"]=43 + }, + [3492]={ + ["distance"]=20947, + ["mine_stage"]=18 + }, + [3493]={ + ["distance"]=20953, + ["mine_stage"]=49 + }, + [3494]={ + ["distance"]=20959, + ["mine_stage"]=38 + }, + [3495]={ + ["distance"]=20965, + ["mine_stage"]=16 + }, + [3496]={ + ["distance"]=20971, + ["mine_stage"]=32 + }, + [3497]={ + ["distance"]=20977, + ["mine_stage"]=25 + }, + [3498]={ + ["distance"]=20983, + ["mine_stage"]=32 + }, + [3499]={ + ["distance"]=20989, + ["mine_stage"]=31 + }, + [3500]={ + ["distance"]=20995, + ["mine_stage"]=43 + }, + [3501]={ + ["distance"]=21001, + ["mine_stage"]=65 + }, + [3502]={ + ["distance"]=21007, + ["mine_stage"]=39 + }, + [3503]={ + ["distance"]=21013, + ["mine_stage"]=17 + }, + [3504]={ + ["distance"]=21019, + ["mine_stage"]=42 + }, + [3505]={ + ["distance"]=21025, + ["mine_stage"]=40 + }, + [3506]={ + ["distance"]=21031, + ["mine_stage"]=21 + }, + [3507]={ + ["distance"]=21037, + ["mine_stage"]=4 + }, + [3508]={ + ["distance"]=21043, + ["mine_stage"]=8 + }, + [3509]={ + ["distance"]=21049, + ["mine_stage"]=4 + }, + [3510]={ + ["distance"]=21055, + ["mine_stage"]=20 + }, + [3511]={ + ["distance"]=21061, + ["mine_stage"]=46 + }, + [3512]={ + ["distance"]=21067, + ["mine_stage"]=40 + }, + [3513]={ + ["distance"]=21073, + ["mine_stage"]=14 + }, + [3514]={ + ["distance"]=21079, + ["mine_stage"]=23 + }, + [3515]={ + ["distance"]=21085, + ["mine_stage"]=14 + }, + [3516]={ + ["distance"]=21091, + ["mine_stage"]=50 + }, + [3517]={ + ["distance"]=21097, + ["mine_stage"]=54 + }, + [3518]={ + ["distance"]=21103, + ["mine_stage"]=5 + }, + [3519]={ + ["distance"]=21109, + ["mine_stage"]=14 + }, + [3520]={ + ["distance"]=21115, + ["mine_stage"]=2 + }, + [3521]={ + ["distance"]=21121, + ["mine_stage"]=6 + }, + [3522]={ + ["distance"]=21127, + ["mine_stage"]=27 + }, + [3523]={ + ["distance"]=21133, + ["mine_stage"]=41 + }, + [3524]={ + ["distance"]=21139, + ["mine_stage"]=50 + }, + [3525]={ + ["distance"]=21145, + ["mine_stage"]=21 + }, + [3526]={ + ["distance"]=21151, + ["mine_stage"]=35 + }, + [3527]={ + ["distance"]=21157, + ["mine_stage"]=40 + }, + [3528]={ + ["distance"]=21163, + ["mine_stage"]=12 + }, + [3529]={ + ["distance"]=21169, + ["mine_stage"]=40 + }, + [3530]={ + ["distance"]=21175, + ["mine_stage"]=6 + }, + [3531]={ + ["distance"]=21181, + ["mine_stage"]=13 + }, + [3532]={ + ["distance"]=21187, + ["mine_stage"]=40 + }, + [3533]={ + ["distance"]=21193, + ["mine_stage"]=15 + }, + [3534]={ + ["distance"]=21199, + ["mine_stage"]=54 + }, + [3535]={ + ["distance"]=21205, + ["mine_stage"]=7 + }, + [3536]={ + ["distance"]=21211, + ["mine_stage"]=2 + }, + [3537]={ + ["distance"]=21217, + ["mine_stage"]=55 + }, + [3538]={ + ["distance"]=21223, + ["mine_stage"]=13 + }, + [3539]={ + ["distance"]=21229, + ["mine_stage"]=18 + }, + [3540]={ + ["distance"]=21235, + ["mine_stage"]=16 + }, + [3541]={ + ["distance"]=21241, + ["mine_stage"]=48 + }, + [3542]={ + ["distance"]=21247, + ["mine_stage"]=16 + }, + [3543]={ + ["distance"]=21253, + ["mine_stage"]=32 + }, + [3544]={ + ["distance"]=21259, + ["mine_stage"]=5 + }, + [3545]={ + ["distance"]=21265, + ["mine_stage"]=41 + }, + [3546]={ + ["distance"]=21271, + ["mine_stage"]=46 + }, + [3547]={ + ["distance"]=21277, + ["mine_stage"]=59 + }, + [3548]={ + ["distance"]=21283, + ["mine_stage"]=4 + }, + [3549]={ + ["distance"]=21289, + ["mine_stage"]=48 + }, + [3550]={ + ["distance"]=21295, + ["mine_stage"]=19 + }, + [3551]={ + ["distance"]=21301, + ["mine_stage"]=68 + }, + [3552]={ + ["distance"]=21307, + ["mine_stage"]=54 + }, + [3553]={ + ["distance"]=21313, + ["mine_stage"]=21 + }, + [3554]={ + ["distance"]=21319, + ["mine_stage"]=9 + }, + [3555]={ + ["distance"]=21325, + ["mine_stage"]=30 + }, + [3556]={ + ["distance"]=21331, + ["mine_stage"]=11 + }, + [3557]={ + ["distance"]=21337, + ["mine_stage"]=13 + }, + [3558]={ + ["distance"]=21343, + ["mine_stage"]=44 + }, + [3559]={ + ["distance"]=21349, + ["mine_stage"]=39 + }, + [3560]={ + ["distance"]=21355, + ["mine_stage"]=51 + }, + [3561]={ + ["distance"]=21361, + ["mine_stage"]=23 + }, + [3562]={ + ["distance"]=21367, + ["mine_stage"]=32 + }, + [3563]={ + ["distance"]=21373, + ["mine_stage"]=56 + }, + [3564]={ + ["distance"]=21379, + ["mine_stage"]=30 + }, + [3565]={ + ["distance"]=21385, + ["mine_stage"]=31 + }, + [3566]={ + ["distance"]=21391, + ["mine_stage"]=14 + }, + [3567]={ + ["distance"]=21397, + ["mine_stage"]=16 + }, + [3568]={ + ["distance"]=21403, + ["mine_stage"]=11 + }, + [3569]={ + ["distance"]=21409, + ["mine_stage"]=24 + }, + [3570]={ + ["distance"]=21415, + ["mine_stage"]=50 + }, + [3571]={ + ["distance"]=21421, + ["mine_stage"]=29 + }, + [3572]={ + ["distance"]=21427, + ["mine_stage"]=6 + }, + [3573]={ + ["distance"]=21433, + ["mine_stage"]=36 + }, + [3574]={ + ["distance"]=21439, + ["mine_stage"]=29 + }, + [3575]={ + ["distance"]=21445, + ["mine_stage"]=49 + }, + [3576]={ + ["distance"]=21451, + ["mine_stage"]=18 + }, + [3577]={ + ["distance"]=21457, + ["mine_stage"]=14 + }, + [3578]={ + ["distance"]=21463, + ["mine_stage"]=52 + }, + [3579]={ + ["distance"]=21469, + ["mine_stage"]=21 + }, + [3580]={ + ["distance"]=21475, + ["mine_stage"]=35 + }, + [3581]={ + ["distance"]=21481, + ["mine_stage"]=4 + }, + [3582]={ + ["distance"]=21487, + ["mine_stage"]=10 + }, + [3583]={ + ["distance"]=21493, + ["mine_stage"]=31 + }, + [3584]={ + ["distance"]=21499, + ["mine_stage"]=41 + }, + [3585]={ + ["distance"]=21505, + ["mine_stage"]=24 + }, + [3586]={ + ["distance"]=21511, + ["mine_stage"]=47 + }, + [3587]={ + ["distance"]=21517, + ["mine_stage"]=60 + }, + [3588]={ + ["distance"]=21523, + ["mine_stage"]=57 + }, + [3589]={ + ["distance"]=21529, + ["mine_stage"]=40 + }, + [3590]={ + ["distance"]=21535, + ["mine_stage"]=23 + }, + [3591]={ + ["distance"]=21541, + ["mine_stage"]=60 + }, + [3592]={ + ["distance"]=21547, + ["mine_stage"]=14 + }, + [3593]={ + ["distance"]=21553, + ["mine_stage"]=10 + }, + [3594]={ + ["distance"]=21559, + ["mine_stage"]=25 + }, + [3595]={ + ["distance"]=21565, + ["mine_stage"]=23 + }, + [3596]={ + ["distance"]=21571, + ["mine_stage"]=7 + }, + [3597]={ + ["distance"]=21577, + ["mine_stage"]=5 + }, + [3598]={ + ["distance"]=21583, + ["mine_stage"]=26 + }, + [3599]={ + ["distance"]=21589, + ["mine_stage"]=27 + }, + [3600]={ + ["distance"]=21595, + ["mine_stage"]=39 + }, + [3601]={ + ["distance"]=21601, + ["mine_stage"]=66 + }, + [3602]={ + ["distance"]=21607, + ["mine_stage"]=41 + }, + [3603]={ + ["distance"]=21613, + ["mine_stage"]=46 + }, + [3604]={ + ["distance"]=21619, + ["mine_stage"]=25 + }, + [3605]={ + ["distance"]=21625, + ["mine_stage"]=31 + }, + [3606]={ + ["distance"]=21631, + ["mine_stage"]=54 + }, + [3607]={ + ["distance"]=21637, + ["mine_stage"]=28 + }, + [3608]={ + ["distance"]=21643, + ["mine_stage"]=42 + }, + [3609]={ + ["distance"]=21649, + ["mine_stage"]=5 + }, + [3610]={ + ["distance"]=21655, + ["mine_stage"]=36 + }, + [3611]={ + ["distance"]=21661, + ["mine_stage"]=27 + }, + [3612]={ + ["distance"]=21667, + ["mine_stage"]=55 + }, + [3613]={ + ["distance"]=21673, + ["mine_stage"]=17 + }, + [3614]={ + ["distance"]=21679, + ["mine_stage"]=45 + }, + [3615]={ + ["distance"]=21685, + ["mine_stage"]=20 + }, + [3616]={ + ["distance"]=21691, + ["mine_stage"]=5 + }, + [3617]={ + ["distance"]=21697, + ["mine_stage"]=55 + }, + [3618]={ + ["distance"]=21703, + ["mine_stage"]=6 + }, + [3619]={ + ["distance"]=21709, + ["mine_stage"]=58 + }, + [3620]={ + ["distance"]=21715, + ["mine_stage"]=1 + }, + [3621]={ + ["distance"]=21721, + ["mine_stage"]=31 + }, + [3622]={ + ["distance"]=21727, + ["mine_stage"]=21 + }, + [3623]={ + ["distance"]=21733, + ["mine_stage"]=27 + }, + [3624]={ + ["distance"]=21739, + ["mine_stage"]=44 + }, + [3625]={ + ["distance"]=21745, + ["mine_stage"]=53 + }, + [3626]={ + ["distance"]=21751, + ["mine_stage"]=24 + }, + [3627]={ + ["distance"]=21757, + ["mine_stage"]=4 + }, + [3628]={ + ["distance"]=21763, + ["mine_stage"]=7 + }, + [3629]={ + ["distance"]=21769, + ["mine_stage"]=42 + }, + [3630]={ + ["distance"]=21775, + ["mine_stage"]=56 + }, + [3631]={ + ["distance"]=21781, + ["mine_stage"]=33 + }, + [3632]={ + ["distance"]=21787, + ["mine_stage"]=52 + }, + [3633]={ + ["distance"]=21793, + ["mine_stage"]=7 + }, + [3634]={ + ["distance"]=21799, + ["mine_stage"]=37 + }, + [3635]={ + ["distance"]=21805, + ["mine_stage"]=4 + }, + [3636]={ + ["distance"]=21811, + ["mine_stage"]=28 + }, + [3637]={ + ["distance"]=21817, + ["mine_stage"]=3 + }, + [3638]={ + ["distance"]=21823, + ["mine_stage"]=31 + }, + [3639]={ + ["distance"]=21829, + ["mine_stage"]=13 + }, + [3640]={ + ["distance"]=21835, + ["mine_stage"]=9 + }, + [3641]={ + ["distance"]=21841, + ["mine_stage"]=52 + }, + [3642]={ + ["distance"]=21847, + ["mine_stage"]=21 + }, + [3643]={ + ["distance"]=21853, + ["mine_stage"]=43 + }, + [3644]={ + ["distance"]=21859, + ["mine_stage"]=53 + }, + [3645]={ + ["distance"]=21865, + ["mine_stage"]=13 + }, + [3646]={ + ["distance"]=21871, + ["mine_stage"]=20 + }, + [3647]={ + ["distance"]=21877, + ["mine_stage"]=50 + }, + [3648]={ + ["distance"]=21883, + ["mine_stage"]=22 + }, + [3649]={ + ["distance"]=21889, + ["mine_stage"]=51 + }, + [3650]={ + ["distance"]=21895, + ["mine_stage"]=9 + }, + [3651]={ + ["distance"]=21901, + ["mine_stage"]=69 + }, + [3652]={ + ["distance"]=21907, + ["mine_stage"]=33 + }, + [3653]={ + ["distance"]=21913, + ["mine_stage"]=10 + }, + [3654]={ + ["distance"]=21919, + ["mine_stage"]=1 + }, + [3655]={ + ["distance"]=21925, + ["mine_stage"]=47 + }, + [3656]={ + ["distance"]=21931, + ["mine_stage"]=5 + }, + [3657]={ + ["distance"]=21937, + ["mine_stage"]=43 + }, + [3658]={ + ["distance"]=21943, + ["mine_stage"]=11 + }, + [3659]={ + ["distance"]=21949, + ["mine_stage"]=18 + }, + [3660]={ + ["distance"]=21955, + ["mine_stage"]=58 + }, + [3661]={ + ["distance"]=21961, + ["mine_stage"]=50 + }, + [3662]={ + ["distance"]=21967, + ["mine_stage"]=59 + }, + [3663]={ + ["distance"]=21973, + ["mine_stage"]=31 + }, + [3664]={ + ["distance"]=21979, + ["mine_stage"]=44 + }, + [3665]={ + ["distance"]=21985, + ["mine_stage"]=23 + }, + [3666]={ + ["distance"]=21991, + ["mine_stage"]=40 + }, + [3667]={ + ["distance"]=21997, + ["mine_stage"]=22 + }, + [3668]={ + ["distance"]=22003, + ["mine_stage"]=48 + }, + [3669]={ + ["distance"]=22009, + ["mine_stage"]=20 + }, + [3670]={ + ["distance"]=22015, + ["mine_stage"]=28 + }, + [3671]={ + ["distance"]=22021, + ["mine_stage"]=12 + }, + [3672]={ + ["distance"]=22027, + ["mine_stage"]=60 + }, + [3673]={ + ["distance"]=22033, + ["mine_stage"]=6 + }, + [3674]={ + ["distance"]=22039, + ["mine_stage"]=27 + }, + [3675]={ + ["distance"]=22045, + ["mine_stage"]=7 + }, + [3676]={ + ["distance"]=22051, + ["mine_stage"]=58 + }, + [3677]={ + ["distance"]=22057, + ["mine_stage"]=22 + }, + [3678]={ + ["distance"]=22063, + ["mine_stage"]=46 + }, + [3679]={ + ["distance"]=22069, + ["mine_stage"]=1 + }, + [3680]={ + ["distance"]=22075, + ["mine_stage"]=35 + }, + [3681]={ + ["distance"]=22081, + ["mine_stage"]=30 + }, + [3682]={ + ["distance"]=22087, + ["mine_stage"]=43 + }, + [3683]={ + ["distance"]=22093, + ["mine_stage"]=7 + }, + [3684]={ + ["distance"]=22099, + ["mine_stage"]=4 + }, + [3685]={ + ["distance"]=22105, + ["mine_stage"]=23 + }, + [3686]={ + ["distance"]=22111, + ["mine_stage"]=29 + }, + [3687]={ + ["distance"]=22117, + ["mine_stage"]=14 + }, + [3688]={ + ["distance"]=22123, + ["mine_stage"]=30 + }, + [3689]={ + ["distance"]=22129, + ["mine_stage"]=48 + }, + [3690]={ + ["distance"]=22135, + ["mine_stage"]=23 + }, + [3691]={ + ["distance"]=22141, + ["mine_stage"]=13 + }, + [3692]={ + ["distance"]=22147, + ["mine_stage"]=13 + }, + [3693]={ + ["distance"]=22153, + ["mine_stage"]=17 + }, + [3694]={ + ["distance"]=22159, + ["mine_stage"]=10 + }, + [3695]={ + ["distance"]=22165, + ["mine_stage"]=39 + }, + [3696]={ + ["distance"]=22171, + ["mine_stage"]=24 + }, + [3697]={ + ["distance"]=22177, + ["mine_stage"]=14 + }, + [3698]={ + ["distance"]=22183, + ["mine_stage"]=15 + }, + [3699]={ + ["distance"]=22189, + ["mine_stage"]=6 + }, + [3700]={ + ["distance"]=22195, + ["mine_stage"]=14 + }, + [3701]={ + ["distance"]=22201, + ["mine_stage"]=64 + }, + [3702]={ + ["distance"]=22207, + ["mine_stage"]=51 + }, + [3703]={ + ["distance"]=22213, + ["mine_stage"]=24 + }, + [3704]={ + ["distance"]=22219, + ["mine_stage"]=53 + }, + [3705]={ + ["distance"]=22225, + ["mine_stage"]=19 + }, + [3706]={ + ["distance"]=22231, + ["mine_stage"]=20 + }, + [3707]={ + ["distance"]=22237, + ["mine_stage"]=42 + }, + [3708]={ + ["distance"]=22243, + ["mine_stage"]=34 + }, + [3709]={ + ["distance"]=22249, + ["mine_stage"]=57 + }, + [3710]={ + ["distance"]=22255, + ["mine_stage"]=12 + }, + [3711]={ + ["distance"]=22261, + ["mine_stage"]=13 + }, + [3712]={ + ["distance"]=22267, + ["mine_stage"]=12 + }, + [3713]={ + ["distance"]=22273, + ["mine_stage"]=31 + }, + [3714]={ + ["distance"]=22279, + ["mine_stage"]=38 + }, + [3715]={ + ["distance"]=22285, + ["mine_stage"]=10 + }, + [3716]={ + ["distance"]=22291, + ["mine_stage"]=12 + }, + [3717]={ + ["distance"]=22297, + ["mine_stage"]=42 + }, + [3718]={ + ["distance"]=22303, + ["mine_stage"]=47 + }, + [3719]={ + ["distance"]=22309, + ["mine_stage"]=26 + }, + [3720]={ + ["distance"]=22315, + ["mine_stage"]=3 + }, + [3721]={ + ["distance"]=22321, + ["mine_stage"]=8 + }, + [3722]={ + ["distance"]=22327, + ["mine_stage"]=22 + }, + [3723]={ + ["distance"]=22333, + ["mine_stage"]=19 + }, + [3724]={ + ["distance"]=22339, + ["mine_stage"]=43 + }, + [3725]={ + ["distance"]=22345, + ["mine_stage"]=41 + }, + [3726]={ + ["distance"]=22351, + ["mine_stage"]=26 + }, + [3727]={ + ["distance"]=22357, + ["mine_stage"]=40 + }, + [3728]={ + ["distance"]=22363, + ["mine_stage"]=42 + }, + [3729]={ + ["distance"]=22369, + ["mine_stage"]=8 + }, + [3730]={ + ["distance"]=22375, + ["mine_stage"]=7 + }, + [3731]={ + ["distance"]=22381, + ["mine_stage"]=60 + }, + [3732]={ + ["distance"]=22387, + ["mine_stage"]=26 + }, + [3733]={ + ["distance"]=22393, + ["mine_stage"]=32 + }, + [3734]={ + ["distance"]=22399, + ["mine_stage"]=5 + }, + [3735]={ + ["distance"]=22405, + ["mine_stage"]=34 + }, + [3736]={ + ["distance"]=22411, + ["mine_stage"]=35 + }, + [3737]={ + ["distance"]=22417, + ["mine_stage"]=48 + }, + [3738]={ + ["distance"]=22423, + ["mine_stage"]=32 + }, + [3739]={ + ["distance"]=22429, + ["mine_stage"]=31 + }, + [3740]={ + ["distance"]=22435, + ["mine_stage"]=48 + }, + [3741]={ + ["distance"]=22441, + ["mine_stage"]=8 + }, + [3742]={ + ["distance"]=22447, + ["mine_stage"]=38 + }, + [3743]={ + ["distance"]=22453, + ["mine_stage"]=4 + }, + [3744]={ + ["distance"]=22459, + ["mine_stage"]=37 + }, + [3745]={ + ["distance"]=22465, + ["mine_stage"]=37 + }, + [3746]={ + ["distance"]=22471, + ["mine_stage"]=23 + }, + [3747]={ + ["distance"]=22477, + ["mine_stage"]=48 + }, + [3748]={ + ["distance"]=22483, + ["mine_stage"]=35 + }, + [3749]={ + ["distance"]=22489, + ["mine_stage"]=8 + }, + [3750]={ + ["distance"]=22495, + ["mine_stage"]=57 + }, + [3751]={ + ["distance"]=22501, + ["mine_stage"]=67 + }, + [3752]={ + ["distance"]=22507, + ["mine_stage"]=10 + }, + [3753]={ + ["distance"]=22513, + ["mine_stage"]=39 + }, + [3754]={ + ["distance"]=22519, + ["mine_stage"]=58 + }, + [3755]={ + ["distance"]=22525, + ["mine_stage"]=58 + }, + [3756]={ + ["distance"]=22531, + ["mine_stage"]=3 + }, + [3757]={ + ["distance"]=22537, + ["mine_stage"]=13 + }, + [3758]={ + ["distance"]=22543, + ["mine_stage"]=23 + }, + [3759]={ + ["distance"]=22549, + ["mine_stage"]=24 + }, + [3760]={ + ["distance"]=22555, + ["mine_stage"]=19 + }, + [3761]={ + ["distance"]=22561, + ["mine_stage"]=58 + }, + [3762]={ + ["distance"]=22567, + ["mine_stage"]=10 + }, + [3763]={ + ["distance"]=22573, + ["mine_stage"]=58 + }, + [3764]={ + ["distance"]=22579, + ["mine_stage"]=25 + }, + [3765]={ + ["distance"]=22585, + ["mine_stage"]=32 + }, + [3766]={ + ["distance"]=22591, + ["mine_stage"]=18 + }, + [3767]={ + ["distance"]=22597, + ["mine_stage"]=12 + }, + [3768]={ + ["distance"]=22603, + ["mine_stage"]=8 + }, + [3769]={ + ["distance"]=22609, + ["mine_stage"]=11 + }, + [3770]={ + ["distance"]=22615, + ["mine_stage"]=28 + }, + [3771]={ + ["distance"]=22621, + ["mine_stage"]=39 + }, + [3772]={ + ["distance"]=22627, + ["mine_stage"]=15 + }, + [3773]={ + ["distance"]=22633, + ["mine_stage"]=32 + }, + [3774]={ + ["distance"]=22639, + ["mine_stage"]=52 + }, + [3775]={ + ["distance"]=22645, + ["mine_stage"]=28 + }, + [3776]={ + ["distance"]=22651, + ["mine_stage"]=36 + }, + [3777]={ + ["distance"]=22657, + ["mine_stage"]=16 + }, + [3778]={ + ["distance"]=22663, + ["mine_stage"]=3 + }, + [3779]={ + ["distance"]=22669, + ["mine_stage"]=51 + }, + [3780]={ + ["distance"]=22675, + ["mine_stage"]=23 + }, + [3781]={ + ["distance"]=22681, + ["mine_stage"]=46 + }, + [3782]={ + ["distance"]=22687, + ["mine_stage"]=55 + }, + [3783]={ + ["distance"]=22693, + ["mine_stage"]=42 + }, + [3784]={ + ["distance"]=22699, + ["mine_stage"]=36 + }, + [3785]={ + ["distance"]=22705, + ["mine_stage"]=27 + }, + [3786]={ + ["distance"]=22711, + ["mine_stage"]=41 + }, + [3787]={ + ["distance"]=22717, + ["mine_stage"]=29 + }, + [3788]={ + ["distance"]=22723, + ["mine_stage"]=33 + }, + [3789]={ + ["distance"]=22729, + ["mine_stage"]=25 + }, + [3790]={ + ["distance"]=22735, + ["mine_stage"]=26 + }, + [3791]={ + ["distance"]=22741, + ["mine_stage"]=35 + }, + [3792]={ + ["distance"]=22747, + ["mine_stage"]=7 + }, + [3793]={ + ["distance"]=22753, + ["mine_stage"]=18 + }, + [3794]={ + ["distance"]=22759, + ["mine_stage"]=28 + }, + [3795]={ + ["distance"]=22765, + ["mine_stage"]=11 + }, + [3796]={ + ["distance"]=22771, + ["mine_stage"]=39 + }, + [3797]={ + ["distance"]=22777, + ["mine_stage"]=49 + }, + [3798]={ + ["distance"]=22783, + ["mine_stage"]=53 + }, + [3799]={ + ["distance"]=22789, + ["mine_stage"]=34 + }, + [3800]={ + ["distance"]=22795, + ["mine_stage"]=12 + }, + [3801]={ + ["distance"]=22801, + ["mine_stage"]=65 + }, + [3802]={ + ["distance"]=22807, + ["mine_stage"]=56 + }, + [3803]={ + ["distance"]=22813, + ["mine_stage"]=41 + }, + [3804]={ + ["distance"]=22819, + ["mine_stage"]=19 + }, + [3805]={ + ["distance"]=22825, + ["mine_stage"]=53 + }, + [3806]={ + ["distance"]=22831, + ["mine_stage"]=10 + }, + [3807]={ + ["distance"]=22837, + ["mine_stage"]=8 + }, + [3808]={ + ["distance"]=22843, + ["mine_stage"]=55 + }, + [3809]={ + ["distance"]=22849, + ["mine_stage"]=15 + }, + [3810]={ + ["distance"]=22855, + ["mine_stage"]=58 + }, + [3811]={ + ["distance"]=22861, + ["mine_stage"]=7 + }, + [3812]={ + ["distance"]=22867, + ["mine_stage"]=40 + }, + [3813]={ + ["distance"]=22873, + ["mine_stage"]=32 + }, + [3814]={ + ["distance"]=22879, + ["mine_stage"]=46 + }, + [3815]={ + ["distance"]=22885, + ["mine_stage"]=55 + }, + [3816]={ + ["distance"]=22891, + ["mine_stage"]=34 + }, + [3817]={ + ["distance"]=22897, + ["mine_stage"]=19 + }, + [3818]={ + ["distance"]=22903, + ["mine_stage"]=12 + }, + [3819]={ + ["distance"]=22909, + ["mine_stage"]=31 + }, + [3820]={ + ["distance"]=22915, + ["mine_stage"]=24 + }, + [3821]={ + ["distance"]=22921, + ["mine_stage"]=43 + }, + [3822]={ + ["distance"]=22927, + ["mine_stage"]=53 + }, + [3823]={ + ["distance"]=22933, + ["mine_stage"]=2 + }, + [3824]={ + ["distance"]=22939, + ["mine_stage"]=46 + }, + [3825]={ + ["distance"]=22945, + ["mine_stage"]=34 + }, + [3826]={ + ["distance"]=22951, + ["mine_stage"]=3 + }, + [3827]={ + ["distance"]=22957, + ["mine_stage"]=21 + }, + [3828]={ + ["distance"]=22963, + ["mine_stage"]=13 + }, + [3829]={ + ["distance"]=22969, + ["mine_stage"]=29 + }, + [3830]={ + ["distance"]=22975, + ["mine_stage"]=3 + }, + [3831]={ + ["distance"]=22981, + ["mine_stage"]=19 + }, + [3832]={ + ["distance"]=22987, + ["mine_stage"]=48 + }, + [3833]={ + ["distance"]=22993, + ["mine_stage"]=60 + }, + [3834]={ + ["distance"]=22999, + ["mine_stage"]=60 + }, + [3835]={ + ["distance"]=23005, + ["mine_stage"]=41 + }, + [3836]={ + ["distance"]=23011, + ["mine_stage"]=34 + }, + [3837]={ + ["distance"]=23017, + ["mine_stage"]=36 + }, + [3838]={ + ["distance"]=23023, + ["mine_stage"]=47 + }, + [3839]={ + ["distance"]=23029, + ["mine_stage"]=13 + }, + [3840]={ + ["distance"]=23035, + ["mine_stage"]=10 + }, + [3841]={ + ["distance"]=23041, + ["mine_stage"]=45 + }, + [3842]={ + ["distance"]=23047, + ["mine_stage"]=13 + }, + [3843]={ + ["distance"]=23053, + ["mine_stage"]=58 + }, + [3844]={ + ["distance"]=23059, + ["mine_stage"]=36 + }, + [3845]={ + ["distance"]=23065, + ["mine_stage"]=22 + }, + [3846]={ + ["distance"]=23071, + ["mine_stage"]=33 + }, + [3847]={ + ["distance"]=23077, + ["mine_stage"]=2 + }, + [3848]={ + ["distance"]=23083, + ["mine_stage"]=24 + }, + [3849]={ + ["distance"]=23089, + ["mine_stage"]=35 + }, + [3850]={ + ["distance"]=23095, + ["mine_stage"]=26 + }, + [3851]={ + ["distance"]=23101, + ["mine_stage"]=68 + }, + [3852]={ + ["distance"]=23107, + ["mine_stage"]=14 + }, + [3853]={ + ["distance"]=23113, + ["mine_stage"]=13 + }, + [3854]={ + ["distance"]=23119, + ["mine_stage"]=15 + }, + [3855]={ + ["distance"]=23125, + ["mine_stage"]=38 + }, + [3856]={ + ["distance"]=23131, + ["mine_stage"]=22 + }, + [3857]={ + ["distance"]=23137, + ["mine_stage"]=49 + }, + [3858]={ + ["distance"]=23143, + ["mine_stage"]=45 + }, + [3859]={ + ["distance"]=23149, + ["mine_stage"]=26 + }, + [3860]={ + ["distance"]=23155, + ["mine_stage"]=53 + }, + [3861]={ + ["distance"]=23161, + ["mine_stage"]=6 + }, + [3862]={ + ["distance"]=23167, + ["mine_stage"]=15 + }, + [3863]={ + ["distance"]=23173, + ["mine_stage"]=12 + }, + [3864]={ + ["distance"]=23179, + ["mine_stage"]=35 + }, + [3865]={ + ["distance"]=23185, + ["mine_stage"]=60 + }, + [3866]={ + ["distance"]=23191, + ["mine_stage"]=49 + }, + [3867]={ + ["distance"]=23197, + ["mine_stage"]=24 + }, + [3868]={ + ["distance"]=23203, + ["mine_stage"]=19 + }, + [3869]={ + ["distance"]=23209, + ["mine_stage"]=31 + }, + [3870]={ + ["distance"]=23215, + ["mine_stage"]=54 + }, + [3871]={ + ["distance"]=23221, + ["mine_stage"]=18 + }, + [3872]={ + ["distance"]=23227, + ["mine_stage"]=21 + }, + [3873]={ + ["distance"]=23233, + ["mine_stage"]=27 + }, + [3874]={ + ["distance"]=23239, + ["mine_stage"]=51 + }, + [3875]={ + ["distance"]=23245, + ["mine_stage"]=18 + }, + [3876]={ + ["distance"]=23251, + ["mine_stage"]=23 + }, + [3877]={ + ["distance"]=23257, + ["mine_stage"]=32 + }, + [3878]={ + ["distance"]=23263, + ["mine_stage"]=14 + }, + [3879]={ + ["distance"]=23269, + ["mine_stage"]=39 + }, + [3880]={ + ["distance"]=23275, + ["mine_stage"]=36 + }, + [3881]={ + ["distance"]=23281, + ["mine_stage"]=1 + }, + [3882]={ + ["distance"]=23287, + ["mine_stage"]=32 + }, + [3883]={ + ["distance"]=23293, + ["mine_stage"]=21 + }, + [3884]={ + ["distance"]=23299, + ["mine_stage"]=16 + }, + [3885]={ + ["distance"]=23305, + ["mine_stage"]=18 + }, + [3886]={ + ["distance"]=23311, + ["mine_stage"]=51 + }, + [3887]={ + ["distance"]=23317, + ["mine_stage"]=51 + }, + [3888]={ + ["distance"]=23323, + ["mine_stage"]=17 + }, + [3889]={ + ["distance"]=23329, + ["mine_stage"]=43 + }, + [3890]={ + ["distance"]=23335, + ["mine_stage"]=46 + }, + [3891]={ + ["distance"]=23341, + ["mine_stage"]=4 + }, + [3892]={ + ["distance"]=23347, + ["mine_stage"]=28 + }, + [3893]={ + ["distance"]=23353, + ["mine_stage"]=48 + }, + [3894]={ + ["distance"]=23359, + ["mine_stage"]=44 + }, + [3895]={ + ["distance"]=23365, + ["mine_stage"]=50 + }, + [3896]={ + ["distance"]=23371, + ["mine_stage"]=9 + }, + [3897]={ + ["distance"]=23377, + ["mine_stage"]=53 + }, + [3898]={ + ["distance"]=23383, + ["mine_stage"]=8 + }, + [3899]={ + ["distance"]=23389, + ["mine_stage"]=1 + }, + [3900]={ + ["distance"]=23395, + ["mine_stage"]=21 + }, + [3901]={ + ["distance"]=23401, + ["mine_stage"]=66 + }, + [3902]={ + ["distance"]=23407, + ["mine_stage"]=51 + }, + [3903]={ + ["distance"]=23413, + ["mine_stage"]=13 + }, + [3904]={ + ["distance"]=23419, + ["mine_stage"]=42 + }, + [3905]={ + ["distance"]=23425, + ["mine_stage"]=17 + }, + [3906]={ + ["distance"]=23431, + ["mine_stage"]=5 + }, + [3907]={ + ["distance"]=23437, + ["mine_stage"]=29 + }, + [3908]={ + ["distance"]=23443, + ["mine_stage"]=54 + }, + [3909]={ + ["distance"]=23449, + ["mine_stage"]=15 + }, + [3910]={ + ["distance"]=23455, + ["mine_stage"]=51 + }, + [3911]={ + ["distance"]=23461, + ["mine_stage"]=35 + }, + [3912]={ + ["distance"]=23467, + ["mine_stage"]=21 + }, + [3913]={ + ["distance"]=23473, + ["mine_stage"]=36 + }, + [3914]={ + ["distance"]=23479, + ["mine_stage"]=7 + }, + [3915]={ + ["distance"]=23485, + ["mine_stage"]=4 + }, + [3916]={ + ["distance"]=23491, + ["mine_stage"]=30 + }, + [3917]={ + ["distance"]=23497, + ["mine_stage"]=8 + }, + [3918]={ + ["distance"]=23503, + ["mine_stage"]=25 + }, + [3919]={ + ["distance"]=23509, + ["mine_stage"]=16 + }, + [3920]={ + ["distance"]=23515, + ["mine_stage"]=25 + }, + [3921]={ + ["distance"]=23521, + ["mine_stage"]=59 + }, + [3922]={ + ["distance"]=23527, + ["mine_stage"]=32 + }, + [3923]={ + ["distance"]=23533, + ["mine_stage"]=35 + }, + [3924]={ + ["distance"]=23539, + ["mine_stage"]=13 + }, + [3925]={ + ["distance"]=23545, + ["mine_stage"]=56 + }, + [3926]={ + ["distance"]=23551, + ["mine_stage"]=17 + }, + [3927]={ + ["distance"]=23557, + ["mine_stage"]=15 + }, + [3928]={ + ["distance"]=23563, + ["mine_stage"]=47 + }, + [3929]={ + ["distance"]=23569, + ["mine_stage"]=36 + }, + [3930]={ + ["distance"]=23575, + ["mine_stage"]=6 + }, + [3931]={ + ["distance"]=23581, + ["mine_stage"]=19 + }, + [3932]={ + ["distance"]=23587, + ["mine_stage"]=36 + }, + [3933]={ + ["distance"]=23593, + ["mine_stage"]=10 + }, + [3934]={ + ["distance"]=23599, + ["mine_stage"]=38 + }, + [3935]={ + ["distance"]=23605, + ["mine_stage"]=15 + }, + [3936]={ + ["distance"]=23611, + ["mine_stage"]=47 + }, + [3937]={ + ["distance"]=23617, + ["mine_stage"]=16 + }, + [3938]={ + ["distance"]=23623, + ["mine_stage"]=22 + }, + [3939]={ + ["distance"]=23629, + ["mine_stage"]=40 + }, + [3940]={ + ["distance"]=23635, + ["mine_stage"]=9 + }, + [3941]={ + ["distance"]=23641, + ["mine_stage"]=2 + }, + [3942]={ + ["distance"]=23647, + ["mine_stage"]=51 + }, + [3943]={ + ["distance"]=23653, + ["mine_stage"]=33 + }, + [3944]={ + ["distance"]=23659, + ["mine_stage"]=26 + }, + [3945]={ + ["distance"]=23665, + ["mine_stage"]=57 + }, + [3946]={ + ["distance"]=23671, + ["mine_stage"]=19 + }, + [3947]={ + ["distance"]=23677, + ["mine_stage"]=4 + }, + [3948]={ + ["distance"]=23683, + ["mine_stage"]=50 + }, + [3949]={ + ["distance"]=23689, + ["mine_stage"]=35 + }, + [3950]={ + ["distance"]=23695, + ["mine_stage"]=52 + }, + [3951]={ + ["distance"]=23701, + ["mine_stage"]=69 + }, + [3952]={ + ["distance"]=23707, + ["mine_stage"]=51 + }, + [3953]={ + ["distance"]=23713, + ["mine_stage"]=24 + }, + [3954]={ + ["distance"]=23719, + ["mine_stage"]=27 + }, + [3955]={ + ["distance"]=23725, + ["mine_stage"]=14 + }, + [3956]={ + ["distance"]=23731, + ["mine_stage"]=23 + }, + [3957]={ + ["distance"]=23737, + ["mine_stage"]=10 + }, + [3958]={ + ["distance"]=23743, + ["mine_stage"]=30 + }, + [3959]={ + ["distance"]=23749, + ["mine_stage"]=40 + }, + [3960]={ + ["distance"]=23755, + ["mine_stage"]=45 + }, + [3961]={ + ["distance"]=23761, + ["mine_stage"]=29 + }, + [3962]={ + ["distance"]=23767, + ["mine_stage"]=28 + }, + [3963]={ + ["distance"]=23773, + ["mine_stage"]=11 + }, + [3964]={ + ["distance"]=23779, + ["mine_stage"]=28 + }, + [3965]={ + ["distance"]=23785, + ["mine_stage"]=39 + }, + [3966]={ + ["distance"]=23791, + ["mine_stage"]=12 + }, + [3967]={ + ["distance"]=23797, + ["mine_stage"]=40 + }, + [3968]={ + ["distance"]=23803, + ["mine_stage"]=32 + }, + [3969]={ + ["distance"]=23809, + ["mine_stage"]=53 + }, + [3970]={ + ["distance"]=23815, + ["mine_stage"]=42 + }, + [3971]={ + ["distance"]=23821, + ["mine_stage"]=10 + }, + [3972]={ + ["distance"]=23827, + ["mine_stage"]=52 + }, + [3973]={ + ["distance"]=23833, + ["mine_stage"]=28 + }, + [3974]={ + ["distance"]=23839, + ["mine_stage"]=10 + }, + [3975]={ + ["distance"]=23845, + ["mine_stage"]=33 + }, + [3976]={ + ["distance"]=23851, + ["mine_stage"]=59 + }, + [3977]={ + ["distance"]=23857, + ["mine_stage"]=49 + }, + [3978]={ + ["distance"]=23863, + ["mine_stage"]=6 + }, + [3979]={ + ["distance"]=23869, + ["mine_stage"]=25 + }, + [3980]={ + ["distance"]=23875, + ["mine_stage"]=8 + }, + [3981]={ + ["distance"]=23881, + ["mine_stage"]=46 + }, + [3982]={ + ["distance"]=23887, + ["mine_stage"]=46 + }, + [3983]={ + ["distance"]=23893, + ["mine_stage"]=51 + }, + [3984]={ + ["distance"]=23899, + ["mine_stage"]=1 + }, + [3985]={ + ["distance"]=23905, + ["mine_stage"]=47 + }, + [3986]={ + ["distance"]=23911, + ["mine_stage"]=20 + }, + [3987]={ + ["distance"]=23917, + ["mine_stage"]=19 + }, + [3988]={ + ["distance"]=23923, + ["mine_stage"]=26 + }, + [3989]={ + ["distance"]=23929, + ["mine_stage"]=49 + }, + [3990]={ + ["distance"]=23935, + ["mine_stage"]=19 + }, + [3991]={ + ["distance"]=23941, + ["mine_stage"]=34 + }, + [3992]={ + ["distance"]=23947, + ["mine_stage"]=24 + }, + [3993]={ + ["distance"]=23953, + ["mine_stage"]=49 + }, + [3994]={ + ["distance"]=23959, + ["mine_stage"]=59 + }, + [3995]={ + ["distance"]=23965, + ["mine_stage"]=24 + }, + [3996]={ + ["distance"]=23971, + ["mine_stage"]=59 + }, + [3997]={ + ["distance"]=23977, + ["mine_stage"]=55 + }, + [3998]={ + ["distance"]=23983, + ["mine_stage"]=26 + }, + [3999]={ + ["distance"]=23989, + ["mine_stage"]=32 + }, + [4000]={ + ["distance"]=23995, + ["mine_stage"]=22 + }, + [4001]={ + ["distance"]=24001, + ["mine_stage"]=64 + }, + [4002]={ + ["distance"]=24007, + ["mine_stage"]=58 + }, + [4003]={ + ["distance"]=24013, + ["mine_stage"]=24 + }, + [4004]={ + ["distance"]=24019, + ["mine_stage"]=27 + }, + [4005]={ + ["distance"]=24025, + ["mine_stage"]=47 + }, + [4006]={ + ["distance"]=24031, + ["mine_stage"]=9 + }, + [4007]={ + ["distance"]=24037, + ["mine_stage"]=58 + }, + [4008]={ + ["distance"]=24043, + ["mine_stage"]=50 + }, + [4009]={ + ["distance"]=24049, + ["mine_stage"]=38 + }, + [4010]={ + ["distance"]=24055, + ["mine_stage"]=12 + }, + [4011]={ + ["distance"]=24061, + ["mine_stage"]=37 + }, + [4012]={ + ["distance"]=24067, + ["mine_stage"]=13 + }, + [4013]={ + ["distance"]=24073, + ["mine_stage"]=51 + }, + [4014]={ + ["distance"]=24079, + ["mine_stage"]=23 + }, + [4015]={ + ["distance"]=24085, + ["mine_stage"]=18 + }, + [4016]={ + ["distance"]=24091, + ["mine_stage"]=40 + }, + [4017]={ + ["distance"]=24097, + ["mine_stage"]=55 + }, + [4018]={ + ["distance"]=24103, + ["mine_stage"]=16 + }, + [4019]={ + ["distance"]=24109, + ["mine_stage"]=32 + }, + [4020]={ + ["distance"]=24115, + ["mine_stage"]=52 + }, + [4021]={ + ["distance"]=24121, + ["mine_stage"]=18 + }, + [4022]={ + ["distance"]=24127, + ["mine_stage"]=17 + }, + [4023]={ + ["distance"]=24133, + ["mine_stage"]=3 + }, + [4024]={ + ["distance"]=24139, + ["mine_stage"]=6 + }, + [4025]={ + ["distance"]=24145, + ["mine_stage"]=17 + }, + [4026]={ + ["distance"]=24151, + ["mine_stage"]=10 + }, + [4027]={ + ["distance"]=24157, + ["mine_stage"]=52 + }, + [4028]={ + ["distance"]=24163, + ["mine_stage"]=23 + }, + [4029]={ + ["distance"]=24169, + ["mine_stage"]=17 + }, + [4030]={ + ["distance"]=24175, + ["mine_stage"]=51 + }, + [4031]={ + ["distance"]=24181, + ["mine_stage"]=52 + }, + [4032]={ + ["distance"]=24187, + ["mine_stage"]=48 + }, + [4033]={ + ["distance"]=24193, + ["mine_stage"]=55 + }, + [4034]={ + ["distance"]=24199, + ["mine_stage"]=16 + }, + [4035]={ + ["distance"]=24205, + ["mine_stage"]=7 + }, + [4036]={ + ["distance"]=24211, + ["mine_stage"]=13 + }, + [4037]={ + ["distance"]=24217, + ["mine_stage"]=15 + }, + [4038]={ + ["distance"]=24223, + ["mine_stage"]=49 + }, + [4039]={ + ["distance"]=24229, + ["mine_stage"]=20 + }, + [4040]={ + ["distance"]=24235, + ["mine_stage"]=21 + }, + [4041]={ + ["distance"]=24241, + ["mine_stage"]=59 + }, + [4042]={ + ["distance"]=24247, + ["mine_stage"]=22 + }, + [4043]={ + ["distance"]=24253, + ["mine_stage"]=4 + }, + [4044]={ + ["distance"]=24259, + ["mine_stage"]=57 + }, + [4045]={ + ["distance"]=24265, + ["mine_stage"]=20 + }, + [4046]={ + ["distance"]=24271, + ["mine_stage"]=53 + }, + [4047]={ + ["distance"]=24277, + ["mine_stage"]=5 + }, + [4048]={ + ["distance"]=24283, + ["mine_stage"]=29 + }, + [4049]={ + ["distance"]=24289, + ["mine_stage"]=50 + }, + [4050]={ + ["distance"]=24295, + ["mine_stage"]=27 + }, + [4051]={ + ["distance"]=24301, + ["mine_stage"]=67 + }, + [4052]={ + ["distance"]=24307, + ["mine_stage"]=21 + }, + [4053]={ + ["distance"]=24313, + ["mine_stage"]=1 + }, + [4054]={ + ["distance"]=24319, + ["mine_stage"]=34 + }, + [4055]={ + ["distance"]=24325, + ["mine_stage"]=12 + }, + [4056]={ + ["distance"]=24331, + ["mine_stage"]=59 + }, + [4057]={ + ["distance"]=24337, + ["mine_stage"]=24 + }, + [4058]={ + ["distance"]=24343, + ["mine_stage"]=13 + }, + [4059]={ + ["distance"]=24349, + ["mine_stage"]=14 + }, + [4060]={ + ["distance"]=24355, + ["mine_stage"]=19 + }, + [4061]={ + ["distance"]=24361, + ["mine_stage"]=56 + }, + [4062]={ + ["distance"]=24367, + ["mine_stage"]=36 + }, + [4063]={ + ["distance"]=24373, + ["mine_stage"]=24 + }, + [4064]={ + ["distance"]=24379, + ["mine_stage"]=52 + }, + [4065]={ + ["distance"]=24385, + ["mine_stage"]=39 + }, + [4066]={ + ["distance"]=24391, + ["mine_stage"]=42 + }, + [4067]={ + ["distance"]=24397, + ["mine_stage"]=22 + }, + [4068]={ + ["distance"]=24403, + ["mine_stage"]=24 + }, + [4069]={ + ["distance"]=24409, + ["mine_stage"]=10 + }, + [4070]={ + ["distance"]=24415, + ["mine_stage"]=4 + }, + [4071]={ + ["distance"]=24421, + ["mine_stage"]=30 + }, + [4072]={ + ["distance"]=24427, + ["mine_stage"]=7 + }, + [4073]={ + ["distance"]=24433, + ["mine_stage"]=3 + }, + [4074]={ + ["distance"]=24439, + ["mine_stage"]=6 + }, + [4075]={ + ["distance"]=24445, + ["mine_stage"]=28 + }, + [4076]={ + ["distance"]=24451, + ["mine_stage"]=18 + }, + [4077]={ + ["distance"]=24457, + ["mine_stage"]=43 + }, + [4078]={ + ["distance"]=24463, + ["mine_stage"]=16 + }, + [4079]={ + ["distance"]=24469, + ["mine_stage"]=47 + }, + [4080]={ + ["distance"]=24475, + ["mine_stage"]=58 + }, + [4081]={ + ["distance"]=24481, + ["mine_stage"]=46 + }, + [4082]={ + ["distance"]=24487, + ["mine_stage"]=41 + }, + [4083]={ + ["distance"]=24493, + ["mine_stage"]=53 + }, + [4084]={ + ["distance"]=24499, + ["mine_stage"]=3 + }, + [4085]={ + ["distance"]=24505, + ["mine_stage"]=25 + }, + [4086]={ + ["distance"]=24511, + ["mine_stage"]=26 + }, + [4087]={ + ["distance"]=24517, + ["mine_stage"]=13 + }, + [4088]={ + ["distance"]=24523, + ["mine_stage"]=14 + }, + [4089]={ + ["distance"]=24529, + ["mine_stage"]=45 + }, + [4090]={ + ["distance"]=24535, + ["mine_stage"]=59 + }, + [4091]={ + ["distance"]=24541, + ["mine_stage"]=11 + }, + [4092]={ + ["distance"]=24547, + ["mine_stage"]=32 + }, + [4093]={ + ["distance"]=24553, + ["mine_stage"]=40 + }, + [4094]={ + ["distance"]=24559, + ["mine_stage"]=6 + }, + [4095]={ + ["distance"]=24565, + ["mine_stage"]=34 + }, + [4096]={ + ["distance"]=24571, + ["mine_stage"]=15 + }, + [4097]={ + ["distance"]=24577, + ["mine_stage"]=49 + }, + [4098]={ + ["distance"]=24583, + ["mine_stage"]=59 + }, + [4099]={ + ["distance"]=24589, + ["mine_stage"]=58 + }, + [4100]={ + ["distance"]=24595, + ["mine_stage"]=5 + }, + [4101]={ + ["distance"]=24601, + ["mine_stage"]=65 + }, + [4102]={ + ["distance"]=24607, + ["mine_stage"]=55 + }, + [4103]={ + ["distance"]=24613, + ["mine_stage"]=16 + }, + [4104]={ + ["distance"]=24619, + ["mine_stage"]=44 + }, + [4105]={ + ["distance"]=24625, + ["mine_stage"]=45 + }, + [4106]={ + ["distance"]=24631, + ["mine_stage"]=2 + }, + [4107]={ + ["distance"]=24637, + ["mine_stage"]=57 + }, + [4108]={ + ["distance"]=24643, + ["mine_stage"]=22 + }, + [4109]={ + ["distance"]=24649, + ["mine_stage"]=44 + }, + [4110]={ + ["distance"]=24655, + ["mine_stage"]=19 + }, + [4111]={ + ["distance"]=24661, + ["mine_stage"]=56 + }, + [4112]={ + ["distance"]=24667, + ["mine_stage"]=17 + }, + [4113]={ + ["distance"]=24673, + ["mine_stage"]=4 + }, + [4114]={ + ["distance"]=24679, + ["mine_stage"]=53 + }, + [4115]={ + ["distance"]=24685, + ["mine_stage"]=32 + }, + [4116]={ + ["distance"]=24691, + ["mine_stage"]=27 + }, + [4117]={ + ["distance"]=24697, + ["mine_stage"]=30 + }, + [4118]={ + ["distance"]=24703, + ["mine_stage"]=23 + }, + [4119]={ + ["distance"]=24709, + ["mine_stage"]=2 + }, + [4120]={ + ["distance"]=24715, + ["mine_stage"]=57 + }, + [4121]={ + ["distance"]=24721, + ["mine_stage"]=29 + }, + [4122]={ + ["distance"]=24727, + ["mine_stage"]=59 + }, + [4123]={ + ["distance"]=24733, + ["mine_stage"]=40 + }, + [4124]={ + ["distance"]=24739, + ["mine_stage"]=34 + }, + [4125]={ + ["distance"]=24745, + ["mine_stage"]=29 + }, + [4126]={ + ["distance"]=24751, + ["mine_stage"]=52 + }, + [4127]={ + ["distance"]=24757, + ["mine_stage"]=36 + }, + [4128]={ + ["distance"]=24763, + ["mine_stage"]=15 + }, + [4129]={ + ["distance"]=24769, + ["mine_stage"]=16 + }, + [4130]={ + ["distance"]=24775, + ["mine_stage"]=45 + }, + [4131]={ + ["distance"]=24781, + ["mine_stage"]=29 + }, + [4132]={ + ["distance"]=24787, + ["mine_stage"]=39 + }, + [4133]={ + ["distance"]=24793, + ["mine_stage"]=58 + }, + [4134]={ + ["distance"]=24799, + ["mine_stage"]=55 + }, + [4135]={ + ["distance"]=24805, + ["mine_stage"]=44 + }, + [4136]={ + ["distance"]=24811, + ["mine_stage"]=1 + }, + [4137]={ + ["distance"]=24817, + ["mine_stage"]=52 + }, + [4138]={ + ["distance"]=24823, + ["mine_stage"]=43 + }, + [4139]={ + ["distance"]=24829, + ["mine_stage"]=9 + }, + [4140]={ + ["distance"]=24835, + ["mine_stage"]=5 + }, + [4141]={ + ["distance"]=24841, + ["mine_stage"]=58 + }, + [4142]={ + ["distance"]=24847, + ["mine_stage"]=36 + }, + [4143]={ + ["distance"]=24853, + ["mine_stage"]=43 + }, + [4144]={ + ["distance"]=24859, + ["mine_stage"]=45 + }, + [4145]={ + ["distance"]=24865, + ["mine_stage"]=3 + }, + [4146]={ + ["distance"]=24871, + ["mine_stage"]=9 + }, + [4147]={ + ["distance"]=24877, + ["mine_stage"]=37 + }, + [4148]={ + ["distance"]=24883, + ["mine_stage"]=31 + }, + [4149]={ + ["distance"]=24889, + ["mine_stage"]=59 + }, + [4150]={ + ["distance"]=24895, + ["mine_stage"]=36 + }, + [4151]={ + ["distance"]=24901, + ["mine_stage"]=68 + }, + [4152]={ + ["distance"]=24907, + ["mine_stage"]=27 + }, + [4153]={ + ["distance"]=24913, + ["mine_stage"]=34 + }, + [4154]={ + ["distance"]=24919, + ["mine_stage"]=26 + }, + [4155]={ + ["distance"]=24925, + ["mine_stage"]=55 + }, + [4156]={ + ["distance"]=24931, + ["mine_stage"]=14 + }, + [4157]={ + ["distance"]=24937, + ["mine_stage"]=22 + }, + [4158]={ + ["distance"]=24943, + ["mine_stage"]=21 + }, + [4159]={ + ["distance"]=24949, + ["mine_stage"]=14 + }, + [4160]={ + ["distance"]=24955, + ["mine_stage"]=13 + }, + [4161]={ + ["distance"]=24961, + ["mine_stage"]=25 + }, + [4162]={ + ["distance"]=24967, + ["mine_stage"]=41 + }, + [4163]={ + ["distance"]=24973, + ["mine_stage"]=22 + }, + [4164]={ + ["distance"]=24979, + ["mine_stage"]=33 + }, + [4165]={ + ["distance"]=24985, + ["mine_stage"]=43 + }, + [4166]={ + ["distance"]=24991, + ["mine_stage"]=34 + }, + [4167]={ + ["distance"]=24997, + ["mine_stage"]=9 + }, + [4168]={ + ["distance"]=25003, + ["mine_stage"]=9 + }, + [4169]={ + ["distance"]=25009, + ["mine_stage"]=58 + }, + [4170]={ + ["distance"]=25015, + ["mine_stage"]=29 + }, + [4171]={ + ["distance"]=25021, + ["mine_stage"]=30 + }, + [4172]={ + ["distance"]=25027, + ["mine_stage"]=60 + }, + [4173]={ + ["distance"]=25033, + ["mine_stage"]=59 + }, + [4174]={ + ["distance"]=25039, + ["mine_stage"]=23 + }, + [4175]={ + ["distance"]=25045, + ["mine_stage"]=34 + }, + [4176]={ + ["distance"]=25051, + ["mine_stage"]=26 + }, + [4177]={ + ["distance"]=25057, + ["mine_stage"]=24 + }, + [4178]={ + ["distance"]=25063, + ["mine_stage"]=12 + }, + [4179]={ + ["distance"]=25069, + ["mine_stage"]=51 + }, + [4180]={ + ["distance"]=25075, + ["mine_stage"]=41 + }, + [4181]={ + ["distance"]=25081, + ["mine_stage"]=24 + }, + [4182]={ + ["distance"]=25087, + ["mine_stage"]=57 + }, + [4183]={ + ["distance"]=25093, + ["mine_stage"]=42 + }, + [4184]={ + ["distance"]=25099, + ["mine_stage"]=14 + }, + [4185]={ + ["distance"]=25105, + ["mine_stage"]=1 + }, + [4186]={ + ["distance"]=25111, + ["mine_stage"]=42 + }, + [4187]={ + ["distance"]=25117, + ["mine_stage"]=28 + }, + [4188]={ + ["distance"]=25123, + ["mine_stage"]=49 + }, + [4189]={ + ["distance"]=25129, + ["mine_stage"]=32 + }, + [4190]={ + ["distance"]=25135, + ["mine_stage"]=14 + }, + [4191]={ + ["distance"]=25141, + ["mine_stage"]=55 + }, + [4192]={ + ["distance"]=25147, + ["mine_stage"]=10 + }, + [4193]={ + ["distance"]=25153, + ["mine_stage"]=11 + }, + [4194]={ + ["distance"]=25159, + ["mine_stage"]=33 + }, + [4195]={ + ["distance"]=25165, + ["mine_stage"]=4 + }, + [4196]={ + ["distance"]=25171, + ["mine_stage"]=37 + }, + [4197]={ + ["distance"]=25177, + ["mine_stage"]=17 + }, + [4198]={ + ["distance"]=25183, + ["mine_stage"]=27 + }, + [4199]={ + ["distance"]=25189, + ["mine_stage"]=27 + }, + [4200]={ + ["distance"]=25195, + ["mine_stage"]=52 + }, + [4201]={ + ["distance"]=25201, + ["mine_stage"]=66 + }, + [4202]={ + ["distance"]=25207, + ["mine_stage"]=34 + }, + [4203]={ + ["distance"]=25213, + ["mine_stage"]=60 + }, + [4204]={ + ["distance"]=25219, + ["mine_stage"]=37 + }, + [4205]={ + ["distance"]=25225, + ["mine_stage"]=37 + }, + [4206]={ + ["distance"]=25231, + ["mine_stage"]=43 + }, + [4207]={ + ["distance"]=25237, + ["mine_stage"]=39 + }, + [4208]={ + ["distance"]=25243, + ["mine_stage"]=6 + }, + [4209]={ + ["distance"]=25249, + ["mine_stage"]=59 + }, + [4210]={ + ["distance"]=25255, + ["mine_stage"]=26 + }, + [4211]={ + ["distance"]=25261, + ["mine_stage"]=50 + }, + [4212]={ + ["distance"]=25267, + ["mine_stage"]=39 + }, + [4213]={ + ["distance"]=25273, + ["mine_stage"]=4 + }, + [4214]={ + ["distance"]=25279, + ["mine_stage"]=3 + }, + [4215]={ + ["distance"]=25285, + ["mine_stage"]=37 + }, + [4216]={ + ["distance"]=25291, + ["mine_stage"]=25 + }, + [4217]={ + ["distance"]=25297, + ["mine_stage"]=4 + }, + [4218]={ + ["distance"]=25303, + ["mine_stage"]=23 + }, + [4219]={ + ["distance"]=25309, + ["mine_stage"]=26 + }, + [4220]={ + ["distance"]=25315, + ["mine_stage"]=19 + }, + [4221]={ + ["distance"]=25321, + ["mine_stage"]=33 + }, + [4222]={ + ["distance"]=25327, + ["mine_stage"]=51 + }, + [4223]={ + ["distance"]=25333, + ["mine_stage"]=12 + }, + [4224]={ + ["distance"]=25339, + ["mine_stage"]=38 + }, + [4225]={ + ["distance"]=25345, + ["mine_stage"]=20 + }, + [4226]={ + ["distance"]=25351, + ["mine_stage"]=46 + }, + [4227]={ + ["distance"]=25357, + ["mine_stage"]=14 + }, + [4228]={ + ["distance"]=25363, + ["mine_stage"]=20 + }, + [4229]={ + ["distance"]=25369, + ["mine_stage"]=7 + }, + [4230]={ + ["distance"]=25375, + ["mine_stage"]=46 + }, + [4231]={ + ["distance"]=25381, + ["mine_stage"]=9 + }, + [4232]={ + ["distance"]=25387, + ["mine_stage"]=55 + }, + [4233]={ + ["distance"]=25393, + ["mine_stage"]=49 + }, + [4234]={ + ["distance"]=25399, + ["mine_stage"]=60 + }, + [4235]={ + ["distance"]=25405, + ["mine_stage"]=34 + }, + [4236]={ + ["distance"]=25411, + ["mine_stage"]=4 + }, + [4237]={ + ["distance"]=25417, + ["mine_stage"]=43 + }, + [4238]={ + ["distance"]=25423, + ["mine_stage"]=18 + }, + [4239]={ + ["distance"]=25429, + ["mine_stage"]=27 + }, + [4240]={ + ["distance"]=25435, + ["mine_stage"]=40 + }, + [4241]={ + ["distance"]=25441, + ["mine_stage"]=27 + }, + [4242]={ + ["distance"]=25447, + ["mine_stage"]=45 + }, + [4243]={ + ["distance"]=25453, + ["mine_stage"]=58 + }, + [4244]={ + ["distance"]=25459, + ["mine_stage"]=26 + }, + [4245]={ + ["distance"]=25465, + ["mine_stage"]=32 + }, + [4246]={ + ["distance"]=25471, + ["mine_stage"]=40 + }, + [4247]={ + ["distance"]=25477, + ["mine_stage"]=19 + }, + [4248]={ + ["distance"]=25483, + ["mine_stage"]=43 + }, + [4249]={ + ["distance"]=25489, + ["mine_stage"]=54 + }, + [4250]={ + ["distance"]=25495, + ["mine_stage"]=10 + }, + [4251]={ + ["distance"]=25501, + ["mine_stage"]=69 + }, + [4252]={ + ["distance"]=25507, + ["mine_stage"]=22 + }, + [4253]={ + ["distance"]=25513, + ["mine_stage"]=12 + }, + [4254]={ + ["distance"]=25519, + ["mine_stage"]=39 + }, + [4255]={ + ["distance"]=25525, + ["mine_stage"]=14 + }, + [4256]={ + ["distance"]=25531, + ["mine_stage"]=26 + }, + [4257]={ + ["distance"]=25537, + ["mine_stage"]=39 + }, + [4258]={ + ["distance"]=25543, + ["mine_stage"]=28 + }, + [4259]={ + ["distance"]=25549, + ["mine_stage"]=54 + }, + [4260]={ + ["distance"]=25555, + ["mine_stage"]=43 + }, + [4261]={ + ["distance"]=25561, + ["mine_stage"]=5 + }, + [4262]={ + ["distance"]=25567, + ["mine_stage"]=56 + }, + [4263]={ + ["distance"]=25573, + ["mine_stage"]=58 + }, + [4264]={ + ["distance"]=25579, + ["mine_stage"]=57 + }, + [4265]={ + ["distance"]=25585, + ["mine_stage"]=51 + }, + [4266]={ + ["distance"]=25591, + ["mine_stage"]=42 + }, + [4267]={ + ["distance"]=25597, + ["mine_stage"]=46 + }, + [4268]={ + ["distance"]=25603, + ["mine_stage"]=36 + }, + [4269]={ + ["distance"]=25609, + ["mine_stage"]=59 + }, + [4270]={ + ["distance"]=25615, + ["mine_stage"]=19 + }, + [4271]={ + ["distance"]=25621, + ["mine_stage"]=18 + }, + [4272]={ + ["distance"]=25627, + ["mine_stage"]=56 + }, + [4273]={ + ["distance"]=25633, + ["mine_stage"]=59 + }, + [4274]={ + ["distance"]=25639, + ["mine_stage"]=10 + }, + [4275]={ + ["distance"]=25645, + ["mine_stage"]=13 + }, + [4276]={ + ["distance"]=25651, + ["mine_stage"]=18 + }, + [4277]={ + ["distance"]=25657, + ["mine_stage"]=52 + }, + [4278]={ + ["distance"]=25663, + ["mine_stage"]=22 + }, + [4279]={ + ["distance"]=25669, + ["mine_stage"]=46 + }, + [4280]={ + ["distance"]=25675, + ["mine_stage"]=30 + }, + [4281]={ + ["distance"]=25681, + ["mine_stage"]=38 + }, + [4282]={ + ["distance"]=25687, + ["mine_stage"]=5 + }, + [4283]={ + ["distance"]=25693, + ["mine_stage"]=28 + }, + [4284]={ + ["distance"]=25699, + ["mine_stage"]=28 + }, + [4285]={ + ["distance"]=25705, + ["mine_stage"]=14 + }, + [4286]={ + ["distance"]=25711, + ["mine_stage"]=48 + }, + [4287]={ + ["distance"]=25717, + ["mine_stage"]=4 + }, + [4288]={ + ["distance"]=25723, + ["mine_stage"]=17 + }, + [4289]={ + ["distance"]=25729, + ["mine_stage"]=21 + }, + [4290]={ + ["distance"]=25735, + ["mine_stage"]=3 + }, + [4291]={ + ["distance"]=25741, + ["mine_stage"]=25 + }, + [4292]={ + ["distance"]=25747, + ["mine_stage"]=25 + }, + [4293]={ + ["distance"]=25753, + ["mine_stage"]=34 + }, + [4294]={ + ["distance"]=25759, + ["mine_stage"]=51 + }, + [4295]={ + ["distance"]=25765, + ["mine_stage"]=35 + }, + [4296]={ + ["distance"]=25771, + ["mine_stage"]=1 + }, + [4297]={ + ["distance"]=25777, + ["mine_stage"]=37 + }, + [4298]={ + ["distance"]=25783, + ["mine_stage"]=31 + }, + [4299]={ + ["distance"]=25789, + ["mine_stage"]=52 + }, + [4300]={ + ["distance"]=25795, + ["mine_stage"]=23 + }, + [4301]={ + ["distance"]=25801, + ["mine_stage"]=64 + }, + [4302]={ + ["distance"]=25807, + ["mine_stage"]=2 + }, + [4303]={ + ["distance"]=25813, + ["mine_stage"]=33 + }, + [4304]={ + ["distance"]=25819, + ["mine_stage"]=26 + }, + [4305]={ + ["distance"]=25825, + ["mine_stage"]=20 + }, + [4306]={ + ["distance"]=25831, + ["mine_stage"]=11 + }, + [4307]={ + ["distance"]=25837, + ["mine_stage"]=55 + }, + [4308]={ + ["distance"]=25843, + ["mine_stage"]=55 + }, + [4309]={ + ["distance"]=25849, + ["mine_stage"]=24 + }, + [4310]={ + ["distance"]=25855, + ["mine_stage"]=14 + }, + [4311]={ + ["distance"]=25861, + ["mine_stage"]=42 + }, + [4312]={ + ["distance"]=25867, + ["mine_stage"]=42 + }, + [4313]={ + ["distance"]=25873, + ["mine_stage"]=43 + }, + [4314]={ + ["distance"]=25879, + ["mine_stage"]=29 + }, + [4315]={ + ["distance"]=25885, + ["mine_stage"]=54 + }, + [4316]={ + ["distance"]=25891, + ["mine_stage"]=7 + }, + [4317]={ + ["distance"]=25897, + ["mine_stage"]=31 + }, + [4318]={ + ["distance"]=25903, + ["mine_stage"]=58 + }, + [4319]={ + ["distance"]=25909, + ["mine_stage"]=31 + }, + [4320]={ + ["distance"]=25915, + ["mine_stage"]=8 + }, + [4321]={ + ["distance"]=25921, + ["mine_stage"]=10 + }, + [4322]={ + ["distance"]=25927, + ["mine_stage"]=53 + }, + [4323]={ + ["distance"]=25933, + ["mine_stage"]=12 + }, + [4324]={ + ["distance"]=25939, + ["mine_stage"]=47 + }, + [4325]={ + ["distance"]=25945, + ["mine_stage"]=19 + }, + [4326]={ + ["distance"]=25951, + ["mine_stage"]=51 + }, + [4327]={ + ["distance"]=25957, + ["mine_stage"]=30 + }, + [4328]={ + ["distance"]=25963, + ["mine_stage"]=20 + }, + [4329]={ + ["distance"]=25969, + ["mine_stage"]=7 + }, + [4330]={ + ["distance"]=25975, + ["mine_stage"]=39 + }, + [4331]={ + ["distance"]=25981, + ["mine_stage"]=28 + }, + [4332]={ + ["distance"]=25987, + ["mine_stage"]=24 + }, + [4333]={ + ["distance"]=25993, + ["mine_stage"]=2 + }, + [4334]={ + ["distance"]=25999, + ["mine_stage"]=34 + }, + [4335]={ + ["distance"]=26005, + ["mine_stage"]=48 + }, + [4336]={ + ["distance"]=26011, + ["mine_stage"]=21 + }, + [4337]={ + ["distance"]=26017, + ["mine_stage"]=44 + }, + [4338]={ + ["distance"]=26023, + ["mine_stage"]=13 + }, + [4339]={ + ["distance"]=26029, + ["mine_stage"]=47 + }, + [4340]={ + ["distance"]=26035, + ["mine_stage"]=34 + }, + [4341]={ + ["distance"]=26041, + ["mine_stage"]=19 + }, + [4342]={ + ["distance"]=26047, + ["mine_stage"]=19 + }, + [4343]={ + ["distance"]=26053, + ["mine_stage"]=6 + }, + [4344]={ + ["distance"]=26059, + ["mine_stage"]=40 + }, + [4345]={ + ["distance"]=26065, + ["mine_stage"]=6 + }, + [4346]={ + ["distance"]=26071, + ["mine_stage"]=46 + }, + [4347]={ + ["distance"]=26077, + ["mine_stage"]=52 + }, + [4348]={ + ["distance"]=26083, + ["mine_stage"]=23 + }, + [4349]={ + ["distance"]=26089, + ["mine_stage"]=2 + }, + [4350]={ + ["distance"]=26095, + ["mine_stage"]=56 + }, + [4351]={ + ["distance"]=26101, + ["mine_stage"]=67 + }, + [4352]={ + ["distance"]=26107, + ["mine_stage"]=14 + }, + [4353]={ + ["distance"]=26113, + ["mine_stage"]=9 + }, + [4354]={ + ["distance"]=26119, + ["mine_stage"]=19 + }, + [4355]={ + ["distance"]=26125, + ["mine_stage"]=43 + }, + [4356]={ + ["distance"]=26131, + ["mine_stage"]=6 + }, + [4357]={ + ["distance"]=26137, + ["mine_stage"]=48 + }, + [4358]={ + ["distance"]=26143, + ["mine_stage"]=1 + }, + [4359]={ + ["distance"]=26149, + ["mine_stage"]=33 + }, + [4360]={ + ["distance"]=26155, + ["mine_stage"]=3 + }, + [4361]={ + ["distance"]=26161, + ["mine_stage"]=12 + }, + [4362]={ + ["distance"]=26167, + ["mine_stage"]=19 + }, + [4363]={ + ["distance"]=26173, + ["mine_stage"]=31 + }, + [4364]={ + ["distance"]=26179, + ["mine_stage"]=2 + }, + [4365]={ + ["distance"]=26185, + ["mine_stage"]=57 + }, + [4366]={ + ["distance"]=26191, + ["mine_stage"]=14 + }, + [4367]={ + ["distance"]=26197, + ["mine_stage"]=2 + }, + [4368]={ + ["distance"]=26203, + ["mine_stage"]=48 + }, + [4369]={ + ["distance"]=26209, + ["mine_stage"]=44 + }, + [4370]={ + ["distance"]=26215, + ["mine_stage"]=44 + }, + [4371]={ + ["distance"]=26221, + ["mine_stage"]=44 + }, + [4372]={ + ["distance"]=26227, + ["mine_stage"]=41 + }, + [4373]={ + ["distance"]=26233, + ["mine_stage"]=60 + }, + [4374]={ + ["distance"]=26239, + ["mine_stage"]=36 + }, + [4375]={ + ["distance"]=26245, + ["mine_stage"]=6 + }, + [4376]={ + ["distance"]=26251, + ["mine_stage"]=38 + }, + [4377]={ + ["distance"]=26257, + ["mine_stage"]=57 + }, + [4378]={ + ["distance"]=26263, + ["mine_stage"]=39 + }, + [4379]={ + ["distance"]=26269, + ["mine_stage"]=2 + }, + [4380]={ + ["distance"]=26275, + ["mine_stage"]=25 + }, + [4381]={ + ["distance"]=26281, + ["mine_stage"]=12 + }, + [4382]={ + ["distance"]=26287, + ["mine_stage"]=54 + }, + [4383]={ + ["distance"]=26293, + ["mine_stage"]=16 + }, + [4384]={ + ["distance"]=26299, + ["mine_stage"]=49 + }, + [4385]={ + ["distance"]=26305, + ["mine_stage"]=15 + }, + [4386]={ + ["distance"]=26311, + ["mine_stage"]=24 + }, + [4387]={ + ["distance"]=26317, + ["mine_stage"]=12 + }, + [4388]={ + ["distance"]=26323, + ["mine_stage"]=17 + }, + [4389]={ + ["distance"]=26329, + ["mine_stage"]=18 + }, + [4390]={ + ["distance"]=26335, + ["mine_stage"]=14 + }, + [4391]={ + ["distance"]=26341, + ["mine_stage"]=31 + }, + [4392]={ + ["distance"]=26347, + ["mine_stage"]=30 + }, + [4393]={ + ["distance"]=26353, + ["mine_stage"]=3 + }, + [4394]={ + ["distance"]=26359, + ["mine_stage"]=57 + }, + [4395]={ + ["distance"]=26365, + ["mine_stage"]=38 + }, + [4396]={ + ["distance"]=26371, + ["mine_stage"]=6 + }, + [4397]={ + ["distance"]=26377, + ["mine_stage"]=32 + }, + [4398]={ + ["distance"]=26383, + ["mine_stage"]=9 + }, + [4399]={ + ["distance"]=26389, + ["mine_stage"]=55 + }, + [4400]={ + ["distance"]=26395, + ["mine_stage"]=1 + }, + [4401]={ + ["distance"]=26401, + ["mine_stage"]=65 + }, + [4402]={ + ["distance"]=26407, + ["mine_stage"]=14 + }, + [4403]={ + ["distance"]=26413, + ["mine_stage"]=28 + }, + [4404]={ + ["distance"]=26419, + ["mine_stage"]=42 + }, + [4405]={ + ["distance"]=26425, + ["mine_stage"]=16 + }, + [4406]={ + ["distance"]=26431, + ["mine_stage"]=17 + }, + [4407]={ + ["distance"]=26437, + ["mine_stage"]=21 + }, + [4408]={ + ["distance"]=26443, + ["mine_stage"]=28 + }, + [4409]={ + ["distance"]=26449, + ["mine_stage"]=50 + }, + [4410]={ + ["distance"]=26455, + ["mine_stage"]=39 + }, + [4411]={ + ["distance"]=26461, + ["mine_stage"]=27 + }, + [4412]={ + ["distance"]=26467, + ["mine_stage"]=56 + }, + [4413]={ + ["distance"]=26473, + ["mine_stage"]=20 + }, + [4414]={ + ["distance"]=26479, + ["mine_stage"]=8 + }, + [4415]={ + ["distance"]=26485, + ["mine_stage"]=12 + }, + [4416]={ + ["distance"]=26491, + ["mine_stage"]=18 + }, + [4417]={ + ["distance"]=26497, + ["mine_stage"]=48 + }, + [4418]={ + ["distance"]=26503, + ["mine_stage"]=16 + }, + [4419]={ + ["distance"]=26509, + ["mine_stage"]=24 + }, + [4420]={ + ["distance"]=26515, + ["mine_stage"]=18 + }, + [4421]={ + ["distance"]=26521, + ["mine_stage"]=43 + }, + [4422]={ + ["distance"]=26527, + ["mine_stage"]=55 + }, + [4423]={ + ["distance"]=26533, + ["mine_stage"]=6 + }, + [4424]={ + ["distance"]=26539, + ["mine_stage"]=55 + }, + [4425]={ + ["distance"]=26545, + ["mine_stage"]=9 + }, + [4426]={ + ["distance"]=26551, + ["mine_stage"]=33 + }, + [4427]={ + ["distance"]=26557, + ["mine_stage"]=58 + }, + [4428]={ + ["distance"]=26563, + ["mine_stage"]=55 + }, + [4429]={ + ["distance"]=26569, + ["mine_stage"]=22 + }, + [4430]={ + ["distance"]=26575, + ["mine_stage"]=25 + }, + [4431]={ + ["distance"]=26581, + ["mine_stage"]=31 + }, + [4432]={ + ["distance"]=26587, + ["mine_stage"]=33 + }, + [4433]={ + ["distance"]=26593, + ["mine_stage"]=6 + }, + [4434]={ + ["distance"]=26599, + ["mine_stage"]=54 + }, + [4435]={ + ["distance"]=26605, + ["mine_stage"]=4 + }, + [4436]={ + ["distance"]=26611, + ["mine_stage"]=37 + }, + [4437]={ + ["distance"]=26617, + ["mine_stage"]=45 + }, + [4438]={ + ["distance"]=26623, + ["mine_stage"]=47 + }, + [4439]={ + ["distance"]=26629, + ["mine_stage"]=47 + }, + [4440]={ + ["distance"]=26635, + ["mine_stage"]=57 + }, + [4441]={ + ["distance"]=26641, + ["mine_stage"]=21 + }, + [4442]={ + ["distance"]=26647, + ["mine_stage"]=2 + }, + [4443]={ + ["distance"]=26653, + ["mine_stage"]=34 + }, + [4444]={ + ["distance"]=26659, + ["mine_stage"]=59 + }, + [4445]={ + ["distance"]=26665, + ["mine_stage"]=38 + }, + [4446]={ + ["distance"]=26671, + ["mine_stage"]=1 + }, + [4447]={ + ["distance"]=26677, + ["mine_stage"]=56 + }, + [4448]={ + ["distance"]=26683, + ["mine_stage"]=47 + }, + [4449]={ + ["distance"]=26689, + ["mine_stage"]=45 + }, + [4450]={ + ["distance"]=26695, + ["mine_stage"]=45 + }, + [4451]={ + ["distance"]=26701, + ["mine_stage"]=68 + }, + [4452]={ + ["distance"]=26707, + ["mine_stage"]=21 + }, + [4453]={ + ["distance"]=26713, + ["mine_stage"]=23 + }, + [4454]={ + ["distance"]=26719, + ["mine_stage"]=59 + }, + [4455]={ + ["distance"]=26725, + ["mine_stage"]=10 + }, + [4456]={ + ["distance"]=26731, + ["mine_stage"]=46 + }, + [4457]={ + ["distance"]=26737, + ["mine_stage"]=57 + }, + [4458]={ + ["distance"]=26743, + ["mine_stage"]=2 + }, + [4459]={ + ["distance"]=26749, + ["mine_stage"]=7 + }, + [4460]={ + ["distance"]=26755, + ["mine_stage"]=21 + }, + [4461]={ + ["distance"]=26761, + ["mine_stage"]=9 + }, + [4462]={ + ["distance"]=26767, + ["mine_stage"]=42 + }, + [4463]={ + ["distance"]=26773, + ["mine_stage"]=12 + }, + [4464]={ + ["distance"]=26779, + ["mine_stage"]=23 + }, + [4465]={ + ["distance"]=26785, + ["mine_stage"]=17 + }, + [4466]={ + ["distance"]=26791, + ["mine_stage"]=21 + }, + [4467]={ + ["distance"]=26797, + ["mine_stage"]=21 + }, + [4468]={ + ["distance"]=26803, + ["mine_stage"]=7 + }, + [4469]={ + ["distance"]=26809, + ["mine_stage"]=18 + }, + [4470]={ + ["distance"]=26815, + ["mine_stage"]=12 + }, + [4471]={ + ["distance"]=26821, + ["mine_stage"]=25 + }, + [4472]={ + ["distance"]=26827, + ["mine_stage"]=52 + }, + [4473]={ + ["distance"]=26833, + ["mine_stage"]=43 + }, + [4474]={ + ["distance"]=26839, + ["mine_stage"]=24 + }, + [4475]={ + ["distance"]=26845, + ["mine_stage"]=6 + }, + [4476]={ + ["distance"]=26851, + ["mine_stage"]=51 + }, + [4477]={ + ["distance"]=26857, + ["mine_stage"]=11 + }, + [4478]={ + ["distance"]=26863, + ["mine_stage"]=34 + }, + [4479]={ + ["distance"]=26869, + ["mine_stage"]=56 + }, + [4480]={ + ["distance"]=26875, + ["mine_stage"]=18 + }, + [4481]={ + ["distance"]=26881, + ["mine_stage"]=35 + }, + [4482]={ + ["distance"]=26887, + ["mine_stage"]=30 + }, + [4483]={ + ["distance"]=26893, + ["mine_stage"]=38 + }, + [4484]={ + ["distance"]=26899, + ["mine_stage"]=31 + }, + [4485]={ + ["distance"]=26905, + ["mine_stage"]=29 + }, + [4486]={ + ["distance"]=26911, + ["mine_stage"]=47 + }, + [4487]={ + ["distance"]=26917, + ["mine_stage"]=33 + }, + [4488]={ + ["distance"]=26923, + ["mine_stage"]=59 + }, + [4489]={ + ["distance"]=26929, + ["mine_stage"]=20 + }, + [4490]={ + ["distance"]=26935, + ["mine_stage"]=6 + }, + [4491]={ + ["distance"]=26941, + ["mine_stage"]=43 + }, + [4492]={ + ["distance"]=26947, + ["mine_stage"]=9 + }, + [4493]={ + ["distance"]=26953, + ["mine_stage"]=52 + }, + [4494]={ + ["distance"]=26959, + ["mine_stage"]=21 + }, + [4495]={ + ["distance"]=26965, + ["mine_stage"]=39 + }, + [4496]={ + ["distance"]=26971, + ["mine_stage"]=53 + }, + [4497]={ + ["distance"]=26977, + ["mine_stage"]=59 + }, + [4498]={ + ["distance"]=26983, + ["mine_stage"]=41 + }, + [4499]={ + ["distance"]=26989, + ["mine_stage"]=20 + }, + [4500]={ + ["distance"]=26995, + ["mine_stage"]=37 + }, + [4501]={ + ["distance"]=27001, + ["mine_stage"]=66 + }, + [4502]={ + ["distance"]=27007, + ["mine_stage"]=35 + }, + [4503]={ + ["distance"]=27013, + ["mine_stage"]=24 + }, + [4504]={ + ["distance"]=27019, + ["mine_stage"]=44 + }, + [4505]={ + ["distance"]=27025, + ["mine_stage"]=12 + }, + [4506]={ + ["distance"]=27031, + ["mine_stage"]=7 + }, + [4507]={ + ["distance"]=27037, + ["mine_stage"]=31 + }, + [4508]={ + ["distance"]=27043, + ["mine_stage"]=30 + }, + [4509]={ + ["distance"]=27049, + ["mine_stage"]=34 + }, + [4510]={ + ["distance"]=27055, + ["mine_stage"]=35 + }, + [4511]={ + ["distance"]=27061, + ["mine_stage"]=46 + }, + [4512]={ + ["distance"]=27067, + ["mine_stage"]=16 + }, + [4513]={ + ["distance"]=27073, + ["mine_stage"]=60 + }, + [4514]={ + ["distance"]=27079, + ["mine_stage"]=25 + }, + [4515]={ + ["distance"]=27085, + ["mine_stage"]=30 + }, + [4516]={ + ["distance"]=27091, + ["mine_stage"]=1 + }, + [4517]={ + ["distance"]=27097, + ["mine_stage"]=4 + }, + [4518]={ + ["distance"]=27103, + ["mine_stage"]=5 + }, + [4519]={ + ["distance"]=27109, + ["mine_stage"]=8 + }, + [4520]={ + ["distance"]=27115, + ["mine_stage"]=13 + }, + [4521]={ + ["distance"]=27121, + ["mine_stage"]=52 + }, + [4522]={ + ["distance"]=27127, + ["mine_stage"]=60 + }, + [4523]={ + ["distance"]=27133, + ["mine_stage"]=59 + }, + [4524]={ + ["distance"]=27139, + ["mine_stage"]=28 + }, + [4525]={ + ["distance"]=27145, + ["mine_stage"]=33 + }, + [4526]={ + ["distance"]=27151, + ["mine_stage"]=51 + }, + [4527]={ + ["distance"]=27157, + ["mine_stage"]=18 + }, + [4528]={ + ["distance"]=27163, + ["mine_stage"]=22 + }, + [4529]={ + ["distance"]=27169, + ["mine_stage"]=39 + }, + [4530]={ + ["distance"]=27175, + ["mine_stage"]=27 + }, + [4531]={ + ["distance"]=27181, + ["mine_stage"]=35 + }, + [4532]={ + ["distance"]=27187, + ["mine_stage"]=27 + }, + [4533]={ + ["distance"]=27193, + ["mine_stage"]=2 + }, + [4534]={ + ["distance"]=27199, + ["mine_stage"]=23 + }, + [4535]={ + ["distance"]=27205, + ["mine_stage"]=47 + }, + [4536]={ + ["distance"]=27211, + ["mine_stage"]=8 + }, + [4537]={ + ["distance"]=27217, + ["mine_stage"]=44 + }, + [4538]={ + ["distance"]=27223, + ["mine_stage"]=15 + }, + [4539]={ + ["distance"]=27229, + ["mine_stage"]=14 + }, + [4540]={ + ["distance"]=27235, + ["mine_stage"]=55 + }, + [4541]={ + ["distance"]=27241, + ["mine_stage"]=55 + }, + [4542]={ + ["distance"]=27247, + ["mine_stage"]=59 + }, + [4543]={ + ["distance"]=27253, + ["mine_stage"]=57 + }, + [4544]={ + ["distance"]=27259, + ["mine_stage"]=44 + }, + [4545]={ + ["distance"]=27265, + ["mine_stage"]=53 + }, + [4546]={ + ["distance"]=27271, + ["mine_stage"]=21 + }, + [4547]={ + ["distance"]=27277, + ["mine_stage"]=17 + }, + [4548]={ + ["distance"]=27283, + ["mine_stage"]=45 + }, + [4549]={ + ["distance"]=27289, + ["mine_stage"]=6 + }, + [4550]={ + ["distance"]=27295, + ["mine_stage"]=49 + }, + [4551]={ + ["distance"]=27301, + ["mine_stage"]=69 + }, + [4552]={ + ["distance"]=27307, + ["mine_stage"]=11 + }, + [4553]={ + ["distance"]=27313, + ["mine_stage"]=29 + }, + [4554]={ + ["distance"]=27319, + ["mine_stage"]=12 + }, + [4555]={ + ["distance"]=27325, + ["mine_stage"]=7 + }, + [4556]={ + ["distance"]=27331, + ["mine_stage"]=18 + }, + [4557]={ + ["distance"]=27337, + ["mine_stage"]=13 + }, + [4558]={ + ["distance"]=27343, + ["mine_stage"]=37 + }, + [4559]={ + ["distance"]=27349, + ["mine_stage"]=28 + }, + [4560]={ + ["distance"]=27355, + ["mine_stage"]=58 + }, + [4561]={ + ["distance"]=27361, + ["mine_stage"]=53 + }, + [4562]={ + ["distance"]=27367, + ["mine_stage"]=28 + }, + [4563]={ + ["distance"]=27373, + ["mine_stage"]=37 + }, + [4564]={ + ["distance"]=27379, + ["mine_stage"]=56 + }, + [4565]={ + ["distance"]=27385, + ["mine_stage"]=60 + }, + [4566]={ + ["distance"]=27391, + ["mine_stage"]=18 + }, + [4567]={ + ["distance"]=27397, + ["mine_stage"]=21 + }, + [4568]={ + ["distance"]=27403, + ["mine_stage"]=49 + }, + [4569]={ + ["distance"]=27409, + ["mine_stage"]=38 + }, + [4570]={ + ["distance"]=27415, + ["mine_stage"]=28 + }, + [4571]={ + ["distance"]=27421, + ["mine_stage"]=17 + }, + [4572]={ + ["distance"]=27427, + ["mine_stage"]=49 + }, + [4573]={ + ["distance"]=27433, + ["mine_stage"]=45 + }, + [4574]={ + ["distance"]=27439, + ["mine_stage"]=35 + }, + [4575]={ + ["distance"]=27445, + ["mine_stage"]=14 + }, + [4576]={ + ["distance"]=27451, + ["mine_stage"]=14 + }, + [4577]={ + ["distance"]=27457, + ["mine_stage"]=52 + }, + [4578]={ + ["distance"]=27463, + ["mine_stage"]=39 + }, + [4579]={ + ["distance"]=27469, + ["mine_stage"]=54 + }, + [4580]={ + ["distance"]=27475, + ["mine_stage"]=2 + }, + [4581]={ + ["distance"]=27481, + ["mine_stage"]=9 + }, + [4582]={ + ["distance"]=27487, + ["mine_stage"]=17 + }, + [4583]={ + ["distance"]=27493, + ["mine_stage"]=18 + }, + [4584]={ + ["distance"]=27499, + ["mine_stage"]=12 + }, + [4585]={ + ["distance"]=27505, + ["mine_stage"]=27 + }, + [4586]={ + ["distance"]=27511, + ["mine_stage"]=59 + }, + [4587]={ + ["distance"]=27517, + ["mine_stage"]=34 + }, + [4588]={ + ["distance"]=27523, + ["mine_stage"]=12 + }, + [4589]={ + ["distance"]=27529, + ["mine_stage"]=33 + }, + [4590]={ + ["distance"]=27535, + ["mine_stage"]=40 + }, + [4591]={ + ["distance"]=27541, + ["mine_stage"]=7 + }, + [4592]={ + ["distance"]=27547, + ["mine_stage"]=57 + }, + [4593]={ + ["distance"]=27553, + ["mine_stage"]=37 + }, + [4594]={ + ["distance"]=27559, + ["mine_stage"]=46 + }, + [4595]={ + ["distance"]=27565, + ["mine_stage"]=30 + }, + [4596]={ + ["distance"]=27571, + ["mine_stage"]=30 + }, + [4597]={ + ["distance"]=27577, + ["mine_stage"]=4 + }, + [4598]={ + ["distance"]=27583, + ["mine_stage"]=28 + }, + [4599]={ + ["distance"]=27589, + ["mine_stage"]=32 + }, + [4600]={ + ["distance"]=27595, + ["mine_stage"]=51 + }, + [4601]={ + ["distance"]=27601, + ["mine_stage"]=64 + }, + [4602]={ + ["distance"]=27607, + ["mine_stage"]=42 + }, + [4603]={ + ["distance"]=27613, + ["mine_stage"]=46 + }, + [4604]={ + ["distance"]=27619, + ["mine_stage"]=27 + }, + [4605]={ + ["distance"]=27625, + ["mine_stage"]=47 + }, + [4606]={ + ["distance"]=27631, + ["mine_stage"]=18 + }, + [4607]={ + ["distance"]=27637, + ["mine_stage"]=6 + }, + [4608]={ + ["distance"]=27643, + ["mine_stage"]=29 + }, + [4609]={ + ["distance"]=27649, + ["mine_stage"]=22 + }, + [4610]={ + ["distance"]=27655, + ["mine_stage"]=17 + }, + [4611]={ + ["distance"]=27661, + ["mine_stage"]=47 + }, + [4612]={ + ["distance"]=27667, + ["mine_stage"]=35 + }, + [4613]={ + ["distance"]=27673, + ["mine_stage"]=19 + }, + [4614]={ + ["distance"]=27679, + ["mine_stage"]=45 + }, + [4615]={ + ["distance"]=27685, + ["mine_stage"]=46 + }, + [4616]={ + ["distance"]=27691, + ["mine_stage"]=55 + }, + [4617]={ + ["distance"]=27697, + ["mine_stage"]=44 + }, + [4618]={ + ["distance"]=27703, + ["mine_stage"]=29 + }, + [4619]={ + ["distance"]=27709, + ["mine_stage"]=44 + }, + [4620]={ + ["distance"]=27715, + ["mine_stage"]=7 + }, + [4621]={ + ["distance"]=27721, + ["mine_stage"]=7 + }, + [4622]={ + ["distance"]=27727, + ["mine_stage"]=55 + }, + [4623]={ + ["distance"]=27733, + ["mine_stage"]=34 + }, + [4624]={ + ["distance"]=27739, + ["mine_stage"]=6 + }, + [4625]={ + ["distance"]=27745, + ["mine_stage"]=3 + }, + [4626]={ + ["distance"]=27751, + ["mine_stage"]=36 + }, + [4627]={ + ["distance"]=27757, + ["mine_stage"]=52 + }, + [4628]={ + ["distance"]=27763, + ["mine_stage"]=55 + }, + [4629]={ + ["distance"]=27769, + ["mine_stage"]=6 + }, + [4630]={ + ["distance"]=27775, + ["mine_stage"]=40 + }, + [4631]={ + ["distance"]=27781, + ["mine_stage"]=26 + }, + [4632]={ + ["distance"]=27787, + ["mine_stage"]=12 + }, + [4633]={ + ["distance"]=27793, + ["mine_stage"]=60 + }, + [4634]={ + ["distance"]=27799, + ["mine_stage"]=40 + }, + [4635]={ + ["distance"]=27805, + ["mine_stage"]=57 + }, + [4636]={ + ["distance"]=27811, + ["mine_stage"]=29 + }, + [4637]={ + ["distance"]=27817, + ["mine_stage"]=29 + }, + [4638]={ + ["distance"]=27823, + ["mine_stage"]=55 + }, + [4639]={ + ["distance"]=27829, + ["mine_stage"]=27 + }, + [4640]={ + ["distance"]=27835, + ["mine_stage"]=19 + }, + [4641]={ + ["distance"]=27841, + ["mine_stage"]=11 + }, + [4642]={ + ["distance"]=27847, + ["mine_stage"]=43 + }, + [4643]={ + ["distance"]=27853, + ["mine_stage"]=14 + }, + [4644]={ + ["distance"]=27859, + ["mine_stage"]=51 + }, + [4645]={ + ["distance"]=27865, + ["mine_stage"]=5 + }, + [4646]={ + ["distance"]=27871, + ["mine_stage"]=59 + }, + [4647]={ + ["distance"]=27877, + ["mine_stage"]=9 + }, + [4648]={ + ["distance"]=27883, + ["mine_stage"]=22 + }, + [4649]={ + ["distance"]=27889, + ["mine_stage"]=51 + }, + [4650]={ + ["distance"]=27895, + ["mine_stage"]=22 + }, + [4651]={ + ["distance"]=27901, + ["mine_stage"]=67 + }, + [4652]={ + ["distance"]=27907, + ["mine_stage"]=7 + }, + [4653]={ + ["distance"]=27913, + ["mine_stage"]=60 + }, + [4654]={ + ["distance"]=27919, + ["mine_stage"]=12 + }, + [4655]={ + ["distance"]=27925, + ["mine_stage"]=41 + }, + [4656]={ + ["distance"]=27931, + ["mine_stage"]=27 + }, + [4657]={ + ["distance"]=27937, + ["mine_stage"]=6 + }, + [4658]={ + ["distance"]=27943, + ["mine_stage"]=54 + }, + [4659]={ + ["distance"]=27949, + ["mine_stage"]=12 + }, + [4660]={ + ["distance"]=27955, + ["mine_stage"]=43 + }, + [4661]={ + ["distance"]=27961, + ["mine_stage"]=24 + }, + [4662]={ + ["distance"]=27967, + ["mine_stage"]=10 + }, + [4663]={ + ["distance"]=27973, + ["mine_stage"]=43 + }, + [4664]={ + ["distance"]=27979, + ["mine_stage"]=8 + }, + [4665]={ + ["distance"]=27985, + ["mine_stage"]=50 + }, + [4666]={ + ["distance"]=27991, + ["mine_stage"]=28 + }, + [4667]={ + ["distance"]=27997, + ["mine_stage"]=20 + }, + [4668]={ + ["distance"]=28003, + ["mine_stage"]=12 + }, + [4669]={ + ["distance"]=28009, + ["mine_stage"]=18 + }, + [4670]={ + ["distance"]=28015, + ["mine_stage"]=41 + }, + [4671]={ + ["distance"]=28021, + ["mine_stage"]=54 + }, + [4672]={ + ["distance"]=28027, + ["mine_stage"]=47 + }, + [4673]={ + ["distance"]=28033, + ["mine_stage"]=60 + }, + [4674]={ + ["distance"]=28039, + ["mine_stage"]=28 + }, + [4675]={ + ["distance"]=28045, + ["mine_stage"]=57 + }, + [4676]={ + ["distance"]=28051, + ["mine_stage"]=55 + }, + [4677]={ + ["distance"]=28057, + ["mine_stage"]=17 + }, + [4678]={ + ["distance"]=28063, + ["mine_stage"]=55 + }, + [4679]={ + ["distance"]=28069, + ["mine_stage"]=45 + }, + [4680]={ + ["distance"]=28075, + ["mine_stage"]=58 + }, + [4681]={ + ["distance"]=28081, + ["mine_stage"]=11 + }, + [4682]={ + ["distance"]=28087, + ["mine_stage"]=1 + }, + [4683]={ + ["distance"]=28093, + ["mine_stage"]=43 + }, + [4684]={ + ["distance"]=28099, + ["mine_stage"]=34 + }, + [4685]={ + ["distance"]=28105, + ["mine_stage"]=18 + }, + [4686]={ + ["distance"]=28111, + ["mine_stage"]=28 + }, + [4687]={ + ["distance"]=28117, + ["mine_stage"]=7 + }, + [4688]={ + ["distance"]=28123, + ["mine_stage"]=30 + }, + [4689]={ + ["distance"]=28129, + ["mine_stage"]=32 + }, + [4690]={ + ["distance"]=28135, + ["mine_stage"]=18 + }, + [4691]={ + ["distance"]=28141, + ["mine_stage"]=24 + }, + [4692]={ + ["distance"]=28147, + ["mine_stage"]=42 + }, + [4693]={ + ["distance"]=28153, + ["mine_stage"]=1 + }, + [4694]={ + ["distance"]=28159, + ["mine_stage"]=22 + }, + [4695]={ + ["distance"]=28165, + ["mine_stage"]=47 + }, + [4696]={ + ["distance"]=28171, + ["mine_stage"]=12 + }, + [4697]={ + ["distance"]=28177, + ["mine_stage"]=60 + }, + [4698]={ + ["distance"]=28183, + ["mine_stage"]=8 + }, + [4699]={ + ["distance"]=28189, + ["mine_stage"]=42 + }, + [4700]={ + ["distance"]=28195, + ["mine_stage"]=25 + }, + [4701]={ + ["distance"]=28201, + ["mine_stage"]=65 + }, + [4702]={ + ["distance"]=28207, + ["mine_stage"]=39 + }, + [4703]={ + ["distance"]=28213, + ["mine_stage"]=32 + }, + [4704]={ + ["distance"]=28219, + ["mine_stage"]=28 + }, + [4705]={ + ["distance"]=28225, + ["mine_stage"]=53 + }, + [4706]={ + ["distance"]=28231, + ["mine_stage"]=36 + }, + [4707]={ + ["distance"]=28237, + ["mine_stage"]=34 + }, + [4708]={ + ["distance"]=28243, + ["mine_stage"]=28 + }, + [4709]={ + ["distance"]=28249, + ["mine_stage"]=56 + }, + [4710]={ + ["distance"]=28255, + ["mine_stage"]=28 + }, + [4711]={ + ["distance"]=28261, + ["mine_stage"]=50 + }, + [4712]={ + ["distance"]=28267, + ["mine_stage"]=24 + }, + [4713]={ + ["distance"]=28273, + ["mine_stage"]=3 + }, + [4714]={ + ["distance"]=28279, + ["mine_stage"]=43 + }, + [4715]={ + ["distance"]=28285, + ["mine_stage"]=59 + }, + [4716]={ + ["distance"]=28291, + ["mine_stage"]=44 + }, + [4717]={ + ["distance"]=28297, + ["mine_stage"]=37 + }, + [4718]={ + ["distance"]=28303, + ["mine_stage"]=26 + }, + [4719]={ + ["distance"]=28309, + ["mine_stage"]=56 + }, + [4720]={ + ["distance"]=28315, + ["mine_stage"]=38 + }, + [4721]={ + ["distance"]=28321, + ["mine_stage"]=13 + }, + [4722]={ + ["distance"]=28327, + ["mine_stage"]=60 + }, + [4723]={ + ["distance"]=28333, + ["mine_stage"]=29 + }, + [4724]={ + ["distance"]=28339, + ["mine_stage"]=32 + }, + [4725]={ + ["distance"]=28345, + ["mine_stage"]=43 + }, + [4726]={ + ["distance"]=28351, + ["mine_stage"]=50 + }, + [4727]={ + ["distance"]=28357, + ["mine_stage"]=47 + }, + [4728]={ + ["distance"]=28363, + ["mine_stage"]=11 + }, + [4729]={ + ["distance"]=28369, + ["mine_stage"]=25 + }, + [4730]={ + ["distance"]=28375, + ["mine_stage"]=50 + }, + [4731]={ + ["distance"]=28381, + ["mine_stage"]=24 + }, + [4732]={ + ["distance"]=28387, + ["mine_stage"]=5 + }, + [4733]={ + ["distance"]=28393, + ["mine_stage"]=46 + }, + [4734]={ + ["distance"]=28399, + ["mine_stage"]=19 + }, + [4735]={ + ["distance"]=28405, + ["mine_stage"]=3 + }, + [4736]={ + ["distance"]=28411, + ["mine_stage"]=27 + }, + [4737]={ + ["distance"]=28417, + ["mine_stage"]=32 + }, + [4738]={ + ["distance"]=28423, + ["mine_stage"]=13 + }, + [4739]={ + ["distance"]=28429, + ["mine_stage"]=28 + }, + [4740]={ + ["distance"]=28435, + ["mine_stage"]=49 + }, + [4741]={ + ["distance"]=28441, + ["mine_stage"]=55 + }, + [4742]={ + ["distance"]=28447, + ["mine_stage"]=18 + }, + [4743]={ + ["distance"]=28453, + ["mine_stage"]=5 + }, + [4744]={ + ["distance"]=28459, + ["mine_stage"]=22 + }, + [4745]={ + ["distance"]=28465, + ["mine_stage"]=21 + }, + [4746]={ + ["distance"]=28471, + ["mine_stage"]=29 + }, + [4747]={ + ["distance"]=28477, + ["mine_stage"]=42 + }, + [4748]={ + ["distance"]=28483, + ["mine_stage"]=52 + }, + [4749]={ + ["distance"]=28489, + ["mine_stage"]=40 + }, + [4750]={ + ["distance"]=28495, + ["mine_stage"]=18 + }, + [4751]={ + ["distance"]=28501, + ["mine_stage"]=68 + }, + [4752]={ + ["distance"]=28507, + ["mine_stage"]=37 + }, + [4753]={ + ["distance"]=28513, + ["mine_stage"]=39 + }, + [4754]={ + ["distance"]=28519, + ["mine_stage"]=22 + }, + [4755]={ + ["distance"]=28525, + ["mine_stage"]=10 + }, + [4756]={ + ["distance"]=28531, + ["mine_stage"]=15 + }, + [4757]={ + ["distance"]=28537, + ["mine_stage"]=32 + }, + [4758]={ + ["distance"]=28543, + ["mine_stage"]=21 + }, + [4759]={ + ["distance"]=28549, + ["mine_stage"]=38 + }, + [4760]={ + ["distance"]=28555, + ["mine_stage"]=26 + }, + [4761]={ + ["distance"]=28561, + ["mine_stage"]=21 + }, + [4762]={ + ["distance"]=28567, + ["mine_stage"]=32 + }, + [4763]={ + ["distance"]=28573, + ["mine_stage"]=44 + }, + [4764]={ + ["distance"]=28579, + ["mine_stage"]=55 + }, + [4765]={ + ["distance"]=28585, + ["mine_stage"]=52 + }, + [4766]={ + ["distance"]=28591, + ["mine_stage"]=49 + }, + [4767]={ + ["distance"]=28597, + ["mine_stage"]=3 + }, + [4768]={ + ["distance"]=28603, + ["mine_stage"]=26 + }, + [4769]={ + ["distance"]=28609, + ["mine_stage"]=43 + }, + [4770]={ + ["distance"]=28615, + ["mine_stage"]=22 + }, + [4771]={ + ["distance"]=28621, + ["mine_stage"]=5 + }, + [4772]={ + ["distance"]=28627, + ["mine_stage"]=24 + }, + [4773]={ + ["distance"]=28633, + ["mine_stage"]=8 + }, + [4774]={ + ["distance"]=28639, + ["mine_stage"]=16 + }, + [4775]={ + ["distance"]=28645, + ["mine_stage"]=59 + }, + [4776]={ + ["distance"]=28651, + ["mine_stage"]=16 + }, + [4777]={ + ["distance"]=28657, + ["mine_stage"]=10 + }, + [4778]={ + ["distance"]=28663, + ["mine_stage"]=44 + }, + [4779]={ + ["distance"]=28669, + ["mine_stage"]=12 + }, + [4780]={ + ["distance"]=28675, + ["mine_stage"]=12 + }, + [4781]={ + ["distance"]=28681, + ["mine_stage"]=14 + }, + [4782]={ + ["distance"]=28687, + ["mine_stage"]=30 + }, + [4783]={ + ["distance"]=28693, + ["mine_stage"]=35 + }, + [4784]={ + ["distance"]=28699, + ["mine_stage"]=24 + }, + [4785]={ + ["distance"]=28705, + ["mine_stage"]=5 + }, + [4786]={ + ["distance"]=28711, + ["mine_stage"]=52 + }, + [4787]={ + ["distance"]=28717, + ["mine_stage"]=31 + }, + [4788]={ + ["distance"]=28723, + ["mine_stage"]=54 + }, + [4789]={ + ["distance"]=28729, + ["mine_stage"]=59 + }, + [4790]={ + ["distance"]=28735, + ["mine_stage"]=52 + }, + [4791]={ + ["distance"]=28741, + ["mine_stage"]=25 + }, + [4792]={ + ["distance"]=28747, + ["mine_stage"]=24 + }, + [4793]={ + ["distance"]=28753, + ["mine_stage"]=46 + }, + [4794]={ + ["distance"]=28759, + ["mine_stage"]=59 + }, + [4795]={ + ["distance"]=28765, + ["mine_stage"]=47 + }, + [4796]={ + ["distance"]=28771, + ["mine_stage"]=5 + }, + [4797]={ + ["distance"]=28777, + ["mine_stage"]=13 + }, + [4798]={ + ["distance"]=28783, + ["mine_stage"]=5 + }, + [4799]={ + ["distance"]=28789, + ["mine_stage"]=58 + }, + [4800]={ + ["distance"]=28795, + ["mine_stage"]=39 + }, + [4801]={ + ["distance"]=28801, + ["mine_stage"]=66 + }, + [4802]={ + ["distance"]=28807, + ["mine_stage"]=7 + }, + [4803]={ + ["distance"]=28813, + ["mine_stage"]=23 + }, + [4804]={ + ["distance"]=28819, + ["mine_stage"]=27 + }, + [4805]={ + ["distance"]=28825, + ["mine_stage"]=19 + }, + [4806]={ + ["distance"]=28831, + ["mine_stage"]=11 + }, + [4807]={ + ["distance"]=28837, + ["mine_stage"]=23 + }, + [4808]={ + ["distance"]=28843, + ["mine_stage"]=58 + }, + [4809]={ + ["distance"]=28849, + ["mine_stage"]=14 + }, + [4810]={ + ["distance"]=28855, + ["mine_stage"]=9 + }, + [4811]={ + ["distance"]=28861, + ["mine_stage"]=20 + }, + [4812]={ + ["distance"]=28867, + ["mine_stage"]=42 + }, + [4813]={ + ["distance"]=28873, + ["mine_stage"]=43 + }, + [4814]={ + ["distance"]=28879, + ["mine_stage"]=51 + }, + [4815]={ + ["distance"]=28885, + ["mine_stage"]=53 + }, + [4816]={ + ["distance"]=28891, + ["mine_stage"]=56 + }, + [4817]={ + ["distance"]=28897, + ["mine_stage"]=5 + }, + [4818]={ + ["distance"]=28903, + ["mine_stage"]=42 + }, + [4819]={ + ["distance"]=28909, + ["mine_stage"]=19 + }, + [4820]={ + ["distance"]=28915, + ["mine_stage"]=41 + }, + [4821]={ + ["distance"]=28921, + ["mine_stage"]=42 + }, + [4822]={ + ["distance"]=28927, + ["mine_stage"]=56 + }, + [4823]={ + ["distance"]=28933, + ["mine_stage"]=9 + }, + [4824]={ + ["distance"]=28939, + ["mine_stage"]=49 + }, + [4825]={ + ["distance"]=28945, + ["mine_stage"]=28 + }, + [4826]={ + ["distance"]=28951, + ["mine_stage"]=43 + }, + [4827]={ + ["distance"]=28957, + ["mine_stage"]=53 + }, + [4828]={ + ["distance"]=28963, + ["mine_stage"]=37 + }, + [4829]={ + ["distance"]=28969, + ["mine_stage"]=45 + }, + [4830]={ + ["distance"]=28975, + ["mine_stage"]=45 + }, + [4831]={ + ["distance"]=28981, + ["mine_stage"]=28 + }, + [4832]={ + ["distance"]=28987, + ["mine_stage"]=12 + }, + [4833]={ + ["distance"]=28993, + ["mine_stage"]=58 + }, + [4834]={ + ["distance"]=28999, + ["mine_stage"]=11 + }, + [4835]={ + ["distance"]=29005, + ["mine_stage"]=52 + }, + [4836]={ + ["distance"]=29011, + ["mine_stage"]=46 + }, + [4837]={ + ["distance"]=29017, + ["mine_stage"]=18 + }, + [4838]={ + ["distance"]=29023, + ["mine_stage"]=22 + }, + [4839]={ + ["distance"]=29029, + ["mine_stage"]=5 + }, + [4840]={ + ["distance"]=29035, + ["mine_stage"]=16 + }, + [4841]={ + ["distance"]=29041, + ["mine_stage"]=33 + }, + [4842]={ + ["distance"]=29047, + ["mine_stage"]=29 + }, + [4843]={ + ["distance"]=29053, + ["mine_stage"]=49 + }, + [4844]={ + ["distance"]=29059, + ["mine_stage"]=30 + }, + [4845]={ + ["distance"]=29065, + ["mine_stage"]=48 + }, + [4846]={ + ["distance"]=29071, + ["mine_stage"]=28 + }, + [4847]={ + ["distance"]=29077, + ["mine_stage"]=1 + }, + [4848]={ + ["distance"]=29083, + ["mine_stage"]=5 + }, + [4849]={ + ["distance"]=29089, + ["mine_stage"]=14 + }, + [4850]={ + ["distance"]=29095, + ["mine_stage"]=7 + }, + [4851]={ + ["distance"]=29101, + ["mine_stage"]=69 + }, + [4852]={ + ["distance"]=29107, + ["mine_stage"]=53 + }, + [4853]={ + ["distance"]=29113, + ["mine_stage"]=32 + }, + [4854]={ + ["distance"]=29119, + ["mine_stage"]=20 + }, + [4855]={ + ["distance"]=29125, + ["mine_stage"]=22 + }, + [4856]={ + ["distance"]=29131, + ["mine_stage"]=47 + }, + [4857]={ + ["distance"]=29137, + ["mine_stage"]=54 + }, + [4858]={ + ["distance"]=29143, + ["mine_stage"]=30 + }, + [4859]={ + ["distance"]=29149, + ["mine_stage"]=8 + }, + [4860]={ + ["distance"]=29155, + ["mine_stage"]=19 + }, + [4861]={ + ["distance"]=29161, + ["mine_stage"]=52 + }, + [4862]={ + ["distance"]=29167, + ["mine_stage"]=36 + }, + [4863]={ + ["distance"]=29173, + ["mine_stage"]=4 + }, + [4864]={ + ["distance"]=29179, + ["mine_stage"]=39 + }, + [4865]={ + ["distance"]=29185, + ["mine_stage"]=54 + }, + [4866]={ + ["distance"]=29191, + ["mine_stage"]=60 + }, + [4867]={ + ["distance"]=29197, + ["mine_stage"]=55 + }, + [4868]={ + ["distance"]=29203, + ["mine_stage"]=51 + }, + [4869]={ + ["distance"]=29209, + ["mine_stage"]=12 + }, + [4870]={ + ["distance"]=29215, + ["mine_stage"]=38 + }, + [4871]={ + ["distance"]=29221, + ["mine_stage"]=8 + }, + [4872]={ + ["distance"]=29227, + ["mine_stage"]=30 + }, + [4873]={ + ["distance"]=29233, + ["mine_stage"]=35 + }, + [4874]={ + ["distance"]=29239, + ["mine_stage"]=55 + }, + [4875]={ + ["distance"]=29245, + ["mine_stage"]=56 + }, + [4876]={ + ["distance"]=29251, + ["mine_stage"]=34 + }, + [4877]={ + ["distance"]=29257, + ["mine_stage"]=53 + }, + [4878]={ + ["distance"]=29263, + ["mine_stage"]=47 + }, + [4879]={ + ["distance"]=29269, + ["mine_stage"]=12 + }, + [4880]={ + ["distance"]=29275, + ["mine_stage"]=38 + }, + [4881]={ + ["distance"]=29281, + ["mine_stage"]=25 + }, + [4882]={ + ["distance"]=29287, + ["mine_stage"]=13 + }, + [4883]={ + ["distance"]=29293, + ["mine_stage"]=28 + }, + [4884]={ + ["distance"]=29299, + ["mine_stage"]=35 + }, + [4885]={ + ["distance"]=29305, + ["mine_stage"]=51 + }, + [4886]={ + ["distance"]=29311, + ["mine_stage"]=53 + }, + [4887]={ + ["distance"]=29317, + ["mine_stage"]=47 + }, + [4888]={ + ["distance"]=29323, + ["mine_stage"]=38 + }, + [4889]={ + ["distance"]=29329, + ["mine_stage"]=3 + }, + [4890]={ + ["distance"]=29335, + ["mine_stage"]=7 + }, + [4891]={ + ["distance"]=29341, + ["mine_stage"]=57 + }, + [4892]={ + ["distance"]=29347, + ["mine_stage"]=7 + }, + [4893]={ + ["distance"]=29353, + ["mine_stage"]=24 + }, + [4894]={ + ["distance"]=29359, + ["mine_stage"]=40 + }, + [4895]={ + ["distance"]=29365, + ["mine_stage"]=7 + }, + [4896]={ + ["distance"]=29371, + ["mine_stage"]=44 + }, + [4897]={ + ["distance"]=29377, + ["mine_stage"]=22 + }, + [4898]={ + ["distance"]=29383, + ["mine_stage"]=9 + }, + [4899]={ + ["distance"]=29389, + ["mine_stage"]=49 + }, + [4900]={ + ["distance"]=29395, + ["mine_stage"]=7 + }, + [4901]={ + ["distance"]=29401, + ["mine_stage"]=64 + }, + [4902]={ + ["distance"]=29407, + ["mine_stage"]=20 + }, + [4903]={ + ["distance"]=29413, + ["mine_stage"]=29 + }, + [4904]={ + ["distance"]=29419, + ["mine_stage"]=36 + }, + [4905]={ + ["distance"]=29425, + ["mine_stage"]=41 + }, + [4906]={ + ["distance"]=29431, + ["mine_stage"]=4 + }, + [4907]={ + ["distance"]=29437, + ["mine_stage"]=26 + }, + [4908]={ + ["distance"]=29443, + ["mine_stage"]=16 + }, + [4909]={ + ["distance"]=29449, + ["mine_stage"]=41 + }, + [4910]={ + ["distance"]=29455, + ["mine_stage"]=48 + }, + [4911]={ + ["distance"]=29461, + ["mine_stage"]=10 + }, + [4912]={ + ["distance"]=29467, + ["mine_stage"]=6 + }, + [4913]={ + ["distance"]=29473, + ["mine_stage"]=59 + }, + [4914]={ + ["distance"]=29479, + ["mine_stage"]=16 + }, + [4915]={ + ["distance"]=29485, + ["mine_stage"]=5 + }, + [4916]={ + ["distance"]=29491, + ["mine_stage"]=7 + }, + [4917]={ + ["distance"]=29497, + ["mine_stage"]=37 + }, + [4918]={ + ["distance"]=29503, + ["mine_stage"]=43 + }, + [4919]={ + ["distance"]=29509, + ["mine_stage"]=23 + }, + [4920]={ + ["distance"]=29515, + ["mine_stage"]=28 + }, + [4921]={ + ["distance"]=29521, + ["mine_stage"]=11 + }, + [4922]={ + ["distance"]=29527, + ["mine_stage"]=37 + }, + [4923]={ + ["distance"]=29533, + ["mine_stage"]=9 + }, + [4924]={ + ["distance"]=29539, + ["mine_stage"]=9 + }, + [4925]={ + ["distance"]=29545, + ["mine_stage"]=36 + }, + [4926]={ + ["distance"]=29551, + ["mine_stage"]=4 + }, + [4927]={ + ["distance"]=29557, + ["mine_stage"]=50 + }, + [4928]={ + ["distance"]=29563, + ["mine_stage"]=49 + }, + [4929]={ + ["distance"]=29569, + ["mine_stage"]=15 + }, + [4930]={ + ["distance"]=29575, + ["mine_stage"]=14 + }, + [4931]={ + ["distance"]=29581, + ["mine_stage"]=17 + }, + [4932]={ + ["distance"]=29587, + ["mine_stage"]=9 + }, + [4933]={ + ["distance"]=29593, + ["mine_stage"]=59 + }, + [4934]={ + ["distance"]=29599, + ["mine_stage"]=16 + }, + [4935]={ + ["distance"]=29605, + ["mine_stage"]=45 + }, + [4936]={ + ["distance"]=29611, + ["mine_stage"]=20 + }, + [4937]={ + ["distance"]=29617, + ["mine_stage"]=55 + }, + [4938]={ + ["distance"]=29623, + ["mine_stage"]=10 + }, + [4939]={ + ["distance"]=29629, + ["mine_stage"]=7 + }, + [4940]={ + ["distance"]=29635, + ["mine_stage"]=22 + }, + [4941]={ + ["distance"]=29641, + ["mine_stage"]=56 + }, + [4942]={ + ["distance"]=29647, + ["mine_stage"]=36 + }, + [4943]={ + ["distance"]=29653, + ["mine_stage"]=26 + }, + [4944]={ + ["distance"]=29659, + ["mine_stage"]=57 + }, + [4945]={ + ["distance"]=29665, + ["mine_stage"]=2 + }, + [4946]={ + ["distance"]=29671, + ["mine_stage"]=54 + }, + [4947]={ + ["distance"]=29677, + ["mine_stage"]=53 + }, + [4948]={ + ["distance"]=29683, + ["mine_stage"]=19 + }, + [4949]={ + ["distance"]=29689, + ["mine_stage"]=12 + }, + [4950]={ + ["distance"]=29695, + ["mine_stage"]=28 + }, + [4951]={ + ["distance"]=29701, + ["mine_stage"]=67 + }, + [4952]={ + ["distance"]=29707, + ["mine_stage"]=25 + }, + [4953]={ + ["distance"]=29713, + ["mine_stage"]=33 + }, + [4954]={ + ["distance"]=29719, + ["mine_stage"]=11 + }, + [4955]={ + ["distance"]=29725, + ["mine_stage"]=18 + }, + [4956]={ + ["distance"]=29731, + ["mine_stage"]=22 + }, + [4957]={ + ["distance"]=29737, + ["mine_stage"]=45 + }, + [4958]={ + ["distance"]=29743, + ["mine_stage"]=40 + }, + [4959]={ + ["distance"]=29749, + ["mine_stage"]=16 + }, + [4960]={ + ["distance"]=29755, + ["mine_stage"]=37 + }, + [4961]={ + ["distance"]=29761, + ["mine_stage"]=37 + }, + [4962]={ + ["distance"]=29767, + ["mine_stage"]=4 + }, + [4963]={ + ["distance"]=29773, + ["mine_stage"]=45 + }, + [4964]={ + ["distance"]=29779, + ["mine_stage"]=43 + }, + [4965]={ + ["distance"]=29785, + ["mine_stage"]=40 + }, + [4966]={ + ["distance"]=29791, + ["mine_stage"]=38 + }, + [4967]={ + ["distance"]=29797, + ["mine_stage"]=22 + }, + [4968]={ + ["distance"]=29803, + ["mine_stage"]=53 + }, + [4969]={ + ["distance"]=29809, + ["mine_stage"]=9 + }, + [4970]={ + ["distance"]=29815, + ["mine_stage"]=36 + }, + [4971]={ + ["distance"]=29821, + ["mine_stage"]=1 + }, + [4972]={ + ["distance"]=29827, + ["mine_stage"]=52 + }, + [4973]={ + ["distance"]=29833, + ["mine_stage"]=35 + }, + [4974]={ + ["distance"]=29839, + ["mine_stage"]=3 + }, + [4975]={ + ["distance"]=29845, + ["mine_stage"]=43 + }, + [4976]={ + ["distance"]=29851, + ["mine_stage"]=28 + }, + [4977]={ + ["distance"]=29857, + ["mine_stage"]=7 + }, + [4978]={ + ["distance"]=29863, + ["mine_stage"]=33 + }, + [4979]={ + ["distance"]=29869, + ["mine_stage"]=43 + }, + [4980]={ + ["distance"]=29875, + ["mine_stage"]=45 + }, + [4981]={ + ["distance"]=29881, + ["mine_stage"]=32 + }, + [4982]={ + ["distance"]=29887, + ["mine_stage"]=23 + }, + [4983]={ + ["distance"]=29893, + ["mine_stage"]=60 + }, + [4984]={ + ["distance"]=29899, + ["mine_stage"]=36 + }, + [4985]={ + ["distance"]=29905, + ["mine_stage"]=38 + }, + [4986]={ + ["distance"]=29911, + ["mine_stage"]=20 + }, + [4987]={ + ["distance"]=29917, + ["mine_stage"]=12 + }, + [4988]={ + ["distance"]=29923, + ["mine_stage"]=7 + }, + [4989]={ + ["distance"]=29929, + ["mine_stage"]=51 + }, + [4990]={ + ["distance"]=29935, + ["mine_stage"]=46 + }, + [4991]={ + ["distance"]=29941, + ["mine_stage"]=38 + }, + [4992]={ + ["distance"]=29947, + ["mine_stage"]=37 + }, + [4993]={ + ["distance"]=29953, + ["mine_stage"]=7 + }, + [4994]={ + ["distance"]=29959, + ["mine_stage"]=34 + }, + [4995]={ + ["distance"]=29965, + ["mine_stage"]=15 + }, + [4996]={ + ["distance"]=29971, + ["mine_stage"]=27 + }, + [4997]={ + ["distance"]=29977, + ["mine_stage"]=51 + }, + [4998]={ + ["distance"]=29983, + ["mine_stage"]=15 + }, + [4999]={ + ["distance"]=29989, + ["mine_stage"]=46 + }, + [5000]={ + ["distance"]=29995, + ["mine_stage"]=47 + }, + [5001]={ + ["distance"]=30001, + ["mine_stage"]=65 + }, + [5002]={ + ["distance"]=30007, + ["mine_stage"]=13 + }, + [5003]={ + ["distance"]=30013, + ["mine_stage"]=8 + }, + [5004]={ + ["distance"]=30019, + ["mine_stage"]=53 + }, + [5005]={ + ["distance"]=30025, + ["mine_stage"]=47 + }, + [5006]={ + ["distance"]=30031, + ["mine_stage"]=28 + }, + [5007]={ + ["distance"]=30037, + ["mine_stage"]=21 + }, + [5008]={ + ["distance"]=30043, + ["mine_stage"]=9 + }, + [5009]={ + ["distance"]=30049, + ["mine_stage"]=25 + }, + [5010]={ + ["distance"]=30055, + ["mine_stage"]=34 + }, + [5011]={ + ["distance"]=30061, + ["mine_stage"]=26 + }, + [5012]={ + ["distance"]=30067, + ["mine_stage"]=49 + }, + [5013]={ + ["distance"]=30073, + ["mine_stage"]=35 + }, + [5014]={ + ["distance"]=30079, + ["mine_stage"]=24 + }, + [5015]={ + ["distance"]=30085, + ["mine_stage"]=5 + }, + [5016]={ + ["distance"]=30091, + ["mine_stage"]=3 + }, + [5017]={ + ["distance"]=30097, + ["mine_stage"]=27 + }, + [5018]={ + ["distance"]=30103, + ["mine_stage"]=36 + }, + [5019]={ + ["distance"]=30109, + ["mine_stage"]=35 + }, + [5020]={ + ["distance"]=30115, + ["mine_stage"]=34 + }, + [5021]={ + ["distance"]=30121, + ["mine_stage"]=43 + }, + [5022]={ + ["distance"]=30127, + ["mine_stage"]=34 + }, + [5023]={ + ["distance"]=30133, + ["mine_stage"]=50 + }, + [5024]={ + ["distance"]=30139, + ["mine_stage"]=13 + }, + [5025]={ + ["distance"]=30145, + ["mine_stage"]=41 + }, + [5026]={ + ["distance"]=30151, + ["mine_stage"]=56 + }, + [5027]={ + ["distance"]=30157, + ["mine_stage"]=9 + }, + [5028]={ + ["distance"]=30163, + ["mine_stage"]=4 + }, + [5029]={ + ["distance"]=30169, + ["mine_stage"]=47 + }, + [5030]={ + ["distance"]=30175, + ["mine_stage"]=15 + }, + [5031]={ + ["distance"]=30181, + ["mine_stage"]=49 + }, + [5032]={ + ["distance"]=30187, + ["mine_stage"]=36 + }, + [5033]={ + ["distance"]=30193, + ["mine_stage"]=57 + }, + [5034]={ + ["distance"]=30199, + ["mine_stage"]=17 + }, + [5035]={ + ["distance"]=30205, + ["mine_stage"]=49 + }, + [5036]={ + ["distance"]=30211, + ["mine_stage"]=56 + }, + [5037]={ + ["distance"]=30217, + ["mine_stage"]=54 + }, + [5038]={ + ["distance"]=30223, + ["mine_stage"]=17 + }, + [5039]={ + ["distance"]=30229, + ["mine_stage"]=56 + }, + [5040]={ + ["distance"]=30235, + ["mine_stage"]=36 + }, + [5041]={ + ["distance"]=30241, + ["mine_stage"]=3 + }, + [5042]={ + ["distance"]=30247, + ["mine_stage"]=7 + }, + [5043]={ + ["distance"]=30253, + ["mine_stage"]=29 + }, + [5044]={ + ["distance"]=30259, + ["mine_stage"]=33 + }, + [5045]={ + ["distance"]=30265, + ["mine_stage"]=20 + }, + [5046]={ + ["distance"]=30271, + ["mine_stage"]=27 + }, + [5047]={ + ["distance"]=30277, + ["mine_stage"]=25 + }, + [5048]={ + ["distance"]=30283, + ["mine_stage"]=11 + }, + [5049]={ + ["distance"]=30289, + ["mine_stage"]=29 + }, + [5050]={ + ["distance"]=30295, + ["mine_stage"]=34 + }, + [5051]={ + ["distance"]=30301, + ["mine_stage"]=68 + }, + [5052]={ + ["distance"]=30307, + ["mine_stage"]=9 + }, + [5053]={ + ["distance"]=30313, + ["mine_stage"]=43 + }, + [5054]={ + ["distance"]=30319, + ["mine_stage"]=53 + }, + [5055]={ + ["distance"]=30325, + ["mine_stage"]=59 + }, + [5056]={ + ["distance"]=30331, + ["mine_stage"]=56 + }, + [5057]={ + ["distance"]=30337, + ["mine_stage"]=60 + }, + [5058]={ + ["distance"]=30343, + ["mine_stage"]=14 + }, + [5059]={ + ["distance"]=30349, + ["mine_stage"]=8 + }, + [5060]={ + ["distance"]=30355, + ["mine_stage"]=38 + }, + [5061]={ + ["distance"]=30361, + ["mine_stage"]=18 + }, + [5062]={ + ["distance"]=30367, + ["mine_stage"]=44 + }, + [5063]={ + ["distance"]=30373, + ["mine_stage"]=8 + }, + [5064]={ + ["distance"]=30379, + ["mine_stage"]=45 + }, + [5065]={ + ["distance"]=30385, + ["mine_stage"]=29 + }, + [5066]={ + ["distance"]=30391, + ["mine_stage"]=2 + }, + [5067]={ + ["distance"]=30397, + ["mine_stage"]=51 + }, + [5068]={ + ["distance"]=30403, + ["mine_stage"]=46 + }, + [5069]={ + ["distance"]=30409, + ["mine_stage"]=12 + }, + [5070]={ + ["distance"]=30415, + ["mine_stage"]=45 + }, + [5071]={ + ["distance"]=30421, + ["mine_stage"]=50 + }, + [5072]={ + ["distance"]=30427, + ["mine_stage"]=9 + }, + [5073]={ + ["distance"]=30433, + ["mine_stage"]=16 + }, + [5074]={ + ["distance"]=30439, + ["mine_stage"]=58 + }, + [5075]={ + ["distance"]=30445, + ["mine_stage"]=49 + }, + [5076]={ + ["distance"]=30451, + ["mine_stage"]=29 + }, + [5077]={ + ["distance"]=30457, + ["mine_stage"]=42 + }, + [5078]={ + ["distance"]=30463, + ["mine_stage"]=49 + }, + [5079]={ + ["distance"]=30469, + ["mine_stage"]=45 + }, + [5080]={ + ["distance"]=30475, + ["mine_stage"]=34 + }, + [5081]={ + ["distance"]=30481, + ["mine_stage"]=19 + }, + [5082]={ + ["distance"]=30487, + ["mine_stage"]=60 + }, + [5083]={ + ["distance"]=30493, + ["mine_stage"]=27 + }, + [5084]={ + ["distance"]=30499, + ["mine_stage"]=31 + }, + [5085]={ + ["distance"]=30505, + ["mine_stage"]=57 + }, + [5086]={ + ["distance"]=30511, + ["mine_stage"]=58 + }, + [5087]={ + ["distance"]=30517, + ["mine_stage"]=51 + }, + [5088]={ + ["distance"]=30523, + ["mine_stage"]=50 + }, + [5089]={ + ["distance"]=30529, + ["mine_stage"]=37 + }, + [5090]={ + ["distance"]=30535, + ["mine_stage"]=19 + }, + [5091]={ + ["distance"]=30541, + ["mine_stage"]=37 + }, + [5092]={ + ["distance"]=30547, + ["mine_stage"]=52 + }, + [5093]={ + ["distance"]=30553, + ["mine_stage"]=28 + }, + [5094]={ + ["distance"]=30559, + ["mine_stage"]=32 + }, + [5095]={ + ["distance"]=30565, + ["mine_stage"]=34 + }, + [5096]={ + ["distance"]=30571, + ["mine_stage"]=25 + }, + [5097]={ + ["distance"]=30577, + ["mine_stage"]=28 + }, + [5098]={ + ["distance"]=30583, + ["mine_stage"]=25 + }, + [5099]={ + ["distance"]=30589, + ["mine_stage"]=54 + }, + [5100]={ + ["distance"]=30595, + ["mine_stage"]=58 + }, + [5101]={ + ["distance"]=30601, + ["mine_stage"]=66 + }, + [5102]={ + ["distance"]=30607, + ["mine_stage"]=18 + }, + [5103]={ + ["distance"]=30613, + ["mine_stage"]=28 + }, + [5104]={ + ["distance"]=30619, + ["mine_stage"]=9 + }, + [5105]={ + ["distance"]=30625, + ["mine_stage"]=17 + }, + [5106]={ + ["distance"]=30631, + ["mine_stage"]=20 + }, + [5107]={ + ["distance"]=30637, + ["mine_stage"]=25 + }, + [5108]={ + ["distance"]=30643, + ["mine_stage"]=58 + }, + [5109]={ + ["distance"]=30649, + ["mine_stage"]=56 + }, + [5110]={ + ["distance"]=30655, + ["mine_stage"]=30 + }, + [5111]={ + ["distance"]=30661, + ["mine_stage"]=27 + }, + [5112]={ + ["distance"]=30667, + ["mine_stage"]=27 + }, + [5113]={ + ["distance"]=30673, + ["mine_stage"]=32 + }, + [5114]={ + ["distance"]=30679, + ["mine_stage"]=25 + }, + [5115]={ + ["distance"]=30685, + ["mine_stage"]=51 + }, + [5116]={ + ["distance"]=30691, + ["mine_stage"]=13 + }, + [5117]={ + ["distance"]=30697, + ["mine_stage"]=13 + }, + [5118]={ + ["distance"]=30703, + ["mine_stage"]=60 + }, + [5119]={ + ["distance"]=30709, + ["mine_stage"]=17 + }, + [5120]={ + ["distance"]=30715, + ["mine_stage"]=52 + }, + [5121]={ + ["distance"]=30721, + ["mine_stage"]=21 + }, + [5122]={ + ["distance"]=30727, + ["mine_stage"]=48 + }, + [5123]={ + ["distance"]=30733, + ["mine_stage"]=57 + }, + [5124]={ + ["distance"]=30739, + ["mine_stage"]=16 + }, + [5125]={ + ["distance"]=30745, + ["mine_stage"]=12 + }, + [5126]={ + ["distance"]=30751, + ["mine_stage"]=20 + }, + [5127]={ + ["distance"]=30757, + ["mine_stage"]=38 + }, + [5128]={ + ["distance"]=30763, + ["mine_stage"]=12 + }, + [5129]={ + ["distance"]=30769, + ["mine_stage"]=13 + }, + [5130]={ + ["distance"]=30775, + ["mine_stage"]=2 + }, + [5131]={ + ["distance"]=30781, + ["mine_stage"]=45 + }, + [5132]={ + ["distance"]=30787, + ["mine_stage"]=8 + }, + [5133]={ + ["distance"]=30793, + ["mine_stage"]=4 + }, + [5134]={ + ["distance"]=30799, + ["mine_stage"]=49 + }, + [5135]={ + ["distance"]=30805, + ["mine_stage"]=35 + }, + [5136]={ + ["distance"]=30811, + ["mine_stage"]=16 + }, + [5137]={ + ["distance"]=30817, + ["mine_stage"]=16 + }, + [5138]={ + ["distance"]=30823, + ["mine_stage"]=22 + }, + [5139]={ + ["distance"]=30829, + ["mine_stage"]=34 + }, + [5140]={ + ["distance"]=30835, + ["mine_stage"]=51 + }, + [5141]={ + ["distance"]=30841, + ["mine_stage"]=44 + }, + [5142]={ + ["distance"]=30847, + ["mine_stage"]=24 + }, + [5143]={ + ["distance"]=30853, + ["mine_stage"]=47 + }, + [5144]={ + ["distance"]=30859, + ["mine_stage"]=26 + }, + [5145]={ + ["distance"]=30865, + ["mine_stage"]=5 + }, + [5146]={ + ["distance"]=30871, + ["mine_stage"]=44 + }, + [5147]={ + ["distance"]=30877, + ["mine_stage"]=21 + }, + [5148]={ + ["distance"]=30883, + ["mine_stage"]=16 + }, + [5149]={ + ["distance"]=30889, + ["mine_stage"]=25 + }, + [5150]={ + ["distance"]=30895, + ["mine_stage"]=51 + }, + [5151]={ + ["distance"]=30901, + ["mine_stage"]=69 + }, + [5152]={ + ["distance"]=30907, + ["mine_stage"]=8 + }, + [5153]={ + ["distance"]=30913, + ["mine_stage"]=6 + }, + [5154]={ + ["distance"]=30919, + ["mine_stage"]=13 + }, + [5155]={ + ["distance"]=30925, + ["mine_stage"]=18 + }, + [5156]={ + ["distance"]=30931, + ["mine_stage"]=8 + }, + [5157]={ + ["distance"]=30937, + ["mine_stage"]=36 + }, + [5158]={ + ["distance"]=30943, + ["mine_stage"]=40 + }, + [5159]={ + ["distance"]=30949, + ["mine_stage"]=50 + }, + [5160]={ + ["distance"]=30955, + ["mine_stage"]=16 + }, + [5161]={ + ["distance"]=30961, + ["mine_stage"]=59 + }, + [5162]={ + ["distance"]=30967, + ["mine_stage"]=43 + }, + [5163]={ + ["distance"]=30973, + ["mine_stage"]=28 + }, + [5164]={ + ["distance"]=30979, + ["mine_stage"]=44 + }, + [5165]={ + ["distance"]=30985, + ["mine_stage"]=29 + }, + [5166]={ + ["distance"]=30991, + ["mine_stage"]=4 + }, + [5167]={ + ["distance"]=30997, + ["mine_stage"]=20 + }, + [5168]={ + ["distance"]=31003, + ["mine_stage"]=18 + }, + [5169]={ + ["distance"]=31009, + ["mine_stage"]=12 + }, + [5170]={ + ["distance"]=31015, + ["mine_stage"]=30 + }, + [5171]={ + ["distance"]=31021, + ["mine_stage"]=59 + }, + [5172]={ + ["distance"]=31027, + ["mine_stage"]=37 + }, + [5173]={ + ["distance"]=31033, + ["mine_stage"]=58 + }, + [5174]={ + ["distance"]=31039, + ["mine_stage"]=23 + }, + [5175]={ + ["distance"]=31045, + ["mine_stage"]=13 + }, + [5176]={ + ["distance"]=31051, + ["mine_stage"]=10 + }, + [5177]={ + ["distance"]=31057, + ["mine_stage"]=20 + }, + [5178]={ + ["distance"]=31063, + ["mine_stage"]=18 + }, + [5179]={ + ["distance"]=31069, + ["mine_stage"]=45 + }, + [5180]={ + ["distance"]=31075, + ["mine_stage"]=12 + }, + [5181]={ + ["distance"]=31081, + ["mine_stage"]=4 + }, + [5182]={ + ["distance"]=31087, + ["mine_stage"]=5 + }, + [5183]={ + ["distance"]=31093, + ["mine_stage"]=12 + }, + [5184]={ + ["distance"]=31099, + ["mine_stage"]=30 + }, + [5185]={ + ["distance"]=31105, + ["mine_stage"]=46 + }, + [5186]={ + ["distance"]=31111, + ["mine_stage"]=33 + }, + [5187]={ + ["distance"]=31117, + ["mine_stage"]=33 + }, + [5188]={ + ["distance"]=31123, + ["mine_stage"]=22 + }, + [5189]={ + ["distance"]=31129, + ["mine_stage"]=58 + }, + [5190]={ + ["distance"]=31135, + ["mine_stage"]=36 + }, + [5191]={ + ["distance"]=31141, + ["mine_stage"]=60 + }, + [5192]={ + ["distance"]=31147, + ["mine_stage"]=19 + }, + [5193]={ + ["distance"]=31153, + ["mine_stage"]=16 + }, + [5194]={ + ["distance"]=31159, + ["mine_stage"]=1 + }, + [5195]={ + ["distance"]=31165, + ["mine_stage"]=51 + }, + [5196]={ + ["distance"]=31171, + ["mine_stage"]=15 + }, + [5197]={ + ["distance"]=31177, + ["mine_stage"]=26 + }, + [5198]={ + ["distance"]=31183, + ["mine_stage"]=16 + }, + [5199]={ + ["distance"]=31189, + ["mine_stage"]=59 + }, + [5200]={ + ["distance"]=31195, + ["mine_stage"]=4 + }, + [5201]={ + ["distance"]=31201, + ["mine_stage"]=64 + }, + [5202]={ + ["distance"]=31207, + ["mine_stage"]=34 + }, + [5203]={ + ["distance"]=31213, + ["mine_stage"]=8 + }, + [5204]={ + ["distance"]=31219, + ["mine_stage"]=44 + }, + [5205]={ + ["distance"]=31225, + ["mine_stage"]=54 + }, + [5206]={ + ["distance"]=31231, + ["mine_stage"]=39 + }, + [5207]={ + ["distance"]=31237, + ["mine_stage"]=41 + }, + [5208]={ + ["distance"]=31243, + ["mine_stage"]=18 + }, + [5209]={ + ["distance"]=31249, + ["mine_stage"]=57 + }, + [5210]={ + ["distance"]=31255, + ["mine_stage"]=27 + }, + [5211]={ + ["distance"]=31261, + ["mine_stage"]=41 + }, + [5212]={ + ["distance"]=31267, + ["mine_stage"]=17 + }, + [5213]={ + ["distance"]=31273, + ["mine_stage"]=17 + }, + [5214]={ + ["distance"]=31279, + ["mine_stage"]=21 + }, + [5215]={ + ["distance"]=31285, + ["mine_stage"]=33 + }, + [5216]={ + ["distance"]=31291, + ["mine_stage"]=15 + }, + [5217]={ + ["distance"]=31297, + ["mine_stage"]=53 + }, + [5218]={ + ["distance"]=31303, + ["mine_stage"]=19 + }, + [5219]={ + ["distance"]=31309, + ["mine_stage"]=40 + }, + [5220]={ + ["distance"]=31315, + ["mine_stage"]=26 + }, + [5221]={ + ["distance"]=31321, + ["mine_stage"]=6 + }, + [5222]={ + ["distance"]=31327, + ["mine_stage"]=10 + }, + [5223]={ + ["distance"]=31333, + ["mine_stage"]=43 + }, + [5224]={ + ["distance"]=31339, + ["mine_stage"]=24 + }, + [5225]={ + ["distance"]=31345, + ["mine_stage"]=24 + }, + [5226]={ + ["distance"]=31351, + ["mine_stage"]=38 + }, + [5227]={ + ["distance"]=31357, + ["mine_stage"]=60 + }, + [5228]={ + ["distance"]=31363, + ["mine_stage"]=47 + }, + [5229]={ + ["distance"]=31369, + ["mine_stage"]=51 + }, + [5230]={ + ["distance"]=31375, + ["mine_stage"]=20 + }, + [5231]={ + ["distance"]=31381, + ["mine_stage"]=19 + }, + [5232]={ + ["distance"]=31387, + ["mine_stage"]=7 + }, + [5233]={ + ["distance"]=31393, + ["mine_stage"]=39 + }, + [5234]={ + ["distance"]=31399, + ["mine_stage"]=5 + }, + [5235]={ + ["distance"]=31405, + ["mine_stage"]=37 + }, + [5236]={ + ["distance"]=31411, + ["mine_stage"]=20 + }, + [5237]={ + ["distance"]=31417, + ["mine_stage"]=37 + }, + [5238]={ + ["distance"]=31423, + ["mine_stage"]=55 + }, + [5239]={ + ["distance"]=31429, + ["mine_stage"]=29 + }, + [5240]={ + ["distance"]=31435, + ["mine_stage"]=47 + }, + [5241]={ + ["distance"]=31441, + ["mine_stage"]=60 + }, + [5242]={ + ["distance"]=31447, + ["mine_stage"]=35 + }, + [5243]={ + ["distance"]=31453, + ["mine_stage"]=57 + }, + [5244]={ + ["distance"]=31459, + ["mine_stage"]=17 + }, + [5245]={ + ["distance"]=31465, + ["mine_stage"]=34 + }, + [5246]={ + ["distance"]=31471, + ["mine_stage"]=20 + }, + [5247]={ + ["distance"]=31477, + ["mine_stage"]=56 + }, + [5248]={ + ["distance"]=31483, + ["mine_stage"]=10 + }, + [5249]={ + ["distance"]=31489, + ["mine_stage"]=43 + }, + [5250]={ + ["distance"]=31495, + ["mine_stage"]=26 + }, + [5251]={ + ["distance"]=31501, + ["mine_stage"]=67 + }, + [5252]={ + ["distance"]=31507, + ["mine_stage"]=29 + }, + [5253]={ + ["distance"]=31513, + ["mine_stage"]=32 + }, + [5254]={ + ["distance"]=31519, + ["mine_stage"]=15 + }, + [5255]={ + ["distance"]=31525, + ["mine_stage"]=38 + }, + [5256]={ + ["distance"]=31531, + ["mine_stage"]=41 + }, + [5257]={ + ["distance"]=31537, + ["mine_stage"]=40 + }, + [5258]={ + ["distance"]=31543, + ["mine_stage"]=15 + }, + [5259]={ + ["distance"]=31549, + ["mine_stage"]=33 + }, + [5260]={ + ["distance"]=31555, + ["mine_stage"]=27 + }, + [5261]={ + ["distance"]=31561, + ["mine_stage"]=14 + }, + [5262]={ + ["distance"]=31567, + ["mine_stage"]=53 + }, + [5263]={ + ["distance"]=31573, + ["mine_stage"]=35 + }, + [5264]={ + ["distance"]=31579, + ["mine_stage"]=7 + }, + [5265]={ + ["distance"]=31585, + ["mine_stage"]=4 + }, + [5266]={ + ["distance"]=31591, + ["mine_stage"]=27 + }, + [5267]={ + ["distance"]=31597, + ["mine_stage"]=55 + }, + [5268]={ + ["distance"]=31603, + ["mine_stage"]=57 + }, + [5269]={ + ["distance"]=31609, + ["mine_stage"]=30 + }, + [5270]={ + ["distance"]=31615, + ["mine_stage"]=31 + }, + [5271]={ + ["distance"]=31621, + ["mine_stage"]=41 + }, + [5272]={ + ["distance"]=31627, + ["mine_stage"]=18 + }, + [5273]={ + ["distance"]=31633, + ["mine_stage"]=23 + }, + [5274]={ + ["distance"]=31639, + ["mine_stage"]=41 + }, + [5275]={ + ["distance"]=31645, + ["mine_stage"]=20 + }, + [5276]={ + ["distance"]=31651, + ["mine_stage"]=35 + }, + [5277]={ + ["distance"]=31657, + ["mine_stage"]=59 + }, + [5278]={ + ["distance"]=31663, + ["mine_stage"]=27 + }, + [5279]={ + ["distance"]=31669, + ["mine_stage"]=33 + }, + [5280]={ + ["distance"]=31675, + ["mine_stage"]=28 + }, + [5281]={ + ["distance"]=31681, + ["mine_stage"]=33 + }, + [5282]={ + ["distance"]=31687, + ["mine_stage"]=43 + }, + [5283]={ + ["distance"]=31693, + ["mine_stage"]=31 + }, + [5284]={ + ["distance"]=31699, + ["mine_stage"]=54 + }, + [5285]={ + ["distance"]=31705, + ["mine_stage"]=25 + }, + [5286]={ + ["distance"]=31711, + ["mine_stage"]=7 + }, + [5287]={ + ["distance"]=31717, + ["mine_stage"]=60 + }, + [5288]={ + ["distance"]=31723, + ["mine_stage"]=10 + }, + [5289]={ + ["distance"]=31729, + ["mine_stage"]=29 + }, + [5290]={ + ["distance"]=31735, + ["mine_stage"]=59 + }, + [5291]={ + ["distance"]=31741, + ["mine_stage"]=53 + }, + [5292]={ + ["distance"]=31747, + ["mine_stage"]=25 + }, + [5293]={ + ["distance"]=31753, + ["mine_stage"]=26 + }, + [5294]={ + ["distance"]=31759, + ["mine_stage"]=28 + }, + [5295]={ + ["distance"]=31765, + ["mine_stage"]=25 + }, + [5296]={ + ["distance"]=31771, + ["mine_stage"]=57 + }, + [5297]={ + ["distance"]=31777, + ["mine_stage"]=8 + }, + [5298]={ + ["distance"]=31783, + ["mine_stage"]=50 + }, + [5299]={ + ["distance"]=31789, + ["mine_stage"]=50 + }, + [5300]={ + ["distance"]=31795, + ["mine_stage"]=21 + }, + [5301]={ + ["distance"]=31801, + ["mine_stage"]=65 + }, + [5302]={ + ["distance"]=31807, + ["mine_stage"]=23 + }, + [5303]={ + ["distance"]=31813, + ["mine_stage"]=7 + }, + [5304]={ + ["distance"]=31819, + ["mine_stage"]=41 + }, + [5305]={ + ["distance"]=31825, + ["mine_stage"]=45 + }, + [5306]={ + ["distance"]=31831, + ["mine_stage"]=19 + }, + [5307]={ + ["distance"]=31837, + ["mine_stage"]=39 + }, + [5308]={ + ["distance"]=31843, + ["mine_stage"]=57 + }, + [5309]={ + ["distance"]=31849, + ["mine_stage"]=44 + }, + [5310]={ + ["distance"]=31855, + ["mine_stage"]=40 + }, + [5311]={ + ["distance"]=31861, + ["mine_stage"]=21 + }, + [5312]={ + ["distance"]=31867, + ["mine_stage"]=8 + }, + [5313]={ + ["distance"]=31873, + ["mine_stage"]=54 + }, + [5314]={ + ["distance"]=31879, + ["mine_stage"]=34 + }, + [5315]={ + ["distance"]=31885, + ["mine_stage"]=44 + }, + [5316]={ + ["distance"]=31891, + ["mine_stage"]=30 + }, + [5317]={ + ["distance"]=31897, + ["mine_stage"]=6 + }, + [5318]={ + ["distance"]=31903, + ["mine_stage"]=11 + }, + [5319]={ + ["distance"]=31909, + ["mine_stage"]=52 + }, + [5320]={ + ["distance"]=31915, + ["mine_stage"]=1 + }, + [5321]={ + ["distance"]=31921, + ["mine_stage"]=41 + }, + [5322]={ + ["distance"]=31927, + ["mine_stage"]=60 + }, + [5323]={ + ["distance"]=31933, + ["mine_stage"]=35 + }, + [5324]={ + ["distance"]=31939, + ["mine_stage"]=18 + }, + [5325]={ + ["distance"]=31945, + ["mine_stage"]=60 + }, + [5326]={ + ["distance"]=31951, + ["mine_stage"]=11 + }, + [5327]={ + ["distance"]=31957, + ["mine_stage"]=22 + }, + [5328]={ + ["distance"]=31963, + ["mine_stage"]=31 + }, + [5329]={ + ["distance"]=31969, + ["mine_stage"]=57 + }, + [5330]={ + ["distance"]=31975, + ["mine_stage"]=10 + }, + [5331]={ + ["distance"]=31981, + ["mine_stage"]=11 + }, + [5332]={ + ["distance"]=31987, + ["mine_stage"]=37 + }, + [5333]={ + ["distance"]=31993, + ["mine_stage"]=13 + }, + [5334]={ + ["distance"]=31999, + ["mine_stage"]=47 + }, + [5335]={ + ["distance"]=32005, + ["mine_stage"]=23 + }, + [5336]={ + ["distance"]=32011, + ["mine_stage"]=10 + }, + [5337]={ + ["distance"]=32017, + ["mine_stage"]=34 + }, + [5338]={ + ["distance"]=32023, + ["mine_stage"]=7 + }, + [5339]={ + ["distance"]=32029, + ["mine_stage"]=29 + }, + [5340]={ + ["distance"]=32035, + ["mine_stage"]=44 + }, + [5341]={ + ["distance"]=32041, + ["mine_stage"]=50 + }, + [5342]={ + ["distance"]=32047, + ["mine_stage"]=45 + }, + [5343]={ + ["distance"]=32053, + ["mine_stage"]=21 + }, + [5344]={ + ["distance"]=32059, + ["mine_stage"]=21 + }, + [5345]={ + ["distance"]=32065, + ["mine_stage"]=30 + }, + [5346]={ + ["distance"]=32071, + ["mine_stage"]=20 + }, + [5347]={ + ["distance"]=32077, + ["mine_stage"]=55 + }, + [5348]={ + ["distance"]=32083, + ["mine_stage"]=8 + }, + [5349]={ + ["distance"]=32089, + ["mine_stage"]=37 + }, + [5350]={ + ["distance"]=32095, + ["mine_stage"]=37 + }, + [5351]={ + ["distance"]=32101, + ["mine_stage"]=68 + }, + [5352]={ + ["distance"]=32107, + ["mine_stage"]=11 + }, + [5353]={ + ["distance"]=32113, + ["mine_stage"]=15 + }, + [5354]={ + ["distance"]=32119, + ["mine_stage"]=51 + }, + [5355]={ + ["distance"]=32125, + ["mine_stage"]=36 + }, + [5356]={ + ["distance"]=32131, + ["mine_stage"]=52 + }, + [5357]={ + ["distance"]=32137, + ["mine_stage"]=19 + }, + [5358]={ + ["distance"]=32143, + ["mine_stage"]=7 + }, + [5359]={ + ["distance"]=32149, + ["mine_stage"]=26 + }, + [5360]={ + ["distance"]=32155, + ["mine_stage"]=10 + }, + [5361]={ + ["distance"]=32161, + ["mine_stage"]=51 + }, + [5362]={ + ["distance"]=32167, + ["mine_stage"]=12 + }, + [5363]={ + ["distance"]=32173, + ["mine_stage"]=5 + }, + [5364]={ + ["distance"]=32179, + ["mine_stage"]=20 + }, + [5365]={ + ["distance"]=32185, + ["mine_stage"]=22 + }, + [5366]={ + ["distance"]=32191, + ["mine_stage"]=16 + }, + [5367]={ + ["distance"]=32197, + ["mine_stage"]=25 + }, + [5368]={ + ["distance"]=32203, + ["mine_stage"]=40 + }, + [5369]={ + ["distance"]=32209, + ["mine_stage"]=37 + }, + [5370]={ + ["distance"]=32215, + ["mine_stage"]=48 + }, + [5371]={ + ["distance"]=32221, + ["mine_stage"]=18 + }, + [5372]={ + ["distance"]=32227, + ["mine_stage"]=50 + }, + [5373]={ + ["distance"]=32233, + ["mine_stage"]=17 + }, + [5374]={ + ["distance"]=32239, + ["mine_stage"]=7 + }, + [5375]={ + ["distance"]=32245, + ["mine_stage"]=58 + }, + [5376]={ + ["distance"]=32251, + ["mine_stage"]=1 + }, + [5377]={ + ["distance"]=32257, + ["mine_stage"]=51 + }, + [5378]={ + ["distance"]=32263, + ["mine_stage"]=52 + }, + [5379]={ + ["distance"]=32269, + ["mine_stage"]=24 + }, + [5380]={ + ["distance"]=32275, + ["mine_stage"]=14 + }, + [5381]={ + ["distance"]=32281, + ["mine_stage"]=6 + }, + [5382]={ + ["distance"]=32287, + ["mine_stage"]=42 + }, + [5383]={ + ["distance"]=32293, + ["mine_stage"]=17 + }, + [5384]={ + ["distance"]=32299, + ["mine_stage"]=22 + }, + [5385]={ + ["distance"]=32305, + ["mine_stage"]=48 + }, + [5386]={ + ["distance"]=32311, + ["mine_stage"]=56 + }, + [5387]={ + ["distance"]=32317, + ["mine_stage"]=19 + }, + [5388]={ + ["distance"]=32323, + ["mine_stage"]=37 + }, + [5389]={ + ["distance"]=32329, + ["mine_stage"]=32 + }, + [5390]={ + ["distance"]=32335, + ["mine_stage"]=46 + }, + [5391]={ + ["distance"]=32341, + ["mine_stage"]=48 + }, + [5392]={ + ["distance"]=32347, + ["mine_stage"]=39 + }, + [5393]={ + ["distance"]=32353, + ["mine_stage"]=19 + }, + [5394]={ + ["distance"]=32359, + ["mine_stage"]=49 + }, + [5395]={ + ["distance"]=32365, + ["mine_stage"]=46 + }, + [5396]={ + ["distance"]=32371, + ["mine_stage"]=20 + }, + [5397]={ + ["distance"]=32377, + ["mine_stage"]=23 + }, + [5398]={ + ["distance"]=32383, + ["mine_stage"]=31 + }, + [5399]={ + ["distance"]=32389, + ["mine_stage"]=52 + }, + [5400]={ + ["distance"]=32395, + ["mine_stage"]=22 + }, + [5401]={ + ["distance"]=32401, + ["mine_stage"]=66 + }, + [5402]={ + ["distance"]=32407, + ["mine_stage"]=50 + }, + [5403]={ + ["distance"]=32413, + ["mine_stage"]=27 + }, + [5404]={ + ["distance"]=32419, + ["mine_stage"]=27 + }, + [5405]={ + ["distance"]=32425, + ["mine_stage"]=25 + }, + [5406]={ + ["distance"]=32431, + ["mine_stage"]=14 + }, + [5407]={ + ["distance"]=32437, + ["mine_stage"]=12 + }, + [5408]={ + ["distance"]=32443, + ["mine_stage"]=28 + }, + [5409]={ + ["distance"]=32449, + ["mine_stage"]=39 + }, + [5410]={ + ["distance"]=32455, + ["mine_stage"]=7 + }, + [5411]={ + ["distance"]=32461, + ["mine_stage"]=6 + }, + [5412]={ + ["distance"]=32467, + ["mine_stage"]=23 + }, + [5413]={ + ["distance"]=32473, + ["mine_stage"]=43 + }, + [5414]={ + ["distance"]=32479, + ["mine_stage"]=12 + }, + [5415]={ + ["distance"]=32485, + ["mine_stage"]=19 + }, + [5416]={ + ["distance"]=32491, + ["mine_stage"]=11 + }, + [5417]={ + ["distance"]=32497, + ["mine_stage"]=58 + }, + [5418]={ + ["distance"]=32503, + ["mine_stage"]=43 + }, + [5419]={ + ["distance"]=32509, + ["mine_stage"]=6 + }, + [5420]={ + ["distance"]=32515, + ["mine_stage"]=31 + }, + [5421]={ + ["distance"]=32521, + ["mine_stage"]=19 + }, + [5422]={ + ["distance"]=32527, + ["mine_stage"]=59 + }, + [5423]={ + ["distance"]=32533, + ["mine_stage"]=50 + }, + [5424]={ + ["distance"]=32539, + ["mine_stage"]=50 + }, + [5425]={ + ["distance"]=32545, + ["mine_stage"]=30 + }, + [5426]={ + ["distance"]=32551, + ["mine_stage"]=11 + }, + [5427]={ + ["distance"]=32557, + ["mine_stage"]=28 + }, + [5428]={ + ["distance"]=32563, + ["mine_stage"]=7 + }, + [5429]={ + ["distance"]=32569, + ["mine_stage"]=46 + }, + [5430]={ + ["distance"]=32575, + ["mine_stage"]=51 + }, + [5431]={ + ["distance"]=32581, + ["mine_stage"]=24 + }, + [5432]={ + ["distance"]=32587, + ["mine_stage"]=58 + }, + [5433]={ + ["distance"]=32593, + ["mine_stage"]=32 + }, + [5434]={ + ["distance"]=32599, + ["mine_stage"]=11 + }, + [5435]={ + ["distance"]=32605, + ["mine_stage"]=17 + }, + [5436]={ + ["distance"]=32611, + ["mine_stage"]=47 + }, + [5437]={ + ["distance"]=32617, + ["mine_stage"]=11 + }, + [5438]={ + ["distance"]=32623, + ["mine_stage"]=2 + }, + [5439]={ + ["distance"]=32629, + ["mine_stage"]=13 + }, + [5440]={ + ["distance"]=32635, + ["mine_stage"]=43 + }, + [5441]={ + ["distance"]=32641, + ["mine_stage"]=43 + }, + [5442]={ + ["distance"]=32647, + ["mine_stage"]=26 + }, + [5443]={ + ["distance"]=32653, + ["mine_stage"]=21 + }, + [5444]={ + ["distance"]=32659, + ["mine_stage"]=23 + }, + [5445]={ + ["distance"]=32665, + ["mine_stage"]=46 + }, + [5446]={ + ["distance"]=32671, + ["mine_stage"]=20 + }, + [5447]={ + ["distance"]=32677, + ["mine_stage"]=33 + }, + [5448]={ + ["distance"]=32683, + ["mine_stage"]=7 + }, + [5449]={ + ["distance"]=32689, + ["mine_stage"]=18 + }, + [5450]={ + ["distance"]=32695, + ["mine_stage"]=20 + }, + [5451]={ + ["distance"]=32701, + ["mine_stage"]=69 + }, + [5452]={ + ["distance"]=32707, + ["mine_stage"]=29 + }, + [5453]={ + ["distance"]=32713, + ["mine_stage"]=59 + }, + [5454]={ + ["distance"]=32719, + ["mine_stage"]=44 + }, + [5455]={ + ["distance"]=32725, + ["mine_stage"]=25 + }, + [5456]={ + ["distance"]=32731, + ["mine_stage"]=3 + }, + [5457]={ + ["distance"]=32737, + ["mine_stage"]=19 + }, + [5458]={ + ["distance"]=32743, + ["mine_stage"]=35 + }, + [5459]={ + ["distance"]=32749, + ["mine_stage"]=55 + }, + [5460]={ + ["distance"]=32755, + ["mine_stage"]=30 + }, + [5461]={ + ["distance"]=32761, + ["mine_stage"]=26 + }, + [5462]={ + ["distance"]=32767, + ["mine_stage"]=12 + }, + [5463]={ + ["distance"]=32773, + ["mine_stage"]=11 + }, + [5464]={ + ["distance"]=32779, + ["mine_stage"]=21 + }, + [5465]={ + ["distance"]=32785, + ["mine_stage"]=41 + }, + [5466]={ + ["distance"]=32791, + ["mine_stage"]=50 + }, + [5467]={ + ["distance"]=32797, + ["mine_stage"]=36 + }, + [5468]={ + ["distance"]=32803, + ["mine_stage"]=15 + }, + [5469]={ + ["distance"]=32809, + ["mine_stage"]=19 + }, + [5470]={ + ["distance"]=32815, + ["mine_stage"]=21 + }, + [5471]={ + ["distance"]=32821, + ["mine_stage"]=7 + }, + [5472]={ + ["distance"]=32827, + ["mine_stage"]=3 + }, + [5473]={ + ["distance"]=32833, + ["mine_stage"]=30 + }, + [5474]={ + ["distance"]=32839, + ["mine_stage"]=45 + }, + [5475]={ + ["distance"]=32845, + ["mine_stage"]=33 + }, + [5476]={ + ["distance"]=32851, + ["mine_stage"]=33 + }, + [5477]={ + ["distance"]=32857, + ["mine_stage"]=35 + }, + [5478]={ + ["distance"]=32863, + ["mine_stage"]=17 + }, + [5479]={ + ["distance"]=32869, + ["mine_stage"]=44 + }, + [5480]={ + ["distance"]=32875, + ["mine_stage"]=53 + }, + [5481]={ + ["distance"]=32881, + ["mine_stage"]=32 + }, + [5482]={ + ["distance"]=32887, + ["mine_stage"]=11 + }, + [5483]={ + ["distance"]=32893, + ["mine_stage"]=29 + }, + [5484]={ + ["distance"]=32899, + ["mine_stage"]=50 + }, + [5485]={ + ["distance"]=32905, + ["mine_stage"]=2 + }, + [5486]={ + ["distance"]=32911, + ["mine_stage"]=3 + }, + [5487]={ + ["distance"]=32917, + ["mine_stage"]=13 + }, + [5488]={ + ["distance"]=32923, + ["mine_stage"]=47 + }, + [5489]={ + ["distance"]=32929, + ["mine_stage"]=38 + }, + [5490]={ + ["distance"]=32935, + ["mine_stage"]=38 + }, + [5491]={ + ["distance"]=32941, + ["mine_stage"]=46 + }, + [5492]={ + ["distance"]=32947, + ["mine_stage"]=49 + }, + [5493]={ + ["distance"]=32953, + ["mine_stage"]=24 + }, + [5494]={ + ["distance"]=32959, + ["mine_stage"]=17 + }, + [5495]={ + ["distance"]=32965, + ["mine_stage"]=40 + }, + [5496]={ + ["distance"]=32971, + ["mine_stage"]=2 + }, + [5497]={ + ["distance"]=32977, + ["mine_stage"]=10 + }, + [5498]={ + ["distance"]=32983, + ["mine_stage"]=40 + }, + [5499]={ + ["distance"]=32989, + ["mine_stage"]=24 + }, + [5500]={ + ["distance"]=32995, + ["mine_stage"]=50 + }, + [5501]={ + ["distance"]=33001, + ["mine_stage"]=64 + }, + [5502]={ + ["distance"]=33007, + ["mine_stage"]=35 + }, + [5503]={ + ["distance"]=33013, + ["mine_stage"]=14 + }, + [5504]={ + ["distance"]=33019, + ["mine_stage"]=25 + }, + [5505]={ + ["distance"]=33025, + ["mine_stage"]=2 + }, + [5506]={ + ["distance"]=33031, + ["mine_stage"]=30 + }, + [5507]={ + ["distance"]=33037, + ["mine_stage"]=58 + }, + [5508]={ + ["distance"]=33043, + ["mine_stage"]=24 + }, + [5509]={ + ["distance"]=33049, + ["mine_stage"]=23 + }, + [5510]={ + ["distance"]=33055, + ["mine_stage"]=10 + }, + [5511]={ + ["distance"]=33061, + ["mine_stage"]=52 + }, + [5512]={ + ["distance"]=33067, + ["mine_stage"]=17 + }, + [5513]={ + ["distance"]=33073, + ["mine_stage"]=39 + }, + [5514]={ + ["distance"]=33079, + ["mine_stage"]=16 + }, + [5515]={ + ["distance"]=33085, + ["mine_stage"]=6 + }, + [5516]={ + ["distance"]=33091, + ["mine_stage"]=45 + }, + [5517]={ + ["distance"]=33097, + ["mine_stage"]=30 + }, + [5518]={ + ["distance"]=33103, + ["mine_stage"]=8 + }, + [5519]={ + ["distance"]=33109, + ["mine_stage"]=53 + }, + [5520]={ + ["distance"]=33115, + ["mine_stage"]=34 + }, + [5521]={ + ["distance"]=33121, + ["mine_stage"]=56 + }, + [5522]={ + ["distance"]=33127, + ["mine_stage"]=12 + }, + [5523]={ + ["distance"]=33133, + ["mine_stage"]=54 + }, + [5524]={ + ["distance"]=33139, + ["mine_stage"]=36 + }, + [5525]={ + ["distance"]=33145, + ["mine_stage"]=9 + }, + [5526]={ + ["distance"]=33151, + ["mine_stage"]=25 + }, + [5527]={ + ["distance"]=33157, + ["mine_stage"]=7 + }, + [5528]={ + ["distance"]=33163, + ["mine_stage"]=11 + }, + [5529]={ + ["distance"]=33169, + ["mine_stage"]=13 + }, + [5530]={ + ["distance"]=33175, + ["mine_stage"]=44 + }, + [5531]={ + ["distance"]=33181, + ["mine_stage"]=31 + }, + [5532]={ + ["distance"]=33187, + ["mine_stage"]=14 + }, + [5533]={ + ["distance"]=33193, + ["mine_stage"]=60 + }, + [5534]={ + ["distance"]=33199, + ["mine_stage"]=18 + }, + [5535]={ + ["distance"]=33205, + ["mine_stage"]=4 + }, + [5536]={ + ["distance"]=33211, + ["mine_stage"]=19 + }, + [5537]={ + ["distance"]=33217, + ["mine_stage"]=55 + }, + [5538]={ + ["distance"]=33223, + ["mine_stage"]=29 + }, + [5539]={ + ["distance"]=33229, + ["mine_stage"]=20 + }, + [5540]={ + ["distance"]=33235, + ["mine_stage"]=4 + }, + [5541]={ + ["distance"]=33241, + ["mine_stage"]=3 + }, + [5542]={ + ["distance"]=33247, + ["mine_stage"]=33 + }, + [5543]={ + ["distance"]=33253, + ["mine_stage"]=34 + }, + [5544]={ + ["distance"]=33259, + ["mine_stage"]=25 + }, + [5545]={ + ["distance"]=33265, + ["mine_stage"]=54 + }, + [5546]={ + ["distance"]=33271, + ["mine_stage"]=27 + }, + [5547]={ + ["distance"]=33277, + ["mine_stage"]=7 + }, + [5548]={ + ["distance"]=33283, + ["mine_stage"]=50 + }, + [5549]={ + ["distance"]=33289, + ["mine_stage"]=1 + }, + [5550]={ + ["distance"]=33295, + ["mine_stage"]=24 + }, + [5551]={ + ["distance"]=33301, + ["mine_stage"]=67 + }, + [5552]={ + ["distance"]=33307, + ["mine_stage"]=28 + }, + [5553]={ + ["distance"]=33313, + ["mine_stage"]=55 + }, + [5554]={ + ["distance"]=33319, + ["mine_stage"]=39 + }, + [5555]={ + ["distance"]=33325, + ["mine_stage"]=44 + }, + [5556]={ + ["distance"]=33331, + ["mine_stage"]=20 + }, + [5557]={ + ["distance"]=33337, + ["mine_stage"]=47 + }, + [5558]={ + ["distance"]=33343, + ["mine_stage"]=7 + }, + [5559]={ + ["distance"]=33349, + ["mine_stage"]=32 + }, + [5560]={ + ["distance"]=33355, + ["mine_stage"]=6 + }, + [5561]={ + ["distance"]=33361, + ["mine_stage"]=36 + }, + [5562]={ + ["distance"]=33367, + ["mine_stage"]=32 + }, + [5563]={ + ["distance"]=33373, + ["mine_stage"]=30 + }, + [5564]={ + ["distance"]=33379, + ["mine_stage"]=30 + }, + [5565]={ + ["distance"]=33385, + ["mine_stage"]=27 + }, + [5566]={ + ["distance"]=33391, + ["mine_stage"]=54 + }, + [5567]={ + ["distance"]=33397, + ["mine_stage"]=36 + }, + [5568]={ + ["distance"]=33403, + ["mine_stage"]=34 + }, + [5569]={ + ["distance"]=33409, + ["mine_stage"]=43 + }, + [5570]={ + ["distance"]=33415, + ["mine_stage"]=55 + }, + [5571]={ + ["distance"]=33421, + ["mine_stage"]=10 + }, + [5572]={ + ["distance"]=33427, + ["mine_stage"]=17 + }, + [5573]={ + ["distance"]=33433, + ["mine_stage"]=55 + }, + [5574]={ + ["distance"]=33439, + ["mine_stage"]=21 + }, + [5575]={ + ["distance"]=33445, + ["mine_stage"]=59 + }, + [5576]={ + ["distance"]=33451, + ["mine_stage"]=20 + }, + [5577]={ + ["distance"]=33457, + ["mine_stage"]=20 + }, + [5578]={ + ["distance"]=33463, + ["mine_stage"]=37 + }, + [5579]={ + ["distance"]=33469, + ["mine_stage"]=15 + }, + [5580]={ + ["distance"]=33475, + ["mine_stage"]=44 + }, + [5581]={ + ["distance"]=33481, + ["mine_stage"]=26 + }, + [5582]={ + ["distance"]=33487, + ["mine_stage"]=27 + }, + [5583]={ + ["distance"]=33493, + ["mine_stage"]=11 + }, + [5584]={ + ["distance"]=33499, + ["mine_stage"]=6 + }, + [5585]={ + ["distance"]=33505, + ["mine_stage"]=15 + }, + [5586]={ + ["distance"]=33511, + ["mine_stage"]=59 + }, + [5587]={ + ["distance"]=33517, + ["mine_stage"]=29 + }, + [5588]={ + ["distance"]=33523, + ["mine_stage"]=26 + }, + [5589]={ + ["distance"]=33529, + ["mine_stage"]=23 + }, + [5590]={ + ["distance"]=33535, + ["mine_stage"]=47 + }, + [5591]={ + ["distance"]=33541, + ["mine_stage"]=10 + }, + [5592]={ + ["distance"]=33547, + ["mine_stage"]=56 + }, + [5593]={ + ["distance"]=33553, + ["mine_stage"]=11 + }, + [5594]={ + ["distance"]=33559, + ["mine_stage"]=39 + }, + [5595]={ + ["distance"]=33565, + ["mine_stage"]=57 + }, + [5596]={ + ["distance"]=33571, + ["mine_stage"]=27 + }, + [5597]={ + ["distance"]=33577, + ["mine_stage"]=45 + }, + [5598]={ + ["distance"]=33583, + ["mine_stage"]=37 + }, + [5599]={ + ["distance"]=33589, + ["mine_stage"]=33 + }, + [5600]={ + ["distance"]=33595, + ["mine_stage"]=23 + }, + [5601]={ + ["distance"]=33601, + ["mine_stage"]=65 + }, + [5602]={ + ["distance"]=33607, + ["mine_stage"]=6 + }, + [5603]={ + ["distance"]=33613, + ["mine_stage"]=25 + }, + [5604]={ + ["distance"]=33619, + ["mine_stage"]=22 + }, + [5605]={ + ["distance"]=33625, + ["mine_stage"]=25 + }, + [5606]={ + ["distance"]=33631, + ["mine_stage"]=14 + }, + [5607]={ + ["distance"]=33637, + ["mine_stage"]=17 + }, + [5608]={ + ["distance"]=33643, + ["mine_stage"]=6 + }, + [5609]={ + ["distance"]=33649, + ["mine_stage"]=9 + }, + [5610]={ + ["distance"]=33655, + ["mine_stage"]=50 + }, + [5611]={ + ["distance"]=33661, + ["mine_stage"]=8 + }, + [5612]={ + ["distance"]=33667, + ["mine_stage"]=24 + }, + [5613]={ + ["distance"]=33673, + ["mine_stage"]=60 + }, + [5614]={ + ["distance"]=33679, + ["mine_stage"]=27 + }, + [5615]={ + ["distance"]=33685, + ["mine_stage"]=57 + }, + [5616]={ + ["distance"]=33691, + ["mine_stage"]=44 + }, + [5617]={ + ["distance"]=33697, + ["mine_stage"]=9 + }, + [5618]={ + ["distance"]=33703, + ["mine_stage"]=3 + }, + [5619]={ + ["distance"]=33709, + ["mine_stage"]=16 + }, + [5620]={ + ["distance"]=33715, + ["mine_stage"]=5 + }, + [5621]={ + ["distance"]=33721, + ["mine_stage"]=26 + }, + [5622]={ + ["distance"]=33727, + ["mine_stage"]=10 + }, + [5623]={ + ["distance"]=33733, + ["mine_stage"]=53 + }, + [5624]={ + ["distance"]=33739, + ["mine_stage"]=17 + }, + [5625]={ + ["distance"]=33745, + ["mine_stage"]=18 + }, + [5626]={ + ["distance"]=33751, + ["mine_stage"]=48 + }, + [5627]={ + ["distance"]=33757, + ["mine_stage"]=2 + }, + [5628]={ + ["distance"]=33763, + ["mine_stage"]=34 + }, + [5629]={ + ["distance"]=33769, + ["mine_stage"]=37 + }, + [5630]={ + ["distance"]=33775, + ["mine_stage"]=49 + }, + [5631]={ + ["distance"]=33781, + ["mine_stage"]=48 + }, + [5632]={ + ["distance"]=33787, + ["mine_stage"]=16 + }, + [5633]={ + ["distance"]=33793, + ["mine_stage"]=11 + }, + [5634]={ + ["distance"]=33799, + ["mine_stage"]=60 + }, + [5635]={ + ["distance"]=33805, + ["mine_stage"]=52 + }, + [5636]={ + ["distance"]=33811, + ["mine_stage"]=56 + }, + [5637]={ + ["distance"]=33817, + ["mine_stage"]=49 + }, + [5638]={ + ["distance"]=33823, + ["mine_stage"]=51 + }, + [5639]={ + ["distance"]=33829, + ["mine_stage"]=34 + }, + [5640]={ + ["distance"]=33835, + ["mine_stage"]=52 + }, + [5641]={ + ["distance"]=33841, + ["mine_stage"]=38 + }, + [5642]={ + ["distance"]=33847, + ["mine_stage"]=1 + }, + [5643]={ + ["distance"]=33853, + ["mine_stage"]=18 + }, + [5644]={ + ["distance"]=33859, + ["mine_stage"]=48 + }, + [5645]={ + ["distance"]=33865, + ["mine_stage"]=8 + }, + [5646]={ + ["distance"]=33871, + ["mine_stage"]=20 + }, + [5647]={ + ["distance"]=33877, + ["mine_stage"]=5 + }, + [5648]={ + ["distance"]=33883, + ["mine_stage"]=8 + }, + [5649]={ + ["distance"]=33889, + ["mine_stage"]=57 + }, + [5650]={ + ["distance"]=33895, + ["mine_stage"]=26 + }, + [5651]={ + ["distance"]=33901, + ["mine_stage"]=68 + }, + [5652]={ + ["distance"]=33907, + ["mine_stage"]=39 + }, + [5653]={ + ["distance"]=33913, + ["mine_stage"]=51 + }, + [5654]={ + ["distance"]=33919, + ["mine_stage"]=43 + }, + [5655]={ + ["distance"]=33925, + ["mine_stage"]=19 + }, + [5656]={ + ["distance"]=33931, + ["mine_stage"]=9 + }, + [5657]={ + ["distance"]=33937, + ["mine_stage"]=32 + }, + [5658]={ + ["distance"]=33943, + ["mine_stage"]=7 + }, + [5659]={ + ["distance"]=33949, + ["mine_stage"]=26 + }, + [5660]={ + ["distance"]=33955, + ["mine_stage"]=27 + }, + [5661]={ + ["distance"]=33961, + ["mine_stage"]=58 + }, + [5662]={ + ["distance"]=33967, + ["mine_stage"]=11 + }, + [5663]={ + ["distance"]=33973, + ["mine_stage"]=34 + }, + [5664]={ + ["distance"]=33979, + ["mine_stage"]=52 + }, + [5665]={ + ["distance"]=33985, + ["mine_stage"]=48 + }, + [5666]={ + ["distance"]=33991, + ["mine_stage"]=18 + }, + [5667]={ + ["distance"]=33997, + ["mine_stage"]=6 + }, + [5668]={ + ["distance"]=34003, + ["mine_stage"]=10 + }, + [5669]={ + ["distance"]=34009, + ["mine_stage"]=30 + }, + [5670]={ + ["distance"]=34015, + ["mine_stage"]=13 + }, + [5671]={ + ["distance"]=34021, + ["mine_stage"]=55 + }, + [5672]={ + ["distance"]=34027, + ["mine_stage"]=42 + }, + [5673]={ + ["distance"]=34033, + ["mine_stage"]=49 + }, + [5674]={ + ["distance"]=34039, + ["mine_stage"]=60 + }, + [5675]={ + ["distance"]=34045, + ["mine_stage"]=2 + }, + [5676]={ + ["distance"]=34051, + ["mine_stage"]=22 + }, + [5677]={ + ["distance"]=34057, + ["mine_stage"]=44 + }, + [5678]={ + ["distance"]=34063, + ["mine_stage"]=40 + }, + [5679]={ + ["distance"]=34069, + ["mine_stage"]=14 + }, + [5680]={ + ["distance"]=34075, + ["mine_stage"]=3 + }, + [5681]={ + ["distance"]=34081, + ["mine_stage"]=44 + }, + [5682]={ + ["distance"]=34087, + ["mine_stage"]=4 + }, + [5683]={ + ["distance"]=34093, + ["mine_stage"]=59 + }, + [5684]={ + ["distance"]=34099, + ["mine_stage"]=14 + }, + [5685]={ + ["distance"]=34105, + ["mine_stage"]=15 + }, + [5686]={ + ["distance"]=34111, + ["mine_stage"]=37 + }, + [5687]={ + ["distance"]=34117, + ["mine_stage"]=12 + }, + [5688]={ + ["distance"]=34123, + ["mine_stage"]=16 + }, + [5689]={ + ["distance"]=34129, + ["mine_stage"]=12 + }, + [5690]={ + ["distance"]=34135, + ["mine_stage"]=32 + }, + [5691]={ + ["distance"]=34141, + ["mine_stage"]=6 + }, + [5692]={ + ["distance"]=34147, + ["mine_stage"]=6 + }, + [5693]={ + ["distance"]=34153, + ["mine_stage"]=35 + }, + [5694]={ + ["distance"]=34159, + ["mine_stage"]=17 + }, + [5695]={ + ["distance"]=34165, + ["mine_stage"]=46 + }, + [5696]={ + ["distance"]=34171, + ["mine_stage"]=58 + }, + [5697]={ + ["distance"]=34177, + ["mine_stage"]=54 + }, + [5698]={ + ["distance"]=34183, + ["mine_stage"]=8 + }, + [5699]={ + ["distance"]=34189, + ["mine_stage"]=23 + }, + [5700]={ + ["distance"]=34195, + ["mine_stage"]=22 + }, + [5701]={ + ["distance"]=34201, + ["mine_stage"]=66 + }, + [5702]={ + ["distance"]=34207, + ["mine_stage"]=1 + }, + [5703]={ + ["distance"]=34213, + ["mine_stage"]=34 + }, + [5704]={ + ["distance"]=34219, + ["mine_stage"]=31 + }, + [5705]={ + ["distance"]=34225, + ["mine_stage"]=45 + }, + [5706]={ + ["distance"]=34231, + ["mine_stage"]=51 + }, + [5707]={ + ["distance"]=34237, + ["mine_stage"]=46 + }, + [5708]={ + ["distance"]=34243, + ["mine_stage"]=37 + }, + [5709]={ + ["distance"]=34249, + ["mine_stage"]=52 + }, + [5710]={ + ["distance"]=34255, + ["mine_stage"]=4 + }, + [5711]={ + ["distance"]=34261, + ["mine_stage"]=51 + }, + [5712]={ + ["distance"]=34267, + ["mine_stage"]=45 + }, + [5713]={ + ["distance"]=34273, + ["mine_stage"]=47 + }, + [5714]={ + ["distance"]=34279, + ["mine_stage"]=8 + }, + [5715]={ + ["distance"]=34285, + ["mine_stage"]=59 + }, + [5716]={ + ["distance"]=34291, + ["mine_stage"]=31 + }, + [5717]={ + ["distance"]=34297, + ["mine_stage"]=31 + }, + [5718]={ + ["distance"]=34303, + ["mine_stage"]=35 + }, + [5719]={ + ["distance"]=34309, + ["mine_stage"]=45 + }, + [5720]={ + ["distance"]=34315, + ["mine_stage"]=31 + }, + [5721]={ + ["distance"]=34321, + ["mine_stage"]=17 + }, + [5722]={ + ["distance"]=34327, + ["mine_stage"]=21 + }, + [5723]={ + ["distance"]=34333, + ["mine_stage"]=28 + }, + [5724]={ + ["distance"]=34339, + ["mine_stage"]=29 + }, + [5725]={ + ["distance"]=34345, + ["mine_stage"]=3 + }, + [5726]={ + ["distance"]=34351, + ["mine_stage"]=44 + }, + [5727]={ + ["distance"]=34357, + ["mine_stage"]=2 + }, + [5728]={ + ["distance"]=34363, + ["mine_stage"]=50 + }, + [5729]={ + ["distance"]=34369, + ["mine_stage"]=45 + }, + [5730]={ + ["distance"]=34375, + ["mine_stage"]=55 + }, + [5731]={ + ["distance"]=34381, + ["mine_stage"]=33 + }, + [5732]={ + ["distance"]=34387, + ["mine_stage"]=40 + }, + [5733]={ + ["distance"]=34393, + ["mine_stage"]=47 + }, + [5734]={ + ["distance"]=34399, + ["mine_stage"]=33 + }, + [5735]={ + ["distance"]=34405, + ["mine_stage"]=33 + }, + [5736]={ + ["distance"]=34411, + ["mine_stage"]=17 + }, + [5737]={ + ["distance"]=34417, + ["mine_stage"]=2 + }, + [5738]={ + ["distance"]=34423, + ["mine_stage"]=20 + }, + [5739]={ + ["distance"]=34429, + ["mine_stage"]=36 + }, + [5740]={ + ["distance"]=34435, + ["mine_stage"]=25 + }, + [5741]={ + ["distance"]=34441, + ["mine_stage"]=50 + }, + [5742]={ + ["distance"]=34447, + ["mine_stage"]=53 + }, + [5743]={ + ["distance"]=34453, + ["mine_stage"]=7 + }, + [5744]={ + ["distance"]=34459, + ["mine_stage"]=24 + }, + [5745]={ + ["distance"]=34465, + ["mine_stage"]=1 + }, + [5746]={ + ["distance"]=34471, + ["mine_stage"]=18 + }, + [5747]={ + ["distance"]=34477, + ["mine_stage"]=48 + }, + [5748]={ + ["distance"]=34483, + ["mine_stage"]=45 + }, + [5749]={ + ["distance"]=34489, + ["mine_stage"]=8 + }, + [5750]={ + ["distance"]=34495, + ["mine_stage"]=6 + }, + [5751]={ + ["distance"]=34501, + ["mine_stage"]=69 + }, + [5752]={ + ["distance"]=34507, + ["mine_stage"]=46 + }, + [5753]={ + ["distance"]=34513, + ["mine_stage"]=7 + }, + [5754]={ + ["distance"]=34519, + ["mine_stage"]=21 + }, + [5755]={ + ["distance"]=34525, + ["mine_stage"]=30 + }, + [5756]={ + ["distance"]=34531, + ["mine_stage"]=35 + }, + [5757]={ + ["distance"]=34537, + ["mine_stage"]=11 + }, + [5758]={ + ["distance"]=34543, + ["mine_stage"]=34 + }, + [5759]={ + ["distance"]=34549, + ["mine_stage"]=14 + }, + [5760]={ + ["distance"]=34555, + ["mine_stage"]=49 + }, + [5761]={ + ["distance"]=34561, + ["mine_stage"]=30 + }, + [5762]={ + ["distance"]=34567, + ["mine_stage"]=35 + }, + [5763]={ + ["distance"]=34573, + ["mine_stage"]=48 + }, + [5764]={ + ["distance"]=34579, + ["mine_stage"]=24 + }, + [5765]={ + ["distance"]=34585, + ["mine_stage"]=29 + }, + [5766]={ + ["distance"]=34591, + ["mine_stage"]=58 + }, + [5767]={ + ["distance"]=34597, + ["mine_stage"]=21 + }, + [5768]={ + ["distance"]=34603, + ["mine_stage"]=35 + }, + [5769]={ + ["distance"]=34609, + ["mine_stage"]=46 + }, + [5770]={ + ["distance"]=34615, + ["mine_stage"]=38 + }, + [5771]={ + ["distance"]=34621, + ["mine_stage"]=57 + }, + [5772]={ + ["distance"]=34627, + ["mine_stage"]=38 + }, + [5773]={ + ["distance"]=34633, + ["mine_stage"]=46 + }, + [5774]={ + ["distance"]=34639, + ["mine_stage"]=34 + }, + [5775]={ + ["distance"]=34645, + ["mine_stage"]=43 + }, + [5776]={ + ["distance"]=34651, + ["mine_stage"]=51 + }, + [5777]={ + ["distance"]=34657, + ["mine_stage"]=21 + }, + [5778]={ + ["distance"]=34663, + ["mine_stage"]=49 + }, + [5779]={ + ["distance"]=34669, + ["mine_stage"]=35 + }, + [5780]={ + ["distance"]=34675, + ["mine_stage"]=17 + }, + [5781]={ + ["distance"]=34681, + ["mine_stage"]=34 + }, + [5782]={ + ["distance"]=34687, + ["mine_stage"]=35 + }, + [5783]={ + ["distance"]=34693, + ["mine_stage"]=13 + }, + [5784]={ + ["distance"]=34699, + ["mine_stage"]=54 + }, + [5785]={ + ["distance"]=34705, + ["mine_stage"]=18 + }, + [5786]={ + ["distance"]=34711, + ["mine_stage"]=56 + }, + [5787]={ + ["distance"]=34717, + ["mine_stage"]=40 + }, + [5788]={ + ["distance"]=34723, + ["mine_stage"]=60 + }, + [5789]={ + ["distance"]=34729, + ["mine_stage"]=50 + }, + [5790]={ + ["distance"]=34735, + ["mine_stage"]=59 + }, + [5791]={ + ["distance"]=34741, + ["mine_stage"]=57 + }, + [5792]={ + ["distance"]=34747, + ["mine_stage"]=5 + }, + [5793]={ + ["distance"]=34753, + ["mine_stage"]=25 + }, + [5794]={ + ["distance"]=34759, + ["mine_stage"]=38 + }, + [5795]={ + ["distance"]=34765, + ["mine_stage"]=6 + }, + [5796]={ + ["distance"]=34771, + ["mine_stage"]=4 + }, + [5797]={ + ["distance"]=34777, + ["mine_stage"]=4 + }, + [5798]={ + ["distance"]=34783, + ["mine_stage"]=47 + }, + [5799]={ + ["distance"]=34789, + ["mine_stage"]=33 + }, + [5800]={ + ["distance"]=34795, + ["mine_stage"]=2 + }, + [5801]={ + ["distance"]=34801, + ["mine_stage"]=64 + }, + [5802]={ + ["distance"]=34807, + ["mine_stage"]=43 + }, + [5803]={ + ["distance"]=34813, + ["mine_stage"]=13 + }, + [5804]={ + ["distance"]=34819, + ["mine_stage"]=24 + }, + [5805]={ + ["distance"]=34825, + ["mine_stage"]=20 + }, + [5806]={ + ["distance"]=34831, + ["mine_stage"]=1 + }, + [5807]={ + ["distance"]=34837, + ["mine_stage"]=34 + }, + [5808]={ + ["distance"]=34843, + ["mine_stage"]=42 + }, + [5809]={ + ["distance"]=34849, + ["mine_stage"]=55 + }, + [5810]={ + ["distance"]=34855, + ["mine_stage"]=14 + }, + [5811]={ + ["distance"]=34861, + ["mine_stage"]=8 + }, + [5812]={ + ["distance"]=34867, + ["mine_stage"]=55 + }, + [5813]={ + ["distance"]=34873, + ["mine_stage"]=15 + }, + [5814]={ + ["distance"]=34879, + ["mine_stage"]=21 + }, + [5815]={ + ["distance"]=34885, + ["mine_stage"]=20 + }, + [5816]={ + ["distance"]=34891, + ["mine_stage"]=47 + }, + [5817]={ + ["distance"]=34897, + ["mine_stage"]=15 + }, + [5818]={ + ["distance"]=34903, + ["mine_stage"]=27 + }, + [5819]={ + ["distance"]=34909, + ["mine_stage"]=21 + }, + [5820]={ + ["distance"]=34915, + ["mine_stage"]=27 + }, + [5821]={ + ["distance"]=34921, + ["mine_stage"]=24 + }, + [5822]={ + ["distance"]=34927, + ["mine_stage"]=59 + }, + [5823]={ + ["distance"]=34933, + ["mine_stage"]=11 + }, + [5824]={ + ["distance"]=34939, + ["mine_stage"]=53 + }, + [5825]={ + ["distance"]=34945, + ["mine_stage"]=56 + }, + [5826]={ + ["distance"]=34951, + ["mine_stage"]=1 + }, + [5827]={ + ["distance"]=34957, + ["mine_stage"]=53 + }, + [5828]={ + ["distance"]=34963, + ["mine_stage"]=25 + }, + [5829]={ + ["distance"]=34969, + ["mine_stage"]=21 + }, + [5830]={ + ["distance"]=34975, + ["mine_stage"]=45 + }, + [5831]={ + ["distance"]=34981, + ["mine_stage"]=33 + }, + [5832]={ + ["distance"]=34987, + ["mine_stage"]=50 + }, + [5833]={ + ["distance"]=34993, + ["mine_stage"]=60 + }, + [5834]={ + ["distance"]=34999, + ["mine_stage"]=27 + }, + [5835]={ + ["distance"]=35005, + ["mine_stage"]=24 + }, + [5836]={ + ["distance"]=35011, + ["mine_stage"]=26 + }, + [5837]={ + ["distance"]=35017, + ["mine_stage"]=11 + }, + [5838]={ + ["distance"]=35023, + ["mine_stage"]=16 + }, + [5839]={ + ["distance"]=35029, + ["mine_stage"]=38 + }, + [5840]={ + ["distance"]=35035, + ["mine_stage"]=37 + }, + [5841]={ + ["distance"]=35041, + ["mine_stage"]=16 + }, + [5842]={ + ["distance"]=35047, + ["mine_stage"]=9 + }, + [5843]={ + ["distance"]=35053, + ["mine_stage"]=32 + }, + [5844]={ + ["distance"]=35059, + ["mine_stage"]=51 + }, + [5845]={ + ["distance"]=35065, + ["mine_stage"]=60 + }, + [5846]={ + ["distance"]=35071, + ["mine_stage"]=41 + }, + [5847]={ + ["distance"]=35077, + ["mine_stage"]=57 + }, + [5848]={ + ["distance"]=35083, + ["mine_stage"]=19 + }, + [5849]={ + ["distance"]=35089, + ["mine_stage"]=5 + }, + [5850]={ + ["distance"]=35095, + ["mine_stage"]=41 + }, + [5851]={ + ["distance"]=35101, + ["mine_stage"]=67 + }, + [5852]={ + ["distance"]=35107, + ["mine_stage"]=11 + }, + [5853]={ + ["distance"]=35113, + ["mine_stage"]=3 + }, + [5854]={ + ["distance"]=35119, + ["mine_stage"]=43 + }, + [5855]={ + ["distance"]=35125, + ["mine_stage"]=7 + }, + [5856]={ + ["distance"]=35131, + ["mine_stage"]=28 + }, + [5857]={ + ["distance"]=35137, + ["mine_stage"]=26 + }, + [5858]={ + ["distance"]=35143, + ["mine_stage"]=29 + }, + [5859]={ + ["distance"]=35149, + ["mine_stage"]=17 + }, + [5860]={ + ["distance"]=35155, + ["mine_stage"]=52 + }, + [5861]={ + ["distance"]=35161, + ["mine_stage"]=14 + }, + [5862]={ + ["distance"]=35167, + ["mine_stage"]=57 + }, + [5863]={ + ["distance"]=35173, + ["mine_stage"]=8 + }, + [5864]={ + ["distance"]=35179, + ["mine_stage"]=46 + }, + [5865]={ + ["distance"]=35185, + ["mine_stage"]=22 + }, + [5866]={ + ["distance"]=35191, + ["mine_stage"]=48 + }, + [5867]={ + ["distance"]=35197, + ["mine_stage"]=33 + }, + [5868]={ + ["distance"]=35203, + ["mine_stage"]=33 + }, + [5869]={ + ["distance"]=35209, + ["mine_stage"]=10 + }, + [5870]={ + ["distance"]=35215, + ["mine_stage"]=50 + }, + [5871]={ + ["distance"]=35221, + ["mine_stage"]=52 + }, + [5872]={ + ["distance"]=35227, + ["mine_stage"]=55 + }, + [5873]={ + ["distance"]=35233, + ["mine_stage"]=27 + }, + [5874]={ + ["distance"]=35239, + ["mine_stage"]=52 + }, + [5875]={ + ["distance"]=35245, + ["mine_stage"]=33 + }, + [5876]={ + ["distance"]=35251, + ["mine_stage"]=23 + }, + [5877]={ + ["distance"]=35257, + ["mine_stage"]=3 + }, + [5878]={ + ["distance"]=35263, + ["mine_stage"]=32 + }, + [5879]={ + ["distance"]=35269, + ["mine_stage"]=40 + }, + [5880]={ + ["distance"]=35275, + ["mine_stage"]=55 + }, + [5881]={ + ["distance"]=35281, + ["mine_stage"]=20 + }, + [5882]={ + ["distance"]=35287, + ["mine_stage"]=42 + }, + [5883]={ + ["distance"]=35293, + ["mine_stage"]=34 + }, + [5884]={ + ["distance"]=35299, + ["mine_stage"]=50 + }, + [5885]={ + ["distance"]=35305, + ["mine_stage"]=57 + }, + [5886]={ + ["distance"]=35311, + ["mine_stage"]=19 + }, + [5887]={ + ["distance"]=35317, + ["mine_stage"]=15 + }, + [5888]={ + ["distance"]=35323, + ["mine_stage"]=15 + }, + [5889]={ + ["distance"]=35329, + ["mine_stage"]=15 + }, + [5890]={ + ["distance"]=35335, + ["mine_stage"]=48 + }, + [5891]={ + ["distance"]=35341, + ["mine_stage"]=11 + }, + [5892]={ + ["distance"]=35347, + ["mine_stage"]=23 + }, + [5893]={ + ["distance"]=35353, + ["mine_stage"]=6 + }, + [5894]={ + ["distance"]=35359, + ["mine_stage"]=36 + }, + [5895]={ + ["distance"]=35365, + ["mine_stage"]=56 + }, + [5896]={ + ["distance"]=35371, + ["mine_stage"]=22 + }, + [5897]={ + ["distance"]=35377, + ["mine_stage"]=58 + }, + [5898]={ + ["distance"]=35383, + ["mine_stage"]=11 + }, + [5899]={ + ["distance"]=35389, + ["mine_stage"]=3 + }, + [5900]={ + ["distance"]=35395, + ["mine_stage"]=33 + }, + [5901]={ + ["distance"]=35401, + ["mine_stage"]=65 + }, + [5902]={ + ["distance"]=35407, + ["mine_stage"]=34 + }, + [5903]={ + ["distance"]=35413, + ["mine_stage"]=1 + }, + [5904]={ + ["distance"]=35419, + ["mine_stage"]=6 + }, + [5905]={ + ["distance"]=35425, + ["mine_stage"]=20 + }, + [5906]={ + ["distance"]=35431, + ["mine_stage"]=23 + }, + [5907]={ + ["distance"]=35437, + ["mine_stage"]=11 + }, + [5908]={ + ["distance"]=35443, + ["mine_stage"]=36 + }, + [5909]={ + ["distance"]=35449, + ["mine_stage"]=17 + }, + [5910]={ + ["distance"]=35455, + ["mine_stage"]=33 + }, + [5911]={ + ["distance"]=35461, + ["mine_stage"]=29 + }, + [5912]={ + ["distance"]=35467, + ["mine_stage"]=44 + }, + [5913]={ + ["distance"]=35473, + ["mine_stage"]=58 + }, + [5914]={ + ["distance"]=35479, + ["mine_stage"]=56 + }, + [5915]={ + ["distance"]=35485, + ["mine_stage"]=50 + }, + [5916]={ + ["distance"]=35491, + ["mine_stage"]=37 + }, + [5917]={ + ["distance"]=35497, + ["mine_stage"]=37 + }, + [5918]={ + ["distance"]=35503, + ["mine_stage"]=4 + }, + [5919]={ + ["distance"]=35509, + ["mine_stage"]=21 + }, + [5920]={ + ["distance"]=35515, + ["mine_stage"]=30 + }, + [5921]={ + ["distance"]=35521, + ["mine_stage"]=12 + }, + [5922]={ + ["distance"]=35527, + ["mine_stage"]=45 + }, + [5923]={ + ["distance"]=35533, + ["mine_stage"]=37 + }, + [5924]={ + ["distance"]=35539, + ["mine_stage"]=36 + }, + [5925]={ + ["distance"]=35545, + ["mine_stage"]=43 + }, + [5926]={ + ["distance"]=35551, + ["mine_stage"]=55 + }, + [5927]={ + ["distance"]=35557, + ["mine_stage"]=51 + }, + [5928]={ + ["distance"]=35563, + ["mine_stage"]=7 + }, + [5929]={ + ["distance"]=35569, + ["mine_stage"]=9 + }, + [5930]={ + ["distance"]=35575, + ["mine_stage"]=43 + }, + [5931]={ + ["distance"]=35581, + ["mine_stage"]=28 + }, + [5932]={ + ["distance"]=35587, + ["mine_stage"]=59 + }, + [5933]={ + ["distance"]=35593, + ["mine_stage"]=29 + }, + [5934]={ + ["distance"]=35599, + ["mine_stage"]=2 + }, + [5935]={ + ["distance"]=35605, + ["mine_stage"]=50 + }, + [5936]={ + ["distance"]=35611, + ["mine_stage"]=34 + }, + [5937]={ + ["distance"]=35617, + ["mine_stage"]=3 + }, + [5938]={ + ["distance"]=35623, + ["mine_stage"]=13 + }, + [5939]={ + ["distance"]=35629, + ["mine_stage"]=33 + }, + [5940]={ + ["distance"]=35635, + ["mine_stage"]=53 + }, + [5941]={ + ["distance"]=35641, + ["mine_stage"]=47 + }, + [5942]={ + ["distance"]=35647, + ["mine_stage"]=37 + }, + [5943]={ + ["distance"]=35653, + ["mine_stage"]=12 + }, + [5944]={ + ["distance"]=35659, + ["mine_stage"]=11 + }, + [5945]={ + ["distance"]=35665, + ["mine_stage"]=50 + }, + [5946]={ + ["distance"]=35671, + ["mine_stage"]=13 + }, + [5947]={ + ["distance"]=35677, + ["mine_stage"]=5 + }, + [5948]={ + ["distance"]=35683, + ["mine_stage"]=12 + }, + [5949]={ + ["distance"]=35689, + ["mine_stage"]=7 + }, + [5950]={ + ["distance"]=35695, + ["mine_stage"]=33 + }, + [5951]={ + ["distance"]=35701, + ["mine_stage"]=68 + }, + [5952]={ + ["distance"]=35707, + ["mine_stage"]=40 + }, + [5953]={ + ["distance"]=35713, + ["mine_stage"]=6 + }, + [5954]={ + ["distance"]=35719, + ["mine_stage"]=44 + }, + [5955]={ + ["distance"]=35725, + ["mine_stage"]=32 + }, + [5956]={ + ["distance"]=35731, + ["mine_stage"]=24 + }, + [5957]={ + ["distance"]=35737, + ["mine_stage"]=24 + }, + [5958]={ + ["distance"]=35743, + ["mine_stage"]=57 + }, + [5959]={ + ["distance"]=35749, + ["mine_stage"]=26 + }, + [5960]={ + ["distance"]=35755, + ["mine_stage"]=54 + }, + [5961]={ + ["distance"]=35761, + ["mine_stage"]=24 + }, + [5962]={ + ["distance"]=35767, + ["mine_stage"]=17 + }, + [5963]={ + ["distance"]=35773, + ["mine_stage"]=60 + }, + [5964]={ + ["distance"]=35779, + ["mine_stage"]=57 + }, + [5965]={ + ["distance"]=35785, + ["mine_stage"]=11 + }, + [5966]={ + ["distance"]=35791, + ["mine_stage"]=39 + }, + [5967]={ + ["distance"]=35797, + ["mine_stage"]=35 + }, + [5968]={ + ["distance"]=35803, + ["mine_stage"]=5 + }, + [5969]={ + ["distance"]=35809, + ["mine_stage"]=51 + }, + [5970]={ + ["distance"]=35815, + ["mine_stage"]=32 + }, + [5971]={ + ["distance"]=35821, + ["mine_stage"]=37 + }, + [5972]={ + ["distance"]=35827, + ["mine_stage"]=22 + }, + [5973]={ + ["distance"]=35833, + ["mine_stage"]=45 + }, + [5974]={ + ["distance"]=35839, + ["mine_stage"]=48 + }, + [5975]={ + ["distance"]=35845, + ["mine_stage"]=13 + }, + [5976]={ + ["distance"]=35851, + ["mine_stage"]=17 + }, + [5977]={ + ["distance"]=35857, + ["mine_stage"]=20 + }, + [5978]={ + ["distance"]=35863, + ["mine_stage"]=14 + }, + [5979]={ + ["distance"]=35869, + ["mine_stage"]=45 + }, + [5980]={ + ["distance"]=35875, + ["mine_stage"]=31 + }, + [5981]={ + ["distance"]=35881, + ["mine_stage"]=37 + }, + [5982]={ + ["distance"]=35887, + ["mine_stage"]=1 + }, + [5983]={ + ["distance"]=35893, + ["mine_stage"]=19 + }, + [5984]={ + ["distance"]=35899, + ["mine_stage"]=38 + }, + [5985]={ + ["distance"]=35905, + ["mine_stage"]=7 + }, + [5986]={ + ["distance"]=35911, + ["mine_stage"]=52 + }, + [5987]={ + ["distance"]=35917, + ["mine_stage"]=25 + }, + [5988]={ + ["distance"]=35923, + ["mine_stage"]=46 + }, + [5989]={ + ["distance"]=35929, + ["mine_stage"]=26 + }, + [5990]={ + ["distance"]=35935, + ["mine_stage"]=53 + }, + [5991]={ + ["distance"]=35941, + ["mine_stage"]=56 + }, + [5992]={ + ["distance"]=35947, + ["mine_stage"]=35 + }, + [5993]={ + ["distance"]=35953, + ["mine_stage"]=19 + }, + [5994]={ + ["distance"]=35959, + ["mine_stage"]=24 + }, + [5995]={ + ["distance"]=35965, + ["mine_stage"]=16 + }, + [5996]={ + ["distance"]=35971, + ["mine_stage"]=17 + }, + [5997]={ + ["distance"]=35977, + ["mine_stage"]=49 + }, + [5998]={ + ["distance"]=35983, + ["mine_stage"]=54 + }, + [5999]={ + ["distance"]=35989, + ["mine_stage"]=32 + }, + [6000]={ + ["distance"]=35995, + ["mine_stage"]=39 + }, + [6001]={ + ["distance"]=36001, + ["mine_stage"]=66 + }, + [6002]={ + ["distance"]=36007, + ["mine_stage"]=41 + }, + [6003]={ + ["distance"]=36013, + ["mine_stage"]=52 + }, + [6004]={ + ["distance"]=36019, + ["mine_stage"]=23 + }, + [6005]={ + ["distance"]=36025, + ["mine_stage"]=46 + }, + [6006]={ + ["distance"]=36031, + ["mine_stage"]=37 + }, + [6007]={ + ["distance"]=36037, + ["mine_stage"]=52 + }, + [6008]={ + ["distance"]=36043, + ["mine_stage"]=40 + }, + [6009]={ + ["distance"]=36049, + ["mine_stage"]=33 + }, + [6010]={ + ["distance"]=36055, + ["mine_stage"]=3 + }, + [6011]={ + ["distance"]=36061, + ["mine_stage"]=15 + }, + [6012]={ + ["distance"]=36067, + ["mine_stage"]=33 + }, + [6013]={ + ["distance"]=36073, + ["mine_stage"]=59 + }, + [6014]={ + ["distance"]=36079, + ["mine_stage"]=39 + }, + [6015]={ + ["distance"]=36085, + ["mine_stage"]=6 + }, + [6016]={ + ["distance"]=36091, + ["mine_stage"]=3 + }, + [6017]={ + ["distance"]=36097, + ["mine_stage"]=18 + }, + [6018]={ + ["distance"]=36103, + ["mine_stage"]=11 + }, + [6019]={ + ["distance"]=36109, + ["mine_stage"]=37 + }, + [6020]={ + ["distance"]=36115, + ["mine_stage"]=27 + }, + [6021]={ + ["distance"]=36121, + ["mine_stage"]=48 + }, + [6022]={ + ["distance"]=36127, + ["mine_stage"]=8 + }, + [6023]={ + ["distance"]=36133, + ["mine_stage"]=18 + }, + [6024]={ + ["distance"]=36139, + ["mine_stage"]=35 + }, + [6025]={ + ["distance"]=36145, + ["mine_stage"]=16 + }, + [6026]={ + ["distance"]=36151, + ["mine_stage"]=25 + }, + [6027]={ + ["distance"]=36157, + ["mine_stage"]=5 + }, + [6028]={ + ["distance"]=36163, + ["mine_stage"]=18 + }, + [6029]={ + ["distance"]=36169, + ["mine_stage"]=46 + }, + [6030]={ + ["distance"]=36175, + ["mine_stage"]=37 + }, + [6031]={ + ["distance"]=36181, + ["mine_stage"]=18 + }, + [6032]={ + ["distance"]=36187, + ["mine_stage"]=52 + }, + [6033]={ + ["distance"]=36193, + ["mine_stage"]=42 + }, + [6034]={ + ["distance"]=36199, + ["mine_stage"]=14 + }, + [6035]={ + ["distance"]=36205, + ["mine_stage"]=28 + }, + [6036]={ + ["distance"]=36211, + ["mine_stage"]=7 + }, + [6037]={ + ["distance"]=36217, + ["mine_stage"]=7 + }, + [6038]={ + ["distance"]=36223, + ["mine_stage"]=36 + }, + [6039]={ + ["distance"]=36229, + ["mine_stage"]=49 + }, + [6040]={ + ["distance"]=36235, + ["mine_stage"]=11 + }, + [6041]={ + ["distance"]=36241, + ["mine_stage"]=44 + }, + [6042]={ + ["distance"]=36247, + ["mine_stage"]=51 + }, + [6043]={ + ["distance"]=36253, + ["mine_stage"]=29 + }, + [6044]={ + ["distance"]=36259, + ["mine_stage"]=7 + }, + [6045]={ + ["distance"]=36265, + ["mine_stage"]=41 + }, + [6046]={ + ["distance"]=36271, + ["mine_stage"]=38 + }, + [6047]={ + ["distance"]=36277, + ["mine_stage"]=11 + }, + [6048]={ + ["distance"]=36283, + ["mine_stage"]=45 + }, + [6049]={ + ["distance"]=36289, + ["mine_stage"]=14 + }, + [6050]={ + ["distance"]=36295, + ["mine_stage"]=3 + }, + [6051]={ + ["distance"]=36301, + ["mine_stage"]=69 + }, + [6052]={ + ["distance"]=36307, + ["mine_stage"]=49 + }, + [6053]={ + ["distance"]=36313, + ["mine_stage"]=16 + }, + [6054]={ + ["distance"]=36319, + ["mine_stage"]=29 + }, + [6055]={ + ["distance"]=36325, + ["mine_stage"]=6 + }, + [6056]={ + ["distance"]=36331, + ["mine_stage"]=44 + }, + [6057]={ + ["distance"]=36337, + ["mine_stage"]=42 + }, + [6058]={ + ["distance"]=36343, + ["mine_stage"]=30 + }, + [6059]={ + ["distance"]=36349, + ["mine_stage"]=43 + }, + [6060]={ + ["distance"]=36355, + ["mine_stage"]=8 + }, + [6061]={ + ["distance"]=36361, + ["mine_stage"]=41 + }, + [6062]={ + ["distance"]=36367, + ["mine_stage"]=16 + }, + [6063]={ + ["distance"]=36373, + ["mine_stage"]=33 + }, + [6064]={ + ["distance"]=36379, + ["mine_stage"]=13 + }, + [6065]={ + ["distance"]=36385, + ["mine_stage"]=56 + }, + [6066]={ + ["distance"]=36391, + ["mine_stage"]=59 + }, + [6067]={ + ["distance"]=36397, + ["mine_stage"]=29 + }, + [6068]={ + ["distance"]=36403, + ["mine_stage"]=10 + }, + [6069]={ + ["distance"]=36409, + ["mine_stage"]=38 + }, + [6070]={ + ["distance"]=36415, + ["mine_stage"]=33 + }, + [6071]={ + ["distance"]=36421, + ["mine_stage"]=43 + }, + [6072]={ + ["distance"]=36427, + ["mine_stage"]=30 + }, + [6073]={ + ["distance"]=36433, + ["mine_stage"]=2 + }, + [6074]={ + ["distance"]=36439, + ["mine_stage"]=51 + }, + [6075]={ + ["distance"]=36445, + ["mine_stage"]=35 + }, + [6076]={ + ["distance"]=36451, + ["mine_stage"]=4 + }, + [6077]={ + ["distance"]=36457, + ["mine_stage"]=52 + }, + [6078]={ + ["distance"]=36463, + ["mine_stage"]=40 + }, + [6079]={ + ["distance"]=36469, + ["mine_stage"]=32 + }, + [6080]={ + ["distance"]=36475, + ["mine_stage"]=25 + }, + [6081]={ + ["distance"]=36481, + ["mine_stage"]=36 + }, + [6082]={ + ["distance"]=36487, + ["mine_stage"]=59 + }, + [6083]={ + ["distance"]=36493, + ["mine_stage"]=56 + }, + [6084]={ + ["distance"]=36499, + ["mine_stage"]=31 + }, + [6085]={ + ["distance"]=36505, + ["mine_stage"]=55 + }, + [6086]={ + ["distance"]=36511, + ["mine_stage"]=30 + }, + [6087]={ + ["distance"]=36517, + ["mine_stage"]=32 + }, + [6088]={ + ["distance"]=36523, + ["mine_stage"]=46 + }, + [6089]={ + ["distance"]=36529, + ["mine_stage"]=49 + }, + [6090]={ + ["distance"]=36535, + ["mine_stage"]=29 + }, + [6091]={ + ["distance"]=36541, + ["mine_stage"]=40 + }, + [6092]={ + ["distance"]=36547, + ["mine_stage"]=16 + }, + [6093]={ + ["distance"]=36553, + ["mine_stage"]=31 + }, + [6094]={ + ["distance"]=36559, + ["mine_stage"]=54 + }, + [6095]={ + ["distance"]=36565, + ["mine_stage"]=17 + }, + [6096]={ + ["distance"]=36571, + ["mine_stage"]=57 + }, + [6097]={ + ["distance"]=36577, + ["mine_stage"]=56 + }, + [6098]={ + ["distance"]=36583, + ["mine_stage"]=31 + }, + [6099]={ + ["distance"]=36589, + ["mine_stage"]=35 + }, + [6100]={ + ["distance"]=36595, + ["mine_stage"]=56 + }, + [6101]={ + ["distance"]=36601, + ["mine_stage"]=64 + }, + [6102]={ + ["distance"]=36607, + ["mine_stage"]=40 + }, + [6103]={ + ["distance"]=36613, + ["mine_stage"]=7 + }, + [6104]={ + ["distance"]=36619, + ["mine_stage"]=10 + }, + [6105]={ + ["distance"]=36625, + ["mine_stage"]=58 + }, + [6106]={ + ["distance"]=36631, + ["mine_stage"]=42 + }, + [6107]={ + ["distance"]=36637, + ["mine_stage"]=26 + }, + [6108]={ + ["distance"]=36643, + ["mine_stage"]=39 + }, + [6109]={ + ["distance"]=36649, + ["mine_stage"]=1 + }, + [6110]={ + ["distance"]=36655, + ["mine_stage"]=13 + }, + [6111]={ + ["distance"]=36661, + ["mine_stage"]=15 + }, + [6112]={ + ["distance"]=36667, + ["mine_stage"]=9 + }, + [6113]={ + ["distance"]=36673, + ["mine_stage"]=13 + }, + [6114]={ + ["distance"]=36679, + ["mine_stage"]=13 + }, + [6115]={ + ["distance"]=36685, + ["mine_stage"]=59 + }, + [6116]={ + ["distance"]=36691, + ["mine_stage"]=8 + }, + [6117]={ + ["distance"]=36697, + ["mine_stage"]=4 + }, + [6118]={ + ["distance"]=36703, + ["mine_stage"]=56 + }, + [6119]={ + ["distance"]=36709, + ["mine_stage"]=31 + }, + [6120]={ + ["distance"]=36715, + ["mine_stage"]=11 + }, + [6121]={ + ["distance"]=36721, + ["mine_stage"]=37 + }, + [6122]={ + ["distance"]=36727, + ["mine_stage"]=35 + }, + [6123]={ + ["distance"]=36733, + ["mine_stage"]=47 + }, + [6124]={ + ["distance"]=36739, + ["mine_stage"]=20 + }, + [6125]={ + ["distance"]=36745, + ["mine_stage"]=58 + }, + [6126]={ + ["distance"]=36751, + ["mine_stage"]=26 + }, + [6127]={ + ["distance"]=36757, + ["mine_stage"]=12 + }, + [6128]={ + ["distance"]=36763, + ["mine_stage"]=11 + }, + [6129]={ + ["distance"]=36769, + ["mine_stage"]=1 + }, + [6130]={ + ["distance"]=36775, + ["mine_stage"]=2 + }, + [6131]={ + ["distance"]=36781, + ["mine_stage"]=29 + }, + [6132]={ + ["distance"]=36787, + ["mine_stage"]=33 + }, + [6133]={ + ["distance"]=36793, + ["mine_stage"]=46 + }, + [6134]={ + ["distance"]=36799, + ["mine_stage"]=55 + }, + [6135]={ + ["distance"]=36805, + ["mine_stage"]=25 + }, + [6136]={ + ["distance"]=36811, + ["mine_stage"]=42 + }, + [6137]={ + ["distance"]=36817, + ["mine_stage"]=34 + }, + [6138]={ + ["distance"]=36823, + ["mine_stage"]=24 + }, + [6139]={ + ["distance"]=36829, + ["mine_stage"]=60 + }, + [6140]={ + ["distance"]=36835, + ["mine_stage"]=2 + }, + [6141]={ + ["distance"]=36841, + ["mine_stage"]=58 + }, + [6142]={ + ["distance"]=36847, + ["mine_stage"]=41 + }, + [6143]={ + ["distance"]=36853, + ["mine_stage"]=11 + }, + [6144]={ + ["distance"]=36859, + ["mine_stage"]=1 + }, + [6145]={ + ["distance"]=36865, + ["mine_stage"]=28 + }, + [6146]={ + ["distance"]=36871, + ["mine_stage"]=35 + }, + [6147]={ + ["distance"]=36877, + ["mine_stage"]=17 + }, + [6148]={ + ["distance"]=36883, + ["mine_stage"]=27 + }, + [6149]={ + ["distance"]=36889, + ["mine_stage"]=50 + }, + [6150]={ + ["distance"]=36895, + ["mine_stage"]=1 + }, + [6151]={ + ["distance"]=36901, + ["mine_stage"]=67 + }, + [6152]={ + ["distance"]=36907, + ["mine_stage"]=55 + }, + [6153]={ + ["distance"]=36913, + ["mine_stage"]=40 + }, + [6154]={ + ["distance"]=36919, + ["mine_stage"]=4 + }, + [6155]={ + ["distance"]=36925, + ["mine_stage"]=50 + }, + [6156]={ + ["distance"]=36931, + ["mine_stage"]=39 + }, + [6157]={ + ["distance"]=36937, + ["mine_stage"]=8 + }, + [6158]={ + ["distance"]=36943, + ["mine_stage"]=16 + }, + [6159]={ + ["distance"]=36949, + ["mine_stage"]=23 + }, + [6160]={ + ["distance"]=36955, + ["mine_stage"]=17 + }, + [6161]={ + ["distance"]=36961, + ["mine_stage"]=57 + }, + [6162]={ + ["distance"]=36967, + ["mine_stage"]=54 + }, + [6163]={ + ["distance"]=36973, + ["mine_stage"]=13 + }, + [6164]={ + ["distance"]=36979, + ["mine_stage"]=4 + }, + [6165]={ + ["distance"]=36985, + ["mine_stage"]=8 + }, + [6166]={ + ["distance"]=36991, + ["mine_stage"]=36 + }, + [6167]={ + ["distance"]=36997, + ["mine_stage"]=24 + }, + [6168]={ + ["distance"]=37003, + ["mine_stage"]=5 + }, + [6169]={ + ["distance"]=37009, + ["mine_stage"]=14 + }, + [6170]={ + ["distance"]=37015, + ["mine_stage"]=10 + }, + [6171]={ + ["distance"]=37021, + ["mine_stage"]=58 + }, + [6172]={ + ["distance"]=37027, + ["mine_stage"]=55 + }, + [6173]={ + ["distance"]=37033, + ["mine_stage"]=5 + }, + [6174]={ + ["distance"]=37039, + ["mine_stage"]=53 + }, + [6175]={ + ["distance"]=37045, + ["mine_stage"]=44 + }, + [6176]={ + ["distance"]=37051, + ["mine_stage"]=32 + }, + [6177]={ + ["distance"]=37057, + ["mine_stage"]=37 + }, + [6178]={ + ["distance"]=37063, + ["mine_stage"]=2 + }, + [6179]={ + ["distance"]=37069, + ["mine_stage"]=6 + }, + [6180]={ + ["distance"]=37075, + ["mine_stage"]=55 + }, + [6181]={ + ["distance"]=37081, + ["mine_stage"]=46 + }, + [6182]={ + ["distance"]=37087, + ["mine_stage"]=11 + }, + [6183]={ + ["distance"]=37093, + ["mine_stage"]=2 + }, + [6184]={ + ["distance"]=37099, + ["mine_stage"]=2 + }, + [6185]={ + ["distance"]=37105, + ["mine_stage"]=16 + }, + [6186]={ + ["distance"]=37111, + ["mine_stage"]=18 + }, + [6187]={ + ["distance"]=37117, + ["mine_stage"]=56 + }, + [6188]={ + ["distance"]=37123, + ["mine_stage"]=7 + }, + [6189]={ + ["distance"]=37129, + ["mine_stage"]=60 + }, + [6190]={ + ["distance"]=37135, + ["mine_stage"]=35 + }, + [6191]={ + ["distance"]=37141, + ["mine_stage"]=22 + }, + [6192]={ + ["distance"]=37147, + ["mine_stage"]=31 + }, + [6193]={ + ["distance"]=37153, + ["mine_stage"]=29 + }, + [6194]={ + ["distance"]=37159, + ["mine_stage"]=22 + }, + [6195]={ + ["distance"]=37165, + ["mine_stage"]=41 + }, + [6196]={ + ["distance"]=37171, + ["mine_stage"]=12 + }, + [6197]={ + ["distance"]=37177, + ["mine_stage"]=43 + }, + [6198]={ + ["distance"]=37183, + ["mine_stage"]=23 + }, + [6199]={ + ["distance"]=37189, + ["mine_stage"]=8 + }, + [6200]={ + ["distance"]=37195, + ["mine_stage"]=11 + }, + [6201]={ + ["distance"]=37201, + ["mine_stage"]=65 + }, + [6202]={ + ["distance"]=37207, + ["mine_stage"]=52 + }, + [6203]={ + ["distance"]=37213, + ["mine_stage"]=38 + }, + [6204]={ + ["distance"]=37219, + ["mine_stage"]=14 + }, + [6205]={ + ["distance"]=37225, + ["mine_stage"]=26 + }, + [6206]={ + ["distance"]=37231, + ["mine_stage"]=56 + }, + [6207]={ + ["distance"]=37237, + ["mine_stage"]=29 + }, + [6208]={ + ["distance"]=37243, + ["mine_stage"]=55 + }, + [6209]={ + ["distance"]=37249, + ["mine_stage"]=28 + }, + [6210]={ + ["distance"]=37255, + ["mine_stage"]=1 + }, + [6211]={ + ["distance"]=37261, + ["mine_stage"]=56 + }, + [6212]={ + ["distance"]=37267, + ["mine_stage"]=29 + }, + [6213]={ + ["distance"]=37273, + ["mine_stage"]=46 + }, + [6214]={ + ["distance"]=37279, + ["mine_stage"]=20 + }, + [6215]={ + ["distance"]=37285, + ["mine_stage"]=24 + }, + [6216]={ + ["distance"]=37291, + ["mine_stage"]=19 + }, + [6217]={ + ["distance"]=37297, + ["mine_stage"]=2 + }, + [6218]={ + ["distance"]=37303, + ["mine_stage"]=38 + }, + [6219]={ + ["distance"]=37309, + ["mine_stage"]=30 + }, + [6220]={ + ["distance"]=37315, + ["mine_stage"]=14 + }, + [6221]={ + ["distance"]=37321, + ["mine_stage"]=1 + }, + [6222]={ + ["distance"]=37327, + ["mine_stage"]=12 + }, + [6223]={ + ["distance"]=37333, + ["mine_stage"]=59 + }, + [6224]={ + ["distance"]=37339, + ["mine_stage"]=54 + }, + [6225]={ + ["distance"]=37345, + ["mine_stage"]=24 + }, + [6226]={ + ["distance"]=37351, + ["mine_stage"]=2 + }, + [6227]={ + ["distance"]=37357, + ["mine_stage"]=44 + }, + [6228]={ + ["distance"]=37363, + ["mine_stage"]=32 + }, + [6229]={ + ["distance"]=37369, + ["mine_stage"]=34 + }, + [6230]={ + ["distance"]=37375, + ["mine_stage"]=40 + }, + [6231]={ + ["distance"]=37381, + ["mine_stage"]=1 + }, + [6232]={ + ["distance"]=37387, + ["mine_stage"]=47 + }, + [6233]={ + ["distance"]=37393, + ["mine_stage"]=35 + }, + [6234]={ + ["distance"]=37399, + ["mine_stage"]=38 + }, + [6235]={ + ["distance"]=37405, + ["mine_stage"]=45 + }, + [6236]={ + ["distance"]=37411, + ["mine_stage"]=53 + }, + [6237]={ + ["distance"]=37417, + ["mine_stage"]=18 + }, + [6238]={ + ["distance"]=37423, + ["mine_stage"]=8 + }, + [6239]={ + ["distance"]=37429, + ["mine_stage"]=40 + }, + [6240]={ + ["distance"]=37435, + ["mine_stage"]=14 + }, + [6241]={ + ["distance"]=37441, + ["mine_stage"]=34 + }, + [6242]={ + ["distance"]=37447, + ["mine_stage"]=55 + }, + [6243]={ + ["distance"]=37453, + ["mine_stage"]=44 + }, + [6244]={ + ["distance"]=37459, + ["mine_stage"]=30 + }, + [6245]={ + ["distance"]=37465, + ["mine_stage"]=35 + }, + [6246]={ + ["distance"]=37471, + ["mine_stage"]=11 + }, + [6247]={ + ["distance"]=37477, + ["mine_stage"]=17 + }, + [6248]={ + ["distance"]=37483, + ["mine_stage"]=23 + }, + [6249]={ + ["distance"]=37489, + ["mine_stage"]=9 + }, + [6250]={ + ["distance"]=37495, + ["mine_stage"]=52 + }, + [6251]={ + ["distance"]=37501, + ["mine_stage"]=68 + }, + [6252]={ + ["distance"]=37507, + ["mine_stage"]=30 + }, + [6253]={ + ["distance"]=37513, + ["mine_stage"]=44 + }, + [6254]={ + ["distance"]=37519, + ["mine_stage"]=1 + }, + [6255]={ + ["distance"]=37525, + ["mine_stage"]=7 + }, + [6256]={ + ["distance"]=37531, + ["mine_stage"]=9 + }, + [6257]={ + ["distance"]=37537, + ["mine_stage"]=14 + }, + [6258]={ + ["distance"]=37543, + ["mine_stage"]=35 + }, + [6259]={ + ["distance"]=37549, + ["mine_stage"]=48 + }, + [6260]={ + ["distance"]=37555, + ["mine_stage"]=45 + }, + [6261]={ + ["distance"]=37561, + ["mine_stage"]=29 + }, + [6262]={ + ["distance"]=37567, + ["mine_stage"]=27 + }, + [6263]={ + ["distance"]=37573, + ["mine_stage"]=6 + }, + [6264]={ + ["distance"]=37579, + ["mine_stage"]=48 + }, + [6265]={ + ["distance"]=37585, + ["mine_stage"]=16 + }, + [6266]={ + ["distance"]=37591, + ["mine_stage"]=7 + }, + [6267]={ + ["distance"]=37597, + ["mine_stage"]=3 + }, + [6268]={ + ["distance"]=37603, + ["mine_stage"]=24 + }, + [6269]={ + ["distance"]=37609, + ["mine_stage"]=55 + }, + [6270]={ + ["distance"]=37615, + ["mine_stage"]=15 + }, + [6271]={ + ["distance"]=37621, + ["mine_stage"]=51 + }, + [6272]={ + ["distance"]=37627, + ["mine_stage"]=30 + }, + [6273]={ + ["distance"]=37633, + ["mine_stage"]=40 + }, + [6274]={ + ["distance"]=37639, + ["mine_stage"]=59 + }, + [6275]={ + ["distance"]=37645, + ["mine_stage"]=24 + }, + [6276]={ + ["distance"]=37651, + ["mine_stage"]=4 + }, + [6277]={ + ["distance"]=37657, + ["mine_stage"]=37 + }, + [6278]={ + ["distance"]=37663, + ["mine_stage"]=35 + }, + [6279]={ + ["distance"]=37669, + ["mine_stage"]=58 + }, + [6280]={ + ["distance"]=37675, + ["mine_stage"]=41 + }, + [6281]={ + ["distance"]=37681, + ["mine_stage"]=14 + }, + [6282]={ + ["distance"]=37687, + ["mine_stage"]=47 + }, + [6283]={ + ["distance"]=37693, + ["mine_stage"]=19 + }, + [6284]={ + ["distance"]=37699, + ["mine_stage"]=59 + }, + [6285]={ + ["distance"]=37705, + ["mine_stage"]=35 + }, + [6286]={ + ["distance"]=37711, + ["mine_stage"]=35 + }, + [6287]={ + ["distance"]=37717, + ["mine_stage"]=57 + }, + [6288]={ + ["distance"]=37723, + ["mine_stage"]=29 + }, + [6289]={ + ["distance"]=37729, + ["mine_stage"]=4 + }, + [6290]={ + ["distance"]=37735, + ["mine_stage"]=7 + }, + [6291]={ + ["distance"]=37741, + ["mine_stage"]=40 + }, + [6292]={ + ["distance"]=37747, + ["mine_stage"]=54 + }, + [6293]={ + ["distance"]=37753, + ["mine_stage"]=23 + }, + [6294]={ + ["distance"]=37759, + ["mine_stage"]=55 + }, + [6295]={ + ["distance"]=37765, + ["mine_stage"]=9 + }, + [6296]={ + ["distance"]=37771, + ["mine_stage"]=40 + }, + [6297]={ + ["distance"]=37777, + ["mine_stage"]=26 + }, + [6298]={ + ["distance"]=37783, + ["mine_stage"]=31 + }, + [6299]={ + ["distance"]=37789, + ["mine_stage"]=43 + }, + [6300]={ + ["distance"]=37795, + ["mine_stage"]=45 + }, + [6301]={ + ["distance"]=37801, + ["mine_stage"]=66 + }, + [6302]={ + ["distance"]=37807, + ["mine_stage"]=24 + }, + [6303]={ + ["distance"]=37813, + ["mine_stage"]=47 + }, + [6304]={ + ["distance"]=37819, + ["mine_stage"]=51 + }, + [6305]={ + ["distance"]=37825, + ["mine_stage"]=27 + }, + [6306]={ + ["distance"]=37831, + ["mine_stage"]=58 + }, + [6307]={ + ["distance"]=37837, + ["mine_stage"]=42 + }, + [6308]={ + ["distance"]=37843, + ["mine_stage"]=8 + }, + [6309]={ + ["distance"]=37849, + ["mine_stage"]=41 + }, + [6310]={ + ["distance"]=37855, + ["mine_stage"]=47 + }, + [6311]={ + ["distance"]=37861, + ["mine_stage"]=31 + }, + [6312]={ + ["distance"]=37867, + ["mine_stage"]=10 + }, + [6313]={ + ["distance"]=37873, + ["mine_stage"]=56 + }, + [6314]={ + ["distance"]=37879, + ["mine_stage"]=7 + }, + [6315]={ + ["distance"]=37885, + ["mine_stage"]=51 + }, + [6316]={ + ["distance"]=37891, + ["mine_stage"]=60 + }, + [6317]={ + ["distance"]=37897, + ["mine_stage"]=43 + }, + [6318]={ + ["distance"]=37903, + ["mine_stage"]=33 + }, + [6319]={ + ["distance"]=37909, + ["mine_stage"]=42 + }, + [6320]={ + ["distance"]=37915, + ["mine_stage"]=48 + }, + [6321]={ + ["distance"]=37921, + ["mine_stage"]=2 + }, + [6322]={ + ["distance"]=37927, + ["mine_stage"]=33 + }, + [6323]={ + ["distance"]=37933, + ["mine_stage"]=3 + }, + [6324]={ + ["distance"]=37939, + ["mine_stage"]=2 + }, + [6325]={ + ["distance"]=37945, + ["mine_stage"]=45 + }, + [6326]={ + ["distance"]=37951, + ["mine_stage"]=56 + }, + [6327]={ + ["distance"]=37957, + ["mine_stage"]=42 + }, + [6328]={ + ["distance"]=37963, + ["mine_stage"]=50 + }, + [6329]={ + ["distance"]=37969, + ["mine_stage"]=34 + }, + [6330]={ + ["distance"]=37975, + ["mine_stage"]=45 + }, + [6331]={ + ["distance"]=37981, + ["mine_stage"]=33 + }, + [6332]={ + ["distance"]=37987, + ["mine_stage"]=10 + }, + [6333]={ + ["distance"]=37993, + ["mine_stage"]=54 + }, + [6334]={ + ["distance"]=37999, + ["mine_stage"]=2 + }, + [6335]={ + ["distance"]=38005, + ["mine_stage"]=33 + }, + [6336]={ + ["distance"]=38011, + ["mine_stage"]=56 + }, + [6337]={ + ["distance"]=38017, + ["mine_stage"]=56 + }, + [6338]={ + ["distance"]=38023, + ["mine_stage"]=1 + }, + [6339]={ + ["distance"]=38029, + ["mine_stage"]=42 + }, + [6340]={ + ["distance"]=38035, + ["mine_stage"]=48 + }, + [6341]={ + ["distance"]=38041, + ["mine_stage"]=35 + }, + [6342]={ + ["distance"]=38047, + ["mine_stage"]=44 + }, + [6343]={ + ["distance"]=38053, + ["mine_stage"]=40 + }, + [6344]={ + ["distance"]=38059, + ["mine_stage"]=46 + }, + [6345]={ + ["distance"]=38065, + ["mine_stage"]=10 + }, + [6346]={ + ["distance"]=38071, + ["mine_stage"]=3 + }, + [6347]={ + ["distance"]=38077, + ["mine_stage"]=5 + }, + [6348]={ + ["distance"]=38083, + ["mine_stage"]=12 + }, + [6349]={ + ["distance"]=38089, + ["mine_stage"]=12 + }, + [6350]={ + ["distance"]=38095, + ["mine_stage"]=17 + }, + [6351]={ + ["distance"]=38101, + ["mine_stage"]=69 + }, + [6352]={ + ["distance"]=38107, + ["mine_stage"]=44 + }, + [6353]={ + ["distance"]=38113, + ["mine_stage"]=39 + }, + [6354]={ + ["distance"]=38119, + ["mine_stage"]=48 + }, + [6355]={ + ["distance"]=38125, + ["mine_stage"]=18 + }, + [6356]={ + ["distance"]=38131, + ["mine_stage"]=3 + }, + [6357]={ + ["distance"]=38137, + ["mine_stage"]=45 + }, + [6358]={ + ["distance"]=38143, + ["mine_stage"]=18 + }, + [6359]={ + ["distance"]=38149, + ["mine_stage"]=16 + }, + [6360]={ + ["distance"]=38155, + ["mine_stage"]=1 + }, + [6361]={ + ["distance"]=38161, + ["mine_stage"]=4 + }, + [6362]={ + ["distance"]=38167, + ["mine_stage"]=57 + }, + [6363]={ + ["distance"]=38173, + ["mine_stage"]=9 + }, + [6364]={ + ["distance"]=38179, + ["mine_stage"]=6 + }, + [6365]={ + ["distance"]=38185, + ["mine_stage"]=49 + }, + [6366]={ + ["distance"]=38191, + ["mine_stage"]=55 + }, + [6367]={ + ["distance"]=38197, + ["mine_stage"]=19 + }, + [6368]={ + ["distance"]=38203, + ["mine_stage"]=56 + }, + [6369]={ + ["distance"]=38209, + ["mine_stage"]=13 + }, + [6370]={ + ["distance"]=38215, + ["mine_stage"]=12 + }, + [6371]={ + ["distance"]=38221, + ["mine_stage"]=31 + }, + [6372]={ + ["distance"]=38227, + ["mine_stage"]=24 + }, + [6373]={ + ["distance"]=38233, + ["mine_stage"]=52 + }, + [6374]={ + ["distance"]=38239, + ["mine_stage"]=21 + }, + [6375]={ + ["distance"]=38245, + ["mine_stage"]=8 + }, + [6376]={ + ["distance"]=38251, + ["mine_stage"]=43 + }, + [6377]={ + ["distance"]=38257, + ["mine_stage"]=48 + }, + [6378]={ + ["distance"]=38263, + ["mine_stage"]=43 + }, + [6379]={ + ["distance"]=38269, + ["mine_stage"]=40 + }, + [6380]={ + ["distance"]=38275, + ["mine_stage"]=38 + }, + [6381]={ + ["distance"]=38281, + ["mine_stage"]=18 + }, + [6382]={ + ["distance"]=38287, + ["mine_stage"]=30 + }, + [6383]={ + ["distance"]=38293, + ["mine_stage"]=21 + }, + [6384]={ + ["distance"]=38299, + ["mine_stage"]=45 + }, + [6385]={ + ["distance"]=38305, + ["mine_stage"]=4 + }, + [6386]={ + ["distance"]=38311, + ["mine_stage"]=59 + }, + [6387]={ + ["distance"]=38317, + ["mine_stage"]=9 + }, + [6388]={ + ["distance"]=38323, + ["mine_stage"]=33 + }, + [6389]={ + ["distance"]=38329, + ["mine_stage"]=16 + }, + [6390]={ + ["distance"]=38335, + ["mine_stage"]=55 + }, + [6391]={ + ["distance"]=38341, + ["mine_stage"]=13 + }, + [6392]={ + ["distance"]=38347, + ["mine_stage"]=4 + }, + [6393]={ + ["distance"]=38353, + ["mine_stage"]=27 + }, + [6394]={ + ["distance"]=38359, + ["mine_stage"]=20 + }, + [6395]={ + ["distance"]=38365, + ["mine_stage"]=25 + }, + [6396]={ + ["distance"]=38371, + ["mine_stage"]=49 + }, + [6397]={ + ["distance"]=38377, + ["mine_stage"]=24 + }, + [6398]={ + ["distance"]=38383, + ["mine_stage"]=54 + }, + [6399]={ + ["distance"]=38389, + ["mine_stage"]=10 + }, + [6400]={ + ["distance"]=38395, + ["mine_stage"]=18 + }, + [6401]={ + ["distance"]=38401, + ["mine_stage"]=64 + }, + [6402]={ + ["distance"]=38407, + ["mine_stage"]=27 + }, + [6403]={ + ["distance"]=38413, + ["mine_stage"]=12 + }, + [6404]={ + ["distance"]=38419, + ["mine_stage"]=31 + }, + [6405]={ + ["distance"]=38425, + ["mine_stage"]=44 + }, + [6406]={ + ["distance"]=38431, + ["mine_stage"]=45 + }, + [6407]={ + ["distance"]=38437, + ["mine_stage"]=4 + }, + [6408]={ + ["distance"]=38443, + ["mine_stage"]=38 + }, + [6409]={ + ["distance"]=38449, + ["mine_stage"]=41 + }, + [6410]={ + ["distance"]=38455, + ["mine_stage"]=37 + }, + [6411]={ + ["distance"]=38461, + ["mine_stage"]=31 + }, + [6412]={ + ["distance"]=38467, + ["mine_stage"]=8 + }, + [6413]={ + ["distance"]=38473, + ["mine_stage"]=53 + }, + [6414]={ + ["distance"]=38479, + ["mine_stage"]=29 + }, + [6415]={ + ["distance"]=38485, + ["mine_stage"]=32 + }, + [6416]={ + ["distance"]=38491, + ["mine_stage"]=51 + }, + [6417]={ + ["distance"]=38497, + ["mine_stage"]=15 + }, + [6418]={ + ["distance"]=38503, + ["mine_stage"]=10 + }, + [6419]={ + ["distance"]=38509, + ["mine_stage"]=23 + }, + [6420]={ + ["distance"]=38515, + ["mine_stage"]=11 + }, + [6421]={ + ["distance"]=38521, + ["mine_stage"]=13 + }, + [6422]={ + ["distance"]=38527, + ["mine_stage"]=44 + }, + [6423]={ + ["distance"]=38533, + ["mine_stage"]=14 + }, + [6424]={ + ["distance"]=38539, + ["mine_stage"]=39 + }, + [6425]={ + ["distance"]=38545, + ["mine_stage"]=33 + }, + [6426]={ + ["distance"]=38551, + ["mine_stage"]=38 + }, + [6427]={ + ["distance"]=38557, + ["mine_stage"]=19 + }, + [6428]={ + ["distance"]=38563, + ["mine_stage"]=52 + }, + [6429]={ + ["distance"]=38569, + ["mine_stage"]=55 + }, + [6430]={ + ["distance"]=38575, + ["mine_stage"]=32 + }, + [6431]={ + ["distance"]=38581, + ["mine_stage"]=42 + }, + [6432]={ + ["distance"]=38587, + ["mine_stage"]=29 + }, + [6433]={ + ["distance"]=38593, + ["mine_stage"]=32 + }, + [6434]={ + ["distance"]=38599, + ["mine_stage"]=59 + }, + [6435]={ + ["distance"]=38605, + ["mine_stage"]=25 + }, + [6436]={ + ["distance"]=38611, + ["mine_stage"]=11 + }, + [6437]={ + ["distance"]=38617, + ["mine_stage"]=9 + }, + [6438]={ + ["distance"]=38623, + ["mine_stage"]=58 + }, + [6439]={ + ["distance"]=38629, + ["mine_stage"]=40 + }, + [6440]={ + ["distance"]=38635, + ["mine_stage"]=9 + }, + [6441]={ + ["distance"]=38641, + ["mine_stage"]=42 + }, + [6442]={ + ["distance"]=38647, + ["mine_stage"]=18 + }, + [6443]={ + ["distance"]=38653, + ["mine_stage"]=10 + }, + [6444]={ + ["distance"]=38659, + ["mine_stage"]=37 + }, + [6445]={ + ["distance"]=38665, + ["mine_stage"]=51 + }, + [6446]={ + ["distance"]=38671, + ["mine_stage"]=59 + }, + [6447]={ + ["distance"]=38677, + ["mine_stage"]=46 + }, + [6448]={ + ["distance"]=38683, + ["mine_stage"]=51 + }, + [6449]={ + ["distance"]=38689, + ["mine_stage"]=27 + }, + [6450]={ + ["distance"]=38695, + ["mine_stage"]=18 + }, + [6451]={ + ["distance"]=38701, + ["mine_stage"]=67 + }, + [6452]={ + ["distance"]=38707, + ["mine_stage"]=49 + }, + [6453]={ + ["distance"]=38713, + ["mine_stage"]=45 + }, + [6454]={ + ["distance"]=38719, + ["mine_stage"]=35 + }, + [6455]={ + ["distance"]=38725, + ["mine_stage"]=14 + }, + [6456]={ + ["distance"]=38731, + ["mine_stage"]=54 + }, + [6457]={ + ["distance"]=38737, + ["mine_stage"]=55 + }, + [6458]={ + ["distance"]=38743, + ["mine_stage"]=38 + }, + [6459]={ + ["distance"]=38749, + ["mine_stage"]=55 + }, + [6460]={ + ["distance"]=38755, + ["mine_stage"]=9 + }, + [6461]={ + ["distance"]=38761, + ["mine_stage"]=58 + }, + [6462]={ + ["distance"]=38767, + ["mine_stage"]=45 + }, + [6463]={ + ["distance"]=38773, + ["mine_stage"]=29 + }, + [6464]={ + ["distance"]=38779, + ["mine_stage"]=56 + }, + [6465]={ + ["distance"]=38785, + ["mine_stage"]=50 + }, + [6466]={ + ["distance"]=38791, + ["mine_stage"]=49 + }, + [6467]={ + ["distance"]=38797, + ["mine_stage"]=19 + }, + [6468]={ + ["distance"]=38803, + ["mine_stage"]=37 + }, + [6469]={ + ["distance"]=38809, + ["mine_stage"]=35 + }, + [6470]={ + ["distance"]=38815, + ["mine_stage"]=46 + }, + [6471]={ + ["distance"]=38821, + ["mine_stage"]=37 + }, + [6472]={ + ["distance"]=38827, + ["mine_stage"]=34 + }, + [6473]={ + ["distance"]=38833, + ["mine_stage"]=45 + }, + [6474]={ + ["distance"]=38839, + ["mine_stage"]=42 + }, + [6475]={ + ["distance"]=38845, + ["mine_stage"]=39 + }, + [6476]={ + ["distance"]=38851, + ["mine_stage"]=9 + }, + [6477]={ + ["distance"]=38857, + ["mine_stage"]=10 + }, + [6478]={ + ["distance"]=38863, + ["mine_stage"]=22 + }, + [6479]={ + ["distance"]=38869, + ["mine_stage"]=1 + }, + [6480]={ + ["distance"]=38875, + ["mine_stage"]=45 + }, + [6481]={ + ["distance"]=38881, + ["mine_stage"]=41 + }, + [6482]={ + ["distance"]=38887, + ["mine_stage"]=53 + }, + [6483]={ + ["distance"]=38893, + ["mine_stage"]=8 + }, + [6484]={ + ["distance"]=38899, + ["mine_stage"]=53 + }, + [6485]={ + ["distance"]=38905, + ["mine_stage"]=3 + }, + [6486]={ + ["distance"]=38911, + ["mine_stage"]=54 + }, + [6487]={ + ["distance"]=38917, + ["mine_stage"]=14 + }, + [6488]={ + ["distance"]=38923, + ["mine_stage"]=15 + }, + [6489]={ + ["distance"]=38929, + ["mine_stage"]=41 + }, + [6490]={ + ["distance"]=38935, + ["mine_stage"]=9 + }, + [6491]={ + ["distance"]=38941, + ["mine_stage"]=3 + }, + [6492]={ + ["distance"]=38947, + ["mine_stage"]=11 + }, + [6493]={ + ["distance"]=38953, + ["mine_stage"]=49 + }, + [6494]={ + ["distance"]=38959, + ["mine_stage"]=52 + }, + [6495]={ + ["distance"]=38965, + ["mine_stage"]=26 + }, + [6496]={ + ["distance"]=38971, + ["mine_stage"]=19 + }, + [6497]={ + ["distance"]=38977, + ["mine_stage"]=25 + }, + [6498]={ + ["distance"]=38983, + ["mine_stage"]=38 + }, + [6499]={ + ["distance"]=38989, + ["mine_stage"]=11 + }, + [6500]={ + ["distance"]=38995, + ["mine_stage"]=49 + }, + [6501]={ + ["distance"]=39001, + ["mine_stage"]=65 + }, + [6502]={ + ["distance"]=39007, + ["mine_stage"]=31 + }, + [6503]={ + ["distance"]=39013, + ["mine_stage"]=54 + }, + [6504]={ + ["distance"]=39019, + ["mine_stage"]=46 + }, + [6505]={ + ["distance"]=39025, + ["mine_stage"]=16 + }, + [6506]={ + ["distance"]=39031, + ["mine_stage"]=51 + }, + [6507]={ + ["distance"]=39037, + ["mine_stage"]=33 + }, + [6508]={ + ["distance"]=39043, + ["mine_stage"]=11 + }, + [6509]={ + ["distance"]=39049, + ["mine_stage"]=14 + }, + [6510]={ + ["distance"]=39055, + ["mine_stage"]=13 + }, + [6511]={ + ["distance"]=39061, + ["mine_stage"]=18 + }, + [6512]={ + ["distance"]=39067, + ["mine_stage"]=57 + }, + [6513]={ + ["distance"]=39073, + ["mine_stage"]=5 + }, + [6514]={ + ["distance"]=39079, + ["mine_stage"]=58 + }, + [6515]={ + ["distance"]=39085, + ["mine_stage"]=19 + }, + [6516]={ + ["distance"]=39091, + ["mine_stage"]=19 + }, + [6517]={ + ["distance"]=39097, + ["mine_stage"]=7 + }, + [6518]={ + ["distance"]=39103, + ["mine_stage"]=7 + }, + [6519]={ + ["distance"]=39109, + ["mine_stage"]=23 + }, + [6520]={ + ["distance"]=39115, + ["mine_stage"]=5 + }, + [6521]={ + ["distance"]=39121, + ["mine_stage"]=16 + }, + [6522]={ + ["distance"]=39127, + ["mine_stage"]=29 + }, + [6523]={ + ["distance"]=39133, + ["mine_stage"]=11 + }, + [6524]={ + ["distance"]=39139, + ["mine_stage"]=27 + }, + [6525]={ + ["distance"]=39145, + ["mine_stage"]=20 + }, + [6526]={ + ["distance"]=39151, + ["mine_stage"]=2 + }, + [6527]={ + ["distance"]=39157, + ["mine_stage"]=5 + }, + [6528]={ + ["distance"]=39163, + ["mine_stage"]=27 + }, + [6529]={ + ["distance"]=39169, + ["mine_stage"]=37 + }, + [6530]={ + ["distance"]=39175, + ["mine_stage"]=47 + }, + [6531]={ + ["distance"]=39181, + ["mine_stage"]=60 + }, + [6532]={ + ["distance"]=39187, + ["mine_stage"]=42 + }, + [6533]={ + ["distance"]=39193, + ["mine_stage"]=55 + }, + [6534]={ + ["distance"]=39199, + ["mine_stage"]=24 + }, + [6535]={ + ["distance"]=39205, + ["mine_stage"]=9 + }, + [6536]={ + ["distance"]=39211, + ["mine_stage"]=1 + }, + [6537]={ + ["distance"]=39217, + ["mine_stage"]=15 + }, + [6538]={ + ["distance"]=39223, + ["mine_stage"]=13 + }, + [6539]={ + ["distance"]=39229, + ["mine_stage"]=12 + }, + [6540]={ + ["distance"]=39235, + ["mine_stage"]=13 + }, + [6541]={ + ["distance"]=39241, + ["mine_stage"]=26 + }, + [6542]={ + ["distance"]=39247, + ["mine_stage"]=17 + }, + [6543]={ + ["distance"]=39253, + ["mine_stage"]=30 + }, + [6544]={ + ["distance"]=39259, + ["mine_stage"]=56 + }, + [6545]={ + ["distance"]=39265, + ["mine_stage"]=26 + }, + [6546]={ + ["distance"]=39271, + ["mine_stage"]=47 + }, + [6547]={ + ["distance"]=39277, + ["mine_stage"]=18 + }, + [6548]={ + ["distance"]=39283, + ["mine_stage"]=19 + }, + [6549]={ + ["distance"]=39289, + ["mine_stage"]=49 + }, + [6550]={ + ["distance"]=39295, + ["mine_stage"]=17 + }, + [6551]={ + ["distance"]=39301, + ["mine_stage"]=68 + }, + [6552]={ + ["distance"]=39307, + ["mine_stage"]=10 + }, + [6553]={ + ["distance"]=39313, + ["mine_stage"]=17 + }, + [6554]={ + ["distance"]=39319, + ["mine_stage"]=35 + }, + [6555]={ + ["distance"]=39325, + ["mine_stage"]=6 + }, + [6556]={ + ["distance"]=39331, + ["mine_stage"]=26 + }, + [6557]={ + ["distance"]=39337, + ["mine_stage"]=29 + }, + [6558]={ + ["distance"]=39343, + ["mine_stage"]=29 + }, + [6559]={ + ["distance"]=39349, + ["mine_stage"]=52 + }, + [6560]={ + ["distance"]=39355, + ["mine_stage"]=23 + }, + [6561]={ + ["distance"]=39361, + ["mine_stage"]=20 + }, + [6562]={ + ["distance"]=39367, + ["mine_stage"]=33 + }, + [6563]={ + ["distance"]=39373, + ["mine_stage"]=30 + }, + [6564]={ + ["distance"]=39379, + ["mine_stage"]=49 + }, + [6565]={ + ["distance"]=39385, + ["mine_stage"]=40 + }, + [6566]={ + ["distance"]=39391, + ["mine_stage"]=24 + }, + [6567]={ + ["distance"]=39397, + ["mine_stage"]=37 + }, + [6568]={ + ["distance"]=39403, + ["mine_stage"]=44 + }, + [6569]={ + ["distance"]=39409, + ["mine_stage"]=10 + }, + [6570]={ + ["distance"]=39415, + ["mine_stage"]=43 + }, + [6571]={ + ["distance"]=39421, + ["mine_stage"]=37 + }, + [6572]={ + ["distance"]=39427, + ["mine_stage"]=36 + }, + [6573]={ + ["distance"]=39433, + ["mine_stage"]=20 + }, + [6574]={ + ["distance"]=39439, + ["mine_stage"]=41 + }, + [6575]={ + ["distance"]=39445, + ["mine_stage"]=47 + }, + [6576]={ + ["distance"]=39451, + ["mine_stage"]=15 + }, + [6577]={ + ["distance"]=39457, + ["mine_stage"]=24 + }, + [6578]={ + ["distance"]=39463, + ["mine_stage"]=59 + }, + [6579]={ + ["distance"]=39469, + ["mine_stage"]=41 + }, + [6580]={ + ["distance"]=39475, + ["mine_stage"]=16 + }, + [6581]={ + ["distance"]=39481, + ["mine_stage"]=14 + }, + [6582]={ + ["distance"]=39487, + ["mine_stage"]=37 + }, + [6583]={ + ["distance"]=39493, + ["mine_stage"]=50 + }, + [6584]={ + ["distance"]=39499, + ["mine_stage"]=33 + }, + [6585]={ + ["distance"]=39505, + ["mine_stage"]=23 + }, + [6586]={ + ["distance"]=39511, + ["mine_stage"]=39 + }, + [6587]={ + ["distance"]=39517, + ["mine_stage"]=35 + }, + [6588]={ + ["distance"]=39523, + ["mine_stage"]=60 + }, + [6589]={ + ["distance"]=39529, + ["mine_stage"]=11 + }, + [6590]={ + ["distance"]=39535, + ["mine_stage"]=5 + }, + [6591]={ + ["distance"]=39541, + ["mine_stage"]=60 + }, + [6592]={ + ["distance"]=39547, + ["mine_stage"]=17 + }, + [6593]={ + ["distance"]=39553, + ["mine_stage"]=33 + }, + [6594]={ + ["distance"]=39559, + ["mine_stage"]=52 + }, + [6595]={ + ["distance"]=39565, + ["mine_stage"]=11 + }, + [6596]={ + ["distance"]=39571, + ["mine_stage"]=1 + }, + [6597]={ + ["distance"]=39577, + ["mine_stage"]=60 + }, + [6598]={ + ["distance"]=39583, + ["mine_stage"]=23 + }, + [6599]={ + ["distance"]=39589, + ["mine_stage"]=30 + }, + [6600]={ + ["distance"]=39595, + ["mine_stage"]=29 + }, + [6601]={ + ["distance"]=39601, + ["mine_stage"]=66 + }, + [6602]={ + ["distance"]=39607, + ["mine_stage"]=49 + }, + [6603]={ + ["distance"]=39613, + ["mine_stage"]=4 + }, + [6604]={ + ["distance"]=39619, + ["mine_stage"]=8 + }, + [6605]={ + ["distance"]=39625, + ["mine_stage"]=18 + }, + [6606]={ + ["distance"]=39631, + ["mine_stage"]=3 + }, + [6607]={ + ["distance"]=39637, + ["mine_stage"]=31 + }, + [6608]={ + ["distance"]=39643, + ["mine_stage"]=39 + }, + [6609]={ + ["distance"]=39649, + ["mine_stage"]=29 + }, + [6610]={ + ["distance"]=39655, + ["mine_stage"]=8 + }, + [6611]={ + ["distance"]=39661, + ["mine_stage"]=5 + }, + [6612]={ + ["distance"]=39667, + ["mine_stage"]=2 + }, + [6613]={ + ["distance"]=39673, + ["mine_stage"]=46 + }, + [6614]={ + ["distance"]=39679, + ["mine_stage"]=16 + }, + [6615]={ + ["distance"]=39685, + ["mine_stage"]=38 + }, + [6616]={ + ["distance"]=39691, + ["mine_stage"]=39 + }, + [6617]={ + ["distance"]=39697, + ["mine_stage"]=33 + }, + [6618]={ + ["distance"]=39703, + ["mine_stage"]=19 + }, + [6619]={ + ["distance"]=39709, + ["mine_stage"]=13 + }, + [6620]={ + ["distance"]=39715, + ["mine_stage"]=14 + }, + [6621]={ + ["distance"]=39721, + ["mine_stage"]=43 + }, + [6622]={ + ["distance"]=39727, + ["mine_stage"]=21 + }, + [6623]={ + ["distance"]=39733, + ["mine_stage"]=33 + }, + [6624]={ + ["distance"]=39739, + ["mine_stage"]=60 + }, + [6625]={ + ["distance"]=39745, + ["mine_stage"]=24 + }, + [6626]={ + ["distance"]=39751, + ["mine_stage"]=14 + }, + [6627]={ + ["distance"]=39757, + ["mine_stage"]=35 + }, + [6628]={ + ["distance"]=39763, + ["mine_stage"]=37 + }, + [6629]={ + ["distance"]=39769, + ["mine_stage"]=55 + }, + [6630]={ + ["distance"]=39775, + ["mine_stage"]=46 + }, + [6631]={ + ["distance"]=39781, + ["mine_stage"]=39 + }, + [6632]={ + ["distance"]=39787, + ["mine_stage"]=44 + }, + [6633]={ + ["distance"]=39793, + ["mine_stage"]=37 + }, + [6634]={ + ["distance"]=39799, + ["mine_stage"]=11 + }, + [6635]={ + ["distance"]=39805, + ["mine_stage"]=48 + }, + [6636]={ + ["distance"]=39811, + ["mine_stage"]=18 + }, + [6637]={ + ["distance"]=39817, + ["mine_stage"]=52 + }, + [6638]={ + ["distance"]=39823, + ["mine_stage"]=46 + }, + [6639]={ + ["distance"]=39829, + ["mine_stage"]=22 + }, + [6640]={ + ["distance"]=39835, + ["mine_stage"]=37 + }, + [6641]={ + ["distance"]=39841, + ["mine_stage"]=56 + }, + [6642]={ + ["distance"]=39847, + ["mine_stage"]=20 + }, + [6643]={ + ["distance"]=39853, + ["mine_stage"]=35 + }, + [6644]={ + ["distance"]=39859, + ["mine_stage"]=23 + }, + [6645]={ + ["distance"]=39865, + ["mine_stage"]=55 + }, + [6646]={ + ["distance"]=39871, + ["mine_stage"]=29 + }, + [6647]={ + ["distance"]=39877, + ["mine_stage"]=14 + }, + [6648]={ + ["distance"]=39883, + ["mine_stage"]=51 + }, + [6649]={ + ["distance"]=39889, + ["mine_stage"]=1 + }, + [6650]={ + ["distance"]=39895, + ["mine_stage"]=41 + }, + [6651]={ + ["distance"]=39901, + ["mine_stage"]=69 + }, + [6652]={ + ["distance"]=39907, + ["mine_stage"]=10 + }, + [6653]={ + ["distance"]=39913, + ["mine_stage"]=20 + }, + [6654]={ + ["distance"]=39919, + ["mine_stage"]=2 + }, + [6655]={ + ["distance"]=39925, + ["mine_stage"]=14 + }, + [6656]={ + ["distance"]=39931, + ["mine_stage"]=51 + }, + [6657]={ + ["distance"]=39937, + ["mine_stage"]=29 + }, + [6658]={ + ["distance"]=39943, + ["mine_stage"]=49 + }, + [6659]={ + ["distance"]=39949, + ["mine_stage"]=3 + }, + [6660]={ + ["distance"]=39955, + ["mine_stage"]=31 + }, + [6661]={ + ["distance"]=39961, + ["mine_stage"]=39 + }, + [6662]={ + ["distance"]=39967, + ["mine_stage"]=9 + }, + [6663]={ + ["distance"]=39973, + ["mine_stage"]=14 + }, + [6664]={ + ["distance"]=39979, + ["mine_stage"]=3 + }, + [6665]={ + ["distance"]=39985, + ["mine_stage"]=56 + }, + [6666]={ + ["distance"]=39991, + ["mine_stage"]=42 + }, + [6667]={ + ["distance"]=39997, + ["mine_stage"]=15 + }, + [6668]={ + ["distance"]=40003, + ["mine_stage"]=19 + }, + [6669]={ + ["distance"]=40009, + ["mine_stage"]=31 + }, + [6670]={ + ["distance"]=40015, + ["mine_stage"]=23 + }, + [6671]={ + ["distance"]=40021, + ["mine_stage"]=34 + }, + [6672]={ + ["distance"]=40027, + ["mine_stage"]=39 + }, + [6673]={ + ["distance"]=40033, + ["mine_stage"]=45 + }, + [6674]={ + ["distance"]=40039, + ["mine_stage"]=21 + }, + [6675]={ + ["distance"]=40045, + ["mine_stage"]=36 + }, + [6676]={ + ["distance"]=40051, + ["mine_stage"]=38 + }, + [6677]={ + ["distance"]=40057, + ["mine_stage"]=54 + }, + [6678]={ + ["distance"]=40063, + ["mine_stage"]=54 + }, + [6679]={ + ["distance"]=40069, + ["mine_stage"]=16 + }, + [6680]={ + ["distance"]=40075, + ["mine_stage"]=49 + }, + [6681]={ + ["distance"]=40081, + ["mine_stage"]=11 + }, + [6682]={ + ["distance"]=40087, + ["mine_stage"]=10 + }, + [6683]={ + ["distance"]=40093, + ["mine_stage"]=23 + }, + [6684]={ + ["distance"]=40099, + ["mine_stage"]=37 + }, + [6685]={ + ["distance"]=40105, + ["mine_stage"]=33 + }, + [6686]={ + ["distance"]=40111, + ["mine_stage"]=19 + }, + [6687]={ + ["distance"]=40117, + ["mine_stage"]=36 + }, + [6688]={ + ["distance"]=40123, + ["mine_stage"]=50 + }, + [6689]={ + ["distance"]=40129, + ["mine_stage"]=23 + }, + [6690]={ + ["distance"]=40135, + ["mine_stage"]=30 + }, + [6691]={ + ["distance"]=40141, + ["mine_stage"]=29 + }, + [6692]={ + ["distance"]=40147, + ["mine_stage"]=29 + }, + [6693]={ + ["distance"]=40153, + ["mine_stage"]=31 + }, + [6694]={ + ["distance"]=40159, + ["mine_stage"]=21 + }, + [6695]={ + ["distance"]=40165, + ["mine_stage"]=25 + }, + [6696]={ + ["distance"]=40171, + ["mine_stage"]=8 + }, + [6697]={ + ["distance"]=40177, + ["mine_stage"]=3 + }, + [6698]={ + ["distance"]=40183, + ["mine_stage"]=29 + }, + [6699]={ + ["distance"]=40189, + ["mine_stage"]=42 + }, + [6700]={ + ["distance"]=40195, + ["mine_stage"]=54 + }, + [6701]={ + ["distance"]=40201, + ["mine_stage"]=64 + }, + [6702]={ + ["distance"]=40207, + ["mine_stage"]=54 + }, + [6703]={ + ["distance"]=40213, + ["mine_stage"]=12 + }, + [6704]={ + ["distance"]=40219, + ["mine_stage"]=57 + }, + [6705]={ + ["distance"]=40225, + ["mine_stage"]=47 + }, + [6706]={ + ["distance"]=40231, + ["mine_stage"]=5 + }, + [6707]={ + ["distance"]=40237, + ["mine_stage"]=57 + }, + [6708]={ + ["distance"]=40243, + ["mine_stage"]=38 + }, + [6709]={ + ["distance"]=40249, + ["mine_stage"]=14 + }, + [6710]={ + ["distance"]=40255, + ["mine_stage"]=59 + }, + [6711]={ + ["distance"]=40261, + ["mine_stage"]=49 + }, + [6712]={ + ["distance"]=40267, + ["mine_stage"]=46 + }, + [6713]={ + ["distance"]=40273, + ["mine_stage"]=54 + }, + [6714]={ + ["distance"]=40279, + ["mine_stage"]=46 + }, + [6715]={ + ["distance"]=40285, + ["mine_stage"]=4 + }, + [6716]={ + ["distance"]=40291, + ["mine_stage"]=39 + }, + [6717]={ + ["distance"]=40297, + ["mine_stage"]=37 + }, + [6718]={ + ["distance"]=40303, + ["mine_stage"]=34 + }, + [6719]={ + ["distance"]=40309, + ["mine_stage"]=23 + }, + [6720]={ + ["distance"]=40315, + ["mine_stage"]=4 + }, + [6721]={ + ["distance"]=40321, + ["mine_stage"]=35 + }, + [6722]={ + ["distance"]=40327, + ["mine_stage"]=56 + }, + [6723]={ + ["distance"]=40333, + ["mine_stage"]=31 + }, + [6724]={ + ["distance"]=40339, + ["mine_stage"]=46 + }, + [6725]={ + ["distance"]=40345, + ["mine_stage"]=32 + }, + [6726]={ + ["distance"]=40351, + ["mine_stage"]=32 + }, + [6727]={ + ["distance"]=40357, + ["mine_stage"]=18 + }, + [6728]={ + ["distance"]=40363, + ["mine_stage"]=37 + }, + [6729]={ + ["distance"]=40369, + ["mine_stage"]=37 + }, + [6730]={ + ["distance"]=40375, + ["mine_stage"]=51 + }, + [6731]={ + ["distance"]=40381, + ["mine_stage"]=45 + }, + [6732]={ + ["distance"]=40387, + ["mine_stage"]=6 + }, + [6733]={ + ["distance"]=40393, + ["mine_stage"]=12 + }, + [6734]={ + ["distance"]=40399, + ["mine_stage"]=15 + }, + [6735]={ + ["distance"]=40405, + ["mine_stage"]=34 + }, + [6736]={ + ["distance"]=40411, + ["mine_stage"]=12 + }, + [6737]={ + ["distance"]=40417, + ["mine_stage"]=8 + }, + [6738]={ + ["distance"]=40423, + ["mine_stage"]=9 + }, + [6739]={ + ["distance"]=40429, + ["mine_stage"]=17 + }, + [6740]={ + ["distance"]=40435, + ["mine_stage"]=31 + }, + [6741]={ + ["distance"]=40441, + ["mine_stage"]=51 + }, + [6742]={ + ["distance"]=40447, + ["mine_stage"]=39 + }, + [6743]={ + ["distance"]=40453, + ["mine_stage"]=11 + }, + [6744]={ + ["distance"]=40459, + ["mine_stage"]=42 + }, + [6745]={ + ["distance"]=40465, + ["mine_stage"]=31 + }, + [6746]={ + ["distance"]=40471, + ["mine_stage"]=41 + }, + [6747]={ + ["distance"]=40477, + ["mine_stage"]=57 + }, + [6748]={ + ["distance"]=40483, + ["mine_stage"]=31 + }, + [6749]={ + ["distance"]=40489, + ["mine_stage"]=18 + }, + [6750]={ + ["distance"]=40495, + ["mine_stage"]=30 + }, + [6751]={ + ["distance"]=40501, + ["mine_stage"]=67 + }, + [6752]={ + ["distance"]=40507, + ["mine_stage"]=43 + }, + [6753]={ + ["distance"]=40513, + ["mine_stage"]=44 + }, + [6754]={ + ["distance"]=40519, + ["mine_stage"]=38 + }, + [6755]={ + ["distance"]=40525, + ["mine_stage"]=45 + }, + [6756]={ + ["distance"]=40531, + ["mine_stage"]=32 + }, + [6757]={ + ["distance"]=40537, + ["mine_stage"]=12 + }, + [6758]={ + ["distance"]=40543, + ["mine_stage"]=18 + }, + [6759]={ + ["distance"]=40549, + ["mine_stage"]=20 + }, + [6760]={ + ["distance"]=40555, + ["mine_stage"]=48 + }, + [6761]={ + ["distance"]=40561, + ["mine_stage"]=29 + }, + [6762]={ + ["distance"]=40567, + ["mine_stage"]=49 + }, + [6763]={ + ["distance"]=40573, + ["mine_stage"]=12 + }, + [6764]={ + ["distance"]=40579, + ["mine_stage"]=7 + }, + [6765]={ + ["distance"]=40585, + ["mine_stage"]=48 + }, + [6766]={ + ["distance"]=40591, + ["mine_stage"]=8 + }, + [6767]={ + ["distance"]=40597, + ["mine_stage"]=52 + }, + [6768]={ + ["distance"]=40603, + ["mine_stage"]=49 + }, + [6769]={ + ["distance"]=40609, + ["mine_stage"]=25 + }, + [6770]={ + ["distance"]=40615, + ["mine_stage"]=3 + }, + [6771]={ + ["distance"]=40621, + ["mine_stage"]=3 + }, + [6772]={ + ["distance"]=40627, + ["mine_stage"]=18 + }, + [6773]={ + ["distance"]=40633, + ["mine_stage"]=33 + }, + [6774]={ + ["distance"]=40639, + ["mine_stage"]=59 + }, + [6775]={ + ["distance"]=40645, + ["mine_stage"]=54 + }, + [6776]={ + ["distance"]=40651, + ["mine_stage"]=41 + }, + [6777]={ + ["distance"]=40657, + ["mine_stage"]=32 + }, + [6778]={ + ["distance"]=40663, + ["mine_stage"]=8 + }, + [6779]={ + ["distance"]=40669, + ["mine_stage"]=47 + }, + [6780]={ + ["distance"]=40675, + ["mine_stage"]=52 + }, + [6781]={ + ["distance"]=40681, + ["mine_stage"]=44 + }, + [6782]={ + ["distance"]=40687, + ["mine_stage"]=33 + }, + [6783]={ + ["distance"]=40693, + ["mine_stage"]=17 + }, + [6784]={ + ["distance"]=40699, + ["mine_stage"]=54 + }, + [6785]={ + ["distance"]=40705, + ["mine_stage"]=2 + }, + [6786]={ + ["distance"]=40711, + ["mine_stage"]=22 + }, + [6787]={ + ["distance"]=40717, + ["mine_stage"]=8 + }, + [6788]={ + ["distance"]=40723, + ["mine_stage"]=9 + }, + [6789]={ + ["distance"]=40729, + ["mine_stage"]=60 + }, + [6790]={ + ["distance"]=40735, + ["mine_stage"]=34 + }, + [6791]={ + ["distance"]=40741, + ["mine_stage"]=44 + }, + [6792]={ + ["distance"]=40747, + ["mine_stage"]=21 + }, + [6793]={ + ["distance"]=40753, + ["mine_stage"]=40 + }, + [6794]={ + ["distance"]=40759, + ["mine_stage"]=54 + }, + [6795]={ + ["distance"]=40765, + ["mine_stage"]=42 + }, + [6796]={ + ["distance"]=40771, + ["mine_stage"]=51 + }, + [6797]={ + ["distance"]=40777, + ["mine_stage"]=32 + }, + [6798]={ + ["distance"]=40783, + ["mine_stage"]=26 + }, + [6799]={ + ["distance"]=40789, + ["mine_stage"]=23 + }, + [6800]={ + ["distance"]=40795, + ["mine_stage"]=53 + }, + [6801]={ + ["distance"]=40801, + ["mine_stage"]=65 + }, + [6802]={ + ["distance"]=40807, + ["mine_stage"]=56 + }, + [6803]={ + ["distance"]=40813, + ["mine_stage"]=41 + }, + [6804]={ + ["distance"]=40819, + ["mine_stage"]=34 + }, + [6805]={ + ["distance"]=40825, + ["mine_stage"]=10 + }, + [6806]={ + ["distance"]=40831, + ["mine_stage"]=39 + }, + [6807]={ + ["distance"]=40837, + ["mine_stage"]=27 + }, + [6808]={ + ["distance"]=40843, + ["mine_stage"]=7 + }, + [6809]={ + ["distance"]=40849, + ["mine_stage"]=35 + }, + [6810]={ + ["distance"]=40855, + ["mine_stage"]=26 + }, + [6811]={ + ["distance"]=40861, + ["mine_stage"]=4 + }, + [6812]={ + ["distance"]=40867, + ["mine_stage"]=45 + }, + [6813]={ + ["distance"]=40873, + ["mine_stage"]=27 + }, + [6814]={ + ["distance"]=40879, + ["mine_stage"]=47 + }, + [6815]={ + ["distance"]=40885, + ["mine_stage"]=13 + }, + [6816]={ + ["distance"]=40891, + ["mine_stage"]=26 + }, + [6817]={ + ["distance"]=40897, + ["mine_stage"]=29 + }, + [6818]={ + ["distance"]=40903, + ["mine_stage"]=29 + }, + [6819]={ + ["distance"]=40909, + ["mine_stage"]=49 + }, + [6820]={ + ["distance"]=40915, + ["mine_stage"]=54 + }, + [6821]={ + ["distance"]=40921, + ["mine_stage"]=37 + }, + [6822]={ + ["distance"]=40927, + ["mine_stage"]=8 + }, + [6823]={ + ["distance"]=40933, + ["mine_stage"]=8 + }, + [6824]={ + ["distance"]=40939, + ["mine_stage"]=60 + }, + [6825]={ + ["distance"]=40945, + ["mine_stage"]=56 + }, + [6826]={ + ["distance"]=40951, + ["mine_stage"]=38 + }, + [6827]={ + ["distance"]=40957, + ["mine_stage"]=19 + }, + [6828]={ + ["distance"]=40963, + ["mine_stage"]=9 + }, + [6829]={ + ["distance"]=40969, + ["mine_stage"]=49 + }, + [6830]={ + ["distance"]=40975, + ["mine_stage"]=21 + }, + [6831]={ + ["distance"]=40981, + ["mine_stage"]=57 + }, + [6832]={ + ["distance"]=40987, + ["mine_stage"]=53 + }, + [6833]={ + ["distance"]=40993, + ["mine_stage"]=40 + }, + [6834]={ + ["distance"]=40999, + ["mine_stage"]=53 + }, + [6835]={ + ["distance"]=41005, + ["mine_stage"]=41 + }, + [6836]={ + ["distance"]=41011, + ["mine_stage"]=42 + }, + [6837]={ + ["distance"]=41017, + ["mine_stage"]=32 + }, + [6838]={ + ["distance"]=41023, + ["mine_stage"]=48 + }, + [6839]={ + ["distance"]=41029, + ["mine_stage"]=56 + }, + [6840]={ + ["distance"]=41035, + ["mine_stage"]=25 + }, + [6841]={ + ["distance"]=41041, + ["mine_stage"]=50 + }, + [6842]={ + ["distance"]=41047, + ["mine_stage"]=13 + }, + [6843]={ + ["distance"]=41053, + ["mine_stage"]=17 + }, + [6844]={ + ["distance"]=41059, + ["mine_stage"]=4 + }, + [6845]={ + ["distance"]=41065, + ["mine_stage"]=39 + }, + [6846]={ + ["distance"]=41071, + ["mine_stage"]=6 + }, + [6847]={ + ["distance"]=41077, + ["mine_stage"]=45 + }, + [6848]={ + ["distance"]=41083, + ["mine_stage"]=29 + }, + [6849]={ + ["distance"]=41089, + ["mine_stage"]=35 + }, + [6850]={ + ["distance"]=41095, + ["mine_stage"]=18 + }, + [6851]={ + ["distance"]=41101, + ["mine_stage"]=68 + }, + [6852]={ + ["distance"]=41107, + ["mine_stage"]=55 + }, + [6853]={ + ["distance"]=41113, + ["mine_stage"]=4 + }, + [6854]={ + ["distance"]=41119, + ["mine_stage"]=53 + }, + [6855]={ + ["distance"]=41125, + ["mine_stage"]=32 + }, + [6856]={ + ["distance"]=41131, + ["mine_stage"]=21 + }, + [6857]={ + ["distance"]=41137, + ["mine_stage"]=10 + }, + [6858]={ + ["distance"]=41143, + ["mine_stage"]=11 + }, + [6859]={ + ["distance"]=41149, + ["mine_stage"]=5 + }, + [6860]={ + ["distance"]=41155, + ["mine_stage"]=40 + }, + [6861]={ + ["distance"]=41161, + ["mine_stage"]=57 + }, + [6862]={ + ["distance"]=41167, + ["mine_stage"]=41 + }, + [6863]={ + ["distance"]=41173, + ["mine_stage"]=21 + }, + [6864]={ + ["distance"]=41179, + ["mine_stage"]=14 + }, + [6865]={ + ["distance"]=41185, + ["mine_stage"]=58 + }, + [6866]={ + ["distance"]=41191, + ["mine_stage"]=9 + }, + [6867]={ + ["distance"]=41197, + ["mine_stage"]=51 + }, + [6868]={ + ["distance"]=41203, + ["mine_stage"]=25 + }, + [6869]={ + ["distance"]=41209, + ["mine_stage"]=33 + }, + [6870]={ + ["distance"]=41215, + ["mine_stage"]=19 + }, + [6871]={ + ["distance"]=41221, + ["mine_stage"]=24 + }, + [6872]={ + ["distance"]=41227, + ["mine_stage"]=41 + }, + [6873]={ + ["distance"]=41233, + ["mine_stage"]=32 + }, + [6874]={ + ["distance"]=41239, + ["mine_stage"]=32 + }, + [6875]={ + ["distance"]=41245, + ["mine_stage"]=14 + }, + [6876]={ + ["distance"]=41251, + ["mine_stage"]=51 + }, + [6877]={ + ["distance"]=41257, + ["mine_stage"]=57 + }, + [6878]={ + ["distance"]=41263, + ["mine_stage"]=27 + }, + [6879]={ + ["distance"]=41269, + ["mine_stage"]=44 + }, + [6880]={ + ["distance"]=41275, + ["mine_stage"]=24 + }, + [6881]={ + ["distance"]=41281, + ["mine_stage"]=4 + }, + [6882]={ + ["distance"]=41287, + ["mine_stage"]=7 + }, + [6883]={ + ["distance"]=41293, + ["mine_stage"]=7 + }, + [6884]={ + ["distance"]=41299, + ["mine_stage"]=19 + }, + [6885]={ + ["distance"]=41305, + ["mine_stage"]=48 + }, + [6886]={ + ["distance"]=41311, + ["mine_stage"]=60 + }, + [6887]={ + ["distance"]=41317, + ["mine_stage"]=45 + }, + [6888]={ + ["distance"]=41323, + ["mine_stage"]=51 + }, + [6889]={ + ["distance"]=41329, + ["mine_stage"]=19 + }, + [6890]={ + ["distance"]=41335, + ["mine_stage"]=60 + }, + [6891]={ + ["distance"]=41341, + ["mine_stage"]=6 + }, + [6892]={ + ["distance"]=41347, + ["mine_stage"]=5 + }, + [6893]={ + ["distance"]=41353, + ["mine_stage"]=34 + }, + [6894]={ + ["distance"]=41359, + ["mine_stage"]=42 + }, + [6895]={ + ["distance"]=41365, + ["mine_stage"]=26 + }, + [6896]={ + ["distance"]=41371, + ["mine_stage"]=57 + }, + [6897]={ + ["distance"]=41377, + ["mine_stage"]=36 + }, + [6898]={ + ["distance"]=41383, + ["mine_stage"]=7 + }, + [6899]={ + ["distance"]=41389, + ["mine_stage"]=2 + }, + [6900]={ + ["distance"]=41395, + ["mine_stage"]=25 + }, + [6901]={ + ["distance"]=41401, + ["mine_stage"]=66 + }, + [6902]={ + ["distance"]=41407, + ["mine_stage"]=30 + }, + [6903]={ + ["distance"]=41413, + ["mine_stage"]=6 + }, + [6904]={ + ["distance"]=41419, + ["mine_stage"]=22 + }, + [6905]={ + ["distance"]=41425, + ["mine_stage"]=47 + }, + [6906]={ + ["distance"]=41431, + ["mine_stage"]=53 + }, + [6907]={ + ["distance"]=41437, + ["mine_stage"]=22 + }, + [6908]={ + ["distance"]=41443, + ["mine_stage"]=56 + }, + [6909]={ + ["distance"]=41449, + ["mine_stage"]=17 + }, + [6910]={ + ["distance"]=41455, + ["mine_stage"]=26 + }, + [6911]={ + ["distance"]=41461, + ["mine_stage"]=39 + }, + [6912]={ + ["distance"]=41467, + ["mine_stage"]=41 + }, + [6913]={ + ["distance"]=41473, + ["mine_stage"]=21 + }, + [6914]={ + ["distance"]=41479, + ["mine_stage"]=54 + }, + [6915]={ + ["distance"]=41485, + ["mine_stage"]=24 + }, + [6916]={ + ["distance"]=41491, + ["mine_stage"]=56 + }, + [6917]={ + ["distance"]=41497, + ["mine_stage"]=6 + }, + [6918]={ + ["distance"]=41503, + ["mine_stage"]=54 + }, + [6919]={ + ["distance"]=41509, + ["mine_stage"]=6 + }, + [6920]={ + ["distance"]=41515, + ["mine_stage"]=56 + }, + [6921]={ + ["distance"]=41521, + ["mine_stage"]=45 + }, + [6922]={ + ["distance"]=41527, + ["mine_stage"]=24 + }, + [6923]={ + ["distance"]=41533, + ["mine_stage"]=42 + }, + [6924]={ + ["distance"]=41539, + ["mine_stage"]=60 + }, + [6925]={ + ["distance"]=41545, + ["mine_stage"]=7 + }, + [6926]={ + ["distance"]=41551, + ["mine_stage"]=60 + }, + [6927]={ + ["distance"]=41557, + ["mine_stage"]=42 + }, + [6928]={ + ["distance"]=41563, + ["mine_stage"]=52 + }, + [6929]={ + ["distance"]=41569, + ["mine_stage"]=38 + }, + [6930]={ + ["distance"]=41575, + ["mine_stage"]=60 + }, + [6931]={ + ["distance"]=41581, + ["mine_stage"]=18 + }, + [6932]={ + ["distance"]=41587, + ["mine_stage"]=30 + }, + [6933]={ + ["distance"]=41593, + ["mine_stage"]=3 + }, + [6934]={ + ["distance"]=41599, + ["mine_stage"]=1 + }, + [6935]={ + ["distance"]=41605, + ["mine_stage"]=41 + }, + [6936]={ + ["distance"]=41611, + ["mine_stage"]=35 + }, + [6937]={ + ["distance"]=41617, + ["mine_stage"]=24 + }, + [6938]={ + ["distance"]=41623, + ["mine_stage"]=60 + }, + [6939]={ + ["distance"]=41629, + ["mine_stage"]=27 + }, + [6940]={ + ["distance"]=41635, + ["mine_stage"]=5 + }, + [6941]={ + ["distance"]=41641, + ["mine_stage"]=31 + }, + [6942]={ + ["distance"]=41647, + ["mine_stage"]=5 + }, + [6943]={ + ["distance"]=41653, + ["mine_stage"]=21 + }, + [6944]={ + ["distance"]=41659, + ["mine_stage"]=2 + }, + [6945]={ + ["distance"]=41665, + ["mine_stage"]=17 + }, + [6946]={ + ["distance"]=41671, + ["mine_stage"]=53 + }, + [6947]={ + ["distance"]=41677, + ["mine_stage"]=60 + }, + [6948]={ + ["distance"]=41683, + ["mine_stage"]=29 + }, + [6949]={ + ["distance"]=41689, + ["mine_stage"]=33 + }, + [6950]={ + ["distance"]=41695, + ["mine_stage"]=46 + }, + [6951]={ + ["distance"]=41701, + ["mine_stage"]=69 + }, + [6952]={ + ["distance"]=41707, + ["mine_stage"]=8 + }, + [6953]={ + ["distance"]=41713, + ["mine_stage"]=42 + }, + [6954]={ + ["distance"]=41719, + ["mine_stage"]=33 + }, + [6955]={ + ["distance"]=41725, + ["mine_stage"]=14 + }, + [6956]={ + ["distance"]=41731, + ["mine_stage"]=53 + }, + [6957]={ + ["distance"]=41737, + ["mine_stage"]=27 + }, + [6958]={ + ["distance"]=41743, + ["mine_stage"]=7 + }, + [6959]={ + ["distance"]=41749, + ["mine_stage"]=13 + }, + [6960]={ + ["distance"]=41755, + ["mine_stage"]=29 + }, + [6961]={ + ["distance"]=41761, + ["mine_stage"]=31 + }, + [6962]={ + ["distance"]=41767, + ["mine_stage"]=1 + }, + [6963]={ + ["distance"]=41773, + ["mine_stage"]=39 + }, + [6964]={ + ["distance"]=41779, + ["mine_stage"]=20 + }, + [6965]={ + ["distance"]=41785, + ["mine_stage"]=18 + }, + [6966]={ + ["distance"]=41791, + ["mine_stage"]=17 + }, + [6967]={ + ["distance"]=41797, + ["mine_stage"]=6 + }, + [6968]={ + ["distance"]=41803, + ["mine_stage"]=20 + }, + [6969]={ + ["distance"]=41809, + ["mine_stage"]=40 + }, + [6970]={ + ["distance"]=41815, + ["mine_stage"]=6 + }, + [6971]={ + ["distance"]=41821, + ["mine_stage"]=29 + }, + [6972]={ + ["distance"]=41827, + ["mine_stage"]=55 + }, + [6973]={ + ["distance"]=41833, + ["mine_stage"]=43 + }, + [6974]={ + ["distance"]=41839, + ["mine_stage"]=8 + }, + [6975]={ + ["distance"]=41845, + ["mine_stage"]=56 + }, + [6976]={ + ["distance"]=41851, + ["mine_stage"]=13 + }, + [6977]={ + ["distance"]=41857, + ["mine_stage"]=57 + }, + [6978]={ + ["distance"]=41863, + ["mine_stage"]=41 + }, + [6979]={ + ["distance"]=41869, + ["mine_stage"]=60 + }, + [6980]={ + ["distance"]=41875, + ["mine_stage"]=16 + }, + [6981]={ + ["distance"]=41881, + ["mine_stage"]=25 + }, + [6982]={ + ["distance"]=41887, + ["mine_stage"]=52 + }, + [6983]={ + ["distance"]=41893, + ["mine_stage"]=1 + }, + [6984]={ + ["distance"]=41899, + ["mine_stage"]=25 + }, + [6985]={ + ["distance"]=41905, + ["mine_stage"]=33 + }, + [6986]={ + ["distance"]=41911, + ["mine_stage"]=10 + }, + [6987]={ + ["distance"]=41917, + ["mine_stage"]=14 + }, + [6988]={ + ["distance"]=41923, + ["mine_stage"]=35 + }, + [6989]={ + ["distance"]=41929, + ["mine_stage"]=47 + }, + [6990]={ + ["distance"]=41935, + ["mine_stage"]=49 + }, + [6991]={ + ["distance"]=41941, + ["mine_stage"]=52 + }, + [6992]={ + ["distance"]=41947, + ["mine_stage"]=45 + }, + [6993]={ + ["distance"]=41953, + ["mine_stage"]=57 + }, + [6994]={ + ["distance"]=41959, + ["mine_stage"]=6 + }, + [6995]={ + ["distance"]=41965, + ["mine_stage"]=4 + }, + [6996]={ + ["distance"]=41971, + ["mine_stage"]=15 + }, + [6997]={ + ["distance"]=41977, + ["mine_stage"]=10 + }, + [6998]={ + ["distance"]=41983, + ["mine_stage"]=13 + }, + [6999]={ + ["distance"]=41989, + ["mine_stage"]=10 + }, + [7000]={ + ["distance"]=41995, + ["mine_stage"]=20 + }, + [7001]={ + ["distance"]=42001, + ["mine_stage"]=64 + }, + [7002]={ + ["distance"]=42007, + ["mine_stage"]=6 + }, + [7003]={ + ["distance"]=42013, + ["mine_stage"]=34 + }, + [7004]={ + ["distance"]=42019, + ["mine_stage"]=40 + }, + [7005]={ + ["distance"]=42025, + ["mine_stage"]=41 + }, + [7006]={ + ["distance"]=42031, + ["mine_stage"]=30 + }, + [7007]={ + ["distance"]=42037, + ["mine_stage"]=18 + }, + [7008]={ + ["distance"]=42043, + ["mine_stage"]=18 + }, + [7009]={ + ["distance"]=42049, + ["mine_stage"]=16 + }, + [7010]={ + ["distance"]=42055, + ["mine_stage"]=7 + }, + [7011]={ + ["distance"]=42061, + ["mine_stage"]=49 + }, + [7012]={ + ["distance"]=42067, + ["mine_stage"]=1 + }, + [7013]={ + ["distance"]=42073, + ["mine_stage"]=14 + }, + [7014]={ + ["distance"]=42079, + ["mine_stage"]=40 + }, + [7015]={ + ["distance"]=42085, + ["mine_stage"]=35 + }, + [7016]={ + ["distance"]=42091, + ["mine_stage"]=23 + }, + [7017]={ + ["distance"]=42097, + ["mine_stage"]=34 + }, + [7018]={ + ["distance"]=42103, + ["mine_stage"]=25 + }, + [7019]={ + ["distance"]=42109, + ["mine_stage"]=15 + }, + [7020]={ + ["distance"]=42115, + ["mine_stage"]=56 + }, + [7021]={ + ["distance"]=42121, + ["mine_stage"]=42 + }, + [7022]={ + ["distance"]=42127, + ["mine_stage"]=7 + }, + [7023]={ + ["distance"]=42133, + ["mine_stage"]=12 + }, + [7024]={ + ["distance"]=42139, + ["mine_stage"]=16 + }, + [7025]={ + ["distance"]=42145, + ["mine_stage"]=55 + }, + [7026]={ + ["distance"]=42151, + ["mine_stage"]=17 + }, + [7027]={ + ["distance"]=42157, + ["mine_stage"]=10 + }, + [7028]={ + ["distance"]=42163, + ["mine_stage"]=24 + }, + [7029]={ + ["distance"]=42169, + ["mine_stage"]=3 + }, + [7030]={ + ["distance"]=42175, + ["mine_stage"]=34 + }, + [7031]={ + ["distance"]=42181, + ["mine_stage"]=6 + }, + [7032]={ + ["distance"]=42187, + ["mine_stage"]=43 + }, + [7033]={ + ["distance"]=42193, + ["mine_stage"]=4 + }, + [7034]={ + ["distance"]=42199, + ["mine_stage"]=19 + }, + [7035]={ + ["distance"]=42205, + ["mine_stage"]=14 + }, + [7036]={ + ["distance"]=42211, + ["mine_stage"]=19 + }, + [7037]={ + ["distance"]=42217, + ["mine_stage"]=23 + }, + [7038]={ + ["distance"]=42223, + ["mine_stage"]=30 + }, + [7039]={ + ["distance"]=42229, + ["mine_stage"]=44 + }, + [7040]={ + ["distance"]=42235, + ["mine_stage"]=46 + }, + [7041]={ + ["distance"]=42241, + ["mine_stage"]=13 + }, + [7042]={ + ["distance"]=42247, + ["mine_stage"]=40 + }, + [7043]={ + ["distance"]=42253, + ["mine_stage"]=24 + }, + [7044]={ + ["distance"]=42259, + ["mine_stage"]=55 + }, + [7045]={ + ["distance"]=42265, + ["mine_stage"]=2 + }, + [7046]={ + ["distance"]=42271, + ["mine_stage"]=45 + }, + [7047]={ + ["distance"]=42277, + ["mine_stage"]=35 + }, + [7048]={ + ["distance"]=42283, + ["mine_stage"]=20 + }, + [7049]={ + ["distance"]=42289, + ["mine_stage"]=45 + }, + [7050]={ + ["distance"]=42295, + ["mine_stage"]=2 + }, + [7051]={ + ["distance"]=42301, + ["mine_stage"]=67 + }, + [7052]={ + ["distance"]=42307, + ["mine_stage"]=19 + }, + [7053]={ + ["distance"]=42313, + ["mine_stage"]=8 + }, + [7054]={ + ["distance"]=42319, + ["mine_stage"]=19 + }, + [7055]={ + ["distance"]=42325, + ["mine_stage"]=10 + }, + [7056]={ + ["distance"]=42331, + ["mine_stage"]=51 + }, + [7057]={ + ["distance"]=42337, + ["mine_stage"]=7 + }, + [7058]={ + ["distance"]=42343, + ["mine_stage"]=35 + }, + [7059]={ + ["distance"]=42349, + ["mine_stage"]=24 + }, + [7060]={ + ["distance"]=42355, + ["mine_stage"]=3 + }, + [7061]={ + ["distance"]=42361, + ["mine_stage"]=60 + }, + [7062]={ + ["distance"]=42367, + ["mine_stage"]=56 + }, + [7063]={ + ["distance"]=42373, + ["mine_stage"]=33 + }, + [7064]={ + ["distance"]=42379, + ["mine_stage"]=26 + }, + [7065]={ + ["distance"]=42385, + ["mine_stage"]=48 + }, + [7066]={ + ["distance"]=42391, + ["mine_stage"]=48 + }, + [7067]={ + ["distance"]=42397, + ["mine_stage"]=41 + }, + [7068]={ + ["distance"]=42403, + ["mine_stage"]=18 + }, + [7069]={ + ["distance"]=42409, + ["mine_stage"]=46 + }, + [7070]={ + ["distance"]=42415, + ["mine_stage"]=17 + }, + [7071]={ + ["distance"]=42421, + ["mine_stage"]=57 + }, + [7072]={ + ["distance"]=42427, + ["mine_stage"]=42 + }, + [7073]={ + ["distance"]=42433, + ["mine_stage"]=19 + }, + [7074]={ + ["distance"]=42439, + ["mine_stage"]=57 + }, + [7075]={ + ["distance"]=42445, + ["mine_stage"]=55 + }, + [7076]={ + ["distance"]=42451, + ["mine_stage"]=54 + }, + [7077]={ + ["distance"]=42457, + ["mine_stage"]=40 + }, + [7078]={ + ["distance"]=42463, + ["mine_stage"]=44 + }, + [7079]={ + ["distance"]=42469, + ["mine_stage"]=20 + }, + [7080]={ + ["distance"]=42475, + ["mine_stage"]=20 + }, + [7081]={ + ["distance"]=42481, + ["mine_stage"]=46 + }, + [7082]={ + ["distance"]=42487, + ["mine_stage"]=4 + }, + [7083]={ + ["distance"]=42493, + ["mine_stage"]=43 + }, + [7084]={ + ["distance"]=42499, + ["mine_stage"]=30 + }, + [7085]={ + ["distance"]=42505, + ["mine_stage"]=37 + }, + [7086]={ + ["distance"]=42511, + ["mine_stage"]=12 + }, + [7087]={ + ["distance"]=42517, + ["mine_stage"]=32 + }, + [7088]={ + ["distance"]=42523, + ["mine_stage"]=43 + }, + [7089]={ + ["distance"]=42529, + ["mine_stage"]=43 + }, + [7090]={ + ["distance"]=42535, + ["mine_stage"]=55 + }, + [7091]={ + ["distance"]=42541, + ["mine_stage"]=44 + }, + [7092]={ + ["distance"]=42547, + ["mine_stage"]=60 + }, + [7093]={ + ["distance"]=42553, + ["mine_stage"]=52 + }, + [7094]={ + ["distance"]=42559, + ["mine_stage"]=39 + }, + [7095]={ + ["distance"]=42565, + ["mine_stage"]=47 + }, + [7096]={ + ["distance"]=42571, + ["mine_stage"]=2 + }, + [7097]={ + ["distance"]=42577, + ["mine_stage"]=45 + }, + [7098]={ + ["distance"]=42583, + ["mine_stage"]=56 + }, + [7099]={ + ["distance"]=42589, + ["mine_stage"]=5 + }, + [7100]={ + ["distance"]=42595, + ["mine_stage"]=21 + }, + [7101]={ + ["distance"]=42601, + ["mine_stage"]=65 + }, + [7102]={ + ["distance"]=42607, + ["mine_stage"]=54 + }, + [7103]={ + ["distance"]=42613, + ["mine_stage"]=8 + }, + [7104]={ + ["distance"]=42619, + ["mine_stage"]=14 + }, + [7105]={ + ["distance"]=42625, + ["mine_stage"]=9 + }, + [7106]={ + ["distance"]=42631, + ["mine_stage"]=49 + }, + [7107]={ + ["distance"]=42637, + ["mine_stage"]=58 + }, + [7108]={ + ["distance"]=42643, + ["mine_stage"]=7 + }, + [7109]={ + ["distance"]=42649, + ["mine_stage"]=34 + }, + [7110]={ + ["distance"]=42655, + ["mine_stage"]=5 + }, + [7111]={ + ["distance"]=42661, + ["mine_stage"]=20 + }, + [7112]={ + ["distance"]=42667, + ["mine_stage"]=8 + }, + [7113]={ + ["distance"]=42673, + ["mine_stage"]=5 + }, + [7114]={ + ["distance"]=42679, + ["mine_stage"]=16 + }, + [7115]={ + ["distance"]=42685, + ["mine_stage"]=11 + }, + [7116]={ + ["distance"]=42691, + ["mine_stage"]=1 + }, + [7117]={ + ["distance"]=42697, + ["mine_stage"]=48 + }, + [7118]={ + ["distance"]=42703, + ["mine_stage"]=5 + }, + [7119]={ + ["distance"]=42709, + ["mine_stage"]=23 + }, + [7120]={ + ["distance"]=42715, + ["mine_stage"]=28 + }, + [7121]={ + ["distance"]=42721, + ["mine_stage"]=36 + }, + [7122]={ + ["distance"]=42727, + ["mine_stage"]=20 + }, + [7123]={ + ["distance"]=42733, + ["mine_stage"]=8 + }, + [7124]={ + ["distance"]=42739, + ["mine_stage"]=27 + }, + [7125]={ + ["distance"]=42745, + ["mine_stage"]=35 + }, + [7126]={ + ["distance"]=42751, + ["mine_stage"]=25 + }, + [7127]={ + ["distance"]=42757, + ["mine_stage"]=57 + }, + [7128]={ + ["distance"]=42763, + ["mine_stage"]=53 + }, + [7129]={ + ["distance"]=42769, + ["mine_stage"]=52 + }, + [7130]={ + ["distance"]=42775, + ["mine_stage"]=6 + }, + [7131]={ + ["distance"]=42781, + ["mine_stage"]=45 + }, + [7132]={ + ["distance"]=42787, + ["mine_stage"]=39 + }, + [7133]={ + ["distance"]=42793, + ["mine_stage"]=13 + }, + [7134]={ + ["distance"]=42799, + ["mine_stage"]=35 + }, + [7135]={ + ["distance"]=42805, + ["mine_stage"]=22 + }, + [7136]={ + ["distance"]=42811, + ["mine_stage"]=21 + }, + [7137]={ + ["distance"]=42817, + ["mine_stage"]=53 + }, + [7138]={ + ["distance"]=42823, + ["mine_stage"]=16 + }, + [7139]={ + ["distance"]=42829, + ["mine_stage"]=54 + }, + [7140]={ + ["distance"]=42835, + ["mine_stage"]=14 + }, + [7141]={ + ["distance"]=42841, + ["mine_stage"]=60 + }, + [7142]={ + ["distance"]=42847, + ["mine_stage"]=53 + }, + [7143]={ + ["distance"]=42853, + ["mine_stage"]=49 + }, + [7144]={ + ["distance"]=42859, + ["mine_stage"]=3 + }, + [7145]={ + ["distance"]=42865, + ["mine_stage"]=13 + }, + [7146]={ + ["distance"]=42871, + ["mine_stage"]=51 + }, + [7147]={ + ["distance"]=42877, + ["mine_stage"]=60 + }, + [7148]={ + ["distance"]=42883, + ["mine_stage"]=45 + }, + [7149]={ + ["distance"]=42889, + ["mine_stage"]=22 + }, + [7150]={ + ["distance"]=42895, + ["mine_stage"]=19 + }, + [7151]={ + ["distance"]=42901, + ["mine_stage"]=68 + }, + [7152]={ + ["distance"]=42907, + ["mine_stage"]=57 + }, + [7153]={ + ["distance"]=42913, + ["mine_stage"]=24 + }, + [7154]={ + ["distance"]=42919, + ["mine_stage"]=1 + }, + [7155]={ + ["distance"]=42925, + ["mine_stage"]=49 + }, + [7156]={ + ["distance"]=42931, + ["mine_stage"]=4 + }, + [7157]={ + ["distance"]=42937, + ["mine_stage"]=58 + }, + [7158]={ + ["distance"]=42943, + ["mine_stage"]=2 + }, + [7159]={ + ["distance"]=42949, + ["mine_stage"]=22 + }, + [7160]={ + ["distance"]=42955, + ["mine_stage"]=35 + }, + [7161]={ + ["distance"]=42961, + ["mine_stage"]=10 + }, + [7162]={ + ["distance"]=42967, + ["mine_stage"]=40 + }, + [7163]={ + ["distance"]=42973, + ["mine_stage"]=55 + }, + [7164]={ + ["distance"]=42979, + ["mine_stage"]=33 + }, + [7165]={ + ["distance"]=42985, + ["mine_stage"]=2 + }, + [7166]={ + ["distance"]=42991, + ["mine_stage"]=34 + }, + [7167]={ + ["distance"]=42997, + ["mine_stage"]=42 + }, + [7168]={ + ["distance"]=43003, + ["mine_stage"]=34 + }, + [7169]={ + ["distance"]=43009, + ["mine_stage"]=31 + }, + [7170]={ + ["distance"]=43015, + ["mine_stage"]=8 + }, + [7171]={ + ["distance"]=43021, + ["mine_stage"]=40 + }, + [7172]={ + ["distance"]=43027, + ["mine_stage"]=12 + }, + [7173]={ + ["distance"]=43033, + ["mine_stage"]=49 + }, + [7174]={ + ["distance"]=43039, + ["mine_stage"]=51 + }, + [7175]={ + ["distance"]=43045, + ["mine_stage"]=51 + }, + [7176]={ + ["distance"]=43051, + ["mine_stage"]=1 + }, + [7177]={ + ["distance"]=43057, + ["mine_stage"]=45 + }, + [7178]={ + ["distance"]=43063, + ["mine_stage"]=2 + }, + [7179]={ + ["distance"]=43069, + ["mine_stage"]=6 + }, + [7180]={ + ["distance"]=43075, + ["mine_stage"]=53 + }, + [7181]={ + ["distance"]=43081, + ["mine_stage"]=33 + }, + [7182]={ + ["distance"]=43087, + ["mine_stage"]=3 + }, + [7183]={ + ["distance"]=43093, + ["mine_stage"]=9 + }, + [7184]={ + ["distance"]=43099, + ["mine_stage"]=33 + }, + [7185]={ + ["distance"]=43105, + ["mine_stage"]=42 + }, + [7186]={ + ["distance"]=43111, + ["mine_stage"]=29 + }, + [7187]={ + ["distance"]=43117, + ["mine_stage"]=2 + }, + [7188]={ + ["distance"]=43123, + ["mine_stage"]=43 + }, + [7189]={ + ["distance"]=43129, + ["mine_stage"]=53 + }, + [7190]={ + ["distance"]=43135, + ["mine_stage"]=21 + }, + [7191]={ + ["distance"]=43141, + ["mine_stage"]=7 + }, + [7192]={ + ["distance"]=43147, + ["mine_stage"]=40 + }, + [7193]={ + ["distance"]=43153, + ["mine_stage"]=54 + }, + [7194]={ + ["distance"]=43159, + ["mine_stage"]=52 + }, + [7195]={ + ["distance"]=43165, + ["mine_stage"]=13 + }, + [7196]={ + ["distance"]=43171, + ["mine_stage"]=3 + }, + [7197]={ + ["distance"]=43177, + ["mine_stage"]=30 + }, + [7198]={ + ["distance"]=43183, + ["mine_stage"]=36 + }, + [7199]={ + ["distance"]=43189, + ["mine_stage"]=38 + }, + [7200]={ + ["distance"]=43195, + ["mine_stage"]=57 + }, + [7201]={ + ["distance"]=43201, + ["mine_stage"]=66 + }, + [7202]={ + ["distance"]=43207, + ["mine_stage"]=57 + }, + [7203]={ + ["distance"]=43213, + ["mine_stage"]=15 + }, + [7204]={ + ["distance"]=43219, + ["mine_stage"]=37 + }, + [7205]={ + ["distance"]=43225, + ["mine_stage"]=51 + }, + [7206]={ + ["distance"]=43231, + ["mine_stage"]=29 + }, + [7207]={ + ["distance"]=43237, + ["mine_stage"]=35 + }, + [7208]={ + ["distance"]=43243, + ["mine_stage"]=4 + }, + [7209]={ + ["distance"]=43249, + ["mine_stage"]=32 + }, + [7210]={ + ["distance"]=43255, + ["mine_stage"]=28 + }, + [7211]={ + ["distance"]=43261, + ["mine_stage"]=60 + }, + [7212]={ + ["distance"]=43267, + ["mine_stage"]=60 + }, + [7213]={ + ["distance"]=43273, + ["mine_stage"]=30 + }, + [7214]={ + ["distance"]=43279, + ["mine_stage"]=53 + }, + [7215]={ + ["distance"]=43285, + ["mine_stage"]=8 + }, + [7216]={ + ["distance"]=43291, + ["mine_stage"]=48 + }, + [7217]={ + ["distance"]=43297, + ["mine_stage"]=37 + }, + [7218]={ + ["distance"]=43303, + ["mine_stage"]=8 + }, + [7219]={ + ["distance"]=43309, + ["mine_stage"]=50 + }, + [7220]={ + ["distance"]=43315, + ["mine_stage"]=1 + }, + [7221]={ + ["distance"]=43321, + ["mine_stage"]=28 + }, + [7222]={ + ["distance"]=43327, + ["mine_stage"]=19 + }, + [7223]={ + ["distance"]=43333, + ["mine_stage"]=14 + }, + [7224]={ + ["distance"]=43339, + ["mine_stage"]=1 + }, + [7225]={ + ["distance"]=43345, + ["mine_stage"]=12 + }, + [7226]={ + ["distance"]=43351, + ["mine_stage"]=30 + }, + [7227]={ + ["distance"]=43357, + ["mine_stage"]=38 + }, + [7228]={ + ["distance"]=43363, + ["mine_stage"]=10 + }, + [7229]={ + ["distance"]=43369, + ["mine_stage"]=18 + }, + [7230]={ + ["distance"]=43375, + ["mine_stage"]=10 + }, + [7231]={ + ["distance"]=43381, + ["mine_stage"]=51 + }, + [7232]={ + ["distance"]=43387, + ["mine_stage"]=49 + }, + [7233]={ + ["distance"]=43393, + ["mine_stage"]=45 + }, + [7234]={ + ["distance"]=43399, + ["mine_stage"]=37 + }, + [7235]={ + ["distance"]=43405, + ["mine_stage"]=50 + }, + [7236]={ + ["distance"]=43411, + ["mine_stage"]=37 + }, + [7237]={ + ["distance"]=43417, + ["mine_stage"]=56 + }, + [7238]={ + ["distance"]=43423, + ["mine_stage"]=40 + }, + [7239]={ + ["distance"]=43429, + ["mine_stage"]=7 + }, + [7240]={ + ["distance"]=43435, + ["mine_stage"]=24 + }, + [7241]={ + ["distance"]=43441, + ["mine_stage"]=9 + }, + [7242]={ + ["distance"]=43447, + ["mine_stage"]=41 + }, + [7243]={ + ["distance"]=43453, + ["mine_stage"]=4 + }, + [7244]={ + ["distance"]=43459, + ["mine_stage"]=7 + }, + [7245]={ + ["distance"]=43465, + ["mine_stage"]=36 + }, + [7246]={ + ["distance"]=43471, + ["mine_stage"]=13 + }, + [7247]={ + ["distance"]=43477, + ["mine_stage"]=39 + }, + [7248]={ + ["distance"]=43483, + ["mine_stage"]=56 + }, + [7249]={ + ["distance"]=43489, + ["mine_stage"]=23 + }, + [7250]={ + ["distance"]=43495, + ["mine_stage"]=35 + }, + [7251]={ + ["distance"]=43501, + ["mine_stage"]=69 + }, + [7252]={ + ["distance"]=43507, + ["mine_stage"]=33 + }, + [7253]={ + ["distance"]=43513, + ["mine_stage"]=4 + }, + [7254]={ + ["distance"]=43519, + ["mine_stage"]=37 + }, + [7255]={ + ["distance"]=43525, + ["mine_stage"]=54 + }, + [7256]={ + ["distance"]=43531, + ["mine_stage"]=9 + }, + [7257]={ + ["distance"]=43537, + ["mine_stage"]=39 + }, + [7258]={ + ["distance"]=43543, + ["mine_stage"]=40 + }, + [7259]={ + ["distance"]=43549, + ["mine_stage"]=37 + }, + [7260]={ + ["distance"]=43555, + ["mine_stage"]=45 + }, + [7261]={ + ["distance"]=43561, + ["mine_stage"]=42 + }, + [7262]={ + ["distance"]=43567, + ["mine_stage"]=60 + }, + [7263]={ + ["distance"]=43573, + ["mine_stage"]=59 + }, + [7264]={ + ["distance"]=43579, + ["mine_stage"]=13 + }, + [7265]={ + ["distance"]=43585, + ["mine_stage"]=39 + }, + [7266]={ + ["distance"]=43591, + ["mine_stage"]=49 + }, + [7267]={ + ["distance"]=43597, + ["mine_stage"]=12 + }, + [7268]={ + ["distance"]=43603, + ["mine_stage"]=34 + }, + [7269]={ + ["distance"]=43609, + ["mine_stage"]=42 + }, + [7270]={ + ["distance"]=43615, + ["mine_stage"]=40 + }, + [7271]={ + ["distance"]=43621, + ["mine_stage"]=36 + }, + [7272]={ + ["distance"]=43627, + ["mine_stage"]=19 + }, + [7273]={ + ["distance"]=43633, + ["mine_stage"]=26 + }, + [7274]={ + ["distance"]=43639, + ["mine_stage"]=33 + }, + [7275]={ + ["distance"]=43645, + ["mine_stage"]=14 + }, + [7276]={ + ["distance"]=43651, + ["mine_stage"]=26 + }, + [7277]={ + ["distance"]=43657, + ["mine_stage"]=19 + }, + [7278]={ + ["distance"]=43663, + ["mine_stage"]=36 + }, + [7279]={ + ["distance"]=43669, + ["mine_stage"]=25 + }, + [7280]={ + ["distance"]=43675, + ["mine_stage"]=37 + }, + [7281]={ + ["distance"]=43681, + ["mine_stage"]=33 + }, + [7282]={ + ["distance"]=43687, + ["mine_stage"]=18 + }, + [7283]={ + ["distance"]=43693, + ["mine_stage"]=4 + }, + [7284]={ + ["distance"]=43699, + ["mine_stage"]=1 + }, + [7285]={ + ["distance"]=43705, + ["mine_stage"]=35 + }, + [7286]={ + ["distance"]=43711, + ["mine_stage"]=30 + }, + [7287]={ + ["distance"]=43717, + ["mine_stage"]=46 + }, + [7288]={ + ["distance"]=43723, + ["mine_stage"]=43 + }, + [7289]={ + ["distance"]=43729, + ["mine_stage"]=11 + }, + [7290]={ + ["distance"]=43735, + ["mine_stage"]=20 + }, + [7291]={ + ["distance"]=43741, + ["mine_stage"]=57 + }, + [7292]={ + ["distance"]=43747, + ["mine_stage"]=24 + }, + [7293]={ + ["distance"]=43753, + ["mine_stage"]=55 + }, + [7294]={ + ["distance"]=43759, + ["mine_stage"]=16 + }, + [7295]={ + ["distance"]=43765, + ["mine_stage"]=6 + }, + [7296]={ + ["distance"]=43771, + ["mine_stage"]=57 + }, + [7297]={ + ["distance"]=43777, + ["mine_stage"]=43 + }, + [7298]={ + ["distance"]=43783, + ["mine_stage"]=57 + }, + [7299]={ + ["distance"]=43789, + ["mine_stage"]=19 + }, + [7300]={ + ["distance"]=43795, + ["mine_stage"]=31 + }, + [7301]={ + ["distance"]=43801, + ["mine_stage"]=64 + }, + [7302]={ + ["distance"]=43807, + ["mine_stage"]=42 + }, + [7303]={ + ["distance"]=43813, + ["mine_stage"]=43 + }, + [7304]={ + ["distance"]=43819, + ["mine_stage"]=41 + }, + [7305]={ + ["distance"]=43825, + ["mine_stage"]=60 + }, + [7306]={ + ["distance"]=43831, + ["mine_stage"]=54 + }, + [7307]={ + ["distance"]=43837, + ["mine_stage"]=44 + }, + [7308]={ + ["distance"]=43843, + ["mine_stage"]=28 + }, + [7309]={ + ["distance"]=43849, + ["mine_stage"]=54 + }, + [7310]={ + ["distance"]=43855, + ["mine_stage"]=13 + }, + [7311]={ + ["distance"]=43861, + ["mine_stage"]=36 + }, + [7312]={ + ["distance"]=43867, + ["mine_stage"]=53 + }, + [7313]={ + ["distance"]=43873, + ["mine_stage"]=53 + }, + [7314]={ + ["distance"]=43879, + ["mine_stage"]=31 + }, + [7315]={ + ["distance"]=43885, + ["mine_stage"]=12 + }, + [7316]={ + ["distance"]=43891, + ["mine_stage"]=30 + }, + [7317]={ + ["distance"]=43897, + ["mine_stage"]=35 + }, + [7318]={ + ["distance"]=43903, + ["mine_stage"]=19 + }, + [7319]={ + ["distance"]=43909, + ["mine_stage"]=33 + }, + [7320]={ + ["distance"]=43915, + ["mine_stage"]=27 + }, + [7321]={ + ["distance"]=43921, + ["mine_stage"]=6 + }, + [7322]={ + ["distance"]=43927, + ["mine_stage"]=54 + }, + [7323]={ + ["distance"]=43933, + ["mine_stage"]=47 + }, + [7324]={ + ["distance"]=43939, + ["mine_stage"]=48 + }, + [7325]={ + ["distance"]=43945, + ["mine_stage"]=41 + }, + [7326]={ + ["distance"]=43951, + ["mine_stage"]=49 + }, + [7327]={ + ["distance"]=43957, + ["mine_stage"]=12 + }, + [7328]={ + ["distance"]=43963, + ["mine_stage"]=23 + }, + [7329]={ + ["distance"]=43969, + ["mine_stage"]=51 + }, + [7330]={ + ["distance"]=43975, + ["mine_stage"]=32 + }, + [7331]={ + ["distance"]=43981, + ["mine_stage"]=26 + }, + [7332]={ + ["distance"]=43987, + ["mine_stage"]=17 + }, + [7333]={ + ["distance"]=43993, + ["mine_stage"]=39 + }, + [7334]={ + ["distance"]=43999, + ["mine_stage"]=18 + }, + [7335]={ + ["distance"]=44005, + ["mine_stage"]=59 + }, + [7336]={ + ["distance"]=44011, + ["mine_stage"]=19 + }, + [7337]={ + ["distance"]=44017, + ["mine_stage"]=9 + }, + [7338]={ + ["distance"]=44023, + ["mine_stage"]=40 + }, + [7339]={ + ["distance"]=44029, + ["mine_stage"]=44 + }, + [7340]={ + ["distance"]=44035, + ["mine_stage"]=25 + }, + [7341]={ + ["distance"]=44041, + ["mine_stage"]=50 + }, + [7342]={ + ["distance"]=44047, + ["mine_stage"]=30 + }, + [7343]={ + ["distance"]=44053, + ["mine_stage"]=46 + }, + [7344]={ + ["distance"]=44059, + ["mine_stage"]=30 + }, + [7345]={ + ["distance"]=44065, + ["mine_stage"]=20 + }, + [7346]={ + ["distance"]=44071, + ["mine_stage"]=53 + }, + [7347]={ + ["distance"]=44077, + ["mine_stage"]=59 + }, + [7348]={ + ["distance"]=44083, + ["mine_stage"]=20 + }, + [7349]={ + ["distance"]=44089, + ["mine_stage"]=40 + }, + [7350]={ + ["distance"]=44095, + ["mine_stage"]=49 + }, + [7351]={ + ["distance"]=44101, + ["mine_stage"]=67 + }, + [7352]={ + ["distance"]=44107, + ["mine_stage"]=13 + }, + [7353]={ + ["distance"]=44113, + ["mine_stage"]=52 + }, + [7354]={ + ["distance"]=44119, + ["mine_stage"]=51 + }, + [7355]={ + ["distance"]=44125, + ["mine_stage"]=11 + }, + [7356]={ + ["distance"]=44131, + ["mine_stage"]=2 + }, + [7357]={ + ["distance"]=44137, + ["mine_stage"]=24 + }, + [7358]={ + ["distance"]=44143, + ["mine_stage"]=27 + }, + [7359]={ + ["distance"]=44149, + ["mine_stage"]=36 + }, + [7360]={ + ["distance"]=44155, + ["mine_stage"]=18 + }, + [7361]={ + ["distance"]=44161, + ["mine_stage"]=57 + }, + [7362]={ + ["distance"]=44167, + ["mine_stage"]=41 + }, + [7363]={ + ["distance"]=44173, + ["mine_stage"]=25 + }, + [7364]={ + ["distance"]=44179, + ["mine_stage"]=58 + }, + [7365]={ + ["distance"]=44185, + ["mine_stage"]=7 + }, + [7366]={ + ["distance"]=44191, + ["mine_stage"]=59 + }, + [7367]={ + ["distance"]=44197, + ["mine_stage"]=20 + }, + [7368]={ + ["distance"]=44203, + ["mine_stage"]=1 + }, + [7369]={ + ["distance"]=44209, + ["mine_stage"]=33 + }, + [7370]={ + ["distance"]=44215, + ["mine_stage"]=15 + }, + [7371]={ + ["distance"]=44221, + ["mine_stage"]=13 + }, + [7372]={ + ["distance"]=44227, + ["mine_stage"]=10 + }, + [7373]={ + ["distance"]=44233, + ["mine_stage"]=52 + }, + [7374]={ + ["distance"]=44239, + ["mine_stage"]=42 + }, + [7375]={ + ["distance"]=44245, + ["mine_stage"]=50 + }, + [7376]={ + ["distance"]=44251, + ["mine_stage"]=21 + }, + [7377]={ + ["distance"]=44257, + ["mine_stage"]=18 + }, + [7378]={ + ["distance"]=44263, + ["mine_stage"]=9 + }, + [7379]={ + ["distance"]=44269, + ["mine_stage"]=6 + }, + [7380]={ + ["distance"]=44275, + ["mine_stage"]=19 + }, + [7381]={ + ["distance"]=44281, + ["mine_stage"]=50 + }, + [7382]={ + ["distance"]=44287, + ["mine_stage"]=49 + }, + [7383]={ + ["distance"]=44293, + ["mine_stage"]=33 + }, + [7384]={ + ["distance"]=44299, + ["mine_stage"]=54 + }, + [7385]={ + ["distance"]=44305, + ["mine_stage"]=2 + }, + [7386]={ + ["distance"]=44311, + ["mine_stage"]=36 + }, + [7387]={ + ["distance"]=44317, + ["mine_stage"]=37 + }, + [7388]={ + ["distance"]=44323, + ["mine_stage"]=31 + }, + [7389]={ + ["distance"]=44329, + ["mine_stage"]=17 + }, + [7390]={ + ["distance"]=44335, + ["mine_stage"]=24 + }, + [7391]={ + ["distance"]=44341, + ["mine_stage"]=19 + }, + [7392]={ + ["distance"]=44347, + ["mine_stage"]=10 + }, + [7393]={ + ["distance"]=44353, + ["mine_stage"]=38 + }, + [7394]={ + ["distance"]=44359, + ["mine_stage"]=60 + }, + [7395]={ + ["distance"]=44365, + ["mine_stage"]=20 + }, + [7396]={ + ["distance"]=44371, + ["mine_stage"]=42 + }, + [7397]={ + ["distance"]=44377, + ["mine_stage"]=27 + }, + [7398]={ + ["distance"]=44383, + ["mine_stage"]=44 + }, + [7399]={ + ["distance"]=44389, + ["mine_stage"]=23 + }, + [7400]={ + ["distance"]=44395, + ["mine_stage"]=12 + }, + [7401]={ + ["distance"]=44401, + ["mine_stage"]=65 + }, + [7402]={ + ["distance"]=44407, + ["mine_stage"]=6 + }, + [7403]={ + ["distance"]=44413, + ["mine_stage"]=58 + }, + [7404]={ + ["distance"]=44419, + ["mine_stage"]=27 + }, + [7405]={ + ["distance"]=44425, + ["mine_stage"]=23 + }, + [7406]={ + ["distance"]=44431, + ["mine_stage"]=5 + }, + [7407]={ + ["distance"]=44437, + ["mine_stage"]=52 + }, + [7408]={ + ["distance"]=44443, + ["mine_stage"]=4 + }, + [7409]={ + ["distance"]=44449, + ["mine_stage"]=1 + }, + [7410]={ + ["distance"]=44455, + ["mine_stage"]=21 + }, + [7411]={ + ["distance"]=44461, + ["mine_stage"]=20 + }, + [7412]={ + ["distance"]=44467, + ["mine_stage"]=8 + }, + [7413]={ + ["distance"]=44473, + ["mine_stage"]=60 + }, + [7414]={ + ["distance"]=44479, + ["mine_stage"]=18 + }, + [7415]={ + ["distance"]=44485, + ["mine_stage"]=33 + }, + [7416]={ + ["distance"]=44491, + ["mine_stage"]=40 + }, + [7417]={ + ["distance"]=44497, + ["mine_stage"]=25 + }, + [7418]={ + ["distance"]=44503, + ["mine_stage"]=60 + }, + [7419]={ + ["distance"]=44509, + ["mine_stage"]=17 + }, + [7420]={ + ["distance"]=44515, + ["mine_stage"]=44 + }, + [7421]={ + ["distance"]=44521, + ["mine_stage"]=40 + }, + [7422]={ + ["distance"]=44527, + ["mine_stage"]=2 + }, + [7423]={ + ["distance"]=44533, + ["mine_stage"]=1 + }, + [7424]={ + ["distance"]=44539, + ["mine_stage"]=19 + }, + [7425]={ + ["distance"]=44545, + ["mine_stage"]=15 + }, + [7426]={ + ["distance"]=44551, + ["mine_stage"]=25 + }, + [7427]={ + ["distance"]=44557, + ["mine_stage"]=21 + }, + [7428]={ + ["distance"]=44563, + ["mine_stage"]=58 + }, + [7429]={ + ["distance"]=44569, + ["mine_stage"]=36 + }, + [7430]={ + ["distance"]=44575, + ["mine_stage"]=27 + }, + [7431]={ + ["distance"]=44581, + ["mine_stage"]=6 + }, + [7432]={ + ["distance"]=44587, + ["mine_stage"]=58 + }, + [7433]={ + ["distance"]=44593, + ["mine_stage"]=13 + }, + [7434]={ + ["distance"]=44599, + ["mine_stage"]=51 + }, + [7435]={ + ["distance"]=44605, + ["mine_stage"]=40 + }, + [7436]={ + ["distance"]=44611, + ["mine_stage"]=26 + }, + [7437]={ + ["distance"]=44617, + ["mine_stage"]=45 + }, + [7438]={ + ["distance"]=44623, + ["mine_stage"]=35 + }, + [7439]={ + ["distance"]=44629, + ["mine_stage"]=19 + }, + [7440]={ + ["distance"]=44635, + ["mine_stage"]=28 + }, + [7441]={ + ["distance"]=44641, + ["mine_stage"]=49 + }, + [7442]={ + ["distance"]=44647, + ["mine_stage"]=14 + }, + [7443]={ + ["distance"]=44653, + ["mine_stage"]=55 + }, + [7444]={ + ["distance"]=44659, + ["mine_stage"]=8 + }, + [7445]={ + ["distance"]=44665, + ["mine_stage"]=20 + }, + [7446]={ + ["distance"]=44671, + ["mine_stage"]=26 + }, + [7447]={ + ["distance"]=44677, + ["mine_stage"]=24 + }, + [7448]={ + ["distance"]=44683, + ["mine_stage"]=28 + }, + [7449]={ + ["distance"]=44689, + ["mine_stage"]=7 + }, + [7450]={ + ["distance"]=44695, + ["mine_stage"]=34 + }, + [7451]={ + ["distance"]=44701, + ["mine_stage"]=68 + }, + [7452]={ + ["distance"]=44707, + ["mine_stage"]=60 + }, + [7453]={ + ["distance"]=44713, + ["mine_stage"]=40 + }, + [7454]={ + ["distance"]=44719, + ["mine_stage"]=24 + }, + [7455]={ + ["distance"]=44725, + ["mine_stage"]=59 + }, + [7456]={ + ["distance"]=44731, + ["mine_stage"]=46 + }, + [7457]={ + ["distance"]=44737, + ["mine_stage"]=24 + }, + [7458]={ + ["distance"]=44743, + ["mine_stage"]=41 + }, + [7459]={ + ["distance"]=44749, + ["mine_stage"]=27 + }, + [7460]={ + ["distance"]=44755, + ["mine_stage"]=30 + }, + [7461]={ + ["distance"]=44761, + ["mine_stage"]=35 + }, + [7462]={ + ["distance"]=44767, + ["mine_stage"]=59 + }, + [7463]={ + ["distance"]=44773, + ["mine_stage"]=6 + }, + [7464]={ + ["distance"]=44779, + ["mine_stage"]=7 + }, + [7465]={ + ["distance"]=44785, + ["mine_stage"]=50 + }, + [7466]={ + ["distance"]=44791, + ["mine_stage"]=5 + }, + [7467]={ + ["distance"]=44797, + ["mine_stage"]=34 + }, + [7468]={ + ["distance"]=44803, + ["mine_stage"]=1 + }, + [7469]={ + ["distance"]=44809, + ["mine_stage"]=9 + }, + [7470]={ + ["distance"]=44815, + ["mine_stage"]=40 + }, + [7471]={ + ["distance"]=44821, + ["mine_stage"]=11 + }, + [7472]={ + ["distance"]=44827, + ["mine_stage"]=23 + }, + [7473]={ + ["distance"]=44833, + ["mine_stage"]=45 + }, + [7474]={ + ["distance"]=44839, + ["mine_stage"]=60 + }, + [7475]={ + ["distance"]=44845, + ["mine_stage"]=31 + }, + [7476]={ + ["distance"]=44851, + ["mine_stage"]=38 + }, + [7477]={ + ["distance"]=44857, + ["mine_stage"]=22 + }, + [7478]={ + ["distance"]=44863, + ["mine_stage"]=25 + }, + [7479]={ + ["distance"]=44869, + ["mine_stage"]=6 + }, + [7480]={ + ["distance"]=44875, + ["mine_stage"]=33 + }, + [7481]={ + ["distance"]=44881, + ["mine_stage"]=47 + }, + [7482]={ + ["distance"]=44887, + ["mine_stage"]=28 + }, + [7483]={ + ["distance"]=44893, + ["mine_stage"]=27 + }, + [7484]={ + ["distance"]=44899, + ["mine_stage"]=9 + }, + [7485]={ + ["distance"]=44905, + ["mine_stage"]=46 + }, + [7486]={ + ["distance"]=44911, + ["mine_stage"]=35 + }, + [7487]={ + ["distance"]=44917, + ["mine_stage"]=28 + }, + [7488]={ + ["distance"]=44923, + ["mine_stage"]=19 + }, + [7489]={ + ["distance"]=44929, + ["mine_stage"]=6 + }, + [7490]={ + ["distance"]=44935, + ["mine_stage"]=33 + }, + [7491]={ + ["distance"]=44941, + ["mine_stage"]=29 + }, + [7492]={ + ["distance"]=44947, + ["mine_stage"]=21 + }, + [7493]={ + ["distance"]=44953, + ["mine_stage"]=13 + }, + [7494]={ + ["distance"]=44959, + ["mine_stage"]=18 + }, + [7495]={ + ["distance"]=44965, + ["mine_stage"]=23 + }, + [7496]={ + ["distance"]=44971, + ["mine_stage"]=13 + }, + [7497]={ + ["distance"]=44977, + ["mine_stage"]=29 + }, + [7498]={ + ["distance"]=44983, + ["mine_stage"]=31 + }, + [7499]={ + ["distance"]=44989, + ["mine_stage"]=10 + }, + [7500]={ + ["distance"]=44995, + ["mine_stage"]=17 + }, + [7501]={ + ["distance"]=45001, + ["mine_stage"]=66 + }, + [7502]={ + ["distance"]=45007, + ["mine_stage"]=27 + }, + [7503]={ + ["distance"]=45013, + ["mine_stage"]=22 + }, + [7504]={ + ["distance"]=45019, + ["mine_stage"]=55 + }, + [7505]={ + ["distance"]=45025, + ["mine_stage"]=53 + }, + [7506]={ + ["distance"]=45031, + ["mine_stage"]=19 + }, + [7507]={ + ["distance"]=45037, + ["mine_stage"]=54 + }, + [7508]={ + ["distance"]=45043, + ["mine_stage"]=4 + }, + [7509]={ + ["distance"]=45049, + ["mine_stage"]=4 + }, + [7510]={ + ["distance"]=45055, + ["mine_stage"]=25 + }, + [7511]={ + ["distance"]=45061, + ["mine_stage"]=25 + }, + [7512]={ + ["distance"]=45067, + ["mine_stage"]=41 + }, + [7513]={ + ["distance"]=45073, + ["mine_stage"]=2 + }, + [7514]={ + ["distance"]=45079, + ["mine_stage"]=38 + }, + [7515]={ + ["distance"]=45085, + ["mine_stage"]=35 + }, + [7516]={ + ["distance"]=45091, + ["mine_stage"]=46 + }, + [7517]={ + ["distance"]=45097, + ["mine_stage"]=8 + }, + [7518]={ + ["distance"]=45103, + ["mine_stage"]=52 + }, + [7519]={ + ["distance"]=45109, + ["mine_stage"]=41 + }, + [7520]={ + ["distance"]=45115, + ["mine_stage"]=43 + }, + [7521]={ + ["distance"]=45121, + ["mine_stage"]=6 + }, + [7522]={ + ["distance"]=45127, + ["mine_stage"]=5 + }, + [7523]={ + ["distance"]=45133, + ["mine_stage"]=47 + }, + [7524]={ + ["distance"]=45139, + ["mine_stage"]=13 + }, + [7525]={ + ["distance"]=45145, + ["mine_stage"]=13 + }, + [7526]={ + ["distance"]=45151, + ["mine_stage"]=7 + }, + [7527]={ + ["distance"]=45157, + ["mine_stage"]=4 + }, + [7528]={ + ["distance"]=45163, + ["mine_stage"]=53 + }, + [7529]={ + ["distance"]=45169, + ["mine_stage"]=29 + }, + [7530]={ + ["distance"]=45175, + ["mine_stage"]=42 + }, + [7531]={ + ["distance"]=45181, + ["mine_stage"]=42 + }, + [7532]={ + ["distance"]=45187, + ["mine_stage"]=39 + }, + [7533]={ + ["distance"]=45193, + ["mine_stage"]=38 + }, + [7534]={ + ["distance"]=45199, + ["mine_stage"]=15 + }, + [7535]={ + ["distance"]=45205, + ["mine_stage"]=7 + }, + [7536]={ + ["distance"]=45211, + ["mine_stage"]=59 + }, + [7537]={ + ["distance"]=45217, + ["mine_stage"]=8 + }, + [7538]={ + ["distance"]=45223, + ["mine_stage"]=49 + }, + [7539]={ + ["distance"]=45229, + ["mine_stage"]=10 + }, + [7540]={ + ["distance"]=45235, + ["mine_stage"]=40 + }, + [7541]={ + ["distance"]=45241, + ["mine_stage"]=8 + }, + [7542]={ + ["distance"]=45247, + ["mine_stage"]=25 + }, + [7543]={ + ["distance"]=45253, + ["mine_stage"]=33 + }, + [7544]={ + ["distance"]=45259, + ["mine_stage"]=29 + }, + [7545]={ + ["distance"]=45265, + ["mine_stage"]=30 + }, + [7546]={ + ["distance"]=45271, + ["mine_stage"]=39 + }, + [7547]={ + ["distance"]=45277, + ["mine_stage"]=9 + }, + [7548]={ + ["distance"]=45283, + ["mine_stage"]=5 + }, + [7549]={ + ["distance"]=45289, + ["mine_stage"]=10 + }, + [7550]={ + ["distance"]=45295, + ["mine_stage"]=16 + }, + [7551]={ + ["distance"]=45301, + ["mine_stage"]=69 + }, + [7552]={ + ["distance"]=45307, + ["mine_stage"]=56 + }, + [7553]={ + ["distance"]=45313, + ["mine_stage"]=13 + }, + [7554]={ + ["distance"]=45319, + ["mine_stage"]=8 + }, + [7555]={ + ["distance"]=45325, + ["mine_stage"]=29 + }, + [7556]={ + ["distance"]=45331, + ["mine_stage"]=22 + }, + [7557]={ + ["distance"]=45337, + ["mine_stage"]=55 + }, + [7558]={ + ["distance"]=45343, + ["mine_stage"]=50 + }, + [7559]={ + ["distance"]=45349, + ["mine_stage"]=37 + }, + [7560]={ + ["distance"]=45355, + ["mine_stage"]=56 + }, + [7561]={ + ["distance"]=45361, + ["mine_stage"]=27 + }, + [7562]={ + ["distance"]=45367, + ["mine_stage"]=24 + }, + [7563]={ + ["distance"]=45373, + ["mine_stage"]=46 + }, + [7564]={ + ["distance"]=45379, + ["mine_stage"]=28 + }, + [7565]={ + ["distance"]=45385, + ["mine_stage"]=49 + }, + [7566]={ + ["distance"]=45391, + ["mine_stage"]=27 + }, + [7567]={ + ["distance"]=45397, + ["mine_stage"]=45 + }, + [7568]={ + ["distance"]=45403, + ["mine_stage"]=27 + }, + [7569]={ + ["distance"]=45409, + ["mine_stage"]=36 + }, + [7570]={ + ["distance"]=45415, + ["mine_stage"]=25 + }, + [7571]={ + ["distance"]=45421, + ["mine_stage"]=49 + }, + [7572]={ + ["distance"]=45427, + ["mine_stage"]=16 + }, + [7573]={ + ["distance"]=45433, + ["mine_stage"]=36 + }, + [7574]={ + ["distance"]=45439, + ["mine_stage"]=3 + }, + [7575]={ + ["distance"]=45445, + ["mine_stage"]=22 + }, + [7576]={ + ["distance"]=45451, + ["mine_stage"]=31 + }, + [7577]={ + ["distance"]=45457, + ["mine_stage"]=56 + }, + [7578]={ + ["distance"]=45463, + ["mine_stage"]=53 + }, + [7579]={ + ["distance"]=45469, + ["mine_stage"]=40 + }, + [7580]={ + ["distance"]=45475, + ["mine_stage"]=10 + }, + [7581]={ + ["distance"]=45481, + ["mine_stage"]=14 + }, + [7582]={ + ["distance"]=45487, + ["mine_stage"]=2 + }, + [7583]={ + ["distance"]=45493, + ["mine_stage"]=39 + }, + [7584]={ + ["distance"]=45499, + ["mine_stage"]=1 + }, + [7585]={ + ["distance"]=45505, + ["mine_stage"]=29 + }, + [7586]={ + ["distance"]=45511, + ["mine_stage"]=53 + }, + [7587]={ + ["distance"]=45517, + ["mine_stage"]=4 + }, + [7588]={ + ["distance"]=45523, + ["mine_stage"]=12 + }, + [7589]={ + ["distance"]=45529, + ["mine_stage"]=26 + }, + [7590]={ + ["distance"]=45535, + ["mine_stage"]=32 + }, + [7591]={ + ["distance"]=45541, + ["mine_stage"]=31 + }, + [7592]={ + ["distance"]=45547, + ["mine_stage"]=4 + }, + [7593]={ + ["distance"]=45553, + ["mine_stage"]=41 + }, + [7594]={ + ["distance"]=45559, + ["mine_stage"]=26 + }, + [7595]={ + ["distance"]=45565, + ["mine_stage"]=32 + }, + [7596]={ + ["distance"]=45571, + ["mine_stage"]=26 + }, + [7597]={ + ["distance"]=45577, + ["mine_stage"]=55 + }, + [7598]={ + ["distance"]=45583, + ["mine_stage"]=6 + }, + [7599]={ + ["distance"]=45589, + ["mine_stage"]=15 + }, + [7600]={ + ["distance"]=45595, + ["mine_stage"]=46 + }, + [7601]={ + ["distance"]=45601, + ["mine_stage"]=64 + }, + [7602]={ + ["distance"]=45607, + ["mine_stage"]=4 + }, + [7603]={ + ["distance"]=45613, + ["mine_stage"]=2 + }, + [7604]={ + ["distance"]=45619, + ["mine_stage"]=47 + }, + [7605]={ + ["distance"]=45625, + ["mine_stage"]=27 + }, + [7606]={ + ["distance"]=45631, + ["mine_stage"]=19 + }, + [7607]={ + ["distance"]=45637, + ["mine_stage"]=38 + }, + [7608]={ + ["distance"]=45643, + ["mine_stage"]=23 + }, + [7609]={ + ["distance"]=45649, + ["mine_stage"]=54 + }, + [7610]={ + ["distance"]=45655, + ["mine_stage"]=6 + }, + [7611]={ + ["distance"]=45661, + ["mine_stage"]=60 + }, + [7612]={ + ["distance"]=45667, + ["mine_stage"]=33 + }, + [7613]={ + ["distance"]=45673, + ["mine_stage"]=38 + }, + [7614]={ + ["distance"]=45679, + ["mine_stage"]=12 + }, + [7615]={ + ["distance"]=45685, + ["mine_stage"]=25 + }, + [7616]={ + ["distance"]=45691, + ["mine_stage"]=30 + }, + [7617]={ + ["distance"]=45697, + ["mine_stage"]=39 + }, + [7618]={ + ["distance"]=45703, + ["mine_stage"]=25 + }, + [7619]={ + ["distance"]=45709, + ["mine_stage"]=13 + }, + [7620]={ + ["distance"]=45715, + ["mine_stage"]=32 + }, + [7621]={ + ["distance"]=45721, + ["mine_stage"]=11 + }, + [7622]={ + ["distance"]=45727, + ["mine_stage"]=19 + }, + [7623]={ + ["distance"]=45733, + ["mine_stage"]=46 + }, + [7624]={ + ["distance"]=45739, + ["mine_stage"]=42 + }, + [7625]={ + ["distance"]=45745, + ["mine_stage"]=34 + }, + [7626]={ + ["distance"]=45751, + ["mine_stage"]=50 + }, + [7627]={ + ["distance"]=45757, + ["mine_stage"]=48 + }, + [7628]={ + ["distance"]=45763, + ["mine_stage"]=11 + }, + [7629]={ + ["distance"]=45769, + ["mine_stage"]=30 + }, + [7630]={ + ["distance"]=45775, + ["mine_stage"]=51 + }, + [7631]={ + ["distance"]=45781, + ["mine_stage"]=25 + }, + [7632]={ + ["distance"]=45787, + ["mine_stage"]=59 + }, + [7633]={ + ["distance"]=45793, + ["mine_stage"]=22 + }, + [7634]={ + ["distance"]=45799, + ["mine_stage"]=38 + }, + [7635]={ + ["distance"]=45805, + ["mine_stage"]=34 + }, + [7636]={ + ["distance"]=45811, + ["mine_stage"]=12 + }, + [7637]={ + ["distance"]=45817, + ["mine_stage"]=27 + }, + [7638]={ + ["distance"]=45823, + ["mine_stage"]=7 + }, + [7639]={ + ["distance"]=45829, + ["mine_stage"]=43 + }, + [7640]={ + ["distance"]=45835, + ["mine_stage"]=21 + }, + [7641]={ + ["distance"]=45841, + ["mine_stage"]=21 + }, + [7642]={ + ["distance"]=45847, + ["mine_stage"]=21 + }, + [7643]={ + ["distance"]=45853, + ["mine_stage"]=9 + }, + [7644]={ + ["distance"]=45859, + ["mine_stage"]=10 + }, + [7645]={ + ["distance"]=45865, + ["mine_stage"]=51 + }, + [7646]={ + ["distance"]=45871, + ["mine_stage"]=24 + }, + [7647]={ + ["distance"]=45877, + ["mine_stage"]=7 + }, + [7648]={ + ["distance"]=45883, + ["mine_stage"]=21 + }, + [7649]={ + ["distance"]=45889, + ["mine_stage"]=3 + }, + [7650]={ + ["distance"]=45895, + ["mine_stage"]=57 + }, + [7651]={ + ["distance"]=45901, + ["mine_stage"]=67 + }, + [7652]={ + ["distance"]=45907, + ["mine_stage"]=19 + }, + [7653]={ + ["distance"]=45913, + ["mine_stage"]=14 + }, + [7654]={ + ["distance"]=45919, + ["mine_stage"]=42 + }, + [7655]={ + ["distance"]=45925, + ["mine_stage"]=1 + }, + [7656]={ + ["distance"]=45931, + ["mine_stage"]=17 + }, + [7657]={ + ["distance"]=45937, + ["mine_stage"]=10 + }, + [7658]={ + ["distance"]=45943, + ["mine_stage"]=56 + }, + [7659]={ + ["distance"]=45949, + ["mine_stage"]=12 + }, + [7660]={ + ["distance"]=45955, + ["mine_stage"]=26 + }, + [7661]={ + ["distance"]=45961, + ["mine_stage"]=7 + }, + [7662]={ + ["distance"]=45967, + ["mine_stage"]=34 + }, + [7663]={ + ["distance"]=45973, + ["mine_stage"]=44 + }, + [7664]={ + ["distance"]=45979, + ["mine_stage"]=29 + }, + [7665]={ + ["distance"]=45985, + ["mine_stage"]=24 + }, + [7666]={ + ["distance"]=45991, + ["mine_stage"]=37 + }, + [7667]={ + ["distance"]=45997, + ["mine_stage"]=14 + }, + [7668]={ + ["distance"]=46003, + ["mine_stage"]=56 + }, + [7669]={ + ["distance"]=46009, + ["mine_stage"]=39 + }, + [7670]={ + ["distance"]=46015, + ["mine_stage"]=50 + }, + [7671]={ + ["distance"]=46021, + ["mine_stage"]=17 + }, + [7672]={ + ["distance"]=46027, + ["mine_stage"]=11 + }, + [7673]={ + ["distance"]=46033, + ["mine_stage"]=4 + }, + [7674]={ + ["distance"]=46039, + ["mine_stage"]=26 + }, + [7675]={ + ["distance"]=46045, + ["mine_stage"]=41 + }, + [7676]={ + ["distance"]=46051, + ["mine_stage"]=22 + }, + [7677]={ + ["distance"]=46057, + ["mine_stage"]=26 + }, + [7678]={ + ["distance"]=46063, + ["mine_stage"]=35 + }, + [7679]={ + ["distance"]=46069, + ["mine_stage"]=33 + }, + [7680]={ + ["distance"]=46075, + ["mine_stage"]=28 + }, + [7681]={ + ["distance"]=46081, + ["mine_stage"]=41 + }, + [7682]={ + ["distance"]=46087, + ["mine_stage"]=14 + }, + [7683]={ + ["distance"]=46093, + ["mine_stage"]=60 + }, + [7684]={ + ["distance"]=46099, + ["mine_stage"]=39 + }, + [7685]={ + ["distance"]=46105, + ["mine_stage"]=22 + }, + [7686]={ + ["distance"]=46111, + ["mine_stage"]=11 + }, + [7687]={ + ["distance"]=46117, + ["mine_stage"]=2 + }, + [7688]={ + ["distance"]=46123, + ["mine_stage"]=60 + }, + [7689]={ + ["distance"]=46129, + ["mine_stage"]=13 + }, + [7690]={ + ["distance"]=46135, + ["mine_stage"]=11 + }, + [7691]={ + ["distance"]=46141, + ["mine_stage"]=14 + }, + [7692]={ + ["distance"]=46147, + ["mine_stage"]=35 + }, + [7693]={ + ["distance"]=46153, + ["mine_stage"]=45 + }, + [7694]={ + ["distance"]=46159, + ["mine_stage"]=16 + }, + [7695]={ + ["distance"]=46165, + ["mine_stage"]=53 + }, + [7696]={ + ["distance"]=46171, + ["mine_stage"]=42 + }, + [7697]={ + ["distance"]=46177, + ["mine_stage"]=33 + }, + [7698]={ + ["distance"]=46183, + ["mine_stage"]=53 + }, + [7699]={ + ["distance"]=46189, + ["mine_stage"]=55 + }, + [7700]={ + ["distance"]=46195, + ["mine_stage"]=35 + }, + [7701]={ + ["distance"]=46201, + ["mine_stage"]=65 + }, + [7702]={ + ["distance"]=46207, + ["mine_stage"]=3 + }, + [7703]={ + ["distance"]=46213, + ["mine_stage"]=35 + }, + [7704]={ + ["distance"]=46219, + ["mine_stage"]=60 + }, + [7705]={ + ["distance"]=46225, + ["mine_stage"]=13 + }, + [7706]={ + ["distance"]=46231, + ["mine_stage"]=50 + }, + [7707]={ + ["distance"]=46237, + ["mine_stage"]=51 + }, + [7708]={ + ["distance"]=46243, + ["mine_stage"]=56 + }, + [7709]={ + ["distance"]=46249, + ["mine_stage"]=5 + }, + [7710]={ + ["distance"]=46255, + ["mine_stage"]=13 + }, + [7711]={ + ["distance"]=46261, + ["mine_stage"]=41 + }, + [7712]={ + ["distance"]=46267, + ["mine_stage"]=1 + }, + [7713]={ + ["distance"]=46273, + ["mine_stage"]=14 + }, + [7714]={ + ["distance"]=46279, + ["mine_stage"]=24 + }, + [7715]={ + ["distance"]=46285, + ["mine_stage"]=8 + }, + [7716]={ + ["distance"]=46291, + ["mine_stage"]=8 + }, + [7717]={ + ["distance"]=46297, + ["mine_stage"]=14 + }, + [7718]={ + ["distance"]=46303, + ["mine_stage"]=33 + }, + [7719]={ + ["distance"]=46309, + ["mine_stage"]=35 + }, + [7720]={ + ["distance"]=46315, + ["mine_stage"]=8 + }, + [7721]={ + ["distance"]=46321, + ["mine_stage"]=52 + }, + [7722]={ + ["distance"]=46327, + ["mine_stage"]=23 + }, + [7723]={ + ["distance"]=46333, + ["mine_stage"]=12 + }, + [7724]={ + ["distance"]=46339, + ["mine_stage"]=6 + }, + [7725]={ + ["distance"]=46345, + ["mine_stage"]=38 + }, + [7726]={ + ["distance"]=46351, + ["mine_stage"]=20 + }, + [7727]={ + ["distance"]=46357, + ["mine_stage"]=60 + }, + [7728]={ + ["distance"]=46363, + ["mine_stage"]=12 + }, + [7729]={ + ["distance"]=46369, + ["mine_stage"]=3 + }, + [7730]={ + ["distance"]=46375, + ["mine_stage"]=36 + }, + [7731]={ + ["distance"]=46381, + ["mine_stage"]=4 + }, + [7732]={ + ["distance"]=46387, + ["mine_stage"]=15 + }, + [7733]={ + ["distance"]=46393, + ["mine_stage"]=38 + }, + [7734]={ + ["distance"]=46399, + ["mine_stage"]=36 + }, + [7735]={ + ["distance"]=46405, + ["mine_stage"]=33 + }, + [7736]={ + ["distance"]=46411, + ["mine_stage"]=41 + }, + [7737]={ + ["distance"]=46417, + ["mine_stage"]=15 + }, + [7738]={ + ["distance"]=46423, + ["mine_stage"]=38 + }, + [7739]={ + ["distance"]=46429, + ["mine_stage"]=43 + }, + [7740]={ + ["distance"]=46435, + ["mine_stage"]=44 + }, + [7741]={ + ["distance"]=46441, + ["mine_stage"]=59 + }, + [7742]={ + ["distance"]=46447, + ["mine_stage"]=42 + }, + [7743]={ + ["distance"]=46453, + ["mine_stage"]=2 + }, + [7744]={ + ["distance"]=46459, + ["mine_stage"]=31 + }, + [7745]={ + ["distance"]=46465, + ["mine_stage"]=45 + }, + [7746]={ + ["distance"]=46471, + ["mine_stage"]=15 + }, + [7747]={ + ["distance"]=46477, + ["mine_stage"]=59 + }, + [7748]={ + ["distance"]=46483, + ["mine_stage"]=7 + }, + [7749]={ + ["distance"]=46489, + ["mine_stage"]=14 + }, + [7750]={ + ["distance"]=46495, + ["mine_stage"]=53 + }, + [7751]={ + ["distance"]=46501, + ["mine_stage"]=68 + }, + [7752]={ + ["distance"]=46507, + ["mine_stage"]=26 + }, + [7753]={ + ["distance"]=46513, + ["mine_stage"]=38 + }, + [7754]={ + ["distance"]=46519, + ["mine_stage"]=14 + }, + [7755]={ + ["distance"]=46525, + ["mine_stage"]=3 + }, + [7756]={ + ["distance"]=46531, + ["mine_stage"]=35 + }, + [7757]={ + ["distance"]=46537, + ["mine_stage"]=57 + }, + [7758]={ + ["distance"]=46543, + ["mine_stage"]=48 + }, + [7759]={ + ["distance"]=46549, + ["mine_stage"]=38 + }, + [7760]={ + ["distance"]=46555, + ["mine_stage"]=28 + }, + [7761]={ + ["distance"]=46561, + ["mine_stage"]=57 + }, + [7762]={ + ["distance"]=46567, + ["mine_stage"]=2 + }, + [7763]={ + ["distance"]=46573, + ["mine_stage"]=37 + }, + [7764]={ + ["distance"]=46579, + ["mine_stage"]=3 + }, + [7765]={ + ["distance"]=46585, + ["mine_stage"]=34 + }, + [7766]={ + ["distance"]=46591, + ["mine_stage"]=52 + }, + [7767]={ + ["distance"]=46597, + ["mine_stage"]=14 + }, + [7768]={ + ["distance"]=46603, + ["mine_stage"]=48 + }, + [7769]={ + ["distance"]=46609, + ["mine_stage"]=30 + }, + [7770]={ + ["distance"]=46615, + ["mine_stage"]=44 + }, + [7771]={ + ["distance"]=46621, + ["mine_stage"]=22 + }, + [7772]={ + ["distance"]=46627, + ["mine_stage"]=36 + }, + [7773]={ + ["distance"]=46633, + ["mine_stage"]=30 + }, + [7774]={ + ["distance"]=46639, + ["mine_stage"]=45 + }, + [7775]={ + ["distance"]=46645, + ["mine_stage"]=41 + }, + [7776]={ + ["distance"]=46651, + ["mine_stage"]=30 + }, + [7777]={ + ["distance"]=46657, + ["mine_stage"]=37 + }, + [7778]={ + ["distance"]=46663, + ["mine_stage"]=6 + }, + [7779]={ + ["distance"]=46669, + ["mine_stage"]=35 + }, + [7780]={ + ["distance"]=46675, + ["mine_stage"]=12 + }, + [7781]={ + ["distance"]=46681, + ["mine_stage"]=22 + }, + [7782]={ + ["distance"]=46687, + ["mine_stage"]=11 + }, + [7783]={ + ["distance"]=46693, + ["mine_stage"]=21 + }, + [7784]={ + ["distance"]=46699, + ["mine_stage"]=37 + }, + [7785]={ + ["distance"]=46705, + ["mine_stage"]=21 + }, + [7786]={ + ["distance"]=46711, + ["mine_stage"]=7 + }, + [7787]={ + ["distance"]=46717, + ["mine_stage"]=5 + }, + [7788]={ + ["distance"]=46723, + ["mine_stage"]=17 + }, + [7789]={ + ["distance"]=46729, + ["mine_stage"]=3 + }, + [7790]={ + ["distance"]=46735, + ["mine_stage"]=45 + }, + [7791]={ + ["distance"]=46741, + ["mine_stage"]=32 + }, + [7792]={ + ["distance"]=46747, + ["mine_stage"]=56 + }, + [7793]={ + ["distance"]=46753, + ["mine_stage"]=55 + }, + [7794]={ + ["distance"]=46759, + ["mine_stage"]=17 + }, + [7795]={ + ["distance"]=46765, + ["mine_stage"]=24 + }, + [7796]={ + ["distance"]=46771, + ["mine_stage"]=2 + }, + [7797]={ + ["distance"]=46777, + ["mine_stage"]=58 + }, + [7798]={ + ["distance"]=46783, + ["mine_stage"]=41 + }, + [7799]={ + ["distance"]=46789, + ["mine_stage"]=48 + }, + [7800]={ + ["distance"]=46795, + ["mine_stage"]=32 + }, + [7801]={ + ["distance"]=46801, + ["mine_stage"]=66 + }, + [7802]={ + ["distance"]=46807, + ["mine_stage"]=56 + }, + [7803]={ + ["distance"]=46813, + ["mine_stage"]=24 + }, + [7804]={ + ["distance"]=46819, + ["mine_stage"]=52 + }, + [7805]={ + ["distance"]=46825, + ["mine_stage"]=56 + }, + [7806]={ + ["distance"]=46831, + ["mine_stage"]=10 + }, + [7807]={ + ["distance"]=46837, + ["mine_stage"]=16 + }, + [7808]={ + ["distance"]=46843, + ["mine_stage"]=58 + }, + [7809]={ + ["distance"]=46849, + ["mine_stage"]=26 + }, + [7810]={ + ["distance"]=46855, + ["mine_stage"]=56 + }, + [7811]={ + ["distance"]=46861, + ["mine_stage"]=42 + }, + [7812]={ + ["distance"]=46867, + ["mine_stage"]=45 + }, + [7813]={ + ["distance"]=46873, + ["mine_stage"]=26 + }, + [7814]={ + ["distance"]=46879, + ["mine_stage"]=25 + }, + [7815]={ + ["distance"]=46885, + ["mine_stage"]=1 + }, + [7816]={ + ["distance"]=46891, + ["mine_stage"]=6 + }, + [7817]={ + ["distance"]=46897, + ["mine_stage"]=15 + }, + [7818]={ + ["distance"]=46903, + ["mine_stage"]=43 + }, + [7819]={ + ["distance"]=46909, + ["mine_stage"]=9 + }, + [7820]={ + ["distance"]=46915, + ["mine_stage"]=6 + }, + [7821]={ + ["distance"]=46921, + ["mine_stage"]=9 + }, + [7822]={ + ["distance"]=46927, + ["mine_stage"]=14 + }, + [7823]={ + ["distance"]=46933, + ["mine_stage"]=49 + }, + [7824]={ + ["distance"]=46939, + ["mine_stage"]=16 + }, + [7825]={ + ["distance"]=46945, + ["mine_stage"]=18 + }, + [7826]={ + ["distance"]=46951, + ["mine_stage"]=53 + }, + [7827]={ + ["distance"]=46957, + ["mine_stage"]=8 + }, + [7828]={ + ["distance"]=46963, + ["mine_stage"]=58 + }, + [7829]={ + ["distance"]=46969, + ["mine_stage"]=1 + }, + [7830]={ + ["distance"]=46975, + ["mine_stage"]=24 + }, + [7831]={ + ["distance"]=46981, + ["mine_stage"]=45 + }, + [7832]={ + ["distance"]=46987, + ["mine_stage"]=58 + }, + [7833]={ + ["distance"]=46993, + ["mine_stage"]=9 + }, + [7834]={ + ["distance"]=46999, + ["mine_stage"]=46 + }, + [7835]={ + ["distance"]=47005, + ["mine_stage"]=4 + }, + [7836]={ + ["distance"]=47011, + ["mine_stage"]=50 + }, + [7837]={ + ["distance"]=47017, + ["mine_stage"]=53 + }, + [7838]={ + ["distance"]=47023, + ["mine_stage"]=1 + }, + [7839]={ + ["distance"]=47029, + ["mine_stage"]=6 + }, + [7840]={ + ["distance"]=47035, + ["mine_stage"]=10 + }, + [7841]={ + ["distance"]=47041, + ["mine_stage"]=43 + }, + [7842]={ + ["distance"]=47047, + ["mine_stage"]=6 + }, + [7843]={ + ["distance"]=47053, + ["mine_stage"]=12 + }, + [7844]={ + ["distance"]=47059, + ["mine_stage"]=9 + }, + [7845]={ + ["distance"]=47065, + ["mine_stage"]=17 + }, + [7846]={ + ["distance"]=47071, + ["mine_stage"]=42 + }, + [7847]={ + ["distance"]=47077, + ["mine_stage"]=11 + }, + [7848]={ + ["distance"]=47083, + ["mine_stage"]=41 + }, + [7849]={ + ["distance"]=47089, + ["mine_stage"]=58 + }, + [7850]={ + ["distance"]=47095, + ["mine_stage"]=3 + }, + [7851]={ + ["distance"]=47101, + ["mine_stage"]=69 + }, + [7852]={ + ["distance"]=47107, + ["mine_stage"]=20 + }, + [7853]={ + ["distance"]=47113, + ["mine_stage"]=7 + }, + [7854]={ + ["distance"]=47119, + ["mine_stage"]=41 + }, + [7855]={ + ["distance"]=47125, + ["mine_stage"]=50 + }, + [7856]={ + ["distance"]=47131, + ["mine_stage"]=27 + }, + [7857]={ + ["distance"]=47137, + ["mine_stage"]=60 + }, + [7858]={ + ["distance"]=47143, + ["mine_stage"]=31 + }, + [7859]={ + ["distance"]=47149, + ["mine_stage"]=38 + }, + [7860]={ + ["distance"]=47155, + ["mine_stage"]=60 + }, + [7861]={ + ["distance"]=47161, + ["mine_stage"]=17 + }, + [7862]={ + ["distance"]=47167, + ["mine_stage"]=21 + }, + [7863]={ + ["distance"]=47173, + ["mine_stage"]=6 + }, + [7864]={ + ["distance"]=47179, + ["mine_stage"]=58 + }, + [7865]={ + ["distance"]=47185, + ["mine_stage"]=10 + }, + [7866]={ + ["distance"]=47191, + ["mine_stage"]=58 + }, + [7867]={ + ["distance"]=47197, + ["mine_stage"]=36 + }, + [7868]={ + ["distance"]=47203, + ["mine_stage"]=6 + }, + [7869]={ + ["distance"]=47209, + ["mine_stage"]=27 + }, + [7870]={ + ["distance"]=47215, + ["mine_stage"]=58 + }, + [7871]={ + ["distance"]=47221, + ["mine_stage"]=4 + }, + [7872]={ + ["distance"]=47227, + ["mine_stage"]=53 + }, + [7873]={ + ["distance"]=47233, + ["mine_stage"]=39 + }, + [7874]={ + ["distance"]=47239, + ["mine_stage"]=50 + }, + [7875]={ + ["distance"]=47245, + ["mine_stage"]=38 + }, + [7876]={ + ["distance"]=47251, + ["mine_stage"]=2 + }, + [7877]={ + ["distance"]=47257, + ["mine_stage"]=51 + }, + [7878]={ + ["distance"]=47263, + ["mine_stage"]=55 + }, + [7879]={ + ["distance"]=47269, + ["mine_stage"]=27 + }, + [7880]={ + ["distance"]=47275, + ["mine_stage"]=38 + }, + [7881]={ + ["distance"]=47281, + ["mine_stage"]=17 + }, + [7882]={ + ["distance"]=47287, + ["mine_stage"]=17 + }, + [7883]={ + ["distance"]=47293, + ["mine_stage"]=25 + }, + [7884]={ + ["distance"]=47299, + ["mine_stage"]=4 + }, + [7885]={ + ["distance"]=47305, + ["mine_stage"]=45 + }, + [7886]={ + ["distance"]=47311, + ["mine_stage"]=11 + }, + [7887]={ + ["distance"]=47317, + ["mine_stage"]=23 + }, + [7888]={ + ["distance"]=47323, + ["mine_stage"]=59 + }, + [7889]={ + ["distance"]=47329, + ["mine_stage"]=7 + }, + [7890]={ + ["distance"]=47335, + ["mine_stage"]=25 + }, + [7891]={ + ["distance"]=47341, + ["mine_stage"]=22 + }, + [7892]={ + ["distance"]=47347, + ["mine_stage"]=17 + }, + [7893]={ + ["distance"]=47353, + ["mine_stage"]=18 + }, + [7894]={ + ["distance"]=47359, + ["mine_stage"]=47 + }, + [7895]={ + ["distance"]=47365, + ["mine_stage"]=5 + }, + [7896]={ + ["distance"]=47371, + ["mine_stage"]=18 + }, + [7897]={ + ["distance"]=47377, + ["mine_stage"]=55 + }, + [7898]={ + ["distance"]=47383, + ["mine_stage"]=38 + }, + [7899]={ + ["distance"]=47389, + ["mine_stage"]=20 + }, + [7900]={ + ["distance"]=47395, + ["mine_stage"]=17 + }, + [7901]={ + ["distance"]=47401, + ["mine_stage"]=64 + }, + [7902]={ + ["distance"]=47407, + ["mine_stage"]=55 + }, + [7903]={ + ["distance"]=47413, + ["mine_stage"]=7 + }, + [7904]={ + ["distance"]=47419, + ["mine_stage"]=38 + }, + [7905]={ + ["distance"]=47425, + ["mine_stage"]=39 + }, + [7906]={ + ["distance"]=47431, + ["mine_stage"]=24 + }, + [7907]={ + ["distance"]=47437, + ["mine_stage"]=38 + }, + [7908]={ + ["distance"]=47443, + ["mine_stage"]=53 + }, + [7909]={ + ["distance"]=47449, + ["mine_stage"]=53 + }, + [7910]={ + ["distance"]=47455, + ["mine_stage"]=58 + }, + [7911]={ + ["distance"]=47461, + ["mine_stage"]=8 + }, + [7912]={ + ["distance"]=47467, + ["mine_stage"]=52 + }, + [7913]={ + ["distance"]=47473, + ["mine_stage"]=31 + }, + [7914]={ + ["distance"]=47479, + ["mine_stage"]=42 + }, + [7915]={ + ["distance"]=47485, + ["mine_stage"]=9 + }, + [7916]={ + ["distance"]=47491, + ["mine_stage"]=18 + }, + [7917]={ + ["distance"]=47497, + ["mine_stage"]=12 + }, + [7918]={ + ["distance"]=47503, + ["mine_stage"]=25 + }, + [7919]={ + ["distance"]=47509, + ["mine_stage"]=9 + }, + [7920]={ + ["distance"]=47515, + ["mine_stage"]=30 + }, + [7921]={ + ["distance"]=47521, + ["mine_stage"]=54 + }, + [7922]={ + ["distance"]=47527, + ["mine_stage"]=15 + }, + [7923]={ + ["distance"]=47533, + ["mine_stage"]=34 + }, + [7924]={ + ["distance"]=47539, + ["mine_stage"]=5 + }, + [7925]={ + ["distance"]=47545, + ["mine_stage"]=7 + }, + [7926]={ + ["distance"]=47551, + ["mine_stage"]=1 + }, + [7927]={ + ["distance"]=47557, + ["mine_stage"]=4 + }, + [7928]={ + ["distance"]=47563, + ["mine_stage"]=58 + }, + [7929]={ + ["distance"]=47569, + ["mine_stage"]=50 + }, + [7930]={ + ["distance"]=47575, + ["mine_stage"]=29 + }, + [7931]={ + ["distance"]=47581, + ["mine_stage"]=38 + }, + [7932]={ + ["distance"]=47587, + ["mine_stage"]=38 + }, + [7933]={ + ["distance"]=47593, + ["mine_stage"]=48 + }, + [7934]={ + ["distance"]=47599, + ["mine_stage"]=48 + }, + [7935]={ + ["distance"]=47605, + ["mine_stage"]=35 + }, + [7936]={ + ["distance"]=47611, + ["mine_stage"]=46 + }, + [7937]={ + ["distance"]=47617, + ["mine_stage"]=22 + }, + [7938]={ + ["distance"]=47623, + ["mine_stage"]=18 + }, + [7939]={ + ["distance"]=47629, + ["mine_stage"]=47 + }, + [7940]={ + ["distance"]=47635, + ["mine_stage"]=60 + }, + [7941]={ + ["distance"]=47641, + ["mine_stage"]=49 + }, + [7942]={ + ["distance"]=47647, + ["mine_stage"]=45 + }, + [7943]={ + ["distance"]=47653, + ["mine_stage"]=45 + }, + [7944]={ + ["distance"]=47659, + ["mine_stage"]=50 + }, + [7945]={ + ["distance"]=47665, + ["mine_stage"]=39 + }, + [7946]={ + ["distance"]=47671, + ["mine_stage"]=28 + }, + [7947]={ + ["distance"]=47677, + ["mine_stage"]=7 + }, + [7948]={ + ["distance"]=47683, + ["mine_stage"]=17 + }, + [7949]={ + ["distance"]=47689, + ["mine_stage"]=51 + }, + [7950]={ + ["distance"]=47695, + ["mine_stage"]=1 + }, + [7951]={ + ["distance"]=47701, + ["mine_stage"]=67 + }, + [7952]={ + ["distance"]=47707, + ["mine_stage"]=45 + }, + [7953]={ + ["distance"]=47713, + ["mine_stage"]=20 + }, + [7954]={ + ["distance"]=47719, + ["mine_stage"]=10 + }, + [7955]={ + ["distance"]=47725, + ["mine_stage"]=53 + }, + [7956]={ + ["distance"]=47731, + ["mine_stage"]=27 + }, + [7957]={ + ["distance"]=47737, + ["mine_stage"]=34 + }, + [7958]={ + ["distance"]=47743, + ["mine_stage"]=6 + }, + [7959]={ + ["distance"]=47749, + ["mine_stage"]=11 + }, + [7960]={ + ["distance"]=47755, + ["mine_stage"]=41 + }, + [7961]={ + ["distance"]=47761, + ["mine_stage"]=46 + }, + [7962]={ + ["distance"]=47767, + ["mine_stage"]=18 + }, + [7963]={ + ["distance"]=47773, + ["mine_stage"]=47 + }, + [7964]={ + ["distance"]=47779, + ["mine_stage"]=22 + }, + [7965]={ + ["distance"]=47785, + ["mine_stage"]=9 + }, + [7966]={ + ["distance"]=47791, + ["mine_stage"]=42 + }, + [7967]={ + ["distance"]=47797, + ["mine_stage"]=1 + }, + [7968]={ + ["distance"]=47803, + ["mine_stage"]=55 + }, + [7969]={ + ["distance"]=47809, + ["mine_stage"]=53 + }, + [7970]={ + ["distance"]=47815, + ["mine_stage"]=52 + }, + [7971]={ + ["distance"]=47821, + ["mine_stage"]=5 + }, + [7972]={ + ["distance"]=47827, + ["mine_stage"]=39 + }, + [7973]={ + ["distance"]=47833, + ["mine_stage"]=6 + }, + [7974]={ + ["distance"]=47839, + ["mine_stage"]=44 + }, + [7975]={ + ["distance"]=47845, + ["mine_stage"]=33 + }, + [7976]={ + ["distance"]=47851, + ["mine_stage"]=35 + }, + [7977]={ + ["distance"]=47857, + ["mine_stage"]=58 + }, + [7978]={ + ["distance"]=47863, + ["mine_stage"]=2 + }, + [7979]={ + ["distance"]=47869, + ["mine_stage"]=49 + }, + [7980]={ + ["distance"]=47875, + ["mine_stage"]=43 + }, + [7981]={ + ["distance"]=47881, + ["mine_stage"]=22 + }, + [7982]={ + ["distance"]=47887, + ["mine_stage"]=23 + }, + [7983]={ + ["distance"]=47893, + ["mine_stage"]=4 + }, + [7984]={ + ["distance"]=47899, + ["mine_stage"]=16 + }, + [7985]={ + ["distance"]=47905, + ["mine_stage"]=16 + }, + [7986]={ + ["distance"]=47911, + ["mine_stage"]=36 + }, + [7987]={ + ["distance"]=47917, + ["mine_stage"]=39 + }, + [7988]={ + ["distance"]=47923, + ["mine_stage"]=29 + }, + [7989]={ + ["distance"]=47929, + ["mine_stage"]=46 + }, + [7990]={ + ["distance"]=47935, + ["mine_stage"]=18 + }, + [7991]={ + ["distance"]=47941, + ["mine_stage"]=28 + }, + [7992]={ + ["distance"]=47947, + ["mine_stage"]=16 + }, + [7993]={ + ["distance"]=47953, + ["mine_stage"]=1 + }, + [7994]={ + ["distance"]=47959, + ["mine_stage"]=17 + }, + [7995]={ + ["distance"]=47965, + ["mine_stage"]=57 + }, + [7996]={ + ["distance"]=47971, + ["mine_stage"]=60 + }, + [7997]={ + ["distance"]=47977, + ["mine_stage"]=43 + }, + [7998]={ + ["distance"]=47983, + ["mine_stage"]=53 + }, + [7999]={ + ["distance"]=47989, + ["mine_stage"]=27 + }, + [8000]={ + ["distance"]=47995, + ["mine_stage"]=41 + }, + [8001]={ + ["distance"]=48001, + ["mine_stage"]=65 + }, + [8002]={ + ["distance"]=48007, + ["mine_stage"]=29 + }, + [8003]={ + ["distance"]=48013, + ["mine_stage"]=1 + }, + [8004]={ + ["distance"]=48019, + ["mine_stage"]=28 + }, + [8005]={ + ["distance"]=48025, + ["mine_stage"]=40 + }, + [8006]={ + ["distance"]=48031, + ["mine_stage"]=12 + }, + [8007]={ + ["distance"]=48037, + ["mine_stage"]=50 + }, + [8008]={ + ["distance"]=48043, + ["mine_stage"]=29 + }, + [8009]={ + ["distance"]=48049, + ["mine_stage"]=26 + }, + [8010]={ + ["distance"]=48055, + ["mine_stage"]=16 + }, + [8011]={ + ["distance"]=48061, + ["mine_stage"]=52 + }, + [8012]={ + ["distance"]=48067, + ["mine_stage"]=15 + }, + [8013]={ + ["distance"]=48073, + ["mine_stage"]=36 + }, + [8014]={ + ["distance"]=48079, + ["mine_stage"]=11 + }, + [8015]={ + ["distance"]=48085, + ["mine_stage"]=15 + }, + [8016]={ + ["distance"]=48091, + ["mine_stage"]=31 + }, + [8017]={ + ["distance"]=48097, + ["mine_stage"]=20 + }, + [8018]={ + ["distance"]=48103, + ["mine_stage"]=30 + }, + [8019]={ + ["distance"]=48109, + ["mine_stage"]=49 + }, + [8020]={ + ["distance"]=48115, + ["mine_stage"]=45 + }, + [8021]={ + ["distance"]=48121, + ["mine_stage"]=37 + }, + [8022]={ + ["distance"]=48127, + ["mine_stage"]=19 + }, + [8023]={ + ["distance"]=48133, + ["mine_stage"]=27 + }, + [8024]={ + ["distance"]=48139, + ["mine_stage"]=45 + }, + [8025]={ + ["distance"]=48145, + ["mine_stage"]=18 + }, + [8026]={ + ["distance"]=48151, + ["mine_stage"]=22 + }, + [8027]={ + ["distance"]=48157, + ["mine_stage"]=56 + }, + [8028]={ + ["distance"]=48163, + ["mine_stage"]=13 + }, + [8029]={ + ["distance"]=48169, + ["mine_stage"]=47 + }, + [8030]={ + ["distance"]=48175, + ["mine_stage"]=13 + }, + [8031]={ + ["distance"]=48181, + ["mine_stage"]=28 + }, + [8032]={ + ["distance"]=48187, + ["mine_stage"]=35 + }, + [8033]={ + ["distance"]=48193, + ["mine_stage"]=6 + }, + [8034]={ + ["distance"]=48199, + ["mine_stage"]=19 + }, + [8035]={ + ["distance"]=48205, + ["mine_stage"]=31 + }, + [8036]={ + ["distance"]=48211, + ["mine_stage"]=33 + }, + [8037]={ + ["distance"]=48217, + ["mine_stage"]=57 + }, + [8038]={ + ["distance"]=48223, + ["mine_stage"]=2 + }, + [8039]={ + ["distance"]=48229, + ["mine_stage"]=51 + }, + [8040]={ + ["distance"]=48235, + ["mine_stage"]=7 + }, + [8041]={ + ["distance"]=48241, + ["mine_stage"]=47 + }, + [8042]={ + ["distance"]=48247, + ["mine_stage"]=46 + }, + [8043]={ + ["distance"]=48253, + ["mine_stage"]=18 + }, + [8044]={ + ["distance"]=48259, + ["mine_stage"]=54 + }, + [8045]={ + ["distance"]=48265, + ["mine_stage"]=39 + }, + [8046]={ + ["distance"]=48271, + ["mine_stage"]=45 + }, + [8047]={ + ["distance"]=48277, + ["mine_stage"]=55 + }, + [8048]={ + ["distance"]=48283, + ["mine_stage"]=9 + }, + [8049]={ + ["distance"]=48289, + ["mine_stage"]=5 + }, + [8050]={ + ["distance"]=48295, + ["mine_stage"]=6 + }, + [8051]={ + ["distance"]=48301, + ["mine_stage"]=68 + }, + [8052]={ + ["distance"]=48307, + ["mine_stage"]=46 + }, + [8053]={ + ["distance"]=48313, + ["mine_stage"]=13 + }, + [8054]={ + ["distance"]=48319, + ["mine_stage"]=20 + }, + [8055]={ + ["distance"]=48325, + ["mine_stage"]=33 + }, + [8056]={ + ["distance"]=48331, + ["mine_stage"]=44 + }, + [8057]={ + ["distance"]=48337, + ["mine_stage"]=1 + }, + [8058]={ + ["distance"]=48343, + ["mine_stage"]=21 + }, + [8059]={ + ["distance"]=48349, + ["mine_stage"]=41 + }, + [8060]={ + ["distance"]=48355, + ["mine_stage"]=54 + }, + [8061]={ + ["distance"]=48361, + ["mine_stage"]=4 + }, + [8062]={ + ["distance"]=48367, + ["mine_stage"]=56 + }, + [8063]={ + ["distance"]=48373, + ["mine_stage"]=60 + }, + [8064]={ + ["distance"]=48379, + ["mine_stage"]=43 + }, + [8065]={ + ["distance"]=48385, + ["mine_stage"]=9 + }, + [8066]={ + ["distance"]=48391, + ["mine_stage"]=2 + }, + [8067]={ + ["distance"]=48397, + ["mine_stage"]=19 + }, + [8068]={ + ["distance"]=48403, + ["mine_stage"]=39 + }, + [8069]={ + ["distance"]=48409, + ["mine_stage"]=51 + }, + [8070]={ + ["distance"]=48415, + ["mine_stage"]=59 + }, + [8071]={ + ["distance"]=48421, + ["mine_stage"]=54 + }, + [8072]={ + ["distance"]=48427, + ["mine_stage"]=40 + }, + [8073]={ + ["distance"]=48433, + ["mine_stage"]=14 + }, + [8074]={ + ["distance"]=48439, + ["mine_stage"]=37 + }, + [8075]={ + ["distance"]=48445, + ["mine_stage"]=14 + }, + [8076]={ + ["distance"]=48451, + ["mine_stage"]=20 + }, + [8077]={ + ["distance"]=48457, + ["mine_stage"]=59 + }, + [8078]={ + ["distance"]=48463, + ["mine_stage"]=45 + }, + [8079]={ + ["distance"]=48469, + ["mine_stage"]=36 + }, + [8080]={ + ["distance"]=48475, + ["mine_stage"]=21 + }, + [8081]={ + ["distance"]=48481, + ["mine_stage"]=35 + }, + [8082]={ + ["distance"]=48487, + ["mine_stage"]=19 + }, + [8083]={ + ["distance"]=48493, + ["mine_stage"]=14 + }, + [8084]={ + ["distance"]=48499, + ["mine_stage"]=29 + }, + [8085]={ + ["distance"]=48505, + ["mine_stage"]=37 + }, + [8086]={ + ["distance"]=48511, + ["mine_stage"]=12 + }, + [8087]={ + ["distance"]=48517, + ["mine_stage"]=20 + }, + [8088]={ + ["distance"]=48523, + ["mine_stage"]=24 + }, + [8089]={ + ["distance"]=48529, + ["mine_stage"]=29 + }, + [8090]={ + ["distance"]=48535, + ["mine_stage"]=15 + }, + [8091]={ + ["distance"]=48541, + ["mine_stage"]=12 + }, + [8092]={ + ["distance"]=48547, + ["mine_stage"]=7 + }, + [8093]={ + ["distance"]=48553, + ["mine_stage"]=58 + }, + [8094]={ + ["distance"]=48559, + ["mine_stage"]=57 + }, + [8095]={ + ["distance"]=48565, + ["mine_stage"]=2 + }, + [8096]={ + ["distance"]=48571, + ["mine_stage"]=8 + }, + [8097]={ + ["distance"]=48577, + ["mine_stage"]=14 + }, + [8098]={ + ["distance"]=48583, + ["mine_stage"]=30 + }, + [8099]={ + ["distance"]=48589, + ["mine_stage"]=48 + }, + [8100]={ + ["distance"]=48595, + ["mine_stage"]=59 + }, + [8101]={ + ["distance"]=48601, + ["mine_stage"]=66 + }, + [8102]={ + ["distance"]=48607, + ["mine_stage"]=56 + }, + [8103]={ + ["distance"]=48613, + ["mine_stage"]=18 + }, + [8104]={ + ["distance"]=48619, + ["mine_stage"]=40 + }, + [8105]={ + ["distance"]=48625, + ["mine_stage"]=10 + }, + [8106]={ + ["distance"]=48631, + ["mine_stage"]=22 + }, + [8107]={ + ["distance"]=48637, + ["mine_stage"]=58 + }, + [8108]={ + ["distance"]=48643, + ["mine_stage"]=36 + }, + [8109]={ + ["distance"]=48649, + ["mine_stage"]=9 + }, + [8110]={ + ["distance"]=48655, + ["mine_stage"]=6 + }, + [8111]={ + ["distance"]=48661, + ["mine_stage"]=24 + }, + [8112]={ + ["distance"]=48667, + ["mine_stage"]=29 + }, + [8113]={ + ["distance"]=48673, + ["mine_stage"]=8 + }, + [8114]={ + ["distance"]=48679, + ["mine_stage"]=46 + }, + [8115]={ + ["distance"]=48685, + ["mine_stage"]=35 + }, + [8116]={ + ["distance"]=48691, + ["mine_stage"]=57 + }, + [8117]={ + ["distance"]=48697, + ["mine_stage"]=4 + }, + [8118]={ + ["distance"]=48703, + ["mine_stage"]=55 + }, + [8119]={ + ["distance"]=48709, + ["mine_stage"]=56 + }, + [8120]={ + ["distance"]=48715, + ["mine_stage"]=53 + }, + [8121]={ + ["distance"]=48721, + ["mine_stage"]=6 + }, + [8122]={ + ["distance"]=48727, + ["mine_stage"]=56 + }, + [8123]={ + ["distance"]=48733, + ["mine_stage"]=50 + }, + [8124]={ + ["distance"]=48739, + ["mine_stage"]=18 + }, + [8125]={ + ["distance"]=48745, + ["mine_stage"]=10 + }, + [8126]={ + ["distance"]=48751, + ["mine_stage"]=13 + }, + [8127]={ + ["distance"]=48757, + ["mine_stage"]=41 + }, + [8128]={ + ["distance"]=48763, + ["mine_stage"]=18 + }, + [8129]={ + ["distance"]=48769, + ["mine_stage"]=15 + }, + [8130]={ + ["distance"]=48775, + ["mine_stage"]=15 + }, + [8131]={ + ["distance"]=48781, + ["mine_stage"]=33 + }, + [8132]={ + ["distance"]=48787, + ["mine_stage"]=18 + }, + [8133]={ + ["distance"]=48793, + ["mine_stage"]=32 + }, + [8134]={ + ["distance"]=48799, + ["mine_stage"]=15 + }, + [8135]={ + ["distance"]=48805, + ["mine_stage"]=12 + }, + [8136]={ + ["distance"]=48811, + ["mine_stage"]=43 + }, + [8137]={ + ["distance"]=48817, + ["mine_stage"]=37 + }, + [8138]={ + ["distance"]=48823, + ["mine_stage"]=18 + }, + [8139]={ + ["distance"]=48829, + ["mine_stage"]=55 + }, + [8140]={ + ["distance"]=48835, + ["mine_stage"]=16 + }, + [8141]={ + ["distance"]=48841, + ["mine_stage"]=46 + }, + [8142]={ + ["distance"]=48847, + ["mine_stage"]=32 + }, + [8143]={ + ["distance"]=48853, + ["mine_stage"]=28 + }, + [8144]={ + ["distance"]=48859, + ["mine_stage"]=22 + }, + [8145]={ + ["distance"]=48865, + ["mine_stage"]=4 + }, + [8146]={ + ["distance"]=48871, + ["mine_stage"]=10 + }, + [8147]={ + ["distance"]=48877, + ["mine_stage"]=56 + }, + [8148]={ + ["distance"]=48883, + ["mine_stage"]=47 + }, + [8149]={ + ["distance"]=48889, + ["mine_stage"]=18 + }, + [8150]={ + ["distance"]=48895, + ["mine_stage"]=9 + }, + [8151]={ + ["distance"]=48901, + ["mine_stage"]=69 + }, + [8152]={ + ["distance"]=48907, + ["mine_stage"]=41 + }, + [8153]={ + ["distance"]=48913, + ["mine_stage"]=36 + }, + [8154]={ + ["distance"]=48919, + ["mine_stage"]=7 + }, + [8155]={ + ["distance"]=48925, + ["mine_stage"]=11 + }, + [8156]={ + ["distance"]=48931, + ["mine_stage"]=56 + }, + [8157]={ + ["distance"]=48937, + ["mine_stage"]=1 + }, + [8158]={ + ["distance"]=48943, + ["mine_stage"]=30 + }, + [8159]={ + ["distance"]=48949, + ["mine_stage"]=6 + }, + [8160]={ + ["distance"]=48955, + ["mine_stage"]=27 + }, + [8161]={ + ["distance"]=48961, + ["mine_stage"]=28 + }, + [8162]={ + ["distance"]=48967, + ["mine_stage"]=27 + }, + [8163]={ + ["distance"]=48973, + ["mine_stage"]=23 + }, + [8164]={ + ["distance"]=48979, + ["mine_stage"]=11 + }, + [8165]={ + ["distance"]=48985, + ["mine_stage"]=2 + }, + [8166]={ + ["distance"]=48991, + ["mine_stage"]=35 + }, + [8167]={ + ["distance"]=48997, + ["mine_stage"]=10 + }, + [8168]={ + ["distance"]=49003, + ["mine_stage"]=28 + }, + [8169]={ + ["distance"]=49009, + ["mine_stage"]=5 + }, + [8170]={ + ["distance"]=49015, + ["mine_stage"]=31 + }, + [8171]={ + ["distance"]=49021, + ["mine_stage"]=10 + }, + [8172]={ + ["distance"]=49027, + ["mine_stage"]=20 + }, + [8173]={ + ["distance"]=49033, + ["mine_stage"]=43 + }, + [8174]={ + ["distance"]=49039, + ["mine_stage"]=11 + }, + [8175]={ + ["distance"]=49045, + ["mine_stage"]=18 + }, + [8176]={ + ["distance"]=49051, + ["mine_stage"]=40 + }, + [8177]={ + ["distance"]=49057, + ["mine_stage"]=45 + }, + [8178]={ + ["distance"]=49063, + ["mine_stage"]=45 + }, + [8179]={ + ["distance"]=49069, + ["mine_stage"]=47 + }, + [8180]={ + ["distance"]=49075, + ["mine_stage"]=37 + }, + [8181]={ + ["distance"]=49081, + ["mine_stage"]=57 + }, + [8182]={ + ["distance"]=49087, + ["mine_stage"]=31 + }, + [8183]={ + ["distance"]=49093, + ["mine_stage"]=32 + }, + [8184]={ + ["distance"]=49099, + ["mine_stage"]=37 + }, + [8185]={ + ["distance"]=49105, + ["mine_stage"]=30 + }, + [8186]={ + ["distance"]=49111, + ["mine_stage"]=18 + }, + [8187]={ + ["distance"]=49117, + ["mine_stage"]=41 + }, + [8188]={ + ["distance"]=49123, + ["mine_stage"]=57 + }, + [8189]={ + ["distance"]=49129, + ["mine_stage"]=53 + }, + [8190]={ + ["distance"]=49135, + ["mine_stage"]=50 + }, + [8191]={ + ["distance"]=49141, + ["mine_stage"]=35 + }, + [8192]={ + ["distance"]=49147, + ["mine_stage"]=44 + }, + [8193]={ + ["distance"]=49153, + ["mine_stage"]=50 + }, + [8194]={ + ["distance"]=49159, + ["mine_stage"]=2 + }, + [8195]={ + ["distance"]=49165, + ["mine_stage"]=15 + }, + [8196]={ + ["distance"]=49171, + ["mine_stage"]=2 + }, + [8197]={ + ["distance"]=49177, + ["mine_stage"]=24 + }, + [8198]={ + ["distance"]=49183, + ["mine_stage"]=40 + }, + [8199]={ + ["distance"]=49189, + ["mine_stage"]=12 + }, + [8200]={ + ["distance"]=49195, + ["mine_stage"]=37 + }, + [8201]={ + ["distance"]=49201, + ["mine_stage"]=64 + }, + [8202]={ + ["distance"]=49207, + ["mine_stage"]=13 + }, + [8203]={ + ["distance"]=49213, + ["mine_stage"]=11 + }, + [8204]={ + ["distance"]=49219, + ["mine_stage"]=56 + }, + [8205]={ + ["distance"]=49225, + ["mine_stage"]=18 + }, + [8206]={ + ["distance"]=49231, + ["mine_stage"]=46 + }, + [8207]={ + ["distance"]=49237, + ["mine_stage"]=41 + }, + [8208]={ + ["distance"]=49243, + ["mine_stage"]=20 + }, + [8209]={ + ["distance"]=49249, + ["mine_stage"]=60 + }, + [8210]={ + ["distance"]=49255, + ["mine_stage"]=23 + }, + [8211]={ + ["distance"]=49261, + ["mine_stage"]=48 + }, + [8212]={ + ["distance"]=49267, + ["mine_stage"]=13 + }, + [8213]={ + ["distance"]=49273, + ["mine_stage"]=4 + }, + [8214]={ + ["distance"]=49279, + ["mine_stage"]=39 + }, + [8215]={ + ["distance"]=49285, + ["mine_stage"]=31 + }, + [8216]={ + ["distance"]=49291, + ["mine_stage"]=9 + }, + [8217]={ + ["distance"]=49297, + ["mine_stage"]=17 + }, + [8218]={ + ["distance"]=49303, + ["mine_stage"]=13 + }, + [8219]={ + ["distance"]=49309, + ["mine_stage"]=20 + }, + [8220]={ + ["distance"]=49315, + ["mine_stage"]=5 + }, + [8221]={ + ["distance"]=49321, + ["mine_stage"]=23 + }, + [8222]={ + ["distance"]=49327, + ["mine_stage"]=57 + }, + [8223]={ + ["distance"]=49333, + ["mine_stage"]=33 + }, + [8224]={ + ["distance"]=49339, + ["mine_stage"]=5 + }, + [8225]={ + ["distance"]=49345, + ["mine_stage"]=44 + }, + [8226]={ + ["distance"]=49351, + ["mine_stage"]=25 + }, + [8227]={ + ["distance"]=49357, + ["mine_stage"]=52 + }, + [8228]={ + ["distance"]=49363, + ["mine_stage"]=18 + }, + [8229]={ + ["distance"]=49369, + ["mine_stage"]=24 + }, + [8230]={ + ["distance"]=49375, + ["mine_stage"]=21 + }, + [8231]={ + ["distance"]=49381, + ["mine_stage"]=36 + }, + [8232]={ + ["distance"]=49387, + ["mine_stage"]=41 + }, + [8233]={ + ["distance"]=49393, + ["mine_stage"]=35 + }, + [8234]={ + ["distance"]=49399, + ["mine_stage"]=21 + }, + [8235]={ + ["distance"]=49405, + ["mine_stage"]=42 + }, + [8236]={ + ["distance"]=49411, + ["mine_stage"]=30 + }, + [8237]={ + ["distance"]=49417, + ["mine_stage"]=30 + }, + [8238]={ + ["distance"]=49423, + ["mine_stage"]=37 + }, + [8239]={ + ["distance"]=49429, + ["mine_stage"]=34 + }, + [8240]={ + ["distance"]=49435, + ["mine_stage"]=34 + }, + [8241]={ + ["distance"]=49441, + ["mine_stage"]=60 + }, + [8242]={ + ["distance"]=49447, + ["mine_stage"]=37 + }, + [8243]={ + ["distance"]=49453, + ["mine_stage"]=2 + }, + [8244]={ + ["distance"]=49459, + ["mine_stage"]=19 + }, + [8245]={ + ["distance"]=49465, + ["mine_stage"]=19 + }, + [8246]={ + ["distance"]=49471, + ["mine_stage"]=31 + }, + [8247]={ + ["distance"]=49477, + ["mine_stage"]=55 + }, + [8248]={ + ["distance"]=49483, + ["mine_stage"]=4 + }, + [8249]={ + ["distance"]=49489, + ["mine_stage"]=55 + }, + [8250]={ + ["distance"]=49495, + ["mine_stage"]=15 + }, + [8251]={ + ["distance"]=49501, + ["mine_stage"]=67 + }, + [8252]={ + ["distance"]=49507, + ["mine_stage"]=12 + }, + [8253]={ + ["distance"]=49513, + ["mine_stage"]=31 + }, + [8254]={ + ["distance"]=49519, + ["mine_stage"]=7 + }, + [8255]={ + ["distance"]=49525, + ["mine_stage"]=32 + }, + [8256]={ + ["distance"]=49531, + ["mine_stage"]=37 + }, + [8257]={ + ["distance"]=49537, + ["mine_stage"]=35 + }, + [8258]={ + ["distance"]=49543, + ["mine_stage"]=41 + }, + [8259]={ + ["distance"]=49549, + ["mine_stage"]=52 + }, + [8260]={ + ["distance"]=49555, + ["mine_stage"]=58 + }, + [8261]={ + ["distance"]=49561, + ["mine_stage"]=47 + }, + [8262]={ + ["distance"]=49567, + ["mine_stage"]=52 + }, + [8263]={ + ["distance"]=49573, + ["mine_stage"]=59 + }, + [8264]={ + ["distance"]=49579, + ["mine_stage"]=25 + }, + [8265]={ + ["distance"]=49585, + ["mine_stage"]=8 + }, + [8266]={ + ["distance"]=49591, + ["mine_stage"]=12 + }, + [8267]={ + ["distance"]=49597, + ["mine_stage"]=12 + }, + [8268]={ + ["distance"]=49603, + ["mine_stage"]=39 + }, + [8269]={ + ["distance"]=49609, + ["mine_stage"]=12 + }, + [8270]={ + ["distance"]=49615, + ["mine_stage"]=49 + }, + [8271]={ + ["distance"]=49621, + ["mine_stage"]=31 + }, + [8272]={ + ["distance"]=49627, + ["mine_stage"]=53 + }, + [8273]={ + ["distance"]=49633, + ["mine_stage"]=6 + }, + [8274]={ + ["distance"]=49639, + ["mine_stage"]=1 + }, + [8275]={ + ["distance"]=49645, + ["mine_stage"]=3 + }, + [8276]={ + ["distance"]=49651, + ["mine_stage"]=16 + }, + [8277]={ + ["distance"]=49657, + ["mine_stage"]=40 + }, + [8278]={ + ["distance"]=49663, + ["mine_stage"]=35 + }, + [8279]={ + ["distance"]=49669, + ["mine_stage"]=38 + }, + [8280]={ + ["distance"]=49675, + ["mine_stage"]=17 + }, + [8281]={ + ["distance"]=49681, + ["mine_stage"]=46 + }, + [8282]={ + ["distance"]=49687, + ["mine_stage"]=37 + }, + [8283]={ + ["distance"]=49693, + ["mine_stage"]=1 + }, + [8284]={ + ["distance"]=49699, + ["mine_stage"]=46 + }, + [8285]={ + ["distance"]=49705, + ["mine_stage"]=31 + }, + [8286]={ + ["distance"]=49711, + ["mine_stage"]=24 + }, + [8287]={ + ["distance"]=49717, + ["mine_stage"]=59 + }, + [8288]={ + ["distance"]=49723, + ["mine_stage"]=28 + }, + [8289]={ + ["distance"]=49729, + ["mine_stage"]=38 + }, + [8290]={ + ["distance"]=49735, + ["mine_stage"]=3 + }, + [8291]={ + ["distance"]=49741, + ["mine_stage"]=54 + }, + [8292]={ + ["distance"]=49747, + ["mine_stage"]=47 + }, + [8293]={ + ["distance"]=49753, + ["mine_stage"]=33 + }, + [8294]={ + ["distance"]=49759, + ["mine_stage"]=60 + }, + [8295]={ + ["distance"]=49765, + ["mine_stage"]=36 + }, + [8296]={ + ["distance"]=49771, + ["mine_stage"]=37 + }, + [8297]={ + ["distance"]=49777, + ["mine_stage"]=44 + }, + [8298]={ + ["distance"]=49783, + ["mine_stage"]=12 + }, + [8299]={ + ["distance"]=49789, + ["mine_stage"]=59 + }, + [8300]={ + ["distance"]=49795, + ["mine_stage"]=58 + }, + [8301]={ + ["distance"]=49801, + ["mine_stage"]=65 + }, + [8302]={ + ["distance"]=49807, + ["mine_stage"]=22 + }, + [8303]={ + ["distance"]=49813, + ["mine_stage"]=52 + }, + [8304]={ + ["distance"]=49819, + ["mine_stage"]=39 + }, + [8305]={ + ["distance"]=49825, + ["mine_stage"]=58 + }, + [8306]={ + ["distance"]=49831, + ["mine_stage"]=33 + }, + [8307]={ + ["distance"]=49837, + ["mine_stage"]=42 + }, + [8308]={ + ["distance"]=49843, + ["mine_stage"]=10 + }, + [8309]={ + ["distance"]=49849, + ["mine_stage"]=30 + }, + [8310]={ + ["distance"]=49855, + ["mine_stage"]=60 + }, + [8311]={ + ["distance"]=49861, + ["mine_stage"]=6 + }, + [8312]={ + ["distance"]=49867, + ["mine_stage"]=25 + }, + [8313]={ + ["distance"]=49873, + ["mine_stage"]=10 + }, + [8314]={ + ["distance"]=49879, + ["mine_stage"]=59 + }, + [8315]={ + ["distance"]=49885, + ["mine_stage"]=53 + }, + [8316]={ + ["distance"]=49891, + ["mine_stage"]=49 + }, + [8317]={ + ["distance"]=49897, + ["mine_stage"]=17 + }, + [8318]={ + ["distance"]=49903, + ["mine_stage"]=8 + }, + [8319]={ + ["distance"]=49909, + ["mine_stage"]=26 + }, + [8320]={ + ["distance"]=49915, + ["mine_stage"]=47 + }, + [8321]={ + ["distance"]=49921, + ["mine_stage"]=47 + }, + [8322]={ + ["distance"]=49927, + ["mine_stage"]=51 + }, + [8323]={ + ["distance"]=49933, + ["mine_stage"]=57 + }, + [8324]={ + ["distance"]=49939, + ["mine_stage"]=36 + }, + [8325]={ + ["distance"]=49945, + ["mine_stage"]=49 + }, + [8326]={ + ["distance"]=49951, + ["mine_stage"]=13 + }, + [8327]={ + ["distance"]=49957, + ["mine_stage"]=18 + }, + [8328]={ + ["distance"]=49963, + ["mine_stage"]=54 + }, + [8329]={ + ["distance"]=49969, + ["mine_stage"]=28 + }, + [8330]={ + ["distance"]=49975, + ["mine_stage"]=47 + }, + [8331]={ + ["distance"]=49981, + ["mine_stage"]=39 + }, + [8332]={ + ["distance"]=49987, + ["mine_stage"]=43 + }, + [8333]={ + ["distance"]=49993, + ["mine_stage"]=4 + }, + [8334]={ + ["distance"]=49999, + ["mine_stage"]=18 + }, + [8335]={ + ["distance"]=50005, + ["mine_stage"]=59 + }, + [8336]={ + ["distance"]=50011, + ["mine_stage"]=46 + }, + [8337]={ + ["distance"]=50017, + ["mine_stage"]=35 + }, + [8338]={ + ["distance"]=50023, + ["mine_stage"]=19 + }, + [8339]={ + ["distance"]=50029, + ["mine_stage"]=12 + }, + [8340]={ + ["distance"]=50035, + ["mine_stage"]=47 + }, + [8341]={ + ["distance"]=50041, + ["mine_stage"]=7 + }, + [8342]={ + ["distance"]=50047, + ["mine_stage"]=23 + }, + [8343]={ + ["distance"]=50053, + ["mine_stage"]=43 + }, + [8344]={ + ["distance"]=50059, + ["mine_stage"]=39 + }, + [8345]={ + ["distance"]=50065, + ["mine_stage"]=8 + }, + [8346]={ + ["distance"]=50071, + ["mine_stage"]=25 + }, + [8347]={ + ["distance"]=50077, + ["mine_stage"]=18 + }, + [8348]={ + ["distance"]=50083, + ["mine_stage"]=15 + }, + [8349]={ + ["distance"]=50089, + ["mine_stage"]=14 + }, + [8350]={ + ["distance"]=50095, + ["mine_stage"]=9 + }, + [8351]={ + ["distance"]=50101, + ["mine_stage"]=68 + }, + [8352]={ + ["distance"]=50107, + ["mine_stage"]=38 + }, + [8353]={ + ["distance"]=50113, + ["mine_stage"]=3 + }, + [8354]={ + ["distance"]=50119, + ["mine_stage"]=7 + }, + [8355]={ + ["distance"]=50125, + ["mine_stage"]=43 + }, + [8356]={ + ["distance"]=50131, + ["mine_stage"]=25 + }, + [8357]={ + ["distance"]=50137, + ["mine_stage"]=14 + }, + [8358]={ + ["distance"]=50143, + ["mine_stage"]=38 + }, + [8359]={ + ["distance"]=50149, + ["mine_stage"]=28 + }, + [8360]={ + ["distance"]=50155, + ["mine_stage"]=13 + }, + [8361]={ + ["distance"]=50161, + ["mine_stage"]=52 + }, + [8362]={ + ["distance"]=50167, + ["mine_stage"]=7 + }, + [8363]={ + ["distance"]=50173, + ["mine_stage"]=43 + }, + [8364]={ + ["distance"]=50179, + ["mine_stage"]=25 + }, + [8365]={ + ["distance"]=50185, + ["mine_stage"]=18 + }, + [8366]={ + ["distance"]=50191, + ["mine_stage"]=13 + }, + [8367]={ + ["distance"]=50197, + ["mine_stage"]=14 + }, + [8368]={ + ["distance"]=50203, + ["mine_stage"]=6 + }, + [8369]={ + ["distance"]=50209, + ["mine_stage"]=2 + }, + [8370]={ + ["distance"]=50215, + ["mine_stage"]=3 + }, + [8371]={ + ["distance"]=50221, + ["mine_stage"]=47 + }, + [8372]={ + ["distance"]=50227, + ["mine_stage"]=9 + }, + [8373]={ + ["distance"]=50233, + ["mine_stage"]=5 + }, + [8374]={ + ["distance"]=50239, + ["mine_stage"]=48 + }, + [8375]={ + ["distance"]=50245, + ["mine_stage"]=58 + }, + [8376]={ + ["distance"]=50251, + ["mine_stage"]=47 + }, + [8377]={ + ["distance"]=50257, + ["mine_stage"]=22 + }, + [8378]={ + ["distance"]=50263, + ["mine_stage"]=52 + }, + [8379]={ + ["distance"]=50269, + ["mine_stage"]=51 + }, + [8380]={ + ["distance"]=50275, + ["mine_stage"]=26 + }, + [8381]={ + ["distance"]=50281, + ["mine_stage"]=50 + }, + [8382]={ + ["distance"]=50287, + ["mine_stage"]=26 + }, + [8383]={ + ["distance"]=50293, + ["mine_stage"]=43 + }, + [8384]={ + ["distance"]=50299, + ["mine_stage"]=34 + }, + [8385]={ + ["distance"]=50305, + ["mine_stage"]=47 + }, + [8386]={ + ["distance"]=50311, + ["mine_stage"]=46 + }, + [8387]={ + ["distance"]=50317, + ["mine_stage"]=20 + }, + [8388]={ + ["distance"]=50323, + ["mine_stage"]=29 + }, + [8389]={ + ["distance"]=50329, + ["mine_stage"]=3 + }, + [8390]={ + ["distance"]=50335, + ["mine_stage"]=27 + }, + [8391]={ + ["distance"]=50341, + ["mine_stage"]=5 + }, + [8392]={ + ["distance"]=50347, + ["mine_stage"]=10 + }, + [8393]={ + ["distance"]=50353, + ["mine_stage"]=7 + }, + [8394]={ + ["distance"]=50359, + ["mine_stage"]=8 + }, + [8395]={ + ["distance"]=50365, + ["mine_stage"]=33 + }, + [8396]={ + ["distance"]=50371, + ["mine_stage"]=35 + }, + [8397]={ + ["distance"]=50377, + ["mine_stage"]=45 + }, + [8398]={ + ["distance"]=50383, + ["mine_stage"]=50 + }, + [8399]={ + ["distance"]=50389, + ["mine_stage"]=31 + }, + [8400]={ + ["distance"]=50395, + ["mine_stage"]=43 + }, + [8401]={ + ["distance"]=50401, + ["mine_stage"]=66 + }, + [8402]={ + ["distance"]=50407, + ["mine_stage"]=36 + }, + [8403]={ + ["distance"]=50413, + ["mine_stage"]=58 + }, + [8404]={ + ["distance"]=50419, + ["mine_stage"]=36 + }, + [8405]={ + ["distance"]=50425, + ["mine_stage"]=50 + }, + [8406]={ + ["distance"]=50431, + ["mine_stage"]=10 + }, + [8407]={ + ["distance"]=50437, + ["mine_stage"]=29 + }, + [8408]={ + ["distance"]=50443, + ["mine_stage"]=59 + }, + [8409]={ + ["distance"]=50449, + ["mine_stage"]=52 + }, + [8410]={ + ["distance"]=50455, + ["mine_stage"]=34 + }, + [8411]={ + ["distance"]=50461, + ["mine_stage"]=41 + }, + [8412]={ + ["distance"]=50467, + ["mine_stage"]=57 + }, + [8413]={ + ["distance"]=50473, + ["mine_stage"]=27 + }, + [8414]={ + ["distance"]=50479, + ["mine_stage"]=44 + }, + [8415]={ + ["distance"]=50485, + ["mine_stage"]=20 + }, + [8416]={ + ["distance"]=50491, + ["mine_stage"]=32 + }, + [8417]={ + ["distance"]=50497, + ["mine_stage"]=4 + }, + [8418]={ + ["distance"]=50503, + ["mine_stage"]=28 + }, + [8419]={ + ["distance"]=50509, + ["mine_stage"]=34 + }, + [8420]={ + ["distance"]=50515, + ["mine_stage"]=58 + }, + [8421]={ + ["distance"]=50521, + ["mine_stage"]=13 + }, + [8422]={ + ["distance"]=50527, + ["mine_stage"]=28 + }, + [8423]={ + ["distance"]=50533, + ["mine_stage"]=46 + }, + [8424]={ + ["distance"]=50539, + ["mine_stage"]=17 + }, + [8425]={ + ["distance"]=50545, + ["mine_stage"]=22 + }, + [8426]={ + ["distance"]=50551, + ["mine_stage"]=49 + }, + [8427]={ + ["distance"]=50557, + ["mine_stage"]=13 + }, + [8428]={ + ["distance"]=50563, + ["mine_stage"]=43 + }, + [8429]={ + ["distance"]=50569, + ["mine_stage"]=45 + }, + [8430]={ + ["distance"]=50575, + ["mine_stage"]=59 + }, + [8431]={ + ["distance"]=50581, + ["mine_stage"]=15 + }, + [8432]={ + ["distance"]=50587, + ["mine_stage"]=17 + }, + [8433]={ + ["distance"]=50593, + ["mine_stage"]=40 + }, + [8434]={ + ["distance"]=50599, + ["mine_stage"]=32 + }, + [8435]={ + ["distance"]=50605, + ["mine_stage"]=26 + }, + [8436]={ + ["distance"]=50611, + ["mine_stage"]=57 + }, + [8437]={ + ["distance"]=50617, + ["mine_stage"]=25 + }, + [8438]={ + ["distance"]=50623, + ["mine_stage"]=45 + }, + [8439]={ + ["distance"]=50629, + ["mine_stage"]=7 + }, + [8440]={ + ["distance"]=50635, + ["mine_stage"]=29 + }, + [8441]={ + ["distance"]=50641, + ["mine_stage"]=60 + }, + [8442]={ + ["distance"]=50647, + ["mine_stage"]=44 + }, + [8443]={ + ["distance"]=50653, + ["mine_stage"]=20 + }, + [8444]={ + ["distance"]=50659, + ["mine_stage"]=21 + }, + [8445]={ + ["distance"]=50665, + ["mine_stage"]=12 + }, + [8446]={ + ["distance"]=50671, + ["mine_stage"]=13 + }, + [8447]={ + ["distance"]=50677, + ["mine_stage"]=26 + }, + [8448]={ + ["distance"]=50683, + ["mine_stage"]=27 + }, + [8449]={ + ["distance"]=50689, + ["mine_stage"]=58 + }, + [8450]={ + ["distance"]=50695, + ["mine_stage"]=4 + }, + [8451]={ + ["distance"]=50701, + ["mine_stage"]=69 + }, + [8452]={ + ["distance"]=50707, + ["mine_stage"]=35 + }, + [8453]={ + ["distance"]=50713, + ["mine_stage"]=44 + }, + [8454]={ + ["distance"]=50719, + ["mine_stage"]=29 + }, + [8455]={ + ["distance"]=50725, + ["mine_stage"]=55 + }, + [8456]={ + ["distance"]=50731, + ["mine_stage"]=40 + }, + [8457]={ + ["distance"]=50737, + ["mine_stage"]=50 + }, + [8458]={ + ["distance"]=50743, + ["mine_stage"]=21 + }, + [8459]={ + ["distance"]=50749, + ["mine_stage"]=7 + }, + [8460]={ + ["distance"]=50755, + ["mine_stage"]=12 + }, + [8461]={ + ["distance"]=50761, + ["mine_stage"]=16 + }, + [8462]={ + ["distance"]=50767, + ["mine_stage"]=6 + }, + [8463]={ + ["distance"]=50773, + ["mine_stage"]=14 + }, + [8464]={ + ["distance"]=50779, + ["mine_stage"]=57 + }, + [8465]={ + ["distance"]=50785, + ["mine_stage"]=8 + }, + [8466]={ + ["distance"]=50791, + ["mine_stage"]=29 + }, + [8467]={ + ["distance"]=50797, + ["mine_stage"]=52 + }, + [8468]={ + ["distance"]=50803, + ["mine_stage"]=46 + }, + [8469]={ + ["distance"]=50809, + ["mine_stage"]=60 + }, + [8470]={ + ["distance"]=50815, + ["mine_stage"]=56 + }, + [8471]={ + ["distance"]=50821, + ["mine_stage"]=17 + }, + [8472]={ + ["distance"]=50827, + ["mine_stage"]=28 + }, + [8473]={ + ["distance"]=50833, + ["mine_stage"]=17 + }, + [8474]={ + ["distance"]=50839, + ["mine_stage"]=48 + }, + [8475]={ + ["distance"]=50845, + ["mine_stage"]=35 + }, + [8476]={ + ["distance"]=50851, + ["mine_stage"]=53 + }, + [8477]={ + ["distance"]=50857, + ["mine_stage"]=28 + }, + [8478]={ + ["distance"]=50863, + ["mine_stage"]=7 + }, + [8479]={ + ["distance"]=50869, + ["mine_stage"]=33 + }, + [8480]={ + ["distance"]=50875, + ["mine_stage"]=14 + }, + [8481]={ + ["distance"]=50881, + ["mine_stage"]=41 + }, + [8482]={ + ["distance"]=50887, + ["mine_stage"]=59 + }, + [8483]={ + ["distance"]=50893, + ["mine_stage"]=26 + }, + [8484]={ + ["distance"]=50899, + ["mine_stage"]=52 + }, + [8485]={ + ["distance"]=50905, + ["mine_stage"]=13 + }, + [8486]={ + ["distance"]=50911, + ["mine_stage"]=41 + }, + [8487]={ + ["distance"]=50917, + ["mine_stage"]=34 + }, + [8488]={ + ["distance"]=50923, + ["mine_stage"]=10 + }, + [8489]={ + ["distance"]=50929, + ["mine_stage"]=25 + }, + [8490]={ + ["distance"]=50935, + ["mine_stage"]=41 + }, + [8491]={ + ["distance"]=50941, + ["mine_stage"]=36 + }, + [8492]={ + ["distance"]=50947, + ["mine_stage"]=48 + }, + [8493]={ + ["distance"]=50953, + ["mine_stage"]=3 + }, + [8494]={ + ["distance"]=50959, + ["mine_stage"]=37 + }, + [8495]={ + ["distance"]=50965, + ["mine_stage"]=43 + }, + [8496]={ + ["distance"]=50971, + ["mine_stage"]=49 + }, + [8497]={ + ["distance"]=50977, + ["mine_stage"]=15 + }, + [8498]={ + ["distance"]=50983, + ["mine_stage"]=1 + }, + [8499]={ + ["distance"]=50989, + ["mine_stage"]=11 + }, + [8500]={ + ["distance"]=50995, + ["mine_stage"]=33 + }, + [8501]={ + ["distance"]=51001, + ["mine_stage"]=64 + }, + [8502]={ + ["distance"]=51007, + ["mine_stage"]=7 + }, + [8503]={ + ["distance"]=51013, + ["mine_stage"]=2 + }, + [8504]={ + ["distance"]=51019, + ["mine_stage"]=55 + }, + [8505]={ + ["distance"]=51025, + ["mine_stage"]=8 + }, + [8506]={ + ["distance"]=51031, + ["mine_stage"]=56 + }, + [8507]={ + ["distance"]=51037, + ["mine_stage"]=16 + }, + [8508]={ + ["distance"]=51043, + ["mine_stage"]=15 + }, + [8509]={ + ["distance"]=51049, + ["mine_stage"]=12 + }, + [8510]={ + ["distance"]=51055, + ["mine_stage"]=37 + }, + [8511]={ + ["distance"]=51061, + ["mine_stage"]=4 + }, + [8512]={ + ["distance"]=51067, + ["mine_stage"]=20 + }, + [8513]={ + ["distance"]=51073, + ["mine_stage"]=39 + }, + [8514]={ + ["distance"]=51079, + ["mine_stage"]=36 + }, + [8515]={ + ["distance"]=51085, + ["mine_stage"]=25 + }, + [8516]={ + ["distance"]=51091, + ["mine_stage"]=40 + }, + [8517]={ + ["distance"]=51097, + ["mine_stage"]=60 + }, + [8518]={ + ["distance"]=51103, + ["mine_stage"]=18 + }, + [8519]={ + ["distance"]=51109, + ["mine_stage"]=48 + }, + [8520]={ + ["distance"]=51115, + ["mine_stage"]=32 + }, + [8521]={ + ["distance"]=51121, + ["mine_stage"]=49 + }, + [8522]={ + ["distance"]=51127, + ["mine_stage"]=32 + }, + [8523]={ + ["distance"]=51133, + ["mine_stage"]=39 + }, + [8524]={ + ["distance"]=51139, + ["mine_stage"]=1 + }, + [8525]={ + ["distance"]=51145, + ["mine_stage"]=14 + }, + [8526]={ + ["distance"]=51151, + ["mine_stage"]=48 + }, + [8527]={ + ["distance"]=51157, + ["mine_stage"]=10 + }, + [8528]={ + ["distance"]=51163, + ["mine_stage"]=26 + }, + [8529]={ + ["distance"]=51169, + ["mine_stage"]=35 + }, + [8530]={ + ["distance"]=51175, + ["mine_stage"]=4 + }, + [8531]={ + ["distance"]=51181, + ["mine_stage"]=30 + }, + [8532]={ + ["distance"]=51187, + ["mine_stage"]=40 + }, + [8533]={ + ["distance"]=51193, + ["mine_stage"]=18 + }, + [8534]={ + ["distance"]=51199, + ["mine_stage"]=33 + }, + [8535]={ + ["distance"]=51205, + ["mine_stage"]=28 + }, + [8536]={ + ["distance"]=51211, + ["mine_stage"]=56 + }, + [8537]={ + ["distance"]=51217, + ["mine_stage"]=50 + }, + [8538]={ + ["distance"]=51223, + ["mine_stage"]=6 + }, + [8539]={ + ["distance"]=51229, + ["mine_stage"]=55 + }, + [8540]={ + ["distance"]=51235, + ["mine_stage"]=5 + }, + [8541]={ + ["distance"]=51241, + ["mine_stage"]=35 + }, + [8542]={ + ["distance"]=51247, + ["mine_stage"]=5 + }, + [8543]={ + ["distance"]=51253, + ["mine_stage"]=45 + }, + [8544]={ + ["distance"]=51259, + ["mine_stage"]=9 + }, + [8545]={ + ["distance"]=51265, + ["mine_stage"]=47 + }, + [8546]={ + ["distance"]=51271, + ["mine_stage"]=41 + }, + [8547]={ + ["distance"]=51277, + ["mine_stage"]=44 + }, + [8548]={ + ["distance"]=51283, + ["mine_stage"]=26 + }, + [8549]={ + ["distance"]=51289, + ["mine_stage"]=5 + }, + [8550]={ + ["distance"]=51295, + ["mine_stage"]=26 + }, + [8551]={ + ["distance"]=51301, + ["mine_stage"]=67 + }, + [8552]={ + ["distance"]=51307, + ["mine_stage"]=43 + }, + [8553]={ + ["distance"]=51313, + ["mine_stage"]=22 + }, + [8554]={ + ["distance"]=51319, + ["mine_stage"]=35 + }, + [8555]={ + ["distance"]=51325, + ["mine_stage"]=59 + }, + [8556]={ + ["distance"]=51331, + ["mine_stage"]=33 + }, + [8557]={ + ["distance"]=51337, + ["mine_stage"]=60 + }, + [8558]={ + ["distance"]=51343, + ["mine_stage"]=1 + }, + [8559]={ + ["distance"]=51349, + ["mine_stage"]=12 + }, + [8560]={ + ["distance"]=51355, + ["mine_stage"]=53 + }, + [8561]={ + ["distance"]=51361, + ["mine_stage"]=17 + }, + [8562]={ + ["distance"]=51367, + ["mine_stage"]=50 + }, + [8563]={ + ["distance"]=51373, + ["mine_stage"]=4 + }, + [8564]={ + ["distance"]=51379, + ["mine_stage"]=4 + }, + [8565]={ + ["distance"]=51385, + ["mine_stage"]=24 + }, + [8566]={ + ["distance"]=51391, + ["mine_stage"]=19 + }, + [8567]={ + ["distance"]=51397, + ["mine_stage"]=18 + }, + [8568]={ + ["distance"]=51403, + ["mine_stage"]=49 + }, + [8569]={ + ["distance"]=51409, + ["mine_stage"]=56 + }, + [8570]={ + ["distance"]=51415, + ["mine_stage"]=26 + }, + [8571]={ + ["distance"]=51421, + ["mine_stage"]=45 + }, + [8572]={ + ["distance"]=51427, + ["mine_stage"]=21 + }, + [8573]={ + ["distance"]=51433, + ["mine_stage"]=9 + }, + [8574]={ + ["distance"]=51439, + ["mine_stage"]=49 + }, + [8575]={ + ["distance"]=51445, + ["mine_stage"]=51 + }, + [8576]={ + ["distance"]=51451, + ["mine_stage"]=29 + }, + [8577]={ + ["distance"]=51457, + ["mine_stage"]=46 + }, + [8578]={ + ["distance"]=51463, + ["mine_stage"]=34 + }, + [8579]={ + ["distance"]=51469, + ["mine_stage"]=18 + }, + [8580]={ + ["distance"]=51475, + ["mine_stage"]=23 + }, + [8581]={ + ["distance"]=51481, + ["mine_stage"]=11 + }, + [8582]={ + ["distance"]=51487, + ["mine_stage"]=26 + }, + [8583]={ + ["distance"]=51493, + ["mine_stage"]=3 + }, + [8584]={ + ["distance"]=51499, + ["mine_stage"]=3 + }, + [8585]={ + ["distance"]=51505, + ["mine_stage"]=6 + }, + [8586]={ + ["distance"]=51511, + ["mine_stage"]=58 + }, + [8587]={ + ["distance"]=51517, + ["mine_stage"]=25 + }, + [8588]={ + ["distance"]=51523, + ["mine_stage"]=1 + }, + [8589]={ + ["distance"]=51529, + ["mine_stage"]=4 + }, + [8590]={ + ["distance"]=51535, + ["mine_stage"]=1 + }, + [8591]={ + ["distance"]=51541, + ["mine_stage"]=30 + }, + [8592]={ + ["distance"]=51547, + ["mine_stage"]=39 + }, + [8593]={ + ["distance"]=51553, + ["mine_stage"]=59 + }, + [8594]={ + ["distance"]=51559, + ["mine_stage"]=13 + }, + [8595]={ + ["distance"]=51565, + ["mine_stage"]=36 + }, + [8596]={ + ["distance"]=51571, + ["mine_stage"]=36 + }, + [8597]={ + ["distance"]=51577, + ["mine_stage"]=42 + }, + [8598]={ + ["distance"]=51583, + ["mine_stage"]=24 + }, + [8599]={ + ["distance"]=51589, + ["mine_stage"]=6 + }, + [8600]={ + ["distance"]=51595, + ["mine_stage"]=15 + }, + [8601]={ + ["distance"]=51601, + ["mine_stage"]=65 + }, + [8602]={ + ["distance"]=51607, + ["mine_stage"]=1 + }, + [8603]={ + ["distance"]=51613, + ["mine_stage"]=20 + }, + [8604]={ + ["distance"]=51619, + ["mine_stage"]=56 + }, + [8605]={ + ["distance"]=51625, + ["mine_stage"]=40 + }, + [8606]={ + ["distance"]=51631, + ["mine_stage"]=25 + }, + [8607]={ + ["distance"]=51637, + ["mine_stage"]=18 + }, + [8608]={ + ["distance"]=51643, + ["mine_stage"]=36 + }, + [8609]={ + ["distance"]=51649, + ["mine_stage"]=22 + }, + [8610]={ + ["distance"]=51655, + ["mine_stage"]=25 + }, + [8611]={ + ["distance"]=51661, + ["mine_stage"]=9 + }, + [8612]={ + ["distance"]=51667, + ["mine_stage"]=11 + }, + [8613]={ + ["distance"]=51673, + ["mine_stage"]=5 + }, + [8614]={ + ["distance"]=51679, + ["mine_stage"]=50 + }, + [8615]={ + ["distance"]=51685, + ["mine_stage"]=39 + }, + [8616]={ + ["distance"]=51691, + ["mine_stage"]=59 + }, + [8617]={ + ["distance"]=51697, + ["mine_stage"]=18 + }, + [8618]={ + ["distance"]=51703, + ["mine_stage"]=37 + }, + [8619]={ + ["distance"]=51709, + ["mine_stage"]=54 + }, + [8620]={ + ["distance"]=51715, + ["mine_stage"]=45 + }, + [8621]={ + ["distance"]=51721, + ["mine_stage"]=15 + }, + [8622]={ + ["distance"]=51727, + ["mine_stage"]=4 + }, + [8623]={ + ["distance"]=51733, + ["mine_stage"]=24 + }, + [8624]={ + ["distance"]=51739, + ["mine_stage"]=36 + }, + [8625]={ + ["distance"]=51745, + ["mine_stage"]=24 + }, + [8626]={ + ["distance"]=51751, + ["mine_stage"]=40 + }, + [8627]={ + ["distance"]=51757, + ["mine_stage"]=5 + }, + [8628]={ + ["distance"]=51763, + ["mine_stage"]=48 + }, + [8629]={ + ["distance"]=51769, + ["mine_stage"]=40 + }, + [8630]={ + ["distance"]=51775, + ["mine_stage"]=52 + }, + [8631]={ + ["distance"]=51781, + ["mine_stage"]=48 + }, + [8632]={ + ["distance"]=51787, + ["mine_stage"]=20 + }, + [8633]={ + ["distance"]=51793, + ["mine_stage"]=59 + }, + [8634]={ + ["distance"]=51799, + ["mine_stage"]=50 + }, + [8635]={ + ["distance"]=51805, + ["mine_stage"]=5 + }, + [8636]={ + ["distance"]=51811, + ["mine_stage"]=2 + }, + [8637]={ + ["distance"]=51817, + ["mine_stage"]=57 + }, + [8638]={ + ["distance"]=51823, + ["mine_stage"]=29 + }, + [8639]={ + ["distance"]=51829, + ["mine_stage"]=38 + }, + [8640]={ + ["distance"]=51835, + ["mine_stage"]=45 + }, + [8641]={ + ["distance"]=51841, + ["mine_stage"]=36 + }, + [8642]={ + ["distance"]=51847, + ["mine_stage"]=32 + }, + [8643]={ + ["distance"]=51853, + ["mine_stage"]=39 + }, + [8644]={ + ["distance"]=51859, + ["mine_stage"]=53 + }, + [8645]={ + ["distance"]=51865, + ["mine_stage"]=59 + }, + [8646]={ + ["distance"]=51871, + ["mine_stage"]=19 + }, + [8647]={ + ["distance"]=51877, + ["mine_stage"]=7 + }, + [8648]={ + ["distance"]=51883, + ["mine_stage"]=11 + }, + [8649]={ + ["distance"]=51889, + ["mine_stage"]=44 + }, + [8650]={ + ["distance"]=51895, + ["mine_stage"]=53 + }, + [8651]={ + ["distance"]=51901, + ["mine_stage"]=68 + }, + [8652]={ + ["distance"]=51907, + ["mine_stage"]=32 + }, + [8653]={ + ["distance"]=51913, + ["mine_stage"]=24 + }, + [8654]={ + ["distance"]=51919, + ["mine_stage"]=35 + }, + [8655]={ + ["distance"]=51925, + ["mine_stage"]=48 + }, + [8656]={ + ["distance"]=51931, + ["mine_stage"]=33 + }, + [8657]={ + ["distance"]=51937, + ["mine_stage"]=11 + }, + [8658]={ + ["distance"]=51943, + ["mine_stage"]=42 + }, + [8659]={ + ["distance"]=51949, + ["mine_stage"]=44 + }, + [8660]={ + ["distance"]=51955, + ["mine_stage"]=56 + }, + [8661]={ + ["distance"]=51961, + ["mine_stage"]=36 + }, + [8662]={ + ["distance"]=51967, + ["mine_stage"]=24 + }, + [8663]={ + ["distance"]=51973, + ["mine_stage"]=43 + }, + [8664]={ + ["distance"]=51979, + ["mine_stage"]=15 + }, + [8665]={ + ["distance"]=51985, + ["mine_stage"]=18 + }, + [8666]={ + ["distance"]=51991, + ["mine_stage"]=3 + }, + [8667]={ + ["distance"]=51997, + ["mine_stage"]=45 + }, + [8668]={ + ["distance"]=52003, + ["mine_stage"]=52 + }, + [8669]={ + ["distance"]=52009, + ["mine_stage"]=42 + }, + [8670]={ + ["distance"]=52015, + ["mine_stage"]=43 + }, + [8671]={ + ["distance"]=52021, + ["mine_stage"]=46 + }, + [8672]={ + ["distance"]=52027, + ["mine_stage"]=40 + }, + [8673]={ + ["distance"]=52033, + ["mine_stage"]=22 + }, + [8674]={ + ["distance"]=52039, + ["mine_stage"]=57 + }, + [8675]={ + ["distance"]=52045, + ["mine_stage"]=27 + }, + [8676]={ + ["distance"]=52051, + ["mine_stage"]=19 + }, + [8677]={ + ["distance"]=52057, + ["mine_stage"]=49 + }, + [8678]={ + ["distance"]=52063, + ["mine_stage"]=51 + }, + [8679]={ + ["distance"]=52069, + ["mine_stage"]=32 + }, + [8680]={ + ["distance"]=52075, + ["mine_stage"]=3 + }, + [8681]={ + ["distance"]=52081, + ["mine_stage"]=57 + }, + [8682]={ + ["distance"]=52087, + ["mine_stage"]=35 + }, + [8683]={ + ["distance"]=52093, + ["mine_stage"]=53 + }, + [8684]={ + ["distance"]=52099, + ["mine_stage"]=60 + }, + [8685]={ + ["distance"]=52105, + ["mine_stage"]=1 + }, + [8686]={ + ["distance"]=52111, + ["mine_stage"]=1 + }, + [8687]={ + ["distance"]=52117, + ["mine_stage"]=28 + }, + [8688]={ + ["distance"]=52123, + ["mine_stage"]=58 + }, + [8689]={ + ["distance"]=52129, + ["mine_stage"]=44 + }, + [8690]={ + ["distance"]=52135, + ["mine_stage"]=48 + }, + [8691]={ + ["distance"]=52141, + ["mine_stage"]=8 + }, + [8692]={ + ["distance"]=52147, + ["mine_stage"]=24 + }, + [8693]={ + ["distance"]=52153, + ["mine_stage"]=52 + }, + [8694]={ + ["distance"]=52159, + ["mine_stage"]=49 + }, + [8695]={ + ["distance"]=52165, + ["mine_stage"]=5 + }, + [8696]={ + ["distance"]=52171, + ["mine_stage"]=28 + }, + [8697]={ + ["distance"]=52177, + ["mine_stage"]=29 + }, + [8698]={ + ["distance"]=52183, + ["mine_stage"]=7 + }, + [8699]={ + ["distance"]=52189, + ["mine_stage"]=35 + }, + [8700]={ + ["distance"]=52195, + ["mine_stage"]=38 + }, + [8701]={ + ["distance"]=52201, + ["mine_stage"]=66 + }, + [8702]={ + ["distance"]=52207, + ["mine_stage"]=3 + }, + [8703]={ + ["distance"]=52213, + ["mine_stage"]=20 + }, + [8704]={ + ["distance"]=52219, + ["mine_stage"]=44 + }, + [8705]={ + ["distance"]=52225, + ["mine_stage"]=53 + }, + [8706]={ + ["distance"]=52231, + ["mine_stage"]=47 + }, + [8707]={ + ["distance"]=52237, + ["mine_stage"]=41 + }, + [8708]={ + ["distance"]=52243, + ["mine_stage"]=33 + }, + [8709]={ + ["distance"]=52249, + ["mine_stage"]=15 + }, + [8710]={ + ["distance"]=52255, + ["mine_stage"]=14 + }, + [8711]={ + ["distance"]=52261, + ["mine_stage"]=31 + }, + [8712]={ + ["distance"]=52267, + ["mine_stage"]=38 + }, + [8713]={ + ["distance"]=52273, + ["mine_stage"]=35 + }, + [8714]={ + ["distance"]=52279, + ["mine_stage"]=9 + }, + [8715]={ + ["distance"]=52285, + ["mine_stage"]=9 + }, + [8716]={ + ["distance"]=52291, + ["mine_stage"]=59 + }, + [8717]={ + ["distance"]=52297, + ["mine_stage"]=28 + }, + [8718]={ + ["distance"]=52303, + ["mine_stage"]=38 + }, + [8719]={ + ["distance"]=52309, + ["mine_stage"]=39 + }, + [8720]={ + ["distance"]=52315, + ["mine_stage"]=46 + }, + [8721]={ + ["distance"]=52321, + ["mine_stage"]=15 + }, + [8722]={ + ["distance"]=52327, + ["mine_stage"]=39 + }, + [8723]={ + ["distance"]=52333, + ["mine_stage"]=18 + }, + [8724]={ + ["distance"]=52339, + ["mine_stage"]=46 + }, + [8725]={ + ["distance"]=52345, + ["mine_stage"]=16 + }, + [8726]={ + ["distance"]=52351, + ["mine_stage"]=30 + }, + [8727]={ + ["distance"]=52357, + ["mine_stage"]=25 + }, + [8728]={ + ["distance"]=52363, + ["mine_stage"]=32 + }, + [8729]={ + ["distance"]=52369, + ["mine_stage"]=41 + }, + [8730]={ + ["distance"]=52375, + ["mine_stage"]=8 + }, + [8731]={ + ["distance"]=52381, + ["mine_stage"]=42 + }, + [8732]={ + ["distance"]=52387, + ["mine_stage"]=59 + }, + [8733]={ + ["distance"]=52393, + ["mine_stage"]=60 + }, + [8734]={ + ["distance"]=52399, + ["mine_stage"]=9 + }, + [8735]={ + ["distance"]=52405, + ["mine_stage"]=16 + }, + [8736]={ + ["distance"]=52411, + ["mine_stage"]=51 + }, + [8737]={ + ["distance"]=52417, + ["mine_stage"]=15 + }, + [8738]={ + ["distance"]=52423, + ["mine_stage"]=54 + }, + [8739]={ + ["distance"]=52429, + ["mine_stage"]=48 + }, + [8740]={ + ["distance"]=52435, + ["mine_stage"]=6 + }, + [8741]={ + ["distance"]=52441, + ["mine_stage"]=5 + }, + [8742]={ + ["distance"]=52447, + ["mine_stage"]=8 + }, + [8743]={ + ["distance"]=52453, + ["mine_stage"]=31 + }, + [8744]={ + ["distance"]=52459, + ["mine_stage"]=59 + }, + [8745]={ + ["distance"]=52465, + ["mine_stage"]=18 + }, + [8746]={ + ["distance"]=52471, + ["mine_stage"]=26 + }, + [8747]={ + ["distance"]=52477, + ["mine_stage"]=16 + }, + [8748]={ + ["distance"]=52483, + ["mine_stage"]=45 + }, + [8749]={ + ["distance"]=52489, + ["mine_stage"]=22 + }, + [8750]={ + ["distance"]=52495, + ["mine_stage"]=20 + }, + [8751]={ + ["distance"]=52501, + ["mine_stage"]=69 + }, + [8752]={ + ["distance"]=52507, + ["mine_stage"]=12 + }, + [8753]={ + ["distance"]=52513, + ["mine_stage"]=30 + }, + [8754]={ + ["distance"]=52519, + ["mine_stage"]=52 + }, + [8755]={ + ["distance"]=52525, + ["mine_stage"]=1 + }, + [8756]={ + ["distance"]=52531, + ["mine_stage"]=5 + }, + [8757]={ + ["distance"]=52537, + ["mine_stage"]=18 + }, + [8758]={ + ["distance"]=52543, + ["mine_stage"]=37 + }, + [8759]={ + ["distance"]=52549, + ["mine_stage"]=34 + }, + [8760]={ + ["distance"]=52555, + ["mine_stage"]=9 + }, + [8761]={ + ["distance"]=52561, + ["mine_stage"]=54 + }, + [8762]={ + ["distance"]=52567, + ["mine_stage"]=46 + }, + [8763]={ + ["distance"]=52573, + ["mine_stage"]=49 + }, + [8764]={ + ["distance"]=52579, + ["mine_stage"]=10 + }, + [8765]={ + ["distance"]=52585, + ["mine_stage"]=46 + }, + [8766]={ + ["distance"]=52591, + ["mine_stage"]=41 + }, + [8767]={ + ["distance"]=52597, + ["mine_stage"]=4 + }, + [8768]={ + ["distance"]=52603, + ["mine_stage"]=25 + }, + [8769]={ + ["distance"]=52609, + ["mine_stage"]=28 + }, + [8770]={ + ["distance"]=52615, + ["mine_stage"]=13 + }, + [8771]={ + ["distance"]=52621, + ["mine_stage"]=8 + }, + [8772]={ + ["distance"]=52627, + ["mine_stage"]=24 + }, + [8773]={ + ["distance"]=52633, + ["mine_stage"]=41 + }, + [8774]={ + ["distance"]=52639, + ["mine_stage"]=17 + }, + [8775]={ + ["distance"]=52645, + ["mine_stage"]=52 + }, + [8776]={ + ["distance"]=52651, + ["mine_stage"]=47 + }, + [8777]={ + ["distance"]=52657, + ["mine_stage"]=49 + }, + [8778]={ + ["distance"]=52663, + ["mine_stage"]=59 + }, + [8779]={ + ["distance"]=52669, + ["mine_stage"]=30 + }, + [8780]={ + ["distance"]=52675, + ["mine_stage"]=28 + }, + [8781]={ + ["distance"]=52681, + ["mine_stage"]=59 + }, + [8782]={ + ["distance"]=52687, + ["mine_stage"]=33 + }, + [8783]={ + ["distance"]=52693, + ["mine_stage"]=6 + }, + [8784]={ + ["distance"]=52699, + ["mine_stage"]=18 + }, + [8785]={ + ["distance"]=52705, + ["mine_stage"]=10 + }, + [8786]={ + ["distance"]=52711, + ["mine_stage"]=35 + }, + [8787]={ + ["distance"]=52717, + ["mine_stage"]=43 + }, + [8788]={ + ["distance"]=52723, + ["mine_stage"]=34 + }, + [8789]={ + ["distance"]=52729, + ["mine_stage"]=51 + }, + [8790]={ + ["distance"]=52735, + ["mine_stage"]=51 + }, + [8791]={ + ["distance"]=52741, + ["mine_stage"]=52 + }, + [8792]={ + ["distance"]=52747, + ["mine_stage"]=51 + }, + [8793]={ + ["distance"]=52753, + ["mine_stage"]=3 + }, + [8794]={ + ["distance"]=52759, + ["mine_stage"]=28 + }, + [8795]={ + ["distance"]=52765, + ["mine_stage"]=11 + }, + [8796]={ + ["distance"]=52771, + ["mine_stage"]=10 + }, + [8797]={ + ["distance"]=52777, + ["mine_stage"]=8 + }, + [8798]={ + ["distance"]=52783, + ["mine_stage"]=34 + }, + [8799]={ + ["distance"]=52789, + ["mine_stage"]=18 + }, + [8800]={ + ["distance"]=52795, + ["mine_stage"]=3 + }, + [8801]={ + ["distance"]=52801, + ["mine_stage"]=64 + }, + [8802]={ + ["distance"]=52807, + ["mine_stage"]=48 + }, + [8803]={ + ["distance"]=52813, + ["mine_stage"]=13 + }, + [8804]={ + ["distance"]=52819, + ["mine_stage"]=9 + }, + [8805]={ + ["distance"]=52825, + ["mine_stage"]=40 + }, + [8806]={ + ["distance"]=52831, + ["mine_stage"]=24 + }, + [8807]={ + ["distance"]=52837, + ["mine_stage"]=59 + }, + [8808]={ + ["distance"]=52843, + ["mine_stage"]=15 + }, + [8809]={ + ["distance"]=52849, + ["mine_stage"]=35 + }, + [8810]={ + ["distance"]=52855, + ["mine_stage"]=49 + }, + [8811]={ + ["distance"]=52861, + ["mine_stage"]=25 + }, + [8812]={ + ["distance"]=52867, + ["mine_stage"]=57 + }, + [8813]={ + ["distance"]=52873, + ["mine_stage"]=37 + }, + [8814]={ + ["distance"]=52879, + ["mine_stage"]=35 + }, + [8815]={ + ["distance"]=52885, + ["mine_stage"]=27 + }, + [8816]={ + ["distance"]=52891, + ["mine_stage"]=31 + }, + [8817]={ + ["distance"]=52897, + ["mine_stage"]=60 + }, + [8818]={ + ["distance"]=52903, + ["mine_stage"]=33 + }, + [8819]={ + ["distance"]=52909, + ["mine_stage"]=57 + }, + [8820]={ + ["distance"]=52915, + ["mine_stage"]=57 + }, + [8821]={ + ["distance"]=52921, + ["mine_stage"]=36 + }, + [8822]={ + ["distance"]=52927, + ["mine_stage"]=19 + }, + [8823]={ + ["distance"]=52933, + ["mine_stage"]=34 + }, + [8824]={ + ["distance"]=52939, + ["mine_stage"]=55 + }, + [8825]={ + ["distance"]=52945, + ["mine_stage"]=45 + }, + [8826]={ + ["distance"]=52951, + ["mine_stage"]=34 + }, + [8827]={ + ["distance"]=52957, + ["mine_stage"]=39 + }, + [8828]={ + ["distance"]=52963, + ["mine_stage"]=48 + }, + [8829]={ + ["distance"]=52969, + ["mine_stage"]=28 + }, + [8830]={ + ["distance"]=52975, + ["mine_stage"]=43 + }, + [8831]={ + ["distance"]=52981, + ["mine_stage"]=17 + }, + [8832]={ + ["distance"]=52987, + ["mine_stage"]=12 + }, + [8833]={ + ["distance"]=52993, + ["mine_stage"]=23 + }, + [8834]={ + ["distance"]=52999, + ["mine_stage"]=57 + }, + [8835]={ + ["distance"]=53005, + ["mine_stage"]=55 + }, + [8836]={ + ["distance"]=53011, + ["mine_stage"]=27 + }, + [8837]={ + ["distance"]=53017, + ["mine_stage"]=19 + }, + [8838]={ + ["distance"]=53023, + ["mine_stage"]=27 + }, + [8839]={ + ["distance"]=53029, + ["mine_stage"]=53 + }, + [8840]={ + ["distance"]=53035, + ["mine_stage"]=43 + }, + [8841]={ + ["distance"]=53041, + ["mine_stage"]=3 + }, + [8842]={ + ["distance"]=53047, + ["mine_stage"]=11 + }, + [8843]={ + ["distance"]=53053, + ["mine_stage"]=10 + }, + [8844]={ + ["distance"]=53059, + ["mine_stage"]=43 + }, + [8845]={ + ["distance"]=53065, + ["mine_stage"]=31 + }, + [8846]={ + ["distance"]=53071, + ["mine_stage"]=40 + }, + [8847]={ + ["distance"]=53077, + ["mine_stage"]=17 + }, + [8848]={ + ["distance"]=53083, + ["mine_stage"]=33 + }, + [8849]={ + ["distance"]=53089, + ["mine_stage"]=54 + }, + [8850]={ + ["distance"]=53095, + ["mine_stage"]=29 + }, + [8851]={ + ["distance"]=53101, + ["mine_stage"]=67 + }, + [8852]={ + ["distance"]=53107, + ["mine_stage"]=20 + }, + [8853]={ + ["distance"]=53113, + ["mine_stage"]=13 + }, + [8854]={ + ["distance"]=53119, + ["mine_stage"]=33 + }, + [8855]={ + ["distance"]=53125, + ["mine_stage"]=7 + }, + [8856]={ + ["distance"]=53131, + ["mine_stage"]=9 + }, + [8857]={ + ["distance"]=53137, + ["mine_stage"]=10 + }, + [8858]={ + ["distance"]=53143, + ["mine_stage"]=2 + }, + [8859]={ + ["distance"]=53149, + ["mine_stage"]=41 + }, + [8860]={ + ["distance"]=53155, + ["mine_stage"]=53 + }, + [8861]={ + ["distance"]=53161, + ["mine_stage"]=3 + }, + [8862]={ + ["distance"]=53167, + ["mine_stage"]=7 + }, + [8863]={ + ["distance"]=53173, + ["mine_stage"]=17 + }, + [8864]={ + ["distance"]=53179, + ["mine_stage"]=5 + }, + [8865]={ + ["distance"]=53185, + ["mine_stage"]=10 + }, + [8866]={ + ["distance"]=53191, + ["mine_stage"]=55 + }, + [8867]={ + ["distance"]=53197, + ["mine_stage"]=10 + }, + [8868]={ + ["distance"]=53203, + ["mine_stage"]=36 + }, + [8869]={ + ["distance"]=53209, + ["mine_stage"]=50 + }, + [8870]={ + ["distance"]=53215, + ["mine_stage"]=34 + }, + [8871]={ + ["distance"]=53221, + ["mine_stage"]=33 + }, + [8872]={ + ["distance"]=53227, + ["mine_stage"]=19 + }, + [8873]={ + ["distance"]=53233, + ["mine_stage"]=38 + }, + [8874]={ + ["distance"]=53239, + ["mine_stage"]=48 + }, + [8875]={ + ["distance"]=53245, + ["mine_stage"]=25 + }, + [8876]={ + ["distance"]=53251, + ["mine_stage"]=4 + }, + [8877]={ + ["distance"]=53257, + ["mine_stage"]=53 + }, + [8878]={ + ["distance"]=53263, + ["mine_stage"]=11 + }, + [8879]={ + ["distance"]=53269, + ["mine_stage"]=20 + }, + [8880]={ + ["distance"]=53275, + ["mine_stage"]=11 + }, + [8881]={ + ["distance"]=53281, + ["mine_stage"]=19 + }, + [8882]={ + ["distance"]=53287, + ["mine_stage"]=56 + }, + [8883]={ + ["distance"]=53293, + ["mine_stage"]=19 + }, + [8884]={ + ["distance"]=53299, + ["mine_stage"]=24 + }, + [8885]={ + ["distance"]=53305, + ["mine_stage"]=30 + }, + [8886]={ + ["distance"]=53311, + ["mine_stage"]=16 + }, + [8887]={ + ["distance"]=53317, + ["mine_stage"]=52 + }, + [8888]={ + ["distance"]=53323, + ["mine_stage"]=40 + }, + [8889]={ + ["distance"]=53329, + ["mine_stage"]=7 + }, + [8890]={ + ["distance"]=53335, + ["mine_stage"]=44 + }, + [8891]={ + ["distance"]=53341, + ["mine_stage"]=58 + }, + [8892]={ + ["distance"]=53347, + ["mine_stage"]=28 + }, + [8893]={ + ["distance"]=53353, + ["mine_stage"]=41 + }, + [8894]={ + ["distance"]=53359, + ["mine_stage"]=20 + }, + [8895]={ + ["distance"]=53365, + ["mine_stage"]=12 + }, + [8896]={ + ["distance"]=53371, + ["mine_stage"]=32 + }, + [8897]={ + ["distance"]=53377, + ["mine_stage"]=53 + }, + [8898]={ + ["distance"]=53383, + ["mine_stage"]=8 + }, + [8899]={ + ["distance"]=53389, + ["mine_stage"]=21 + }, + [8900]={ + ["distance"]=53395, + ["mine_stage"]=50 + }, + [8901]={ + ["distance"]=53401, + ["mine_stage"]=65 + }, + [8902]={ + ["distance"]=53407, + ["mine_stage"]=25 + }, + [8903]={ + ["distance"]=53413, + ["mine_stage"]=55 + }, + [8904]={ + ["distance"]=53419, + ["mine_stage"]=56 + }, + [8905]={ + ["distance"]=53425, + ["mine_stage"]=46 + }, + [8906]={ + ["distance"]=53431, + ["mine_stage"]=46 + }, + [8907]={ + ["distance"]=53437, + ["mine_stage"]=35 + }, + [8908]={ + ["distance"]=53443, + ["mine_stage"]=52 + }, + [8909]={ + ["distance"]=53449, + ["mine_stage"]=36 + }, + [8910]={ + ["distance"]=53455, + ["mine_stage"]=3 + }, + [8911]={ + ["distance"]=53461, + ["mine_stage"]=27 + }, + [8912]={ + ["distance"]=53467, + ["mine_stage"]=36 + }, + [8913]={ + ["distance"]=53473, + ["mine_stage"]=24 + }, + [8914]={ + ["distance"]=53479, + ["mine_stage"]=56 + }, + [8915]={ + ["distance"]=53485, + ["mine_stage"]=36 + }, + [8916]={ + ["distance"]=53491, + ["mine_stage"]=48 + }, + [8917]={ + ["distance"]=53497, + ["mine_stage"]=41 + }, + [8918]={ + ["distance"]=53503, + ["mine_stage"]=28 + }, + [8919]={ + ["distance"]=53509, + ["mine_stage"]=44 + }, + [8920]={ + ["distance"]=53515, + ["mine_stage"]=11 + }, + [8921]={ + ["distance"]=53521, + ["mine_stage"]=8 + }, + [8922]={ + ["distance"]=53527, + ["mine_stage"]=5 + }, + [8923]={ + ["distance"]=53533, + ["mine_stage"]=6 + }, + [8924]={ + ["distance"]=53539, + ["mine_stage"]=26 + }, + [8925]={ + ["distance"]=53545, + ["mine_stage"]=36 + }, + [8926]={ + ["distance"]=53551, + ["mine_stage"]=23 + }, + [8927]={ + ["distance"]=53557, + ["mine_stage"]=45 + }, + [8928]={ + ["distance"]=53563, + ["mine_stage"]=44 + }, + [8929]={ + ["distance"]=53569, + ["mine_stage"]=32 + }, + [8930]={ + ["distance"]=53575, + ["mine_stage"]=31 + }, + [8931]={ + ["distance"]=53581, + ["mine_stage"]=41 + }, + [8932]={ + ["distance"]=53587, + ["mine_stage"]=58 + }, + [8933]={ + ["distance"]=53593, + ["mine_stage"]=34 + }, + [8934]={ + ["distance"]=53599, + ["mine_stage"]=26 + }, + [8935]={ + ["distance"]=53605, + ["mine_stage"]=23 + }, + [8936]={ + ["distance"]=53611, + ["mine_stage"]=50 + }, + [8937]={ + ["distance"]=53617, + ["mine_stage"]=55 + }, + [8938]={ + ["distance"]=53623, + ["mine_stage"]=17 + }, + [8939]={ + ["distance"]=53629, + ["mine_stage"]=53 + }, + [8940]={ + ["distance"]=53635, + ["mine_stage"]=46 + }, + [8941]={ + ["distance"]=53641, + ["mine_stage"]=41 + }, + [8942]={ + ["distance"]=53647, + ["mine_stage"]=50 + }, + [8943]={ + ["distance"]=53653, + ["mine_stage"]=22 + }, + [8944]={ + ["distance"]=53659, + ["mine_stage"]=39 + }, + [8945]={ + ["distance"]=53665, + ["mine_stage"]=18 + }, + [8946]={ + ["distance"]=53671, + ["mine_stage"]=38 + }, + [8947]={ + ["distance"]=53677, + ["mine_stage"]=48 + }, + [8948]={ + ["distance"]=53683, + ["mine_stage"]=7 + }, + [8949]={ + ["distance"]=53689, + ["mine_stage"]=58 + }, + [8950]={ + ["distance"]=53695, + ["mine_stage"]=56 + }, + [8951]={ + ["distance"]=53701, + ["mine_stage"]=68 + }, + [8952]={ + ["distance"]=53707, + ["mine_stage"]=44 + }, + [8953]={ + ["distance"]=53713, + ["mine_stage"]=21 + }, + [8954]={ + ["distance"]=53719, + ["mine_stage"]=16 + }, + [8955]={ + ["distance"]=53725, + ["mine_stage"]=48 + }, + [8956]={ + ["distance"]=53731, + ["mine_stage"]=37 + }, + [8957]={ + ["distance"]=53737, + ["mine_stage"]=59 + }, + [8958]={ + ["distance"]=53743, + ["mine_stage"]=6 + }, + [8959]={ + ["distance"]=53749, + ["mine_stage"]=13 + }, + [8960]={ + ["distance"]=53755, + ["mine_stage"]=57 + }, + [8961]={ + ["distance"]=53761, + ["mine_stage"]=36 + }, + [8962]={ + ["distance"]=53767, + ["mine_stage"]=22 + }, + [8963]={ + ["distance"]=53773, + ["mine_stage"]=9 + }, + [8964]={ + ["distance"]=53779, + ["mine_stage"]=10 + }, + [8965]={ + ["distance"]=53785, + ["mine_stage"]=38 + }, + [8966]={ + ["distance"]=53791, + ["mine_stage"]=36 + }, + [8967]={ + ["distance"]=53797, + ["mine_stage"]=49 + }, + [8968]={ + ["distance"]=53803, + ["mine_stage"]=26 + }, + [8969]={ + ["distance"]=53809, + ["mine_stage"]=44 + }, + [8970]={ + ["distance"]=53815, + ["mine_stage"]=35 + }, + [8971]={ + ["distance"]=53821, + ["mine_stage"]=2 + }, + [8972]={ + ["distance"]=53827, + ["mine_stage"]=18 + }, + [8973]={ + ["distance"]=53833, + ["mine_stage"]=3 + }, + [8974]={ + ["distance"]=53839, + ["mine_stage"]=48 + }, + [8975]={ + ["distance"]=53845, + ["mine_stage"]=33 + }, + [8976]={ + ["distance"]=53851, + ["mine_stage"]=34 + }, + [8977]={ + ["distance"]=53857, + ["mine_stage"]=39 + }, + [8978]={ + ["distance"]=53863, + ["mine_stage"]=33 + }, + [8979]={ + ["distance"]=53869, + ["mine_stage"]=59 + }, + [8980]={ + ["distance"]=53875, + ["mine_stage"]=58 + }, + [8981]={ + ["distance"]=53881, + ["mine_stage"]=54 + }, + [8982]={ + ["distance"]=53887, + ["mine_stage"]=7 + }, + [8983]={ + ["distance"]=53893, + ["mine_stage"]=7 + }, + [8984]={ + ["distance"]=53899, + ["mine_stage"]=17 + }, + [8985]={ + ["distance"]=53905, + ["mine_stage"]=30 + }, + [8986]={ + ["distance"]=53911, + ["mine_stage"]=30 + }, + [8987]={ + ["distance"]=53917, + ["mine_stage"]=52 + }, + [8988]={ + ["distance"]=53923, + ["mine_stage"]=27 + }, + [8989]={ + ["distance"]=53929, + ["mine_stage"]=10 + }, + [8990]={ + ["distance"]=53935, + ["mine_stage"]=8 + }, + [8991]={ + ["distance"]=53941, + ["mine_stage"]=5 + }, + [8992]={ + ["distance"]=53947, + ["mine_stage"]=16 + }, + [8993]={ + ["distance"]=53953, + ["mine_stage"]=56 + }, + [8994]={ + ["distance"]=53959, + ["mine_stage"]=20 + }, + [8995]={ + ["distance"]=53965, + ["mine_stage"]=7 + }, + [8996]={ + ["distance"]=53971, + ["mine_stage"]=31 + }, + [8997]={ + ["distance"]=53977, + ["mine_stage"]=6 + }, + [8998]={ + ["distance"]=53983, + ["mine_stage"]=35 + }, + [8999]={ + ["distance"]=53989, + ["mine_stage"]=4 + }, + [9000]={ + ["distance"]=53995, + ["mine_stage"]=28 + }, + [9001]={ + ["distance"]=54001, + ["mine_stage"]=66 + }, + [9002]={ + ["distance"]=54007, + ["mine_stage"]=15 + }, + [9003]={ + ["distance"]=54013, + ["mine_stage"]=34 + }, + [9004]={ + ["distance"]=54019, + ["mine_stage"]=34 + }, + [9005]={ + ["distance"]=54025, + ["mine_stage"]=43 + }, + [9006]={ + ["distance"]=54031, + ["mine_stage"]=23 + }, + [9007]={ + ["distance"]=54037, + ["mine_stage"]=29 + }, + [9008]={ + ["distance"]=54043, + ["mine_stage"]=27 + }, + [9009]={ + ["distance"]=54049, + ["mine_stage"]=5 + }, + [9010]={ + ["distance"]=54055, + ["mine_stage"]=1 + }, + [9011]={ + ["distance"]=54061, + ["mine_stage"]=59 + }, + [9012]={ + ["distance"]=54067, + ["mine_stage"]=47 + }, + [9013]={ + ["distance"]=54073, + ["mine_stage"]=33 + }, + [9014]={ + ["distance"]=54079, + ["mine_stage"]=58 + }, + [9015]={ + ["distance"]=54085, + ["mine_stage"]=15 + }, + [9016]={ + ["distance"]=54091, + ["mine_stage"]=1 + }, + [9017]={ + ["distance"]=54097, + ["mine_stage"]=33 + }, + [9018]={ + ["distance"]=54103, + ["mine_stage"]=29 + }, + [9019]={ + ["distance"]=54109, + ["mine_stage"]=58 + }, + [9020]={ + ["distance"]=54115, + ["mine_stage"]=29 + }, + [9021]={ + ["distance"]=54121, + ["mine_stage"]=48 + }, + [9022]={ + ["distance"]=54127, + ["mine_stage"]=41 + }, + [9023]={ + ["distance"]=54133, + ["mine_stage"]=12 + }, + [9024]={ + ["distance"]=54139, + ["mine_stage"]=60 + }, + [9025]={ + ["distance"]=54145, + ["mine_stage"]=52 + }, + [9026]={ + ["distance"]=54151, + ["mine_stage"]=60 + }, + [9027]={ + ["distance"]=54157, + ["mine_stage"]=44 + }, + [9028]={ + ["distance"]=54163, + ["mine_stage"]=32 + }, + [9029]={ + ["distance"]=54169, + ["mine_stage"]=5 + }, + [9030]={ + ["distance"]=54175, + ["mine_stage"]=47 + }, + [9031]={ + ["distance"]=54181, + ["mine_stage"]=12 + }, + [9032]={ + ["distance"]=54187, + ["mine_stage"]=10 + }, + [9033]={ + ["distance"]=54193, + ["mine_stage"]=9 + }, + [9034]={ + ["distance"]=54199, + ["mine_stage"]=10 + }, + [9035]={ + ["distance"]=54205, + ["mine_stage"]=47 + }, + [9036]={ + ["distance"]=54211, + ["mine_stage"]=38 + }, + [9037]={ + ["distance"]=54217, + ["mine_stage"]=7 + }, + [9038]={ + ["distance"]=54223, + ["mine_stage"]=34 + }, + [9039]={ + ["distance"]=54229, + ["mine_stage"]=11 + }, + [9040]={ + ["distance"]=54235, + ["mine_stage"]=29 + }, + [9041]={ + ["distance"]=54241, + ["mine_stage"]=8 + }, + [9042]={ + ["distance"]=54247, + ["mine_stage"]=49 + }, + [9043]={ + ["distance"]=54253, + ["mine_stage"]=11 + }, + [9044]={ + ["distance"]=54259, + ["mine_stage"]=12 + }, + [9045]={ + ["distance"]=54265, + ["mine_stage"]=52 + }, + [9046]={ + ["distance"]=54271, + ["mine_stage"]=30 + }, + [9047]={ + ["distance"]=54277, + ["mine_stage"]=48 + }, + [9048]={ + ["distance"]=54283, + ["mine_stage"]=8 + }, + [9049]={ + ["distance"]=54289, + ["mine_stage"]=26 + }, + [9050]={ + ["distance"]=54295, + ["mine_stage"]=51 + }, + [9051]={ + ["distance"]=54301, + ["mine_stage"]=69 + }, + [9052]={ + ["distance"]=54307, + ["mine_stage"]=27 + }, + [9053]={ + ["distance"]=54313, + ["mine_stage"]=25 + }, + [9054]={ + ["distance"]=54319, + ["mine_stage"]=48 + }, + [9055]={ + ["distance"]=54325, + ["mine_stage"]=10 + }, + [9056]={ + ["distance"]=54331, + ["mine_stage"]=21 + }, + [9057]={ + ["distance"]=54337, + ["mine_stage"]=31 + }, + [9058]={ + ["distance"]=54343, + ["mine_stage"]=5 + }, + [9059]={ + ["distance"]=54349, + ["mine_stage"]=39 + }, + [9060]={ + ["distance"]=54355, + ["mine_stage"]=33 + }, + [9061]={ + ["distance"]=54361, + ["mine_stage"]=23 + }, + [9062]={ + ["distance"]=54367, + ["mine_stage"]=56 + }, + [9063]={ + ["distance"]=54373, + ["mine_stage"]=8 + }, + [9064]={ + ["distance"]=54379, + ["mine_stage"]=34 + }, + [9065]={ + ["distance"]=54385, + ["mine_stage"]=20 + }, + [9066]={ + ["distance"]=54391, + ["mine_stage"]=52 + }, + [9067]={ + ["distance"]=54397, + ["mine_stage"]=32 + }, + [9068]={ + ["distance"]=54403, + ["mine_stage"]=9 + }, + [9069]={ + ["distance"]=54409, + ["mine_stage"]=20 + }, + [9070]={ + ["distance"]=54415, + ["mine_stage"]=49 + }, + [9071]={ + ["distance"]=54421, + ["mine_stage"]=20 + }, + [9072]={ + ["distance"]=54427, + ["mine_stage"]=56 + }, + [9073]={ + ["distance"]=54433, + ["mine_stage"]=12 + }, + [9074]={ + ["distance"]=54439, + ["mine_stage"]=41 + }, + [9075]={ + ["distance"]=54445, + ["mine_stage"]=26 + }, + [9076]={ + ["distance"]=54451, + ["mine_stage"]=43 + }, + [9077]={ + ["distance"]=54457, + ["mine_stage"]=4 + }, + [9078]={ + ["distance"]=54463, + ["mine_stage"]=23 + }, + [9079]={ + ["distance"]=54469, + ["mine_stage"]=26 + }, + [9080]={ + ["distance"]=54475, + ["mine_stage"]=9 + }, + [9081]={ + ["distance"]=54481, + ["mine_stage"]=45 + }, + [9082]={ + ["distance"]=54487, + ["mine_stage"]=30 + }, + [9083]={ + ["distance"]=54493, + ["mine_stage"]=41 + }, + [9084]={ + ["distance"]=54499, + ["mine_stage"]=17 + }, + [9085]={ + ["distance"]=54505, + ["mine_stage"]=51 + }, + [9086]={ + ["distance"]=54511, + ["mine_stage"]=9 + }, + [9087]={ + ["distance"]=54517, + ["mine_stage"]=14 + }, + [9088]={ + ["distance"]=54523, + ["mine_stage"]=49 + }, + [9089]={ + ["distance"]=54529, + ["mine_stage"]=32 + }, + [9090]={ + ["distance"]=54535, + ["mine_stage"]=6 + }, + [9091]={ + ["distance"]=54541, + ["mine_stage"]=9 + }, + [9092]={ + ["distance"]=54547, + ["mine_stage"]=47 + }, + [9093]={ + ["distance"]=54553, + ["mine_stage"]=16 + }, + [9094]={ + ["distance"]=54559, + ["mine_stage"]=7 + }, + [9095]={ + ["distance"]=54565, + ["mine_stage"]=41 + }, + [9096]={ + ["distance"]=54571, + ["mine_stage"]=50 + }, + [9097]={ + ["distance"]=54577, + ["mine_stage"]=27 + }, + [9098]={ + ["distance"]=54583, + ["mine_stage"]=4 + }, + [9099]={ + ["distance"]=54589, + ["mine_stage"]=24 + }, + [9100]={ + ["distance"]=54595, + ["mine_stage"]=2 + }, + [9101]={ + ["distance"]=54601, + ["mine_stage"]=64 + }, + [9102]={ + ["distance"]=54607, + ["mine_stage"]=25 + }, + [9103]={ + ["distance"]=54613, + ["mine_stage"]=2 + }, + [9104]={ + ["distance"]=54619, + ["mine_stage"]=22 + }, + [9105]={ + ["distance"]=54625, + ["mine_stage"]=44 + }, + [9106]={ + ["distance"]=54631, + ["mine_stage"]=54 + }, + [9107]={ + ["distance"]=54637, + ["mine_stage"]=30 + }, + [9108]={ + ["distance"]=54643, + ["mine_stage"]=30 + }, + [9109]={ + ["distance"]=54649, + ["mine_stage"]=36 + }, + [9110]={ + ["distance"]=54655, + ["mine_stage"]=22 + }, + [9111]={ + ["distance"]=54661, + ["mine_stage"]=55 + }, + [9112]={ + ["distance"]=54667, + ["mine_stage"]=35 + }, + [9113]={ + ["distance"]=54673, + ["mine_stage"]=2 + }, + [9114]={ + ["distance"]=54679, + ["mine_stage"]=59 + }, + [9115]={ + ["distance"]=54685, + ["mine_stage"]=59 + }, + [9116]={ + ["distance"]=54691, + ["mine_stage"]=20 + }, + [9117]={ + ["distance"]=54697, + ["mine_stage"]=38 + }, + [9118]={ + ["distance"]=54703, + ["mine_stage"]=36 + }, + [9119]={ + ["distance"]=54709, + ["mine_stage"]=55 + }, + [9120]={ + ["distance"]=54715, + ["mine_stage"]=20 + }, + [9121]={ + ["distance"]=54721, + ["mine_stage"]=56 + }, + [9122]={ + ["distance"]=54727, + ["mine_stage"]=24 + }, + [9123]={ + ["distance"]=54733, + ["mine_stage"]=53 + }, + [9124]={ + ["distance"]=54739, + ["mine_stage"]=6 + }, + [9125]={ + ["distance"]=54745, + ["mine_stage"]=20 + }, + [9126]={ + ["distance"]=54751, + ["mine_stage"]=39 + }, + [9127]={ + ["distance"]=54757, + ["mine_stage"]=56 + }, + [9128]={ + ["distance"]=54763, + ["mine_stage"]=26 + }, + [9129]={ + ["distance"]=54769, + ["mine_stage"]=10 + }, + [9130]={ + ["distance"]=54775, + ["mine_stage"]=48 + }, + [9131]={ + ["distance"]=54781, + ["mine_stage"]=11 + }, + [9132]={ + ["distance"]=54787, + ["mine_stage"]=26 + }, + [9133]={ + ["distance"]=54793, + ["mine_stage"]=31 + }, + [9134]={ + ["distance"]=54799, + ["mine_stage"]=21 + }, + [9135]={ + ["distance"]=54805, + ["mine_stage"]=47 + }, + [9136]={ + ["distance"]=54811, + ["mine_stage"]=4 + }, + [9137]={ + ["distance"]=54817, + ["mine_stage"]=56 + }, + [9138]={ + ["distance"]=54823, + ["mine_stage"]=7 + }, + [9139]={ + ["distance"]=54829, + ["mine_stage"]=18 + }, + [9140]={ + ["distance"]=54835, + ["mine_stage"]=18 + }, + [9141]={ + ["distance"]=54841, + ["mine_stage"]=2 + }, + [9142]={ + ["distance"]=54847, + ["mine_stage"]=6 + }, + [9143]={ + ["distance"]=54853, + ["mine_stage"]=59 + }, + [9144]={ + ["distance"]=54859, + ["mine_stage"]=3 + }, + [9145]={ + ["distance"]=54865, + ["mine_stage"]=2 + }, + [9146]={ + ["distance"]=54871, + ["mine_stage"]=37 + }, + [9147]={ + ["distance"]=54877, + ["mine_stage"]=20 + }, + [9148]={ + ["distance"]=54883, + ["mine_stage"]=8 + }, + [9149]={ + ["distance"]=54889, + ["mine_stage"]=37 + }, + [9150]={ + ["distance"]=54895, + ["mine_stage"]=28 + }, + [9151]={ + ["distance"]=54901, + ["mine_stage"]=67 + }, + [9152]={ + ["distance"]=54907, + ["mine_stage"]=16 + }, + [9153]={ + ["distance"]=54913, + ["mine_stage"]=40 + }, + [9154]={ + ["distance"]=54919, + ["mine_stage"]=48 + }, + [9155]={ + ["distance"]=54925, + ["mine_stage"]=50 + }, + [9156]={ + ["distance"]=54931, + ["mine_stage"]=27 + }, + [9157]={ + ["distance"]=54937, + ["mine_stage"]=44 + }, + [9158]={ + ["distance"]=54943, + ["mine_stage"]=53 + }, + [9159]={ + ["distance"]=54949, + ["mine_stage"]=38 + }, + [9160]={ + ["distance"]=54955, + ["mine_stage"]=28 + }, + [9161]={ + ["distance"]=54961, + ["mine_stage"]=9 + }, + [9162]={ + ["distance"]=54967, + ["mine_stage"]=32 + }, + [9163]={ + ["distance"]=54973, + ["mine_stage"]=32 + }, + [9164]={ + ["distance"]=54979, + ["mine_stage"]=15 + }, + [9165]={ + ["distance"]=54985, + ["mine_stage"]=21 + }, + [9166]={ + ["distance"]=54991, + ["mine_stage"]=56 + }, + [9167]={ + ["distance"]=54997, + ["mine_stage"]=45 + }, + [9168]={ + ["distance"]=55003, + ["mine_stage"]=4 + }, + [9169]={ + ["distance"]=55009, + ["mine_stage"]=42 + }, + [9170]={ + ["distance"]=55015, + ["mine_stage"]=48 + }, + [9171]={ + ["distance"]=55021, + ["mine_stage"]=51 + }, + [9172]={ + ["distance"]=55027, + ["mine_stage"]=48 + }, + [9173]={ + ["distance"]=55033, + ["mine_stage"]=6 + }, + [9174]={ + ["distance"]=55039, + ["mine_stage"]=11 + }, + [9175]={ + ["distance"]=55045, + ["mine_stage"]=56 + }, + [9176]={ + ["distance"]=55051, + ["mine_stage"]=52 + }, + [9177]={ + ["distance"]=55057, + ["mine_stage"]=52 + }, + [9178]={ + ["distance"]=55063, + ["mine_stage"]=37 + }, + [9179]={ + ["distance"]=55069, + ["mine_stage"]=6 + }, + [9180]={ + ["distance"]=55075, + ["mine_stage"]=60 + }, + [9181]={ + ["distance"]=55081, + ["mine_stage"]=29 + }, + [9182]={ + ["distance"]=55087, + ["mine_stage"]=4 + }, + [9183]={ + ["distance"]=55093, + ["mine_stage"]=24 + }, + [9184]={ + ["distance"]=55099, + ["mine_stage"]=43 + }, + [9185]={ + ["distance"]=55105, + ["mine_stage"]=7 + }, + [9186]={ + ["distance"]=55111, + ["mine_stage"]=9 + }, + [9187]={ + ["distance"]=55117, + ["mine_stage"]=58 + }, + [9188]={ + ["distance"]=55123, + ["mine_stage"]=43 + }, + [9189]={ + ["distance"]=55129, + ["mine_stage"]=56 + }, + [9190]={ + ["distance"]=55135, + ["mine_stage"]=5 + }, + [9191]={ + ["distance"]=55141, + ["mine_stage"]=3 + }, + [9192]={ + ["distance"]=55147, + ["mine_stage"]=44 + }, + [9193]={ + ["distance"]=55153, + ["mine_stage"]=58 + }, + [9194]={ + ["distance"]=55159, + ["mine_stage"]=19 + }, + [9195]={ + ["distance"]=55165, + ["mine_stage"]=60 + }, + [9196]={ + ["distance"]=55171, + ["mine_stage"]=14 + }, + [9197]={ + ["distance"]=55177, + ["mine_stage"]=49 + }, + [9198]={ + ["distance"]=55183, + ["mine_stage"]=24 + }, + [9199]={ + ["distance"]=55189, + ["mine_stage"]=51 + }, + [9200]={ + ["distance"]=55195, + ["mine_stage"]=16 + }, + [9201]={ + ["distance"]=55201, + ["mine_stage"]=65 + }, + [9202]={ + ["distance"]=55207, + ["mine_stage"]=11 + }, + [9203]={ + ["distance"]=55213, + ["mine_stage"]=40 + }, + [9204]={ + ["distance"]=55219, + ["mine_stage"]=14 + }, + [9205]={ + ["distance"]=55225, + ["mine_stage"]=7 + }, + [9206]={ + ["distance"]=55231, + ["mine_stage"]=57 + }, + [9207]={ + ["distance"]=55237, + ["mine_stage"]=17 + }, + [9208]={ + ["distance"]=55243, + ["mine_stage"]=9 + }, + [9209]={ + ["distance"]=55249, + ["mine_stage"]=29 + }, + [9210]={ + ["distance"]=55255, + ["mine_stage"]=26 + }, + [9211]={ + ["distance"]=55261, + ["mine_stage"]=12 + }, + [9212]={ + ["distance"]=55267, + ["mine_stage"]=30 + }, + [9213]={ + ["distance"]=55273, + ["mine_stage"]=6 + }, + [9214]={ + ["distance"]=55279, + ["mine_stage"]=57 + }, + [9215]={ + ["distance"]=55285, + ["mine_stage"]=3 + }, + [9216]={ + ["distance"]=55291, + ["mine_stage"]=13 + }, + [9217]={ + ["distance"]=55297, + ["mine_stage"]=46 + }, + [9218]={ + ["distance"]=55303, + ["mine_stage"]=13 + }, + [9219]={ + ["distance"]=55309, + ["mine_stage"]=3 + }, + [9220]={ + ["distance"]=55315, + ["mine_stage"]=46 + }, + [9221]={ + ["distance"]=55321, + ["mine_stage"]=33 + }, + [9222]={ + ["distance"]=55327, + ["mine_stage"]=23 + }, + [9223]={ + ["distance"]=55333, + ["mine_stage"]=53 + }, + [9224]={ + ["distance"]=55339, + ["mine_stage"]=18 + }, + [9225]={ + ["distance"]=55345, + ["mine_stage"]=49 + }, + [9226]={ + ["distance"]=55351, + ["mine_stage"]=57 + }, + [9227]={ + ["distance"]=55357, + ["mine_stage"]=18 + }, + [9228]={ + ["distance"]=55363, + ["mine_stage"]=27 + }, + [9229]={ + ["distance"]=55369, + ["mine_stage"]=20 + }, + [9230]={ + ["distance"]=55375, + ["mine_stage"]=3 + }, + [9231]={ + ["distance"]=55381, + ["mine_stage"]=12 + }, + [9232]={ + ["distance"]=55387, + ["mine_stage"]=38 + }, + [9233]={ + ["distance"]=55393, + ["mine_stage"]=14 + }, + [9234]={ + ["distance"]=55399, + ["mine_stage"]=49 + }, + [9235]={ + ["distance"]=55405, + ["mine_stage"]=48 + }, + [9236]={ + ["distance"]=55411, + ["mine_stage"]=57 + }, + [9237]={ + ["distance"]=55417, + ["mine_stage"]=1 + }, + [9238]={ + ["distance"]=55423, + ["mine_stage"]=57 + }, + [9239]={ + ["distance"]=55429, + ["mine_stage"]=4 + }, + [9240]={ + ["distance"]=55435, + ["mine_stage"]=54 + }, + [9241]={ + ["distance"]=55441, + ["mine_stage"]=36 + }, + [9242]={ + ["distance"]=55447, + ["mine_stage"]=53 + }, + [9243]={ + ["distance"]=55453, + ["mine_stage"]=16 + }, + [9244]={ + ["distance"]=55459, + ["mine_stage"]=51 + }, + [9245]={ + ["distance"]=55465, + ["mine_stage"]=26 + }, + [9246]={ + ["distance"]=55471, + ["mine_stage"]=26 + }, + [9247]={ + ["distance"]=55477, + ["mine_stage"]=59 + }, + [9248]={ + ["distance"]=55483, + ["mine_stage"]=55 + }, + [9249]={ + ["distance"]=55489, + ["mine_stage"]=30 + }, + [9250]={ + ["distance"]=55495, + ["mine_stage"]=23 + }, + [9251]={ + ["distance"]=55501, + ["mine_stage"]=68 + }, + [9252]={ + ["distance"]=55507, + ["mine_stage"]=32 + }, + [9253]={ + ["distance"]=55513, + ["mine_stage"]=42 + }, + [9254]={ + ["distance"]=55519, + ["mine_stage"]=60 + }, + [9255]={ + ["distance"]=55525, + ["mine_stage"]=5 + }, + [9256]={ + ["distance"]=55531, + ["mine_stage"]=51 + }, + [9257]={ + ["distance"]=55537, + ["mine_stage"]=10 + }, + [9258]={ + ["distance"]=55543, + ["mine_stage"]=33 + }, + [9259]={ + ["distance"]=55549, + ["mine_stage"]=36 + }, + [9260]={ + ["distance"]=55555, + ["mine_stage"]=41 + }, + [9261]={ + ["distance"]=55561, + ["mine_stage"]=24 + }, + [9262]={ + ["distance"]=55567, + ["mine_stage"]=19 + }, + [9263]={ + ["distance"]=55573, + ["mine_stage"]=24 + }, + [9264]={ + ["distance"]=55579, + ["mine_stage"]=51 + }, + [9265]={ + ["distance"]=55585, + ["mine_stage"]=19 + }, + [9266]={ + ["distance"]=55591, + ["mine_stage"]=46 + }, + [9267]={ + ["distance"]=55597, + ["mine_stage"]=21 + }, + [9268]={ + ["distance"]=55603, + ["mine_stage"]=26 + }, + [9269]={ + ["distance"]=55609, + ["mine_stage"]=3 + }, + [9270]={ + ["distance"]=55615, + ["mine_stage"]=26 + }, + [9271]={ + ["distance"]=55621, + ["mine_stage"]=53 + }, + [9272]={ + ["distance"]=55627, + ["mine_stage"]=11 + }, + [9273]={ + ["distance"]=55633, + ["mine_stage"]=10 + }, + [9274]={ + ["distance"]=55639, + ["mine_stage"]=55 + }, + [9275]={ + ["distance"]=55645, + ["mine_stage"]=25 + }, + [9276]={ + ["distance"]=55651, + ["mine_stage"]=2 + }, + [9277]={ + ["distance"]=55657, + ["mine_stage"]=50 + }, + [9278]={ + ["distance"]=55663, + ["mine_stage"]=54 + }, + [9279]={ + ["distance"]=55669, + ["mine_stage"]=10 + }, + [9280]={ + ["distance"]=55675, + ["mine_stage"]=30 + }, + [9281]={ + ["distance"]=55681, + ["mine_stage"]=44 + }, + [9282]={ + ["distance"]=55687, + ["mine_stage"]=36 + }, + [9283]={ + ["distance"]=55693, + ["mine_stage"]=29 + }, + [9284]={ + ["distance"]=55699, + ["mine_stage"]=24 + }, + [9285]={ + ["distance"]=55705, + ["mine_stage"]=46 + }, + [9286]={ + ["distance"]=55711, + ["mine_stage"]=9 + }, + [9287]={ + ["distance"]=55717, + ["mine_stage"]=43 + }, + [9288]={ + ["distance"]=55723, + ["mine_stage"]=32 + }, + [9289]={ + ["distance"]=55729, + ["mine_stage"]=42 + }, + [9290]={ + ["distance"]=55735, + ["mine_stage"]=49 + }, + [9291]={ + ["distance"]=55741, + ["mine_stage"]=29 + }, + [9292]={ + ["distance"]=55747, + ["mine_stage"]=8 + }, + [9293]={ + ["distance"]=55753, + ["mine_stage"]=17 + }, + [9294]={ + ["distance"]=55759, + ["mine_stage"]=19 + }, + [9295]={ + ["distance"]=55765, + ["mine_stage"]=45 + }, + [9296]={ + ["distance"]=55771, + ["mine_stage"]=9 + }, + [9297]={ + ["distance"]=55777, + ["mine_stage"]=43 + }, + [9298]={ + ["distance"]=55783, + ["mine_stage"]=19 + }, + [9299]={ + ["distance"]=55789, + ["mine_stage"]=40 + }, + [9300]={ + ["distance"]=55795, + ["mine_stage"]=18 + }, + [9301]={ + ["distance"]=55801, + ["mine_stage"]=66 + }, + [9302]={ + ["distance"]=55807, + ["mine_stage"]=29 + }, + [9303]={ + ["distance"]=55813, + ["mine_stage"]=15 + }, + [9304]={ + ["distance"]=55819, + ["mine_stage"]=1 + }, + [9305]={ + ["distance"]=55825, + ["mine_stage"]=28 + }, + [9306]={ + ["distance"]=55831, + ["mine_stage"]=42 + }, + [9307]={ + ["distance"]=55837, + ["mine_stage"]=55 + }, + [9308]={ + ["distance"]=55843, + ["mine_stage"]=46 + }, + [9309]={ + ["distance"]=55849, + ["mine_stage"]=10 + }, + [9310]={ + ["distance"]=55855, + ["mine_stage"]=1 + }, + [9311]={ + ["distance"]=55861, + ["mine_stage"]=32 + }, + [9312]={ + ["distance"]=55867, + ["mine_stage"]=21 + }, + [9313]={ + ["distance"]=55873, + ["mine_stage"]=40 + }, + [9314]={ + ["distance"]=55879, + ["mine_stage"]=54 + }, + [9315]={ + ["distance"]=55885, + ["mine_stage"]=32 + }, + [9316]={ + ["distance"]=55891, + ["mine_stage"]=30 + }, + [9317]={ + ["distance"]=55897, + ["mine_stage"]=15 + }, + [9318]={ + ["distance"]=55903, + ["mine_stage"]=54 + }, + [9319]={ + ["distance"]=55909, + ["mine_stage"]=34 + }, + [9320]={ + ["distance"]=55915, + ["mine_stage"]=36 + }, + [9321]={ + ["distance"]=55921, + ["mine_stage"]=24 + }, + [9322]={ + ["distance"]=55927, + ["mine_stage"]=4 + }, + [9323]={ + ["distance"]=55933, + ["mine_stage"]=46 + }, + [9324]={ + ["distance"]=55939, + ["mine_stage"]=54 + }, + [9325]={ + ["distance"]=55945, + ["mine_stage"]=31 + }, + [9326]={ + ["distance"]=55951, + ["mine_stage"]=26 + }, + [9327]={ + ["distance"]=55957, + ["mine_stage"]=57 + }, + [9328]={ + ["distance"]=55963, + ["mine_stage"]=43 + }, + [9329]={ + ["distance"]=55969, + ["mine_stage"]=13 + }, + [9330]={ + ["distance"]=55975, + ["mine_stage"]=43 + }, + [9331]={ + ["distance"]=55981, + ["mine_stage"]=55 + }, + [9332]={ + ["distance"]=55987, + ["mine_stage"]=27 + }, + [9333]={ + ["distance"]=55993, + ["mine_stage"]=52 + }, + [9334]={ + ["distance"]=55999, + ["mine_stage"]=21 + }, + [9335]={ + ["distance"]=56005, + ["mine_stage"]=59 + }, + [9336]={ + ["distance"]=56011, + ["mine_stage"]=52 + }, + [9337]={ + ["distance"]=56017, + ["mine_stage"]=4 + }, + [9338]={ + ["distance"]=56023, + ["mine_stage"]=47 + }, + [9339]={ + ["distance"]=56029, + ["mine_stage"]=41 + }, + [9340]={ + ["distance"]=56035, + ["mine_stage"]=3 + }, + [9341]={ + ["distance"]=56041, + ["mine_stage"]=40 + }, + [9342]={ + ["distance"]=56047, + ["mine_stage"]=2 + }, + [9343]={ + ["distance"]=56053, + ["mine_stage"]=1 + }, + [9344]={ + ["distance"]=56059, + ["mine_stage"]=31 + }, + [9345]={ + ["distance"]=56065, + ["mine_stage"]=30 + }, + [9346]={ + ["distance"]=56071, + ["mine_stage"]=51 + }, + [9347]={ + ["distance"]=56077, + ["mine_stage"]=25 + }, + [9348]={ + ["distance"]=56083, + ["mine_stage"]=11 + }, + [9349]={ + ["distance"]=56089, + ["mine_stage"]=21 + }, + [9350]={ + ["distance"]=56095, + ["mine_stage"]=34 + }, + [9351]={ + ["distance"]=56101, + ["mine_stage"]=69 + }, + [9352]={ + ["distance"]=56107, + ["mine_stage"]=7 + }, + [9353]={ + ["distance"]=56113, + ["mine_stage"]=43 + }, + [9354]={ + ["distance"]=56119, + ["mine_stage"]=6 + }, + [9355]={ + ["distance"]=56125, + ["mine_stage"]=41 + }, + [9356]={ + ["distance"]=56131, + ["mine_stage"]=11 + }, + [9357]={ + ["distance"]=56137, + ["mine_stage"]=45 + }, + [9358]={ + ["distance"]=56143, + ["mine_stage"]=42 + }, + [9359]={ + ["distance"]=56149, + ["mine_stage"]=24 + }, + [9360]={ + ["distance"]=56155, + ["mine_stage"]=29 + }, + [9361]={ + ["distance"]=56161, + ["mine_stage"]=48 + }, + [9362]={ + ["distance"]=56167, + ["mine_stage"]=35 + }, + [9363]={ + ["distance"]=56173, + ["mine_stage"]=54 + }, + [9364]={ + ["distance"]=56179, + ["mine_stage"]=11 + }, + [9365]={ + ["distance"]=56185, + ["mine_stage"]=2 + }, + [9366]={ + ["distance"]=56191, + ["mine_stage"]=60 + }, + [9367]={ + ["distance"]=56197, + ["mine_stage"]=40 + }, + [9368]={ + ["distance"]=56203, + ["mine_stage"]=36 + }, + [9369]={ + ["distance"]=56209, + ["mine_stage"]=49 + }, + [9370]={ + ["distance"]=56215, + ["mine_stage"]=13 + }, + [9371]={ + ["distance"]=56221, + ["mine_stage"]=44 + }, + [9372]={ + ["distance"]=56227, + ["mine_stage"]=6 + }, + [9373]={ + ["distance"]=56233, + ["mine_stage"]=27 + }, + [9374]={ + ["distance"]=56239, + ["mine_stage"]=11 + }, + [9375]={ + ["distance"]=56245, + ["mine_stage"]=37 + }, + [9376]={ + ["distance"]=56251, + ["mine_stage"]=27 + }, + [9377]={ + ["distance"]=56257, + ["mine_stage"]=53 + }, + [9378]={ + ["distance"]=56263, + ["mine_stage"]=24 + }, + [9379]={ + ["distance"]=56269, + ["mine_stage"]=18 + }, + [9380]={ + ["distance"]=56275, + ["mine_stage"]=36 + }, + [9381]={ + ["distance"]=56281, + ["mine_stage"]=24 + }, + [9382]={ + ["distance"]=56287, + ["mine_stage"]=8 + }, + [9383]={ + ["distance"]=56293, + ["mine_stage"]=41 + }, + [9384]={ + ["distance"]=56299, + ["mine_stage"]=6 + }, + [9385]={ + ["distance"]=56305, + ["mine_stage"]=51 + }, + [9386]={ + ["distance"]=56311, + ["mine_stage"]=29 + }, + [9387]={ + ["distance"]=56317, + ["mine_stage"]=33 + }, + [9388]={ + ["distance"]=56323, + ["mine_stage"]=27 + }, + [9389]={ + ["distance"]=56329, + ["mine_stage"]=3 + }, + [9390]={ + ["distance"]=56335, + ["mine_stage"]=57 + }, + [9391]={ + ["distance"]=56341, + ["mine_stage"]=36 + }, + [9392]={ + ["distance"]=56347, + ["mine_stage"]=13 + }, + [9393]={ + ["distance"]=56353, + ["mine_stage"]=9 + }, + [9394]={ + ["distance"]=56359, + ["mine_stage"]=37 + }, + [9395]={ + ["distance"]=56365, + ["mine_stage"]=5 + }, + [9396]={ + ["distance"]=56371, + ["mine_stage"]=19 + }, + [9397]={ + ["distance"]=56377, + ["mine_stage"]=34 + }, + [9398]={ + ["distance"]=56383, + ["mine_stage"]=55 + }, + [9399]={ + ["distance"]=56389, + ["mine_stage"]=54 + }, + [9400]={ + ["distance"]=56395, + ["mine_stage"]=13 + }, + [9401]={ + ["distance"]=56401, + ["mine_stage"]=64 + }, + [9402]={ + ["distance"]=56407, + ["mine_stage"]=42 + }, + [9403]={ + ["distance"]=56413, + ["mine_stage"]=2 + }, + [9404]={ + ["distance"]=56419, + ["mine_stage"]=15 + }, + [9405]={ + ["distance"]=56425, + ["mine_stage"]=31 + }, + [9406]={ + ["distance"]=56431, + ["mine_stage"]=21 + }, + [9407]={ + ["distance"]=56437, + ["mine_stage"]=32 + }, + [9408]={ + ["distance"]=56443, + ["mine_stage"]=40 + }, + [9409]={ + ["distance"]=56449, + ["mine_stage"]=26 + }, + [9410]={ + ["distance"]=56455, + ["mine_stage"]=54 + }, + [9411]={ + ["distance"]=56461, + ["mine_stage"]=40 + }, + [9412]={ + ["distance"]=56467, + ["mine_stage"]=46 + }, + [9413]={ + ["distance"]=56473, + ["mine_stage"]=57 + }, + [9414]={ + ["distance"]=56479, + ["mine_stage"]=41 + }, + [9415]={ + ["distance"]=56485, + ["mine_stage"]=53 + }, + [9416]={ + ["distance"]=56491, + ["mine_stage"]=58 + }, + [9417]={ + ["distance"]=56497, + ["mine_stage"]=16 + }, + [9418]={ + ["distance"]=56503, + ["mine_stage"]=2 + }, + [9419]={ + ["distance"]=56509, + ["mine_stage"]=26 + }, + [9420]={ + ["distance"]=56515, + ["mine_stage"]=30 + }, + [9421]={ + ["distance"]=56521, + ["mine_stage"]=9 + }, + [9422]={ + ["distance"]=56527, + ["mine_stage"]=15 + }, + [9423]={ + ["distance"]=56533, + ["mine_stage"]=7 + }, + [9424]={ + ["distance"]=56539, + ["mine_stage"]=29 + }, + [9425]={ + ["distance"]=56545, + ["mine_stage"]=48 + }, + [9426]={ + ["distance"]=56551, + ["mine_stage"]=20 + }, + [9427]={ + ["distance"]=56557, + ["mine_stage"]=47 + }, + [9428]={ + ["distance"]=56563, + ["mine_stage"]=60 + }, + [9429]={ + ["distance"]=56569, + ["mine_stage"]=7 + }, + [9430]={ + ["distance"]=56575, + ["mine_stage"]=42 + }, + [9431]={ + ["distance"]=56581, + ["mine_stage"]=1 + }, + [9432]={ + ["distance"]=56587, + ["mine_stage"]=27 + }, + [9433]={ + ["distance"]=56593, + ["mine_stage"]=12 + }, + [9434]={ + ["distance"]=56599, + ["mine_stage"]=37 + }, + [9435]={ + ["distance"]=56605, + ["mine_stage"]=33 + }, + [9436]={ + ["distance"]=56611, + ["mine_stage"]=28 + }, + [9437]={ + ["distance"]=56617, + ["mine_stage"]=37 + }, + [9438]={ + ["distance"]=56623, + ["mine_stage"]=31 + }, + [9439]={ + ["distance"]=56629, + ["mine_stage"]=33 + }, + [9440]={ + ["distance"]=56635, + ["mine_stage"]=18 + }, + [9441]={ + ["distance"]=56641, + ["mine_stage"]=5 + }, + [9442]={ + ["distance"]=56647, + ["mine_stage"]=60 + }, + [9443]={ + ["distance"]=56653, + ["mine_stage"]=30 + }, + [9444]={ + ["distance"]=56659, + ["mine_stage"]=40 + }, + [9445]={ + ["distance"]=56665, + ["mine_stage"]=22 + }, + [9446]={ + ["distance"]=56671, + ["mine_stage"]=12 + }, + [9447]={ + ["distance"]=56677, + ["mine_stage"]=55 + }, + [9448]={ + ["distance"]=56683, + ["mine_stage"]=59 + }, + [9449]={ + ["distance"]=56689, + ["mine_stage"]=22 + }, + [9450]={ + ["distance"]=56695, + ["mine_stage"]=2 + }, + [9451]={ + ["distance"]=56701, + ["mine_stage"]=67 + }, + [9452]={ + ["distance"]=56707, + ["mine_stage"]=4 + }, + [9453]={ + ["distance"]=56713, + ["mine_stage"]=50 + }, + [9454]={ + ["distance"]=56719, + ["mine_stage"]=55 + }, + [9455]={ + ["distance"]=56725, + ["mine_stage"]=41 + }, + [9456]={ + ["distance"]=56731, + ["mine_stage"]=26 + }, + [9457]={ + ["distance"]=56737, + ["mine_stage"]=52 + }, + [9458]={ + ["distance"]=56743, + ["mine_stage"]=18 + }, + [9459]={ + ["distance"]=56749, + ["mine_stage"]=34 + }, + [9460]={ + ["distance"]=56755, + ["mine_stage"]=45 + }, + [9461]={ + ["distance"]=56761, + ["mine_stage"]=54 + }, + [9462]={ + ["distance"]=56767, + ["mine_stage"]=48 + }, + [9463]={ + ["distance"]=56773, + ["mine_stage"]=13 + }, + [9464]={ + ["distance"]=56779, + ["mine_stage"]=12 + }, + [9465]={ + ["distance"]=56785, + ["mine_stage"]=39 + }, + [9466]={ + ["distance"]=56791, + ["mine_stage"]=4 + }, + [9467]={ + ["distance"]=56797, + ["mine_stage"]=22 + }, + [9468]={ + ["distance"]=56803, + ["mine_stage"]=38 + }, + [9469]={ + ["distance"]=56809, + ["mine_stage"]=4 + }, + [9470]={ + ["distance"]=56815, + ["mine_stage"]=22 + }, + [9471]={ + ["distance"]=56821, + ["mine_stage"]=5 + }, + [9472]={ + ["distance"]=56827, + ["mine_stage"]=23 + }, + [9473]={ + ["distance"]=56833, + ["mine_stage"]=43 + }, + [9474]={ + ["distance"]=56839, + ["mine_stage"]=57 + }, + [9475]={ + ["distance"]=56845, + ["mine_stage"]=9 + }, + [9476]={ + ["distance"]=56851, + ["mine_stage"]=59 + }, + [9477]={ + ["distance"]=56857, + ["mine_stage"]=51 + }, + [9478]={ + ["distance"]=56863, + ["mine_stage"]=52 + }, + [9479]={ + ["distance"]=56869, + ["mine_stage"]=15 + }, + [9480]={ + ["distance"]=56875, + ["mine_stage"]=40 + }, + [9481]={ + ["distance"]=56881, + ["mine_stage"]=8 + }, + [9482]={ + ["distance"]=56887, + ["mine_stage"]=2 + }, + [9483]={ + ["distance"]=56893, + ["mine_stage"]=25 + }, + [9484]={ + ["distance"]=56899, + ["mine_stage"]=14 + }, + [9485]={ + ["distance"]=56905, + ["mine_stage"]=48 + }, + [9486]={ + ["distance"]=56911, + ["mine_stage"]=19 + }, + [9487]={ + ["distance"]=56917, + ["mine_stage"]=16 + }, + [9488]={ + ["distance"]=56923, + ["mine_stage"]=2 + }, + [9489]={ + ["distance"]=56929, + ["mine_stage"]=49 + }, + [9490]={ + ["distance"]=56935, + ["mine_stage"]=38 + }, + [9491]={ + ["distance"]=56941, + ["mine_stage"]=3 + }, + [9492]={ + ["distance"]=56947, + ["mine_stage"]=27 + }, + [9493]={ + ["distance"]=56953, + ["mine_stage"]=58 + }, + [9494]={ + ["distance"]=56959, + ["mine_stage"]=3 + }, + [9495]={ + ["distance"]=56965, + ["mine_stage"]=5 + }, + [9496]={ + ["distance"]=56971, + ["mine_stage"]=14 + }, + [9497]={ + ["distance"]=56977, + ["mine_stage"]=53 + }, + [9498]={ + ["distance"]=56983, + ["mine_stage"]=27 + }, + [9499]={ + ["distance"]=56989, + ["mine_stage"]=54 + }, + [9500]={ + ["distance"]=56995, + ["mine_stage"]=57 + }, + [9501]={ + ["distance"]=57001, + ["mine_stage"]=65 + }, + [9502]={ + ["distance"]=57007, + ["mine_stage"]=10 + }, + [9503]={ + ["distance"]=57013, + ["mine_stage"]=26 + }, + [9504]={ + ["distance"]=57019, + ["mine_stage"]=60 + }, + [9505]={ + ["distance"]=57025, + ["mine_stage"]=40 + }, + [9506]={ + ["distance"]=57031, + ["mine_stage"]=59 + }, + [9507]={ + ["distance"]=57037, + ["mine_stage"]=10 + }, + [9508]={ + ["distance"]=57043, + ["mine_stage"]=11 + }, + [9509]={ + ["distance"]=57049, + ["mine_stage"]=11 + }, + [9510]={ + ["distance"]=57055, + ["mine_stage"]=31 + }, + [9511]={ + ["distance"]=57061, + ["mine_stage"]=53 + }, + [9512]={ + ["distance"]=57067, + ["mine_stage"]=15 + }, + [9513]={ + ["distance"]=57073, + ["mine_stage"]=45 + }, + [9514]={ + ["distance"]=57079, + ["mine_stage"]=16 + }, + [9515]={ + ["distance"]=57085, + ["mine_stage"]=52 + }, + [9516]={ + ["distance"]=57091, + ["mine_stage"]=9 + }, + [9517]={ + ["distance"]=57097, + ["mine_stage"]=45 + }, + [9518]={ + ["distance"]=57103, + ["mine_stage"]=60 + }, + [9519]={ + ["distance"]=57109, + ["mine_stage"]=60 + }, + [9520]={ + ["distance"]=57115, + ["mine_stage"]=41 + }, + [9521]={ + ["distance"]=57121, + ["mine_stage"]=18 + }, + [9522]={ + ["distance"]=57127, + ["mine_stage"]=38 + }, + [9523]={ + ["distance"]=57133, + ["mine_stage"]=43 + }, + [9524]={ + ["distance"]=57139, + ["mine_stage"]=5 + }, + [9525]={ + ["distance"]=57145, + ["mine_stage"]=51 + }, + [9526]={ + ["distance"]=57151, + ["mine_stage"]=56 + }, + [9527]={ + ["distance"]=57157, + ["mine_stage"]=22 + }, + [9528]={ + ["distance"]=57163, + ["mine_stage"]=4 + }, + [9529]={ + ["distance"]=57169, + ["mine_stage"]=43 + }, + [9530]={ + ["distance"]=57175, + ["mine_stage"]=35 + }, + [9531]={ + ["distance"]=57181, + ["mine_stage"]=35 + }, + [9532]={ + ["distance"]=57187, + ["mine_stage"]=44 + }, + [9533]={ + ["distance"]=57193, + ["mine_stage"]=22 + }, + [9534]={ + ["distance"]=57199, + ["mine_stage"]=18 + }, + [9535]={ + ["distance"]=57205, + ["mine_stage"]=18 + }, + [9536]={ + ["distance"]=57211, + ["mine_stage"]=52 + }, + [9537]={ + ["distance"]=57217, + ["mine_stage"]=7 + }, + [9538]={ + ["distance"]=57223, + ["mine_stage"]=30 + }, + [9539]={ + ["distance"]=57229, + ["mine_stage"]=38 + }, + [9540]={ + ["distance"]=57235, + ["mine_stage"]=14 + }, + [9541]={ + ["distance"]=57241, + ["mine_stage"]=2 + }, + [9542]={ + ["distance"]=57247, + ["mine_stage"]=22 + }, + [9543]={ + ["distance"]=57253, + ["mine_stage"]=4 + }, + [9544]={ + ["distance"]=57259, + ["mine_stage"]=33 + }, + [9545]={ + ["distance"]=57265, + ["mine_stage"]=11 + }, + [9546]={ + ["distance"]=57271, + ["mine_stage"]=13 + }, + [9547]={ + ["distance"]=57277, + ["mine_stage"]=12 + }, + [9548]={ + ["distance"]=57283, + ["mine_stage"]=36 + }, + [9549]={ + ["distance"]=57289, + ["mine_stage"]=48 + }, + [9550]={ + ["distance"]=57295, + ["mine_stage"]=14 + }, + [9551]={ + ["distance"]=57301, + ["mine_stage"]=68 + }, + [9552]={ + ["distance"]=57307, + ["mine_stage"]=57 + }, + [9553]={ + ["distance"]=57313, + ["mine_stage"]=29 + }, + [9554]={ + ["distance"]=57319, + ["mine_stage"]=4 + }, + [9555]={ + ["distance"]=57325, + ["mine_stage"]=31 + }, + [9556]={ + ["distance"]=57331, + ["mine_stage"]=13 + }, + [9557]={ + ["distance"]=57337, + ["mine_stage"]=18 + }, + [9558]={ + ["distance"]=57343, + ["mine_stage"]=50 + }, + [9559]={ + ["distance"]=57349, + ["mine_stage"]=12 + }, + [9560]={ + ["distance"]=57355, + ["mine_stage"]=26 + }, + [9561]={ + ["distance"]=57361, + ["mine_stage"]=39 + }, + [9562]={ + ["distance"]=57367, + ["mine_stage"]=20 + }, + [9563]={ + ["distance"]=57373, + ["mine_stage"]=3 + }, + [9564]={ + ["distance"]=57379, + ["mine_stage"]=6 + }, + [9565]={ + ["distance"]=57385, + ["mine_stage"]=35 + }, + [9566]={ + ["distance"]=57391, + ["mine_stage"]=5 + }, + [9567]={ + ["distance"]=57397, + ["mine_stage"]=16 + }, + [9568]={ + ["distance"]=57403, + ["mine_stage"]=12 + }, + [9569]={ + ["distance"]=57409, + ["mine_stage"]=10 + }, + [9570]={ + ["distance"]=57415, + ["mine_stage"]=46 + }, + [9571]={ + ["distance"]=57421, + ["mine_stage"]=20 + }, + [9572]={ + ["distance"]=57427, + ["mine_stage"]=40 + }, + [9573]={ + ["distance"]=57433, + ["mine_stage"]=9 + }, + [9574]={ + ["distance"]=57439, + ["mine_stage"]=17 + }, + [9575]={ + ["distance"]=57445, + ["mine_stage"]=7 + }, + [9576]={ + ["distance"]=57451, + ["mine_stage"]=7 + }, + [9577]={ + ["distance"]=57457, + ["mine_stage"]=24 + }, + [9578]={ + ["distance"]=57463, + ["mine_stage"]=47 + }, + [9579]={ + ["distance"]=57469, + ["mine_stage"]=32 + }, + [9580]={ + ["distance"]=57475, + ["mine_stage"]=26 + }, + [9581]={ + ["distance"]=57481, + ["mine_stage"]=50 + }, + [9582]={ + ["distance"]=57487, + ["mine_stage"]=46 + }, + [9583]={ + ["distance"]=57493, + ["mine_stage"]=12 + }, + [9584]={ + ["distance"]=57499, + ["mine_stage"]=55 + }, + [9585]={ + ["distance"]=57505, + ["mine_stage"]=43 + }, + [9586]={ + ["distance"]=57511, + ["mine_stage"]=22 + }, + [9587]={ + ["distance"]=57517, + ["mine_stage"]=21 + }, + [9588]={ + ["distance"]=57523, + ["mine_stage"]=40 + }, + [9589]={ + ["distance"]=57529, + ["mine_stage"]=53 + }, + [9590]={ + ["distance"]=57535, + ["mine_stage"]=14 + }, + [9591]={ + ["distance"]=57541, + ["mine_stage"]=33 + }, + [9592]={ + ["distance"]=57547, + ["mine_stage"]=21 + }, + [9593]={ + ["distance"]=57553, + ["mine_stage"]=25 + }, + [9594]={ + ["distance"]=57559, + ["mine_stage"]=8 + }, + [9595]={ + ["distance"]=57565, + ["mine_stage"]=8 + }, + [9596]={ + ["distance"]=57571, + ["mine_stage"]=8 + }, + [9597]={ + ["distance"]=57577, + ["mine_stage"]=12 + }, + [9598]={ + ["distance"]=57583, + ["mine_stage"]=47 + }, + [9599]={ + ["distance"]=57589, + ["mine_stage"]=31 + }, + [9600]={ + ["distance"]=57595, + ["mine_stage"]=23 + }, + [9601]={ + ["distance"]=57601, + ["mine_stage"]=66 + }, + [9602]={ + ["distance"]=57607, + ["mine_stage"]=1 + }, + [9603]={ + ["distance"]=57613, + ["mine_stage"]=4 + }, + [9604]={ + ["distance"]=57619, + ["mine_stage"]=19 + }, + [9605]={ + ["distance"]=57625, + ["mine_stage"]=16 + }, + [9606]={ + ["distance"]=57631, + ["mine_stage"]=15 + }, + [9607]={ + ["distance"]=57637, + ["mine_stage"]=6 + }, + [9608]={ + ["distance"]=57643, + ["mine_stage"]=27 + }, + [9609]={ + ["distance"]=57649, + ["mine_stage"]=19 + }, + [9610]={ + ["distance"]=57655, + ["mine_stage"]=18 + }, + [9611]={ + ["distance"]=57661, + ["mine_stage"]=38 + }, + [9612]={ + ["distance"]=57667, + ["mine_stage"]=8 + }, + [9613]={ + ["distance"]=57673, + ["mine_stage"]=27 + }, + [9614]={ + ["distance"]=57679, + ["mine_stage"]=11 + }, + [9615]={ + ["distance"]=57685, + ["mine_stage"]=18 + }, + [9616]={ + ["distance"]=57691, + ["mine_stage"]=44 + }, + [9617]={ + ["distance"]=57697, + ["mine_stage"]=15 + }, + [9618]={ + ["distance"]=57703, + ["mine_stage"]=26 + }, + [9619]={ + ["distance"]=57709, + ["mine_stage"]=37 + }, + [9620]={ + ["distance"]=57715, + ["mine_stage"]=3 + }, + [9621]={ + ["distance"]=57721, + ["mine_stage"]=10 + }, + [9622]={ + ["distance"]=57727, + ["mine_stage"]=9 + }, + [9623]={ + ["distance"]=57733, + ["mine_stage"]=2 + }, + [9624]={ + ["distance"]=57739, + ["mine_stage"]=52 + }, + [9625]={ + ["distance"]=57745, + ["mine_stage"]=30 + }, + [9626]={ + ["distance"]=57751, + ["mine_stage"]=57 + }, + [9627]={ + ["distance"]=57757, + ["mine_stage"]=49 + }, + [9628]={ + ["distance"]=57763, + ["mine_stage"]=58 + }, + [9629]={ + ["distance"]=57769, + ["mine_stage"]=33 + }, + [9630]={ + ["distance"]=57775, + ["mine_stage"]=52 + }, + [9631]={ + ["distance"]=57781, + ["mine_stage"]=46 + }, + [9632]={ + ["distance"]=57787, + ["mine_stage"]=57 + }, + [9633]={ + ["distance"]=57793, + ["mine_stage"]=15 + }, + [9634]={ + ["distance"]=57799, + ["mine_stage"]=43 + }, + [9635]={ + ["distance"]=57805, + ["mine_stage"]=41 + }, + [9636]={ + ["distance"]=57811, + ["mine_stage"]=2 + }, + [9637]={ + ["distance"]=57817, + ["mine_stage"]=60 + }, + [9638]={ + ["distance"]=57823, + ["mine_stage"]=5 + }, + [9639]={ + ["distance"]=57829, + ["mine_stage"]=13 + }, + [9640]={ + ["distance"]=57835, + ["mine_stage"]=51 + }, + [9641]={ + ["distance"]=57841, + ["mine_stage"]=31 + }, + [9642]={ + ["distance"]=57847, + ["mine_stage"]=25 + }, + [9643]={ + ["distance"]=57853, + ["mine_stage"]=22 + }, + [9644]={ + ["distance"]=57859, + ["mine_stage"]=44 + }, + [9645]={ + ["distance"]=57865, + ["mine_stage"]=50 + }, + [9646]={ + ["distance"]=57871, + ["mine_stage"]=12 + }, + [9647]={ + ["distance"]=57877, + ["mine_stage"]=5 + }, + [9648]={ + ["distance"]=57883, + ["mine_stage"]=6 + }, + [9649]={ + ["distance"]=57889, + ["mine_stage"]=56 + }, + [9650]={ + ["distance"]=57895, + ["mine_stage"]=51 + }, + [9651]={ + ["distance"]=57901, + ["mine_stage"]=69 + }, + [9652]={ + ["distance"]=57907, + ["mine_stage"]=15 + }, + [9653]={ + ["distance"]=57913, + ["mine_stage"]=41 + }, + [9654]={ + ["distance"]=57919, + ["mine_stage"]=53 + }, + [9655]={ + ["distance"]=57925, + ["mine_stage"]=45 + }, + [9656]={ + ["distance"]=57931, + ["mine_stage"]=19 + }, + [9657]={ + ["distance"]=57937, + ["mine_stage"]=51 + }, + [9658]={ + ["distance"]=57943, + ["mine_stage"]=16 + }, + [9659]={ + ["distance"]=57949, + ["mine_stage"]=57 + }, + [9660]={ + ["distance"]=57955, + ["mine_stage"]=17 + }, + [9661]={ + ["distance"]=57961, + ["mine_stage"]=20 + }, + [9662]={ + ["distance"]=57967, + ["mine_stage"]=59 + }, + [9663]={ + ["distance"]=57973, + ["mine_stage"]=27 + }, + [9664]={ + ["distance"]=57979, + ["mine_stage"]=39 + }, + [9665]={ + ["distance"]=57985, + ["mine_stage"]=54 + }, + [9666]={ + ["distance"]=57991, + ["mine_stage"]=35 + }, + [9667]={ + ["distance"]=57997, + ["mine_stage"]=21 + }, + [9668]={ + ["distance"]=58003, + ["mine_stage"]=6 + }, + [9669]={ + ["distance"]=58009, + ["mine_stage"]=49 + }, + [9670]={ + ["distance"]=58015, + ["mine_stage"]=14 + }, + [9671]={ + ["distance"]=58021, + ["mine_stage"]=21 + }, + [9672]={ + ["distance"]=58027, + ["mine_stage"]=15 + }, + [9673]={ + ["distance"]=58033, + ["mine_stage"]=51 + }, + [9674]={ + ["distance"]=58039, + ["mine_stage"]=50 + }, + [9675]={ + ["distance"]=58045, + ["mine_stage"]=48 + }, + [9676]={ + ["distance"]=58051, + ["mine_stage"]=49 + }, + [9677]={ + ["distance"]=58057, + ["mine_stage"]=22 + }, + [9678]={ + ["distance"]=58063, + ["mine_stage"]=46 + }, + [9679]={ + ["distance"]=58069, + ["mine_stage"]=50 + }, + [9680]={ + ["distance"]=58075, + ["mine_stage"]=47 + }, + [9681]={ + ["distance"]=58081, + ["mine_stage"]=10 + }, + [9682]={ + ["distance"]=58087, + ["mine_stage"]=33 + }, + [9683]={ + ["distance"]=58093, + ["mine_stage"]=42 + }, + [9684]={ + ["distance"]=58099, + ["mine_stage"]=16 + }, + [9685]={ + ["distance"]=58105, + ["mine_stage"]=1 + }, + [9686]={ + ["distance"]=58111, + ["mine_stage"]=32 + }, + [9687]={ + ["distance"]=58117, + ["mine_stage"]=39 + }, + [9688]={ + ["distance"]=58123, + ["mine_stage"]=52 + }, + [9689]={ + ["distance"]=58129, + ["mine_stage"]=42 + }, + [9690]={ + ["distance"]=58135, + ["mine_stage"]=58 + }, + [9691]={ + ["distance"]=58141, + ["mine_stage"]=7 + }, + [9692]={ + ["distance"]=58147, + ["mine_stage"]=29 + }, + [9693]={ + ["distance"]=58153, + ["mine_stage"]=49 + }, + [9694]={ + ["distance"]=58159, + ["mine_stage"]=39 + }, + [9695]={ + ["distance"]=58165, + ["mine_stage"]=31 + }, + [9696]={ + ["distance"]=58171, + ["mine_stage"]=58 + }, + [9697]={ + ["distance"]=58177, + ["mine_stage"]=46 + }, + [9698]={ + ["distance"]=58183, + ["mine_stage"]=30 + }, + [9699]={ + ["distance"]=58189, + ["mine_stage"]=44 + }, + [9700]={ + ["distance"]=58195, + ["mine_stage"]=59 + }, + [9701]={ + ["distance"]=58201, + ["mine_stage"]=64 + }, + [9702]={ + ["distance"]=58207, + ["mine_stage"]=45 + }, + [9703]={ + ["distance"]=58213, + ["mine_stage"]=46 + }, + [9704]={ + ["distance"]=58219, + ["mine_stage"]=4 + }, + [9705]={ + ["distance"]=58225, + ["mine_stage"]=25 + }, + [9706]={ + ["distance"]=58231, + ["mine_stage"]=6 + }, + [9707]={ + ["distance"]=58237, + ["mine_stage"]=52 + }, + [9708]={ + ["distance"]=58243, + ["mine_stage"]=37 + }, + [9709]={ + ["distance"]=58249, + ["mine_stage"]=20 + }, + [9710]={ + ["distance"]=58255, + ["mine_stage"]=26 + }, + [9711]={ + ["distance"]=58261, + ["mine_stage"]=29 + }, + [9712]={ + ["distance"]=58267, + ["mine_stage"]=28 + }, + [9713]={ + ["distance"]=58273, + ["mine_stage"]=48 + }, + [9714]={ + ["distance"]=58279, + ["mine_stage"]=6 + }, + [9715]={ + ["distance"]=58285, + ["mine_stage"]=6 + }, + [9716]={ + ["distance"]=58291, + ["mine_stage"]=50 + }, + [9717]={ + ["distance"]=58297, + ["mine_stage"]=51 + }, + [9718]={ + ["distance"]=58303, + ["mine_stage"]=45 + }, + [9719]={ + ["distance"]=58309, + ["mine_stage"]=57 + }, + [9720]={ + ["distance"]=58315, + ["mine_stage"]=57 + }, + [9721]={ + ["distance"]=58321, + ["mine_stage"]=28 + }, + [9722]={ + ["distance"]=58327, + ["mine_stage"]=26 + }, + [9723]={ + ["distance"]=58333, + ["mine_stage"]=1 + }, + [9724]={ + ["distance"]=58339, + ["mine_stage"]=9 + }, + [9725]={ + ["distance"]=58345, + ["mine_stage"]=5 + }, + [9726]={ + ["distance"]=58351, + ["mine_stage"]=9 + }, + [9727]={ + ["distance"]=58357, + ["mine_stage"]=10 + }, + [9728]={ + ["distance"]=58363, + ["mine_stage"]=59 + }, + [9729]={ + ["distance"]=58369, + ["mine_stage"]=38 + }, + [9730]={ + ["distance"]=58375, + ["mine_stage"]=33 + }, + [9731]={ + ["distance"]=58381, + ["mine_stage"]=27 + }, + [9732]={ + ["distance"]=58387, + ["mine_stage"]=32 + }, + [9733]={ + ["distance"]=58393, + ["mine_stage"]=16 + }, + [9734]={ + ["distance"]=58399, + ["mine_stage"]=24 + }, + [9735]={ + ["distance"]=58405, + ["mine_stage"]=15 + }, + [9736]={ + ["distance"]=58411, + ["mine_stage"]=45 + }, + [9737]={ + ["distance"]=58417, + ["mine_stage"]=38 + }, + [9738]={ + ["distance"]=58423, + ["mine_stage"]=3 + }, + [9739]={ + ["distance"]=58429, + ["mine_stage"]=38 + }, + [9740]={ + ["distance"]=58435, + ["mine_stage"]=34 + }, + [9741]={ + ["distance"]=58441, + ["mine_stage"]=59 + }, + [9742]={ + ["distance"]=58447, + ["mine_stage"]=60 + }, + [9743]={ + ["distance"]=58453, + ["mine_stage"]=52 + }, + [9744]={ + ["distance"]=58459, + ["mine_stage"]=38 + }, + [9745]={ + ["distance"]=58465, + ["mine_stage"]=19 + }, + [9746]={ + ["distance"]=58471, + ["mine_stage"]=19 + }, + [9747]={ + ["distance"]=58477, + ["mine_stage"]=32 + }, + [9748]={ + ["distance"]=58483, + ["mine_stage"]=1 + }, + [9749]={ + ["distance"]=58489, + ["mine_stage"]=42 + }, + [9750]={ + ["distance"]=58495, + ["mine_stage"]=42 + }, + [9751]={ + ["distance"]=58501, + ["mine_stage"]=67 + }, + [9752]={ + ["distance"]=58507, + ["mine_stage"]=26 + }, + [9753]={ + ["distance"]=58513, + ["mine_stage"]=35 + }, + [9754]={ + ["distance"]=58519, + ["mine_stage"]=52 + }, + [9755]={ + ["distance"]=58525, + ["mine_stage"]=28 + }, + [9756]={ + ["distance"]=58531, + ["mine_stage"]=2 + }, + [9757]={ + ["distance"]=58537, + ["mine_stage"]=36 + }, + [9758]={ + ["distance"]=58543, + ["mine_stage"]=48 + }, + [9759]={ + ["distance"]=58549, + ["mine_stage"]=34 + }, + [9760]={ + ["distance"]=58555, + ["mine_stage"]=32 + }, + [9761]={ + ["distance"]=58561, + ["mine_stage"]=29 + }, + [9762]={ + ["distance"]=58567, + ["mine_stage"]=55 + }, + [9763]={ + ["distance"]=58573, + ["mine_stage"]=44 + }, + [9764]={ + ["distance"]=58579, + ["mine_stage"]=27 + }, + [9765]={ + ["distance"]=58585, + ["mine_stage"]=29 + }, + [9766]={ + ["distance"]=58591, + ["mine_stage"]=5 + }, + [9767]={ + ["distance"]=58597, + ["mine_stage"]=7 + }, + [9768]={ + ["distance"]=58603, + ["mine_stage"]=35 + }, + [9769]={ + ["distance"]=58609, + ["mine_stage"]=8 + }, + [9770]={ + ["distance"]=58615, + ["mine_stage"]=3 + }, + [9771]={ + ["distance"]=58621, + ["mine_stage"]=39 + }, + [9772]={ + ["distance"]=58627, + ["mine_stage"]=6 + }, + [9773]={ + ["distance"]=58633, + ["mine_stage"]=53 + }, + [9774]={ + ["distance"]=58639, + ["mine_stage"]=4 + }, + [9775]={ + ["distance"]=58645, + ["mine_stage"]=14 + }, + [9776]={ + ["distance"]=58651, + ["mine_stage"]=9 + }, + [9777]={ + ["distance"]=58657, + ["mine_stage"]=2 + }, + [9778]={ + ["distance"]=58663, + ["mine_stage"]=60 + }, + [9779]={ + ["distance"]=58669, + ["mine_stage"]=22 + }, + [9780]={ + ["distance"]=58675, + ["mine_stage"]=23 + }, + [9781]={ + ["distance"]=58681, + ["mine_stage"]=58 + }, + [9782]={ + ["distance"]=58687, + ["mine_stage"]=30 + }, + [9783]={ + ["distance"]=58693, + ["mine_stage"]=34 + }, + [9784]={ + ["distance"]=58699, + ["mine_stage"]=8 + }, + [9785]={ + ["distance"]=58705, + ["mine_stage"]=9 + }, + [9786]={ + ["distance"]=58711, + ["mine_stage"]=40 + }, + [9787]={ + ["distance"]=58717, + ["mine_stage"]=18 + }, + [9788]={ + ["distance"]=58723, + ["mine_stage"]=22 + }, + [9789]={ + ["distance"]=58729, + ["mine_stage"]=52 + }, + [9790]={ + ["distance"]=58735, + ["mine_stage"]=10 + }, + [9791]={ + ["distance"]=58741, + ["mine_stage"]=18 + }, + [9792]={ + ["distance"]=58747, + ["mine_stage"]=58 + }, + [9793]={ + ["distance"]=58753, + ["mine_stage"]=22 + }, + [9794]={ + ["distance"]=58759, + ["mine_stage"]=35 + }, + [9795]={ + ["distance"]=58765, + ["mine_stage"]=9 + }, + [9796]={ + ["distance"]=58771, + ["mine_stage"]=45 + }, + [9797]={ + ["distance"]=58777, + ["mine_stage"]=43 + }, + [9798]={ + ["distance"]=58783, + ["mine_stage"]=34 + }, + [9799]={ + ["distance"]=58789, + ["mine_stage"]=9 + }, + [9800]={ + ["distance"]=58795, + ["mine_stage"]=10 + }, + [9801]={ + ["distance"]=58801, + ["mine_stage"]=65 + }, + [9802]={ + ["distance"]=58807, + ["mine_stage"]=7 + }, + [9803]={ + ["distance"]=58813, + ["mine_stage"]=33 + }, + [9804]={ + ["distance"]=58819, + ["mine_stage"]=42 + }, + [9805]={ + ["distance"]=58825, + ["mine_stage"]=46 + }, + [9806]={ + ["distance"]=58831, + ["mine_stage"]=35 + }, + [9807]={ + ["distance"]=58837, + ["mine_stage"]=30 + }, + [9808]={ + ["distance"]=58843, + ["mine_stage"]=20 + }, + [9809]={ + ["distance"]=58849, + ["mine_stage"]=19 + }, + [9810]={ + ["distance"]=58855, + ["mine_stage"]=50 + }, + [9811]={ + ["distance"]=58861, + ["mine_stage"]=26 + }, + [9812]={ + ["distance"]=58867, + ["mine_stage"]=36 + }, + [9813]={ + ["distance"]=58873, + ["mine_stage"]=26 + }, + [9814]={ + ["distance"]=58879, + ["mine_stage"]=27 + }, + [9815]={ + ["distance"]=58885, + ["mine_stage"]=34 + }, + [9816]={ + ["distance"]=58891, + ["mine_stage"]=21 + }, + [9817]={ + ["distance"]=58897, + ["mine_stage"]=27 + }, + [9818]={ + ["distance"]=58903, + ["mine_stage"]=39 + }, + [9819]={ + ["distance"]=58909, + ["mine_stage"]=36 + }, + [9820]={ + ["distance"]=58915, + ["mine_stage"]=7 + }, + [9821]={ + ["distance"]=58921, + ["mine_stage"]=2 + }, + [9822]={ + ["distance"]=58927, + ["mine_stage"]=38 + }, + [9823]={ + ["distance"]=58933, + ["mine_stage"]=60 + }, + [9824]={ + ["distance"]=58939, + ["mine_stage"]=50 + }, + [9825]={ + ["distance"]=58945, + ["mine_stage"]=13 + }, + [9826]={ + ["distance"]=58951, + ["mine_stage"]=40 + }, + [9827]={ + ["distance"]=58957, + ["mine_stage"]=8 + }, + [9828]={ + ["distance"]=58963, + ["mine_stage"]=20 + }, + [9829]={ + ["distance"]=58969, + ["mine_stage"]=7 + }, + [9830]={ + ["distance"]=58975, + ["mine_stage"]=3 + }, + [9831]={ + ["distance"]=58981, + ["mine_stage"]=49 + }, + [9832]={ + ["distance"]=58987, + ["mine_stage"]=1 + }, + [9833]={ + ["distance"]=58993, + ["mine_stage"]=45 + }, + [9834]={ + ["distance"]=58999, + ["mine_stage"]=5 + }, + [9835]={ + ["distance"]=59005, + ["mine_stage"]=22 + }, + [9836]={ + ["distance"]=59011, + ["mine_stage"]=58 + }, + [9837]={ + ["distance"]=59017, + ["mine_stage"]=17 + }, + [9838]={ + ["distance"]=59023, + ["mine_stage"]=35 + }, + [9839]={ + ["distance"]=59029, + ["mine_stage"]=60 + }, + [9840]={ + ["distance"]=59035, + ["mine_stage"]=3 + }, + [9841]={ + ["distance"]=59041, + ["mine_stage"]=30 + }, + [9842]={ + ["distance"]=59047, + ["mine_stage"]=37 + }, + [9843]={ + ["distance"]=59053, + ["mine_stage"]=34 + }, + [9844]={ + ["distance"]=59059, + ["mine_stage"]=11 + }, + [9845]={ + ["distance"]=59065, + ["mine_stage"]=32 + }, + [9846]={ + ["distance"]=59071, + ["mine_stage"]=39 + }, + [9847]={ + ["distance"]=59077, + ["mine_stage"]=14 + }, + [9848]={ + ["distance"]=59083, + ["mine_stage"]=40 + }, + [9849]={ + ["distance"]=59089, + ["mine_stage"]=33 + }, + [9850]={ + ["distance"]=59095, + ["mine_stage"]=30 + }, + [9851]={ + ["distance"]=59101, + ["mine_stage"]=68 + }, + [9852]={ + ["distance"]=59107, + ["mine_stage"]=13 + }, + [9853]={ + ["distance"]=59113, + ["mine_stage"]=55 + }, + [9854]={ + ["distance"]=59119, + ["mine_stage"]=55 + }, + [9855]={ + ["distance"]=59125, + ["mine_stage"]=19 + }, + [9856]={ + ["distance"]=59131, + ["mine_stage"]=21 + }, + [9857]={ + ["distance"]=59137, + ["mine_stage"]=15 + }, + [9858]={ + ["distance"]=59143, + ["mine_stage"]=4 + }, + [9859]={ + ["distance"]=59149, + ["mine_stage"]=39 + }, + [9860]={ + ["distance"]=59155, + ["mine_stage"]=14 + }, + [9861]={ + ["distance"]=59161, + ["mine_stage"]=34 + }, + [9862]={ + ["distance"]=59167, + ["mine_stage"]=7 + }, + [9863]={ + ["distance"]=59173, + ["mine_stage"]=33 + }, + [9864]={ + ["distance"]=59179, + ["mine_stage"]=49 + }, + [9865]={ + ["distance"]=59185, + ["mine_stage"]=15 + }, + [9866]={ + ["distance"]=59191, + ["mine_stage"]=32 + }, + [9867]={ + ["distance"]=59197, + ["mine_stage"]=57 + }, + [9868]={ + ["distance"]=59203, + ["mine_stage"]=59 + }, + [9869]={ + ["distance"]=59209, + ["mine_stage"]=41 + }, + [9870]={ + ["distance"]=59215, + ["mine_stage"]=57 + }, + [9871]={ + ["distance"]=59221, + ["mine_stage"]=26 + }, + [9872]={ + ["distance"]=59227, + ["mine_stage"]=43 + }, + [9873]={ + ["distance"]=59233, + ["mine_stage"]=28 + }, + [9874]={ + ["distance"]=59239, + ["mine_stage"]=35 + }, + [9875]={ + ["distance"]=59245, + ["mine_stage"]=59 + }, + [9876]={ + ["distance"]=59251, + ["mine_stage"]=33 + }, + [9877]={ + ["distance"]=59257, + ["mine_stage"]=10 + }, + [9878]={ + ["distance"]=59263, + ["mine_stage"]=36 + }, + [9879]={ + ["distance"]=59269, + ["mine_stage"]=10 + }, + [9880]={ + ["distance"]=59275, + ["mine_stage"]=55 + }, + [9881]={ + ["distance"]=59281, + ["mine_stage"]=13 + }, + [9882]={ + ["distance"]=59287, + ["mine_stage"]=59 + }, + [9883]={ + ["distance"]=59293, + ["mine_stage"]=53 + }, + [9884]={ + ["distance"]=59299, + ["mine_stage"]=18 + }, + [9885]={ + ["distance"]=59305, + ["mine_stage"]=32 + }, + [9886]={ + ["distance"]=59311, + ["mine_stage"]=15 + }, + [9887]={ + ["distance"]=59317, + ["mine_stage"]=37 + }, + [9888]={ + ["distance"]=59323, + ["mine_stage"]=36 + }, + [9889]={ + ["distance"]=59329, + ["mine_stage"]=2 + }, + [9890]={ + ["distance"]=59335, + ["mine_stage"]=18 + }, + [9891]={ + ["distance"]=59341, + ["mine_stage"]=57 + }, + [9892]={ + ["distance"]=59347, + ["mine_stage"]=44 + }, + [9893]={ + ["distance"]=59353, + ["mine_stage"]=55 + }, + [9894]={ + ["distance"]=59359, + ["mine_stage"]=21 + }, + [9895]={ + ["distance"]=59365, + ["mine_stage"]=37 + }, + [9896]={ + ["distance"]=59371, + ["mine_stage"]=46 + }, + [9897]={ + ["distance"]=59377, + ["mine_stage"]=54 + }, + [9898]={ + ["distance"]=59383, + ["mine_stage"]=58 + }, + [9899]={ + ["distance"]=59389, + ["mine_stage"]=59 + }, + [9900]={ + ["distance"]=59395, + ["mine_stage"]=60 + }, + [9901]={ + ["distance"]=59401, + ["mine_stage"]=66 + }, + [9902]={ + ["distance"]=59407, + ["mine_stage"]=52 + }, + [9903]={ + ["distance"]=59413, + ["mine_stage"]=55 + }, + [9904]={ + ["distance"]=59419, + ["mine_stage"]=15 + }, + [9905]={ + ["distance"]=59425, + ["mine_stage"]=57 + }, + [9906]={ + ["distance"]=59431, + ["mine_stage"]=47 + }, + [9907]={ + ["distance"]=59437, + ["mine_stage"]=12 + }, + [9908]={ + ["distance"]=59443, + ["mine_stage"]=8 + }, + [9909]={ + ["distance"]=59449, + ["mine_stage"]=51 + }, + [9910]={ + ["distance"]=59455, + ["mine_stage"]=56 + }, + [9911]={ + ["distance"]=59461, + ["mine_stage"]=45 + }, + [9912]={ + ["distance"]=59467, + ["mine_stage"]=3 + }, + [9913]={ + ["distance"]=59473, + ["mine_stage"]=50 + }, + [9914]={ + ["distance"]=59479, + ["mine_stage"]=36 + }, + [9915]={ + ["distance"]=59485, + ["mine_stage"]=16 + }, + [9916]={ + ["distance"]=59491, + ["mine_stage"]=4 + }, + [9917]={ + ["distance"]=59497, + ["mine_stage"]=2 + }, + [9918]={ + ["distance"]=59503, + ["mine_stage"]=38 + }, + [9919]={ + ["distance"]=59509, + ["mine_stage"]=2 + }, + [9920]={ + ["distance"]=59515, + ["mine_stage"]=9 + }, + [9921]={ + ["distance"]=59521, + ["mine_stage"]=32 + }, + [9922]={ + ["distance"]=59527, + ["mine_stage"]=36 + }, + [9923]={ + ["distance"]=59533, + ["mine_stage"]=47 + }, + [9924]={ + ["distance"]=59539, + ["mine_stage"]=27 + }, + [9925]={ + ["distance"]=59545, + ["mine_stage"]=47 + }, + [9926]={ + ["distance"]=59551, + ["mine_stage"]=7 + }, + [9927]={ + ["distance"]=59557, + ["mine_stage"]=47 + }, + [9928]={ + ["distance"]=59563, + ["mine_stage"]=46 + }, + [9929]={ + ["distance"]=59569, + ["mine_stage"]=56 + }, + [9930]={ + ["distance"]=59575, + ["mine_stage"]=31 + }, + [9931]={ + ["distance"]=59581, + ["mine_stage"]=6 + }, + [9932]={ + ["distance"]=59587, + ["mine_stage"]=51 + }, + [9933]={ + ["distance"]=59593, + ["mine_stage"]=33 + }, + [9934]={ + ["distance"]=59599, + ["mine_stage"]=54 + }, + [9935]={ + ["distance"]=59605, + ["mine_stage"]=53 + }, + [9936]={ + ["distance"]=59611, + ["mine_stage"]=7 + }, + [9937]={ + ["distance"]=59617, + ["mine_stage"]=48 + }, + [9938]={ + ["distance"]=59623, + ["mine_stage"]=23 + }, + [9939]={ + ["distance"]=59629, + ["mine_stage"]=46 + }, + [9940]={ + ["distance"]=59635, + ["mine_stage"]=46 + }, + [9941]={ + ["distance"]=59641, + ["mine_stage"]=32 + }, + [9942]={ + ["distance"]=59647, + ["mine_stage"]=12 + }, + [9943]={ + ["distance"]=59653, + ["mine_stage"]=53 + }, + [9944]={ + ["distance"]=59659, + ["mine_stage"]=24 + }, + [9945]={ + ["distance"]=59665, + ["mine_stage"]=46 + }, + [9946]={ + ["distance"]=59671, + ["mine_stage"]=10 + }, + [9947]={ + ["distance"]=59677, + ["mine_stage"]=36 + }, + [9948]={ + ["distance"]=59683, + ["mine_stage"]=57 + }, + [9949]={ + ["distance"]=59689, + ["mine_stage"]=23 + }, + [9950]={ + ["distance"]=59695, + ["mine_stage"]=29 + }, + [9951]={ + ["distance"]=59701, + ["mine_stage"]=69 + }, + [9952]={ + ["distance"]=59707, + ["mine_stage"]=52 + }, + [9953]={ + ["distance"]=59713, + ["mine_stage"]=7 + }, + [9954]={ + ["distance"]=59719, + ["mine_stage"]=17 + }, + [9955]={ + ["distance"]=59725, + ["mine_stage"]=6 + }, + [9956]={ + ["distance"]=59731, + ["mine_stage"]=37 + }, + [9957]={ + ["distance"]=59737, + ["mine_stage"]=25 + }, + [9958]={ + ["distance"]=59743, + ["mine_stage"]=51 + }, + [9959]={ + ["distance"]=59749, + ["mine_stage"]=20 + }, + [9960]={ + ["distance"]=59755, + ["mine_stage"]=38 + }, + [9961]={ + ["distance"]=59761, + ["mine_stage"]=35 + }, + [9962]={ + ["distance"]=59767, + ["mine_stage"]=6 + }, + [9963]={ + ["distance"]=59773, + ["mine_stage"]=9 + }, + [9964]={ + ["distance"]=59779, + ["mine_stage"]=45 + }, + [9965]={ + ["distance"]=59785, + ["mine_stage"]=9 + }, + [9966]={ + ["distance"]=59791, + ["mine_stage"]=44 + }, + [9967]={ + ["distance"]=59797, + ["mine_stage"]=49 + }, + [9968]={ + ["distance"]=59803, + ["mine_stage"]=15 + }, + [9969]={ + ["distance"]=59809, + ["mine_stage"]=24 + }, + [9970]={ + ["distance"]=59815, + ["mine_stage"]=44 + }, + [9971]={ + ["distance"]=59821, + ["mine_stage"]=41 + }, + [9972]={ + ["distance"]=59827, + ["mine_stage"]=35 + }, + [9973]={ + ["distance"]=59833, + ["mine_stage"]=8 + }, + [9974]={ + ["distance"]=59839, + ["mine_stage"]=48 + }, + [9975]={ + ["distance"]=59845, + ["mine_stage"]=32 + }, + [9976]={ + ["distance"]=59851, + ["mine_stage"]=27 + }, + [9977]={ + ["distance"]=59857, + ["mine_stage"]=40 + }, + [9978]={ + ["distance"]=59863, + ["mine_stage"]=3 + }, + [9979]={ + ["distance"]=59869, + ["mine_stage"]=53 + }, + [9980]={ + ["distance"]=59875, + ["mine_stage"]=40 + }, + [9981]={ + ["distance"]=59881, + ["mine_stage"]=30 + }, + [9982]={ + ["distance"]=59887, + ["mine_stage"]=24 + }, + [9983]={ + ["distance"]=59893, + ["mine_stage"]=39 + }, + [9984]={ + ["distance"]=59899, + ["mine_stage"]=43 + }, + [9985]={ + ["distance"]=59905, + ["mine_stage"]=20 + }, + [9986]={ + ["distance"]=59911, + ["mine_stage"]=45 + }, + [9987]={ + ["distance"]=59917, + ["mine_stage"]=60 + }, + [9988]={ + ["distance"]=59923, + ["mine_stage"]=21 + }, + [9989]={ + ["distance"]=59929, + ["mine_stage"]=46 + }, + [9990]={ + ["distance"]=59935, + ["mine_stage"]=59 + }, + [9991]={ + ["distance"]=59941, + ["mine_stage"]=32 + }, + [9992]={ + ["distance"]=59947, + ["mine_stage"]=27 + }, + [9993]={ + ["distance"]=59953, + ["mine_stage"]=43 + }, + [9994]={ + ["distance"]=59959, + ["mine_stage"]=24 + }, + [9995]={ + ["distance"]=59965, + ["mine_stage"]=11 + }, + [9996]={ + ["distance"]=59971, + ["mine_stage"]=43 + }, + [9997]={ + ["distance"]=59977, + ["mine_stage"]=10 + }, + [9998]={ + ["distance"]=59983, + ["mine_stage"]=47 + }, + [9999]={ + ["distance"]=59989, + ["mine_stage"]=55 + }, + [10000]={ + ["distance"]=59995, + ["mine_stage"]=4 + }, + [10001]={ + ["distance"]=60001, + ["mine_stage"]=64 + }, + [10002]={ + ["distance"]=60007, + ["mine_stage"]=51 + }, + [10003]={ + ["distance"]=60013, + ["mine_stage"]=11 + }, + [10004]={ + ["distance"]=60019, + ["mine_stage"]=59 + }, + [10005]={ + ["distance"]=60025, + ["mine_stage"]=53 + }, + [10006]={ + ["distance"]=60031, + ["mine_stage"]=35 + }, + [10007]={ + ["distance"]=60037, + ["mine_stage"]=44 + }, + [10008]={ + ["distance"]=60043, + ["mine_stage"]=37 + }, + [10009]={ + ["distance"]=60049, + ["mine_stage"]=54 + }, + [10010]={ + ["distance"]=60055, + ["mine_stage"]=10 + }, + [10011]={ + ["distance"]=60061, + ["mine_stage"]=44 + }, + [10012]={ + ["distance"]=60067, + ["mine_stage"]=16 + }, + [10013]={ + ["distance"]=60073, + ["mine_stage"]=27 + }, + [10014]={ + ["distance"]=60079, + ["mine_stage"]=3 + }, + [10015]={ + ["distance"]=60085, + ["mine_stage"]=12 + }, + [10016]={ + ["distance"]=60091, + ["mine_stage"]=23 + }, + [10017]={ + ["distance"]=60097, + ["mine_stage"]=35 + }, + [10018]={ + ["distance"]=60103, + ["mine_stage"]=26 + }, + [10019]={ + ["distance"]=60109, + ["mine_stage"]=60 + }, + [10020]={ + ["distance"]=60115, + ["mine_stage"]=46 + }, + [10021]={ + ["distance"]=60121, + ["mine_stage"]=14 + }, + [10022]={ + ["distance"]=60127, + ["mine_stage"]=20 + }, + [10023]={ + ["distance"]=60133, + ["mine_stage"]=24 + }, + [10024]={ + ["distance"]=60139, + ["mine_stage"]=33 + }, + [10025]={ + ["distance"]=60145, + ["mine_stage"]=8 + }, + [10026]={ + ["distance"]=60151, + ["mine_stage"]=14 + }, + [10027]={ + ["distance"]=60157, + ["mine_stage"]=37 + }, + [10028]={ + ["distance"]=60163, + ["mine_stage"]=21 + }, + [10029]={ + ["distance"]=60169, + ["mine_stage"]=41 + }, + [10030]={ + ["distance"]=60175, + ["mine_stage"]=54 + }, + [10031]={ + ["distance"]=60181, + ["mine_stage"]=36 + }, + [10032]={ + ["distance"]=60187, + ["mine_stage"]=28 + }, + [10033]={ + ["distance"]=60193, + ["mine_stage"]=40 + }, + [10034]={ + ["distance"]=60199, + ["mine_stage"]=20 + }, + [10035]={ + ["distance"]=60205, + ["mine_stage"]=43 + }, + [10036]={ + ["distance"]=60211, + ["mine_stage"]=24 + }, + [10037]={ + ["distance"]=60217, + ["mine_stage"]=9 + }, + [10038]={ + ["distance"]=60223, + ["mine_stage"]=51 + }, + [10039]={ + ["distance"]=60229, + ["mine_stage"]=49 + }, + [10040]={ + ["distance"]=60235, + ["mine_stage"]=28 + }, + [10041]={ + ["distance"]=60241, + ["mine_stage"]=25 + }, + [10042]={ + ["distance"]=60247, + ["mine_stage"]=11 + }, + [10043]={ + ["distance"]=60253, + ["mine_stage"]=43 + }, + [10044]={ + ["distance"]=60259, + ["mine_stage"]=30 + }, + [10045]={ + ["distance"]=60265, + ["mine_stage"]=11 + }, + [10046]={ + ["distance"]=60271, + ["mine_stage"]=46 + }, + [10047]={ + ["distance"]=60277, + ["mine_stage"]=13 + }, + [10048]={ + ["distance"]=60283, + ["mine_stage"]=37 + }, + [10049]={ + ["distance"]=60289, + ["mine_stage"]=8 + }, + [10050]={ + ["distance"]=60295, + ["mine_stage"]=34 + }, + [10051]={ + ["distance"]=60301, + ["mine_stage"]=67 + }, + [10052]={ + ["distance"]=60307, + ["mine_stage"]=5 + }, + [10053]={ + ["distance"]=60313, + ["mine_stage"]=51 + }, + [10054]={ + ["distance"]=60319, + ["mine_stage"]=19 + }, + [10055]={ + ["distance"]=60325, + ["mine_stage"]=45 + }, + [10056]={ + ["distance"]=60331, + ["mine_stage"]=11 + }, + [10057]={ + ["distance"]=60337, + ["mine_stage"]=20 + }, + [10058]={ + ["distance"]=60343, + ["mine_stage"]=19 + }, + [10059]={ + ["distance"]=60349, + ["mine_stage"]=22 + }, + [10060]={ + ["distance"]=60355, + ["mine_stage"]=33 + }, + [10061]={ + ["distance"]=60361, + ["mine_stage"]=50 + }, + [10062]={ + ["distance"]=60367, + ["mine_stage"]=45 + }, + [10063]={ + ["distance"]=60373, + ["mine_stage"]=39 + }, + [10064]={ + ["distance"]=60379, + ["mine_stage"]=17 + }, + [10065]={ + ["distance"]=60385, + ["mine_stage"]=20 + }, + [10066]={ + ["distance"]=60391, + ["mine_stage"]=5 + }, + [10067]={ + ["distance"]=60397, + ["mine_stage"]=12 + }, + [10068]={ + ["distance"]=60403, + ["mine_stage"]=29 + }, + [10069]={ + ["distance"]=60409, + ["mine_stage"]=23 + }, + [10070]={ + ["distance"]=60415, + ["mine_stage"]=18 + }, + [10071]={ + ["distance"]=60421, + ["mine_stage"]=14 + }, + [10072]={ + ["distance"]=60427, + ["mine_stage"]=31 + }, + [10073]={ + ["distance"]=60433, + ["mine_stage"]=3 + }, + [10074]={ + ["distance"]=60439, + ["mine_stage"]=18 + }, + [10075]={ + ["distance"]=60445, + ["mine_stage"]=18 + }, + [10076]={ + ["distance"]=60451, + ["mine_stage"]=50 + }, + [10077]={ + ["distance"]=60457, + ["mine_stage"]=33 + }, + [10078]={ + ["distance"]=60463, + ["mine_stage"]=14 + }, + [10079]={ + ["distance"]=60469, + ["mine_stage"]=56 + }, + [10080]={ + ["distance"]=60475, + ["mine_stage"]=47 + }, + [10081]={ + ["distance"]=60481, + ["mine_stage"]=52 + }, + [10082]={ + ["distance"]=60487, + ["mine_stage"]=29 + }, + [10083]={ + ["distance"]=60493, + ["mine_stage"]=59 + }, + [10084]={ + ["distance"]=60499, + ["mine_stage"]=36 + }, + [10085]={ + ["distance"]=60505, + ["mine_stage"]=23 + }, + [10086]={ + ["distance"]=60511, + ["mine_stage"]=47 + }, + [10087]={ + ["distance"]=60517, + ["mine_stage"]=52 + }, + [10088]={ + ["distance"]=60523, + ["mine_stage"]=15 + }, + [10089]={ + ["distance"]=60529, + ["mine_stage"]=23 + }, + [10090]={ + ["distance"]=60535, + ["mine_stage"]=2 + }, + [10091]={ + ["distance"]=60541, + ["mine_stage"]=14 + }, + [10092]={ + ["distance"]=60547, + ["mine_stage"]=19 + }, + [10093]={ + ["distance"]=60553, + ["mine_stage"]=14 + }, + [10094]={ + ["distance"]=60559, + ["mine_stage"]=45 + }, + [10095]={ + ["distance"]=60565, + ["mine_stage"]=9 + }, + [10096]={ + ["distance"]=60571, + ["mine_stage"]=26 + }, + [10097]={ + ["distance"]=60577, + ["mine_stage"]=34 + }, + [10098]={ + ["distance"]=60583, + ["mine_stage"]=50 + }, + [10099]={ + ["distance"]=60589, + ["mine_stage"]=3 + }, + [10100]={ + ["distance"]=60595, + ["mine_stage"]=11 + }, + [10101]={ + ["distance"]=60601, + ["mine_stage"]=65 + }, + [10102]={ + ["distance"]=60607, + ["mine_stage"]=16 + }, + [10103]={ + ["distance"]=60613, + ["mine_stage"]=46 + }, + [10104]={ + ["distance"]=60619, + ["mine_stage"]=2 + }, + [10105]={ + ["distance"]=60625, + ["mine_stage"]=20 + }, + [10106]={ + ["distance"]=60631, + ["mine_stage"]=38 + }, + [10107]={ + ["distance"]=60637, + ["mine_stage"]=48 + }, + [10108]={ + ["distance"]=60643, + ["mine_stage"]=22 + }, + [10109]={ + ["distance"]=60649, + ["mine_stage"]=37 + }, + [10110]={ + ["distance"]=60655, + ["mine_stage"]=48 + }, + [10111]={ + ["distance"]=60661, + ["mine_stage"]=44 + }, + [10112]={ + ["distance"]=60667, + ["mine_stage"]=31 + }, + [10113]={ + ["distance"]=60673, + ["mine_stage"]=42 + }, + [10114]={ + ["distance"]=60679, + ["mine_stage"]=38 + }, + [10115]={ + ["distance"]=60685, + ["mine_stage"]=42 + }, + [10116]={ + ["distance"]=60691, + ["mine_stage"]=29 + }, + [10117]={ + ["distance"]=60697, + ["mine_stage"]=47 + }, + [10118]={ + ["distance"]=60703, + ["mine_stage"]=33 + }, + [10119]={ + ["distance"]=60709, + ["mine_stage"]=1 + }, + [10120]={ + ["distance"]=60715, + ["mine_stage"]=59 + }, + [10121]={ + ["distance"]=60721, + ["mine_stage"]=3 + }, + [10122]={ + ["distance"]=60727, + ["mine_stage"]=48 + }, + [10123]={ + ["distance"]=60733, + ["mine_stage"]=56 + }, + [10124]={ + ["distance"]=60739, + ["mine_stage"]=26 + }, + [10125]={ + ["distance"]=60745, + ["mine_stage"]=31 + }, + [10126]={ + ["distance"]=60751, + ["mine_stage"]=59 + }, + [10127]={ + ["distance"]=60757, + ["mine_stage"]=31 + }, + [10128]={ + ["distance"]=60763, + ["mine_stage"]=1 + }, + [10129]={ + ["distance"]=60769, + ["mine_stage"]=44 + }, + [10130]={ + ["distance"]=60775, + ["mine_stage"]=47 + }, + [10131]={ + ["distance"]=60781, + ["mine_stage"]=47 + }, + [10132]={ + ["distance"]=60787, + ["mine_stage"]=4 + }, + [10133]={ + ["distance"]=60793, + ["mine_stage"]=27 + }, + [10134]={ + ["distance"]=60799, + ["mine_stage"]=52 + }, + [10135]={ + ["distance"]=60805, + ["mine_stage"]=15 + }, + [10136]={ + ["distance"]=60811, + ["mine_stage"]=45 + }, + [10137]={ + ["distance"]=60817, + ["mine_stage"]=15 + }, + [10138]={ + ["distance"]=60823, + ["mine_stage"]=8 + }, + [10139]={ + ["distance"]=60829, + ["mine_stage"]=1 + }, + [10140]={ + ["distance"]=60835, + ["mine_stage"]=27 + }, + [10141]={ + ["distance"]=60841, + ["mine_stage"]=30 + }, + [10142]={ + ["distance"]=60847, + ["mine_stage"]=40 + }, + [10143]={ + ["distance"]=60853, + ["mine_stage"]=4 + }, + [10144]={ + ["distance"]=60859, + ["mine_stage"]=2 + }, + [10145]={ + ["distance"]=60865, + ["mine_stage"]=35 + }, + [10146]={ + ["distance"]=60871, + ["mine_stage"]=31 + }, + [10147]={ + ["distance"]=60877, + ["mine_stage"]=31 + }, + [10148]={ + ["distance"]=60883, + ["mine_stage"]=19 + }, + [10149]={ + ["distance"]=60889, + ["mine_stage"]=33 + }, + [10150]={ + ["distance"]=60895, + ["mine_stage"]=29 + }, + [10151]={ + ["distance"]=60901, + ["mine_stage"]=68 + }, + [10152]={ + ["distance"]=60907, + ["mine_stage"]=7 + }, + [10153]={ + ["distance"]=60913, + ["mine_stage"]=29 + }, + [10154]={ + ["distance"]=60919, + ["mine_stage"]=18 + }, + [10155]={ + ["distance"]=60925, + ["mine_stage"]=29 + }, + [10156]={ + ["distance"]=60931, + ["mine_stage"]=4 + }, + [10157]={ + ["distance"]=60937, + ["mine_stage"]=16 + }, + [10158]={ + ["distance"]=60943, + ["mine_stage"]=48 + }, + [10159]={ + ["distance"]=60949, + ["mine_stage"]=52 + }, + [10160]={ + ["distance"]=60955, + ["mine_stage"]=20 + }, + [10161]={ + ["distance"]=60961, + ["mine_stage"]=36 + }, + [10162]={ + ["distance"]=60967, + ["mine_stage"]=60 + }, + [10163]={ + ["distance"]=60973, + ["mine_stage"]=18 + }, + [10164]={ + ["distance"]=60979, + ["mine_stage"]=13 + }, + [10165]={ + ["distance"]=60985, + ["mine_stage"]=59 + }, + [10166]={ + ["distance"]=60991, + ["mine_stage"]=60 + }, + [10167]={ + ["distance"]=60997, + ["mine_stage"]=19 + }, + [10168]={ + ["distance"]=61003, + ["mine_stage"]=17 + }, + [10169]={ + ["distance"]=61009, + ["mine_stage"]=32 + }, + [10170]={ + ["distance"]=61015, + ["mine_stage"]=4 + }, + [10171]={ + ["distance"]=61021, + ["mine_stage"]=47 + }, + [10172]={ + ["distance"]=61027, + ["mine_stage"]=5 + }, + [10173]={ + ["distance"]=61033, + ["mine_stage"]=54 + }, + [10174]={ + ["distance"]=61039, + ["mine_stage"]=15 + }, + [10175]={ + ["distance"]=61045, + ["mine_stage"]=60 + }, + [10176]={ + ["distance"]=61051, + ["mine_stage"]=42 + }, + [10177]={ + ["distance"]=61057, + ["mine_stage"]=45 + }, + [10178]={ + ["distance"]=61063, + ["mine_stage"]=54 + }, + [10179]={ + ["distance"]=61069, + ["mine_stage"]=34 + }, + [10180]={ + ["distance"]=61075, + ["mine_stage"]=26 + }, + [10181]={ + ["distance"]=61081, + ["mine_stage"]=48 + }, + [10182]={ + ["distance"]=61087, + ["mine_stage"]=25 + }, + [10183]={ + ["distance"]=61093, + ["mine_stage"]=14 + }, + [10184]={ + ["distance"]=61099, + ["mine_stage"]=4 + }, + [10185]={ + ["distance"]=61105, + ["mine_stage"]=48 + }, + [10186]={ + ["distance"]=61111, + ["mine_stage"]=25 + }, + [10187]={ + ["distance"]=61117, + ["mine_stage"]=49 + }, + [10188]={ + ["distance"]=61123, + ["mine_stage"]=23 + }, + [10189]={ + ["distance"]=61129, + ["mine_stage"]=50 + }, + [10190]={ + ["distance"]=61135, + ["mine_stage"]=12 + }, + [10191]={ + ["distance"]=61141, + ["mine_stage"]=45 + }, + [10192]={ + ["distance"]=61147, + ["mine_stage"]=59 + }, + [10193]={ + ["distance"]=61153, + ["mine_stage"]=19 + }, + [10194]={ + ["distance"]=61159, + ["mine_stage"]=7 + }, + [10195]={ + ["distance"]=61165, + ["mine_stage"]=7 + }, + [10196]={ + ["distance"]=61171, + ["mine_stage"]=16 + }, + [10197]={ + ["distance"]=61177, + ["mine_stage"]=58 + }, + [10198]={ + ["distance"]=61183, + ["mine_stage"]=11 + }, + [10199]={ + ["distance"]=61189, + ["mine_stage"]=18 + }, + [10200]={ + ["distance"]=61195, + ["mine_stage"]=49 + }, + [10201]={ + ["distance"]=61201, + ["mine_stage"]=66 + }, + [10202]={ + ["distance"]=61207, + ["mine_stage"]=54 + }, + [10203]={ + ["distance"]=61213, + ["mine_stage"]=55 + }, + [10204]={ + ["distance"]=61219, + ["mine_stage"]=54 + }, + [10205]={ + ["distance"]=61225, + ["mine_stage"]=33 + }, + [10206]={ + ["distance"]=61231, + ["mine_stage"]=49 + }, + [10207]={ + ["distance"]=61237, + ["mine_stage"]=60 + }, + [10208]={ + ["distance"]=61243, + ["mine_stage"]=14 + }, + [10209]={ + ["distance"]=61249, + ["mine_stage"]=59 + }, + [10210]={ + ["distance"]=61255, + ["mine_stage"]=37 + }, + [10211]={ + ["distance"]=61261, + ["mine_stage"]=50 + }, + [10212]={ + ["distance"]=61267, + ["mine_stage"]=16 + }, + [10213]={ + ["distance"]=61273, + ["mine_stage"]=55 + }, + [10214]={ + ["distance"]=61279, + ["mine_stage"]=25 + }, + [10215]={ + ["distance"]=61285, + ["mine_stage"]=33 + }, + [10216]={ + ["distance"]=61291, + ["mine_stage"]=49 + }, + [10217]={ + ["distance"]=61297, + ["mine_stage"]=6 + }, + [10218]={ + ["distance"]=61303, + ["mine_stage"]=9 + }, + [10219]={ + ["distance"]=61309, + ["mine_stage"]=32 + }, + [10220]={ + ["distance"]=61315, + ["mine_stage"]=6 + }, + [10221]={ + ["distance"]=61321, + ["mine_stage"]=44 + }, + [10222]={ + ["distance"]=61327, + ["mine_stage"]=34 + }, + [10223]={ + ["distance"]=61333, + ["mine_stage"]=1 + }, + [10224]={ + ["distance"]=61339, + ["mine_stage"]=44 + }, + [10225]={ + ["distance"]=61345, + ["mine_stage"]=35 + }, + [10226]={ + ["distance"]=61351, + ["mine_stage"]=53 + }, + [10227]={ + ["distance"]=61357, + ["mine_stage"]=6 + }, + [10228]={ + ["distance"]=61363, + ["mine_stage"]=10 + }, + [10229]={ + ["distance"]=61369, + ["mine_stage"]=39 + }, + [10230]={ + ["distance"]=61375, + ["mine_stage"]=37 + }, + [10231]={ + ["distance"]=61381, + ["mine_stage"]=56 + }, + [10232]={ + ["distance"]=61387, + ["mine_stage"]=42 + }, + [10233]={ + ["distance"]=61393, + ["mine_stage"]=2 + }, + [10234]={ + ["distance"]=61399, + ["mine_stage"]=57 + }, + [10235]={ + ["distance"]=61405, + ["mine_stage"]=46 + }, + [10236]={ + ["distance"]=61411, + ["mine_stage"]=41 + }, + [10237]={ + ["distance"]=61417, + ["mine_stage"]=56 + }, + [10238]={ + ["distance"]=61423, + ["mine_stage"]=10 + }, + [10239]={ + ["distance"]=61429, + ["mine_stage"]=56 + }, + [10240]={ + ["distance"]=61435, + ["mine_stage"]=52 + }, + [10241]={ + ["distance"]=61441, + ["mine_stage"]=15 + }, + [10242]={ + ["distance"]=61447, + ["mine_stage"]=37 + }, + [10243]={ + ["distance"]=61453, + ["mine_stage"]=47 + }, + [10244]={ + ["distance"]=61459, + ["mine_stage"]=55 + }, + [10245]={ + ["distance"]=61465, + ["mine_stage"]=14 + }, + [10246]={ + ["distance"]=61471, + ["mine_stage"]=49 + }, + [10247]={ + ["distance"]=61477, + ["mine_stage"]=36 + }, + [10248]={ + ["distance"]=61483, + ["mine_stage"]=58 + }, + [10249]={ + ["distance"]=61489, + ["mine_stage"]=35 + }, + [10250]={ + ["distance"]=61495, + ["mine_stage"]=10 + }, + [10251]={ + ["distance"]=61501, + ["mine_stage"]=69 + }, + [10252]={ + ["distance"]=61507, + ["mine_stage"]=3 + }, + [10253]={ + ["distance"]=61513, + ["mine_stage"]=40 + }, + [10254]={ + ["distance"]=61519, + ["mine_stage"]=48 + }, + [10255]={ + ["distance"]=61525, + ["mine_stage"]=6 + }, + [10256]={ + ["distance"]=61531, + ["mine_stage"]=55 + }, + [10257]={ + ["distance"]=61537, + ["mine_stage"]=25 + }, + [10258]={ + ["distance"]=61543, + ["mine_stage"]=32 + }, + [10259]={ + ["distance"]=61549, + ["mine_stage"]=49 + }, + [10260]={ + ["distance"]=61555, + ["mine_stage"]=4 + }, + [10261]={ + ["distance"]=61561, + ["mine_stage"]=9 + }, + [10262]={ + ["distance"]=61567, + ["mine_stage"]=40 + }, + [10263]={ + ["distance"]=61573, + ["mine_stage"]=54 + }, + [10264]={ + ["distance"]=61579, + ["mine_stage"]=23 + }, + [10265]={ + ["distance"]=61585, + ["mine_stage"]=59 + }, + [10266]={ + ["distance"]=61591, + ["mine_stage"]=8 + }, + [10267]={ + ["distance"]=61597, + ["mine_stage"]=33 + }, + [10268]={ + ["distance"]=61603, + ["mine_stage"]=5 + }, + [10269]={ + ["distance"]=61609, + ["mine_stage"]=41 + }, + [10270]={ + ["distance"]=61615, + ["mine_stage"]=57 + }, + [10271]={ + ["distance"]=61621, + ["mine_stage"]=41 + }, + [10272]={ + ["distance"]=61627, + ["mine_stage"]=28 + }, + [10273]={ + ["distance"]=61633, + ["mine_stage"]=24 + }, + [10274]={ + ["distance"]=61639, + ["mine_stage"]=37 + }, + [10275]={ + ["distance"]=61645, + ["mine_stage"]=41 + }, + [10276]={ + ["distance"]=61651, + ["mine_stage"]=56 + }, + [10277]={ + ["distance"]=61657, + ["mine_stage"]=42 + }, + [10278]={ + ["distance"]=61663, + ["mine_stage"]=29 + }, + [10279]={ + ["distance"]=61669, + ["mine_stage"]=59 + }, + [10280]={ + ["distance"]=61675, + ["mine_stage"]=50 + }, + [10281]={ + ["distance"]=61681, + ["mine_stage"]=42 + }, + [10282]={ + ["distance"]=61687, + ["mine_stage"]=2 + }, + [10283]={ + ["distance"]=61693, + ["mine_stage"]=21 + }, + [10284]={ + ["distance"]=61699, + ["mine_stage"]=22 + }, + [10285]={ + ["distance"]=61705, + ["mine_stage"]=4 + }, + [10286]={ + ["distance"]=61711, + ["mine_stage"]=22 + }, + [10287]={ + ["distance"]=61717, + ["mine_stage"]=9 + }, + [10288]={ + ["distance"]=61723, + ["mine_stage"]=36 + }, + [10289]={ + ["distance"]=61729, + ["mine_stage"]=29 + }, + [10290]={ + ["distance"]=61735, + ["mine_stage"]=14 + }, + [10291]={ + ["distance"]=61741, + ["mine_stage"]=51 + }, + [10292]={ + ["distance"]=61747, + ["mine_stage"]=17 + }, + [10293]={ + ["distance"]=61753, + ["mine_stage"]=49 + }, + [10294]={ + ["distance"]=61759, + ["mine_stage"]=25 + }, + [10295]={ + ["distance"]=61765, + ["mine_stage"]=43 + }, + [10296]={ + ["distance"]=61771, + ["mine_stage"]=52 + }, + [10297]={ + ["distance"]=61777, + ["mine_stage"]=28 + }, + [10298]={ + ["distance"]=61783, + ["mine_stage"]=55 + }, + [10299]={ + ["distance"]=61789, + ["mine_stage"]=36 + }, + [10300]={ + ["distance"]=61795, + ["mine_stage"]=2 + }, + [10301]={ + ["distance"]=61801, + ["mine_stage"]=64 + }, + [10302]={ + ["distance"]=61807, + ["mine_stage"]=46 + }, + [10303]={ + ["distance"]=61813, + ["mine_stage"]=56 + }, + [10304]={ + ["distance"]=61819, + ["mine_stage"]=44 + }, + [10305]={ + ["distance"]=61825, + ["mine_stage"]=22 + }, + [10306]={ + ["distance"]=61831, + ["mine_stage"]=51 + }, + [10307]={ + ["distance"]=61837, + ["mine_stage"]=60 + }, + [10308]={ + ["distance"]=61843, + ["mine_stage"]=41 + }, + [10309]={ + ["distance"]=61849, + ["mine_stage"]=11 + }, + [10310]={ + ["distance"]=61855, + ["mine_stage"]=41 + }, + [10311]={ + ["distance"]=61861, + ["mine_stage"]=37 + }, + [10312]={ + ["distance"]=61867, + ["mine_stage"]=47 + }, + [10313]={ + ["distance"]=61873, + ["mine_stage"]=23 + }, + [10314]={ + ["distance"]=61879, + ["mine_stage"]=21 + }, + [10315]={ + ["distance"]=61885, + ["mine_stage"]=35 + }, + [10316]={ + ["distance"]=61891, + ["mine_stage"]=32 + }, + [10317]={ + ["distance"]=61897, + ["mine_stage"]=24 + }, + [10318]={ + ["distance"]=61903, + ["mine_stage"]=13 + }, + [10319]={ + ["distance"]=61909, + ["mine_stage"]=53 + }, + [10320]={ + ["distance"]=61915, + ["mine_stage"]=24 + }, + [10321]={ + ["distance"]=61921, + ["mine_stage"]=46 + }, + [10322]={ + ["distance"]=61927, + ["mine_stage"]=46 + }, + [10323]={ + ["distance"]=61933, + ["mine_stage"]=9 + }, + [10324]={ + ["distance"]=61939, + ["mine_stage"]=36 + }, + [10325]={ + ["distance"]=61945, + ["mine_stage"]=41 + }, + [10326]={ + ["distance"]=61951, + ["mine_stage"]=3 + }, + [10327]={ + ["distance"]=61957, + ["mine_stage"]=9 + }, + [10328]={ + ["distance"]=61963, + ["mine_stage"]=23 + }, + [10329]={ + ["distance"]=61969, + ["mine_stage"]=11 + }, + [10330]={ + ["distance"]=61975, + ["mine_stage"]=53 + }, + [10331]={ + ["distance"]=61981, + ["mine_stage"]=22 + }, + [10332]={ + ["distance"]=61987, + ["mine_stage"]=48 + }, + [10333]={ + ["distance"]=61993, + ["mine_stage"]=51 + }, + [10334]={ + ["distance"]=61999, + ["mine_stage"]=8 + }, + [10335]={ + ["distance"]=62005, + ["mine_stage"]=15 + }, + [10336]={ + ["distance"]=62011, + ["mine_stage"]=33 + }, + [10337]={ + ["distance"]=62017, + ["mine_stage"]=24 + }, + [10338]={ + ["distance"]=62023, + ["mine_stage"]=45 + }, + [10339]={ + ["distance"]=62029, + ["mine_stage"]=31 + }, + [10340]={ + ["distance"]=62035, + ["mine_stage"]=43 + }, + [10341]={ + ["distance"]=62041, + ["mine_stage"]=23 + }, + [10342]={ + ["distance"]=62047, + ["mine_stage"]=52 + }, + [10343]={ + ["distance"]=62053, + ["mine_stage"]=29 + }, + [10344]={ + ["distance"]=62059, + ["mine_stage"]=45 + }, + [10345]={ + ["distance"]=62065, + ["mine_stage"]=20 + }, + [10346]={ + ["distance"]=62071, + ["mine_stage"]=8 + }, + [10347]={ + ["distance"]=62077, + ["mine_stage"]=34 + }, + [10348]={ + ["distance"]=62083, + ["mine_stage"]=9 + }, + [10349]={ + ["distance"]=62089, + ["mine_stage"]=17 + }, + [10350]={ + ["distance"]=62095, + ["mine_stage"]=26 + }, + [10351]={ + ["distance"]=62101, + ["mine_stage"]=67 + }, + [10352]={ + ["distance"]=62107, + ["mine_stage"]=21 + }, + [10353]={ + ["distance"]=62113, + ["mine_stage"]=51 + }, + [10354]={ + ["distance"]=62119, + ["mine_stage"]=16 + }, + [10355]={ + ["distance"]=62125, + ["mine_stage"]=7 + }, + [10356]={ + ["distance"]=62131, + ["mine_stage"]=24 + }, + [10357]={ + ["distance"]=62137, + ["mine_stage"]=54 + }, + [10358]={ + ["distance"]=62143, + ["mine_stage"]=10 + }, + [10359]={ + ["distance"]=62149, + ["mine_stage"]=9 + }, + [10360]={ + ["distance"]=62155, + ["mine_stage"]=29 + }, + [10361]={ + ["distance"]=62161, + ["mine_stage"]=4 + }, + [10362]={ + ["distance"]=62167, + ["mine_stage"]=31 + }, + [10363]={ + ["distance"]=62173, + ["mine_stage"]=54 + }, + [10364]={ + ["distance"]=62179, + ["mine_stage"]=36 + }, + [10365]={ + ["distance"]=62185, + ["mine_stage"]=22 + }, + [10366]={ + ["distance"]=62191, + ["mine_stage"]=43 + }, + [10367]={ + ["distance"]=62197, + ["mine_stage"]=28 + }, + [10368]={ + ["distance"]=62203, + ["mine_stage"]=12 + }, + [10369]={ + ["distance"]=62209, + ["mine_stage"]=47 + }, + [10370]={ + ["distance"]=62215, + ["mine_stage"]=52 + }, + [10371]={ + ["distance"]=62221, + ["mine_stage"]=54 + }, + [10372]={ + ["distance"]=62227, + ["mine_stage"]=48 + }, + [10373]={ + ["distance"]=62233, + ["mine_stage"]=54 + }, + [10374]={ + ["distance"]=62239, + ["mine_stage"]=57 + }, + [10375]={ + ["distance"]=62245, + ["mine_stage"]=26 + }, + [10376]={ + ["distance"]=62251, + ["mine_stage"]=47 + }, + [10377]={ + ["distance"]=62257, + ["mine_stage"]=28 + }, + [10378]={ + ["distance"]=62263, + ["mine_stage"]=45 + }, + [10379]={ + ["distance"]=62269, + ["mine_stage"]=16 + }, + [10380]={ + ["distance"]=62275, + ["mine_stage"]=47 + }, + [10381]={ + ["distance"]=62281, + ["mine_stage"]=23 + }, + [10382]={ + ["distance"]=62287, + ["mine_stage"]=11 + }, + [10383]={ + ["distance"]=62293, + ["mine_stage"]=38 + }, + [10384]={ + ["distance"]=62299, + ["mine_stage"]=15 + }, + [10385]={ + ["distance"]=62305, + ["mine_stage"]=46 + }, + [10386]={ + ["distance"]=62311, + ["mine_stage"]=19 + }, + [10387]={ + ["distance"]=62317, + ["mine_stage"]=39 + }, + [10388]={ + ["distance"]=62323, + ["mine_stage"]=59 + }, + [10389]={ + ["distance"]=62329, + ["mine_stage"]=22 + }, + [10390]={ + ["distance"]=62335, + ["mine_stage"]=31 + }, + [10391]={ + ["distance"]=62341, + ["mine_stage"]=46 + }, + [10392]={ + ["distance"]=62347, + ["mine_stage"]=8 + }, + [10393]={ + ["distance"]=62353, + ["mine_stage"]=3 + }, + [10394]={ + ["distance"]=62359, + ["mine_stage"]=17 + }, + [10395]={ + ["distance"]=62365, + ["mine_stage"]=32 + }, + [10396]={ + ["distance"]=62371, + ["mine_stage"]=55 + }, + [10397]={ + ["distance"]=62377, + ["mine_stage"]=45 + }, + [10398]={ + ["distance"]=62383, + ["mine_stage"]=9 + }, + [10399]={ + ["distance"]=62389, + ["mine_stage"]=36 + }, + [10400]={ + ["distance"]=62395, + ["mine_stage"]=44 + }, + [10401]={ + ["distance"]=62401, + ["mine_stage"]=65 + }, + [10402]={ + ["distance"]=62407, + ["mine_stage"]=49 + }, + [10403]={ + ["distance"]=62413, + ["mine_stage"]=48 + }, + [10404]={ + ["distance"]=62419, + ["mine_stage"]=23 + }, + [10405]={ + ["distance"]=62425, + ["mine_stage"]=50 + }, + [10406]={ + ["distance"]=62431, + ["mine_stage"]=11 + }, + [10407]={ + ["distance"]=62437, + ["mine_stage"]=4 + }, + [10408]={ + ["distance"]=62443, + ["mine_stage"]=8 + }, + [10409]={ + ["distance"]=62449, + ["mine_stage"]=53 + }, + [10410]={ + ["distance"]=62455, + ["mine_stage"]=15 + }, + [10411]={ + ["distance"]=62461, + ["mine_stage"]=7 + }, + [10412]={ + ["distance"]=62467, + ["mine_stage"]=36 + }, + [10413]={ + ["distance"]=62473, + ["mine_stage"]=57 + }, + [10414]={ + ["distance"]=62479, + ["mine_stage"]=14 + }, + [10415]={ + ["distance"]=62485, + ["mine_stage"]=12 + }, + [10416]={ + ["distance"]=62491, + ["mine_stage"]=17 + }, + [10417]={ + ["distance"]=62497, + ["mine_stage"]=44 + }, + [10418]={ + ["distance"]=62503, + ["mine_stage"]=51 + }, + [10419]={ + ["distance"]=62509, + ["mine_stage"]=16 + }, + [10420]={ + ["distance"]=62515, + ["mine_stage"]=37 + }, + [10421]={ + ["distance"]=62521, + ["mine_stage"]=28 + }, + [10422]={ + ["distance"]=62527, + ["mine_stage"]=39 + }, + [10423]={ + ["distance"]=62533, + ["mine_stage"]=55 + }, + [10424]={ + ["distance"]=62539, + ["mine_stage"]=51 + }, + [10425]={ + ["distance"]=62545, + ["mine_stage"]=60 + }, + [10426]={ + ["distance"]=62551, + ["mine_stage"]=29 + }, + [10427]={ + ["distance"]=62557, + ["mine_stage"]=4 + }, + [10428]={ + ["distance"]=62563, + ["mine_stage"]=53 + }, + [10429]={ + ["distance"]=62569, + ["mine_stage"]=44 + }, + [10430]={ + ["distance"]=62575, + ["mine_stage"]=13 + }, + [10431]={ + ["distance"]=62581, + ["mine_stage"]=12 + }, + [10432]={ + ["distance"]=62587, + ["mine_stage"]=2 + }, + [10433]={ + ["distance"]=62593, + ["mine_stage"]=11 + }, + [10434]={ + ["distance"]=62599, + ["mine_stage"]=10 + }, + [10435]={ + ["distance"]=62605, + ["mine_stage"]=46 + }, + [10436]={ + ["distance"]=62611, + ["mine_stage"]=47 + }, + [10437]={ + ["distance"]=62617, + ["mine_stage"]=55 + }, + [10438]={ + ["distance"]=62623, + ["mine_stage"]=24 + }, + [10439]={ + ["distance"]=62629, + ["mine_stage"]=6 + }, + [10440]={ + ["distance"]=62635, + ["mine_stage"]=6 + }, + [10441]={ + ["distance"]=62641, + ["mine_stage"]=43 + }, + [10442]={ + ["distance"]=62647, + ["mine_stage"]=51 + }, + [10443]={ + ["distance"]=62653, + ["mine_stage"]=15 + }, + [10444]={ + ["distance"]=62659, + ["mine_stage"]=15 + }, + [10445]={ + ["distance"]=62665, + ["mine_stage"]=4 + }, + [10446]={ + ["distance"]=62671, + ["mine_stage"]=42 + }, + [10447]={ + ["distance"]=62677, + ["mine_stage"]=53 + }, + [10448]={ + ["distance"]=62683, + ["mine_stage"]=41 + }, + [10449]={ + ["distance"]=62689, + ["mine_stage"]=45 + }, + [10450]={ + ["distance"]=62695, + ["mine_stage"]=46 + }, + [10451]={ + ["distance"]=62701, + ["mine_stage"]=68 + }, + [10452]={ + ["distance"]=62707, + ["mine_stage"]=45 + }, + [10453]={ + ["distance"]=62713, + ["mine_stage"]=56 + }, + [10454]={ + ["distance"]=62719, + ["mine_stage"]=26 + }, + [10455]={ + ["distance"]=62725, + ["mine_stage"]=21 + }, + [10456]={ + ["distance"]=62731, + ["mine_stage"]=28 + }, + [10457]={ + ["distance"]=62737, + ["mine_stage"]=17 + }, + [10458]={ + ["distance"]=62743, + ["mine_stage"]=31 + }, + [10459]={ + ["distance"]=62749, + ["mine_stage"]=43 + }, + [10460]={ + ["distance"]=62755, + ["mine_stage"]=11 + }, + [10461]={ + ["distance"]=62761, + ["mine_stage"]=32 + }, + [10462]={ + ["distance"]=62767, + ["mine_stage"]=30 + }, + [10463]={ + ["distance"]=62773, + ["mine_stage"]=13 + }, + [10464]={ + ["distance"]=62779, + ["mine_stage"]=13 + }, + [10465]={ + ["distance"]=62785, + ["mine_stage"]=46 + }, + [10466]={ + ["distance"]=62791, + ["mine_stage"]=21 + }, + [10467]={ + ["distance"]=62797, + ["mine_stage"]=57 + }, + [10468]={ + ["distance"]=62803, + ["mine_stage"]=40 + }, + [10469]={ + ["distance"]=62809, + ["mine_stage"]=30 + }, + [10470]={ + ["distance"]=62815, + ["mine_stage"]=36 + }, + [10471]={ + ["distance"]=62821, + ["mine_stage"]=8 + }, + [10472]={ + ["distance"]=62827, + ["mine_stage"]=15 + }, + [10473]={ + ["distance"]=62833, + ["mine_stage"]=18 + }, + [10474]={ + ["distance"]=62839, + ["mine_stage"]=42 + }, + [10475]={ + ["distance"]=62845, + ["mine_stage"]=22 + }, + [10476]={ + ["distance"]=62851, + ["mine_stage"]=12 + }, + [10477]={ + ["distance"]=62857, + ["mine_stage"]=13 + }, + [10478]={ + ["distance"]=62863, + ["mine_stage"]=57 + }, + [10479]={ + ["distance"]=62869, + ["mine_stage"]=54 + }, + [10480]={ + ["distance"]=62875, + ["mine_stage"]=14 + }, + [10481]={ + ["distance"]=62881, + ["mine_stage"]=15 + }, + [10482]={ + ["distance"]=62887, + ["mine_stage"]=41 + }, + [10483]={ + ["distance"]=62893, + ["mine_stage"]=32 + }, + [10484]={ + ["distance"]=62899, + ["mine_stage"]=59 + }, + [10485]={ + ["distance"]=62905, + ["mine_stage"]=53 + }, + [10486]={ + ["distance"]=62911, + ["mine_stage"]=53 + }, + [10487]={ + ["distance"]=62917, + ["mine_stage"]=38 + }, + [10488]={ + ["distance"]=62923, + ["mine_stage"]=56 + }, + [10489]={ + ["distance"]=62929, + ["mine_stage"]=3 + }, + [10490]={ + ["distance"]=62935, + ["mine_stage"]=1 + }, + [10491]={ + ["distance"]=62941, + ["mine_stage"]=24 + }, + [10492]={ + ["distance"]=62947, + ["mine_stage"]=50 + }, + [10493]={ + ["distance"]=62953, + ["mine_stage"]=2 + }, + [10494]={ + ["distance"]=62959, + ["mine_stage"]=32 + }, + [10495]={ + ["distance"]=62965, + ["mine_stage"]=57 + }, + [10496]={ + ["distance"]=62971, + ["mine_stage"]=39 + }, + [10497]={ + ["distance"]=62977, + ["mine_stage"]=22 + }, + [10498]={ + ["distance"]=62983, + ["mine_stage"]=60 + }, + [10499]={ + ["distance"]=62989, + ["mine_stage"]=18 + }, + [10500]={ + ["distance"]=62995, + ["mine_stage"]=36 + }, + [10501]={ + ["distance"]=63001, + ["mine_stage"]=66 + }, + [10502]={ + ["distance"]=63007, + ["mine_stage"]=11 + }, + [10503]={ + ["distance"]=63013, + ["mine_stage"]=58 + }, + [10504]={ + ["distance"]=63019, + ["mine_stage"]=44 + }, + [10505]={ + ["distance"]=63025, + ["mine_stage"]=58 + }, + [10506]={ + ["distance"]=63031, + ["mine_stage"]=31 + }, + [10507]={ + ["distance"]=63037, + ["mine_stage"]=8 + }, + [10508]={ + ["distance"]=63043, + ["mine_stage"]=34 + }, + [10509]={ + ["distance"]=63049, + ["mine_stage"]=19 + }, + [10510]={ + ["distance"]=63055, + ["mine_stage"]=49 + }, + [10511]={ + ["distance"]=63061, + ["mine_stage"]=20 + }, + [10512]={ + ["distance"]=63067, + ["mine_stage"]=15 + }, + [10513]={ + ["distance"]=63073, + ["mine_stage"]=50 + }, + [10514]={ + ["distance"]=63079, + ["mine_stage"]=54 + }, + [10515]={ + ["distance"]=63085, + ["mine_stage"]=33 + }, + [10516]={ + ["distance"]=63091, + ["mine_stage"]=4 + }, + [10517]={ + ["distance"]=63097, + ["mine_stage"]=1 + }, + [10518]={ + ["distance"]=63103, + ["mine_stage"]=27 + }, + [10519]={ + ["distance"]=63109, + ["mine_stage"]=19 + }, + [10520]={ + ["distance"]=63115, + ["mine_stage"]=3 + }, + [10521]={ + ["distance"]=63121, + ["mine_stage"]=22 + }, + [10522]={ + ["distance"]=63127, + ["mine_stage"]=47 + }, + [10523]={ + ["distance"]=63133, + ["mine_stage"]=7 + }, + [10524]={ + ["distance"]=63139, + ["mine_stage"]=33 + }, + [10525]={ + ["distance"]=63145, + ["mine_stage"]=53 + }, + [10526]={ + ["distance"]=63151, + ["mine_stage"]=57 + }, + [10527]={ + ["distance"]=63157, + ["mine_stage"]=12 + }, + [10528]={ + ["distance"]=63163, + ["mine_stage"]=22 + }, + [10529]={ + ["distance"]=63169, + ["mine_stage"]=2 + }, + [10530]={ + ["distance"]=63175, + ["mine_stage"]=57 + }, + [10531]={ + ["distance"]=63181, + ["mine_stage"]=55 + }, + [10532]={ + ["distance"]=63187, + ["mine_stage"]=5 + }, + [10533]={ + ["distance"]=63193, + ["mine_stage"]=58 + }, + [10534]={ + ["distance"]=63199, + ["mine_stage"]=21 + }, + [10535]={ + ["distance"]=63205, + ["mine_stage"]=8 + }, + [10536]={ + ["distance"]=63211, + ["mine_stage"]=52 + }, + [10537]={ + ["distance"]=63217, + ["mine_stage"]=30 + }, + [10538]={ + ["distance"]=63223, + ["mine_stage"]=58 + }, + [10539]={ + ["distance"]=63229, + ["mine_stage"]=43 + }, + [10540]={ + ["distance"]=63235, + ["mine_stage"]=19 + }, + [10541]={ + ["distance"]=63241, + ["mine_stage"]=55 + }, + [10542]={ + ["distance"]=63247, + ["mine_stage"]=5 + }, + [10543]={ + ["distance"]=63253, + ["mine_stage"]=1 + }, + [10544]={ + ["distance"]=63259, + ["mine_stage"]=48 + }, + [10545]={ + ["distance"]=63265, + ["mine_stage"]=47 + }, + [10546]={ + ["distance"]=63271, + ["mine_stage"]=41 + }, + [10547]={ + ["distance"]=63277, + ["mine_stage"]=46 + }, + [10548]={ + ["distance"]=63283, + ["mine_stage"]=25 + }, + [10549]={ + ["distance"]=63289, + ["mine_stage"]=42 + }, + [10550]={ + ["distance"]=63295, + ["mine_stage"]=48 + }, + [10551]={ + ["distance"]=63301, + ["mine_stage"]=69 + }, + [10552]={ + ["distance"]=63307, + ["mine_stage"]=38 + }, + [10553]={ + ["distance"]=63313, + ["mine_stage"]=6 + }, + [10554]={ + ["distance"]=63319, + ["mine_stage"]=48 + }, + [10555]={ + ["distance"]=63325, + ["mine_stage"]=8 + }, + [10556]={ + ["distance"]=63331, + ["mine_stage"]=12 + }, + [10557]={ + ["distance"]=63337, + ["mine_stage"]=10 + }, + [10558]={ + ["distance"]=63343, + ["mine_stage"]=45 + }, + [10559]={ + ["distance"]=63349, + ["mine_stage"]=16 + }, + [10560]={ + ["distance"]=63355, + ["mine_stage"]=28 + }, + [10561]={ + ["distance"]=63361, + ["mine_stage"]=54 + }, + [10562]={ + ["distance"]=63367, + ["mine_stage"]=16 + }, + [10563]={ + ["distance"]=63373, + ["mine_stage"]=47 + }, + [10564]={ + ["distance"]=63379, + ["mine_stage"]=18 + }, + [10565]={ + ["distance"]=63385, + ["mine_stage"]=49 + }, + [10566]={ + ["distance"]=63391, + ["mine_stage"]=40 + }, + [10567]={ + ["distance"]=63397, + ["mine_stage"]=10 + }, + [10568]={ + ["distance"]=63403, + ["mine_stage"]=15 + }, + [10569]={ + ["distance"]=63409, + ["mine_stage"]=22 + }, + [10570]={ + ["distance"]=63415, + ["mine_stage"]=27 + }, + [10571]={ + ["distance"]=63421, + ["mine_stage"]=9 + }, + [10572]={ + ["distance"]=63427, + ["mine_stage"]=52 + }, + [10573]={ + ["distance"]=63433, + ["mine_stage"]=54 + }, + [10574]={ + ["distance"]=63439, + ["mine_stage"]=19 + }, + [10575]={ + ["distance"]=63445, + ["mine_stage"]=33 + }, + [10576]={ + ["distance"]=63451, + ["mine_stage"]=1 + }, + [10577]={ + ["distance"]=63457, + ["mine_stage"]=59 + }, + [10578]={ + ["distance"]=63463, + ["mine_stage"]=46 + }, + [10579]={ + ["distance"]=63469, + ["mine_stage"]=44 + }, + [10580]={ + ["distance"]=63475, + ["mine_stage"]=15 + }, + [10581]={ + ["distance"]=63481, + ["mine_stage"]=18 + }, + [10582]={ + ["distance"]=63487, + ["mine_stage"]=34 + }, + [10583]={ + ["distance"]=63493, + ["mine_stage"]=45 + }, + [10584]={ + ["distance"]=63499, + ["mine_stage"]=36 + }, + [10585]={ + ["distance"]=63505, + ["mine_stage"]=37 + }, + [10586]={ + ["distance"]=63511, + ["mine_stage"]=37 + }, + [10587]={ + ["distance"]=63517, + ["mine_stage"]=24 + }, + [10588]={ + ["distance"]=63523, + ["mine_stage"]=49 + }, + [10589]={ + ["distance"]=63529, + ["mine_stage"]=8 + }, + [10590]={ + ["distance"]=63535, + ["mine_stage"]=31 + }, + [10591]={ + ["distance"]=63541, + ["mine_stage"]=29 + }, + [10592]={ + ["distance"]=63547, + ["mine_stage"]=16 + }, + [10593]={ + ["distance"]=63553, + ["mine_stage"]=21 + }, + [10594]={ + ["distance"]=63559, + ["mine_stage"]=38 + }, + [10595]={ + ["distance"]=63565, + ["mine_stage"]=11 + }, + [10596]={ + ["distance"]=63571, + ["mine_stage"]=40 + }, + [10597]={ + ["distance"]=63577, + ["mine_stage"]=27 + }, + [10598]={ + ["distance"]=63583, + ["mine_stage"]=36 + }, + [10599]={ + ["distance"]=63589, + ["mine_stage"]=23 + }, + [10600]={ + ["distance"]=63595, + ["mine_stage"]=43 + }, + [10601]={ + ["distance"]=63601, + ["mine_stage"]=64 + }, + [10602]={ + ["distance"]=63607, + ["mine_stage"]=10 + }, + [10603]={ + ["distance"]=63613, + ["mine_stage"]=52 + }, + [10604]={ + ["distance"]=63619, + ["mine_stage"]=40 + }, + [10605]={ + ["distance"]=63625, + ["mine_stage"]=55 + }, + [10606]={ + ["distance"]=63631, + ["mine_stage"]=11 + }, + [10607]={ + ["distance"]=63637, + ["mine_stage"]=15 + }, + [10608]={ + ["distance"]=63643, + ["mine_stage"]=57 + }, + [10609]={ + ["distance"]=63649, + ["mine_stage"]=13 + }, + [10610]={ + ["distance"]=63655, + ["mine_stage"]=22 + }, + [10611]={ + ["distance"]=63661, + ["mine_stage"]=49 + }, + [10612]={ + ["distance"]=63667, + ["mine_stage"]=58 + }, + [10613]={ + ["distance"]=63673, + ["mine_stage"]=51 + }, + [10614]={ + ["distance"]=63679, + ["mine_stage"]=6 + }, + [10615]={ + ["distance"]=63685, + ["mine_stage"]=27 + }, + [10616]={ + ["distance"]=63691, + ["mine_stage"]=21 + }, + [10617]={ + ["distance"]=63697, + ["mine_stage"]=32 + }, + [10618]={ + ["distance"]=63703, + ["mine_stage"]=3 + }, + [10619]={ + ["distance"]=63709, + ["mine_stage"]=31 + }, + [10620]={ + ["distance"]=63715, + ["mine_stage"]=10 + }, + [10621]={ + ["distance"]=63721, + ["mine_stage"]=1 + }, + [10622]={ + ["distance"]=63727, + ["mine_stage"]=27 + }, + [10623]={ + ["distance"]=63733, + ["mine_stage"]=5 + }, + [10624]={ + ["distance"]=63739, + ["mine_stage"]=38 + }, + [10625]={ + ["distance"]=63745, + ["mine_stage"]=2 + }, + [10626]={ + ["distance"]=63751, + ["mine_stage"]=45 + }, + [10627]={ + ["distance"]=63757, + ["mine_stage"]=24 + }, + [10628]={ + ["distance"]=63763, + ["mine_stage"]=9 + }, + [10629]={ + ["distance"]=63769, + ["mine_stage"]=57 + }, + [10630]={ + ["distance"]=63775, + ["mine_stage"]=36 + }, + [10631]={ + ["distance"]=63781, + ["mine_stage"]=3 + }, + [10632]={ + ["distance"]=63787, + ["mine_stage"]=38 + }, + [10633]={ + ["distance"]=63793, + ["mine_stage"]=34 + }, + [10634]={ + ["distance"]=63799, + ["mine_stage"]=23 + }, + [10635]={ + ["distance"]=63805, + ["mine_stage"]=30 + }, + [10636]={ + ["distance"]=63811, + ["mine_stage"]=40 + }, + [10637]={ + ["distance"]=63817, + ["mine_stage"]=60 + }, + [10638]={ + ["distance"]=63823, + ["mine_stage"]=9 + }, + [10639]={ + ["distance"]=63829, + ["mine_stage"]=33 + }, + [10640]={ + ["distance"]=63835, + ["mine_stage"]=13 + }, + [10641]={ + ["distance"]=63841, + ["mine_stage"]=14 + }, + [10642]={ + ["distance"]=63847, + ["mine_stage"]=52 + }, + [10643]={ + ["distance"]=63853, + ["mine_stage"]=13 + }, + [10644]={ + ["distance"]=63859, + ["mine_stage"]=10 + }, + [10645]={ + ["distance"]=63865, + ["mine_stage"]=23 + }, + [10646]={ + ["distance"]=63871, + ["mine_stage"]=52 + }, + [10647]={ + ["distance"]=63877, + ["mine_stage"]=47 + }, + [10648]={ + ["distance"]=63883, + ["mine_stage"]=20 + }, + [10649]={ + ["distance"]=63889, + ["mine_stage"]=1 + }, + [10650]={ + ["distance"]=63895, + ["mine_stage"]=27 + }, + [10651]={ + ["distance"]=63901, + ["mine_stage"]=67 + }, + [10652]={ + ["distance"]=63907, + ["mine_stage"]=39 + }, + [10653]={ + ["distance"]=63913, + ["mine_stage"]=27 + }, + [10654]={ + ["distance"]=63919, + ["mine_stage"]=49 + }, + [10655]={ + ["distance"]=63925, + ["mine_stage"]=46 + }, + [10656]={ + ["distance"]=63931, + ["mine_stage"]=1 + }, + [10657]={ + ["distance"]=63937, + ["mine_stage"]=56 + }, + [10658]={ + ["distance"]=63943, + ["mine_stage"]=14 + }, + [10659]={ + ["distance"]=63949, + ["mine_stage"]=31 + }, + [10660]={ + ["distance"]=63955, + ["mine_stage"]=47 + }, + [10661]={ + ["distance"]=63961, + ["mine_stage"]=1 + }, + [10662]={ + ["distance"]=63967, + ["mine_stage"]=1 + }, + [10663]={ + ["distance"]=63973, + ["mine_stage"]=39 + }, + [10664]={ + ["distance"]=63979, + ["mine_stage"]=18 + }, + [10665]={ + ["distance"]=63985, + ["mine_stage"]=40 + }, + [10666]={ + ["distance"]=63991, + ["mine_stage"]=38 + }, + [10667]={ + ["distance"]=63997, + ["mine_stage"]=26 + }, + [10668]={ + ["distance"]=64003, + ["mine_stage"]=38 + }, + [10669]={ + ["distance"]=64009, + ["mine_stage"]=55 + }, + [10670]={ + ["distance"]=64015, + ["mine_stage"]=8 + }, + [10671]={ + ["distance"]=64021, + ["mine_stage"]=8 + }, + [10672]={ + ["distance"]=64027, + ["mine_stage"]=58 + }, + [10673]={ + ["distance"]=64033, + ["mine_stage"]=41 + }, + [10674]={ + ["distance"]=64039, + ["mine_stage"]=56 + }, + [10675]={ + ["distance"]=64045, + ["mine_stage"]=6 + }, + [10676]={ + ["distance"]=64051, + ["mine_stage"]=16 + }, + [10677]={ + ["distance"]=64057, + ["mine_stage"]=39 + }, + [10678]={ + ["distance"]=64063, + ["mine_stage"]=17 + }, + [10679]={ + ["distance"]=64069, + ["mine_stage"]=34 + }, + [10680]={ + ["distance"]=64075, + ["mine_stage"]=46 + }, + [10681]={ + ["distance"]=64081, + ["mine_stage"]=10 + }, + [10682]={ + ["distance"]=64087, + ["mine_stage"]=25 + }, + [10683]={ + ["distance"]=64093, + ["mine_stage"]=14 + }, + [10684]={ + ["distance"]=64099, + ["mine_stage"]=59 + }, + [10685]={ + ["distance"]=64105, + ["mine_stage"]=32 + }, + [10686]={ + ["distance"]=64111, + ["mine_stage"]=42 + }, + [10687]={ + ["distance"]=64117, + ["mine_stage"]=32 + }, + [10688]={ + ["distance"]=64123, + ["mine_stage"]=27 + }, + [10689]={ + ["distance"]=64129, + ["mine_stage"]=26 + }, + [10690]={ + ["distance"]=64135, + ["mine_stage"]=55 + }, + [10691]={ + ["distance"]=64141, + ["mine_stage"]=14 + }, + [10692]={ + ["distance"]=64147, + ["mine_stage"]=32 + }, + [10693]={ + ["distance"]=64153, + ["mine_stage"]=10 + }, + [10694]={ + ["distance"]=64159, + ["mine_stage"]=23 + }, + [10695]={ + ["distance"]=64165, + ["mine_stage"]=50 + }, + [10696]={ + ["distance"]=64171, + ["mine_stage"]=27 + }, + [10697]={ + ["distance"]=64177, + ["mine_stage"]=10 + }, + [10698]={ + ["distance"]=64183, + ["mine_stage"]=26 + }, + [10699]={ + ["distance"]=64189, + ["mine_stage"]=4 + }, + [10700]={ + ["distance"]=64195, + ["mine_stage"]=53 + }, + [10701]={ + ["distance"]=64201, + ["mine_stage"]=65 + }, + [10702]={ + ["distance"]=64207, + ["mine_stage"]=32 + }, + [10703]={ + ["distance"]=64213, + ["mine_stage"]=8 + }, + [10704]={ + ["distance"]=64219, + ["mine_stage"]=60 + }, + [10705]={ + ["distance"]=64225, + ["mine_stage"]=2 + }, + [10706]={ + ["distance"]=64231, + ["mine_stage"]=59 + }, + [10707]={ + ["distance"]=64237, + ["mine_stage"]=38 + }, + [10708]={ + ["distance"]=64243, + ["mine_stage"]=54 + }, + [10709]={ + ["distance"]=64249, + ["mine_stage"]=16 + }, + [10710]={ + ["distance"]=64255, + ["mine_stage"]=26 + }, + [10711]={ + ["distance"]=64261, + ["mine_stage"]=22 + }, + [10712]={ + ["distance"]=64267, + ["mine_stage"]=46 + }, + [10713]={ + ["distance"]=64273, + ["mine_stage"]=59 + }, + [10714]={ + ["distance"]=64279, + ["mine_stage"]=33 + }, + [10715]={ + ["distance"]=64285, + ["mine_stage"]=29 + }, + [10716]={ + ["distance"]=64291, + ["mine_stage"]=34 + }, + [10717]={ + ["distance"]=64297, + ["mine_stage"]=15 + }, + [10718]={ + ["distance"]=64303, + ["mine_stage"]=58 + }, + [10719]={ + ["distance"]=64309, + ["mine_stage"]=21 + }, + [10720]={ + ["distance"]=64315, + ["mine_stage"]=40 + }, + [10721]={ + ["distance"]=64321, + ["mine_stage"]=27 + }, + [10722]={ + ["distance"]=64327, + ["mine_stage"]=30 + }, + [10723]={ + ["distance"]=64333, + ["mine_stage"]=10 + }, + [10724]={ + ["distance"]=64339, + ["mine_stage"]=26 + }, + [10725]={ + ["distance"]=64345, + ["mine_stage"]=26 + }, + [10726]={ + ["distance"]=64351, + ["mine_stage"]=22 + }, + [10727]={ + ["distance"]=64357, + ["mine_stage"]=3 + }, + [10728]={ + ["distance"]=64363, + ["mine_stage"]=39 + }, + [10729]={ + ["distance"]=64369, + ["mine_stage"]=16 + }, + [10730]={ + ["distance"]=64375, + ["mine_stage"]=53 + }, + [10731]={ + ["distance"]=64381, + ["mine_stage"]=30 + }, + [10732]={ + ["distance"]=64387, + ["mine_stage"]=57 + }, + [10733]={ + ["distance"]=64393, + ["mine_stage"]=34 + }, + [10734]={ + ["distance"]=64399, + ["mine_stage"]=54 + }, + [10735]={ + ["distance"]=64405, + ["mine_stage"]=30 + }, + [10736]={ + ["distance"]=64411, + ["mine_stage"]=25 + }, + [10737]={ + ["distance"]=64417, + ["mine_stage"]=27 + }, + [10738]={ + ["distance"]=64423, + ["mine_stage"]=53 + }, + [10739]={ + ["distance"]=64429, + ["mine_stage"]=41 + }, + [10740]={ + ["distance"]=64435, + ["mine_stage"]=60 + }, + [10741]={ + ["distance"]=64441, + ["mine_stage"]=40 + }, + [10742]={ + ["distance"]=64447, + ["mine_stage"]=27 + }, + [10743]={ + ["distance"]=64453, + ["mine_stage"]=31 + }, + [10744]={ + ["distance"]=64459, + ["mine_stage"]=42 + }, + [10745]={ + ["distance"]=64465, + ["mine_stage"]=9 + }, + [10746]={ + ["distance"]=64471, + ["mine_stage"]=30 + }, + [10747]={ + ["distance"]=64477, + ["mine_stage"]=29 + }, + [10748]={ + ["distance"]=64483, + ["mine_stage"]=56 + }, + [10749]={ + ["distance"]=64489, + ["mine_stage"]=40 + }, + [10750]={ + ["distance"]=64495, + ["mine_stage"]=6 + }, + [10751]={ + ["distance"]=64501, + ["mine_stage"]=68 + }, + [10752]={ + ["distance"]=64507, + ["mine_stage"]=48 + }, + [10753]={ + ["distance"]=64513, + ["mine_stage"]=18 + }, + [10754]={ + ["distance"]=64519, + ["mine_stage"]=28 + }, + [10755]={ + ["distance"]=64525, + ["mine_stage"]=59 + }, + [10756]={ + ["distance"]=64531, + ["mine_stage"]=30 + }, + [10757]={ + ["distance"]=64537, + ["mine_stage"]=36 + }, + [10758]={ + ["distance"]=64543, + ["mine_stage"]=16 + }, + [10759]={ + ["distance"]=64549, + ["mine_stage"]=41 + }, + [10760]={ + ["distance"]=64555, + ["mine_stage"]=12 + }, + [10761]={ + ["distance"]=64561, + ["mine_stage"]=17 + }, + [10762]={ + ["distance"]=64567, + ["mine_stage"]=41 + }, + [10763]={ + ["distance"]=64573, + ["mine_stage"]=18 + }, + [10764]={ + ["distance"]=64579, + ["mine_stage"]=38 + }, + [10765]={ + ["distance"]=64585, + ["mine_stage"]=44 + }, + [10766]={ + ["distance"]=64591, + ["mine_stage"]=48 + }, + [10767]={ + ["distance"]=64597, + ["mine_stage"]=15 + }, + [10768]={ + ["distance"]=64603, + ["mine_stage"]=52 + }, + [10769]={ + ["distance"]=64609, + ["mine_stage"]=25 + }, + [10770]={ + ["distance"]=64615, + ["mine_stage"]=45 + }, + [10771]={ + ["distance"]=64621, + ["mine_stage"]=26 + }, + [10772]={ + ["distance"]=64627, + ["mine_stage"]=49 + }, + [10773]={ + ["distance"]=64633, + ["mine_stage"]=48 + }, + [10774]={ + ["distance"]=64639, + ["mine_stage"]=18 + }, + [10775]={ + ["distance"]=64645, + ["mine_stage"]=33 + }, + [10776]={ + ["distance"]=64651, + ["mine_stage"]=5 + }, + [10777]={ + ["distance"]=64657, + ["mine_stage"]=53 + }, + [10778]={ + ["distance"]=64663, + ["mine_stage"]=20 + }, + [10779]={ + ["distance"]=64669, + ["mine_stage"]=47 + }, + [10780]={ + ["distance"]=64675, + ["mine_stage"]=29 + }, + [10781]={ + ["distance"]=64681, + ["mine_stage"]=35 + }, + [10782]={ + ["distance"]=64687, + ["mine_stage"]=28 + }, + [10783]={ + ["distance"]=64693, + ["mine_stage"]=38 + }, + [10784]={ + ["distance"]=64699, + ["mine_stage"]=53 + }, + [10785]={ + ["distance"]=64705, + ["mine_stage"]=5 + }, + [10786]={ + ["distance"]=64711, + ["mine_stage"]=25 + }, + [10787]={ + ["distance"]=64717, + ["mine_stage"]=35 + }, + [10788]={ + ["distance"]=64723, + ["mine_stage"]=42 + }, + [10789]={ + ["distance"]=64729, + ["mine_stage"]=46 + }, + [10790]={ + ["distance"]=64735, + ["mine_stage"]=21 + }, + [10791]={ + ["distance"]=64741, + ["mine_stage"]=49 + }, + [10792]={ + ["distance"]=64747, + ["mine_stage"]=24 + }, + [10793]={ + ["distance"]=64753, + ["mine_stage"]=51 + }, + [10794]={ + ["distance"]=64759, + ["mine_stage"]=23 + }, + [10795]={ + ["distance"]=64765, + ["mine_stage"]=22 + }, + [10796]={ + ["distance"]=64771, + ["mine_stage"]=25 + }, + [10797]={ + ["distance"]=64777, + ["mine_stage"]=26 + }, + [10798]={ + ["distance"]=64783, + ["mine_stage"]=27 + }, + [10799]={ + ["distance"]=64789, + ["mine_stage"]=53 + }, + [10800]={ + ["distance"]=64795, + ["mine_stage"]=21 + }, + [10801]={ + ["distance"]=64801, + ["mine_stage"]=66 + }, + [10802]={ + ["distance"]=64807, + ["mine_stage"]=52 + }, + [10803]={ + ["distance"]=64813, + ["mine_stage"]=12 + }, + [10804]={ + ["distance"]=64819, + ["mine_stage"]=10 + }, + [10805]={ + ["distance"]=64825, + ["mine_stage"]=32 + }, + [10806]={ + ["distance"]=64831, + ["mine_stage"]=56 + }, + [10807]={ + ["distance"]=64837, + ["mine_stage"]=33 + }, + [10808]={ + ["distance"]=64843, + ["mine_stage"]=42 + }, + [10809]={ + ["distance"]=64849, + ["mine_stage"]=38 + }, + [10810]={ + ["distance"]=64855, + ["mine_stage"]=14 + }, + [10811]={ + ["distance"]=64861, + ["mine_stage"]=25 + }, + [10812]={ + ["distance"]=64867, + ["mine_stage"]=14 + }, + [10813]={ + ["distance"]=64873, + ["mine_stage"]=48 + }, + [10814]={ + ["distance"]=64879, + ["mine_stage"]=31 + }, + [10815]={ + ["distance"]=64885, + ["mine_stage"]=44 + }, + [10816]={ + ["distance"]=64891, + ["mine_stage"]=24 + }, + [10817]={ + ["distance"]=64897, + ["mine_stage"]=54 + }, + [10818]={ + ["distance"]=64903, + ["mine_stage"]=56 + }, + [10819]={ + ["distance"]=64909, + ["mine_stage"]=25 + }, + [10820]={ + ["distance"]=64915, + ["mine_stage"]=1 + }, + [10821]={ + ["distance"]=64921, + ["mine_stage"]=12 + }, + [10822]={ + ["distance"]=64927, + ["mine_stage"]=17 + }, + [10823]={ + ["distance"]=64933, + ["mine_stage"]=33 + }, + [10824]={ + ["distance"]=64939, + ["mine_stage"]=42 + }, + [10825]={ + ["distance"]=64945, + ["mine_stage"]=13 + }, + [10826]={ + ["distance"]=64951, + ["mine_stage"]=27 + }, + [10827]={ + ["distance"]=64957, + ["mine_stage"]=44 + }, + [10828]={ + ["distance"]=64963, + ["mine_stage"]=3 + }, + [10829]={ + ["distance"]=64969, + ["mine_stage"]=47 + }, + [10830]={ + ["distance"]=64975, + ["mine_stage"]=45 + }, + [10831]={ + ["distance"]=64981, + ["mine_stage"]=41 + }, + [10832]={ + ["distance"]=64987, + ["mine_stage"]=33 + }, + [10833]={ + ["distance"]=64993, + ["mine_stage"]=28 + }, + [10834]={ + ["distance"]=64999, + ["mine_stage"]=50 + }, + [10835]={ + ["distance"]=65005, + ["mine_stage"]=12 + }, + [10836]={ + ["distance"]=65011, + ["mine_stage"]=40 + }, + [10837]={ + ["distance"]=65017, + ["mine_stage"]=33 + }, + [10838]={ + ["distance"]=65023, + ["mine_stage"]=46 + }, + [10839]={ + ["distance"]=65029, + ["mine_stage"]=18 + }, + [10840]={ + ["distance"]=65035, + ["mine_stage"]=57 + }, + [10841]={ + ["distance"]=65041, + ["mine_stage"]=14 + }, + [10842]={ + ["distance"]=65047, + ["mine_stage"]=16 + }, + [10843]={ + ["distance"]=65053, + ["mine_stage"]=19 + }, + [10844]={ + ["distance"]=65059, + ["mine_stage"]=14 + }, + [10845]={ + ["distance"]=65065, + ["mine_stage"]=7 + }, + [10846]={ + ["distance"]=65071, + ["mine_stage"]=35 + }, + [10847]={ + ["distance"]=65077, + ["mine_stage"]=56 + }, + [10848]={ + ["distance"]=65083, + ["mine_stage"]=57 + }, + [10849]={ + ["distance"]=65089, + ["mine_stage"]=28 + }, + [10850]={ + ["distance"]=65095, + ["mine_stage"]=57 + }, + [10851]={ + ["distance"]=65101, + ["mine_stage"]=69 + }, + [10852]={ + ["distance"]=65107, + ["mine_stage"]=40 + }, + [10853]={ + ["distance"]=65113, + ["mine_stage"]=12 + }, + [10854]={ + ["distance"]=65119, + ["mine_stage"]=10 + }, + [10855]={ + ["distance"]=65125, + ["mine_stage"]=57 + }, + [10856]={ + ["distance"]=65131, + ["mine_stage"]=17 + }, + [10857]={ + ["distance"]=65137, + ["mine_stage"]=27 + }, + [10858]={ + ["distance"]=65143, + ["mine_stage"]=21 + }, + [10859]={ + ["distance"]=65149, + ["mine_stage"]=55 + }, + [10860]={ + ["distance"]=65155, + ["mine_stage"]=30 + }, + [10861]={ + ["distance"]=65161, + ["mine_stage"]=56 + }, + [10862]={ + ["distance"]=65167, + ["mine_stage"]=56 + }, + [10863]={ + ["distance"]=65173, + ["mine_stage"]=2 + }, + [10864]={ + ["distance"]=65179, + ["mine_stage"]=52 + }, + [10865]={ + ["distance"]=65185, + ["mine_stage"]=52 + }, + [10866]={ + ["distance"]=65191, + ["mine_stage"]=47 + }, + [10867]={ + ["distance"]=65197, + ["mine_stage"]=22 + }, + [10868]={ + ["distance"]=65203, + ["mine_stage"]=6 + }, + [10869]={ + ["distance"]=65209, + ["mine_stage"]=5 + }, + [10870]={ + ["distance"]=65215, + ["mine_stage"]=28 + }, + [10871]={ + ["distance"]=65221, + ["mine_stage"]=4 + }, + [10872]={ + ["distance"]=65227, + ["mine_stage"]=17 + }, + [10873]={ + ["distance"]=65233, + ["mine_stage"]=21 + }, + [10874]={ + ["distance"]=65239, + ["mine_stage"]=25 + }, + [10875]={ + ["distance"]=65245, + ["mine_stage"]=47 + }, + [10876]={ + ["distance"]=65251, + ["mine_stage"]=56 + }, + [10877]={ + ["distance"]=65257, + ["mine_stage"]=51 + }, + [10878]={ + ["distance"]=65263, + ["mine_stage"]=1 + }, + [10879]={ + ["distance"]=65269, + ["mine_stage"]=32 + }, + [10880]={ + ["distance"]=65275, + ["mine_stage"]=6 + }, + [10881]={ + ["distance"]=65281, + ["mine_stage"]=38 + }, + [10882]={ + ["distance"]=65287, + ["mine_stage"]=40 + }, + [10883]={ + ["distance"]=65293, + ["mine_stage"]=59 + }, + [10884]={ + ["distance"]=65299, + ["mine_stage"]=20 + }, + [10885]={ + ["distance"]=65305, + ["mine_stage"]=23 + }, + [10886]={ + ["distance"]=65311, + ["mine_stage"]=14 + }, + [10887]={ + ["distance"]=65317, + ["mine_stage"]=57 + }, + [10888]={ + ["distance"]=65323, + ["mine_stage"]=47 + }, + [10889]={ + ["distance"]=65329, + ["mine_stage"]=3 + }, + [10890]={ + ["distance"]=65335, + ["mine_stage"]=19 + }, + [10891]={ + ["distance"]=65341, + ["mine_stage"]=20 + }, + [10892]={ + ["distance"]=65347, + ["mine_stage"]=51 + }, + [10893]={ + ["distance"]=65353, + ["mine_stage"]=21 + }, + [10894]={ + ["distance"]=65359, + ["mine_stage"]=52 + }, + [10895]={ + ["distance"]=65365, + ["mine_stage"]=25 + }, + [10896]={ + ["distance"]=65371, + ["mine_stage"]=50 + }, + [10897]={ + ["distance"]=65377, + ["mine_stage"]=40 + }, + [10898]={ + ["distance"]=65383, + ["mine_stage"]=28 + }, + [10899]={ + ["distance"]=65389, + ["mine_stage"]=11 + }, + [10900]={ + ["distance"]=65395, + ["mine_stage"]=39 + }, + [10901]={ + ["distance"]=65401, + ["mine_stage"]=64 + }, + [10902]={ + ["distance"]=65407, + ["mine_stage"]=45 + }, + [10903]={ + ["distance"]=65413, + ["mine_stage"]=34 + }, + [10904]={ + ["distance"]=65419, + ["mine_stage"]=3 + }, + [10905]={ + ["distance"]=65425, + ["mine_stage"]=22 + }, + [10906]={ + ["distance"]=65431, + ["mine_stage"]=3 + }, + [10907]={ + ["distance"]=65437, + ["mine_stage"]=6 + }, + [10908]={ + ["distance"]=65443, + ["mine_stage"]=10 + }, + [10909]={ + ["distance"]=65449, + ["mine_stage"]=58 + }, + [10910]={ + ["distance"]=65455, + ["mine_stage"]=25 + }, + [10911]={ + ["distance"]=65461, + ["mine_stage"]=6 + }, + [10912]={ + ["distance"]=65467, + ["mine_stage"]=33 + }, + [10913]={ + ["distance"]=65473, + ["mine_stage"]=6 + }, + [10914]={ + ["distance"]=65479, + ["mine_stage"]=60 + }, + [10915]={ + ["distance"]=65485, + ["mine_stage"]=31 + }, + [10916]={ + ["distance"]=65491, + ["mine_stage"]=52 + }, + [10917]={ + ["distance"]=65497, + ["mine_stage"]=58 + }, + [10918]={ + ["distance"]=65503, + ["mine_stage"]=48 + }, + [10919]={ + ["distance"]=65509, + ["mine_stage"]=35 + }, + [10920]={ + ["distance"]=65515, + ["mine_stage"]=6 + }, + [10921]={ + ["distance"]=65521, + ["mine_stage"]=52 + }, + [10922]={ + ["distance"]=65527, + ["mine_stage"]=16 + }, + [10923]={ + ["distance"]=65533, + ["mine_stage"]=43 + }, + [10924]={ + ["distance"]=65539, + ["mine_stage"]=7 + }, + [10925]={ + ["distance"]=65545, + ["mine_stage"]=33 + }, + [10926]={ + ["distance"]=65551, + ["mine_stage"]=2 + }, + [10927]={ + ["distance"]=65557, + ["mine_stage"]=57 + }, + [10928]={ + ["distance"]=65563, + ["mine_stage"]=6 + }, + [10929]={ + ["distance"]=65569, + ["mine_stage"]=10 + }, + [10930]={ + ["distance"]=65575, + ["mine_stage"]=22 + }, + [10931]={ + ["distance"]=65581, + ["mine_stage"]=39 + }, + [10932]={ + ["distance"]=65587, + ["mine_stage"]=18 + }, + [10933]={ + ["distance"]=65593, + ["mine_stage"]=28 + }, + [10934]={ + ["distance"]=65599, + ["mine_stage"]=33 + }, + [10935]={ + ["distance"]=65605, + ["mine_stage"]=12 + }, + [10936]={ + ["distance"]=65611, + ["mine_stage"]=4 + }, + [10937]={ + ["distance"]=65617, + ["mine_stage"]=54 + }, + [10938]={ + ["distance"]=65623, + ["mine_stage"]=22 + }, + [10939]={ + ["distance"]=65629, + ["mine_stage"]=45 + }, + [10940]={ + ["distance"]=65635, + ["mine_stage"]=11 + }, + [10941]={ + ["distance"]=65641, + ["mine_stage"]=44 + }, + [10942]={ + ["distance"]=65647, + ["mine_stage"]=16 + }, + [10943]={ + ["distance"]=65653, + ["mine_stage"]=38 + }, + [10944]={ + ["distance"]=65659, + ["mine_stage"]=15 + }, + [10945]={ + ["distance"]=65665, + ["mine_stage"]=35 + }, + [10946]={ + ["distance"]=65671, + ["mine_stage"]=40 + }, + [10947]={ + ["distance"]=65677, + ["mine_stage"]=47 + }, + [10948]={ + ["distance"]=65683, + ["mine_stage"]=40 + }, + [10949]={ + ["distance"]=65689, + ["mine_stage"]=47 + }, + [10950]={ + ["distance"]=65695, + ["mine_stage"]=12 + }, + [10951]={ + ["distance"]=65701, + ["mine_stage"]=67 + }, + [10952]={ + ["distance"]=65707, + ["mine_stage"]=2 + }, + [10953]={ + ["distance"]=65713, + ["mine_stage"]=23 + }, + [10954]={ + ["distance"]=65719, + ["mine_stage"]=58 + }, + [10955]={ + ["distance"]=65725, + ["mine_stage"]=51 + }, + [10956]={ + ["distance"]=65731, + ["mine_stage"]=19 + }, + [10957]={ + ["distance"]=65737, + ["mine_stage"]=40 + }, + [10958]={ + ["distance"]=65743, + ["mine_stage"]=21 + }, + [10959]={ + ["distance"]=65749, + ["mine_stage"]=16 + }, + [10960]={ + ["distance"]=65755, + ["mine_stage"]=12 + }, + [10961]={ + ["distance"]=65761, + ["mine_stage"]=30 + }, + [10962]={ + ["distance"]=65767, + ["mine_stage"]=56 + }, + [10963]={ + ["distance"]=65773, + ["mine_stage"]=12 + }, + [10964]={ + ["distance"]=65779, + ["mine_stage"]=11 + }, + [10965]={ + ["distance"]=65785, + ["mine_stage"]=17 + }, + [10966]={ + ["distance"]=65791, + ["mine_stage"]=53 + }, + [10967]={ + ["distance"]=65797, + ["mine_stage"]=47 + }, + [10968]={ + ["distance"]=65803, + ["mine_stage"]=40 + }, + [10969]={ + ["distance"]=65809, + ["mine_stage"]=1 + }, + [10970]={ + ["distance"]=65815, + ["mine_stage"]=59 + }, + [10971]={ + ["distance"]=65821, + ["mine_stage"]=55 + }, + [10972]={ + ["distance"]=65827, + ["mine_stage"]=14 + }, + [10973]={ + ["distance"]=65833, + ["mine_stage"]=30 + }, + [10974]={ + ["distance"]=65839, + ["mine_stage"]=59 + }, + [10975]={ + ["distance"]=65845, + ["mine_stage"]=59 + }, + [10976]={ + ["distance"]=65851, + ["mine_stage"]=16 + }, + [10977]={ + ["distance"]=65857, + ["mine_stage"]=46 + }, + [10978]={ + ["distance"]=65863, + ["mine_stage"]=6 + }, + [10979]={ + ["distance"]=65869, + ["mine_stage"]=13 + }, + [10980]={ + ["distance"]=65875, + ["mine_stage"]=26 + }, + [10981]={ + ["distance"]=65881, + ["mine_stage"]=4 + }, + [10982]={ + ["distance"]=65887, + ["mine_stage"]=23 + }, + [10983]={ + ["distance"]=65893, + ["mine_stage"]=51 + }, + [10984]={ + ["distance"]=65899, + ["mine_stage"]=48 + }, + [10985]={ + ["distance"]=65905, + ["mine_stage"]=13 + }, + [10986]={ + ["distance"]=65911, + ["mine_stage"]=50 + }, + [10987]={ + ["distance"]=65917, + ["mine_stage"]=49 + }, + [10988]={ + ["distance"]=65923, + ["mine_stage"]=26 + }, + [10989]={ + ["distance"]=65929, + ["mine_stage"]=58 + }, + [10990]={ + ["distance"]=65935, + ["mine_stage"]=45 + }, + [10991]={ + ["distance"]=65941, + ["mine_stage"]=7 + }, + [10992]={ + ["distance"]=65947, + ["mine_stage"]=30 + }, + [10993]={ + ["distance"]=65953, + ["mine_stage"]=7 + }, + [10994]={ + ["distance"]=65959, + ["mine_stage"]=22 + }, + [10995]={ + ["distance"]=65965, + ["mine_stage"]=58 + }, + [10996]={ + ["distance"]=65971, + ["mine_stage"]=32 + }, + [10997]={ + ["distance"]=65977, + ["mine_stage"]=46 + }, + [10998]={ + ["distance"]=65983, + ["mine_stage"]=7 + }, + [10999]={ + ["distance"]=65989, + ["mine_stage"]=32 + }, + [11000]={ + ["distance"]=65995, + ["mine_stage"]=51 + }, + [11001]={ + ["distance"]=66001, + ["mine_stage"]=65 + }, + [11002]={ + ["distance"]=66007, + ["mine_stage"]=16 + }, + [11003]={ + ["distance"]=66013, + ["mine_stage"]=10 + }, + [11004]={ + ["distance"]=66019, + ["mine_stage"]=20 + }, + [11005]={ + ["distance"]=66025, + ["mine_stage"]=59 + }, + [11006]={ + ["distance"]=66031, + ["mine_stage"]=25 + }, + [11007]={ + ["distance"]=66037, + ["mine_stage"]=46 + }, + [11008]={ + ["distance"]=66043, + ["mine_stage"]=35 + }, + [11009]={ + ["distance"]=66049, + ["mine_stage"]=52 + }, + [11010]={ + ["distance"]=66055, + ["mine_stage"]=56 + }, + [11011]={ + ["distance"]=66061, + ["mine_stage"]=5 + }, + [11012]={ + ["distance"]=66067, + ["mine_stage"]=47 + }, + [11013]={ + ["distance"]=66073, + ["mine_stage"]=11 + }, + [11014]={ + ["distance"]=66079, + ["mine_stage"]=49 + }, + [11015]={ + ["distance"]=66085, + ["mine_stage"]=29 + }, + [11016]={ + ["distance"]=66091, + ["mine_stage"]=1 + }, + [11017]={ + ["distance"]=66097, + ["mine_stage"]=30 + }, + [11018]={ + ["distance"]=66103, + ["mine_stage"]=5 + }, + [11019]={ + ["distance"]=66109, + ["mine_stage"]=38 + }, + [11020]={ + ["distance"]=66115, + ["mine_stage"]=44 + }, + [11021]={ + ["distance"]=66121, + ["mine_stage"]=60 + }, + [11022]={ + ["distance"]=66127, + ["mine_stage"]=41 + }, + [11023]={ + ["distance"]=66133, + ["mine_stage"]=22 + }, + [11024]={ + ["distance"]=66139, + ["mine_stage"]=34 + }, + [11025]={ + ["distance"]=66145, + ["mine_stage"]=32 + }, + [11026]={ + ["distance"]=66151, + ["mine_stage"]=27 + }, + [11027]={ + ["distance"]=66157, + ["mine_stage"]=37 + }, + [11028]={ + ["distance"]=66163, + ["mine_stage"]=10 + }, + [11029]={ + ["distance"]=66169, + ["mine_stage"]=56 + }, + [11030]={ + ["distance"]=66175, + ["mine_stage"]=35 + }, + [11031]={ + ["distance"]=66181, + ["mine_stage"]=15 + }, + [11032]={ + ["distance"]=66187, + ["mine_stage"]=15 + }, + [11033]={ + ["distance"]=66193, + ["mine_stage"]=56 + }, + [11034]={ + ["distance"]=66199, + ["mine_stage"]=37 + }, + [11035]={ + ["distance"]=66205, + ["mine_stage"]=11 + }, + [11036]={ + ["distance"]=66211, + ["mine_stage"]=51 + }, + [11037]={ + ["distance"]=66217, + ["mine_stage"]=47 + }, + [11038]={ + ["distance"]=66223, + ["mine_stage"]=34 + }, + [11039]={ + ["distance"]=66229, + ["mine_stage"]=9 + }, + [11040]={ + ["distance"]=66235, + ["mine_stage"]=58 + }, + [11041]={ + ["distance"]=66241, + ["mine_stage"]=23 + }, + [11042]={ + ["distance"]=66247, + ["mine_stage"]=4 + }, + [11043]={ + ["distance"]=66253, + ["mine_stage"]=38 + }, + [11044]={ + ["distance"]=66259, + ["mine_stage"]=55 + }, + [11045]={ + ["distance"]=66265, + ["mine_stage"]=34 + }, + [11046]={ + ["distance"]=66271, + ["mine_stage"]=19 + }, + [11047]={ + ["distance"]=66277, + ["mine_stage"]=56 + }, + [11048]={ + ["distance"]=66283, + ["mine_stage"]=38 + }, + [11049]={ + ["distance"]=66289, + ["mine_stage"]=18 + }, + [11050]={ + ["distance"]=66295, + ["mine_stage"]=19 + }, + [11051]={ + ["distance"]=66301, + ["mine_stage"]=68 + }, + [11052]={ + ["distance"]=66307, + ["mine_stage"]=17 + }, + [11053]={ + ["distance"]=66313, + ["mine_stage"]=6 + }, + [11054]={ + ["distance"]=66319, + ["mine_stage"]=1 + }, + [11055]={ + ["distance"]=66325, + ["mine_stage"]=26 + }, + [11056]={ + ["distance"]=66331, + ["mine_stage"]=28 + }, + [11057]={ + ["distance"]=66337, + ["mine_stage"]=41 + }, + [11058]={ + ["distance"]=66343, + ["mine_stage"]=24 + }, + [11059]={ + ["distance"]=66349, + ["mine_stage"]=6 + }, + [11060]={ + ["distance"]=66355, + ["mine_stage"]=46 + }, + [11061]={ + ["distance"]=66361, + ["mine_stage"]=30 + }, + [11062]={ + ["distance"]=66367, + ["mine_stage"]=14 + }, + [11063]={ + ["distance"]=66373, + ["mine_stage"]=4 + }, + [11064]={ + ["distance"]=66379, + ["mine_stage"]=14 + }, + [11065]={ + ["distance"]=66385, + ["mine_stage"]=8 + }, + [11066]={ + ["distance"]=66391, + ["mine_stage"]=59 + }, + [11067]={ + ["distance"]=66397, + ["mine_stage"]=49 + }, + [11068]={ + ["distance"]=66403, + ["mine_stage"]=33 + }, + [11069]={ + ["distance"]=66409, + ["mine_stage"]=36 + }, + [11070]={ + ["distance"]=66415, + ["mine_stage"]=52 + }, + [11071]={ + ["distance"]=66421, + ["mine_stage"]=24 + }, + [11072]={ + ["distance"]=66427, + ["mine_stage"]=43 + }, + [11073]={ + ["distance"]=66433, + ["mine_stage"]=58 + }, + [11074]={ + ["distance"]=66439, + ["mine_stage"]=25 + }, + [11075]={ + ["distance"]=66445, + ["mine_stage"]=7 + }, + [11076]={ + ["distance"]=66451, + ["mine_stage"]=34 + }, + [11077]={ + ["distance"]=66457, + ["mine_stage"]=23 + }, + [11078]={ + ["distance"]=66463, + ["mine_stage"]=43 + }, + [11079]={ + ["distance"]=66469, + ["mine_stage"]=56 + }, + [11080]={ + ["distance"]=66475, + ["mine_stage"]=13 + }, + [11081]={ + ["distance"]=66481, + ["mine_stage"]=44 + }, + [11082]={ + ["distance"]=66487, + ["mine_stage"]=39 + }, + [11083]={ + ["distance"]=66493, + ["mine_stage"]=36 + }, + [11084]={ + ["distance"]=66499, + ["mine_stage"]=39 + }, + [11085]={ + ["distance"]=66505, + ["mine_stage"]=41 + }, + [11086]={ + ["distance"]=66511, + ["mine_stage"]=44 + }, + [11087]={ + ["distance"]=66517, + ["mine_stage"]=30 + }, + [11088]={ + ["distance"]=66523, + ["mine_stage"]=22 + }, + [11089]={ + ["distance"]=66529, + ["mine_stage"]=14 + }, + [11090]={ + ["distance"]=66535, + ["mine_stage"]=29 + }, + [11091]={ + ["distance"]=66541, + ["mine_stage"]=39 + }, + [11092]={ + ["distance"]=66547, + ["mine_stage"]=37 + }, + [11093]={ + ["distance"]=66553, + ["mine_stage"]=28 + }, + [11094]={ + ["distance"]=66559, + ["mine_stage"]=3 + }, + [11095]={ + ["distance"]=66565, + ["mine_stage"]=60 + }, + [11096]={ + ["distance"]=66571, + ["mine_stage"]=14 + }, + [11097]={ + ["distance"]=66577, + ["mine_stage"]=30 + }, + [11098]={ + ["distance"]=66583, + ["mine_stage"]=50 + }, + [11099]={ + ["distance"]=66589, + ["mine_stage"]=9 + }, + [11100]={ + ["distance"]=66595, + ["mine_stage"]=40 + }, + [11101]={ + ["distance"]=66601, + ["mine_stage"]=66 + }, + [11102]={ + ["distance"]=66607, + ["mine_stage"]=26 + }, + [11103]={ + ["distance"]=66613, + ["mine_stage"]=28 + }, + [11104]={ + ["distance"]=66619, + ["mine_stage"]=52 + }, + [11105]={ + ["distance"]=66625, + ["mine_stage"]=10 + }, + [11106]={ + ["distance"]=66631, + ["mine_stage"]=35 + }, + [11107]={ + ["distance"]=66637, + ["mine_stage"]=29 + }, + [11108]={ + ["distance"]=66643, + ["mine_stage"]=24 + }, + [11109]={ + ["distance"]=66649, + ["mine_stage"]=60 + }, + [11110]={ + ["distance"]=66655, + ["mine_stage"]=9 + }, + [11111]={ + ["distance"]=66661, + ["mine_stage"]=23 + }, + [11112]={ + ["distance"]=66667, + ["mine_stage"]=3 + }, + [11113]={ + ["distance"]=66673, + ["mine_stage"]=8 + }, + [11114]={ + ["distance"]=66679, + ["mine_stage"]=13 + }, + [11115]={ + ["distance"]=66685, + ["mine_stage"]=37 + }, + [11116]={ + ["distance"]=66691, + ["mine_stage"]=1 + }, + [11117]={ + ["distance"]=66697, + ["mine_stage"]=47 + }, + [11118]={ + ["distance"]=66703, + ["mine_stage"]=8 + }, + [11119]={ + ["distance"]=66709, + ["mine_stage"]=52 + }, + [11120]={ + ["distance"]=66715, + ["mine_stage"]=36 + }, + [11121]={ + ["distance"]=66721, + ["mine_stage"]=56 + }, + [11122]={ + ["distance"]=66727, + ["mine_stage"]=15 + }, + [11123]={ + ["distance"]=66733, + ["mine_stage"]=49 + }, + [11124]={ + ["distance"]=66739, + ["mine_stage"]=46 + }, + [11125]={ + ["distance"]=66745, + ["mine_stage"]=18 + }, + [11126]={ + ["distance"]=66751, + ["mine_stage"]=34 + }, + [11127]={ + ["distance"]=66757, + ["mine_stage"]=52 + }, + [11128]={ + ["distance"]=66763, + ["mine_stage"]=31 + }, + [11129]={ + ["distance"]=66769, + ["mine_stage"]=13 + }, + [11130]={ + ["distance"]=66775, + ["mine_stage"]=35 + }, + [11131]={ + ["distance"]=66781, + ["mine_stage"]=21 + }, + [11132]={ + ["distance"]=66787, + ["mine_stage"]=6 + }, + [11133]={ + ["distance"]=66793, + ["mine_stage"]=3 + }, + [11134]={ + ["distance"]=66799, + ["mine_stage"]=18 + }, + [11135]={ + ["distance"]=66805, + ["mine_stage"]=24 + }, + [11136]={ + ["distance"]=66811, + ["mine_stage"]=47 + }, + [11137]={ + ["distance"]=66817, + ["mine_stage"]=57 + }, + [11138]={ + ["distance"]=66823, + ["mine_stage"]=51 + }, + [11139]={ + ["distance"]=66829, + ["mine_stage"]=45 + }, + [11140]={ + ["distance"]=66835, + ["mine_stage"]=18 + }, + [11141]={ + ["distance"]=66841, + ["mine_stage"]=48 + }, + [11142]={ + ["distance"]=66847, + ["mine_stage"]=5 + }, + [11143]={ + ["distance"]=66853, + ["mine_stage"]=59 + }, + [11144]={ + ["distance"]=66859, + ["mine_stage"]=17 + }, + [11145]={ + ["distance"]=66865, + ["mine_stage"]=17 + }, + [11146]={ + ["distance"]=66871, + ["mine_stage"]=7 + }, + [11147]={ + ["distance"]=66877, + ["mine_stage"]=39 + }, + [11148]={ + ["distance"]=66883, + ["mine_stage"]=10 + }, + [11149]={ + ["distance"]=66889, + ["mine_stage"]=52 + }, + [11150]={ + ["distance"]=66895, + ["mine_stage"]=5 + }, + [11151]={ + ["distance"]=66901, + ["mine_stage"]=69 + }, + [11152]={ + ["distance"]=66907, + ["mine_stage"]=39 + }, + [11153]={ + ["distance"]=66913, + ["mine_stage"]=19 + }, + [11154]={ + ["distance"]=66919, + ["mine_stage"]=29 + }, + [11155]={ + ["distance"]=66925, + ["mine_stage"]=22 + }, + [11156]={ + ["distance"]=66931, + ["mine_stage"]=5 + }, + [11157]={ + ["distance"]=66937, + ["mine_stage"]=43 + }, + [11158]={ + ["distance"]=66943, + ["mine_stage"]=36 + }, + [11159]={ + ["distance"]=66949, + ["mine_stage"]=48 + }, + [11160]={ + ["distance"]=66955, + ["mine_stage"]=5 + }, + [11161]={ + ["distance"]=66961, + ["mine_stage"]=43 + }, + [11162]={ + ["distance"]=66967, + ["mine_stage"]=42 + }, + [11163]={ + ["distance"]=66973, + ["mine_stage"]=20 + }, + [11164]={ + ["distance"]=66979, + ["mine_stage"]=56 + }, + [11165]={ + ["distance"]=66985, + ["mine_stage"]=28 + }, + [11166]={ + ["distance"]=66991, + ["mine_stage"]=2 + }, + [11167]={ + ["distance"]=66997, + ["mine_stage"]=58 + }, + [11168]={ + ["distance"]=67003, + ["mine_stage"]=24 + }, + [11169]={ + ["distance"]=67009, + ["mine_stage"]=43 + }, + [11170]={ + ["distance"]=67015, + ["mine_stage"]=39 + }, + [11171]={ + ["distance"]=67021, + ["mine_stage"]=23 + }, + [11172]={ + ["distance"]=67027, + ["mine_stage"]=10 + }, + [11173]={ + ["distance"]=67033, + ["mine_stage"]=47 + }, + [11174]={ + ["distance"]=67039, + ["mine_stage"]=44 + }, + [11175]={ + ["distance"]=67045, + ["mine_stage"]=26 + }, + [11176]={ + ["distance"]=67051, + ["mine_stage"]=59 + }, + [11177]={ + ["distance"]=67057, + ["mine_stage"]=28 + }, + [11178]={ + ["distance"]=67063, + ["mine_stage"]=53 + }, + [11179]={ + ["distance"]=67069, + ["mine_stage"]=10 + }, + [11180]={ + ["distance"]=67075, + ["mine_stage"]=21 + }, + [11181]={ + ["distance"]=67081, + ["mine_stage"]=43 + }, + [11182]={ + ["distance"]=67087, + ["mine_stage"]=35 + }, + [11183]={ + ["distance"]=67093, + ["mine_stage"]=29 + }, + [11184]={ + ["distance"]=67099, + ["mine_stage"]=23 + }, + [11185]={ + ["distance"]=67105, + ["mine_stage"]=2 + }, + [11186]={ + ["distance"]=67111, + ["mine_stage"]=47 + }, + [11187]={ + ["distance"]=67117, + ["mine_stage"]=53 + }, + [11188]={ + ["distance"]=67123, + ["mine_stage"]=28 + }, + [11189]={ + ["distance"]=67129, + ["mine_stage"]=7 + }, + [11190]={ + ["distance"]=67135, + ["mine_stage"]=29 + }, + [11191]={ + ["distance"]=67141, + ["mine_stage"]=57 + }, + [11192]={ + ["distance"]=67147, + ["mine_stage"]=40 + }, + [11193]={ + ["distance"]=67153, + ["mine_stage"]=19 + }, + [11194]={ + ["distance"]=67159, + ["mine_stage"]=6 + }, + [11195]={ + ["distance"]=67165, + ["mine_stage"]=38 + }, + [11196]={ + ["distance"]=67171, + ["mine_stage"]=9 + }, + [11197]={ + ["distance"]=67177, + ["mine_stage"]=17 + }, + [11198]={ + ["distance"]=67183, + ["mine_stage"]=51 + }, + [11199]={ + ["distance"]=67189, + ["mine_stage"]=34 + }, + [11200]={ + ["distance"]=67195, + ["mine_stage"]=37 + }, + [11201]={ + ["distance"]=67201, + ["mine_stage"]=64 + }, + [11202]={ + ["distance"]=67207, + ["mine_stage"]=46 + }, + [11203]={ + ["distance"]=67213, + ["mine_stage"]=49 + }, + [11204]={ + ["distance"]=67219, + ["mine_stage"]=49 + }, + [11205]={ + ["distance"]=67225, + ["mine_stage"]=11 + }, + [11206]={ + ["distance"]=67231, + ["mine_stage"]=55 + }, + [11207]={ + ["distance"]=67237, + ["mine_stage"]=59 + }, + [11208]={ + ["distance"]=67243, + ["mine_stage"]=9 + }, + [11209]={ + ["distance"]=67249, + ["mine_stage"]=46 + }, + [11210]={ + ["distance"]=67255, + ["mine_stage"]=60 + }, + [11211]={ + ["distance"]=67261, + ["mine_stage"]=22 + }, + [11212]={ + ["distance"]=67267, + ["mine_stage"]=55 + }, + [11213]={ + ["distance"]=67273, + ["mine_stage"]=32 + }, + [11214]={ + ["distance"]=67279, + ["mine_stage"]=30 + }, + [11215]={ + ["distance"]=67285, + ["mine_stage"]=7 + }, + [11216]={ + ["distance"]=67291, + ["mine_stage"]=19 + }, + [11217]={ + ["distance"]=67297, + ["mine_stage"]=42 + }, + [11218]={ + ["distance"]=67303, + ["mine_stage"]=48 + }, + [11219]={ + ["distance"]=67309, + ["mine_stage"]=24 + }, + [11220]={ + ["distance"]=67315, + ["mine_stage"]=39 + }, + [11221]={ + ["distance"]=67321, + ["mine_stage"]=43 + }, + [11222]={ + ["distance"]=67327, + ["mine_stage"]=53 + }, + [11223]={ + ["distance"]=67333, + ["mine_stage"]=56 + }, + [11224]={ + ["distance"]=67339, + ["mine_stage"]=35 + }, + [11225]={ + ["distance"]=67345, + ["mine_stage"]=38 + }, + [11226]={ + ["distance"]=67351, + ["mine_stage"]=49 + }, + [11227]={ + ["distance"]=67357, + ["mine_stage"]=12 + }, + [11228]={ + ["distance"]=67363, + ["mine_stage"]=45 + }, + [11229]={ + ["distance"]=67369, + ["mine_stage"]=20 + }, + [11230]={ + ["distance"]=67375, + ["mine_stage"]=8 + }, + [11231]={ + ["distance"]=67381, + ["mine_stage"]=59 + }, + [11232]={ + ["distance"]=67387, + ["mine_stage"]=37 + }, + [11233]={ + ["distance"]=67393, + ["mine_stage"]=5 + }, + [11234]={ + ["distance"]=67399, + ["mine_stage"]=32 + }, + [11235]={ + ["distance"]=67405, + ["mine_stage"]=22 + }, + [11236]={ + ["distance"]=67411, + ["mine_stage"]=48 + }, + [11237]={ + ["distance"]=67417, + ["mine_stage"]=19 + }, + [11238]={ + ["distance"]=67423, + ["mine_stage"]=43 + }, + [11239]={ + ["distance"]=67429, + ["mine_stage"]=20 + }, + [11240]={ + ["distance"]=67435, + ["mine_stage"]=2 + }, + [11241]={ + ["distance"]=67441, + ["mine_stage"]=12 + }, + [11242]={ + ["distance"]=67447, + ["mine_stage"]=40 + }, + [11243]={ + ["distance"]=67453, + ["mine_stage"]=21 + }, + [11244]={ + ["distance"]=67459, + ["mine_stage"]=28 + }, + [11245]={ + ["distance"]=67465, + ["mine_stage"]=16 + }, + [11246]={ + ["distance"]=67471, + ["mine_stage"]=46 + }, + [11247]={ + ["distance"]=67477, + ["mine_stage"]=26 + }, + [11248]={ + ["distance"]=67483, + ["mine_stage"]=13 + }, + [11249]={ + ["distance"]=67489, + ["mine_stage"]=14 + }, + [11250]={ + ["distance"]=67495, + ["mine_stage"]=54 + }, + [11251]={ + ["distance"]=67501, + ["mine_stage"]=67 + }, + [11252]={ + ["distance"]=67507, + ["mine_stage"]=8 + }, + [11253]={ + ["distance"]=67513, + ["mine_stage"]=36 + }, + [11254]={ + ["distance"]=67519, + ["mine_stage"]=2 + }, + [11255]={ + ["distance"]=67525, + ["mine_stage"]=31 + }, + [11256]={ + ["distance"]=67531, + ["mine_stage"]=58 + }, + [11257]={ + ["distance"]=67537, + ["mine_stage"]=18 + }, + [11258]={ + ["distance"]=67543, + ["mine_stage"]=9 + }, + [11259]={ + ["distance"]=67549, + ["mine_stage"]=30 + }, + [11260]={ + ["distance"]=67555, + ["mine_stage"]=8 + }, + [11261]={ + ["distance"]=67561, + ["mine_stage"]=11 + }, + [11262]={ + ["distance"]=67567, + ["mine_stage"]=7 + }, + [11263]={ + ["distance"]=67573, + ["mine_stage"]=1 + }, + [11264]={ + ["distance"]=67579, + ["mine_stage"]=45 + }, + [11265]={ + ["distance"]=67585, + ["mine_stage"]=36 + }, + [11266]={ + ["distance"]=67591, + ["mine_stage"]=52 + }, + [11267]={ + ["distance"]=67597, + ["mine_stage"]=59 + }, + [11268]={ + ["distance"]=67603, + ["mine_stage"]=30 + }, + [11269]={ + ["distance"]=67609, + ["mine_stage"]=41 + }, + [11270]={ + ["distance"]=67615, + ["mine_stage"]=5 + }, + [11271]={ + ["distance"]=67621, + ["mine_stage"]=14 + }, + [11272]={ + ["distance"]=67627, + ["mine_stage"]=33 + }, + [11273]={ + ["distance"]=67633, + ["mine_stage"]=44 + }, + [11274]={ + ["distance"]=67639, + ["mine_stage"]=23 + }, + [11275]={ + ["distance"]=67645, + ["mine_stage"]=13 + }, + [11276]={ + ["distance"]=67651, + ["mine_stage"]=25 + }, + [11277]={ + ["distance"]=67657, + ["mine_stage"]=49 + }, + [11278]={ + ["distance"]=67663, + ["mine_stage"]=21 + }, + [11279]={ + ["distance"]=67669, + ["mine_stage"]=59 + }, + [11280]={ + ["distance"]=67675, + ["mine_stage"]=1 + }, + [11281]={ + ["distance"]=67681, + ["mine_stage"]=24 + }, + [11282]={ + ["distance"]=67687, + ["mine_stage"]=38 + }, + [11283]={ + ["distance"]=67693, + ["mine_stage"]=3 + }, + [11284]={ + ["distance"]=67699, + ["mine_stage"]=13 + }, + [11285]={ + ["distance"]=67705, + ["mine_stage"]=22 + }, + [11286]={ + ["distance"]=67711, + ["mine_stage"]=40 + }, + [11287]={ + ["distance"]=67717, + ["mine_stage"]=19 + }, + [11288]={ + ["distance"]=67723, + ["mine_stage"]=59 + }, + [11289]={ + ["distance"]=67729, + ["mine_stage"]=11 + }, + [11290]={ + ["distance"]=67735, + ["mine_stage"]=15 + }, + [11291]={ + ["distance"]=67741, + ["mine_stage"]=37 + }, + [11292]={ + ["distance"]=67747, + ["mine_stage"]=52 + }, + [11293]={ + ["distance"]=67753, + ["mine_stage"]=54 + }, + [11294]={ + ["distance"]=67759, + ["mine_stage"]=46 + }, + [11295]={ + ["distance"]=67765, + ["mine_stage"]=39 + }, + [11296]={ + ["distance"]=67771, + ["mine_stage"]=28 + }, + [11297]={ + ["distance"]=67777, + ["mine_stage"]=51 + }, + [11298]={ + ["distance"]=67783, + ["mine_stage"]=47 + }, + [11299]={ + ["distance"]=67789, + ["mine_stage"]=52 + }, + [11300]={ + ["distance"]=67795, + ["mine_stage"]=48 + }, + [11301]={ + ["distance"]=67801, + ["mine_stage"]=65 + }, + [11302]={ + ["distance"]=67807, + ["mine_stage"]=19 + }, + [11303]={ + ["distance"]=67813, + ["mine_stage"]=35 + }, + [11304]={ + ["distance"]=67819, + ["mine_stage"]=25 + }, + [11305]={ + ["distance"]=67825, + ["mine_stage"]=32 + }, + [11306]={ + ["distance"]=67831, + ["mine_stage"]=25 + }, + [11307]={ + ["distance"]=67837, + ["mine_stage"]=20 + }, + [11308]={ + ["distance"]=67843, + ["mine_stage"]=25 + }, + [11309]={ + ["distance"]=67849, + ["mine_stage"]=57 + }, + [11310]={ + ["distance"]=67855, + ["mine_stage"]=31 + }, + [11311]={ + ["distance"]=67861, + ["mine_stage"]=48 + }, + [11312]={ + ["distance"]=67867, + ["mine_stage"]=11 + }, + [11313]={ + ["distance"]=67873, + ["mine_stage"]=13 + }, + [11314]={ + ["distance"]=67879, + ["mine_stage"]=40 + }, + [11315]={ + ["distance"]=67885, + ["mine_stage"]=55 + }, + [11316]={ + ["distance"]=67891, + ["mine_stage"]=8 + }, + [11317]={ + ["distance"]=67897, + ["mine_stage"]=47 + }, + [11318]={ + ["distance"]=67903, + ["mine_stage"]=49 + }, + [11319]={ + ["distance"]=67909, + ["mine_stage"]=9 + }, + [11320]={ + ["distance"]=67915, + ["mine_stage"]=25 + }, + [11321]={ + ["distance"]=67921, + ["mine_stage"]=6 + }, + [11322]={ + ["distance"]=67927, + ["mine_stage"]=26 + }, + [11323]={ + ["distance"]=67933, + ["mine_stage"]=48 + }, + [11324]={ + ["distance"]=67939, + ["mine_stage"]=28 + }, + [11325]={ + ["distance"]=67945, + ["mine_stage"]=7 + }, + [11326]={ + ["distance"]=67951, + ["mine_stage"]=29 + }, + [11327]={ + ["distance"]=67957, + ["mine_stage"]=11 + }, + [11328]={ + ["distance"]=67963, + ["mine_stage"]=28 + }, + [11329]={ + ["distance"]=67969, + ["mine_stage"]=1 + }, + [11330]={ + ["distance"]=67975, + ["mine_stage"]=39 + }, + [11331]={ + ["distance"]=67981, + ["mine_stage"]=41 + }, + [11332]={ + ["distance"]=67987, + ["mine_stage"]=42 + }, + [11333]={ + ["distance"]=67993, + ["mine_stage"]=60 + }, + [11334]={ + ["distance"]=67999, + ["mine_stage"]=53 + }, + [11335]={ + ["distance"]=68005, + ["mine_stage"]=4 + }, + [11336]={ + ["distance"]=68011, + ["mine_stage"]=18 + }, + [11337]={ + ["distance"]=68017, + ["mine_stage"]=58 + }, + [11338]={ + ["distance"]=68023, + ["mine_stage"]=55 + }, + [11339]={ + ["distance"]=68029, + ["mine_stage"]=58 + }, + [11340]={ + ["distance"]=68035, + ["mine_stage"]=59 + }, + [11341]={ + ["distance"]=68041, + ["mine_stage"]=34 + }, + [11342]={ + ["distance"]=68047, + ["mine_stage"]=28 + }, + [11343]={ + ["distance"]=68053, + ["mine_stage"]=36 + }, + [11344]={ + ["distance"]=68059, + ["mine_stage"]=26 + }, + [11345]={ + ["distance"]=68065, + ["mine_stage"]=32 + }, + [11346]={ + ["distance"]=68071, + ["mine_stage"]=51 + }, + [11347]={ + ["distance"]=68077, + ["mine_stage"]=6 + }, + [11348]={ + ["distance"]=68083, + ["mine_stage"]=50 + }, + [11349]={ + ["distance"]=68089, + ["mine_stage"]=7 + }, + [11350]={ + ["distance"]=68095, + ["mine_stage"]=11 + }, + [11351]={ + ["distance"]=68101, + ["mine_stage"]=68 + }, + [11352]={ + ["distance"]=68107, + ["mine_stage"]=59 + }, + [11353]={ + ["distance"]=68113, + ["mine_stage"]=25 + }, + [11354]={ + ["distance"]=68119, + ["mine_stage"]=35 + }, + [11355]={ + ["distance"]=68125, + ["mine_stage"]=49 + }, + [11356]={ + ["distance"]=68131, + ["mine_stage"]=33 + }, + [11357]={ + ["distance"]=68137, + ["mine_stage"]=22 + }, + [11358]={ + ["distance"]=68143, + ["mine_stage"]=57 + }, + [11359]={ + ["distance"]=68149, + ["mine_stage"]=11 + }, + [11360]={ + ["distance"]=68155, + ["mine_stage"]=2 + }, + [11361]={ + ["distance"]=68161, + ["mine_stage"]=9 + }, + [11362]={ + ["distance"]=68167, + ["mine_stage"]=24 + }, + [11363]={ + ["distance"]=68173, + ["mine_stage"]=46 + }, + [11364]={ + ["distance"]=68179, + ["mine_stage"]=46 + }, + [11365]={ + ["distance"]=68185, + ["mine_stage"]=21 + }, + [11366]={ + ["distance"]=68191, + ["mine_stage"]=7 + }, + [11367]={ + ["distance"]=68197, + ["mine_stage"]=51 + }, + [11368]={ + ["distance"]=68203, + ["mine_stage"]=30 + }, + [11369]={ + ["distance"]=68209, + ["mine_stage"]=46 + }, + [11370]={ + ["distance"]=68215, + ["mine_stage"]=23 + }, + [11371]={ + ["distance"]=68221, + ["mine_stage"]=1 + }, + [11372]={ + ["distance"]=68227, + ["mine_stage"]=42 + }, + [11373]={ + ["distance"]=68233, + ["mine_stage"]=34 + }, + [11374]={ + ["distance"]=68239, + ["mine_stage"]=32 + }, + [11375]={ + ["distance"]=68245, + ["mine_stage"]=25 + }, + [11376]={ + ["distance"]=68251, + ["mine_stage"]=35 + }, + [11377]={ + ["distance"]=68257, + ["mine_stage"]=47 + }, + [11378]={ + ["distance"]=68263, + ["mine_stage"]=50 + }, + [11379]={ + ["distance"]=68269, + ["mine_stage"]=7 + }, + [11380]={ + ["distance"]=68275, + ["mine_stage"]=57 + }, + [11381]={ + ["distance"]=68281, + ["mine_stage"]=21 + }, + [11382]={ + ["distance"]=68287, + ["mine_stage"]=43 + }, + [11383]={ + ["distance"]=68293, + ["mine_stage"]=34 + }, + [11384]={ + ["distance"]=68299, + ["mine_stage"]=26 + }, + [11385]={ + ["distance"]=68305, + ["mine_stage"]=27 + }, + [11386]={ + ["distance"]=68311, + ["mine_stage"]=54 + }, + [11387]={ + ["distance"]=68317, + ["mine_stage"]=34 + }, + [11388]={ + ["distance"]=68323, + ["mine_stage"]=5 + }, + [11389]={ + ["distance"]=68329, + ["mine_stage"]=35 + }, + [11390]={ + ["distance"]=68335, + ["mine_stage"]=45 + }, + [11391]={ + ["distance"]=68341, + ["mine_stage"]=35 + }, + [11392]={ + ["distance"]=68347, + ["mine_stage"]=40 + }, + [11393]={ + ["distance"]=68353, + ["mine_stage"]=22 + }, + [11394]={ + ["distance"]=68359, + ["mine_stage"]=25 + }, + [11395]={ + ["distance"]=68365, + ["mine_stage"]=38 + }, + [11396]={ + ["distance"]=68371, + ["mine_stage"]=41 + }, + [11397]={ + ["distance"]=68377, + ["mine_stage"]=28 + }, + [11398]={ + ["distance"]=68383, + ["mine_stage"]=50 + }, + [11399]={ + ["distance"]=68389, + ["mine_stage"]=31 + }, + [11400]={ + ["distance"]=68395, + ["mine_stage"]=54 + }, + [11401]={ + ["distance"]=68401, + ["mine_stage"]=66 + }, + [11402]={ + ["distance"]=68407, + ["mine_stage"]=13 + }, + [11403]={ + ["distance"]=68413, + ["mine_stage"]=23 + }, + [11404]={ + ["distance"]=68419, + ["mine_stage"]=8 + }, + [11405]={ + ["distance"]=68425, + ["mine_stage"]=19 + }, + [11406]={ + ["distance"]=68431, + ["mine_stage"]=19 + }, + [11407]={ + ["distance"]=68437, + ["mine_stage"]=50 + }, + [11408]={ + ["distance"]=68443, + ["mine_stage"]=14 + }, + [11409]={ + ["distance"]=68449, + ["mine_stage"]=14 + }, + [11410]={ + ["distance"]=68455, + ["mine_stage"]=52 + }, + [11411]={ + ["distance"]=68461, + ["mine_stage"]=5 + }, + [11412]={ + ["distance"]=68467, + ["mine_stage"]=53 + }, + [11413]={ + ["distance"]=68473, + ["mine_stage"]=4 + }, + [11414]={ + ["distance"]=68479, + ["mine_stage"]=37 + }, + [11415]={ + ["distance"]=68485, + ["mine_stage"]=58 + }, + [11416]={ + ["distance"]=68491, + ["mine_stage"]=59 + }, + [11417]={ + ["distance"]=68497, + ["mine_stage"]=15 + }, + [11418]={ + ["distance"]=68503, + ["mine_stage"]=32 + }, + [11419]={ + ["distance"]=68509, + ["mine_stage"]=47 + }, + [11420]={ + ["distance"]=68515, + ["mine_stage"]=53 + }, + [11421]={ + ["distance"]=68521, + ["mine_stage"]=60 + }, + [11422]={ + ["distance"]=68527, + ["mine_stage"]=60 + }, + [11423]={ + ["distance"]=68533, + ["mine_stage"]=20 + }, + [11424]={ + ["distance"]=68539, + ["mine_stage"]=20 + }, + [11425]={ + ["distance"]=68545, + ["mine_stage"]=33 + }, + [11426]={ + ["distance"]=68551, + ["mine_stage"]=34 + }, + [11427]={ + ["distance"]=68557, + ["mine_stage"]=21 + }, + [11428]={ + ["distance"]=68563, + ["mine_stage"]=54 + }, + [11429]={ + ["distance"]=68569, + ["mine_stage"]=14 + }, + [11430]={ + ["distance"]=68575, + ["mine_stage"]=40 + }, + [11431]={ + ["distance"]=68581, + ["mine_stage"]=24 + }, + [11432]={ + ["distance"]=68587, + ["mine_stage"]=21 + }, + [11433]={ + ["distance"]=68593, + ["mine_stage"]=44 + }, + [11434]={ + ["distance"]=68599, + ["mine_stage"]=49 + }, + [11435]={ + ["distance"]=68605, + ["mine_stage"]=19 + }, + [11436]={ + ["distance"]=68611, + ["mine_stage"]=12 + }, + [11437]={ + ["distance"]=68617, + ["mine_stage"]=24 + }, + [11438]={ + ["distance"]=68623, + ["mine_stage"]=40 + }, + [11439]={ + ["distance"]=68629, + ["mine_stage"]=45 + }, + [11440]={ + ["distance"]=68635, + ["mine_stage"]=54 + }, + [11441]={ + ["distance"]=68641, + ["mine_stage"]=35 + }, + [11442]={ + ["distance"]=68647, + ["mine_stage"]=7 + }, + [11443]={ + ["distance"]=68653, + ["mine_stage"]=8 + }, + [11444]={ + ["distance"]=68659, + ["mine_stage"]=45 + }, + [11445]={ + ["distance"]=68665, + ["mine_stage"]=53 + }, + [11446]={ + ["distance"]=68671, + ["mine_stage"]=2 + }, + [11447]={ + ["distance"]=68677, + ["mine_stage"]=8 + }, + [11448]={ + ["distance"]=68683, + ["mine_stage"]=59 + }, + [11449]={ + ["distance"]=68689, + ["mine_stage"]=38 + }, + [11450]={ + ["distance"]=68695, + ["mine_stage"]=58 + }, + [11451]={ + ["distance"]=68701, + ["mine_stage"]=69 + }, + [11452]={ + ["distance"]=68707, + ["mine_stage"]=13 + }, + [11453]={ + ["distance"]=68713, + ["mine_stage"]=33 + }, + [11454]={ + ["distance"]=68719, + ["mine_stage"]=39 + }, + [11455]={ + ["distance"]=68725, + ["mine_stage"]=26 + }, + [11456]={ + ["distance"]=68731, + ["mine_stage"]=29 + }, + [11457]={ + ["distance"]=68737, + ["mine_stage"]=8 + }, + [11458]={ + ["distance"]=68743, + ["mine_stage"]=18 + }, + [11459]={ + ["distance"]=68749, + ["mine_stage"]=37 + }, + [11460]={ + ["distance"]=68755, + ["mine_stage"]=4 + }, + [11461]={ + ["distance"]=68761, + ["mine_stage"]=1 + }, + [11462]={ + ["distance"]=68767, + ["mine_stage"]=19 + }, + [11463]={ + ["distance"]=68773, + ["mine_stage"]=6 + }, + [11464]={ + ["distance"]=68779, + ["mine_stage"]=26 + }, + [11465]={ + ["distance"]=68785, + ["mine_stage"]=55 + }, + [11466]={ + ["distance"]=68791, + ["mine_stage"]=3 + }, + [11467]={ + ["distance"]=68797, + ["mine_stage"]=56 + }, + [11468]={ + ["distance"]=68803, + ["mine_stage"]=15 + }, + [11469]={ + ["distance"]=68809, + ["mine_stage"]=44 + }, + [11470]={ + ["distance"]=68815, + ["mine_stage"]=28 + }, + [11471]={ + ["distance"]=68821, + ["mine_stage"]=54 + }, + [11472]={ + ["distance"]=68827, + ["mine_stage"]=52 + }, + [11473]={ + ["distance"]=68833, + ["mine_stage"]=38 + }, + [11474]={ + ["distance"]=68839, + ["mine_stage"]=11 + }, + [11475]={ + ["distance"]=68845, + ["mine_stage"]=59 + }, + [11476]={ + ["distance"]=68851, + ["mine_stage"]=46 + }, + [11477]={ + ["distance"]=68857, + ["mine_stage"]=34 + }, + [11478]={ + ["distance"]=68863, + ["mine_stage"]=43 + }, + [11479]={ + ["distance"]=68869, + ["mine_stage"]=3 + }, + [11480]={ + ["distance"]=68875, + ["mine_stage"]=56 + }, + [11481]={ + ["distance"]=68881, + ["mine_stage"]=27 + }, + [11482]={ + ["distance"]=68887, + ["mine_stage"]=54 + }, + [11483]={ + ["distance"]=68893, + ["mine_stage"]=19 + }, + [11484]={ + ["distance"]=68899, + ["mine_stage"]=47 + }, + [11485]={ + ["distance"]=68905, + ["mine_stage"]=57 + }, + [11486]={ + ["distance"]=68911, + ["mine_stage"]=34 + }, + [11487]={ + ["distance"]=68917, + ["mine_stage"]=52 + }, + [11488]={ + ["distance"]=68923, + ["mine_stage"]=54 + }, + [11489]={ + ["distance"]=68929, + ["mine_stage"]=39 + }, + [11490]={ + ["distance"]=68935, + ["mine_stage"]=14 + }, + [11491]={ + ["distance"]=68941, + ["mine_stage"]=6 + }, + [11492]={ + ["distance"]=68947, + ["mine_stage"]=4 + }, + [11493]={ + ["distance"]=68953, + ["mine_stage"]=38 + }, + [11494]={ + ["distance"]=68959, + ["mine_stage"]=26 + }, + [11495]={ + ["distance"]=68965, + ["mine_stage"]=36 + }, + [11496]={ + ["distance"]=68971, + ["mine_stage"]=36 + }, + [11497]={ + ["distance"]=68977, + ["mine_stage"]=15 + }, + [11498]={ + ["distance"]=68983, + ["mine_stage"]=46 + }, + [11499]={ + ["distance"]=68989, + ["mine_stage"]=15 + }, + [11500]={ + ["distance"]=68995, + ["mine_stage"]=33 + }, + [11501]={ + ["distance"]=69001, + ["mine_stage"]=64 + }, + [11502]={ + ["distance"]=69007, + ["mine_stage"]=8 + }, + [11503]={ + ["distance"]=69013, + ["mine_stage"]=17 + }, + [11504]={ + ["distance"]=69019, + ["mine_stage"]=46 + }, + [11505]={ + ["distance"]=69025, + ["mine_stage"]=15 + }, + [11506]={ + ["distance"]=69031, + ["mine_stage"]=27 + }, + [11507]={ + ["distance"]=69037, + ["mine_stage"]=16 + }, + [11508]={ + ["distance"]=69043, + ["mine_stage"]=40 + }, + [11509]={ + ["distance"]=69049, + ["mine_stage"]=11 + }, + [11510]={ + ["distance"]=69055, + ["mine_stage"]=47 + }, + [11511]={ + ["distance"]=69061, + ["mine_stage"]=1 + }, + [11512]={ + ["distance"]=69067, + ["mine_stage"]=28 + }, + [11513]={ + ["distance"]=69073, + ["mine_stage"]=51 + }, + [11514]={ + ["distance"]=69079, + ["mine_stage"]=40 + }, + [11515]={ + ["distance"]=69085, + ["mine_stage"]=54 + }, + [11516]={ + ["distance"]=69091, + ["mine_stage"]=8 + }, + [11517]={ + ["distance"]=69097, + ["mine_stage"]=32 + }, + [11518]={ + ["distance"]=69103, + ["mine_stage"]=47 + }, + [11519]={ + ["distance"]=69109, + ["mine_stage"]=8 + }, + [11520]={ + ["distance"]=69115, + ["mine_stage"]=55 + }, + [11521]={ + ["distance"]=69121, + ["mine_stage"]=3 + }, + [11522]={ + ["distance"]=69127, + ["mine_stage"]=26 + }, + [11523]={ + ["distance"]=69133, + ["mine_stage"]=7 + }, + [11524]={ + ["distance"]=69139, + ["mine_stage"]=2 + }, + [11525]={ + ["distance"]=69145, + ["mine_stage"]=46 + }, + [11526]={ + ["distance"]=69151, + ["mine_stage"]=3 + }, + [11527]={ + ["distance"]=69157, + ["mine_stage"]=13 + }, + [11528]={ + ["distance"]=69163, + ["mine_stage"]=59 + }, + [11529]={ + ["distance"]=69169, + ["mine_stage"]=29 + }, + [11530]={ + ["distance"]=69175, + ["mine_stage"]=14 + }, + [11531]={ + ["distance"]=69181, + ["mine_stage"]=29 + }, + [11532]={ + ["distance"]=69187, + ["mine_stage"]=25 + }, + [11533]={ + ["distance"]=69193, + ["mine_stage"]=18 + }, + [11534]={ + ["distance"]=69199, + ["mine_stage"]=51 + }, + [11535]={ + ["distance"]=69205, + ["mine_stage"]=46 + }, + [11536]={ + ["distance"]=69211, + ["mine_stage"]=42 + }, + [11537]={ + ["distance"]=69217, + ["mine_stage"]=2 + }, + [11538]={ + ["distance"]=69223, + ["mine_stage"]=30 + }, + [11539]={ + ["distance"]=69229, + ["mine_stage"]=21 + }, + [11540]={ + ["distance"]=69235, + ["mine_stage"]=6 + }, + [11541]={ + ["distance"]=69241, + ["mine_stage"]=32 + }, + [11542]={ + ["distance"]=69247, + ["mine_stage"]=13 + }, + [11543]={ + ["distance"]=69253, + ["mine_stage"]=10 + }, + [11544]={ + ["distance"]=69259, + ["mine_stage"]=17 + }, + [11545]={ + ["distance"]=69265, + ["mine_stage"]=39 + }, + [11546]={ + ["distance"]=69271, + ["mine_stage"]=52 + }, + [11547]={ + ["distance"]=69277, + ["mine_stage"]=36 + }, + [11548]={ + ["distance"]=69283, + ["mine_stage"]=53 + }, + [11549]={ + ["distance"]=69289, + ["mine_stage"]=24 + }, + [11550]={ + ["distance"]=69295, + ["mine_stage"]=49 + }, + [11551]={ + ["distance"]=69301, + ["mine_stage"]=67 + }, + [11552]={ + ["distance"]=69307, + ["mine_stage"]=52 + }, + [11553]={ + ["distance"]=69313, + ["mine_stage"]=60 + }, + [11554]={ + ["distance"]=69319, + ["mine_stage"]=9 + }, + [11555]={ + ["distance"]=69325, + ["mine_stage"]=49 + }, + [11556]={ + ["distance"]=69331, + ["mine_stage"]=22 + }, + [11557]={ + ["distance"]=69337, + ["mine_stage"]=6 + }, + [11558]={ + ["distance"]=69343, + ["mine_stage"]=57 + }, + [11559]={ + ["distance"]=69349, + ["mine_stage"]=12 + }, + [11560]={ + ["distance"]=69355, + ["mine_stage"]=52 + }, + [11561]={ + ["distance"]=69361, + ["mine_stage"]=36 + }, + [11562]={ + ["distance"]=69367, + ["mine_stage"]=4 + }, + [11563]={ + ["distance"]=69373, + ["mine_stage"]=12 + }, + [11564]={ + ["distance"]=69379, + ["mine_stage"]=15 + }, + [11565]={ + ["distance"]=69385, + ["mine_stage"]=6 + }, + [11566]={ + ["distance"]=69391, + ["mine_stage"]=29 + }, + [11567]={ + ["distance"]=69397, + ["mine_stage"]=36 + }, + [11568]={ + ["distance"]=69403, + ["mine_stage"]=37 + }, + [11569]={ + ["distance"]=69409, + ["mine_stage"]=4 + }, + [11570]={ + ["distance"]=69415, + ["mine_stage"]=60 + }, + [11571]={ + ["distance"]=69421, + ["mine_stage"]=30 + }, + [11572]={ + ["distance"]=69427, + ["mine_stage"]=10 + }, + [11573]={ + ["distance"]=69433, + ["mine_stage"]=24 + }, + [11574]={ + ["distance"]=69439, + ["mine_stage"]=49 + }, + [11575]={ + ["distance"]=69445, + ["mine_stage"]=42 + }, + [11576]={ + ["distance"]=69451, + ["mine_stage"]=36 + }, + [11577]={ + ["distance"]=69457, + ["mine_stage"]=53 + }, + [11578]={ + ["distance"]=69463, + ["mine_stage"]=46 + }, + [11579]={ + ["distance"]=69469, + ["mine_stage"]=19 + }, + [11580]={ + ["distance"]=69475, + ["mine_stage"]=36 + }, + [11581]={ + ["distance"]=69481, + ["mine_stage"]=40 + }, + [11582]={ + ["distance"]=69487, + ["mine_stage"]=34 + }, + [11583]={ + ["distance"]=69493, + ["mine_stage"]=4 + }, + [11584]={ + ["distance"]=69499, + ["mine_stage"]=46 + }, + [11585]={ + ["distance"]=69505, + ["mine_stage"]=15 + }, + [11586]={ + ["distance"]=69511, + ["mine_stage"]=41 + }, + [11587]={ + ["distance"]=69517, + ["mine_stage"]=8 + }, + [11588]={ + ["distance"]=69523, + ["mine_stage"]=35 + }, + [11589]={ + ["distance"]=69529, + ["mine_stage"]=40 + }, + [11590]={ + ["distance"]=69535, + ["mine_stage"]=33 + }, + [11591]={ + ["distance"]=69541, + ["mine_stage"]=4 + }, + [11592]={ + ["distance"]=69547, + ["mine_stage"]=6 + }, + [11593]={ + ["distance"]=69553, + ["mine_stage"]=57 + }, + [11594]={ + ["distance"]=69559, + ["mine_stage"]=22 + }, + [11595]={ + ["distance"]=69565, + ["mine_stage"]=19 + }, + [11596]={ + ["distance"]=69571, + ["mine_stage"]=46 + }, + [11597]={ + ["distance"]=69577, + ["mine_stage"]=33 + }, + [11598]={ + ["distance"]=69583, + ["mine_stage"]=7 + }, + [11599]={ + ["distance"]=69589, + ["mine_stage"]=15 + }, + [11600]={ + ["distance"]=69595, + ["mine_stage"]=7 + }, + [11601]={ + ["distance"]=69601, + ["mine_stage"]=65 + }, + [11602]={ + ["distance"]=69607, + ["mine_stage"]=9 + }, + [11603]={ + ["distance"]=69613, + ["mine_stage"]=40 + }, + [11604]={ + ["distance"]=69619, + ["mine_stage"]=6 + }, + [11605]={ + ["distance"]=69625, + ["mine_stage"]=51 + }, + [11606]={ + ["distance"]=69631, + ["mine_stage"]=14 + }, + [11607]={ + ["distance"]=69637, + ["mine_stage"]=47 + }, + [11608]={ + ["distance"]=69643, + ["mine_stage"]=59 + }, + [11609]={ + ["distance"]=69649, + ["mine_stage"]=58 + }, + [11610]={ + ["distance"]=69655, + ["mine_stage"]=12 + }, + [11611]={ + ["distance"]=69661, + ["mine_stage"]=9 + }, + [11612]={ + ["distance"]=69667, + ["mine_stage"]=35 + }, + [11613]={ + ["distance"]=69673, + ["mine_stage"]=29 + }, + [11614]={ + ["distance"]=69679, + ["mine_stage"]=37 + }, + [11615]={ + ["distance"]=69685, + ["mine_stage"]=27 + }, + [11616]={ + ["distance"]=69691, + ["mine_stage"]=59 + }, + [11617]={ + ["distance"]=69697, + ["mine_stage"]=26 + }, + [11618]={ + ["distance"]=69703, + ["mine_stage"]=10 + }, + [11619]={ + ["distance"]=69709, + ["mine_stage"]=6 + }, + [11620]={ + ["distance"]=69715, + ["mine_stage"]=32 + }, + [11621]={ + ["distance"]=69721, + ["mine_stage"]=4 + }, + [11622]={ + ["distance"]=69727, + ["mine_stage"]=3 + }, + [11623]={ + ["distance"]=69733, + ["mine_stage"]=56 + }, + [11624]={ + ["distance"]=69739, + ["mine_stage"]=6 + }, + [11625]={ + ["distance"]=69745, + ["mine_stage"]=17 + }, + [11626]={ + ["distance"]=69751, + ["mine_stage"]=6 + }, + [11627]={ + ["distance"]=69757, + ["mine_stage"]=2 + }, + [11628]={ + ["distance"]=69763, + ["mine_stage"]=33 + }, + [11629]={ + ["distance"]=69769, + ["mine_stage"]=52 + }, + [11630]={ + ["distance"]=69775, + ["mine_stage"]=23 + }, + [11631]={ + ["distance"]=69781, + ["mine_stage"]=35 + }, + [11632]={ + ["distance"]=69787, + ["mine_stage"]=41 + }, + [11633]={ + ["distance"]=69793, + ["mine_stage"]=50 + }, + [11634]={ + ["distance"]=69799, + ["mine_stage"]=59 + }, + [11635]={ + ["distance"]=69805, + ["mine_stage"]=26 + }, + [11636]={ + ["distance"]=69811, + ["mine_stage"]=7 + }, + [11637]={ + ["distance"]=69817, + ["mine_stage"]=12 + }, + [11638]={ + ["distance"]=69823, + ["mine_stage"]=41 + }, + [11639]={ + ["distance"]=69829, + ["mine_stage"]=26 + }, + [11640]={ + ["distance"]=69835, + ["mine_stage"]=51 + }, + [11641]={ + ["distance"]=69841, + ["mine_stage"]=24 + }, + [11642]={ + ["distance"]=69847, + ["mine_stage"]=7 + }, + [11643]={ + ["distance"]=69853, + ["mine_stage"]=31 + }, + [11644]={ + ["distance"]=69859, + ["mine_stage"]=42 + }, + [11645]={ + ["distance"]=69865, + ["mine_stage"]=2 + }, + [11646]={ + ["distance"]=69871, + ["mine_stage"]=20 + }, + [11647]={ + ["distance"]=69877, + ["mine_stage"]=35 + }, + [11648]={ + ["distance"]=69883, + ["mine_stage"]=46 + }, + [11649]={ + ["distance"]=69889, + ["mine_stage"]=8 + }, + [11650]={ + ["distance"]=69895, + ["mine_stage"]=20 + }, + [11651]={ + ["distance"]=69901, + ["mine_stage"]=68 + }, + [11652]={ + ["distance"]=69907, + ["mine_stage"]=2 + }, + [11653]={ + ["distance"]=69913, + ["mine_stage"]=46 + }, + [11654]={ + ["distance"]=69919, + ["mine_stage"]=49 + }, + [11655]={ + ["distance"]=69925, + ["mine_stage"]=55 + }, + [11656]={ + ["distance"]=69931, + ["mine_stage"]=4 + }, + [11657]={ + ["distance"]=69937, + ["mine_stage"]=20 + }, + [11658]={ + ["distance"]=69943, + ["mine_stage"]=50 + }, + [11659]={ + ["distance"]=69949, + ["mine_stage"]=13 + }, + [11660]={ + ["distance"]=69955, + ["mine_stage"]=41 + }, + [11661]={ + ["distance"]=69961, + ["mine_stage"]=5 + }, + [11662]={ + ["distance"]=69967, + ["mine_stage"]=3 + }, + [11663]={ + ["distance"]=69973, + ["mine_stage"]=1 + }, + [11664]={ + ["distance"]=69979, + ["mine_stage"]=4 + }, + [11665]={ + ["distance"]=69985, + ["mine_stage"]=4 + }, + [11666]={ + ["distance"]=69991, + ["mine_stage"]=45 + }, + [11667]={ + ["distance"]=69997, + ["mine_stage"]=2 + }, + [11668]={ + ["distance"]=70003, + ["mine_stage"]=9 + }, + [11669]={ + ["distance"]=70009, + ["mine_stage"]=35 + }, + [11670]={ + ["distance"]=70015, + ["mine_stage"]=23 + }, + [11671]={ + ["distance"]=70021, + ["mine_stage"]=24 + }, + [11672]={ + ["distance"]=70027, + ["mine_stage"]=53 + }, + [11673]={ + ["distance"]=70033, + ["mine_stage"]=13 + }, + [11674]={ + ["distance"]=70039, + ["mine_stage"]=58 + }, + [11675]={ + ["distance"]=70045, + ["mine_stage"]=30 + }, + [11676]={ + ["distance"]=70051, + ["mine_stage"]=9 + }, + [11677]={ + ["distance"]=70057, + ["mine_stage"]=53 + }, + [11678]={ + ["distance"]=70063, + ["mine_stage"]=4 + }, + [11679]={ + ["distance"]=70069, + ["mine_stage"]=58 + }, + [11680]={ + ["distance"]=70075, + ["mine_stage"]=8 + }, + [11681]={ + ["distance"]=70081, + ["mine_stage"]=15 + }, + [11682]={ + ["distance"]=70087, + ["mine_stage"]=59 + }, + [11683]={ + ["distance"]=70093, + ["mine_stage"]=17 + }, + [11684]={ + ["distance"]=70099, + ["mine_stage"]=8 + }, + [11685]={ + ["distance"]=70105, + ["mine_stage"]=27 + }, + [11686]={ + ["distance"]=70111, + ["mine_stage"]=39 + }, + [11687]={ + ["distance"]=70117, + ["mine_stage"]=54 + }, + [11688]={ + ["distance"]=70123, + ["mine_stage"]=33 + }, + [11689]={ + ["distance"]=70129, + ["mine_stage"]=26 + }, + [11690]={ + ["distance"]=70135, + ["mine_stage"]=8 + }, + [11691]={ + ["distance"]=70141, + ["mine_stage"]=29 + }, + [11692]={ + ["distance"]=70147, + ["mine_stage"]=45 + }, + [11693]={ + ["distance"]=70153, + ["mine_stage"]=33 + }, + [11694]={ + ["distance"]=70159, + ["mine_stage"]=60 + }, + [11695]={ + ["distance"]=70165, + ["mine_stage"]=14 + }, + [11696]={ + ["distance"]=70171, + ["mine_stage"]=48 + }, + [11697]={ + ["distance"]=70177, + ["mine_stage"]=47 + }, + [11698]={ + ["distance"]=70183, + ["mine_stage"]=9 + }, + [11699]={ + ["distance"]=70189, + ["mine_stage"]=59 + }, + [11700]={ + ["distance"]=70195, + ["mine_stage"]=25 + }, + [11701]={ + ["distance"]=70201, + ["mine_stage"]=66 + }, + [11702]={ + ["distance"]=70207, + ["mine_stage"]=49 + }, + [11703]={ + ["distance"]=70213, + ["mine_stage"]=46 + }, + [11704]={ + ["distance"]=70219, + ["mine_stage"]=24 + }, + [11705]={ + ["distance"]=70225, + ["mine_stage"]=56 + }, + [11706]={ + ["distance"]=70231, + ["mine_stage"]=20 + }, + [11707]={ + ["distance"]=70237, + ["mine_stage"]=54 + }, + [11708]={ + ["distance"]=70243, + ["mine_stage"]=50 + }, + [11709]={ + ["distance"]=70249, + ["mine_stage"]=59 + }, + [11710]={ + ["distance"]=70255, + ["mine_stage"]=19 + }, + [11711]={ + ["distance"]=70261, + ["mine_stage"]=8 + }, + [11712]={ + ["distance"]=70267, + ["mine_stage"]=49 + }, + [11713]={ + ["distance"]=70273, + ["mine_stage"]=9 + }, + [11714]={ + ["distance"]=70279, + ["mine_stage"]=4 + }, + [11715]={ + ["distance"]=70285, + ["mine_stage"]=3 + }, + [11716]={ + ["distance"]=70291, + ["mine_stage"]=50 + }, + [11717]={ + ["distance"]=70297, + ["mine_stage"]=21 + }, + [11718]={ + ["distance"]=70303, + ["mine_stage"]=19 + }, + [11719]={ + ["distance"]=70309, + ["mine_stage"]=47 + }, + [11720]={ + ["distance"]=70315, + ["mine_stage"]=42 + }, + [11721]={ + ["distance"]=70321, + ["mine_stage"]=20 + }, + [11722]={ + ["distance"]=70327, + ["mine_stage"]=52 + }, + [11723]={ + ["distance"]=70333, + ["mine_stage"]=36 + }, + [11724]={ + ["distance"]=70339, + ["mine_stage"]=33 + }, + [11725]={ + ["distance"]=70345, + ["mine_stage"]=24 + }, + [11726]={ + ["distance"]=70351, + ["mine_stage"]=41 + }, + [11727]={ + ["distance"]=70357, + ["mine_stage"]=37 + }, + [11728]={ + ["distance"]=70363, + ["mine_stage"]=43 + }, + [11729]={ + ["distance"]=70369, + ["mine_stage"]=51 + }, + [11730]={ + ["distance"]=70375, + ["mine_stage"]=28 + }, + [11731]={ + ["distance"]=70381, + ["mine_stage"]=45 + }, + [11732]={ + ["distance"]=70387, + ["mine_stage"]=4 + }, + [11733]={ + ["distance"]=70393, + ["mine_stage"]=32 + }, + [11734]={ + ["distance"]=70399, + ["mine_stage"]=48 + }, + [11735]={ + ["distance"]=70405, + ["mine_stage"]=40 + }, + [11736]={ + ["distance"]=70411, + ["mine_stage"]=55 + }, + [11737]={ + ["distance"]=70417, + ["mine_stage"]=25 + }, + [11738]={ + ["distance"]=70423, + ["mine_stage"]=20 + }, + [11739]={ + ["distance"]=70429, + ["mine_stage"]=55 + }, + [11740]={ + ["distance"]=70435, + ["mine_stage"]=50 + }, + [11741]={ + ["distance"]=70441, + ["mine_stage"]=39 + }, + [11742]={ + ["distance"]=70447, + ["mine_stage"]=2 + }, + [11743]={ + ["distance"]=70453, + ["mine_stage"]=26 + }, + [11744]={ + ["distance"]=70459, + ["mine_stage"]=58 + }, + [11745]={ + ["distance"]=70465, + ["mine_stage"]=21 + }, + [11746]={ + ["distance"]=70471, + ["mine_stage"]=8 + }, + [11747]={ + ["distance"]=70477, + ["mine_stage"]=37 + }, + [11748]={ + ["distance"]=70483, + ["mine_stage"]=58 + }, + [11749]={ + ["distance"]=70489, + ["mine_stage"]=6 + }, + [11750]={ + ["distance"]=70495, + ["mine_stage"]=7 + }, + [11751]={ + ["distance"]=70501, + ["mine_stage"]=69 + }, + [11752]={ + ["distance"]=70507, + ["mine_stage"]=18 + }, + [11753]={ + ["distance"]=70513, + ["mine_stage"]=56 + }, + [11754]={ + ["distance"]=70519, + ["mine_stage"]=54 + }, + [11755]={ + ["distance"]=70525, + ["mine_stage"]=32 + }, + [11756]={ + ["distance"]=70531, + ["mine_stage"]=39 + }, + [11757]={ + ["distance"]=70537, + ["mine_stage"]=50 + }, + [11758]={ + ["distance"]=70543, + ["mine_stage"]=18 + }, + [11759]={ + ["distance"]=70549, + ["mine_stage"]=36 + }, + [11760]={ + ["distance"]=70555, + ["mine_stage"]=8 + }, + [11761]={ + ["distance"]=70561, + ["mine_stage"]=18 + }, + [11762]={ + ["distance"]=70567, + ["mine_stage"]=5 + }, + [11763]={ + ["distance"]=70573, + ["mine_stage"]=40 + }, + [11764]={ + ["distance"]=70579, + ["mine_stage"]=38 + }, + [11765]={ + ["distance"]=70585, + ["mine_stage"]=25 + }, + [11766]={ + ["distance"]=70591, + ["mine_stage"]=51 + }, + [11767]={ + ["distance"]=70597, + ["mine_stage"]=36 + }, + [11768]={ + ["distance"]=70603, + ["mine_stage"]=31 + }, + [11769]={ + ["distance"]=70609, + ["mine_stage"]=10 + }, + [11770]={ + ["distance"]=70615, + ["mine_stage"]=22 + }, + [11771]={ + ["distance"]=70621, + ["mine_stage"]=34 + }, + [11772]={ + ["distance"]=70627, + ["mine_stage"]=11 + }, + [11773]={ + ["distance"]=70633, + ["mine_stage"]=25 + }, + [11774]={ + ["distance"]=70639, + ["mine_stage"]=19 + }, + [11775]={ + ["distance"]=70645, + ["mine_stage"]=7 + }, + [11776]={ + ["distance"]=70651, + ["mine_stage"]=58 + }, + [11777]={ + ["distance"]=70657, + ["mine_stage"]=43 + }, + [11778]={ + ["distance"]=70663, + ["mine_stage"]=4 + }, + [11779]={ + ["distance"]=70669, + ["mine_stage"]=55 + }, + [11780]={ + ["distance"]=70675, + ["mine_stage"]=44 + }, + [11781]={ + ["distance"]=70681, + ["mine_stage"]=39 + }, + [11782]={ + ["distance"]=70687, + ["mine_stage"]=34 + }, + [11783]={ + ["distance"]=70693, + ["mine_stage"]=57 + }, + [11784]={ + ["distance"]=70699, + ["mine_stage"]=55 + }, + [11785]={ + ["distance"]=70705, + ["mine_stage"]=32 + }, + [11786]={ + ["distance"]=70711, + ["mine_stage"]=5 + }, + [11787]={ + ["distance"]=70717, + ["mine_stage"]=52 + }, + [11788]={ + ["distance"]=70723, + ["mine_stage"]=29 + }, + [11789]={ + ["distance"]=70729, + ["mine_stage"]=31 + }, + [11790]={ + ["distance"]=70735, + ["mine_stage"]=60 + }, + [11791]={ + ["distance"]=70741, + ["mine_stage"]=57 + }, + [11792]={ + ["distance"]=70747, + ["mine_stage"]=16 + }, + [11793]={ + ["distance"]=70753, + ["mine_stage"]=34 + }, + [11794]={ + ["distance"]=70759, + ["mine_stage"]=2 + }, + [11795]={ + ["distance"]=70765, + ["mine_stage"]=47 + }, + [11796]={ + ["distance"]=70771, + ["mine_stage"]=40 + }, + [11797]={ + ["distance"]=70777, + ["mine_stage"]=27 + }, + [11798]={ + ["distance"]=70783, + ["mine_stage"]=58 + }, + [11799]={ + ["distance"]=70789, + ["mine_stage"]=40 + }, + [11800]={ + ["distance"]=70795, + ["mine_stage"]=39 + }, + [11801]={ + ["distance"]=70801, + ["mine_stage"]=64 + }, + [11802]={ + ["distance"]=70807, + ["mine_stage"]=2 + }, + [11803]={ + ["distance"]=70813, + ["mine_stage"]=56 + }, + [11804]={ + ["distance"]=70819, + ["mine_stage"]=25 + }, + [11805]={ + ["distance"]=70825, + ["mine_stage"]=38 + }, + [11806]={ + ["distance"]=70831, + ["mine_stage"]=1 + }, + [11807]={ + ["distance"]=70837, + ["mine_stage"]=23 + }, + [11808]={ + ["distance"]=70843, + ["mine_stage"]=59 + }, + [11809]={ + ["distance"]=70849, + ["mine_stage"]=44 + }, + [11810]={ + ["distance"]=70855, + ["mine_stage"]=24 + }, + [11811]={ + ["distance"]=70861, + ["mine_stage"]=9 + }, + [11812]={ + ["distance"]=70867, + ["mine_stage"]=8 + }, + [11813]={ + ["distance"]=70873, + ["mine_stage"]=14 + }, + [11814]={ + ["distance"]=70879, + ["mine_stage"]=5 + }, + [11815]={ + ["distance"]=70885, + ["mine_stage"]=29 + }, + [11816]={ + ["distance"]=70891, + ["mine_stage"]=19 + }, + [11817]={ + ["distance"]=70897, + ["mine_stage"]=60 + }, + [11818]={ + ["distance"]=70903, + ["mine_stage"]=44 + }, + [11819]={ + ["distance"]=70909, + ["mine_stage"]=32 + }, + [11820]={ + ["distance"]=70915, + ["mine_stage"]=22 + }, + [11821]={ + ["distance"]=70921, + ["mine_stage"]=49 + }, + [11822]={ + ["distance"]=70927, + ["mine_stage"]=40 + }, + [11823]={ + ["distance"]=70933, + ["mine_stage"]=16 + }, + [11824]={ + ["distance"]=70939, + ["mine_stage"]=51 + }, + [11825]={ + ["distance"]=70945, + ["mine_stage"]=3 + }, + [11826]={ + ["distance"]=70951, + ["mine_stage"]=12 + }, + [11827]={ + ["distance"]=70957, + ["mine_stage"]=51 + }, + [11828]={ + ["distance"]=70963, + ["mine_stage"]=47 + }, + [11829]={ + ["distance"]=70969, + ["mine_stage"]=46 + }, + [11830]={ + ["distance"]=70975, + ["mine_stage"]=52 + }, + [11831]={ + ["distance"]=70981, + ["mine_stage"]=8 + }, + [11832]={ + ["distance"]=70987, + ["mine_stage"]=14 + }, + [11833]={ + ["distance"]=70993, + ["mine_stage"]=5 + }, + [11834]={ + ["distance"]=70999, + ["mine_stage"]=19 + }, + [11835]={ + ["distance"]=71005, + ["mine_stage"]=15 + }, + [11836]={ + ["distance"]=71011, + ["mine_stage"]=43 + }, + [11837]={ + ["distance"]=71017, + ["mine_stage"]=33 + }, + [11838]={ + ["distance"]=71023, + ["mine_stage"]=22 + }, + [11839]={ + ["distance"]=71029, + ["mine_stage"]=8 + }, + [11840]={ + ["distance"]=71035, + ["mine_stage"]=24 + }, + [11841]={ + ["distance"]=71041, + ["mine_stage"]=54 + }, + [11842]={ + ["distance"]=71047, + ["mine_stage"]=44 + }, + [11843]={ + ["distance"]=71053, + ["mine_stage"]=48 + }, + [11844]={ + ["distance"]=71059, + ["mine_stage"]=7 + }, + [11845]={ + ["distance"]=71065, + ["mine_stage"]=29 + }, + [11846]={ + ["distance"]=71071, + ["mine_stage"]=10 + }, + [11847]={ + ["distance"]=71077, + ["mine_stage"]=11 + }, + [11848]={ + ["distance"]=71083, + ["mine_stage"]=11 + }, + [11849]={ + ["distance"]=71089, + ["mine_stage"]=6 + }, + [11850]={ + ["distance"]=71095, + ["mine_stage"]=24 + }, + [11851]={ + ["distance"]=71101, + ["mine_stage"]=67 + }, + [11852]={ + ["distance"]=71107, + ["mine_stage"]=31 + }, + [11853]={ + ["distance"]=71113, + ["mine_stage"]=39 + }, + [11854]={ + ["distance"]=71119, + ["mine_stage"]=11 + }, + [11855]={ + ["distance"]=71125, + ["mine_stage"]=21 + }, + [11856]={ + ["distance"]=71131, + ["mine_stage"]=42 + }, + [11857]={ + ["distance"]=71137, + ["mine_stage"]=43 + }, + [11858]={ + ["distance"]=71143, + ["mine_stage"]=11 + }, + [11859]={ + ["distance"]=71149, + ["mine_stage"]=56 + }, + [11860]={ + ["distance"]=71155, + ["mine_stage"]=40 + }, + [11861]={ + ["distance"]=71161, + ["mine_stage"]=35 + }, + [11862]={ + ["distance"]=71167, + ["mine_stage"]=60 + }, + [11863]={ + ["distance"]=71173, + ["mine_stage"]=31 + }, + [11864]={ + ["distance"]=71179, + ["mine_stage"]=55 + }, + [11865]={ + ["distance"]=71185, + ["mine_stage"]=42 + }, + [11866]={ + ["distance"]=71191, + ["mine_stage"]=13 + }, + [11867]={ + ["distance"]=71197, + ["mine_stage"]=41 + }, + [11868]={ + ["distance"]=71203, + ["mine_stage"]=13 + }, + [11869]={ + ["distance"]=71209, + ["mine_stage"]=14 + }, + [11870]={ + ["distance"]=71215, + ["mine_stage"]=53 + }, + [11871]={ + ["distance"]=71221, + ["mine_stage"]=40 + }, + [11872]={ + ["distance"]=71227, + ["mine_stage"]=13 + }, + [11873]={ + ["distance"]=71233, + ["mine_stage"]=4 + }, + [11874]={ + ["distance"]=71239, + ["mine_stage"]=13 + }, + [11875]={ + ["distance"]=71245, + ["mine_stage"]=6 + }, + [11876]={ + ["distance"]=71251, + ["mine_stage"]=8 + }, + [11877]={ + ["distance"]=71257, + ["mine_stage"]=26 + }, + [11878]={ + ["distance"]=71263, + ["mine_stage"]=17 + }, + [11879]={ + ["distance"]=71269, + ["mine_stage"]=50 + }, + [11880]={ + ["distance"]=71275, + ["mine_stage"]=41 + }, + [11881]={ + ["distance"]=71281, + ["mine_stage"]=57 + }, + [11882]={ + ["distance"]=71287, + ["mine_stage"]=25 + }, + [11883]={ + ["distance"]=71293, + ["mine_stage"]=17 + }, + [11884]={ + ["distance"]=71299, + ["mine_stage"]=48 + }, + [11885]={ + ["distance"]=71305, + ["mine_stage"]=30 + }, + [11886]={ + ["distance"]=71311, + ["mine_stage"]=47 + }, + [11887]={ + ["distance"]=71317, + ["mine_stage"]=18 + }, + [11888]={ + ["distance"]=71323, + ["mine_stage"]=35 + }, + [11889]={ + ["distance"]=71329, + ["mine_stage"]=14 + }, + [11890]={ + ["distance"]=71335, + ["mine_stage"]=4 + }, + [11891]={ + ["distance"]=71341, + ["mine_stage"]=13 + }, + [11892]={ + ["distance"]=71347, + ["mine_stage"]=50 + }, + [11893]={ + ["distance"]=71353, + ["mine_stage"]=39 + }, + [11894]={ + ["distance"]=71359, + ["mine_stage"]=18 + }, + [11895]={ + ["distance"]=71365, + ["mine_stage"]=48 + }, + [11896]={ + ["distance"]=71371, + ["mine_stage"]=57 + }, + [11897]={ + ["distance"]=71377, + ["mine_stage"]=36 + }, + [11898]={ + ["distance"]=71383, + ["mine_stage"]=45 + }, + [11899]={ + ["distance"]=71389, + ["mine_stage"]=7 + }, + [11900]={ + ["distance"]=71395, + ["mine_stage"]=42 + }, + [11901]={ + ["distance"]=71401, + ["mine_stage"]=65 + }, + [11902]={ + ["distance"]=71407, + ["mine_stage"]=22 + }, + [11903]={ + ["distance"]=71413, + ["mine_stage"]=45 + }, + [11904]={ + ["distance"]=71419, + ["mine_stage"]=31 + }, + [11905]={ + ["distance"]=71425, + ["mine_stage"]=54 + }, + [11906]={ + ["distance"]=71431, + ["mine_stage"]=15 + }, + [11907]={ + ["distance"]=71437, + ["mine_stage"]=53 + }, + [11908]={ + ["distance"]=71443, + ["mine_stage"]=50 + }, + [11909]={ + ["distance"]=71449, + ["mine_stage"]=38 + }, + [11910]={ + ["distance"]=71455, + ["mine_stage"]=31 + }, + [11911]={ + ["distance"]=71461, + ["mine_stage"]=23 + }, + [11912]={ + ["distance"]=71467, + ["mine_stage"]=17 + }, + [11913]={ + ["distance"]=71473, + ["mine_stage"]=1 + }, + [11914]={ + ["distance"]=71479, + ["mine_stage"]=35 + }, + [11915]={ + ["distance"]=71485, + ["mine_stage"]=47 + }, + [11916]={ + ["distance"]=71491, + ["mine_stage"]=15 + }, + [11917]={ + ["distance"]=71497, + ["mine_stage"]=58 + }, + [11918]={ + ["distance"]=71503, + ["mine_stage"]=34 + }, + [11919]={ + ["distance"]=71509, + ["mine_stage"]=49 + }, + [11920]={ + ["distance"]=71515, + ["mine_stage"]=21 + }, + [11921]={ + ["distance"]=71521, + ["mine_stage"]=14 + }, + [11922]={ + ["distance"]=71527, + ["mine_stage"]=44 + }, + [11923]={ + ["distance"]=71533, + ["mine_stage"]=53 + }, + [11924]={ + ["distance"]=71539, + ["mine_stage"]=15 + }, + [11925]={ + ["distance"]=71545, + ["mine_stage"]=24 + }, + [11926]={ + ["distance"]=71551, + ["mine_stage"]=19 + }, + [11927]={ + ["distance"]=71557, + ["mine_stage"]=34 + }, + [11928]={ + ["distance"]=71563, + ["mine_stage"]=11 + }, + [11929]={ + ["distance"]=71569, + ["mine_stage"]=13 + }, + [11930]={ + ["distance"]=71575, + ["mine_stage"]=10 + }, + [11931]={ + ["distance"]=71581, + ["mine_stage"]=1 + }, + [11932]={ + ["distance"]=71587, + ["mine_stage"]=42 + }, + [11933]={ + ["distance"]=71593, + ["mine_stage"]=16 + }, + [11934]={ + ["distance"]=71599, + ["mine_stage"]=6 + }, + [11935]={ + ["distance"]=71605, + ["mine_stage"]=51 + }, + [11936]={ + ["distance"]=71611, + ["mine_stage"]=17 + }, + [11937]={ + ["distance"]=71617, + ["mine_stage"]=13 + }, + [11938]={ + ["distance"]=71623, + ["mine_stage"]=24 + }, + [11939]={ + ["distance"]=71629, + ["mine_stage"]=33 + }, + [11940]={ + ["distance"]=71635, + ["mine_stage"]=1 + }, + [11941]={ + ["distance"]=71641, + ["mine_stage"]=10 + }, + [11942]={ + ["distance"]=71647, + ["mine_stage"]=47 + }, + [11943]={ + ["distance"]=71653, + ["mine_stage"]=47 + }, + [11944]={ + ["distance"]=71659, + ["mine_stage"]=44 + }, + [11945]={ + ["distance"]=71665, + ["mine_stage"]=34 + }, + [11946]={ + ["distance"]=71671, + ["mine_stage"]=18 + }, + [11947]={ + ["distance"]=71677, + ["mine_stage"]=28 + }, + [11948]={ + ["distance"]=71683, + ["mine_stage"]=16 + }, + [11949]={ + ["distance"]=71689, + ["mine_stage"]=2 + }, + [11950]={ + ["distance"]=71695, + ["mine_stage"]=53 + }, + [11951]={ + ["distance"]=71701, + ["mine_stage"]=68 + }, + [11952]={ + ["distance"]=71707, + ["mine_stage"]=20 + }, + [11953]={ + ["distance"]=71713, + ["mine_stage"]=59 + }, + [11954]={ + ["distance"]=71719, + ["mine_stage"]=51 + }, + [11955]={ + ["distance"]=71725, + ["mine_stage"]=58 + }, + [11956]={ + ["distance"]=71731, + ["mine_stage"]=35 + }, + [11957]={ + ["distance"]=71737, + ["mine_stage"]=31 + }, + [11958]={ + ["distance"]=71743, + ["mine_stage"]=22 + }, + [11959]={ + ["distance"]=71749, + ["mine_stage"]=59 + }, + [11960]={ + ["distance"]=71755, + ["mine_stage"]=58 + }, + [11961]={ + ["distance"]=71761, + ["mine_stage"]=15 + }, + [11962]={ + ["distance"]=71767, + ["mine_stage"]=4 + }, + [11963]={ + ["distance"]=71773, + ["mine_stage"]=34 + }, + [11964]={ + ["distance"]=71779, + ["mine_stage"]=11 + }, + [11965]={ + ["distance"]=71785, + ["mine_stage"]=39 + }, + [11966]={ + ["distance"]=71791, + ["mine_stage"]=18 + }, + [11967]={ + ["distance"]=71797, + ["mine_stage"]=19 + }, + [11968]={ + ["distance"]=71803, + ["mine_stage"]=31 + }, + [11969]={ + ["distance"]=71809, + ["mine_stage"]=49 + }, + [11970]={ + ["distance"]=71815, + ["mine_stage"]=42 + }, + [11971]={ + ["distance"]=71821, + ["mine_stage"]=7 + }, + [11972]={ + ["distance"]=71827, + ["mine_stage"]=19 + }, + [11973]={ + ["distance"]=71833, + ["mine_stage"]=11 + }, + [11974]={ + ["distance"]=71839, + ["mine_stage"]=46 + }, + [11975]={ + ["distance"]=71845, + ["mine_stage"]=2 + }, + [11976]={ + ["distance"]=71851, + ["mine_stage"]=18 + }, + [11977]={ + ["distance"]=71857, + ["mine_stage"]=40 + }, + [11978]={ + ["distance"]=71863, + ["mine_stage"]=3 + }, + [11979]={ + ["distance"]=71869, + ["mine_stage"]=32 + }, + [11980]={ + ["distance"]=71875, + ["mine_stage"]=15 + }, + [11981]={ + ["distance"]=71881, + ["mine_stage"]=18 + }, + [11982]={ + ["distance"]=71887, + ["mine_stage"]=30 + }, + [11983]={ + ["distance"]=71893, + ["mine_stage"]=11 + }, + [11984]={ + ["distance"]=71899, + ["mine_stage"]=39 + }, + [11985]={ + ["distance"]=71905, + ["mine_stage"]=35 + }, + [11986]={ + ["distance"]=71911, + ["mine_stage"]=56 + }, + [11987]={ + ["distance"]=71917, + ["mine_stage"]=29 + }, + [11988]={ + ["distance"]=71923, + ["mine_stage"]=47 + }, + [11989]={ + ["distance"]=71929, + ["mine_stage"]=56 + }, + [11990]={ + ["distance"]=71935, + ["mine_stage"]=47 + }, + [11991]={ + ["distance"]=71941, + ["mine_stage"]=3 + }, + [11992]={ + ["distance"]=71947, + ["mine_stage"]=11 + }, + [11993]={ + ["distance"]=71953, + ["mine_stage"]=30 + }, + [11994]={ + ["distance"]=71959, + ["mine_stage"]=18 + }, + [11995]={ + ["distance"]=71965, + ["mine_stage"]=57 + }, + [11996]={ + ["distance"]=71971, + ["mine_stage"]=18 + }, + [11997]={ + ["distance"]=71977, + ["mine_stage"]=22 + }, + [11998]={ + ["distance"]=71983, + ["mine_stage"]=47 + }, + [11999]={ + ["distance"]=71989, + ["mine_stage"]=35 + }, + [12000]={ + ["distance"]=71995, + ["mine_stage"]=28 + }, + [12001]={ + ["distance"]=72001, + ["mine_stage"]=66 + }, + [12002]={ + ["distance"]=72007, + ["mine_stage"]=6 + }, + [12003]={ + ["distance"]=72013, + ["mine_stage"]=5 + }, + [12004]={ + ["distance"]=72019, + ["mine_stage"]=8 + }, + [12005]={ + ["distance"]=72025, + ["mine_stage"]=4 + }, + [12006]={ + ["distance"]=72031, + ["mine_stage"]=14 + }, + [12007]={ + ["distance"]=72037, + ["mine_stage"]=57 + }, + [12008]={ + ["distance"]=72043, + ["mine_stage"]=44 + }, + [12009]={ + ["distance"]=72049, + ["mine_stage"]=27 + }, + [12010]={ + ["distance"]=72055, + ["mine_stage"]=45 + }, + [12011]={ + ["distance"]=72061, + ["mine_stage"]=13 + }, + [12012]={ + ["distance"]=72067, + ["mine_stage"]=34 + }, + [12013]={ + ["distance"]=72073, + ["mine_stage"]=21 + }, + [12014]={ + ["distance"]=72079, + ["mine_stage"]=1 + }, + [12015]={ + ["distance"]=72085, + ["mine_stage"]=46 + }, + [12016]={ + ["distance"]=72091, + ["mine_stage"]=60 + }, + [12017]={ + ["distance"]=72097, + ["mine_stage"]=40 + }, + [12018]={ + ["distance"]=72103, + ["mine_stage"]=21 + }, + [12019]={ + ["distance"]=72109, + ["mine_stage"]=40 + }, + [12020]={ + ["distance"]=72115, + ["mine_stage"]=47 + }, + [12021]={ + ["distance"]=72121, + ["mine_stage"]=6 + }, + [12022]={ + ["distance"]=72127, + ["mine_stage"]=40 + }, + [12023]={ + ["distance"]=72133, + ["mine_stage"]=59 + }, + [12024]={ + ["distance"]=72139, + ["mine_stage"]=48 + }, + [12025]={ + ["distance"]=72145, + ["mine_stage"]=41 + }, + [12026]={ + ["distance"]=72151, + ["mine_stage"]=48 + }, + [12027]={ + ["distance"]=72157, + ["mine_stage"]=10 + }, + [12028]={ + ["distance"]=72163, + ["mine_stage"]=35 + }, + [12029]={ + ["distance"]=72169, + ["mine_stage"]=31 + }, + [12030]={ + ["distance"]=72175, + ["mine_stage"]=23 + }, + [12031]={ + ["distance"]=72181, + ["mine_stage"]=60 + }, + [12032]={ + ["distance"]=72187, + ["mine_stage"]=18 + }, + [12033]={ + ["distance"]=72193, + ["mine_stage"]=47 + }, + [12034]={ + ["distance"]=72199, + ["mine_stage"]=56 + }, + [12035]={ + ["distance"]=72205, + ["mine_stage"]=16 + }, + [12036]={ + ["distance"]=72211, + ["mine_stage"]=6 + }, + [12037]={ + ["distance"]=72217, + ["mine_stage"]=4 + }, + [12038]={ + ["distance"]=72223, + ["mine_stage"]=24 + }, + [12039]={ + ["distance"]=72229, + ["mine_stage"]=59 + }, + [12040]={ + ["distance"]=72235, + ["mine_stage"]=58 + }, + [12041]={ + ["distance"]=72241, + ["mine_stage"]=50 + }, + [12042]={ + ["distance"]=72247, + ["mine_stage"]=49 + }, + [12043]={ + ["distance"]=72253, + ["mine_stage"]=44 + }, + [12044]={ + ["distance"]=72259, + ["mine_stage"]=16 + }, + [12045]={ + ["distance"]=72265, + ["mine_stage"]=19 + }, + [12046]={ + ["distance"]=72271, + ["mine_stage"]=45 + }, + [12047]={ + ["distance"]=72277, + ["mine_stage"]=42 + }, + [12048]={ + ["distance"]=72283, + ["mine_stage"]=32 + }, + [12049]={ + ["distance"]=72289, + ["mine_stage"]=7 + }, + [12050]={ + ["distance"]=72295, + ["mine_stage"]=48 + }, + [12051]={ + ["distance"]=72301, + ["mine_stage"]=69 + }, + [12052]={ + ["distance"]=72307, + ["mine_stage"]=27 + }, + [12053]={ + ["distance"]=72313, + ["mine_stage"]=14 + }, + [12054]={ + ["distance"]=72319, + ["mine_stage"]=16 + }, + [12055]={ + ["distance"]=72325, + ["mine_stage"]=56 + }, + [12056]={ + ["distance"]=72331, + ["mine_stage"]=42 + }, + [12057]={ + ["distance"]=72337, + ["mine_stage"]=25 + }, + [12058]={ + ["distance"]=72343, + ["mine_stage"]=14 + }, + [12059]={ + ["distance"]=72349, + ["mine_stage"]=34 + }, + [12060]={ + ["distance"]=72355, + ["mine_stage"]=52 + }, + [12061]={ + ["distance"]=72361, + ["mine_stage"]=44 + }, + [12062]={ + ["distance"]=72367, + ["mine_stage"]=36 + }, + [12063]={ + ["distance"]=72373, + ["mine_stage"]=44 + }, + [12064]={ + ["distance"]=72379, + ["mine_stage"]=59 + }, + [12065]={ + ["distance"]=72385, + ["mine_stage"]=6 + }, + [12066]={ + ["distance"]=72391, + ["mine_stage"]=11 + }, + [12067]={ + ["distance"]=72397, + ["mine_stage"]=38 + }, + [12068]={ + ["distance"]=72403, + ["mine_stage"]=7 + }, + [12069]={ + ["distance"]=72409, + ["mine_stage"]=35 + }, + [12070]={ + ["distance"]=72415, + ["mine_stage"]=13 + }, + [12071]={ + ["distance"]=72421, + ["mine_stage"]=56 + }, + [12072]={ + ["distance"]=72427, + ["mine_stage"]=52 + }, + [12073]={ + ["distance"]=72433, + ["mine_stage"]=2 + }, + [12074]={ + ["distance"]=72439, + ["mine_stage"]=55 + }, + [12075]={ + ["distance"]=72445, + ["mine_stage"]=19 + }, + [12076]={ + ["distance"]=72451, + ["mine_stage"]=8 + }, + [12077]={ + ["distance"]=72457, + ["mine_stage"]=7 + }, + [12078]={ + ["distance"]=72463, + ["mine_stage"]=17 + }, + [12079]={ + ["distance"]=72469, + ["mine_stage"]=56 + }, + [12080]={ + ["distance"]=72475, + ["mine_stage"]=10 + }, + [12081]={ + ["distance"]=72481, + ["mine_stage"]=38 + }, + [12082]={ + ["distance"]=72487, + ["mine_stage"]=46 + }, + [12083]={ + ["distance"]=72493, + ["mine_stage"]=52 + }, + [12084]={ + ["distance"]=72499, + ["mine_stage"]=12 + }, + [12085]={ + ["distance"]=72505, + ["mine_stage"]=40 + }, + [12086]={ + ["distance"]=72511, + ["mine_stage"]=21 + }, + [12087]={ + ["distance"]=72517, + ["mine_stage"]=59 + }, + [12088]={ + ["distance"]=72523, + ["mine_stage"]=55 + }, + [12089]={ + ["distance"]=72529, + ["mine_stage"]=33 + }, + [12090]={ + ["distance"]=72535, + ["mine_stage"]=54 + }, + [12091]={ + ["distance"]=72541, + ["mine_stage"]=33 + }, + [12092]={ + ["distance"]=72547, + ["mine_stage"]=9 + }, + [12093]={ + ["distance"]=72553, + ["mine_stage"]=41 + }, + [12094]={ + ["distance"]=72559, + ["mine_stage"]=17 + }, + [12095]={ + ["distance"]=72565, + ["mine_stage"]=48 + }, + [12096]={ + ["distance"]=72571, + ["mine_stage"]=32 + }, + [12097]={ + ["distance"]=72577, + ["mine_stage"]=54 + }, + [12098]={ + ["distance"]=72583, + ["mine_stage"]=5 + }, + [12099]={ + ["distance"]=72589, + ["mine_stage"]=41 + }, + [12100]={ + ["distance"]=72595, + ["mine_stage"]=19 + }, + [12101]={ + ["distance"]=72601, + ["mine_stage"]=64 + }, + [12102]={ + ["distance"]=72607, + ["mine_stage"]=40 + }, + [12103]={ + ["distance"]=72613, + ["mine_stage"]=52 + }, + [12104]={ + ["distance"]=72619, + ["mine_stage"]=31 + }, + [12105]={ + ["distance"]=72625, + ["mine_stage"]=57 + }, + [12106]={ + ["distance"]=72631, + ["mine_stage"]=12 + }, + [12107]={ + ["distance"]=72637, + ["mine_stage"]=1 + }, + [12108]={ + ["distance"]=72643, + ["mine_stage"]=31 + }, + [12109]={ + ["distance"]=72649, + ["mine_stage"]=2 + }, + [12110]={ + ["distance"]=72655, + ["mine_stage"]=58 + }, + [12111]={ + ["distance"]=72661, + ["mine_stage"]=31 + }, + [12112]={ + ["distance"]=72667, + ["mine_stage"]=39 + }, + [12113]={ + ["distance"]=72673, + ["mine_stage"]=59 + }, + [12114]={ + ["distance"]=72679, + ["mine_stage"]=15 + }, + [12115]={ + ["distance"]=72685, + ["mine_stage"]=29 + }, + [12116]={ + ["distance"]=72691, + ["mine_stage"]=14 + }, + [12117]={ + ["distance"]=72697, + ["mine_stage"]=11 + }, + [12118]={ + ["distance"]=72703, + ["mine_stage"]=33 + }, + [12119]={ + ["distance"]=72709, + ["mine_stage"]=30 + }, + [12120]={ + ["distance"]=72715, + ["mine_stage"]=46 + }, + [12121]={ + ["distance"]=72721, + ["mine_stage"]=14 + }, + [12122]={ + ["distance"]=72727, + ["mine_stage"]=22 + }, + [12123]={ + ["distance"]=72733, + ["mine_stage"]=14 + }, + [12124]={ + ["distance"]=72739, + ["mine_stage"]=59 + }, + [12125]={ + ["distance"]=72745, + ["mine_stage"]=14 + }, + [12126]={ + ["distance"]=72751, + ["mine_stage"]=49 + }, + [12127]={ + ["distance"]=72757, + ["mine_stage"]=13 + }, + [12128]={ + ["distance"]=72763, + ["mine_stage"]=50 + }, + [12129]={ + ["distance"]=72769, + ["mine_stage"]=31 + }, + [12130]={ + ["distance"]=72775, + ["mine_stage"]=37 + }, + [12131]={ + ["distance"]=72781, + ["mine_stage"]=8 + }, + [12132]={ + ["distance"]=72787, + ["mine_stage"]=37 + }, + [12133]={ + ["distance"]=72793, + ["mine_stage"]=45 + }, + [12134]={ + ["distance"]=72799, + ["mine_stage"]=33 + }, + [12135]={ + ["distance"]=72805, + ["mine_stage"]=43 + }, + [12136]={ + ["distance"]=72811, + ["mine_stage"]=5 + }, + [12137]={ + ["distance"]=72817, + ["mine_stage"]=5 + }, + [12138]={ + ["distance"]=72823, + ["mine_stage"]=39 + }, + [12139]={ + ["distance"]=72829, + ["mine_stage"]=54 + }, + [12140]={ + ["distance"]=72835, + ["mine_stage"]=11 + }, + [12141]={ + ["distance"]=72841, + ["mine_stage"]=56 + }, + [12142]={ + ["distance"]=72847, + ["mine_stage"]=39 + }, + [12143]={ + ["distance"]=72853, + ["mine_stage"]=59 + }, + [12144]={ + ["distance"]=72859, + ["mine_stage"]=2 + }, + [12145]={ + ["distance"]=72865, + ["mine_stage"]=15 + }, + [12146]={ + ["distance"]=72871, + ["mine_stage"]=55 + }, + [12147]={ + ["distance"]=72877, + ["mine_stage"]=41 + }, + [12148]={ + ["distance"]=72883, + ["mine_stage"]=24 + }, + [12149]={ + ["distance"]=72889, + ["mine_stage"]=8 + }, + [12150]={ + ["distance"]=72895, + ["mine_stage"]=34 + }, + [12151]={ + ["distance"]=72901, + ["mine_stage"]=67 + }, + [12152]={ + ["distance"]=72907, + ["mine_stage"]=7 + }, + [12153]={ + ["distance"]=72913, + ["mine_stage"]=26 + }, + [12154]={ + ["distance"]=72919, + ["mine_stage"]=26 + }, + [12155]={ + ["distance"]=72925, + ["mine_stage"]=6 + }, + [12156]={ + ["distance"]=72931, + ["mine_stage"]=44 + }, + [12157]={ + ["distance"]=72937, + ["mine_stage"]=1 + }, + [12158]={ + ["distance"]=72943, + ["mine_stage"]=43 + }, + [12159]={ + ["distance"]=72949, + ["mine_stage"]=34 + }, + [12160]={ + ["distance"]=72955, + ["mine_stage"]=44 + }, + [12161]={ + ["distance"]=72961, + ["mine_stage"]=58 + }, + [12162]={ + ["distance"]=72967, + ["mine_stage"]=30 + }, + [12163]={ + ["distance"]=72973, + ["mine_stage"]=52 + }, + [12164]={ + ["distance"]=72979, + ["mine_stage"]=18 + }, + [12165]={ + ["distance"]=72985, + ["mine_stage"]=21 + }, + [12166]={ + ["distance"]=72991, + ["mine_stage"]=4 + }, + [12167]={ + ["distance"]=72997, + ["mine_stage"]=54 + }, + [12168]={ + ["distance"]=73003, + ["mine_stage"]=41 + }, + [12169]={ + ["distance"]=73009, + ["mine_stage"]=54 + }, + [12170]={ + ["distance"]=73015, + ["mine_stage"]=21 + }, + [12171]={ + ["distance"]=73021, + ["mine_stage"]=58 + }, + [12172]={ + ["distance"]=73027, + ["mine_stage"]=44 + }, + [12173]={ + ["distance"]=73033, + ["mine_stage"]=23 + }, + [12174]={ + ["distance"]=73039, + ["mine_stage"]=29 + }, + [12175]={ + ["distance"]=73045, + ["mine_stage"]=54 + }, + [12176]={ + ["distance"]=73051, + ["mine_stage"]=16 + }, + [12177]={ + ["distance"]=73057, + ["mine_stage"]=40 + }, + [12178]={ + ["distance"]=73063, + ["mine_stage"]=17 + }, + [12179]={ + ["distance"]=73069, + ["mine_stage"]=48 + }, + [12180]={ + ["distance"]=73075, + ["mine_stage"]=4 + }, + [12181]={ + ["distance"]=73081, + ["mine_stage"]=13 + }, + [12182]={ + ["distance"]=73087, + ["mine_stage"]=10 + }, + [12183]={ + ["distance"]=73093, + ["mine_stage"]=45 + }, + [12184]={ + ["distance"]=73099, + ["mine_stage"]=17 + }, + [12185]={ + ["distance"]=73105, + ["mine_stage"]=43 + }, + [12186]={ + ["distance"]=73111, + ["mine_stage"]=17 + }, + [12187]={ + ["distance"]=73117, + ["mine_stage"]=50 + }, + [12188]={ + ["distance"]=73123, + ["mine_stage"]=10 + }, + [12189]={ + ["distance"]=73129, + ["mine_stage"]=13 + }, + [12190]={ + ["distance"]=73135, + ["mine_stage"]=16 + }, + [12191]={ + ["distance"]=73141, + ["mine_stage"]=25 + }, + [12192]={ + ["distance"]=73147, + ["mine_stage"]=58 + }, + [12193]={ + ["distance"]=73153, + ["mine_stage"]=7 + }, + [12194]={ + ["distance"]=73159, + ["mine_stage"]=46 + }, + [12195]={ + ["distance"]=73165, + ["mine_stage"]=38 + }, + [12196]={ + ["distance"]=73171, + ["mine_stage"]=14 + }, + [12197]={ + ["distance"]=73177, + ["mine_stage"]=25 + }, + [12198]={ + ["distance"]=73183, + ["mine_stage"]=48 + }, + [12199]={ + ["distance"]=73189, + ["mine_stage"]=48 + }, + [12200]={ + ["distance"]=73195, + ["mine_stage"]=33 + }, + [12201]={ + ["distance"]=73201, + ["mine_stage"]=65 + }, + [12202]={ + ["distance"]=73207, + ["mine_stage"]=7 + }, + [12203]={ + ["distance"]=73213, + ["mine_stage"]=29 + }, + [12204]={ + ["distance"]=73219, + ["mine_stage"]=2 + }, + [12205]={ + ["distance"]=73225, + ["mine_stage"]=9 + }, + [12206]={ + ["distance"]=73231, + ["mine_stage"]=26 + }, + [12207]={ + ["distance"]=73237, + ["mine_stage"]=19 + }, + [12208]={ + ["distance"]=73243, + ["mine_stage"]=48 + }, + [12209]={ + ["distance"]=73249, + ["mine_stage"]=31 + }, + [12210]={ + ["distance"]=73255, + ["mine_stage"]=53 + }, + [12211]={ + ["distance"]=73261, + ["mine_stage"]=41 + }, + [12212]={ + ["distance"]=73267, + ["mine_stage"]=38 + }, + [12213]={ + ["distance"]=73273, + ["mine_stage"]=49 + }, + [12214]={ + ["distance"]=73279, + ["mine_stage"]=48 + }, + [12215]={ + ["distance"]=73285, + ["mine_stage"]=5 + }, + [12216]={ + ["distance"]=73291, + ["mine_stage"]=58 + }, + [12217]={ + ["distance"]=73297, + ["mine_stage"]=46 + }, + [12218]={ + ["distance"]=73303, + ["mine_stage"]=6 + }, + [12219]={ + ["distance"]=73309, + ["mine_stage"]=30 + }, + [12220]={ + ["distance"]=73315, + ["mine_stage"]=35 + }, + [12221]={ + ["distance"]=73321, + ["mine_stage"]=5 + }, + [12222]={ + ["distance"]=73327, + ["mine_stage"]=43 + }, + [12223]={ + ["distance"]=73333, + ["mine_stage"]=1 + }, + [12224]={ + ["distance"]=73339, + ["mine_stage"]=10 + }, + [12225]={ + ["distance"]=73345, + ["mine_stage"]=27 + }, + [12226]={ + ["distance"]=73351, + ["mine_stage"]=52 + }, + [12227]={ + ["distance"]=73357, + ["mine_stage"]=1 + }, + [12228]={ + ["distance"]=73363, + ["mine_stage"]=43 + }, + [12229]={ + ["distance"]=73369, + ["mine_stage"]=27 + }, + [12230]={ + ["distance"]=73375, + ["mine_stage"]=7 + }, + [12231]={ + ["distance"]=73381, + ["mine_stage"]=52 + }, + [12232]={ + ["distance"]=73387, + ["mine_stage"]=17 + }, + [12233]={ + ["distance"]=73393, + ["mine_stage"]=47 + }, + [12234]={ + ["distance"]=73399, + ["mine_stage"]=52 + }, + [12235]={ + ["distance"]=73405, + ["mine_stage"]=11 + }, + [12236]={ + ["distance"]=73411, + ["mine_stage"]=15 + }, + [12237]={ + ["distance"]=73417, + ["mine_stage"]=5 + }, + [12238]={ + ["distance"]=73423, + ["mine_stage"]=32 + }, + [12239]={ + ["distance"]=73429, + ["mine_stage"]=30 + }, + [12240]={ + ["distance"]=73435, + ["mine_stage"]=29 + }, + [12241]={ + ["distance"]=73441, + ["mine_stage"]=8 + }, + [12242]={ + ["distance"]=73447, + ["mine_stage"]=57 + }, + [12243]={ + ["distance"]=73453, + ["mine_stage"]=55 + }, + [12244]={ + ["distance"]=73459, + ["mine_stage"]=1 + }, + [12245]={ + ["distance"]=73465, + ["mine_stage"]=54 + }, + [12246]={ + ["distance"]=73471, + ["mine_stage"]=9 + }, + [12247]={ + ["distance"]=73477, + ["mine_stage"]=15 + }, + [12248]={ + ["distance"]=73483, + ["mine_stage"]=57 + }, + [12249]={ + ["distance"]=73489, + ["mine_stage"]=7 + }, + [12250]={ + ["distance"]=73495, + ["mine_stage"]=18 + }, + [12251]={ + ["distance"]=73501, + ["mine_stage"]=68 + }, + [12252]={ + ["distance"]=73507, + ["mine_stage"]=3 + }, + [12253]={ + ["distance"]=73513, + ["mine_stage"]=38 + }, + [12254]={ + ["distance"]=73519, + ["mine_stage"]=58 + }, + [12255]={ + ["distance"]=73525, + ["mine_stage"]=15 + }, + [12256]={ + ["distance"]=73531, + ["mine_stage"]=35 + }, + [12257]={ + ["distance"]=73537, + ["mine_stage"]=8 + }, + [12258]={ + ["distance"]=73543, + ["mine_stage"]=41 + }, + [12259]={ + ["distance"]=73549, + ["mine_stage"]=5 + }, + [12260]={ + ["distance"]=73555, + ["mine_stage"]=12 + }, + [12261]={ + ["distance"]=73561, + ["mine_stage"]=7 + }, + [12262]={ + ["distance"]=73567, + ["mine_stage"]=16 + }, + [12263]={ + ["distance"]=73573, + ["mine_stage"]=10 + }, + [12264]={ + ["distance"]=73579, + ["mine_stage"]=9 + }, + [12265]={ + ["distance"]=73585, + ["mine_stage"]=54 + }, + [12266]={ + ["distance"]=73591, + ["mine_stage"]=28 + }, + [12267]={ + ["distance"]=73597, + ["mine_stage"]=16 + }, + [12268]={ + ["distance"]=73603, + ["mine_stage"]=48 + }, + [12269]={ + ["distance"]=73609, + ["mine_stage"]=12 + }, + [12270]={ + ["distance"]=73615, + ["mine_stage"]=30 + }, + [12271]={ + ["distance"]=73621, + ["mine_stage"]=20 + }, + [12272]={ + ["distance"]=73627, + ["mine_stage"]=19 + }, + [12273]={ + ["distance"]=73633, + ["mine_stage"]=6 + }, + [12274]={ + ["distance"]=73639, + ["mine_stage"]=13 + }, + [12275]={ + ["distance"]=73645, + ["mine_stage"]=48 + }, + [12276]={ + ["distance"]=73651, + ["mine_stage"]=50 + }, + [12277]={ + ["distance"]=73657, + ["mine_stage"]=37 + }, + [12278]={ + ["distance"]=73663, + ["mine_stage"]=31 + }, + [12279]={ + ["distance"]=73669, + ["mine_stage"]=18 + }, + [12280]={ + ["distance"]=73675, + ["mine_stage"]=59 + }, + [12281]={ + ["distance"]=73681, + ["mine_stage"]=15 + }, + [12282]={ + ["distance"]=73687, + ["mine_stage"]=7 + }, + [12283]={ + ["distance"]=73693, + ["mine_stage"]=27 + }, + [12284]={ + ["distance"]=73699, + ["mine_stage"]=50 + }, + [12285]={ + ["distance"]=73705, + ["mine_stage"]=25 + }, + [12286]={ + ["distance"]=73711, + ["mine_stage"]=16 + }, + [12287]={ + ["distance"]=73717, + ["mine_stage"]=28 + }, + [12288]={ + ["distance"]=73723, + ["mine_stage"]=23 + }, + [12289]={ + ["distance"]=73729, + ["mine_stage"]=8 + }, + [12290]={ + ["distance"]=73735, + ["mine_stage"]=57 + }, + [12291]={ + ["distance"]=73741, + ["mine_stage"]=40 + }, + [12292]={ + ["distance"]=73747, + ["mine_stage"]=43 + }, + [12293]={ + ["distance"]=73753, + ["mine_stage"]=2 + }, + [12294]={ + ["distance"]=73759, + ["mine_stage"]=45 + }, + [12295]={ + ["distance"]=73765, + ["mine_stage"]=46 + }, + [12296]={ + ["distance"]=73771, + ["mine_stage"]=16 + }, + [12297]={ + ["distance"]=73777, + ["mine_stage"]=21 + }, + [12298]={ + ["distance"]=73783, + ["mine_stage"]=31 + }, + [12299]={ + ["distance"]=73789, + ["mine_stage"]=49 + }, + [12300]={ + ["distance"]=73795, + ["mine_stage"]=4 + }, + [12301]={ + ["distance"]=73801, + ["mine_stage"]=66 + }, + [12302]={ + ["distance"]=73807, + ["mine_stage"]=2 + }, + [12303]={ + ["distance"]=73813, + ["mine_stage"]=1 + }, + [12304]={ + ["distance"]=73819, + ["mine_stage"]=12 + }, + [12305]={ + ["distance"]=73825, + ["mine_stage"]=57 + }, + [12306]={ + ["distance"]=73831, + ["mine_stage"]=36 + }, + [12307]={ + ["distance"]=73837, + ["mine_stage"]=50 + }, + [12308]={ + ["distance"]=73843, + ["mine_stage"]=50 + }, + [12309]={ + ["distance"]=73849, + ["mine_stage"]=11 + }, + [12310]={ + ["distance"]=73855, + ["mine_stage"]=44 + }, + [12311]={ + ["distance"]=73861, + ["mine_stage"]=4 + }, + [12312]={ + ["distance"]=73867, + ["mine_stage"]=20 + }, + [12313]={ + ["distance"]=73873, + ["mine_stage"]=57 + }, + [12314]={ + ["distance"]=73879, + ["mine_stage"]=24 + }, + [12315]={ + ["distance"]=73885, + ["mine_stage"]=41 + }, + [12316]={ + ["distance"]=73891, + ["mine_stage"]=8 + }, + [12317]={ + ["distance"]=73897, + ["mine_stage"]=59 + }, + [12318]={ + ["distance"]=73903, + ["mine_stage"]=44 + }, + [12319]={ + ["distance"]=73909, + ["mine_stage"]=20 + }, + [12320]={ + ["distance"]=73915, + ["mine_stage"]=34 + }, + [12321]={ + ["distance"]=73921, + ["mine_stage"]=27 + }, + [12322]={ + ["distance"]=73927, + ["mine_stage"]=2 + }, + [12323]={ + ["distance"]=73933, + ["mine_stage"]=27 + }, + [12324]={ + ["distance"]=73939, + ["mine_stage"]=10 + }, + [12325]={ + ["distance"]=73945, + ["mine_stage"]=45 + }, + [12326]={ + ["distance"]=73951, + ["mine_stage"]=43 + }, + [12327]={ + ["distance"]=73957, + ["mine_stage"]=45 + }, + [12328]={ + ["distance"]=73963, + ["mine_stage"]=11 + }, + [12329]={ + ["distance"]=73969, + ["mine_stage"]=38 + }, + [12330]={ + ["distance"]=73975, + ["mine_stage"]=39 + }, + [12331]={ + ["distance"]=73981, + ["mine_stage"]=3 + }, + [12332]={ + ["distance"]=73987, + ["mine_stage"]=40 + }, + [12333]={ + ["distance"]=73993, + ["mine_stage"]=38 + }, + [12334]={ + ["distance"]=73999, + ["mine_stage"]=17 + }, + [12335]={ + ["distance"]=74005, + ["mine_stage"]=14 + }, + [12336]={ + ["distance"]=74011, + ["mine_stage"]=21 + }, + [12337]={ + ["distance"]=74017, + ["mine_stage"]=34 + }, + [12338]={ + ["distance"]=74023, + ["mine_stage"]=10 + }, + [12339]={ + ["distance"]=74029, + ["mine_stage"]=33 + }, + [12340]={ + ["distance"]=74035, + ["mine_stage"]=52 + }, + [12341]={ + ["distance"]=74041, + ["mine_stage"]=35 + }, + [12342]={ + ["distance"]=74047, + ["mine_stage"]=22 + }, + [12343]={ + ["distance"]=74053, + ["mine_stage"]=44 + }, + [12344]={ + ["distance"]=74059, + ["mine_stage"]=10 + }, + [12345]={ + ["distance"]=74065, + ["mine_stage"]=42 + }, + [12346]={ + ["distance"]=74071, + ["mine_stage"]=15 + }, + [12347]={ + ["distance"]=74077, + ["mine_stage"]=46 + }, + [12348]={ + ["distance"]=74083, + ["mine_stage"]=38 + }, + [12349]={ + ["distance"]=74089, + ["mine_stage"]=55 + }, + [12350]={ + ["distance"]=74095, + ["mine_stage"]=13 + }, + [12351]={ + ["distance"]=74101, + ["mine_stage"]=69 + }, + [12352]={ + ["distance"]=74107, + ["mine_stage"]=25 + }, + [12353]={ + ["distance"]=74113, + ["mine_stage"]=20 + }, + [12354]={ + ["distance"]=74119, + ["mine_stage"]=32 + }, + [12355]={ + ["distance"]=74125, + ["mine_stage"]=54 + }, + [12356]={ + ["distance"]=74131, + ["mine_stage"]=26 + }, + [12357]={ + ["distance"]=74137, + ["mine_stage"]=12 + }, + [12358]={ + ["distance"]=74143, + ["mine_stage"]=32 + }, + [12359]={ + ["distance"]=74149, + ["mine_stage"]=52 + }, + [12360]={ + ["distance"]=74155, + ["mine_stage"]=11 + }, + [12361]={ + ["distance"]=74161, + ["mine_stage"]=35 + }, + [12362]={ + ["distance"]=74167, + ["mine_stage"]=28 + }, + [12363]={ + ["distance"]=74173, + ["mine_stage"]=51 + }, + [12364]={ + ["distance"]=74179, + ["mine_stage"]=39 + }, + [12365]={ + ["distance"]=74185, + ["mine_stage"]=14 + }, + [12366]={ + ["distance"]=74191, + ["mine_stage"]=59 + }, + [12367]={ + ["distance"]=74197, + ["mine_stage"]=35 + }, + [12368]={ + ["distance"]=74203, + ["mine_stage"]=58 + }, + [12369]={ + ["distance"]=74209, + ["mine_stage"]=4 + }, + [12370]={ + ["distance"]=74215, + ["mine_stage"]=27 + }, + [12371]={ + ["distance"]=74221, + ["mine_stage"]=38 + }, + [12372]={ + ["distance"]=74227, + ["mine_stage"]=45 + }, + [12373]={ + ["distance"]=74233, + ["mine_stage"]=37 + }, + [12374]={ + ["distance"]=74239, + ["mine_stage"]=9 + }, + [12375]={ + ["distance"]=74245, + ["mine_stage"]=47 + }, + [12376]={ + ["distance"]=74251, + ["mine_stage"]=27 + }, + [12377]={ + ["distance"]=74257, + ["mine_stage"]=36 + }, + [12378]={ + ["distance"]=74263, + ["mine_stage"]=4 + }, + [12379]={ + ["distance"]=74269, + ["mine_stage"]=8 + }, + [12380]={ + ["distance"]=74275, + ["mine_stage"]=59 + }, + [12381]={ + ["distance"]=74281, + ["mine_stage"]=54 + }, + [12382]={ + ["distance"]=74287, + ["mine_stage"]=21 + }, + [12383]={ + ["distance"]=74293, + ["mine_stage"]=21 + }, + [12384]={ + ["distance"]=74299, + ["mine_stage"]=58 + }, + [12385]={ + ["distance"]=74305, + ["mine_stage"]=60 + }, + [12386]={ + ["distance"]=74311, + ["mine_stage"]=34 + }, + [12387]={ + ["distance"]=74317, + ["mine_stage"]=46 + }, + [12388]={ + ["distance"]=74323, + ["mine_stage"]=54 + }, + [12389]={ + ["distance"]=74329, + ["mine_stage"]=3 + }, + [12390]={ + ["distance"]=74335, + ["mine_stage"]=58 + }, + [12391]={ + ["distance"]=74341, + ["mine_stage"]=6 + }, + [12392]={ + ["distance"]=74347, + ["mine_stage"]=53 + }, + [12393]={ + ["distance"]=74353, + ["mine_stage"]=26 + }, + [12394]={ + ["distance"]=74359, + ["mine_stage"]=51 + }, + [12395]={ + ["distance"]=74365, + ["mine_stage"]=38 + }, + [12396]={ + ["distance"]=74371, + ["mine_stage"]=40 + }, + [12397]={ + ["distance"]=74377, + ["mine_stage"]=47 + }, + [12398]={ + ["distance"]=74383, + ["mine_stage"]=60 + }, + [12399]={ + ["distance"]=74389, + ["mine_stage"]=52 + }, + [12400]={ + ["distance"]=74395, + ["mine_stage"]=11 + }, + [12401]={ + ["distance"]=74401, + ["mine_stage"]=64 + }, + [12402]={ + ["distance"]=74407, + ["mine_stage"]=41 + }, + [12403]={ + ["distance"]=74413, + ["mine_stage"]=60 + }, + [12404]={ + ["distance"]=74419, + ["mine_stage"]=41 + }, + [12405]={ + ["distance"]=74425, + ["mine_stage"]=54 + }, + [12406]={ + ["distance"]=74431, + ["mine_stage"]=5 + }, + [12407]={ + ["distance"]=74437, + ["mine_stage"]=34 + }, + [12408]={ + ["distance"]=74443, + ["mine_stage"]=15 + }, + [12409]={ + ["distance"]=74449, + ["mine_stage"]=6 + }, + [12410]={ + ["distance"]=74455, + ["mine_stage"]=38 + }, + [12411]={ + ["distance"]=74461, + ["mine_stage"]=31 + }, + [12412]={ + ["distance"]=74467, + ["mine_stage"]=19 + }, + [12413]={ + ["distance"]=74473, + ["mine_stage"]=40 + }, + [12414]={ + ["distance"]=74479, + ["mine_stage"]=3 + }, + [12415]={ + ["distance"]=74485, + ["mine_stage"]=19 + }, + [12416]={ + ["distance"]=74491, + ["mine_stage"]=7 + }, + [12417]={ + ["distance"]=74497, + ["mine_stage"]=17 + }, + [12418]={ + ["distance"]=74503, + ["mine_stage"]=26 + }, + [12419]={ + ["distance"]=74509, + ["mine_stage"]=39 + }, + [12420]={ + ["distance"]=74515, + ["mine_stage"]=36 + }, + [12421]={ + ["distance"]=74521, + ["mine_stage"]=59 + }, + [12422]={ + ["distance"]=74527, + ["mine_stage"]=52 + }, + [12423]={ + ["distance"]=74533, + ["mine_stage"]=55 + }, + [12424]={ + ["distance"]=74539, + ["mine_stage"]=3 + }, + [12425]={ + ["distance"]=74545, + ["mine_stage"]=15 + }, + [12426]={ + ["distance"]=74551, + ["mine_stage"]=59 + }, + [12427]={ + ["distance"]=74557, + ["mine_stage"]=54 + }, + [12428]={ + ["distance"]=74563, + ["mine_stage"]=7 + }, + [12429]={ + ["distance"]=74569, + ["mine_stage"]=42 + }, + [12430]={ + ["distance"]=74575, + ["mine_stage"]=40 + }, + [12431]={ + ["distance"]=74581, + ["mine_stage"]=32 + }, + [12432]={ + ["distance"]=74587, + ["mine_stage"]=40 + }, + [12433]={ + ["distance"]=74593, + ["mine_stage"]=58 + }, + [12434]={ + ["distance"]=74599, + ["mine_stage"]=13 + }, + [12435]={ + ["distance"]=74605, + ["mine_stage"]=37 + }, + [12436]={ + ["distance"]=74611, + ["mine_stage"]=50 + }, + [12437]={ + ["distance"]=74617, + ["mine_stage"]=59 + }, + [12438]={ + ["distance"]=74623, + ["mine_stage"]=47 + }, + [12439]={ + ["distance"]=74629, + ["mine_stage"]=52 + }, + [12440]={ + ["distance"]=74635, + ["mine_stage"]=50 + }, + [12441]={ + ["distance"]=74641, + ["mine_stage"]=16 + }, + [12442]={ + ["distance"]=74647, + ["mine_stage"]=29 + }, + [12443]={ + ["distance"]=74653, + ["mine_stage"]=10 + }, + [12444]={ + ["distance"]=74659, + ["mine_stage"]=9 + }, + [12445]={ + ["distance"]=74665, + ["mine_stage"]=29 + }, + [12446]={ + ["distance"]=74671, + ["mine_stage"]=39 + }, + [12447]={ + ["distance"]=74677, + ["mine_stage"]=9 + }, + [12448]={ + ["distance"]=74683, + ["mine_stage"]=1 + }, + [12449]={ + ["distance"]=74689, + ["mine_stage"]=27 + }, + [12450]={ + ["distance"]=74695, + ["mine_stage"]=30 + }, + [12451]={ + ["distance"]=74701, + ["mine_stage"]=67 + }, + [12452]={ + ["distance"]=74707, + ["mine_stage"]=16 + }, + [12453]={ + ["distance"]=74713, + ["mine_stage"]=28 + }, + [12454]={ + ["distance"]=74719, + ["mine_stage"]=47 + }, + [12455]={ + ["distance"]=74725, + ["mine_stage"]=60 + }, + [12456]={ + ["distance"]=74731, + ["mine_stage"]=33 + }, + [12457]={ + ["distance"]=74737, + ["mine_stage"]=44 + }, + [12458]={ + ["distance"]=74743, + ["mine_stage"]=25 + }, + [12459]={ + ["distance"]=74749, + ["mine_stage"]=12 + }, + [12460]={ + ["distance"]=74755, + ["mine_stage"]=9 + }, + [12461]={ + ["distance"]=74761, + ["mine_stage"]=31 + }, + [12462]={ + ["distance"]=74767, + ["mine_stage"]=23 + }, + [12463]={ + ["distance"]=74773, + ["mine_stage"]=54 + }, + [12464]={ + ["distance"]=74779, + ["mine_stage"]=11 + }, + [12465]={ + ["distance"]=74785, + ["mine_stage"]=15 + }, + [12466]={ + ["distance"]=74791, + ["mine_stage"]=35 + }, + [12467]={ + ["distance"]=74797, + ["mine_stage"]=36 + }, + [12468]={ + ["distance"]=74803, + ["mine_stage"]=43 + }, + [12469]={ + ["distance"]=74809, + ["mine_stage"]=25 + }, + [12470]={ + ["distance"]=74815, + ["mine_stage"]=51 + }, + [12471]={ + ["distance"]=74821, + ["mine_stage"]=16 + }, + [12472]={ + ["distance"]=74827, + ["mine_stage"]=40 + }, + [12473]={ + ["distance"]=74833, + ["mine_stage"]=22 + }, + [12474]={ + ["distance"]=74839, + ["mine_stage"]=24 + }, + [12475]={ + ["distance"]=74845, + ["mine_stage"]=1 + }, + [12476]={ + ["distance"]=74851, + ["mine_stage"]=1 + }, + [12477]={ + ["distance"]=74857, + ["mine_stage"]=47 + }, + [12478]={ + ["distance"]=74863, + ["mine_stage"]=19 + }, + [12479]={ + ["distance"]=74869, + ["mine_stage"]=11 + }, + [12480]={ + ["distance"]=74875, + ["mine_stage"]=6 + }, + [12481]={ + ["distance"]=74881, + ["mine_stage"]=58 + }, + [12482]={ + ["distance"]=74887, + ["mine_stage"]=60 + }, + [12483]={ + ["distance"]=74893, + ["mine_stage"]=16 + }, + [12484]={ + ["distance"]=74899, + ["mine_stage"]=29 + }, + [12485]={ + ["distance"]=74905, + ["mine_stage"]=27 + }, + [12486]={ + ["distance"]=74911, + ["mine_stage"]=57 + }, + [12487]={ + ["distance"]=74917, + ["mine_stage"]=37 + }, + [12488]={ + ["distance"]=74923, + ["mine_stage"]=32 + }, + [12489]={ + ["distance"]=74929, + ["mine_stage"]=4 + }, + [12490]={ + ["distance"]=74935, + ["mine_stage"]=38 + }, + [12491]={ + ["distance"]=74941, + ["mine_stage"]=25 + }, + [12492]={ + ["distance"]=74947, + ["mine_stage"]=16 + }, + [12493]={ + ["distance"]=74953, + ["mine_stage"]=34 + }, + [12494]={ + ["distance"]=74959, + ["mine_stage"]=2 + }, + [12495]={ + ["distance"]=74965, + ["mine_stage"]=9 + }, + [12496]={ + ["distance"]=74971, + ["mine_stage"]=34 + }, + [12497]={ + ["distance"]=74977, + ["mine_stage"]=10 + }, + [12498]={ + ["distance"]=74983, + ["mine_stage"]=11 + }, + [12499]={ + ["distance"]=74989, + ["mine_stage"]=16 + }, + [12500]={ + ["distance"]=74995, + ["mine_stage"]=40 + }, + [12501]={ + ["distance"]=75001, + ["mine_stage"]=65 + }, + [12502]={ + ["distance"]=75007, + ["mine_stage"]=40 + }, + [12503]={ + ["distance"]=75013, + ["mine_stage"]=51 + }, + [12504]={ + ["distance"]=75019, + ["mine_stage"]=59 + }, + [12505]={ + ["distance"]=75025, + ["mine_stage"]=21 + }, + [12506]={ + ["distance"]=75031, + ["mine_stage"]=52 + }, + [12507]={ + ["distance"]=75037, + ["mine_stage"]=32 + }, + [12508]={ + ["distance"]=75043, + ["mine_stage"]=7 + }, + [12509]={ + ["distance"]=75049, + ["mine_stage"]=2 + }, + [12510]={ + ["distance"]=75055, + ["mine_stage"]=57 + }, + [12511]={ + ["distance"]=75061, + ["mine_stage"]=41 + }, + [12512]={ + ["distance"]=75067, + ["mine_stage"]=43 + }, + [12513]={ + ["distance"]=75073, + ["mine_stage"]=54 + }, + [12514]={ + ["distance"]=75079, + ["mine_stage"]=41 + }, + [12515]={ + ["distance"]=75085, + ["mine_stage"]=21 + }, + [12516]={ + ["distance"]=75091, + ["mine_stage"]=9 + }, + [12517]={ + ["distance"]=75097, + ["mine_stage"]=51 + }, + [12518]={ + ["distance"]=75103, + ["mine_stage"]=22 + }, + [12519]={ + ["distance"]=75109, + ["mine_stage"]=15 + }, + [12520]={ + ["distance"]=75115, + ["mine_stage"]=12 + }, + [12521]={ + ["distance"]=75121, + ["mine_stage"]=24 + }, + [12522]={ + ["distance"]=75127, + ["mine_stage"]=32 + }, + [12523]={ + ["distance"]=75133, + ["mine_stage"]=5 + }, + [12524]={ + ["distance"]=75139, + ["mine_stage"]=24 + }, + [12525]={ + ["distance"]=75145, + ["mine_stage"]=15 + }, + [12526]={ + ["distance"]=75151, + ["mine_stage"]=16 + }, + [12527]={ + ["distance"]=75157, + ["mine_stage"]=33 + }, + [12528]={ + ["distance"]=75163, + ["mine_stage"]=24 + }, + [12529]={ + ["distance"]=75169, + ["mine_stage"]=42 + }, + [12530]={ + ["distance"]=75175, + ["mine_stage"]=15 + }, + [12531]={ + ["distance"]=75181, + ["mine_stage"]=26 + }, + [12532]={ + ["distance"]=75187, + ["mine_stage"]=32 + }, + [12533]={ + ["distance"]=75193, + ["mine_stage"]=34 + }, + [12534]={ + ["distance"]=75199, + ["mine_stage"]=28 + }, + [12535]={ + ["distance"]=75205, + ["mine_stage"]=22 + }, + [12536]={ + ["distance"]=75211, + ["mine_stage"]=33 + }, + [12537]={ + ["distance"]=75217, + ["mine_stage"]=53 + }, + [12538]={ + ["distance"]=75223, + ["mine_stage"]=5 + }, + [12539]={ + ["distance"]=75229, + ["mine_stage"]=3 + }, + [12540]={ + ["distance"]=75235, + ["mine_stage"]=45 + }, + [12541]={ + ["distance"]=75241, + ["mine_stage"]=27 + }, + [12542]={ + ["distance"]=75247, + ["mine_stage"]=21 + }, + [12543]={ + ["distance"]=75253, + ["mine_stage"]=42 + }, + [12544]={ + ["distance"]=75259, + ["mine_stage"]=37 + }, + [12545]={ + ["distance"]=75265, + ["mine_stage"]=45 + }, + [12546]={ + ["distance"]=75271, + ["mine_stage"]=12 + }, + [12547]={ + ["distance"]=75277, + ["mine_stage"]=7 + }, + [12548]={ + ["distance"]=75283, + ["mine_stage"]=20 + }, + [12549]={ + ["distance"]=75289, + ["mine_stage"]=1 + }, + [12550]={ + ["distance"]=75295, + ["mine_stage"]=49 + }, + [12551]={ + ["distance"]=75301, + ["mine_stage"]=68 + }, + [12552]={ + ["distance"]=75307, + ["mine_stage"]=55 + }, + [12553]={ + ["distance"]=75313, + ["mine_stage"]=21 + }, + [12554]={ + ["distance"]=75319, + ["mine_stage"]=15 + }, + [12555]={ + ["distance"]=75325, + ["mine_stage"]=48 + }, + [12556]={ + ["distance"]=75331, + ["mine_stage"]=18 + }, + [12557]={ + ["distance"]=75337, + ["mine_stage"]=52 + }, + [12558]={ + ["distance"]=75343, + ["mine_stage"]=47 + }, + [12559]={ + ["distance"]=75349, + ["mine_stage"]=8 + }, + [12560]={ + ["distance"]=75355, + ["mine_stage"]=44 + }, + [12561]={ + ["distance"]=75361, + ["mine_stage"]=1 + }, + [12562]={ + ["distance"]=75367, + ["mine_stage"]=3 + }, + [12563]={ + ["distance"]=75373, + ["mine_stage"]=2 + }, + [12564]={ + ["distance"]=75379, + ["mine_stage"]=31 + }, + [12565]={ + ["distance"]=75385, + ["mine_stage"]=39 + }, + [12566]={ + ["distance"]=75391, + ["mine_stage"]=3 + }, + [12567]={ + ["distance"]=75397, + ["mine_stage"]=23 + }, + [12568]={ + ["distance"]=75403, + ["mine_stage"]=47 + }, + [12569]={ + ["distance"]=75409, + ["mine_stage"]=51 + }, + [12570]={ + ["distance"]=75415, + ["mine_stage"]=45 + }, + [12571]={ + ["distance"]=75421, + ["mine_stage"]=55 + }, + [12572]={ + ["distance"]=75427, + ["mine_stage"]=58 + }, + [12573]={ + ["distance"]=75433, + ["mine_stage"]=19 + }, + [12574]={ + ["distance"]=75439, + ["mine_stage"]=5 + }, + [12575]={ + ["distance"]=75445, + ["mine_stage"]=21 + }, + [12576]={ + ["distance"]=75451, + ["mine_stage"]=25 + }, + [12577]={ + ["distance"]=75457, + ["mine_stage"]=36 + }, + [12578]={ + ["distance"]=75463, + ["mine_stage"]=36 + }, + [12579]={ + ["distance"]=75469, + ["mine_stage"]=17 + }, + [12580]={ + ["distance"]=75475, + ["mine_stage"]=10 + }, + [12581]={ + ["distance"]=75481, + ["mine_stage"]=7 + }, + [12582]={ + ["distance"]=75487, + ["mine_stage"]=26 + }, + [12583]={ + ["distance"]=75493, + ["mine_stage"]=58 + }, + [12584]={ + ["distance"]=75499, + ["mine_stage"]=16 + }, + [12585]={ + ["distance"]=75505, + ["mine_stage"]=27 + }, + [12586]={ + ["distance"]=75511, + ["mine_stage"]=51 + }, + [12587]={ + ["distance"]=75517, + ["mine_stage"]=35 + }, + [12588]={ + ["distance"]=75523, + ["mine_stage"]=28 + }, + [12589]={ + ["distance"]=75529, + ["mine_stage"]=44 + }, + [12590]={ + ["distance"]=75535, + ["mine_stage"]=6 + }, + [12591]={ + ["distance"]=75541, + ["mine_stage"]=14 + }, + [12592]={ + ["distance"]=75547, + ["mine_stage"]=8 + }, + [12593]={ + ["distance"]=75553, + ["mine_stage"]=29 + }, + [12594]={ + ["distance"]=75559, + ["mine_stage"]=7 + }, + [12595]={ + ["distance"]=75565, + ["mine_stage"]=47 + }, + [12596]={ + ["distance"]=75571, + ["mine_stage"]=41 + }, + [12597]={ + ["distance"]=75577, + ["mine_stage"]=3 + }, + [12598]={ + ["distance"]=75583, + ["mine_stage"]=13 + }, + [12599]={ + ["distance"]=75589, + ["mine_stage"]=41 + }, + [12600]={ + ["distance"]=75595, + ["mine_stage"]=27 + }, + [12601]={ + ["distance"]=75601, + ["mine_stage"]=66 + }, + [12602]={ + ["distance"]=75607, + ["mine_stage"]=38 + }, + [12603]={ + ["distance"]=75613, + ["mine_stage"]=40 + }, + [12604]={ + ["distance"]=75619, + ["mine_stage"]=16 + }, + [12605]={ + ["distance"]=75625, + ["mine_stage"]=26 + }, + [12606]={ + ["distance"]=75631, + ["mine_stage"]=23 + }, + [12607]={ + ["distance"]=75637, + ["mine_stage"]=40 + }, + [12608]={ + ["distance"]=75643, + ["mine_stage"]=52 + }, + [12609]={ + ["distance"]=75649, + ["mine_stage"]=3 + }, + [12610]={ + ["distance"]=75655, + ["mine_stage"]=8 + }, + [12611]={ + ["distance"]=75661, + ["mine_stage"]=60 + }, + [12612]={ + ["distance"]=75667, + ["mine_stage"]=59 + }, + [12613]={ + ["distance"]=75673, + ["mine_stage"]=41 + }, + [12614]={ + ["distance"]=75679, + ["mine_stage"]=42 + }, + [12615]={ + ["distance"]=75685, + ["mine_stage"]=2 + }, + [12616]={ + ["distance"]=75691, + ["mine_stage"]=56 + }, + [12617]={ + ["distance"]=75697, + ["mine_stage"]=1 + }, + [12618]={ + ["distance"]=75703, + ["mine_stage"]=4 + }, + [12619]={ + ["distance"]=75709, + ["mine_stage"]=55 + }, + [12620]={ + ["distance"]=75715, + ["mine_stage"]=56 + }, + [12621]={ + ["distance"]=75721, + ["mine_stage"]=41 + }, + [12622]={ + ["distance"]=75727, + ["mine_stage"]=14 + }, + [12623]={ + ["distance"]=75733, + ["mine_stage"]=49 + }, + [12624]={ + ["distance"]=75739, + ["mine_stage"]=48 + }, + [12625]={ + ["distance"]=75745, + ["mine_stage"]=17 + }, + [12626]={ + ["distance"]=75751, + ["mine_stage"]=8 + }, + [12627]={ + ["distance"]=75757, + ["mine_stage"]=30 + }, + [12628]={ + ["distance"]=75763, + ["mine_stage"]=56 + }, + [12629]={ + ["distance"]=75769, + ["mine_stage"]=21 + }, + [12630]={ + ["distance"]=75775, + ["mine_stage"]=47 + }, + [12631]={ + ["distance"]=75781, + ["mine_stage"]=9 + }, + [12632]={ + ["distance"]=75787, + ["mine_stage"]=8 + }, + [12633]={ + ["distance"]=75793, + ["mine_stage"]=39 + }, + [12634]={ + ["distance"]=75799, + ["mine_stage"]=15 + }, + [12635]={ + ["distance"]=75805, + ["mine_stage"]=49 + }, + [12636]={ + ["distance"]=75811, + ["mine_stage"]=54 + }, + [12637]={ + ["distance"]=75817, + ["mine_stage"]=3 + }, + [12638]={ + ["distance"]=75823, + ["mine_stage"]=23 + }, + [12639]={ + ["distance"]=75829, + ["mine_stage"]=37 + }, + [12640]={ + ["distance"]=75835, + ["mine_stage"]=36 + }, + [12641]={ + ["distance"]=75841, + ["mine_stage"]=28 + }, + [12642]={ + ["distance"]=75847, + ["mine_stage"]=19 + }, + [12643]={ + ["distance"]=75853, + ["mine_stage"]=18 + }, + [12644]={ + ["distance"]=75859, + ["mine_stage"]=37 + }, + [12645]={ + ["distance"]=75865, + ["mine_stage"]=6 + }, + [12646]={ + ["distance"]=75871, + ["mine_stage"]=51 + }, + [12647]={ + ["distance"]=75877, + ["mine_stage"]=9 + }, + [12648]={ + ["distance"]=75883, + ["mine_stage"]=42 + }, + [12649]={ + ["distance"]=75889, + ["mine_stage"]=47 + }, + [12650]={ + ["distance"]=75895, + ["mine_stage"]=8 + }, + [12651]={ + ["distance"]=75901, + ["mine_stage"]=69 + }, + [12652]={ + ["distance"]=75907, + ["mine_stage"]=36 + }, + [12653]={ + ["distance"]=75913, + ["mine_stage"]=18 + }, + [12654]={ + ["distance"]=75919, + ["mine_stage"]=44 + }, + [12655]={ + ["distance"]=75925, + ["mine_stage"]=53 + }, + [12656]={ + ["distance"]=75931, + ["mine_stage"]=35 + }, + [12657]={ + ["distance"]=75937, + ["mine_stage"]=54 + }, + [12658]={ + ["distance"]=75943, + ["mine_stage"]=55 + }, + [12659]={ + ["distance"]=75949, + ["mine_stage"]=11 + }, + [12660]={ + ["distance"]=75955, + ["mine_stage"]=39 + }, + [12661]={ + ["distance"]=75961, + ["mine_stage"]=40 + }, + [12662]={ + ["distance"]=75967, + ["mine_stage"]=8 + }, + [12663]={ + ["distance"]=75973, + ["mine_stage"]=39 + }, + [12664]={ + ["distance"]=75979, + ["mine_stage"]=50 + }, + [12665]={ + ["distance"]=75985, + ["mine_stage"]=24 + }, + [12666]={ + ["distance"]=75991, + ["mine_stage"]=36 + }, + [12667]={ + ["distance"]=75997, + ["mine_stage"]=46 + }, + [12668]={ + ["distance"]=76003, + ["mine_stage"]=20 + }, + [12669]={ + ["distance"]=76009, + ["mine_stage"]=23 + }, + [12670]={ + ["distance"]=76015, + ["mine_stage"]=17 + }, + [12671]={ + ["distance"]=76021, + ["mine_stage"]=40 + }, + [12672]={ + ["distance"]=76027, + ["mine_stage"]=24 + }, + [12673]={ + ["distance"]=76033, + ["mine_stage"]=32 + }, + [12674]={ + ["distance"]=76039, + ["mine_stage"]=58 + }, + [12675]={ + ["distance"]=76045, + ["mine_stage"]=20 + }, + [12676]={ + ["distance"]=76051, + ["mine_stage"]=38 + }, + [12677]={ + ["distance"]=76057, + ["mine_stage"]=30 + }, + [12678]={ + ["distance"]=76063, + ["mine_stage"]=46 + }, + [12679]={ + ["distance"]=76069, + ["mine_stage"]=19 + }, + [12680]={ + ["distance"]=76075, + ["mine_stage"]=58 + }, + [12681]={ + ["distance"]=76081, + ["mine_stage"]=53 + }, + [12682]={ + ["distance"]=76087, + ["mine_stage"]=52 + }, + [12683]={ + ["distance"]=76093, + ["mine_stage"]=5 + }, + [12684]={ + ["distance"]=76099, + ["mine_stage"]=29 + }, + [12685]={ + ["distance"]=76105, + ["mine_stage"]=28 + }, + [12686]={ + ["distance"]=76111, + ["mine_stage"]=6 + }, + [12687]={ + ["distance"]=76117, + ["mine_stage"]=39 + }, + [12688]={ + ["distance"]=76123, + ["mine_stage"]=32 + }, + [12689]={ + ["distance"]=76129, + ["mine_stage"]=57 + }, + [12690]={ + ["distance"]=76135, + ["mine_stage"]=58 + }, + [12691]={ + ["distance"]=76141, + ["mine_stage"]=21 + }, + [12692]={ + ["distance"]=76147, + ["mine_stage"]=47 + }, + [12693]={ + ["distance"]=76153, + ["mine_stage"]=38 + }, + [12694]={ + ["distance"]=76159, + ["mine_stage"]=4 + }, + [12695]={ + ["distance"]=76165, + ["mine_stage"]=51 + }, + [12696]={ + ["distance"]=76171, + ["mine_stage"]=18 + }, + [12697]={ + ["distance"]=76177, + ["mine_stage"]=2 + }, + [12698]={ + ["distance"]=76183, + ["mine_stage"]=28 + }, + [12699]={ + ["distance"]=76189, + ["mine_stage"]=16 + }, + [12700]={ + ["distance"]=76195, + ["mine_stage"]=46 + }, + [12701]={ + ["distance"]=76201, + ["mine_stage"]=64 + }, + [12702]={ + ["distance"]=76207, + ["mine_stage"]=15 + }, + [12703]={ + ["distance"]=76213, + ["mine_stage"]=48 + }, + [12704]={ + ["distance"]=76219, + ["mine_stage"]=3 + }, + [12705]={ + ["distance"]=76225, + ["mine_stage"]=55 + }, + [12706]={ + ["distance"]=76231, + ["mine_stage"]=50 + }, + [12707]={ + ["distance"]=76237, + ["mine_stage"]=39 + }, + [12708]={ + ["distance"]=76243, + ["mine_stage"]=23 + }, + [12709]={ + ["distance"]=76249, + ["mine_stage"]=45 + }, + [12710]={ + ["distance"]=76255, + ["mine_stage"]=9 + }, + [12711]={ + ["distance"]=76261, + ["mine_stage"]=28 + }, + [12712]={ + ["distance"]=76267, + ["mine_stage"]=60 + }, + [12713]={ + ["distance"]=76273, + ["mine_stage"]=16 + }, + [12714]={ + ["distance"]=76279, + ["mine_stage"]=41 + }, + [12715]={ + ["distance"]=76285, + ["mine_stage"]=31 + }, + [12716]={ + ["distance"]=76291, + ["mine_stage"]=9 + }, + [12717]={ + ["distance"]=76297, + ["mine_stage"]=43 + }, + [12718]={ + ["distance"]=76303, + ["mine_stage"]=41 + }, + [12719]={ + ["distance"]=76309, + ["mine_stage"]=35 + }, + [12720]={ + ["distance"]=76315, + ["mine_stage"]=29 + }, + [12721]={ + ["distance"]=76321, + ["mine_stage"]=12 + }, + [12722]={ + ["distance"]=76327, + ["mine_stage"]=32 + }, + [12723]={ + ["distance"]=76333, + ["mine_stage"]=24 + }, + [12724]={ + ["distance"]=76339, + ["mine_stage"]=4 + }, + [12725]={ + ["distance"]=76345, + ["mine_stage"]=45 + }, + [12726]={ + ["distance"]=76351, + ["mine_stage"]=13 + }, + [12727]={ + ["distance"]=76357, + ["mine_stage"]=11 + }, + [12728]={ + ["distance"]=76363, + ["mine_stage"]=39 + }, + [12729]={ + ["distance"]=76369, + ["mine_stage"]=16 + }, + [12730]={ + ["distance"]=76375, + ["mine_stage"]=54 + }, + [12731]={ + ["distance"]=76381, + ["mine_stage"]=17 + }, + [12732]={ + ["distance"]=76387, + ["mine_stage"]=16 + }, + [12733]={ + ["distance"]=76393, + ["mine_stage"]=21 + }, + [12734]={ + ["distance"]=76399, + ["mine_stage"]=6 + }, + [12735]={ + ["distance"]=76405, + ["mine_stage"]=32 + }, + [12736]={ + ["distance"]=76411, + ["mine_stage"]=53 + }, + [12737]={ + ["distance"]=76417, + ["mine_stage"]=45 + }, + [12738]={ + ["distance"]=76423, + ["mine_stage"]=27 + }, + [12739]={ + ["distance"]=76429, + ["mine_stage"]=55 + }, + [12740]={ + ["distance"]=76435, + ["mine_stage"]=6 + }, + [12741]={ + ["distance"]=76441, + ["mine_stage"]=27 + }, + [12742]={ + ["distance"]=76447, + ["mine_stage"]=13 + }, + [12743]={ + ["distance"]=76453, + ["mine_stage"]=6 + }, + [12744]={ + ["distance"]=76459, + ["mine_stage"]=1 + }, + [12745]={ + ["distance"]=76465, + ["mine_stage"]=60 + }, + [12746]={ + ["distance"]=76471, + ["mine_stage"]=30 + }, + [12747]={ + ["distance"]=76477, + ["mine_stage"]=30 + }, + [12748]={ + ["distance"]=76483, + ["mine_stage"]=49 + }, + [12749]={ + ["distance"]=76489, + ["mine_stage"]=44 + }, + [12750]={ + ["distance"]=76495, + ["mine_stage"]=37 + }, + [12751]={ + ["distance"]=76501, + ["mine_stage"]=67 + }, + [12752]={ + ["distance"]=76507, + ["mine_stage"]=57 + }, + [12753]={ + ["distance"]=76513, + ["mine_stage"]=11 + }, + [12754]={ + ["distance"]=76519, + ["mine_stage"]=54 + }, + [12755]={ + ["distance"]=76525, + ["mine_stage"]=52 + }, + [12756]={ + ["distance"]=76531, + ["mine_stage"]=44 + }, + [12757]={ + ["distance"]=76537, + ["mine_stage"]=25 + }, + [12758]={ + ["distance"]=76543, + ["mine_stage"]=32 + }, + [12759]={ + ["distance"]=76549, + ["mine_stage"]=17 + }, + [12760]={ + ["distance"]=76555, + ["mine_stage"]=23 + }, + [12761]={ + ["distance"]=76561, + ["mine_stage"]=39 + }, + [12762]={ + ["distance"]=76567, + ["mine_stage"]=43 + }, + [12763]={ + ["distance"]=76573, + ["mine_stage"]=11 + }, + [12764]={ + ["distance"]=76579, + ["mine_stage"]=6 + }, + [12765]={ + ["distance"]=76585, + ["mine_stage"]=35 + }, + [12766]={ + ["distance"]=76591, + ["mine_stage"]=14 + }, + [12767]={ + ["distance"]=76597, + ["mine_stage"]=21 + }, + [12768]={ + ["distance"]=76603, + ["mine_stage"]=58 + }, + [12769]={ + ["distance"]=76609, + ["mine_stage"]=60 + }, + [12770]={ + ["distance"]=76615, + ["mine_stage"]=60 + }, + [12771]={ + ["distance"]=76621, + ["mine_stage"]=43 + }, + [12772]={ + ["distance"]=76627, + ["mine_stage"]=49 + }, + [12773]={ + ["distance"]=76633, + ["mine_stage"]=42 + }, + [12774]={ + ["distance"]=76639, + ["mine_stage"]=25 + }, + [12775]={ + ["distance"]=76645, + ["mine_stage"]=2 + }, + [12776]={ + ["distance"]=76651, + ["mine_stage"]=60 + }, + [12777]={ + ["distance"]=76657, + ["mine_stage"]=35 + }, + [12778]={ + ["distance"]=76663, + ["mine_stage"]=3 + }, + [12779]={ + ["distance"]=76669, + ["mine_stage"]=39 + }, + [12780]={ + ["distance"]=76675, + ["mine_stage"]=19 + }, + [12781]={ + ["distance"]=76681, + ["mine_stage"]=4 + }, + [12782]={ + ["distance"]=76687, + ["mine_stage"]=58 + }, + [12783]={ + ["distance"]=76693, + ["mine_stage"]=19 + }, + [12784]={ + ["distance"]=76699, + ["mine_stage"]=6 + }, + [12785]={ + ["distance"]=76705, + ["mine_stage"]=14 + }, + [12786]={ + ["distance"]=76711, + ["mine_stage"]=29 + }, + [12787]={ + ["distance"]=76717, + ["mine_stage"]=16 + }, + [12788]={ + ["distance"]=76723, + ["mine_stage"]=5 + }, + [12789]={ + ["distance"]=76729, + ["mine_stage"]=18 + }, + [12790]={ + ["distance"]=76735, + ["mine_stage"]=3 + }, + [12791]={ + ["distance"]=76741, + ["mine_stage"]=60 + }, + [12792]={ + ["distance"]=76747, + ["mine_stage"]=2 + }, + [12793]={ + ["distance"]=76753, + ["mine_stage"]=45 + }, + [12794]={ + ["distance"]=76759, + ["mine_stage"]=27 + }, + [12795]={ + ["distance"]=76765, + ["mine_stage"]=57 + }, + [12796]={ + ["distance"]=76771, + ["mine_stage"]=1 + }, + [12797]={ + ["distance"]=76777, + ["mine_stage"]=45 + }, + [12798]={ + ["distance"]=76783, + ["mine_stage"]=53 + }, + [12799]={ + ["distance"]=76789, + ["mine_stage"]=49 + }, + [12800]={ + ["distance"]=76795, + ["mine_stage"]=5 + }, + [12801]={ + ["distance"]=76801, + ["mine_stage"]=65 + }, + [12802]={ + ["distance"]=76807, + ["mine_stage"]=4 + }, + [12803]={ + ["distance"]=76813, + ["mine_stage"]=10 + }, + [12804]={ + ["distance"]=76819, + ["mine_stage"]=28 + }, + [12805]={ + ["distance"]=76825, + ["mine_stage"]=51 + }, + [12806]={ + ["distance"]=76831, + ["mine_stage"]=24 + }, + [12807]={ + ["distance"]=76837, + ["mine_stage"]=53 + }, + [12808]={ + ["distance"]=76843, + ["mine_stage"]=51 + }, + [12809]={ + ["distance"]=76849, + ["mine_stage"]=6 + }, + [12810]={ + ["distance"]=76855, + ["mine_stage"]=48 + }, + [12811]={ + ["distance"]=76861, + ["mine_stage"]=34 + }, + [12812]={ + ["distance"]=76867, + ["mine_stage"]=27 + }, + [12813]={ + ["distance"]=76873, + ["mine_stage"]=8 + }, + [12814]={ + ["distance"]=76879, + ["mine_stage"]=1 + }, + [12815]={ + ["distance"]=76885, + ["mine_stage"]=41 + }, + [12816]={ + ["distance"]=76891, + ["mine_stage"]=1 + }, + [12817]={ + ["distance"]=76897, + ["mine_stage"]=11 + }, + [12818]={ + ["distance"]=76903, + ["mine_stage"]=27 + }, + [12819]={ + ["distance"]=76909, + ["mine_stage"]=48 + }, + [12820]={ + ["distance"]=76915, + ["mine_stage"]=48 + }, + [12821]={ + ["distance"]=76921, + ["mine_stage"]=34 + }, + [12822]={ + ["distance"]=76927, + ["mine_stage"]=10 + }, + [12823]={ + ["distance"]=76933, + ["mine_stage"]=48 + }, + [12824]={ + ["distance"]=76939, + ["mine_stage"]=52 + }, + [12825]={ + ["distance"]=76945, + ["mine_stage"]=32 + }, + [12826]={ + ["distance"]=76951, + ["mine_stage"]=40 + }, + [12827]={ + ["distance"]=76957, + ["mine_stage"]=39 + }, + [12828]={ + ["distance"]=76963, + ["mine_stage"]=17 + }, + [12829]={ + ["distance"]=76969, + ["mine_stage"]=21 + }, + [12830]={ + ["distance"]=76975, + ["mine_stage"]=32 + }, + [12831]={ + ["distance"]=76981, + ["mine_stage"]=22 + }, + [12832]={ + ["distance"]=76987, + ["mine_stage"]=27 + }, + [12833]={ + ["distance"]=76993, + ["mine_stage"]=4 + }, + [12834]={ + ["distance"]=76999, + ["mine_stage"]=1 + }, + [12835]={ + ["distance"]=77005, + ["mine_stage"]=10 + }, + [12836]={ + ["distance"]=77011, + ["mine_stage"]=40 + }, + [12837]={ + ["distance"]=77017, + ["mine_stage"]=24 + }, + [12838]={ + ["distance"]=77023, + ["mine_stage"]=24 + }, + [12839]={ + ["distance"]=77029, + ["mine_stage"]=47 + }, + [12840]={ + ["distance"]=77035, + ["mine_stage"]=57 + }, + [12841]={ + ["distance"]=77041, + ["mine_stage"]=24 + }, + [12842]={ + ["distance"]=77047, + ["mine_stage"]=36 + }, + [12843]={ + ["distance"]=77053, + ["mine_stage"]=41 + }, + [12844]={ + ["distance"]=77059, + ["mine_stage"]=4 + }, + [12845]={ + ["distance"]=77065, + ["mine_stage"]=26 + }, + [12846]={ + ["distance"]=77071, + ["mine_stage"]=14 + }, + [12847]={ + ["distance"]=77077, + ["mine_stage"]=21 + }, + [12848]={ + ["distance"]=77083, + ["mine_stage"]=57 + }, + [12849]={ + ["distance"]=77089, + ["mine_stage"]=22 + }, + [12850]={ + ["distance"]=77095, + ["mine_stage"]=47 + }, + [12851]={ + ["distance"]=77101, + ["mine_stage"]=68 + }, + [12852]={ + ["distance"]=77107, + ["mine_stage"]=6 + }, + [12853]={ + ["distance"]=77113, + ["mine_stage"]=13 + }, + [12854]={ + ["distance"]=77119, + ["mine_stage"]=40 + }, + [12855]={ + ["distance"]=77125, + ["mine_stage"]=56 + }, + [12856]={ + ["distance"]=77131, + ["mine_stage"]=21 + }, + [12857]={ + ["distance"]=77137, + ["mine_stage"]=48 + }, + [12858]={ + ["distance"]=77143, + ["mine_stage"]=52 + }, + [12859]={ + ["distance"]=77149, + ["mine_stage"]=26 + }, + [12860]={ + ["distance"]=77155, + ["mine_stage"]=9 + }, + [12861]={ + ["distance"]=77161, + ["mine_stage"]=30 + }, + [12862]={ + ["distance"]=77167, + ["mine_stage"]=37 + }, + [12863]={ + ["distance"]=77173, + ["mine_stage"]=58 + }, + [12864]={ + ["distance"]=77179, + ["mine_stage"]=60 + }, + [12865]={ + ["distance"]=77185, + ["mine_stage"]=29 + }, + [12866]={ + ["distance"]=77191, + ["mine_stage"]=33 + }, + [12867]={ + ["distance"]=77197, + ["mine_stage"]=57 + }, + [12868]={ + ["distance"]=77203, + ["mine_stage"]=17 + }, + [12869]={ + ["distance"]=77209, + ["mine_stage"]=41 + }, + [12870]={ + ["distance"]=77215, + ["mine_stage"]=39 + }, + [12871]={ + ["distance"]=77221, + ["mine_stage"]=58 + }, + [12872]={ + ["distance"]=77227, + ["mine_stage"]=32 + }, + [12873]={ + ["distance"]=77233, + ["mine_stage"]=30 + }, + [12874]={ + ["distance"]=77239, + ["mine_stage"]=23 + }, + [12875]={ + ["distance"]=77245, + ["mine_stage"]=46 + }, + [12876]={ + ["distance"]=77251, + ["mine_stage"]=1 + }, + [12877]={ + ["distance"]=77257, + ["mine_stage"]=27 + }, + [12878]={ + ["distance"]=77263, + ["mine_stage"]=17 + }, + [12879]={ + ["distance"]=77269, + ["mine_stage"]=8 + }, + [12880]={ + ["distance"]=77275, + ["mine_stage"]=50 + }, + [12881]={ + ["distance"]=77281, + ["mine_stage"]=18 + }, + [12882]={ + ["distance"]=77287, + ["mine_stage"]=34 + }, + [12883]={ + ["distance"]=77293, + ["mine_stage"]=14 + }, + [12884]={ + ["distance"]=77299, + ["mine_stage"]=52 + }, + [12885]={ + ["distance"]=77305, + ["mine_stage"]=6 + }, + [12886]={ + ["distance"]=77311, + ["mine_stage"]=60 + }, + [12887]={ + ["distance"]=77317, + ["mine_stage"]=10 + }, + [12888]={ + ["distance"]=77323, + ["mine_stage"]=39 + }, + [12889]={ + ["distance"]=77329, + ["mine_stage"]=25 + }, + [12890]={ + ["distance"]=77335, + ["mine_stage"]=51 + }, + [12891]={ + ["distance"]=77341, + ["mine_stage"]=39 + }, + [12892]={ + ["distance"]=77347, + ["mine_stage"]=17 + }, + [12893]={ + ["distance"]=77353, + ["mine_stage"]=6 + }, + [12894]={ + ["distance"]=77359, + ["mine_stage"]=13 + }, + [12895]={ + ["distance"]=77365, + ["mine_stage"]=32 + }, + [12896]={ + ["distance"]=77371, + ["mine_stage"]=9 + }, + [12897]={ + ["distance"]=77377, + ["mine_stage"]=19 + }, + [12898]={ + ["distance"]=77383, + ["mine_stage"]=42 + }, + [12899]={ + ["distance"]=77389, + ["mine_stage"]=6 + }, + [12900]={ + ["distance"]=77395, + ["mine_stage"]=4 + }, + [12901]={ + ["distance"]=77401, + ["mine_stage"]=66 + }, + [12902]={ + ["distance"]=77407, + ["mine_stage"]=3 + }, + [12903]={ + ["distance"]=77413, + ["mine_stage"]=34 + }, + [12904]={ + ["distance"]=77419, + ["mine_stage"]=42 + }, + [12905]={ + ["distance"]=77425, + ["mine_stage"]=32 + }, + [12906]={ + ["distance"]=77431, + ["mine_stage"]=58 + }, + [12907]={ + ["distance"]=77437, + ["mine_stage"]=21 + }, + [12908]={ + ["distance"]=77443, + ["mine_stage"]=19 + }, + [12909]={ + ["distance"]=77449, + ["mine_stage"]=3 + }, + [12910]={ + ["distance"]=77455, + ["mine_stage"]=51 + }, + [12911]={ + ["distance"]=77461, + ["mine_stage"]=44 + }, + [12912]={ + ["distance"]=77467, + ["mine_stage"]=39 + }, + [12913]={ + ["distance"]=77473, + ["mine_stage"]=30 + }, + [12914]={ + ["distance"]=77479, + ["mine_stage"]=27 + }, + [12915]={ + ["distance"]=77485, + ["mine_stage"]=24 + }, + [12916]={ + ["distance"]=77491, + ["mine_stage"]=40 + }, + [12917]={ + ["distance"]=77497, + ["mine_stage"]=56 + }, + [12918]={ + ["distance"]=77503, + ["mine_stage"]=57 + }, + [12919]={ + ["distance"]=77509, + ["mine_stage"]=57 + }, + [12920]={ + ["distance"]=77515, + ["mine_stage"]=9 + }, + [12921]={ + ["distance"]=77521, + ["mine_stage"]=28 + }, + [12922]={ + ["distance"]=77527, + ["mine_stage"]=46 + }, + [12923]={ + ["distance"]=77533, + ["mine_stage"]=3 + }, + [12924]={ + ["distance"]=77539, + ["mine_stage"]=19 + }, + [12925]={ + ["distance"]=77545, + ["mine_stage"]=1 + }, + [12926]={ + ["distance"]=77551, + ["mine_stage"]=29 + }, + [12927]={ + ["distance"]=77557, + ["mine_stage"]=49 + }, + [12928]={ + ["distance"]=77563, + ["mine_stage"]=10 + }, + [12929]={ + ["distance"]=77569, + ["mine_stage"]=57 + }, + [12930]={ + ["distance"]=77575, + ["mine_stage"]=12 + }, + [12931]={ + ["distance"]=77581, + ["mine_stage"]=60 + }, + [12932]={ + ["distance"]=77587, + ["mine_stage"]=20 + }, + [12933]={ + ["distance"]=77593, + ["mine_stage"]=32 + }, + [12934]={ + ["distance"]=77599, + ["mine_stage"]=50 + }, + [12935]={ + ["distance"]=77605, + ["mine_stage"]=27 + }, + [12936]={ + ["distance"]=77611, + ["mine_stage"]=36 + }, + [12937]={ + ["distance"]=77617, + ["mine_stage"]=14 + }, + [12938]={ + ["distance"]=77623, + ["mine_stage"]=48 + }, + [12939]={ + ["distance"]=77629, + ["mine_stage"]=1 + }, + [12940]={ + ["distance"]=77635, + ["mine_stage"]=37 + }, + [12941]={ + ["distance"]=77641, + ["mine_stage"]=15 + }, + [12942]={ + ["distance"]=77647, + ["mine_stage"]=20 + }, + [12943]={ + ["distance"]=77653, + ["mine_stage"]=7 + }, + [12944]={ + ["distance"]=77659, + ["mine_stage"]=29 + }, + [12945]={ + ["distance"]=77665, + ["mine_stage"]=21 + }, + [12946]={ + ["distance"]=77671, + ["mine_stage"]=47 + }, + [12947]={ + ["distance"]=77677, + ["mine_stage"]=33 + }, + [12948]={ + ["distance"]=77683, + ["mine_stage"]=47 + }, + [12949]={ + ["distance"]=77689, + ["mine_stage"]=11 + }, + [12950]={ + ["distance"]=77695, + ["mine_stage"]=33 + }, + [12951]={ + ["distance"]=77701, + ["mine_stage"]=69 + }, + [12952]={ + ["distance"]=77707, + ["mine_stage"]=60 + }, + [12953]={ + ["distance"]=77713, + ["mine_stage"]=40 + }, + [12954]={ + ["distance"]=77719, + ["mine_stage"]=6 + }, + [12955]={ + ["distance"]=77725, + ["mine_stage"]=29 + }, + [12956]={ + ["distance"]=77731, + ["mine_stage"]=11 + }, + [12957]={ + ["distance"]=77737, + ["mine_stage"]=45 + }, + [12958]={ + ["distance"]=77743, + ["mine_stage"]=48 + }, + [12959]={ + ["distance"]=77749, + ["mine_stage"]=49 + }, + [12960]={ + ["distance"]=77755, + ["mine_stage"]=41 + }, + [12961]={ + ["distance"]=77761, + ["mine_stage"]=12 + }, + [12962]={ + ["distance"]=77767, + ["mine_stage"]=59 + }, + [12963]={ + ["distance"]=77773, + ["mine_stage"]=31 + }, + [12964]={ + ["distance"]=77779, + ["mine_stage"]=10 + }, + [12965]={ + ["distance"]=77785, + ["mine_stage"]=9 + }, + [12966]={ + ["distance"]=77791, + ["mine_stage"]=59 + }, + [12967]={ + ["distance"]=77797, + ["mine_stage"]=30 + }, + [12968]={ + ["distance"]=77803, + ["mine_stage"]=5 + }, + [12969]={ + ["distance"]=77809, + ["mine_stage"]=5 + }, + [12970]={ + ["distance"]=77815, + ["mine_stage"]=51 + }, + [12971]={ + ["distance"]=77821, + ["mine_stage"]=52 + }, + [12972]={ + ["distance"]=77827, + ["mine_stage"]=6 + }, + [12973]={ + ["distance"]=77833, + ["mine_stage"]=27 + }, + [12974]={ + ["distance"]=77839, + ["mine_stage"]=42 + }, + [12975]={ + ["distance"]=77845, + ["mine_stage"]=1 + }, + [12976]={ + ["distance"]=77851, + ["mine_stage"]=2 + }, + [12977]={ + ["distance"]=77857, + ["mine_stage"]=10 + }, + [12978]={ + ["distance"]=77863, + ["mine_stage"]=28 + }, + [12979]={ + ["distance"]=77869, + ["mine_stage"]=59 + }, + [12980]={ + ["distance"]=77875, + ["mine_stage"]=35 + }, + [12981]={ + ["distance"]=77881, + ["mine_stage"]=41 + }, + [12982]={ + ["distance"]=77887, + ["mine_stage"]=31 + }, + [12983]={ + ["distance"]=77893, + ["mine_stage"]=15 + }, + [12984]={ + ["distance"]=77899, + ["mine_stage"]=55 + }, + [12985]={ + ["distance"]=77905, + ["mine_stage"]=37 + }, + [12986]={ + ["distance"]=77911, + ["mine_stage"]=3 + }, + [12987]={ + ["distance"]=77917, + ["mine_stage"]=52 + }, + [12988]={ + ["distance"]=77923, + ["mine_stage"]=41 + }, + [12989]={ + ["distance"]=77929, + ["mine_stage"]=27 + }, + [12990]={ + ["distance"]=77935, + ["mine_stage"]=47 + }, + [12991]={ + ["distance"]=77941, + ["mine_stage"]=23 + }, + [12992]={ + ["distance"]=77947, + ["mine_stage"]=47 + }, + [12993]={ + ["distance"]=77953, + ["mine_stage"]=20 + }, + [12994]={ + ["distance"]=77959, + ["mine_stage"]=22 + }, + [12995]={ + ["distance"]=77965, + ["mine_stage"]=51 + }, + [12996]={ + ["distance"]=77971, + ["mine_stage"]=11 + }, + [12997]={ + ["distance"]=77977, + ["mine_stage"]=58 + }, + [12998]={ + ["distance"]=77983, + ["mine_stage"]=22 + }, + [12999]={ + ["distance"]=77989, + ["mine_stage"]=47 + }, + [13000]={ + ["distance"]=77995, + ["mine_stage"]=36 + }, + [13001]={ + ["distance"]=78001, + ["mine_stage"]=64 + }, + [13002]={ + ["distance"]=78007, + ["mine_stage"]=51 + }, + [13003]={ + ["distance"]=78013, + ["mine_stage"]=8 + }, + [13004]={ + ["distance"]=78019, + ["mine_stage"]=48 + }, + [13005]={ + ["distance"]=78025, + ["mine_stage"]=16 + }, + [13006]={ + ["distance"]=78031, + ["mine_stage"]=56 + }, + [13007]={ + ["distance"]=78037, + ["mine_stage"]=43 + }, + [13008]={ + ["distance"]=78043, + ["mine_stage"]=55 + }, + [13009]={ + ["distance"]=78049, + ["mine_stage"]=34 + }, + [13010]={ + ["distance"]=78055, + ["mine_stage"]=54 + }, + [13011]={ + ["distance"]=78061, + ["mine_stage"]=32 + }, + [13012]={ + ["distance"]=78067, + ["mine_stage"]=24 + }, + [13013]={ + ["distance"]=78073, + ["mine_stage"]=39 + }, + [13014]={ + ["distance"]=78079, + ["mine_stage"]=23 + }, + [13015]={ + ["distance"]=78085, + ["mine_stage"]=38 + }, + [13016]={ + ["distance"]=78091, + ["mine_stage"]=54 + }, + [13017]={ + ["distance"]=78097, + ["mine_stage"]=56 + }, + [13018]={ + ["distance"]=78103, + ["mine_stage"]=5 + }, + [13019]={ + ["distance"]=78109, + ["mine_stage"]=29 + }, + [13020]={ + ["distance"]=78115, + ["mine_stage"]=36 + }, + [13021]={ + ["distance"]=78121, + ["mine_stage"]=2 + }, + [13022]={ + ["distance"]=78127, + ["mine_stage"]=56 + }, + [13023]={ + ["distance"]=78133, + ["mine_stage"]=32 + }, + [13024]={ + ["distance"]=78139, + ["mine_stage"]=53 + }, + [13025]={ + ["distance"]=78145, + ["mine_stage"]=47 + }, + [13026]={ + ["distance"]=78151, + ["mine_stage"]=3 + }, + [13027]={ + ["distance"]=78157, + ["mine_stage"]=12 + }, + [13028]={ + ["distance"]=78163, + ["mine_stage"]=25 + }, + [13029]={ + ["distance"]=78169, + ["mine_stage"]=57 + }, + [13030]={ + ["distance"]=78175, + ["mine_stage"]=4 + }, + [13031]={ + ["distance"]=78181, + ["mine_stage"]=8 + }, + [13032]={ + ["distance"]=78187, + ["mine_stage"]=54 + }, + [13033]={ + ["distance"]=78193, + ["mine_stage"]=17 + }, + [13034]={ + ["distance"]=78199, + ["mine_stage"]=56 + }, + [13035]={ + ["distance"]=78205, + ["mine_stage"]=4 + }, + [13036]={ + ["distance"]=78211, + ["mine_stage"]=42 + }, + [13037]={ + ["distance"]=78217, + ["mine_stage"]=17 + }, + [13038]={ + ["distance"]=78223, + ["mine_stage"]=8 + }, + [13039]={ + ["distance"]=78229, + ["mine_stage"]=19 + }, + [13040]={ + ["distance"]=78235, + ["mine_stage"]=44 + }, + [13041]={ + ["distance"]=78241, + ["mine_stage"]=58 + }, + [13042]={ + ["distance"]=78247, + ["mine_stage"]=36 + }, + [13043]={ + ["distance"]=78253, + ["mine_stage"]=23 + }, + [13044]={ + ["distance"]=78259, + ["mine_stage"]=8 + }, + [13045]={ + ["distance"]=78265, + ["mine_stage"]=8 + }, + [13046]={ + ["distance"]=78271, + ["mine_stage"]=10 + }, + [13047]={ + ["distance"]=78277, + ["mine_stage"]=19 + }, + [13048]={ + ["distance"]=78283, + ["mine_stage"]=40 + }, + [13049]={ + ["distance"]=78289, + ["mine_stage"]=20 + }, + [13050]={ + ["distance"]=78295, + ["mine_stage"]=35 + }, + [13051]={ + ["distance"]=78301, + ["mine_stage"]=67 + }, + [13052]={ + ["distance"]=78307, + ["mine_stage"]=40 + }, + [13053]={ + ["distance"]=78313, + ["mine_stage"]=29 + }, + [13054]={ + ["distance"]=78319, + ["mine_stage"]=29 + }, + [13055]={ + ["distance"]=78325, + ["mine_stage"]=45 + }, + [13056]={ + ["distance"]=78331, + ["mine_stage"]=47 + }, + [13057]={ + ["distance"]=78337, + ["mine_stage"]=7 + }, + [13058]={ + ["distance"]=78343, + ["mine_stage"]=58 + }, + [13059]={ + ["distance"]=78349, + ["mine_stage"]=37 + }, + [13060]={ + ["distance"]=78355, + ["mine_stage"]=13 + }, + [13061]={ + ["distance"]=78361, + ["mine_stage"]=37 + }, + [13062]={ + ["distance"]=78367, + ["mine_stage"]=29 + }, + [13063]={ + ["distance"]=78373, + ["mine_stage"]=56 + }, + [13064]={ + ["distance"]=78379, + ["mine_stage"]=44 + }, + [13065]={ + ["distance"]=78385, + ["mine_stage"]=46 + }, + [13066]={ + ["distance"]=78391, + ["mine_stage"]=34 + }, + [13067]={ + ["distance"]=78397, + ["mine_stage"]=32 + }, + [13068]={ + ["distance"]=78403, + ["mine_stage"]=22 + }, + [13069]={ + ["distance"]=78409, + ["mine_stage"]=8 + }, + [13070]={ + ["distance"]=78415, + ["mine_stage"]=11 + }, + [13071]={ + ["distance"]=78421, + ["mine_stage"]=35 + }, + [13072]={ + ["distance"]=78427, + ["mine_stage"]=24 + }, + [13073]={ + ["distance"]=78433, + ["mine_stage"]=25 + }, + [13074]={ + ["distance"]=78439, + ["mine_stage"]=14 + }, + [13075]={ + ["distance"]=78445, + ["mine_stage"]=46 + }, + [13076]={ + ["distance"]=78451, + ["mine_stage"]=58 + }, + [13077]={ + ["distance"]=78457, + ["mine_stage"]=11 + }, + [13078]={ + ["distance"]=78463, + ["mine_stage"]=1 + }, + [13079]={ + ["distance"]=78469, + ["mine_stage"]=4 + }, + [13080]={ + ["distance"]=78475, + ["mine_stage"]=43 + }, + [13081]={ + ["distance"]=78481, + ["mine_stage"]=36 + }, + [13082]={ + ["distance"]=78487, + ["mine_stage"]=48 + }, + [13083]={ + ["distance"]=78493, + ["mine_stage"]=27 + }, + [13084]={ + ["distance"]=78499, + ["mine_stage"]=23 + }, + [13085]={ + ["distance"]=78505, + ["mine_stage"]=54 + }, + [13086]={ + ["distance"]=78511, + ["mine_stage"]=59 + }, + [13087]={ + ["distance"]=78517, + ["mine_stage"]=2 + }, + [13088]={ + ["distance"]=78523, + ["mine_stage"]=2 + }, + [13089]={ + ["distance"]=78529, + ["mine_stage"]=16 + }, + [13090]={ + ["distance"]=78535, + ["mine_stage"]=28 + }, + [13091]={ + ["distance"]=78541, + ["mine_stage"]=12 + }, + [13092]={ + ["distance"]=78547, + ["mine_stage"]=56 + }, + [13093]={ + ["distance"]=78553, + ["mine_stage"]=3 + }, + [13094]={ + ["distance"]=78559, + ["mine_stage"]=28 + }, + [13095]={ + ["distance"]=78565, + ["mine_stage"]=4 + }, + [13096]={ + ["distance"]=78571, + ["mine_stage"]=12 + }, + [13097]={ + ["distance"]=78577, + ["mine_stage"]=8 + }, + [13098]={ + ["distance"]=78583, + ["mine_stage"]=3 + }, + [13099]={ + ["distance"]=78589, + ["mine_stage"]=40 + }, + [13100]={ + ["distance"]=78595, + ["mine_stage"]=35 + }, + [13101]={ + ["distance"]=78601, + ["mine_stage"]=65 + }, + [13102]={ + ["distance"]=78607, + ["mine_stage"]=33 + }, + [13103]={ + ["distance"]=78613, + ["mine_stage"]=33 + }, + [13104]={ + ["distance"]=78619, + ["mine_stage"]=59 + }, + [13105]={ + ["distance"]=78625, + ["mine_stage"]=56 + }, + [13106]={ + ["distance"]=78631, + ["mine_stage"]=10 + }, + [13107]={ + ["distance"]=78637, + ["mine_stage"]=1 + }, + [13108]={ + ["distance"]=78643, + ["mine_stage"]=58 + }, + [13109]={ + ["distance"]=78649, + ["mine_stage"]=44 + }, + [13110]={ + ["distance"]=78655, + ["mine_stage"]=49 + }, + [13111]={ + ["distance"]=78661, + ["mine_stage"]=39 + }, + [13112]={ + ["distance"]=78667, + ["mine_stage"]=35 + }, + [13113]={ + ["distance"]=78673, + ["mine_stage"]=15 + }, + [13114]={ + ["distance"]=78679, + ["mine_stage"]=13 + }, + [13115]={ + ["distance"]=78685, + ["mine_stage"]=45 + }, + [13116]={ + ["distance"]=78691, + ["mine_stage"]=58 + }, + [13117]={ + ["distance"]=78697, + ["mine_stage"]=51 + }, + [13118]={ + ["distance"]=78703, + ["mine_stage"]=60 + }, + [13119]={ + ["distance"]=78709, + ["mine_stage"]=32 + }, + [13120]={ + ["distance"]=78715, + ["mine_stage"]=41 + }, + [13121]={ + ["distance"]=78721, + ["mine_stage"]=21 + }, + [13122]={ + ["distance"]=78727, + ["mine_stage"]=25 + }, + [13123]={ + ["distance"]=78733, + ["mine_stage"]=41 + }, + [13124]={ + ["distance"]=78739, + ["mine_stage"]=37 + }, + [13125]={ + ["distance"]=78745, + ["mine_stage"]=9 + }, + [13126]={ + ["distance"]=78751, + ["mine_stage"]=7 + }, + [13127]={ + ["distance"]=78757, + ["mine_stage"]=44 + }, + [13128]={ + ["distance"]=78763, + ["mine_stage"]=36 + }, + [13129]={ + ["distance"]=78769, + ["mine_stage"]=60 + }, + [13130]={ + ["distance"]=78775, + ["mine_stage"]=16 + }, + [13131]={ + ["distance"]=78781, + ["mine_stage"]=53 + }, + [13132]={ + ["distance"]=78787, + ["mine_stage"]=30 + }, + [13133]={ + ["distance"]=78793, + ["mine_stage"]=5 + }, + [13134]={ + ["distance"]=78799, + ["mine_stage"]=31 + }, + [13135]={ + ["distance"]=78805, + ["mine_stage"]=59 + }, + [13136]={ + ["distance"]=78811, + ["mine_stage"]=1 + }, + [13137]={ + ["distance"]=78817, + ["mine_stage"]=25 + }, + [13138]={ + ["distance"]=78823, + ["mine_stage"]=44 + }, + [13139]={ + ["distance"]=78829, + ["mine_stage"]=60 + }, + [13140]={ + ["distance"]=78835, + ["mine_stage"]=25 + }, + [13141]={ + ["distance"]=78841, + ["mine_stage"]=32 + }, + [13142]={ + ["distance"]=78847, + ["mine_stage"]=27 + }, + [13143]={ + ["distance"]=78853, + ["mine_stage"]=39 + }, + [13144]={ + ["distance"]=78859, + ["mine_stage"]=43 + }, + [13145]={ + ["distance"]=78865, + ["mine_stage"]=8 + }, + [13146]={ + ["distance"]=78871, + ["mine_stage"]=52 + }, + [13147]={ + ["distance"]=78877, + ["mine_stage"]=1 + }, + [13148]={ + ["distance"]=78883, + ["mine_stage"]=29 + }, + [13149]={ + ["distance"]=78889, + ["mine_stage"]=27 + }, + [13150]={ + ["distance"]=78895, + ["mine_stage"]=51 + }, + [13151]={ + ["distance"]=78901, + ["mine_stage"]=68 + }, + [13152]={ + ["distance"]=78907, + ["mine_stage"]=39 + }, + [13153]={ + ["distance"]=78913, + ["mine_stage"]=8 + }, + [13154]={ + ["distance"]=78919, + ["mine_stage"]=37 + }, + [13155]={ + ["distance"]=78925, + ["mine_stage"]=10 + }, + [13156]={ + ["distance"]=78931, + ["mine_stage"]=26 + }, + [13157]={ + ["distance"]=78937, + ["mine_stage"]=14 + }, + [13158]={ + ["distance"]=78943, + ["mine_stage"]=7 + }, + [13159]={ + ["distance"]=78949, + ["mine_stage"]=33 + }, + [13160]={ + ["distance"]=78955, + ["mine_stage"]=57 + }, + [13161]={ + ["distance"]=78961, + ["mine_stage"]=53 + }, + [13162]={ + ["distance"]=78967, + ["mine_stage"]=33 + }, + [13163]={ + ["distance"]=78973, + ["mine_stage"]=10 + }, + [13164]={ + ["distance"]=78979, + ["mine_stage"]=22 + }, + [13165]={ + ["distance"]=78985, + ["mine_stage"]=12 + }, + [13166]={ + ["distance"]=78991, + ["mine_stage"]=31 + }, + [13167]={ + ["distance"]=78997, + ["mine_stage"]=36 + }, + [13168]={ + ["distance"]=79003, + ["mine_stage"]=13 + }, + [13169]={ + ["distance"]=79009, + ["mine_stage"]=23 + }, + [13170]={ + ["distance"]=79015, + ["mine_stage"]=31 + }, + [13171]={ + ["distance"]=79021, + ["mine_stage"]=25 + }, + [13172]={ + ["distance"]=79027, + ["mine_stage"]=46 + }, + [13173]={ + ["distance"]=79033, + ["mine_stage"]=7 + }, + [13174]={ + ["distance"]=79039, + ["mine_stage"]=25 + }, + [13175]={ + ["distance"]=79045, + ["mine_stage"]=16 + }, + [13176]={ + ["distance"]=79051, + ["mine_stage"]=57 + }, + [13177]={ + ["distance"]=79057, + ["mine_stage"]=35 + }, + [13178]={ + ["distance"]=79063, + ["mine_stage"]=29 + }, + [13179]={ + ["distance"]=79069, + ["mine_stage"]=44 + }, + [13180]={ + ["distance"]=79075, + ["mine_stage"]=16 + }, + [13181]={ + ["distance"]=79081, + ["mine_stage"]=53 + }, + [13182]={ + ["distance"]=79087, + ["mine_stage"]=33 + }, + [13183]={ + ["distance"]=79093, + ["mine_stage"]=9 + }, + [13184]={ + ["distance"]=79099, + ["mine_stage"]=11 + }, + [13185]={ + ["distance"]=79105, + ["mine_stage"]=43 + }, + [13186]={ + ["distance"]=79111, + ["mine_stage"]=26 + }, + [13187]={ + ["distance"]=79117, + ["mine_stage"]=45 + }, + [13188]={ + ["distance"]=79123, + ["mine_stage"]=57 + }, + [13189]={ + ["distance"]=79129, + ["mine_stage"]=59 + }, + [13190]={ + ["distance"]=79135, + ["mine_stage"]=26 + }, + [13191]={ + ["distance"]=79141, + ["mine_stage"]=12 + }, + [13192]={ + ["distance"]=79147, + ["mine_stage"]=8 + }, + [13193]={ + ["distance"]=79153, + ["mine_stage"]=32 + }, + [13194]={ + ["distance"]=79159, + ["mine_stage"]=19 + }, + [13195]={ + ["distance"]=79165, + ["mine_stage"]=12 + }, + [13196]={ + ["distance"]=79171, + ["mine_stage"]=17 + }, + [13197]={ + ["distance"]=79177, + ["mine_stage"]=48 + }, + [13198]={ + ["distance"]=79183, + ["mine_stage"]=10 + }, + [13199]={ + ["distance"]=79189, + ["mine_stage"]=55 + }, + [13200]={ + ["distance"]=79195, + ["mine_stage"]=5 + }, + [13201]={ + ["distance"]=79201, + ["mine_stage"]=66 + }, + [13202]={ + ["distance"]=79207, + ["mine_stage"]=49 + }, + [13203]={ + ["distance"]=79213, + ["mine_stage"]=30 + }, + [13204]={ + ["distance"]=79219, + ["mine_stage"]=52 + }, + [13205]={ + ["distance"]=79225, + ["mine_stage"]=10 + }, + [13206]={ + ["distance"]=79231, + ["mine_stage"]=16 + }, + [13207]={ + ["distance"]=79237, + ["mine_stage"]=4 + }, + [13208]={ + ["distance"]=79243, + ["mine_stage"]=5 + }, + [13209]={ + ["distance"]=79249, + ["mine_stage"]=1 + }, + [13210]={ + ["distance"]=79255, + ["mine_stage"]=55 + }, + [13211]={ + ["distance"]=79261, + ["mine_stage"]=24 + }, + [13212]={ + ["distance"]=79267, + ["mine_stage"]=30 + }, + [13213]={ + ["distance"]=79273, + ["mine_stage"]=36 + }, + [13214]={ + ["distance"]=79279, + ["mine_stage"]=36 + }, + [13215]={ + ["distance"]=79285, + ["mine_stage"]=6 + }, + [13216]={ + ["distance"]=79291, + ["mine_stage"]=40 + }, + [13217]={ + ["distance"]=79297, + ["mine_stage"]=19 + }, + [13218]={ + ["distance"]=79303, + ["mine_stage"]=38 + }, + [13219]={ + ["distance"]=79309, + ["mine_stage"]=37 + }, + [13220]={ + ["distance"]=79315, + ["mine_stage"]=9 + }, + [13221]={ + ["distance"]=79321, + ["mine_stage"]=5 + }, + [13222]={ + ["distance"]=79327, + ["mine_stage"]=38 + }, + [13223]={ + ["distance"]=79333, + ["mine_stage"]=50 + }, + [13224]={ + ["distance"]=79339, + ["mine_stage"]=13 + }, + [13225]={ + ["distance"]=79345, + ["mine_stage"]=56 + }, + [13226]={ + ["distance"]=79351, + ["mine_stage"]=12 + }, + [13227]={ + ["distance"]=79357, + ["mine_stage"]=51 + }, + [13228]={ + ["distance"]=79363, + ["mine_stage"]=35 + }, + [13229]={ + ["distance"]=79369, + ["mine_stage"]=18 + }, + [13230]={ + ["distance"]=79375, + ["mine_stage"]=13 + }, + [13231]={ + ["distance"]=79381, + ["mine_stage"]=53 + }, + [13232]={ + ["distance"]=79387, + ["mine_stage"]=1 + }, + [13233]={ + ["distance"]=79393, + ["mine_stage"]=18 + }, + [13234]={ + ["distance"]=79399, + ["mine_stage"]=42 + }, + [13235]={ + ["distance"]=79405, + ["mine_stage"]=9 + }, + [13236]={ + ["distance"]=79411, + ["mine_stage"]=32 + }, + [13237]={ + ["distance"]=79417, + ["mine_stage"]=50 + }, + [13238]={ + ["distance"]=79423, + ["mine_stage"]=19 + }, + [13239]={ + ["distance"]=79429, + ["mine_stage"]=1 + }, + [13240]={ + ["distance"]=79435, + ["mine_stage"]=21 + }, + [13241]={ + ["distance"]=79441, + ["mine_stage"]=17 + }, + [13242]={ + ["distance"]=79447, + ["mine_stage"]=31 + }, + [13243]={ + ["distance"]=79453, + ["mine_stage"]=33 + }, + [13244]={ + ["distance"]=79459, + ["mine_stage"]=29 + }, + [13245]={ + ["distance"]=79465, + ["mine_stage"]=20 + }, + [13246]={ + ["distance"]=79471, + ["mine_stage"]=21 + }, + [13247]={ + ["distance"]=79477, + ["mine_stage"]=38 + }, + [13248]={ + ["distance"]=79483, + ["mine_stage"]=51 + }, + [13249]={ + ["distance"]=79489, + ["mine_stage"]=12 + }, + [13250]={ + ["distance"]=79495, + ["mine_stage"]=20 + }, + [13251]={ + ["distance"]=79501, + ["mine_stage"]=69 + }, + [13252]={ + ["distance"]=79507, + ["mine_stage"]=8 + }, + [13253]={ + ["distance"]=79513, + ["mine_stage"]=40 + }, + [13254]={ + ["distance"]=79519, + ["mine_stage"]=18 + }, + [13255]={ + ["distance"]=79525, + ["mine_stage"]=30 + }, + [13256]={ + ["distance"]=79531, + ["mine_stage"]=21 + }, + [13257]={ + ["distance"]=79537, + ["mine_stage"]=48 + }, + [13258]={ + ["distance"]=79543, + ["mine_stage"]=16 + }, + [13259]={ + ["distance"]=79549, + ["mine_stage"]=30 + }, + [13260]={ + ["distance"]=79555, + ["mine_stage"]=40 + }, + [13261]={ + ["distance"]=79561, + ["mine_stage"]=18 + }, + [13262]={ + ["distance"]=79567, + ["mine_stage"]=59 + }, + [13263]={ + ["distance"]=79573, + ["mine_stage"]=26 + }, + [13264]={ + ["distance"]=79579, + ["mine_stage"]=6 + }, + [13265]={ + ["distance"]=79585, + ["mine_stage"]=43 + }, + [13266]={ + ["distance"]=79591, + ["mine_stage"]=35 + }, + [13267]={ + ["distance"]=79597, + ["mine_stage"]=20 + }, + [13268]={ + ["distance"]=79603, + ["mine_stage"]=22 + }, + [13269]={ + ["distance"]=79609, + ["mine_stage"]=56 + }, + [13270]={ + ["distance"]=79615, + ["mine_stage"]=8 + }, + [13271]={ + ["distance"]=79621, + ["mine_stage"]=39 + }, + [13272]={ + ["distance"]=79627, + ["mine_stage"]=36 + }, + [13273]={ + ["distance"]=79633, + ["mine_stage"]=36 + }, + [13274]={ + ["distance"]=79639, + ["mine_stage"]=28 + }, + [13275]={ + ["distance"]=79645, + ["mine_stage"]=17 + }, + [13276]={ + ["distance"]=79651, + ["mine_stage"]=20 + }, + [13277]={ + ["distance"]=79657, + ["mine_stage"]=26 + }, + [13278]={ + ["distance"]=79663, + ["mine_stage"]=18 + }, + [13279]={ + ["distance"]=79669, + ["mine_stage"]=12 + }, + [13280]={ + ["distance"]=79675, + ["mine_stage"]=29 + }, + [13281]={ + ["distance"]=79681, + ["mine_stage"]=54 + }, + [13282]={ + ["distance"]=79687, + ["mine_stage"]=14 + }, + [13283]={ + ["distance"]=79693, + ["mine_stage"]=28 + }, + [13284]={ + ["distance"]=79699, + ["mine_stage"]=25 + }, + [13285]={ + ["distance"]=79705, + ["mine_stage"]=42 + }, + [13286]={ + ["distance"]=79711, + ["mine_stage"]=44 + }, + [13287]={ + ["distance"]=79717, + ["mine_stage"]=6 + }, + [13288]={ + ["distance"]=79723, + ["mine_stage"]=46 + }, + [13289]={ + ["distance"]=79729, + ["mine_stage"]=34 + }, + [13290]={ + ["distance"]=79735, + ["mine_stage"]=37 + }, + [13291]={ + ["distance"]=79741, + ["mine_stage"]=8 + }, + [13292]={ + ["distance"]=79747, + ["mine_stage"]=29 + }, + [13293]={ + ["distance"]=79753, + ["mine_stage"]=22 + }, + [13294]={ + ["distance"]=79759, + ["mine_stage"]=37 + }, + [13295]={ + ["distance"]=79765, + ["mine_stage"]=27 + }, + [13296]={ + ["distance"]=79771, + ["mine_stage"]=19 + }, + [13297]={ + ["distance"]=79777, + ["mine_stage"]=19 + }, + [13298]={ + ["distance"]=79783, + ["mine_stage"]=59 + }, + [13299]={ + ["distance"]=79789, + ["mine_stage"]=9 + }, + [13300]={ + ["distance"]=79795, + ["mine_stage"]=36 + }, + [13301]={ + ["distance"]=79801, + ["mine_stage"]=64 + }, + [13302]={ + ["distance"]=79807, + ["mine_stage"]=24 + }, + [13303]={ + ["distance"]=79813, + ["mine_stage"]=44 + }, + [13304]={ + ["distance"]=79819, + ["mine_stage"]=5 + }, + [13305]={ + ["distance"]=79825, + ["mine_stage"]=53 + }, + [13306]={ + ["distance"]=79831, + ["mine_stage"]=53 + }, + [13307]={ + ["distance"]=79837, + ["mine_stage"]=49 + }, + [13308]={ + ["distance"]=79843, + ["mine_stage"]=32 + }, + [13309]={ + ["distance"]=79849, + ["mine_stage"]=40 + }, + [13310]={ + ["distance"]=79855, + ["mine_stage"]=54 + }, + [13311]={ + ["distance"]=79861, + ["mine_stage"]=9 + }, + [13312]={ + ["distance"]=79867, + ["mine_stage"]=17 + }, + [13313]={ + ["distance"]=79873, + ["mine_stage"]=33 + }, + [13314]={ + ["distance"]=79879, + ["mine_stage"]=22 + }, + [13315]={ + ["distance"]=79885, + ["mine_stage"]=10 + }, + [13316]={ + ["distance"]=79891, + ["mine_stage"]=14 + }, + [13317]={ + ["distance"]=79897, + ["mine_stage"]=31 + }, + [13318]={ + ["distance"]=79903, + ["mine_stage"]=11 + }, + [13319]={ + ["distance"]=79909, + ["mine_stage"]=46 + }, + [13320]={ + ["distance"]=79915, + ["mine_stage"]=15 + }, + [13321]={ + ["distance"]=79921, + ["mine_stage"]=46 + }, + [13322]={ + ["distance"]=79927, + ["mine_stage"]=41 + }, + [13323]={ + ["distance"]=79933, + ["mine_stage"]=28 + }, + [13324]={ + ["distance"]=79939, + ["mine_stage"]=2 + }, + [13325]={ + ["distance"]=79945, + ["mine_stage"]=14 + }, + [13326]={ + ["distance"]=79951, + ["mine_stage"]=4 + }, + [13327]={ + ["distance"]=79957, + ["mine_stage"]=43 + }, + [13328]={ + ["distance"]=79963, + ["mine_stage"]=57 + }, + [13329]={ + ["distance"]=79969, + ["mine_stage"]=16 + }, + [13330]={ + ["distance"]=79975, + ["mine_stage"]=46 + }, + [13331]={ + ["distance"]=79981, + ["mine_stage"]=49 + }, + [13332]={ + ["distance"]=79987, + ["mine_stage"]=37 + }, + [13333]={ + ["distance"]=79993, + ["mine_stage"]=40 + }, + [13334]={ + ["distance"]=79999, + ["mine_stage"]=9 + }, + [13335]={ + ["distance"]=80005, + ["mine_stage"]=5 + }, + [13336]={ + ["distance"]=80011, + ["mine_stage"]=33 + }, + [13337]={ + ["distance"]=80017, + ["mine_stage"]=11 + }, + [13338]={ + ["distance"]=80023, + ["mine_stage"]=18 + }, + [13339]={ + ["distance"]=80029, + ["mine_stage"]=48 + }, + [13340]={ + ["distance"]=80035, + ["mine_stage"]=53 + }, + [13341]={ + ["distance"]=80041, + ["mine_stage"]=52 + }, + [13342]={ + ["distance"]=80047, + ["mine_stage"]=7 + }, + [13343]={ + ["distance"]=80053, + ["mine_stage"]=4 + }, + [13344]={ + ["distance"]=80059, + ["mine_stage"]=20 + }, + [13345]={ + ["distance"]=80065, + ["mine_stage"]=52 + }, + [13346]={ + ["distance"]=80071, + ["mine_stage"]=32 + }, + [13347]={ + ["distance"]=80077, + ["mine_stage"]=29 + }, + [13348]={ + ["distance"]=80083, + ["mine_stage"]=13 + }, + [13349]={ + ["distance"]=80089, + ["mine_stage"]=51 + }, + [13350]={ + ["distance"]=80095, + ["mine_stage"]=57 + }, + [13351]={ + ["distance"]=80101, + ["mine_stage"]=67 + }, + [13352]={ + ["distance"]=80107, + ["mine_stage"]=50 + }, + [13353]={ + ["distance"]=80113, + ["mine_stage"]=60 + }, + [13354]={ + ["distance"]=80119, + ["mine_stage"]=25 + }, + [13355]={ + ["distance"]=80125, + ["mine_stage"]=20 + }, + [13356]={ + ["distance"]=80131, + ["mine_stage"]=57 + }, + [13357]={ + ["distance"]=80137, + ["mine_stage"]=7 + }, + [13358]={ + ["distance"]=80143, + ["mine_stage"]=56 + }, + [13359]={ + ["distance"]=80149, + ["mine_stage"]=53 + }, + [13360]={ + ["distance"]=80155, + ["mine_stage"]=37 + }, + [13361]={ + ["distance"]=80161, + ["mine_stage"]=8 + }, + [13362]={ + ["distance"]=80167, + ["mine_stage"]=43 + }, + [13363]={ + ["distance"]=80173, + ["mine_stage"]=54 + }, + [13364]={ + ["distance"]=80179, + ["mine_stage"]=20 + }, + [13365]={ + ["distance"]=80185, + ["mine_stage"]=57 + }, + [13366]={ + ["distance"]=80191, + ["mine_stage"]=25 + }, + [13367]={ + ["distance"]=80197, + ["mine_stage"]=45 + }, + [13368]={ + ["distance"]=80203, + ["mine_stage"]=33 + }, + [13369]={ + ["distance"]=80209, + ["mine_stage"]=16 + }, + [13370]={ + ["distance"]=80215, + ["mine_stage"]=16 + }, + [13371]={ + ["distance"]=80221, + ["mine_stage"]=17 + }, + [13372]={ + ["distance"]=80227, + ["mine_stage"]=17 + }, + [13373]={ + ["distance"]=80233, + ["mine_stage"]=8 + }, + [13374]={ + ["distance"]=80239, + ["mine_stage"]=16 + }, + [13375]={ + ["distance"]=80245, + ["mine_stage"]=34 + }, + [13376]={ + ["distance"]=80251, + ["mine_stage"]=38 + }, + [13377]={ + ["distance"]=80257, + ["mine_stage"]=22 + }, + [13378]={ + ["distance"]=80263, + ["mine_stage"]=49 + }, + [13379]={ + ["distance"]=80269, + ["mine_stage"]=54 + }, + [13380]={ + ["distance"]=80275, + ["mine_stage"]=36 + }, + [13381]={ + ["distance"]=80281, + ["mine_stage"]=7 + }, + [13382]={ + ["distance"]=80287, + ["mine_stage"]=41 + }, + [13383]={ + ["distance"]=80293, + ["mine_stage"]=2 + }, + [13384]={ + ["distance"]=80299, + ["mine_stage"]=6 + }, + [13385]={ + ["distance"]=80305, + ["mine_stage"]=30 + }, + [13386]={ + ["distance"]=80311, + ["mine_stage"]=11 + }, + [13387]={ + ["distance"]=80317, + ["mine_stage"]=47 + }, + [13388]={ + ["distance"]=80323, + ["mine_stage"]=22 + }, + [13389]={ + ["distance"]=80329, + ["mine_stage"]=31 + }, + [13390]={ + ["distance"]=80335, + ["mine_stage"]=1 + }, + [13391]={ + ["distance"]=80341, + ["mine_stage"]=22 + }, + [13392]={ + ["distance"]=80347, + ["mine_stage"]=3 + }, + [13393]={ + ["distance"]=80353, + ["mine_stage"]=46 + }, + [13394]={ + ["distance"]=80359, + ["mine_stage"]=50 + }, + [13395]={ + ["distance"]=80365, + ["mine_stage"]=41 + }, + [13396]={ + ["distance"]=80371, + ["mine_stage"]=16 + }, + [13397]={ + ["distance"]=80377, + ["mine_stage"]=15 + }, + [13398]={ + ["distance"]=80383, + ["mine_stage"]=42 + }, + [13399]={ + ["distance"]=80389, + ["mine_stage"]=46 + }, + [13400]={ + ["distance"]=80395, + ["mine_stage"]=20 + }, + [13401]={ + ["distance"]=80401, + ["mine_stage"]=65 + }, + [13402]={ + ["distance"]=80407, + ["mine_stage"]=37 + }, + [13403]={ + ["distance"]=80413, + ["mine_stage"]=22 + }, + [13404]={ + ["distance"]=80419, + ["mine_stage"]=42 + }, + [13405]={ + ["distance"]=80425, + ["mine_stage"]=8 + }, + [13406]={ + ["distance"]=80431, + ["mine_stage"]=32 + }, + [13407]={ + ["distance"]=80437, + ["mine_stage"]=31 + }, + [13408]={ + ["distance"]=80443, + ["mine_stage"]=15 + }, + [13409]={ + ["distance"]=80449, + ["mine_stage"]=38 + }, + [13410]={ + ["distance"]=80455, + ["mine_stage"]=11 + }, + [13411]={ + ["distance"]=80461, + ["mine_stage"]=30 + }, + [13412]={ + ["distance"]=80467, + ["mine_stage"]=49 + }, + [13413]={ + ["distance"]=80473, + ["mine_stage"]=31 + }, + [13414]={ + ["distance"]=80479, + ["mine_stage"]=31 + }, + [13415]={ + ["distance"]=80485, + ["mine_stage"]=40 + }, + [13416]={ + ["distance"]=80491, + ["mine_stage"]=23 + }, + [13417]={ + ["distance"]=80497, + ["mine_stage"]=10 + }, + [13418]={ + ["distance"]=80503, + ["mine_stage"]=31 + }, + [13419]={ + ["distance"]=80509, + ["mine_stage"]=10 + }, + [13420]={ + ["distance"]=80515, + ["mine_stage"]=42 + }, + [13421]={ + ["distance"]=80521, + ["mine_stage"]=35 + }, + [13422]={ + ["distance"]=80527, + ["mine_stage"]=23 + }, + [13423]={ + ["distance"]=80533, + ["mine_stage"]=16 + }, + [13424]={ + ["distance"]=80539, + ["mine_stage"]=33 + }, + [13425]={ + ["distance"]=80545, + ["mine_stage"]=11 + }, + [13426]={ + ["distance"]=80551, + ["mine_stage"]=7 + }, + [13427]={ + ["distance"]=80557, + ["mine_stage"]=35 + }, + [13428]={ + ["distance"]=80563, + ["mine_stage"]=56 + }, + [13429]={ + ["distance"]=80569, + ["mine_stage"]=7 + }, + [13430]={ + ["distance"]=80575, + ["mine_stage"]=27 + }, + [13431]={ + ["distance"]=80581, + ["mine_stage"]=3 + }, + [13432]={ + ["distance"]=80587, + ["mine_stage"]=33 + }, + [13433]={ + ["distance"]=80593, + ["mine_stage"]=20 + }, + [13434]={ + ["distance"]=80599, + ["mine_stage"]=48 + }, + [13435]={ + ["distance"]=80605, + ["mine_stage"]=46 + }, + [13436]={ + ["distance"]=80611, + ["mine_stage"]=60 + }, + [13437]={ + ["distance"]=80617, + ["mine_stage"]=45 + }, + [13438]={ + ["distance"]=80623, + ["mine_stage"]=49 + }, + [13439]={ + ["distance"]=80629, + ["mine_stage"]=35 + }, + [13440]={ + ["distance"]=80635, + ["mine_stage"]=42 + }, + [13441]={ + ["distance"]=80641, + ["mine_stage"]=49 + }, + [13442]={ + ["distance"]=80647, + ["mine_stage"]=36 + }, + [13443]={ + ["distance"]=80653, + ["mine_stage"]=38 + }, + [13444]={ + ["distance"]=80659, + ["mine_stage"]=23 + }, + [13445]={ + ["distance"]=80665, + ["mine_stage"]=22 + }, + [13446]={ + ["distance"]=80671, + ["mine_stage"]=37 + }, + [13447]={ + ["distance"]=80677, + ["mine_stage"]=28 + }, + [13448]={ + ["distance"]=80683, + ["mine_stage"]=19 + }, + [13449]={ + ["distance"]=80689, + ["mine_stage"]=8 + }, + [13450]={ + ["distance"]=80695, + ["mine_stage"]=23 + }, + [13451]={ + ["distance"]=80701, + ["mine_stage"]=68 + }, + [13452]={ + ["distance"]=80707, + ["mine_stage"]=33 + }, + [13453]={ + ["distance"]=80713, + ["mine_stage"]=47 + }, + [13454]={ + ["distance"]=80719, + ["mine_stage"]=8 + }, + [13455]={ + ["distance"]=80725, + ["mine_stage"]=12 + }, + [13456]={ + ["distance"]=80731, + ["mine_stage"]=28 + }, + [13457]={ + ["distance"]=80737, + ["mine_stage"]=47 + }, + [13458]={ + ["distance"]=80743, + ["mine_stage"]=36 + }, + [13459]={ + ["distance"]=80749, + ["mine_stage"]=46 + }, + [13460]={ + ["distance"]=80755, + ["mine_stage"]=13 + }, + [13461]={ + ["distance"]=80761, + ["mine_stage"]=37 + }, + [13462]={ + ["distance"]=80767, + ["mine_stage"]=33 + }, + [13463]={ + ["distance"]=80773, + ["mine_stage"]=45 + }, + [13464]={ + ["distance"]=80779, + ["mine_stage"]=46 + }, + [13465]={ + ["distance"]=80785, + ["mine_stage"]=8 + }, + [13466]={ + ["distance"]=80791, + ["mine_stage"]=50 + }, + [13467]={ + ["distance"]=80797, + ["mine_stage"]=31 + }, + [13468]={ + ["distance"]=80803, + ["mine_stage"]=11 + }, + [13469]={ + ["distance"]=80809, + ["mine_stage"]=12 + }, + [13470]={ + ["distance"]=80815, + ["mine_stage"]=10 + }, + [13471]={ + ["distance"]=80821, + ["mine_stage"]=35 + }, + [13472]={ + ["distance"]=80827, + ["mine_stage"]=30 + }, + [13473]={ + ["distance"]=80833, + ["mine_stage"]=54 + }, + [13474]={ + ["distance"]=80839, + ["mine_stage"]=39 + }, + [13475]={ + ["distance"]=80845, + ["mine_stage"]=22 + }, + [13476]={ + ["distance"]=80851, + ["mine_stage"]=33 + }, + [13477]={ + ["distance"]=80857, + ["mine_stage"]=14 + }, + [13478]={ + ["distance"]=80863, + ["mine_stage"]=37 + }, + [13479]={ + ["distance"]=80869, + ["mine_stage"]=22 + }, + [13480]={ + ["distance"]=80875, + ["mine_stage"]=15 + }, + [13481]={ + ["distance"]=80881, + ["mine_stage"]=17 + }, + [13482]={ + ["distance"]=80887, + ["mine_stage"]=12 + }, + [13483]={ + ["distance"]=80893, + ["mine_stage"]=36 + }, + [13484]={ + ["distance"]=80899, + ["mine_stage"]=3 + }, + [13485]={ + ["distance"]=80905, + ["mine_stage"]=2 + }, + [13486]={ + ["distance"]=80911, + ["mine_stage"]=19 + }, + [13487]={ + ["distance"]=80917, + ["mine_stage"]=6 + }, + [13488]={ + ["distance"]=80923, + ["mine_stage"]=43 + }, + [13489]={ + ["distance"]=80929, + ["mine_stage"]=43 + }, + [13490]={ + ["distance"]=80935, + ["mine_stage"]=6 + }, + [13491]={ + ["distance"]=80941, + ["mine_stage"]=38 + }, + [13492]={ + ["distance"]=80947, + ["mine_stage"]=6 + }, + [13493]={ + ["distance"]=80953, + ["mine_stage"]=47 + }, + [13494]={ + ["distance"]=80959, + ["mine_stage"]=57 + }, + [13495]={ + ["distance"]=80965, + ["mine_stage"]=40 + }, + [13496]={ + ["distance"]=80971, + ["mine_stage"]=13 + }, + [13497]={ + ["distance"]=80977, + ["mine_stage"]=26 + }, + [13498]={ + ["distance"]=80983, + ["mine_stage"]=5 + }, + [13499]={ + ["distance"]=80989, + ["mine_stage"]=22 + }, + [13500]={ + ["distance"]=80995, + ["mine_stage"]=43 + }, + [13501]={ + ["distance"]=81001, + ["mine_stage"]=66 + }, + [13502]={ + ["distance"]=81007, + ["mine_stage"]=29 + }, + [13503]={ + ["distance"]=81013, + ["mine_stage"]=22 + }, + [13504]={ + ["distance"]=81019, + ["mine_stage"]=13 + }, + [13505]={ + ["distance"]=81025, + ["mine_stage"]=28 + }, + [13506]={ + ["distance"]=81031, + ["mine_stage"]=2 + }, + [13507]={ + ["distance"]=81037, + ["mine_stage"]=59 + }, + [13508]={ + ["distance"]=81043, + ["mine_stage"]=46 + }, + [13509]={ + ["distance"]=81049, + ["mine_stage"]=37 + }, + [13510]={ + ["distance"]=81055, + ["mine_stage"]=51 + }, + [13511]={ + ["distance"]=81061, + ["mine_stage"]=3 + }, + [13512]={ + ["distance"]=81067, + ["mine_stage"]=12 + }, + [13513]={ + ["distance"]=81073, + ["mine_stage"]=19 + }, + [13514]={ + ["distance"]=81079, + ["mine_stage"]=49 + }, + [13515]={ + ["distance"]=81085, + ["mine_stage"]=57 + }, + [13516]={ + ["distance"]=81091, + ["mine_stage"]=45 + }, + [13517]={ + ["distance"]=81097, + ["mine_stage"]=16 + }, + [13518]={ + ["distance"]=81103, + ["mine_stage"]=14 + }, + [13519]={ + ["distance"]=81109, + ["mine_stage"]=35 + }, + [13520]={ + ["distance"]=81115, + ["mine_stage"]=23 + }, + [13521]={ + ["distance"]=81121, + ["mine_stage"]=60 + }, + [13522]={ + ["distance"]=81127, + ["mine_stage"]=38 + }, + [13523]={ + ["distance"]=81133, + ["mine_stage"]=39 + }, + [13524]={ + ["distance"]=81139, + ["mine_stage"]=23 + }, + [13525]={ + ["distance"]=81145, + ["mine_stage"]=58 + }, + [13526]={ + ["distance"]=81151, + ["mine_stage"]=19 + }, + [13527]={ + ["distance"]=81157, + ["mine_stage"]=48 + }, + [13528]={ + ["distance"]=81163, + ["mine_stage"]=32 + }, + [13529]={ + ["distance"]=81169, + ["mine_stage"]=42 + }, + [13530]={ + ["distance"]=81175, + ["mine_stage"]=16 + }, + [13531]={ + ["distance"]=81181, + ["mine_stage"]=60 + }, + [13532]={ + ["distance"]=81187, + ["mine_stage"]=36 + }, + [13533]={ + ["distance"]=81193, + ["mine_stage"]=42 + }, + [13534]={ + ["distance"]=81199, + ["mine_stage"]=31 + }, + [13535]={ + ["distance"]=81205, + ["mine_stage"]=8 + }, + [13536]={ + ["distance"]=81211, + ["mine_stage"]=21 + }, + [13537]={ + ["distance"]=81217, + ["mine_stage"]=45 + }, + [13538]={ + ["distance"]=81223, + ["mine_stage"]=47 + }, + [13539]={ + ["distance"]=81229, + ["mine_stage"]=23 + }, + [13540]={ + ["distance"]=81235, + ["mine_stage"]=38 + }, + [13541]={ + ["distance"]=81241, + ["mine_stage"]=27 + }, + [13542]={ + ["distance"]=81247, + ["mine_stage"]=49 + }, + [13543]={ + ["distance"]=81253, + ["mine_stage"]=48 + }, + [13544]={ + ["distance"]=81259, + ["mine_stage"]=33 + }, + [13545]={ + ["distance"]=81265, + ["mine_stage"]=54 + }, + [13546]={ + ["distance"]=81271, + ["mine_stage"]=57 + }, + [13547]={ + ["distance"]=81277, + ["mine_stage"]=29 + }, + [13548]={ + ["distance"]=81283, + ["mine_stage"]=55 + }, + [13549]={ + ["distance"]=81289, + ["mine_stage"]=2 + }, + [13550]={ + ["distance"]=81295, + ["mine_stage"]=45 + }, + [13551]={ + ["distance"]=81301, + ["mine_stage"]=69 + }, + [13552]={ + ["distance"]=81307, + ["mine_stage"]=38 + }, + [13553]={ + ["distance"]=81313, + ["mine_stage"]=22 + }, + [13554]={ + ["distance"]=81319, + ["mine_stage"]=22 + }, + [13555]={ + ["distance"]=81325, + ["mine_stage"]=51 + }, + [13556]={ + ["distance"]=81331, + ["mine_stage"]=53 + }, + [13557]={ + ["distance"]=81337, + ["mine_stage"]=50 + }, + [13558]={ + ["distance"]=81343, + ["mine_stage"]=20 + }, + [13559]={ + ["distance"]=81349, + ["mine_stage"]=40 + }, + [13560]={ + ["distance"]=81355, + ["mine_stage"]=40 + }, + [13561]={ + ["distance"]=81361, + ["mine_stage"]=46 + }, + [13562]={ + ["distance"]=81367, + ["mine_stage"]=3 + }, + [13563]={ + ["distance"]=81373, + ["mine_stage"]=14 + }, + [13564]={ + ["distance"]=81379, + ["mine_stage"]=5 + }, + [13565]={ + ["distance"]=81385, + ["mine_stage"]=50 + }, + [13566]={ + ["distance"]=81391, + ["mine_stage"]=17 + }, + [13567]={ + ["distance"]=81397, + ["mine_stage"]=58 + }, + [13568]={ + ["distance"]=81403, + ["mine_stage"]=34 + }, + [13569]={ + ["distance"]=81409, + ["mine_stage"]=40 + }, + [13570]={ + ["distance"]=81415, + ["mine_stage"]=48 + }, + [13571]={ + ["distance"]=81421, + ["mine_stage"]=42 + }, + [13572]={ + ["distance"]=81427, + ["mine_stage"]=28 + }, + [13573]={ + ["distance"]=81433, + ["mine_stage"]=57 + }, + [13574]={ + ["distance"]=81439, + ["mine_stage"]=1 + }, + [13575]={ + ["distance"]=81445, + ["mine_stage"]=5 + }, + [13576]={ + ["distance"]=81451, + ["mine_stage"]=11 + }, + [13577]={ + ["distance"]=81457, + ["mine_stage"]=39 + }, + [13578]={ + ["distance"]=81463, + ["mine_stage"]=58 + }, + [13579]={ + ["distance"]=81469, + ["mine_stage"]=16 + }, + [13580]={ + ["distance"]=81475, + ["mine_stage"]=35 + }, + [13581]={ + ["distance"]=81481, + ["mine_stage"]=48 + }, + [13582]={ + ["distance"]=81487, + ["mine_stage"]=18 + }, + [13583]={ + ["distance"]=81493, + ["mine_stage"]=31 + }, + [13584]={ + ["distance"]=81499, + ["mine_stage"]=53 + }, + [13585]={ + ["distance"]=81505, + ["mine_stage"]=18 + }, + [13586]={ + ["distance"]=81511, + ["mine_stage"]=36 + }, + [13587]={ + ["distance"]=81517, + ["mine_stage"]=8 + }, + [13588]={ + ["distance"]=81523, + ["mine_stage"]=8 + }, + [13589]={ + ["distance"]=81529, + ["mine_stage"]=56 + }, + [13590]={ + ["distance"]=81535, + ["mine_stage"]=35 + }, + [13591]={ + ["distance"]=81541, + ["mine_stage"]=36 + }, + [13592]={ + ["distance"]=81547, + ["mine_stage"]=24 + }, + [13593]={ + ["distance"]=81553, + ["mine_stage"]=57 + }, + [13594]={ + ["distance"]=81559, + ["mine_stage"]=26 + }, + [13595]={ + ["distance"]=81565, + ["mine_stage"]=31 + }, + [13596]={ + ["distance"]=81571, + ["mine_stage"]=10 + }, + [13597]={ + ["distance"]=81577, + ["mine_stage"]=52 + }, + [13598]={ + ["distance"]=81583, + ["mine_stage"]=24 + }, + [13599]={ + ["distance"]=81589, + ["mine_stage"]=28 + }, + [13600]={ + ["distance"]=81595, + ["mine_stage"]=44 + }, + [13601]={ + ["distance"]=81601, + ["mine_stage"]=64 + }, + [13602]={ + ["distance"]=81607, + ["mine_stage"]=13 + }, + [13603]={ + ["distance"]=81613, + ["mine_stage"]=53 + }, + [13604]={ + ["distance"]=81619, + ["mine_stage"]=44 + }, + [13605]={ + ["distance"]=81625, + ["mine_stage"]=13 + }, + [13606]={ + ["distance"]=81631, + ["mine_stage"]=10 + }, + [13607]={ + ["distance"]=81637, + ["mine_stage"]=12 + }, + [13608]={ + ["distance"]=81643, + ["mine_stage"]=10 + }, + [13609]={ + ["distance"]=81649, + ["mine_stage"]=46 + }, + [13610]={ + ["distance"]=81655, + ["mine_stage"]=47 + }, + [13611]={ + ["distance"]=81661, + ["mine_stage"]=22 + }, + [13612]={ + ["distance"]=81667, + ["mine_stage"]=52 + }, + [13613]={ + ["distance"]=81673, + ["mine_stage"]=45 + }, + [13614]={ + ["distance"]=81679, + ["mine_stage"]=24 + }, + [13615]={ + ["distance"]=81685, + ["mine_stage"]=10 + }, + [13616]={ + ["distance"]=81691, + ["mine_stage"]=36 + }, + [13617]={ + ["distance"]=81697, + ["mine_stage"]=55 + }, + [13618]={ + ["distance"]=81703, + ["mine_stage"]=37 + }, + [13619]={ + ["distance"]=81709, + ["mine_stage"]=37 + }, + [13620]={ + ["distance"]=81715, + ["mine_stage"]=57 + }, + [13621]={ + ["distance"]=81721, + ["mine_stage"]=22 + }, + [13622]={ + ["distance"]=81727, + ["mine_stage"]=25 + }, + [13623]={ + ["distance"]=81733, + ["mine_stage"]=23 + }, + [13624]={ + ["distance"]=81739, + ["mine_stage"]=32 + }, + [13625]={ + ["distance"]=81745, + ["mine_stage"]=10 + }, + [13626]={ + ["distance"]=81751, + ["mine_stage"]=57 + }, + [13627]={ + ["distance"]=81757, + ["mine_stage"]=7 + }, + [13628]={ + ["distance"]=81763, + ["mine_stage"]=26 + }, + [13629]={ + ["distance"]=81769, + ["mine_stage"]=46 + }, + [13630]={ + ["distance"]=81775, + ["mine_stage"]=50 + }, + [13631]={ + ["distance"]=81781, + ["mine_stage"]=29 + }, + [13632]={ + ["distance"]=81787, + ["mine_stage"]=36 + }, + [13633]={ + ["distance"]=81793, + ["mine_stage"]=16 + }, + [13634]={ + ["distance"]=81799, + ["mine_stage"]=21 + }, + [13635]={ + ["distance"]=81805, + ["mine_stage"]=1 + }, + [13636]={ + ["distance"]=81811, + ["mine_stage"]=53 + }, + [13637]={ + ["distance"]=81817, + ["mine_stage"]=35 + }, + [13638]={ + ["distance"]=81823, + ["mine_stage"]=10 + }, + [13639]={ + ["distance"]=81829, + ["mine_stage"]=12 + }, + [13640]={ + ["distance"]=81835, + ["mine_stage"]=28 + }, + [13641]={ + ["distance"]=81841, + ["mine_stage"]=52 + }, + [13642]={ + ["distance"]=81847, + ["mine_stage"]=60 + }, + [13643]={ + ["distance"]=81853, + ["mine_stage"]=25 + }, + [13644]={ + ["distance"]=81859, + ["mine_stage"]=11 + }, + [13645]={ + ["distance"]=81865, + ["mine_stage"]=26 + }, + [13646]={ + ["distance"]=81871, + ["mine_stage"]=21 + }, + [13647]={ + ["distance"]=81877, + ["mine_stage"]=30 + }, + [13648]={ + ["distance"]=81883, + ["mine_stage"]=18 + }, + [13649]={ + ["distance"]=81889, + ["mine_stage"]=42 + }, + [13650]={ + ["distance"]=81895, + ["mine_stage"]=11 + }, + [13651]={ + ["distance"]=81901, + ["mine_stage"]=67 + }, + [13652]={ + ["distance"]=81907, + ["mine_stage"]=52 + }, + [13653]={ + ["distance"]=81913, + ["mine_stage"]=8 + }, + [13654]={ + ["distance"]=81919, + ["mine_stage"]=41 + }, + [13655]={ + ["distance"]=81925, + ["mine_stage"]=53 + }, + [13656]={ + ["distance"]=81931, + ["mine_stage"]=56 + }, + [13657]={ + ["distance"]=81937, + ["mine_stage"]=58 + }, + [13658]={ + ["distance"]=81943, + ["mine_stage"]=17 + }, + [13659]={ + ["distance"]=81949, + ["mine_stage"]=27 + }, + [13660]={ + ["distance"]=81955, + ["mine_stage"]=17 + }, + [13661]={ + ["distance"]=81961, + ["mine_stage"]=55 + }, + [13662]={ + ["distance"]=81967, + ["mine_stage"]=44 + }, + [13663]={ + ["distance"]=81973, + ["mine_stage"]=41 + }, + [13664]={ + ["distance"]=81979, + ["mine_stage"]=33 + }, + [13665]={ + ["distance"]=81985, + ["mine_stage"]=23 + }, + [13666]={ + ["distance"]=81991, + ["mine_stage"]=46 + }, + [13667]={ + ["distance"]=81997, + ["mine_stage"]=1 + }, + [13668]={ + ["distance"]=82003, + ["mine_stage"]=52 + }, + [13669]={ + ["distance"]=82009, + ["mine_stage"]=15 + }, + [13670]={ + ["distance"]=82015, + ["mine_stage"]=34 + }, + [13671]={ + ["distance"]=82021, + ["mine_stage"]=25 + }, + [13672]={ + ["distance"]=82027, + ["mine_stage"]=27 + }, + [13673]={ + ["distance"]=82033, + ["mine_stage"]=1 + }, + [13674]={ + ["distance"]=82039, + ["mine_stage"]=49 + }, + [13675]={ + ["distance"]=82045, + ["mine_stage"]=14 + }, + [13676]={ + ["distance"]=82051, + ["mine_stage"]=46 + }, + [13677]={ + ["distance"]=82057, + ["mine_stage"]=4 + }, + [13678]={ + ["distance"]=82063, + ["mine_stage"]=59 + }, + [13679]={ + ["distance"]=82069, + ["mine_stage"]=24 + }, + [13680]={ + ["distance"]=82075, + ["mine_stage"]=17 + }, + [13681]={ + ["distance"]=82081, + ["mine_stage"]=11 + }, + [13682]={ + ["distance"]=82087, + ["mine_stage"]=26 + }, + [13683]={ + ["distance"]=82093, + ["mine_stage"]=48 + }, + [13684]={ + ["distance"]=82099, + ["mine_stage"]=36 + }, + [13685]={ + ["distance"]=82105, + ["mine_stage"]=52 + }, + [13686]={ + ["distance"]=82111, + ["mine_stage"]=31 + }, + [13687]={ + ["distance"]=82117, + ["mine_stage"]=7 + }, + [13688]={ + ["distance"]=82123, + ["mine_stage"]=10 + }, + [13689]={ + ["distance"]=82129, + ["mine_stage"]=57 + }, + [13690]={ + ["distance"]=82135, + ["mine_stage"]=12 + }, + [13691]={ + ["distance"]=82141, + ["mine_stage"]=14 + }, + [13692]={ + ["distance"]=82147, + ["mine_stage"]=49 + }, + [13693]={ + ["distance"]=82153, + ["mine_stage"]=21 + }, + [13694]={ + ["distance"]=82159, + ["mine_stage"]=30 + }, + [13695]={ + ["distance"]=82165, + ["mine_stage"]=39 + }, + [13696]={ + ["distance"]=82171, + ["mine_stage"]=55 + }, + [13697]={ + ["distance"]=82177, + ["mine_stage"]=6 + }, + [13698]={ + ["distance"]=82183, + ["mine_stage"]=56 + }, + [13699]={ + ["distance"]=82189, + ["mine_stage"]=38 + }, + [13700]={ + ["distance"]=82195, + ["mine_stage"]=25 + }, + [13701]={ + ["distance"]=82201, + ["mine_stage"]=65 + }, + [13702]={ + ["distance"]=82207, + ["mine_stage"]=54 + }, + [13703]={ + ["distance"]=82213, + ["mine_stage"]=40 + }, + [13704]={ + ["distance"]=82219, + ["mine_stage"]=6 + }, + [13705]={ + ["distance"]=82225, + ["mine_stage"]=51 + }, + [13706]={ + ["distance"]=82231, + ["mine_stage"]=52 + }, + [13707]={ + ["distance"]=82237, + ["mine_stage"]=1 + }, + [13708]={ + ["distance"]=82243, + ["mine_stage"]=53 + }, + [13709]={ + ["distance"]=82249, + ["mine_stage"]=3 + }, + [13710]={ + ["distance"]=82255, + ["mine_stage"]=16 + }, + [13711]={ + ["distance"]=82261, + ["mine_stage"]=16 + }, + [13712]={ + ["distance"]=82267, + ["mine_stage"]=49 + }, + [13713]={ + ["distance"]=82273, + ["mine_stage"]=34 + }, + [13714]={ + ["distance"]=82279, + ["mine_stage"]=44 + }, + [13715]={ + ["distance"]=82285, + ["mine_stage"]=51 + }, + [13716]={ + ["distance"]=82291, + ["mine_stage"]=44 + }, + [13717]={ + ["distance"]=82297, + ["mine_stage"]=51 + }, + [13718]={ + ["distance"]=82303, + ["mine_stage"]=38 + }, + [13719]={ + ["distance"]=82309, + ["mine_stage"]=34 + }, + [13720]={ + ["distance"]=82315, + ["mine_stage"]=12 + }, + [13721]={ + ["distance"]=82321, + ["mine_stage"]=48 + }, + [13722]={ + ["distance"]=82327, + ["mine_stage"]=13 + }, + [13723]={ + ["distance"]=82333, + ["mine_stage"]=19 + }, + [13724]={ + ["distance"]=82339, + ["mine_stage"]=14 + }, + [13725]={ + ["distance"]=82345, + ["mine_stage"]=47 + }, + [13726]={ + ["distance"]=82351, + ["mine_stage"]=46 + }, + [13727]={ + ["distance"]=82357, + ["mine_stage"]=29 + }, + [13728]={ + ["distance"]=82363, + ["mine_stage"]=22 + }, + [13729]={ + ["distance"]=82369, + ["mine_stage"]=7 + }, + [13730]={ + ["distance"]=82375, + ["mine_stage"]=12 + }, + [13731]={ + ["distance"]=82381, + ["mine_stage"]=15 + }, + [13732]={ + ["distance"]=82387, + ["mine_stage"]=53 + }, + [13733]={ + ["distance"]=82393, + ["mine_stage"]=8 + }, + [13734]={ + ["distance"]=82399, + ["mine_stage"]=1 + }, + [13735]={ + ["distance"]=82405, + ["mine_stage"]=8 + }, + [13736]={ + ["distance"]=82411, + ["mine_stage"]=56 + }, + [13737]={ + ["distance"]=82417, + ["mine_stage"]=22 + }, + [13738]={ + ["distance"]=82423, + ["mine_stage"]=18 + }, + [13739]={ + ["distance"]=82429, + ["mine_stage"]=13 + }, + [13740]={ + ["distance"]=82435, + ["mine_stage"]=49 + }, + [13741]={ + ["distance"]=82441, + ["mine_stage"]=45 + }, + [13742]={ + ["distance"]=82447, + ["mine_stage"]=12 + }, + [13743]={ + ["distance"]=82453, + ["mine_stage"]=53 + }, + [13744]={ + ["distance"]=82459, + ["mine_stage"]=58 + }, + [13745]={ + ["distance"]=82465, + ["mine_stage"]=28 + }, + [13746]={ + ["distance"]=82471, + ["mine_stage"]=52 + }, + [13747]={ + ["distance"]=82477, + ["mine_stage"]=9 + }, + [13748]={ + ["distance"]=82483, + ["mine_stage"]=50 + }, + [13749]={ + ["distance"]=82489, + ["mine_stage"]=41 + }, + [13750]={ + ["distance"]=82495, + ["mine_stage"]=43 + }, + [13751]={ + ["distance"]=82501, + ["mine_stage"]=68 + }, + [13752]={ + ["distance"]=82507, + ["mine_stage"]=53 + }, + [13753]={ + ["distance"]=82513, + ["mine_stage"]=54 + }, + [13754]={ + ["distance"]=82519, + ["mine_stage"]=41 + }, + [13755]={ + ["distance"]=82525, + ["mine_stage"]=35 + }, + [13756]={ + ["distance"]=82531, + ["mine_stage"]=59 + }, + [13757]={ + ["distance"]=82537, + ["mine_stage"]=10 + }, + [13758]={ + ["distance"]=82543, + ["mine_stage"]=14 + }, + [13759]={ + ["distance"]=82549, + ["mine_stage"]=50 + }, + [13760]={ + ["distance"]=82555, + ["mine_stage"]=9 + }, + [13761]={ + ["distance"]=82561, + ["mine_stage"]=31 + }, + [13762]={ + ["distance"]=82567, + ["mine_stage"]=14 + }, + [13763]={ + ["distance"]=82573, + ["mine_stage"]=42 + }, + [13764]={ + ["distance"]=82579, + ["mine_stage"]=3 + }, + [13765]={ + ["distance"]=82585, + ["mine_stage"]=8 + }, + [13766]={ + ["distance"]=82591, + ["mine_stage"]=22 + }, + [13767]={ + ["distance"]=82597, + ["mine_stage"]=11 + }, + [13768]={ + ["distance"]=82603, + ["mine_stage"]=51 + }, + [13769]={ + ["distance"]=82609, + ["mine_stage"]=35 + }, + [13770]={ + ["distance"]=82615, + ["mine_stage"]=43 + }, + [13771]={ + ["distance"]=82621, + ["mine_stage"]=41 + }, + [13772]={ + ["distance"]=82627, + ["mine_stage"]=28 + }, + [13773]={ + ["distance"]=82633, + ["mine_stage"]=14 + }, + [13774]={ + ["distance"]=82639, + ["mine_stage"]=52 + }, + [13775]={ + ["distance"]=82645, + ["mine_stage"]=41 + }, + [13776]={ + ["distance"]=82651, + ["mine_stage"]=9 + }, + [13777]={ + ["distance"]=82657, + ["mine_stage"]=42 + }, + [13778]={ + ["distance"]=82663, + ["mine_stage"]=34 + }, + [13779]={ + ["distance"]=82669, + ["mine_stage"]=16 + }, + [13780]={ + ["distance"]=82675, + ["mine_stage"]=55 + }, + [13781]={ + ["distance"]=82681, + ["mine_stage"]=1 + }, + [13782]={ + ["distance"]=82687, + ["mine_stage"]=19 + }, + [13783]={ + ["distance"]=82693, + ["mine_stage"]=26 + }, + [13784]={ + ["distance"]=82699, + ["mine_stage"]=6 + }, + [13785]={ + ["distance"]=82705, + ["mine_stage"]=6 + }, + [13786]={ + ["distance"]=82711, + ["mine_stage"]=37 + }, + [13787]={ + ["distance"]=82717, + ["mine_stage"]=44 + }, + [13788]={ + ["distance"]=82723, + ["mine_stage"]=18 + }, + [13789]={ + ["distance"]=82729, + ["mine_stage"]=15 + }, + [13790]={ + ["distance"]=82735, + ["mine_stage"]=24 + }, + [13791]={ + ["distance"]=82741, + ["mine_stage"]=40 + }, + [13792]={ + ["distance"]=82747, + ["mine_stage"]=6 + }, + [13793]={ + ["distance"]=82753, + ["mine_stage"]=16 + }, + [13794]={ + ["distance"]=82759, + ["mine_stage"]=12 + }, + [13795]={ + ["distance"]=82765, + ["mine_stage"]=59 + }, + [13796]={ + ["distance"]=82771, + ["mine_stage"]=20 + }, + [13797]={ + ["distance"]=82777, + ["mine_stage"]=3 + }, + [13798]={ + ["distance"]=82783, + ["mine_stage"]=50 + }, + [13799]={ + ["distance"]=82789, + ["mine_stage"]=12 + }, + [13800]={ + ["distance"]=82795, + ["mine_stage"]=4 + }, + [13801]={ + ["distance"]=82801, + ["mine_stage"]=66 + }, + [13802]={ + ["distance"]=82807, + ["mine_stage"]=19 + }, + [13803]={ + ["distance"]=82813, + ["mine_stage"]=55 + }, + [13804]={ + ["distance"]=82819, + ["mine_stage"]=13 + }, + [13805]={ + ["distance"]=82825, + ["mine_stage"]=49 + }, + [13806]={ + ["distance"]=82831, + ["mine_stage"]=23 + }, + [13807]={ + ["distance"]=82837, + ["mine_stage"]=42 + }, + [13808]={ + ["distance"]=82843, + ["mine_stage"]=11 + }, + [13809]={ + ["distance"]=82849, + ["mine_stage"]=9 + }, + [13810]={ + ["distance"]=82855, + ["mine_stage"]=48 + }, + [13811]={ + ["distance"]=82861, + ["mine_stage"]=51 + }, + [13812]={ + ["distance"]=82867, + ["mine_stage"]=49 + }, + [13813]={ + ["distance"]=82873, + ["mine_stage"]=36 + }, + [13814]={ + ["distance"]=82879, + ["mine_stage"]=44 + }, + [13815]={ + ["distance"]=82885, + ["mine_stage"]=6 + }, + [13816]={ + ["distance"]=82891, + ["mine_stage"]=58 + }, + [13817]={ + ["distance"]=82897, + ["mine_stage"]=13 + }, + [13818]={ + ["distance"]=82903, + ["mine_stage"]=9 + }, + [13819]={ + ["distance"]=82909, + ["mine_stage"]=29 + }, + [13820]={ + ["distance"]=82915, + ["mine_stage"]=39 + }, + [13821]={ + ["distance"]=82921, + ["mine_stage"]=45 + }, + [13822]={ + ["distance"]=82927, + ["mine_stage"]=29 + }, + [13823]={ + ["distance"]=82933, + ["mine_stage"]=30 + }, + [13824]={ + ["distance"]=82939, + ["mine_stage"]=22 + }, + [13825]={ + ["distance"]=82945, + ["mine_stage"]=14 + }, + [13826]={ + ["distance"]=82951, + ["mine_stage"]=55 + }, + [13827]={ + ["distance"]=82957, + ["mine_stage"]=49 + }, + [13828]={ + ["distance"]=82963, + ["mine_stage"]=58 + }, + [13829]={ + ["distance"]=82969, + ["mine_stage"]=27 + }, + [13830]={ + ["distance"]=82975, + ["mine_stage"]=37 + }, + [13831]={ + ["distance"]=82981, + ["mine_stage"]=43 + }, + [13832]={ + ["distance"]=82987, + ["mine_stage"]=10 + }, + [13833]={ + ["distance"]=82993, + ["mine_stage"]=45 + }, + [13834]={ + ["distance"]=82999, + ["mine_stage"]=19 + }, + [13835]={ + ["distance"]=83005, + ["mine_stage"]=21 + }, + [13836]={ + ["distance"]=83011, + ["mine_stage"]=15 + }, + [13837]={ + ["distance"]=83017, + ["mine_stage"]=47 + }, + [13838]={ + ["distance"]=83023, + ["mine_stage"]=46 + }, + [13839]={ + ["distance"]=83029, + ["mine_stage"]=32 + }, + [13840]={ + ["distance"]=83035, + ["mine_stage"]=36 + }, + [13841]={ + ["distance"]=83041, + ["mine_stage"]=13 + }, + [13842]={ + ["distance"]=83047, + ["mine_stage"]=8 + }, + [13843]={ + ["distance"]=83053, + ["mine_stage"]=46 + }, + [13844]={ + ["distance"]=83059, + ["mine_stage"]=29 + }, + [13845]={ + ["distance"]=83065, + ["mine_stage"]=17 + }, + [13846]={ + ["distance"]=83071, + ["mine_stage"]=33 + }, + [13847]={ + ["distance"]=83077, + ["mine_stage"]=45 + }, + [13848]={ + ["distance"]=83083, + ["mine_stage"]=38 + }, + [13849]={ + ["distance"]=83089, + ["mine_stage"]=59 + }, + [13850]={ + ["distance"]=83095, + ["mine_stage"]=49 + }, + [13851]={ + ["distance"]=83101, + ["mine_stage"]=69 + }, + [13852]={ + ["distance"]=83107, + ["mine_stage"]=28 + }, + [13853]={ + ["distance"]=83113, + ["mine_stage"]=5 + }, + [13854]={ + ["distance"]=83119, + ["mine_stage"]=2 + }, + [13855]={ + ["distance"]=83125, + ["mine_stage"]=44 + }, + [13856]={ + ["distance"]=83131, + ["mine_stage"]=53 + }, + [13857]={ + ["distance"]=83137, + ["mine_stage"]=43 + }, + [13858]={ + ["distance"]=83143, + ["mine_stage"]=50 + }, + [13859]={ + ["distance"]=83149, + ["mine_stage"]=39 + }, + [13860]={ + ["distance"]=83155, + ["mine_stage"]=45 + }, + [13861]={ + ["distance"]=83161, + ["mine_stage"]=4 + }, + [13862]={ + ["distance"]=83167, + ["mine_stage"]=55 + }, + [13863]={ + ["distance"]=83173, + ["mine_stage"]=53 + }, + [13864]={ + ["distance"]=83179, + ["mine_stage"]=21 + }, + [13865]={ + ["distance"]=83185, + ["mine_stage"]=11 + }, + [13866]={ + ["distance"]=83191, + ["mine_stage"]=59 + }, + [13867]={ + ["distance"]=83197, + ["mine_stage"]=10 + }, + [13868]={ + ["distance"]=83203, + ["mine_stage"]=38 + }, + [13869]={ + ["distance"]=83209, + ["mine_stage"]=18 + }, + [13870]={ + ["distance"]=83215, + ["mine_stage"]=59 + }, + [13871]={ + ["distance"]=83221, + ["mine_stage"]=7 + }, + [13872]={ + ["distance"]=83227, + ["mine_stage"]=18 + }, + [13873]={ + ["distance"]=83233, + ["mine_stage"]=12 + }, + [13874]={ + ["distance"]=83239, + ["mine_stage"]=24 + }, + [13875]={ + ["distance"]=83245, + ["mine_stage"]=56 + }, + [13876]={ + ["distance"]=83251, + ["mine_stage"]=50 + }, + [13877]={ + ["distance"]=83257, + ["mine_stage"]=21 + }, + [13878]={ + ["distance"]=83263, + ["mine_stage"]=5 + }, + [13879]={ + ["distance"]=83269, + ["mine_stage"]=16 + }, + [13880]={ + ["distance"]=83275, + ["mine_stage"]=14 + }, + [13881]={ + ["distance"]=83281, + ["mine_stage"]=3 + }, + [13882]={ + ["distance"]=83287, + ["mine_stage"]=14 + }, + [13883]={ + ["distance"]=83293, + ["mine_stage"]=7 + }, + [13884]={ + ["distance"]=83299, + ["mine_stage"]=27 + }, + [13885]={ + ["distance"]=83305, + ["mine_stage"]=10 + }, + [13886]={ + ["distance"]=83311, + ["mine_stage"]=17 + }, + [13887]={ + ["distance"]=83317, + ["mine_stage"]=18 + }, + [13888]={ + ["distance"]=83323, + ["mine_stage"]=2 + }, + [13889]={ + ["distance"]=83329, + ["mine_stage"]=46 + }, + [13890]={ + ["distance"]=83335, + ["mine_stage"]=19 + }, + [13891]={ + ["distance"]=83341, + ["mine_stage"]=5 + }, + [13892]={ + ["distance"]=83347, + ["mine_stage"]=46 + }, + [13893]={ + ["distance"]=83353, + ["mine_stage"]=29 + }, + [13894]={ + ["distance"]=83359, + ["mine_stage"]=53 + }, + [13895]={ + ["distance"]=83365, + ["mine_stage"]=24 + }, + [13896]={ + ["distance"]=83371, + ["mine_stage"]=22 + }, + [13897]={ + ["distance"]=83377, + ["mine_stage"]=22 + }, + [13898]={ + ["distance"]=83383, + ["mine_stage"]=28 + }, + [13899]={ + ["distance"]=83389, + ["mine_stage"]=26 + }, + [13900]={ + ["distance"]=83395, + ["mine_stage"]=39 + }, + [13901]={ + ["distance"]=83401, + ["mine_stage"]=64 + }, + [13902]={ + ["distance"]=83407, + ["mine_stage"]=24 + }, + [13903]={ + ["distance"]=83413, + ["mine_stage"]=46 + }, + [13904]={ + ["distance"]=83419, + ["mine_stage"]=3 + }, + [13905]={ + ["distance"]=83425, + ["mine_stage"]=51 + }, + [13906]={ + ["distance"]=83431, + ["mine_stage"]=22 + }, + [13907]={ + ["distance"]=83437, + ["mine_stage"]=43 + }, + [13908]={ + ["distance"]=83443, + ["mine_stage"]=21 + }, + [13909]={ + ["distance"]=83449, + ["mine_stage"]=9 + }, + [13910]={ + ["distance"]=83455, + ["mine_stage"]=11 + }, + [13911]={ + ["distance"]=83461, + ["mine_stage"]=54 + }, + [13912]={ + ["distance"]=83467, + ["mine_stage"]=14 + }, + [13913]={ + ["distance"]=83473, + ["mine_stage"]=19 + }, + [13914]={ + ["distance"]=83479, + ["mine_stage"]=21 + }, + [13915]={ + ["distance"]=83485, + ["mine_stage"]=32 + }, + [13916]={ + ["distance"]=83491, + ["mine_stage"]=4 + }, + [13917]={ + ["distance"]=83497, + ["mine_stage"]=9 + }, + [13918]={ + ["distance"]=83503, + ["mine_stage"]=30 + }, + [13919]={ + ["distance"]=83509, + ["mine_stage"]=51 + }, + [13920]={ + ["distance"]=83515, + ["mine_stage"]=34 + }, + [13921]={ + ["distance"]=83521, + ["mine_stage"]=59 + }, + [13922]={ + ["distance"]=83527, + ["mine_stage"]=39 + }, + [13923]={ + ["distance"]=83533, + ["mine_stage"]=29 + }, + [13924]={ + ["distance"]=83539, + ["mine_stage"]=40 + }, + [13925]={ + ["distance"]=83545, + ["mine_stage"]=16 + }, + [13926]={ + ["distance"]=83551, + ["mine_stage"]=2 + }, + [13927]={ + ["distance"]=83557, + ["mine_stage"]=20 + }, + [13928]={ + ["distance"]=83563, + ["mine_stage"]=1 + }, + [13929]={ + ["distance"]=83569, + ["mine_stage"]=35 + }, + [13930]={ + ["distance"]=83575, + ["mine_stage"]=45 + }, + [13931]={ + ["distance"]=83581, + ["mine_stage"]=53 + }, + [13932]={ + ["distance"]=83587, + ["mine_stage"]=15 + }, + [13933]={ + ["distance"]=83593, + ["mine_stage"]=37 + }, + [13934]={ + ["distance"]=83599, + ["mine_stage"]=42 + }, + [13935]={ + ["distance"]=83605, + ["mine_stage"]=2 + }, + [13936]={ + ["distance"]=83611, + ["mine_stage"]=38 + }, + [13937]={ + ["distance"]=83617, + ["mine_stage"]=41 + }, + [13938]={ + ["distance"]=83623, + ["mine_stage"]=48 + }, + [13939]={ + ["distance"]=83629, + ["mine_stage"]=21 + }, + [13940]={ + ["distance"]=83635, + ["mine_stage"]=5 + }, + [13941]={ + ["distance"]=83641, + ["mine_stage"]=20 + }, + [13942]={ + ["distance"]=83647, + ["mine_stage"]=1 + }, + [13943]={ + ["distance"]=83653, + ["mine_stage"]=37 + }, + [13944]={ + ["distance"]=83659, + ["mine_stage"]=48 + }, + [13945]={ + ["distance"]=83665, + ["mine_stage"]=22 + }, + [13946]={ + ["distance"]=83671, + ["mine_stage"]=52 + }, + [13947]={ + ["distance"]=83677, + ["mine_stage"]=47 + }, + [13948]={ + ["distance"]=83683, + ["mine_stage"]=38 + }, + [13949]={ + ["distance"]=83689, + ["mine_stage"]=45 + }, + [13950]={ + ["distance"]=83695, + ["mine_stage"]=23 + }, + [13951]={ + ["distance"]=83701, + ["mine_stage"]=67 + }, + [13952]={ + ["distance"]=83707, + ["mine_stage"]=40 + }, + [13953]={ + ["distance"]=83713, + ["mine_stage"]=53 + }, + [13954]={ + ["distance"]=83719, + ["mine_stage"]=42 + }, + [13955]={ + ["distance"]=83725, + ["mine_stage"]=28 + }, + [13956]={ + ["distance"]=83731, + ["mine_stage"]=5 + }, + [13957]={ + ["distance"]=83737, + ["mine_stage"]=12 + }, + [13958]={ + ["distance"]=83743, + ["mine_stage"]=5 + }, + [13959]={ + ["distance"]=83749, + ["mine_stage"]=12 + }, + [13960]={ + ["distance"]=83755, + ["mine_stage"]=41 + }, + [13961]={ + ["distance"]=83761, + ["mine_stage"]=10 + }, + [13962]={ + ["distance"]=83767, + ["mine_stage"]=48 + }, + [13963]={ + ["distance"]=83773, + ["mine_stage"]=11 + }, + [13964]={ + ["distance"]=83779, + ["mine_stage"]=54 + }, + [13965]={ + ["distance"]=83785, + ["mine_stage"]=11 + }, + [13966]={ + ["distance"]=83791, + ["mine_stage"]=35 + }, + [13967]={ + ["distance"]=83797, + ["mine_stage"]=14 + }, + [13968]={ + ["distance"]=83803, + ["mine_stage"]=14 + }, + [13969]={ + ["distance"]=83809, + ["mine_stage"]=9 + }, + [13970]={ + ["distance"]=83815, + ["mine_stage"]=16 + }, + [13971]={ + ["distance"]=83821, + ["mine_stage"]=35 + }, + [13972]={ + ["distance"]=83827, + ["mine_stage"]=6 + }, + [13973]={ + ["distance"]=83833, + ["mine_stage"]=18 + }, + [13974]={ + ["distance"]=83839, + ["mine_stage"]=59 + }, + [13975]={ + ["distance"]=83845, + ["mine_stage"]=30 + }, + [13976]={ + ["distance"]=83851, + ["mine_stage"]=28 + }, + [13977]={ + ["distance"]=83857, + ["mine_stage"]=10 + }, + [13978]={ + ["distance"]=83863, + ["mine_stage"]=57 + }, + [13979]={ + ["distance"]=83869, + ["mine_stage"]=58 + }, + [13980]={ + ["distance"]=83875, + ["mine_stage"]=30 + }, + [13981]={ + ["distance"]=83881, + ["mine_stage"]=10 + }, + [13982]={ + ["distance"]=83887, + ["mine_stage"]=54 + }, + [13983]={ + ["distance"]=83893, + ["mine_stage"]=60 + }, + [13984]={ + ["distance"]=83899, + ["mine_stage"]=52 + }, + [13985]={ + ["distance"]=83905, + ["mine_stage"]=46 + }, + [13986]={ + ["distance"]=83911, + ["mine_stage"]=15 + }, + [13987]={ + ["distance"]=83917, + ["mine_stage"]=28 + }, + [13988]={ + ["distance"]=83923, + ["mine_stage"]=34 + }, + [13989]={ + ["distance"]=83929, + ["mine_stage"]=4 + }, + [13990]={ + ["distance"]=83935, + ["mine_stage"]=3 + }, + [13991]={ + ["distance"]=83941, + ["mine_stage"]=22 + }, + [13992]={ + ["distance"]=83947, + ["mine_stage"]=43 + }, + [13993]={ + ["distance"]=83953, + ["mine_stage"]=19 + }, + [13994]={ + ["distance"]=83959, + ["mine_stage"]=8 + }, + [13995]={ + ["distance"]=83965, + ["mine_stage"]=56 + }, + [13996]={ + ["distance"]=83971, + ["mine_stage"]=39 + }, + [13997]={ + ["distance"]=83977, + ["mine_stage"]=34 + }, + [13998]={ + ["distance"]=83983, + ["mine_stage"]=42 + }, + [13999]={ + ["distance"]=83989, + ["mine_stage"]=16 + }, + [14000]={ + ["distance"]=83995, + ["mine_stage"]=30 + }, + [14001]={ + ["distance"]=84001, + ["mine_stage"]=65 + }, + [14002]={ + ["distance"]=84007, + ["mine_stage"]=37 + }, + [14003]={ + ["distance"]=84013, + ["mine_stage"]=30 + }, + [14004]={ + ["distance"]=84019, + ["mine_stage"]=42 + }, + [14005]={ + ["distance"]=84025, + ["mine_stage"]=57 + }, + [14006]={ + ["distance"]=84031, + ["mine_stage"]=39 + }, + [14007]={ + ["distance"]=84037, + ["mine_stage"]=32 + }, + [14008]={ + ["distance"]=84043, + ["mine_stage"]=38 + }, + [14009]={ + ["distance"]=84049, + ["mine_stage"]=13 + }, + [14010]={ + ["distance"]=84055, + ["mine_stage"]=18 + }, + [14011]={ + ["distance"]=84061, + ["mine_stage"]=33 + }, + [14012]={ + ["distance"]=84067, + ["mine_stage"]=60 + }, + [14013]={ + ["distance"]=84073, + ["mine_stage"]=4 + }, + [14014]={ + ["distance"]=84079, + ["mine_stage"]=50 + }, + [14015]={ + ["distance"]=84085, + ["mine_stage"]=11 + }, + [14016]={ + ["distance"]=84091, + ["mine_stage"]=21 + }, + [14017]={ + ["distance"]=84097, + ["mine_stage"]=50 + }, + [14018]={ + ["distance"]=84103, + ["mine_stage"]=48 + }, + [14019]={ + ["distance"]=84109, + ["mine_stage"]=34 + }, + [14020]={ + ["distance"]=84115, + ["mine_stage"]=46 + }, + [14021]={ + ["distance"]=84121, + ["mine_stage"]=44 + }, + [14022]={ + ["distance"]=84127, + ["mine_stage"]=19 + }, + [14023]={ + ["distance"]=84133, + ["mine_stage"]=20 + }, + [14024]={ + ["distance"]=84139, + ["mine_stage"]=52 + }, + [14025]={ + ["distance"]=84145, + ["mine_stage"]=56 + }, + [14026]={ + ["distance"]=84151, + ["mine_stage"]=31 + }, + [14027]={ + ["distance"]=84157, + ["mine_stage"]=16 + }, + [14028]={ + ["distance"]=84163, + ["mine_stage"]=38 + }, + [14029]={ + ["distance"]=84169, + ["mine_stage"]=57 + }, + [14030]={ + ["distance"]=84175, + ["mine_stage"]=11 + }, + [14031]={ + ["distance"]=84181, + ["mine_stage"]=26 + }, + [14032]={ + ["distance"]=84187, + ["mine_stage"]=32 + }, + [14033]={ + ["distance"]=84193, + ["mine_stage"]=19 + }, + [14034]={ + ["distance"]=84199, + ["mine_stage"]=6 + }, + [14035]={ + ["distance"]=84205, + ["mine_stage"]=47 + }, + [14036]={ + ["distance"]=84211, + ["mine_stage"]=1 + }, + [14037]={ + ["distance"]=84217, + ["mine_stage"]=14 + }, + [14038]={ + ["distance"]=84223, + ["mine_stage"]=43 + }, + [14039]={ + ["distance"]=84229, + ["mine_stage"]=16 + }, + [14040]={ + ["distance"]=84235, + ["mine_stage"]=36 + }, + [14041]={ + ["distance"]=84241, + ["mine_stage"]=35 + }, + [14042]={ + ["distance"]=84247, + ["mine_stage"]=46 + }, + [14043]={ + ["distance"]=84253, + ["mine_stage"]=45 + }, + [14044]={ + ["distance"]=84259, + ["mine_stage"]=37 + }, + [14045]={ + ["distance"]=84265, + ["mine_stage"]=29 + }, + [14046]={ + ["distance"]=84271, + ["mine_stage"]=14 + }, + [14047]={ + ["distance"]=84277, + ["mine_stage"]=41 + }, + [14048]={ + ["distance"]=84283, + ["mine_stage"]=30 + }, + [14049]={ + ["distance"]=84289, + ["mine_stage"]=55 + }, + [14050]={ + ["distance"]=84295, + ["mine_stage"]=40 + }, + [14051]={ + ["distance"]=84301, + ["mine_stage"]=68 + }, + [14052]={ + ["distance"]=84307, + ["mine_stage"]=41 + }, + [14053]={ + ["distance"]=84313, + ["mine_stage"]=38 + }, + [14054]={ + ["distance"]=84319, + ["mine_stage"]=27 + }, + [14055]={ + ["distance"]=84325, + ["mine_stage"]=34 + }, + [14056]={ + ["distance"]=84331, + ["mine_stage"]=32 + }, + [14057]={ + ["distance"]=84337, + ["mine_stage"]=51 + }, + [14058]={ + ["distance"]=84343, + ["mine_stage"]=20 + }, + [14059]={ + ["distance"]=84349, + ["mine_stage"]=33 + }, + [14060]={ + ["distance"]=84355, + ["mine_stage"]=28 + }, + [14061]={ + ["distance"]=84361, + ["mine_stage"]=35 + }, + [14062]={ + ["distance"]=84367, + ["mine_stage"]=7 + }, + [14063]={ + ["distance"]=84373, + ["mine_stage"]=48 + }, + [14064]={ + ["distance"]=84379, + ["mine_stage"]=47 + }, + [14065]={ + ["distance"]=84385, + ["mine_stage"]=16 + }, + [14066]={ + ["distance"]=84391, + ["mine_stage"]=19 + }, + [14067]={ + ["distance"]=84397, + ["mine_stage"]=29 + }, + [14068]={ + ["distance"]=84403, + ["mine_stage"]=8 + }, + [14069]={ + ["distance"]=84409, + ["mine_stage"]=32 + }, + [14070]={ + ["distance"]=84415, + ["mine_stage"]=15 + }, + [14071]={ + ["distance"]=84421, + ["mine_stage"]=54 + }, + [14072]={ + ["distance"]=84427, + ["mine_stage"]=31 + }, + [14073]={ + ["distance"]=84433, + ["mine_stage"]=28 + }, + [14074]={ + ["distance"]=84439, + ["mine_stage"]=6 + }, + [14075]={ + ["distance"]=84445, + ["mine_stage"]=54 + }, + [14076]={ + ["distance"]=84451, + ["mine_stage"]=51 + }, + [14077]={ + ["distance"]=84457, + ["mine_stage"]=7 + }, + [14078]={ + ["distance"]=84463, + ["mine_stage"]=4 + }, + [14079]={ + ["distance"]=84469, + ["mine_stage"]=6 + }, + [14080]={ + ["distance"]=84475, + ["mine_stage"]=32 + }, + [14081]={ + ["distance"]=84481, + ["mine_stage"]=10 + }, + [14082]={ + ["distance"]=84487, + ["mine_stage"]=28 + }, + [14083]={ + ["distance"]=84493, + ["mine_stage"]=35 + }, + [14084]={ + ["distance"]=84499, + ["mine_stage"]=2 + }, + [14085]={ + ["distance"]=84505, + ["mine_stage"]=41 + }, + [14086]={ + ["distance"]=84511, + ["mine_stage"]=30 + }, + [14087]={ + ["distance"]=84517, + ["mine_stage"]=23 + }, + [14088]={ + ["distance"]=84523, + ["mine_stage"]=25 + }, + [14089]={ + ["distance"]=84529, + ["mine_stage"]=41 + }, + [14090]={ + ["distance"]=84535, + ["mine_stage"]=3 + }, + [14091]={ + ["distance"]=84541, + ["mine_stage"]=1 + }, + [14092]={ + ["distance"]=84547, + ["mine_stage"]=15 + }, + [14093]={ + ["distance"]=84553, + ["mine_stage"]=17 + }, + [14094]={ + ["distance"]=84559, + ["mine_stage"]=54 + }, + [14095]={ + ["distance"]=84565, + ["mine_stage"]=39 + }, + [14096]={ + ["distance"]=84571, + ["mine_stage"]=17 + }, + [14097]={ + ["distance"]=84577, + ["mine_stage"]=35 + }, + [14098]={ + ["distance"]=84583, + ["mine_stage"]=37 + }, + [14099]={ + ["distance"]=84589, + ["mine_stage"]=6 + }, + [14100]={ + ["distance"]=84595, + ["mine_stage"]=30 + }, + [14101]={ + ["distance"]=84601, + ["mine_stage"]=66 + }, + [14102]={ + ["distance"]=84607, + ["mine_stage"]=4 + }, + [14103]={ + ["distance"]=84613, + ["mine_stage"]=45 + }, + [14104]={ + ["distance"]=84619, + ["mine_stage"]=5 + }, + [14105]={ + ["distance"]=84625, + ["mine_stage"]=33 + }, + [14106]={ + ["distance"]=84631, + ["mine_stage"]=50 + }, + [14107]={ + ["distance"]=84637, + ["mine_stage"]=33 + }, + [14108]={ + ["distance"]=84643, + ["mine_stage"]=41 + }, + [14109]={ + ["distance"]=84649, + ["mine_stage"]=15 + }, + [14110]={ + ["distance"]=84655, + ["mine_stage"]=53 + }, + [14111]={ + ["distance"]=84661, + ["mine_stage"]=56 + }, + [14112]={ + ["distance"]=84667, + ["mine_stage"]=26 + }, + [14113]={ + ["distance"]=84673, + ["mine_stage"]=7 + }, + [14114]={ + ["distance"]=84679, + ["mine_stage"]=23 + }, + [14115]={ + ["distance"]=84685, + ["mine_stage"]=41 + }, + [14116]={ + ["distance"]=84691, + ["mine_stage"]=12 + }, + [14117]={ + ["distance"]=84697, + ["mine_stage"]=23 + }, + [14118]={ + ["distance"]=84703, + ["mine_stage"]=10 + }, + [14119]={ + ["distance"]=84709, + ["mine_stage"]=26 + }, + [14120]={ + ["distance"]=84715, + ["mine_stage"]=8 + }, + [14121]={ + ["distance"]=84721, + ["mine_stage"]=28 + }, + [14122]={ + ["distance"]=84727, + ["mine_stage"]=36 + }, + [14123]={ + ["distance"]=84733, + ["mine_stage"]=2 + }, + [14124]={ + ["distance"]=84739, + ["mine_stage"]=19 + }, + [14125]={ + ["distance"]=84745, + ["mine_stage"]=39 + }, + [14126]={ + ["distance"]=84751, + ["mine_stage"]=30 + }, + [14127]={ + ["distance"]=84757, + ["mine_stage"]=58 + }, + [14128]={ + ["distance"]=84763, + ["mine_stage"]=54 + }, + [14129]={ + ["distance"]=84769, + ["mine_stage"]=1 + }, + [14130]={ + ["distance"]=84775, + ["mine_stage"]=39 + }, + [14131]={ + ["distance"]=84781, + ["mine_stage"]=58 + }, + [14132]={ + ["distance"]=84787, + ["mine_stage"]=47 + }, + [14133]={ + ["distance"]=84793, + ["mine_stage"]=9 + }, + [14134]={ + ["distance"]=84799, + ["mine_stage"]=40 + }, + [14135]={ + ["distance"]=84805, + ["mine_stage"]=9 + }, + [14136]={ + ["distance"]=84811, + ["mine_stage"]=60 + }, + [14137]={ + ["distance"]=84817, + ["mine_stage"]=49 + }, + [14138]={ + ["distance"]=84823, + ["mine_stage"]=35 + }, + [14139]={ + ["distance"]=84829, + ["mine_stage"]=60 + }, + [14140]={ + ["distance"]=84835, + ["mine_stage"]=45 + }, + [14141]={ + ["distance"]=84841, + ["mine_stage"]=57 + }, + [14142]={ + ["distance"]=84847, + ["mine_stage"]=35 + }, + [14143]={ + ["distance"]=84853, + ["mine_stage"]=9 + }, + [14144]={ + ["distance"]=84859, + ["mine_stage"]=26 + }, + [14145]={ + ["distance"]=84865, + ["mine_stage"]=41 + }, + [14146]={ + ["distance"]=84871, + ["mine_stage"]=32 + }, + [14147]={ + ["distance"]=84877, + ["mine_stage"]=3 + }, + [14148]={ + ["distance"]=84883, + ["mine_stage"]=31 + }, + [14149]={ + ["distance"]=84889, + ["mine_stage"]=4 + }, + [14150]={ + ["distance"]=84895, + ["mine_stage"]=48 + }, + [14151]={ + ["distance"]=84901, + ["mine_stage"]=69 + }, + [14152]={ + ["distance"]=84907, + ["mine_stage"]=19 + }, + [14153]={ + ["distance"]=84913, + ["mine_stage"]=24 + }, + [14154]={ + ["distance"]=84919, + ["mine_stage"]=20 + }, + [14155]={ + ["distance"]=84925, + ["mine_stage"]=18 + }, + [14156]={ + ["distance"]=84931, + ["mine_stage"]=58 + }, + [14157]={ + ["distance"]=84937, + ["mine_stage"]=20 + }, + [14158]={ + ["distance"]=84943, + ["mine_stage"]=35 + }, + [14159]={ + ["distance"]=84949, + ["mine_stage"]=60 + }, + [14160]={ + ["distance"]=84955, + ["mine_stage"]=24 + }, + [14161]={ + ["distance"]=84961, + ["mine_stage"]=23 + }, + [14162]={ + ["distance"]=84967, + ["mine_stage"]=15 + }, + [14163]={ + ["distance"]=84973, + ["mine_stage"]=12 + }, + [14164]={ + ["distance"]=84979, + ["mine_stage"]=2 + }, + [14165]={ + ["distance"]=84985, + ["mine_stage"]=22 + }, + [14166]={ + ["distance"]=84991, + ["mine_stage"]=8 + }, + [14167]={ + ["distance"]=84997, + ["mine_stage"]=55 + }, + [14168]={ + ["distance"]=85003, + ["mine_stage"]=28 + }, + [14169]={ + ["distance"]=85009, + ["mine_stage"]=10 + }, + [14170]={ + ["distance"]=85015, + ["mine_stage"]=59 + }, + [14171]={ + ["distance"]=85021, + ["mine_stage"]=22 + }, + [14172]={ + ["distance"]=85027, + ["mine_stage"]=40 + }, + [14173]={ + ["distance"]=85033, + ["mine_stage"]=52 + }, + [14174]={ + ["distance"]=85039, + ["mine_stage"]=59 + }, + [14175]={ + ["distance"]=85045, + ["mine_stage"]=40 + }, + [14176]={ + ["distance"]=85051, + ["mine_stage"]=59 + }, + [14177]={ + ["distance"]=85057, + ["mine_stage"]=59 + }, + [14178]={ + ["distance"]=85063, + ["mine_stage"]=57 + }, + [14179]={ + ["distance"]=85069, + ["mine_stage"]=47 + }, + [14180]={ + ["distance"]=85075, + ["mine_stage"]=39 + }, + [14181]={ + ["distance"]=85081, + ["mine_stage"]=24 + }, + [14182]={ + ["distance"]=85087, + ["mine_stage"]=40 + }, + [14183]={ + ["distance"]=85093, + ["mine_stage"]=6 + }, + [14184]={ + ["distance"]=85099, + ["mine_stage"]=22 + }, + [14185]={ + ["distance"]=85105, + ["mine_stage"]=9 + }, + [14186]={ + ["distance"]=85111, + ["mine_stage"]=4 + }, + [14187]={ + ["distance"]=85117, + ["mine_stage"]=11 + }, + [14188]={ + ["distance"]=85123, + ["mine_stage"]=7 + }, + [14189]={ + ["distance"]=85129, + ["mine_stage"]=31 + }, + [14190]={ + ["distance"]=85135, + ["mine_stage"]=32 + }, + [14191]={ + ["distance"]=85141, + ["mine_stage"]=43 + }, + [14192]={ + ["distance"]=85147, + ["mine_stage"]=10 + }, + [14193]={ + ["distance"]=85153, + ["mine_stage"]=18 + }, + [14194]={ + ["distance"]=85159, + ["mine_stage"]=46 + }, + [14195]={ + ["distance"]=85165, + ["mine_stage"]=22 + }, + [14196]={ + ["distance"]=85171, + ["mine_stage"]=53 + }, + [14197]={ + ["distance"]=85177, + ["mine_stage"]=34 + }, + [14198]={ + ["distance"]=85183, + ["mine_stage"]=41 + }, + [14199]={ + ["distance"]=85189, + ["mine_stage"]=28 + }, + [14200]={ + ["distance"]=85195, + ["mine_stage"]=56 + }, + [14201]={ + ["distance"]=85201, + ["mine_stage"]=64 + }, + [14202]={ + ["distance"]=85207, + ["mine_stage"]=52 + }, + [14203]={ + ["distance"]=85213, + ["mine_stage"]=3 + }, + [14204]={ + ["distance"]=85219, + ["mine_stage"]=19 + }, + [14205]={ + ["distance"]=85225, + ["mine_stage"]=21 + }, + [14206]={ + ["distance"]=85231, + ["mine_stage"]=4 + }, + [14207]={ + ["distance"]=85237, + ["mine_stage"]=30 + }, + [14208]={ + ["distance"]=85243, + ["mine_stage"]=6 + }, + [14209]={ + ["distance"]=85249, + ["mine_stage"]=53 + }, + [14210]={ + ["distance"]=85255, + ["mine_stage"]=30 + }, + [14211]={ + ["distance"]=85261, + ["mine_stage"]=56 + }, + [14212]={ + ["distance"]=85267, + ["mine_stage"]=37 + }, + [14213]={ + ["distance"]=85273, + ["mine_stage"]=51 + }, + [14214]={ + ["distance"]=85279, + ["mine_stage"]=45 + }, + [14215]={ + ["distance"]=85285, + ["mine_stage"]=56 + }, + [14216]={ + ["distance"]=85291, + ["mine_stage"]=3 + }, + [14217]={ + ["distance"]=85297, + ["mine_stage"]=4 + }, + [14218]={ + ["distance"]=85303, + ["mine_stage"]=25 + }, + [14219]={ + ["distance"]=85309, + ["mine_stage"]=44 + }, + [14220]={ + ["distance"]=85315, + ["mine_stage"]=56 + }, + [14221]={ + ["distance"]=85321, + ["mine_stage"]=57 + }, + [14222]={ + ["distance"]=85327, + ["mine_stage"]=51 + }, + [14223]={ + ["distance"]=85333, + ["mine_stage"]=48 + }, + [14224]={ + ["distance"]=85339, + ["mine_stage"]=53 + }, + [14225]={ + ["distance"]=85345, + ["mine_stage"]=6 + }, + [14226]={ + ["distance"]=85351, + ["mine_stage"]=12 + }, + [14227]={ + ["distance"]=85357, + ["mine_stage"]=2 + }, + [14228]={ + ["distance"]=85363, + ["mine_stage"]=46 + }, + [14229]={ + ["distance"]=85369, + ["mine_stage"]=35 + }, + [14230]={ + ["distance"]=85375, + ["mine_stage"]=44 + }, + [14231]={ + ["distance"]=85381, + ["mine_stage"]=18 + }, + [14232]={ + ["distance"]=85387, + ["mine_stage"]=5 + }, + [14233]={ + ["distance"]=85393, + ["mine_stage"]=47 + }, + [14234]={ + ["distance"]=85399, + ["mine_stage"]=31 + }, + [14235]={ + ["distance"]=85405, + ["mine_stage"]=28 + }, + [14236]={ + ["distance"]=85411, + ["mine_stage"]=16 + }, + [14237]={ + ["distance"]=85417, + ["mine_stage"]=4 + }, + [14238]={ + ["distance"]=85423, + ["mine_stage"]=12 + }, + [14239]={ + ["distance"]=85429, + ["mine_stage"]=26 + }, + [14240]={ + ["distance"]=85435, + ["mine_stage"]=20 + }, + [14241]={ + ["distance"]=85441, + ["mine_stage"]=41 + }, + [14242]={ + ["distance"]=85447, + ["mine_stage"]=3 + }, + [14243]={ + ["distance"]=85453, + ["mine_stage"]=49 + }, + [14244]={ + ["distance"]=85459, + ["mine_stage"]=28 + }, + [14245]={ + ["distance"]=85465, + ["mine_stage"]=33 + }, + [14246]={ + ["distance"]=85471, + ["mine_stage"]=38 + }, + [14247]={ + ["distance"]=85477, + ["mine_stage"]=35 + }, + [14248]={ + ["distance"]=85483, + ["mine_stage"]=54 + }, + [14249]={ + ["distance"]=85489, + ["mine_stage"]=22 + }, + [14250]={ + ["distance"]=85495, + ["mine_stage"]=36 + }, + [14251]={ + ["distance"]=85501, + ["mine_stage"]=67 + }, + [14252]={ + ["distance"]=85507, + ["mine_stage"]=29 + }, + [14253]={ + ["distance"]=85513, + ["mine_stage"]=43 + }, + [14254]={ + ["distance"]=85519, + ["mine_stage"]=32 + }, + [14255]={ + ["distance"]=85525, + ["mine_stage"]=23 + }, + [14256]={ + ["distance"]=85531, + ["mine_stage"]=21 + }, + [14257]={ + ["distance"]=85537, + ["mine_stage"]=21 + }, + [14258]={ + ["distance"]=85543, + ["mine_stage"]=8 + }, + [14259]={ + ["distance"]=85549, + ["mine_stage"]=49 + }, + [14260]={ + ["distance"]=85555, + ["mine_stage"]=13 + }, + [14261]={ + ["distance"]=85561, + ["mine_stage"]=23 + }, + [14262]={ + ["distance"]=85567, + ["mine_stage"]=29 + }, + [14263]={ + ["distance"]=85573, + ["mine_stage"]=51 + }, + [14264]={ + ["distance"]=85579, + ["mine_stage"]=54 + }, + [14265]={ + ["distance"]=85585, + ["mine_stage"]=53 + }, + [14266]={ + ["distance"]=85591, + ["mine_stage"]=49 + }, + [14267]={ + ["distance"]=85597, + ["mine_stage"]=51 + }, + [14268]={ + ["distance"]=85603, + ["mine_stage"]=20 + }, + [14269]={ + ["distance"]=85609, + ["mine_stage"]=9 + }, + [14270]={ + ["distance"]=85615, + ["mine_stage"]=5 + }, + [14271]={ + ["distance"]=85621, + ["mine_stage"]=16 + }, + [14272]={ + ["distance"]=85627, + ["mine_stage"]=37 + }, + [14273]={ + ["distance"]=85633, + ["mine_stage"]=41 + }, + [14274]={ + ["distance"]=85639, + ["mine_stage"]=13 + }, + [14275]={ + ["distance"]=85645, + ["mine_stage"]=46 + }, + [14276]={ + ["distance"]=85651, + ["mine_stage"]=51 + }, + [14277]={ + ["distance"]=85657, + ["mine_stage"]=15 + }, + [14278]={ + ["distance"]=85663, + ["mine_stage"]=9 + }, + [14279]={ + ["distance"]=85669, + ["mine_stage"]=58 + }, + [14280]={ + ["distance"]=85675, + ["mine_stage"]=20 + }, + [14281]={ + ["distance"]=85681, + ["mine_stage"]=31 + }, + [14282]={ + ["distance"]=85687, + ["mine_stage"]=52 + }, + [14283]={ + ["distance"]=85693, + ["mine_stage"]=42 + }, + [14284]={ + ["distance"]=85699, + ["mine_stage"]=60 + }, + [14285]={ + ["distance"]=85705, + ["mine_stage"]=41 + }, + [14286]={ + ["distance"]=85711, + ["mine_stage"]=28 + }, + [14287]={ + ["distance"]=85717, + ["mine_stage"]=30 + }, + [14288]={ + ["distance"]=85723, + ["mine_stage"]=33 + }, + [14289]={ + ["distance"]=85729, + ["mine_stage"]=25 + }, + [14290]={ + ["distance"]=85735, + ["mine_stage"]=39 + }, + [14291]={ + ["distance"]=85741, + ["mine_stage"]=29 + }, + [14292]={ + ["distance"]=85747, + ["mine_stage"]=21 + }, + [14293]={ + ["distance"]=85753, + ["mine_stage"]=28 + }, + [14294]={ + ["distance"]=85759, + ["mine_stage"]=3 + }, + [14295]={ + ["distance"]=85765, + ["mine_stage"]=48 + }, + [14296]={ + ["distance"]=85771, + ["mine_stage"]=59 + }, + [14297]={ + ["distance"]=85777, + ["mine_stage"]=1 + }, + [14298]={ + ["distance"]=85783, + ["mine_stage"]=28 + }, + [14299]={ + ["distance"]=85789, + ["mine_stage"]=4 + }, + [14300]={ + ["distance"]=85795, + ["mine_stage"]=50 + }, + [14301]={ + ["distance"]=85801, + ["mine_stage"]=65 + }, + [14302]={ + ["distance"]=85807, + ["mine_stage"]=2 + }, + [14303]={ + ["distance"]=85813, + ["mine_stage"]=1 + }, + [14304]={ + ["distance"]=85819, + ["mine_stage"]=43 + }, + [14305]={ + ["distance"]=85825, + ["mine_stage"]=16 + }, + [14306]={ + ["distance"]=85831, + ["mine_stage"]=33 + }, + [14307]={ + ["distance"]=85837, + ["mine_stage"]=20 + }, + [14308]={ + ["distance"]=85843, + ["mine_stage"]=27 + }, + [14309]={ + ["distance"]=85849, + ["mine_stage"]=41 + }, + [14310]={ + ["distance"]=85855, + ["mine_stage"]=45 + }, + [14311]={ + ["distance"]=85861, + ["mine_stage"]=25 + }, + [14312]={ + ["distance"]=85867, + ["mine_stage"]=18 + }, + [14313]={ + ["distance"]=85873, + ["mine_stage"]=27 + }, + [14314]={ + ["distance"]=85879, + ["mine_stage"]=27 + }, + [14315]={ + ["distance"]=85885, + ["mine_stage"]=11 + }, + [14316]={ + ["distance"]=85891, + ["mine_stage"]=25 + }, + [14317]={ + ["distance"]=85897, + ["mine_stage"]=53 + }, + [14318]={ + ["distance"]=85903, + ["mine_stage"]=36 + }, + [14319]={ + ["distance"]=85909, + ["mine_stage"]=46 + }, + [14320]={ + ["distance"]=85915, + ["mine_stage"]=12 + }, + [14321]={ + ["distance"]=85921, + ["mine_stage"]=37 + }, + [14322]={ + ["distance"]=85927, + ["mine_stage"]=37 + }, + [14323]={ + ["distance"]=85933, + ["mine_stage"]=56 + }, + [14324]={ + ["distance"]=85939, + ["mine_stage"]=20 + }, + [14325]={ + ["distance"]=85945, + ["mine_stage"]=16 + }, + [14326]={ + ["distance"]=85951, + ["mine_stage"]=18 + }, + [14327]={ + ["distance"]=85957, + ["mine_stage"]=50 + }, + [14328]={ + ["distance"]=85963, + ["mine_stage"]=10 + }, + [14329]={ + ["distance"]=85969, + ["mine_stage"]=50 + }, + [14330]={ + ["distance"]=85975, + ["mine_stage"]=52 + }, + [14331]={ + ["distance"]=85981, + ["mine_stage"]=20 + }, + [14332]={ + ["distance"]=85987, + ["mine_stage"]=60 + }, + [14333]={ + ["distance"]=85993, + ["mine_stage"]=47 + }, + [14334]={ + ["distance"]=85999, + ["mine_stage"]=30 + }, + [14335]={ + ["distance"]=86005, + ["mine_stage"]=39 + }, + [14336]={ + ["distance"]=86011, + ["mine_stage"]=28 + }, + [14337]={ + ["distance"]=86017, + ["mine_stage"]=14 + }, + [14338]={ + ["distance"]=86023, + ["mine_stage"]=60 + }, + [14339]={ + ["distance"]=86029, + ["mine_stage"]=2 + }, + [14340]={ + ["distance"]=86035, + ["mine_stage"]=42 + }, + [14341]={ + ["distance"]=86041, + ["mine_stage"]=22 + }, + [14342]={ + ["distance"]=86047, + ["mine_stage"]=46 + }, + [14343]={ + ["distance"]=86053, + ["mine_stage"]=16 + }, + [14344]={ + ["distance"]=86059, + ["mine_stage"]=13 + }, + [14345]={ + ["distance"]=86065, + ["mine_stage"]=27 + }, + [14346]={ + ["distance"]=86071, + ["mine_stage"]=34 + }, + [14347]={ + ["distance"]=86077, + ["mine_stage"]=12 + }, + [14348]={ + ["distance"]=86083, + ["mine_stage"]=60 + }, + [14349]={ + ["distance"]=86089, + ["mine_stage"]=26 + }, + [14350]={ + ["distance"]=86095, + ["mine_stage"]=58 + }, + [14351]={ + ["distance"]=86101, + ["mine_stage"]=68 + }, + [14352]={ + ["distance"]=86107, + ["mine_stage"]=53 + }, + [14353]={ + ["distance"]=86113, + ["mine_stage"]=54 + }, + [14354]={ + ["distance"]=86119, + ["mine_stage"]=31 + }, + [14355]={ + ["distance"]=86125, + ["mine_stage"]=8 + }, + [14356]={ + ["distance"]=86131, + ["mine_stage"]=17 + }, + [14357]={ + ["distance"]=86137, + ["mine_stage"]=28 + }, + [14358]={ + ["distance"]=86143, + ["mine_stage"]=4 + }, + [14359]={ + ["distance"]=86149, + ["mine_stage"]=25 + }, + [14360]={ + ["distance"]=86155, + ["mine_stage"]=58 + }, + [14361]={ + ["distance"]=86161, + ["mine_stage"]=51 + }, + [14362]={ + ["distance"]=86167, + ["mine_stage"]=49 + }, + [14363]={ + ["distance"]=86173, + ["mine_stage"]=31 + }, + [14364]={ + ["distance"]=86179, + ["mine_stage"]=34 + }, + [14365]={ + ["distance"]=86185, + ["mine_stage"]=25 + }, + [14366]={ + ["distance"]=86191, + ["mine_stage"]=52 + }, + [14367]={ + ["distance"]=86197, + ["mine_stage"]=45 + }, + [14368]={ + ["distance"]=86203, + ["mine_stage"]=47 + }, + [14369]={ + ["distance"]=86209, + ["mine_stage"]=3 + }, + [14370]={ + ["distance"]=86215, + ["mine_stage"]=4 + }, + [14371]={ + ["distance"]=86221, + ["mine_stage"]=37 + }, + [14372]={ + ["distance"]=86227, + ["mine_stage"]=25 + }, + [14373]={ + ["distance"]=86233, + ["mine_stage"]=13 + }, + [14374]={ + ["distance"]=86239, + ["mine_stage"]=36 + }, + [14375]={ + ["distance"]=86245, + ["mine_stage"]=46 + }, + [14376]={ + ["distance"]=86251, + ["mine_stage"]=46 + }, + [14377]={ + ["distance"]=86257, + ["mine_stage"]=52 + }, + [14378]={ + ["distance"]=86263, + ["mine_stage"]=26 + }, + [14379]={ + ["distance"]=86269, + ["mine_stage"]=29 + }, + [14380]={ + ["distance"]=86275, + ["mine_stage"]=8 + }, + [14381]={ + ["distance"]=86281, + ["mine_stage"]=14 + }, + [14382]={ + ["distance"]=86287, + ["mine_stage"]=5 + }, + [14383]={ + ["distance"]=86293, + ["mine_stage"]=22 + }, + [14384]={ + ["distance"]=86299, + ["mine_stage"]=4 + }, + [14385]={ + ["distance"]=86305, + ["mine_stage"]=7 + }, + [14386]={ + ["distance"]=86311, + ["mine_stage"]=36 + }, + [14387]={ + ["distance"]=86317, + ["mine_stage"]=40 + }, + [14388]={ + ["distance"]=86323, + ["mine_stage"]=53 + }, + [14389]={ + ["distance"]=86329, + ["mine_stage"]=53 + }, + [14390]={ + ["distance"]=86335, + ["mine_stage"]=41 + }, + [14391]={ + ["distance"]=86341, + ["mine_stage"]=5 + }, + [14392]={ + ["distance"]=86347, + ["mine_stage"]=16 + }, + [14393]={ + ["distance"]=86353, + ["mine_stage"]=8 + }, + [14394]={ + ["distance"]=86359, + ["mine_stage"]=51 + }, + [14395]={ + ["distance"]=86365, + ["mine_stage"]=18 + }, + [14396]={ + ["distance"]=86371, + ["mine_stage"]=15 + }, + [14397]={ + ["distance"]=86377, + ["mine_stage"]=49 + }, + [14398]={ + ["distance"]=86383, + ["mine_stage"]=37 + }, + [14399]={ + ["distance"]=86389, + ["mine_stage"]=15 + }, + [14400]={ + ["distance"]=86395, + ["mine_stage"]=59 + }, + [14401]={ + ["distance"]=86401, + ["mine_stage"]=66 + }, + [14402]={ + ["distance"]=86407, + ["mine_stage"]=43 + }, + [14403]={ + ["distance"]=86413, + ["mine_stage"]=5 + }, + [14404]={ + ["distance"]=86419, + ["mine_stage"]=39 + }, + [14405]={ + ["distance"]=86425, + ["mine_stage"]=48 + }, + [14406]={ + ["distance"]=86431, + ["mine_stage"]=44 + }, + [14407]={ + ["distance"]=86437, + ["mine_stage"]=4 + }, + [14408]={ + ["distance"]=86443, + ["mine_stage"]=50 + }, + [14409]={ + ["distance"]=86449, + ["mine_stage"]=60 + }, + [14410]={ + ["distance"]=86455, + ["mine_stage"]=55 + }, + [14411]={ + ["distance"]=86461, + ["mine_stage"]=4 + }, + [14412]={ + ["distance"]=86467, + ["mine_stage"]=13 + }, + [14413]={ + ["distance"]=86473, + ["mine_stage"]=45 + }, + [14414]={ + ["distance"]=86479, + ["mine_stage"]=35 + }, + [14415]={ + ["distance"]=86485, + ["mine_stage"]=45 + }, + [14416]={ + ["distance"]=86491, + ["mine_stage"]=7 + }, + [14417]={ + ["distance"]=86497, + ["mine_stage"]=14 + }, + [14418]={ + ["distance"]=86503, + ["mine_stage"]=43 + }, + [14419]={ + ["distance"]=86509, + ["mine_stage"]=1 + }, + [14420]={ + ["distance"]=86515, + ["mine_stage"]=53 + }, + [14421]={ + ["distance"]=86521, + ["mine_stage"]=44 + }, + [14422]={ + ["distance"]=86527, + ["mine_stage"]=31 + }, + [14423]={ + ["distance"]=86533, + ["mine_stage"]=8 + }, + [14424]={ + ["distance"]=86539, + ["mine_stage"]=38 + }, + [14425]={ + ["distance"]=86545, + ["mine_stage"]=27 + }, + [14426]={ + ["distance"]=86551, + ["mine_stage"]=49 + }, + [14427]={ + ["distance"]=86557, + ["mine_stage"]=30 + }, + [14428]={ + ["distance"]=86563, + ["mine_stage"]=49 + }, + [14429]={ + ["distance"]=86569, + ["mine_stage"]=42 + }, + [14430]={ + ["distance"]=86575, + ["mine_stage"]=10 + }, + [14431]={ + ["distance"]=86581, + ["mine_stage"]=32 + }, + [14432]={ + ["distance"]=86587, + ["mine_stage"]=50 + }, + [14433]={ + ["distance"]=86593, + ["mine_stage"]=11 + }, + [14434]={ + ["distance"]=86599, + ["mine_stage"]=24 + }, + [14435]={ + ["distance"]=86605, + ["mine_stage"]=43 + }, + [14436]={ + ["distance"]=86611, + ["mine_stage"]=18 + }, + [14437]={ + ["distance"]=86617, + ["mine_stage"]=2 + }, + [14438]={ + ["distance"]=86623, + ["mine_stage"]=14 + }, + [14439]={ + ["distance"]=86629, + ["mine_stage"]=1 + }, + [14440]={ + ["distance"]=86635, + ["mine_stage"]=15 + }, + [14441]={ + ["distance"]=86641, + ["mine_stage"]=37 + }, + [14442]={ + ["distance"]=86647, + ["mine_stage"]=29 + }, + [14443]={ + ["distance"]=86653, + ["mine_stage"]=24 + }, + [14444]={ + ["distance"]=86659, + ["mine_stage"]=44 + }, + [14445]={ + ["distance"]=86665, + ["mine_stage"]=49 + }, + [14446]={ + ["distance"]=86671, + ["mine_stage"]=48 + }, + [14447]={ + ["distance"]=86677, + ["mine_stage"]=15 + }, + [14448]={ + ["distance"]=86683, + ["mine_stage"]=27 + }, + [14449]={ + ["distance"]=86689, + ["mine_stage"]=37 + }, + [14450]={ + ["distance"]=86695, + ["mine_stage"]=48 + }, + [14451]={ + ["distance"]=86701, + ["mine_stage"]=69 + }, + [14452]={ + ["distance"]=86707, + ["mine_stage"]=26 + }, + [14453]={ + ["distance"]=86713, + ["mine_stage"]=49 + }, + [14454]={ + ["distance"]=86719, + ["mine_stage"]=21 + }, + [14455]={ + ["distance"]=86725, + ["mine_stage"]=59 + }, + [14456]={ + ["distance"]=86731, + ["mine_stage"]=32 + }, + [14457]={ + ["distance"]=86737, + ["mine_stage"]=25 + }, + [14458]={ + ["distance"]=86743, + ["mine_stage"]=30 + }, + [14459]={ + ["distance"]=86749, + ["mine_stage"]=14 + }, + [14460]={ + ["distance"]=86755, + ["mine_stage"]=26 + }, + [14461]={ + ["distance"]=86761, + ["mine_stage"]=39 + }, + [14462]={ + ["distance"]=86767, + ["mine_stage"]=50 + }, + [14463]={ + ["distance"]=86773, + ["mine_stage"]=38 + }, + [14464]={ + ["distance"]=86779, + ["mine_stage"]=17 + }, + [14465]={ + ["distance"]=86785, + ["mine_stage"]=30 + }, + [14466]={ + ["distance"]=86791, + ["mine_stage"]=22 + }, + [14467]={ + ["distance"]=86797, + ["mine_stage"]=41 + }, + [14468]={ + ["distance"]=86803, + ["mine_stage"]=7 + }, + [14469]={ + ["distance"]=86809, + ["mine_stage"]=47 + }, + [14470]={ + ["distance"]=86815, + ["mine_stage"]=29 + }, + [14471]={ + ["distance"]=86821, + ["mine_stage"]=10 + }, + [14472]={ + ["distance"]=86827, + ["mine_stage"]=11 + }, + [14473]={ + ["distance"]=86833, + ["mine_stage"]=1 + }, + [14474]={ + ["distance"]=86839, + ["mine_stage"]=51 + }, + [14475]={ + ["distance"]=86845, + ["mine_stage"]=41 + }, + [14476]={ + ["distance"]=86851, + ["mine_stage"]=40 + }, + [14477]={ + ["distance"]=86857, + ["mine_stage"]=9 + }, + [14478]={ + ["distance"]=86863, + ["mine_stage"]=24 + }, + [14479]={ + ["distance"]=86869, + ["mine_stage"]=39 + }, + [14480]={ + ["distance"]=86875, + ["mine_stage"]=9 + }, + [14481]={ + ["distance"]=86881, + ["mine_stage"]=25 + }, + [14482]={ + ["distance"]=86887, + ["mine_stage"]=27 + }, + [14483]={ + ["distance"]=86893, + ["mine_stage"]=43 + }, + [14484]={ + ["distance"]=86899, + ["mine_stage"]=36 + }, + [14485]={ + ["distance"]=86905, + ["mine_stage"]=53 + }, + [14486]={ + ["distance"]=86911, + ["mine_stage"]=50 + }, + [14487]={ + ["distance"]=86917, + ["mine_stage"]=27 + }, + [14488]={ + ["distance"]=86923, + ["mine_stage"]=36 + }, + [14489]={ + ["distance"]=86929, + ["mine_stage"]=8 + }, + [14490]={ + ["distance"]=86935, + ["mine_stage"]=16 + }, + [14491]={ + ["distance"]=86941, + ["mine_stage"]=25 + }, + [14492]={ + ["distance"]=86947, + ["mine_stage"]=12 + }, + [14493]={ + ["distance"]=86953, + ["mine_stage"]=49 + }, + [14494]={ + ["distance"]=86959, + ["mine_stage"]=27 + }, + [14495]={ + ["distance"]=86965, + ["mine_stage"]=53 + }, + [14496]={ + ["distance"]=86971, + ["mine_stage"]=10 + }, + [14497]={ + ["distance"]=86977, + ["mine_stage"]=46 + }, + [14498]={ + ["distance"]=86983, + ["mine_stage"]=53 + }, + [14499]={ + ["distance"]=86989, + ["mine_stage"]=5 + }, + [14500]={ + ["distance"]=86995, + ["mine_stage"]=49 + }, + [14501]={ + ["distance"]=87001, + ["mine_stage"]=64 + }, + [14502]={ + ["distance"]=87007, + ["mine_stage"]=34 + }, + [14503]={ + ["distance"]=87013, + ["mine_stage"]=15 + }, + [14504]={ + ["distance"]=87019, + ["mine_stage"]=3 + }, + [14505]={ + ["distance"]=87025, + ["mine_stage"]=3 + }, + [14506]={ + ["distance"]=87031, + ["mine_stage"]=5 + }, + [14507]={ + ["distance"]=87037, + ["mine_stage"]=28 + }, + [14508]={ + ["distance"]=87043, + ["mine_stage"]=19 + }, + [14509]={ + ["distance"]=87049, + ["mine_stage"]=45 + }, + [14510]={ + ["distance"]=87055, + ["mine_stage"]=34 + }, + [14511]={ + ["distance"]=87061, + ["mine_stage"]=17 + }, + [14512]={ + ["distance"]=87067, + ["mine_stage"]=3 + }, + [14513]={ + ["distance"]=87073, + ["mine_stage"]=49 + }, + [14514]={ + ["distance"]=87079, + ["mine_stage"]=26 + }, + [14515]={ + ["distance"]=87085, + ["mine_stage"]=51 + }, + [14516]={ + ["distance"]=87091, + ["mine_stage"]=26 + }, + [14517]={ + ["distance"]=87097, + ["mine_stage"]=56 + }, + [14518]={ + ["distance"]=87103, + ["mine_stage"]=29 + }, + [14519]={ + ["distance"]=87109, + ["mine_stage"]=43 + }, + [14520]={ + ["distance"]=87115, + ["mine_stage"]=30 + }, + [14521]={ + ["distance"]=87121, + ["mine_stage"]=25 + }, + [14522]={ + ["distance"]=87127, + ["mine_stage"]=59 + }, + [14523]={ + ["distance"]=87133, + ["mine_stage"]=25 + }, + [14524]={ + ["distance"]=87139, + ["mine_stage"]=21 + }, + [14525]={ + ["distance"]=87145, + ["mine_stage"]=20 + }, + [14526]={ + ["distance"]=87151, + ["mine_stage"]=21 + }, + [14527]={ + ["distance"]=87157, + ["mine_stage"]=22 + }, + [14528]={ + ["distance"]=87163, + ["mine_stage"]=10 + }, + [14529]={ + ["distance"]=87169, + ["mine_stage"]=38 + }, + [14530]={ + ["distance"]=87175, + ["mine_stage"]=50 + }, + [14531]={ + ["distance"]=87181, + ["mine_stage"]=4 + }, + [14532]={ + ["distance"]=87187, + ["mine_stage"]=5 + }, + [14533]={ + ["distance"]=87193, + ["mine_stage"]=38 + }, + [14534]={ + ["distance"]=87199, + ["mine_stage"]=38 + }, + [14535]={ + ["distance"]=87205, + ["mine_stage"]=25 + }, + [14536]={ + ["distance"]=87211, + ["mine_stage"]=33 + }, + [14537]={ + ["distance"]=87217, + ["mine_stage"]=48 + }, + [14538]={ + ["distance"]=87223, + ["mine_stage"]=59 + }, + [14539]={ + ["distance"]=87229, + ["mine_stage"]=55 + }, + [14540]={ + ["distance"]=87235, + ["mine_stage"]=29 + }, + [14541]={ + ["distance"]=87241, + ["mine_stage"]=34 + }, + [14542]={ + ["distance"]=87247, + ["mine_stage"]=26 + }, + [14543]={ + ["distance"]=87253, + ["mine_stage"]=37 + }, + [14544]={ + ["distance"]=87259, + ["mine_stage"]=28 + }, + [14545]={ + ["distance"]=87265, + ["mine_stage"]=49 + }, + [14546]={ + ["distance"]=87271, + ["mine_stage"]=36 + }, + [14547]={ + ["distance"]=87277, + ["mine_stage"]=3 + }, + [14548]={ + ["distance"]=87283, + ["mine_stage"]=36 + }, + [14549]={ + ["distance"]=87289, + ["mine_stage"]=3 + }, + [14550]={ + ["distance"]=87295, + ["mine_stage"]=28 + }, + [14551]={ + ["distance"]=87301, + ["mine_stage"]=67 + }, + [14552]={ + ["distance"]=87307, + ["mine_stage"]=55 + }, + [14553]={ + ["distance"]=87313, + ["mine_stage"]=48 + }, + [14554]={ + ["distance"]=87319, + ["mine_stage"]=23 + }, + [14555]={ + ["distance"]=87325, + ["mine_stage"]=15 + }, + [14556]={ + ["distance"]=87331, + ["mine_stage"]=56 + }, + [14557]={ + ["distance"]=87337, + ["mine_stage"]=12 + }, + [14558]={ + ["distance"]=87343, + ["mine_stage"]=19 + }, + [14559]={ + ["distance"]=87349, + ["mine_stage"]=4 + }, + [14560]={ + ["distance"]=87355, + ["mine_stage"]=11 + }, + [14561]={ + ["distance"]=87361, + ["mine_stage"]=14 + }, + [14562]={ + ["distance"]=87367, + ["mine_stage"]=9 + }, + [14563]={ + ["distance"]=87373, + ["mine_stage"]=19 + }, + [14564]={ + ["distance"]=87379, + ["mine_stage"]=11 + }, + [14565]={ + ["distance"]=87385, + ["mine_stage"]=1 + }, + [14566]={ + ["distance"]=87391, + ["mine_stage"]=9 + }, + [14567]={ + ["distance"]=87397, + ["mine_stage"]=60 + }, + [14568]={ + ["distance"]=87403, + ["mine_stage"]=12 + }, + [14569]={ + ["distance"]=87409, + ["mine_stage"]=47 + }, + [14570]={ + ["distance"]=87415, + ["mine_stage"]=50 + }, + [14571]={ + ["distance"]=87421, + ["mine_stage"]=25 + }, + [14572]={ + ["distance"]=87427, + ["mine_stage"]=10 + }, + [14573]={ + ["distance"]=87433, + ["mine_stage"]=3 + }, + [14574]={ + ["distance"]=87439, + ["mine_stage"]=60 + }, + [14575]={ + ["distance"]=87445, + ["mine_stage"]=1 + }, + [14576]={ + ["distance"]=87451, + ["mine_stage"]=47 + }, + [14577]={ + ["distance"]=87457, + ["mine_stage"]=50 + }, + [14578]={ + ["distance"]=87463, + ["mine_stage"]=21 + }, + [14579]={ + ["distance"]=87469, + ["mine_stage"]=46 + }, + [14580]={ + ["distance"]=87475, + ["mine_stage"]=50 + }, + [14581]={ + ["distance"]=87481, + ["mine_stage"]=38 + }, + [14582]={ + ["distance"]=87487, + ["mine_stage"]=56 + }, + [14583]={ + ["distance"]=87493, + ["mine_stage"]=20 + }, + [14584]={ + ["distance"]=87499, + ["mine_stage"]=7 + }, + [14585]={ + ["distance"]=87505, + ["mine_stage"]=32 + }, + [14586]={ + ["distance"]=87511, + ["mine_stage"]=34 + }, + [14587]={ + ["distance"]=87517, + ["mine_stage"]=15 + }, + [14588]={ + ["distance"]=87523, + ["mine_stage"]=3 + }, + [14589]={ + ["distance"]=87529, + ["mine_stage"]=35 + }, + [14590]={ + ["distance"]=87535, + ["mine_stage"]=14 + }, + [14591]={ + ["distance"]=87541, + ["mine_stage"]=23 + }, + [14592]={ + ["distance"]=87547, + ["mine_stage"]=4 + }, + [14593]={ + ["distance"]=87553, + ["mine_stage"]=40 + }, + [14594]={ + ["distance"]=87559, + ["mine_stage"]=48 + }, + [14595]={ + ["distance"]=87565, + ["mine_stage"]=20 + }, + [14596]={ + ["distance"]=87571, + ["mine_stage"]=20 + }, + [14597]={ + ["distance"]=87577, + ["mine_stage"]=16 + }, + [14598]={ + ["distance"]=87583, + ["mine_stage"]=22 + }, + [14599]={ + ["distance"]=87589, + ["mine_stage"]=5 + }, + [14600]={ + ["distance"]=87595, + ["mine_stage"]=21 + }, + [14601]={ + ["distance"]=87601, + ["mine_stage"]=65 + }, + [14602]={ + ["distance"]=87607, + ["mine_stage"]=58 + }, + [14603]={ + ["distance"]=87613, + ["mine_stage"]=54 + }, + [14604]={ + ["distance"]=87619, + ["mine_stage"]=26 + }, + [14605]={ + ["distance"]=87625, + ["mine_stage"]=47 + }, + [14606]={ + ["distance"]=87631, + ["mine_stage"]=42 + }, + [14607]={ + ["distance"]=87637, + ["mine_stage"]=59 + }, + [14608]={ + ["distance"]=87643, + ["mine_stage"]=18 + }, + [14609]={ + ["distance"]=87649, + ["mine_stage"]=7 + }, + [14610]={ + ["distance"]=87655, + ["mine_stage"]=23 + }, + [14611]={ + ["distance"]=87661, + ["mine_stage"]=31 + }, + [14612]={ + ["distance"]=87667, + ["mine_stage"]=11 + }, + [14613]={ + ["distance"]=87673, + ["mine_stage"]=13 + }, + [14614]={ + ["distance"]=87679, + ["mine_stage"]=45 + }, + [14615]={ + ["distance"]=87685, + ["mine_stage"]=28 + }, + [14616]={ + ["distance"]=87691, + ["mine_stage"]=15 + }, + [14617]={ + ["distance"]=87697, + ["mine_stage"]=56 + }, + [14618]={ + ["distance"]=87703, + ["mine_stage"]=2 + }, + [14619]={ + ["distance"]=87709, + ["mine_stage"]=41 + }, + [14620]={ + ["distance"]=87715, + ["mine_stage"]=38 + }, + [14621]={ + ["distance"]=87721, + ["mine_stage"]=1 + }, + [14622]={ + ["distance"]=87727, + ["mine_stage"]=5 + }, + [14623]={ + ["distance"]=87733, + ["mine_stage"]=4 + }, + [14624]={ + ["distance"]=87739, + ["mine_stage"]=59 + }, + [14625]={ + ["distance"]=87745, + ["mine_stage"]=49 + }, + [14626]={ + ["distance"]=87751, + ["mine_stage"]=40 + }, + [14627]={ + ["distance"]=87757, + ["mine_stage"]=42 + }, + [14628]={ + ["distance"]=87763, + ["mine_stage"]=36 + }, + [14629]={ + ["distance"]=87769, + ["mine_stage"]=19 + }, + [14630]={ + ["distance"]=87775, + ["mine_stage"]=22 + }, + [14631]={ + ["distance"]=87781, + ["mine_stage"]=12 + }, + [14632]={ + ["distance"]=87787, + ["mine_stage"]=33 + }, + [14633]={ + ["distance"]=87793, + ["mine_stage"]=48 + }, + [14634]={ + ["distance"]=87799, + ["mine_stage"]=11 + }, + [14635]={ + ["distance"]=87805, + ["mine_stage"]=7 + }, + [14636]={ + ["distance"]=87811, + ["mine_stage"]=12 + }, + [14637]={ + ["distance"]=87817, + ["mine_stage"]=45 + }, + [14638]={ + ["distance"]=87823, + ["mine_stage"]=45 + }, + [14639]={ + ["distance"]=87829, + ["mine_stage"]=57 + }, + [14640]={ + ["distance"]=87835, + ["mine_stage"]=49 + }, + [14641]={ + ["distance"]=87841, + ["mine_stage"]=34 + }, + [14642]={ + ["distance"]=87847, + ["mine_stage"]=30 + }, + [14643]={ + ["distance"]=87853, + ["mine_stage"]=29 + }, + [14644]={ + ["distance"]=87859, + ["mine_stage"]=50 + }, + [14645]={ + ["distance"]=87865, + ["mine_stage"]=18 + }, + [14646]={ + ["distance"]=87871, + ["mine_stage"]=27 + }, + [14647]={ + ["distance"]=87877, + ["mine_stage"]=30 + }, + [14648]={ + ["distance"]=87883, + ["mine_stage"]=54 + }, + [14649]={ + ["distance"]=87889, + ["mine_stage"]=15 + }, + [14650]={ + ["distance"]=87895, + ["mine_stage"]=6 + }, + [14651]={ + ["distance"]=87901, + ["mine_stage"]=68 + }, + [14652]={ + ["distance"]=87907, + ["mine_stage"]=60 + }, + [14653]={ + ["distance"]=87913, + ["mine_stage"]=58 + }, + [14654]={ + ["distance"]=87919, + ["mine_stage"]=19 + }, + [14655]={ + ["distance"]=87925, + ["mine_stage"]=39 + }, + [14656]={ + ["distance"]=87931, + ["mine_stage"]=55 + }, + [14657]={ + ["distance"]=87937, + ["mine_stage"]=40 + }, + [14658]={ + ["distance"]=87943, + ["mine_stage"]=44 + }, + [14659]={ + ["distance"]=87949, + ["mine_stage"]=31 + }, + [14660]={ + ["distance"]=87955, + ["mine_stage"]=26 + }, + [14661]={ + ["distance"]=87961, + ["mine_stage"]=12 + }, + [14662]={ + ["distance"]=87967, + ["mine_stage"]=31 + }, + [14663]={ + ["distance"]=87973, + ["mine_stage"]=21 + }, + [14664]={ + ["distance"]=87979, + ["mine_stage"]=54 + }, + [14665]={ + ["distance"]=87985, + ["mine_stage"]=33 + }, + [14666]={ + ["distance"]=87991, + ["mine_stage"]=60 + }, + [14667]={ + ["distance"]=87997, + ["mine_stage"]=4 + }, + [14668]={ + ["distance"]=88003, + ["mine_stage"]=27 + }, + [14669]={ + ["distance"]=88009, + ["mine_stage"]=2 + }, + [14670]={ + ["distance"]=88015, + ["mine_stage"]=48 + }, + [14671]={ + ["distance"]=88021, + ["mine_stage"]=58 + }, + [14672]={ + ["distance"]=88027, + ["mine_stage"]=8 + }, + [14673]={ + ["distance"]=88033, + ["mine_stage"]=8 + }, + [14674]={ + ["distance"]=88039, + ["mine_stage"]=10 + }, + [14675]={ + ["distance"]=88045, + ["mine_stage"]=53 + }, + [14676]={ + ["distance"]=88051, + ["mine_stage"]=48 + }, + [14677]={ + ["distance"]=88057, + ["mine_stage"]=51 + }, + [14678]={ + ["distance"]=88063, + ["mine_stage"]=53 + }, + [14679]={ + ["distance"]=88069, + ["mine_stage"]=57 + }, + [14680]={ + ["distance"]=88075, + ["mine_stage"]=45 + }, + [14681]={ + ["distance"]=88081, + ["mine_stage"]=21 + }, + [14682]={ + ["distance"]=88087, + ["mine_stage"]=29 + }, + [14683]={ + ["distance"]=88093, + ["mine_stage"]=31 + }, + [14684]={ + ["distance"]=88099, + ["mine_stage"]=2 + }, + [14685]={ + ["distance"]=88105, + ["mine_stage"]=44 + }, + [14686]={ + ["distance"]=88111, + ["mine_stage"]=57 + }, + [14687]={ + ["distance"]=88117, + ["mine_stage"]=33 + }, + [14688]={ + ["distance"]=88123, + ["mine_stage"]=11 + }, + [14689]={ + ["distance"]=88129, + ["mine_stage"]=40 + }, + [14690]={ + ["distance"]=88135, + ["mine_stage"]=1 + }, + [14691]={ + ["distance"]=88141, + ["mine_stage"]=35 + }, + [14692]={ + ["distance"]=88147, + ["mine_stage"]=59 + }, + [14693]={ + ["distance"]=88153, + ["mine_stage"]=8 + }, + [14694]={ + ["distance"]=88159, + ["mine_stage"]=35 + }, + [14695]={ + ["distance"]=88165, + ["mine_stage"]=24 + }, + [14696]={ + ["distance"]=88171, + ["mine_stage"]=31 + }, + [14697]={ + ["distance"]=88177, + ["mine_stage"]=47 + }, + [14698]={ + ["distance"]=88183, + ["mine_stage"]=7 + }, + [14699]={ + ["distance"]=88189, + ["mine_stage"]=3 + }, + [14700]={ + ["distance"]=88195, + ["mine_stage"]=27 + }, + [14701]={ + ["distance"]=88201, + ["mine_stage"]=66 + }, + [14702]={ + ["distance"]=88207, + ["mine_stage"]=29 + }, + [14703]={ + ["distance"]=88213, + ["mine_stage"]=60 + }, + [14704]={ + ["distance"]=88219, + ["mine_stage"]=37 + }, + [14705]={ + ["distance"]=88225, + ["mine_stage"]=39 + }, + [14706]={ + ["distance"]=88231, + ["mine_stage"]=24 + }, + [14707]={ + ["distance"]=88237, + ["mine_stage"]=25 + }, + [14708]={ + ["distance"]=88243, + ["mine_stage"]=50 + }, + [14709]={ + ["distance"]=88249, + ["mine_stage"]=50 + }, + [14710]={ + ["distance"]=88255, + ["mine_stage"]=58 + }, + [14711]={ + ["distance"]=88261, + ["mine_stage"]=17 + }, + [14712]={ + ["distance"]=88267, + ["mine_stage"]=17 + }, + [14713]={ + ["distance"]=88273, + ["mine_stage"]=47 + }, + [14714]={ + ["distance"]=88279, + ["mine_stage"]=13 + }, + [14715]={ + ["distance"]=88285, + ["mine_stage"]=30 + }, + [14716]={ + ["distance"]=88291, + ["mine_stage"]=3 + }, + [14717]={ + ["distance"]=88297, + ["mine_stage"]=54 + }, + [14718]={ + ["distance"]=88303, + ["mine_stage"]=47 + }, + [14719]={ + ["distance"]=88309, + ["mine_stage"]=22 + }, + [14720]={ + ["distance"]=88315, + ["mine_stage"]=58 + }, + [14721]={ + ["distance"]=88321, + ["mine_stage"]=4 + }, + [14722]={ + ["distance"]=88327, + ["mine_stage"]=37 + }, + [14723]={ + ["distance"]=88333, + ["mine_stage"]=52 + }, + [14724]={ + ["distance"]=88339, + ["mine_stage"]=15 + }, + [14725]={ + ["distance"]=88345, + ["mine_stage"]=47 + }, + [14726]={ + ["distance"]=88351, + ["mine_stage"]=13 + }, + [14727]={ + ["distance"]=88357, + ["mine_stage"]=56 + }, + [14728]={ + ["distance"]=88363, + ["mine_stage"]=59 + }, + [14729]={ + ["distance"]=88369, + ["mine_stage"]=38 + }, + [14730]={ + ["distance"]=88375, + ["mine_stage"]=24 + }, + [14731]={ + ["distance"]=88381, + ["mine_stage"]=8 + }, + [14732]={ + ["distance"]=88387, + ["mine_stage"]=46 + }, + [14733]={ + ["distance"]=88393, + ["mine_stage"]=23 + }, + [14734]={ + ["distance"]=88399, + ["mine_stage"]=8 + }, + [14735]={ + ["distance"]=88405, + ["mine_stage"]=41 + }, + [14736]={ + ["distance"]=88411, + ["mine_stage"]=14 + }, + [14737]={ + ["distance"]=88417, + ["mine_stage"]=43 + }, + [14738]={ + ["distance"]=88423, + ["mine_stage"]=45 + }, + [14739]={ + ["distance"]=88429, + ["mine_stage"]=59 + }, + [14740]={ + ["distance"]=88435, + ["mine_stage"]=19 + }, + [14741]={ + ["distance"]=88441, + ["mine_stage"]=53 + }, + [14742]={ + ["distance"]=88447, + ["mine_stage"]=40 + }, + [14743]={ + ["distance"]=88453, + ["mine_stage"]=35 + }, + [14744]={ + ["distance"]=88459, + ["mine_stage"]=50 + }, + [14745]={ + ["distance"]=88465, + ["mine_stage"]=35 + }, + [14746]={ + ["distance"]=88471, + ["mine_stage"]=36 + }, + [14747]={ + ["distance"]=88477, + ["mine_stage"]=49 + }, + [14748]={ + ["distance"]=88483, + ["mine_stage"]=20 + }, + [14749]={ + ["distance"]=88489, + ["mine_stage"]=14 + }, + [14750]={ + ["distance"]=88495, + ["mine_stage"]=28 + }, + [14751]={ + ["distance"]=88501, + ["mine_stage"]=69 + }, + [14752]={ + ["distance"]=88507, + ["mine_stage"]=17 + }, + [14753]={ + ["distance"]=88513, + ["mine_stage"]=10 + }, + [14754]={ + ["distance"]=88519, + ["mine_stage"]=21 + }, + [14755]={ + ["distance"]=88525, + ["mine_stage"]=56 + }, + [14756]={ + ["distance"]=88531, + ["mine_stage"]=12 + }, + [14757]={ + ["distance"]=88537, + ["mine_stage"]=34 + }, + [14758]={ + ["distance"]=88543, + ["mine_stage"]=4 + }, + [14759]={ + ["distance"]=88549, + ["mine_stage"]=59 + }, + [14760]={ + ["distance"]=88555, + ["mine_stage"]=50 + }, + [14761]={ + ["distance"]=88561, + ["mine_stage"]=50 + }, + [14762]={ + ["distance"]=88567, + ["mine_stage"]=3 + }, + [14763]={ + ["distance"]=88573, + ["mine_stage"]=52 + }, + [14764]={ + ["distance"]=88579, + ["mine_stage"]=28 + }, + [14765]={ + ["distance"]=88585, + ["mine_stage"]=53 + }, + [14766]={ + ["distance"]=88591, + ["mine_stage"]=33 + }, + [14767]={ + ["distance"]=88597, + ["mine_stage"]=56 + }, + [14768]={ + ["distance"]=88603, + ["mine_stage"]=45 + }, + [14769]={ + ["distance"]=88609, + ["mine_stage"]=13 + }, + [14770]={ + ["distance"]=88615, + ["mine_stage"]=55 + }, + [14771]={ + ["distance"]=88621, + ["mine_stage"]=9 + }, + [14772]={ + ["distance"]=88627, + ["mine_stage"]=29 + }, + [14773]={ + ["distance"]=88633, + ["mine_stage"]=27 + }, + [14774]={ + ["distance"]=88639, + ["mine_stage"]=59 + }, + [14775]={ + ["distance"]=88645, + ["mine_stage"]=53 + }, + [14776]={ + ["distance"]=88651, + ["mine_stage"]=20 + }, + [14777]={ + ["distance"]=88657, + ["mine_stage"]=34 + }, + [14778]={ + ["distance"]=88663, + ["mine_stage"]=26 + }, + [14779]={ + ["distance"]=88669, + ["mine_stage"]=26 + }, + [14780]={ + ["distance"]=88675, + ["mine_stage"]=37 + }, + [14781]={ + ["distance"]=88681, + ["mine_stage"]=50 + }, + [14782]={ + ["distance"]=88687, + ["mine_stage"]=56 + }, + [14783]={ + ["distance"]=88693, + ["mine_stage"]=27 + }, + [14784]={ + ["distance"]=88699, + ["mine_stage"]=38 + }, + [14785]={ + ["distance"]=88705, + ["mine_stage"]=50 + }, + [14786]={ + ["distance"]=88711, + ["mine_stage"]=9 + }, + [14787]={ + ["distance"]=88717, + ["mine_stage"]=19 + }, + [14788]={ + ["distance"]=88723, + ["mine_stage"]=10 + }, + [14789]={ + ["distance"]=88729, + ["mine_stage"]=11 + }, + [14790]={ + ["distance"]=88735, + ["mine_stage"]=32 + }, + [14791]={ + ["distance"]=88741, + ["mine_stage"]=25 + }, + [14792]={ + ["distance"]=88747, + ["mine_stage"]=56 + }, + [14793]={ + ["distance"]=88753, + ["mine_stage"]=11 + }, + [14794]={ + ["distance"]=88759, + ["mine_stage"]=2 + }, + [14795]={ + ["distance"]=88765, + ["mine_stage"]=17 + }, + [14796]={ + ["distance"]=88771, + ["mine_stage"]=49 + }, + [14797]={ + ["distance"]=88777, + ["mine_stage"]=60 + }, + [14798]={ + ["distance"]=88783, + ["mine_stage"]=59 + }, + [14799]={ + ["distance"]=88789, + ["mine_stage"]=4 + }, + [14800]={ + ["distance"]=88795, + ["mine_stage"]=53 + }, + [14801]={ + ["distance"]=88801, + ["mine_stage"]=64 + }, + [14802]={ + ["distance"]=88807, + ["mine_stage"]=59 + }, + [14803]={ + ["distance"]=88813, + ["mine_stage"]=10 + }, + [14804]={ + ["distance"]=88819, + ["mine_stage"]=3 + }, + [14805]={ + ["distance"]=88825, + ["mine_stage"]=6 + }, + [14806]={ + ["distance"]=88831, + ["mine_stage"]=10 + }, + [14807]={ + ["distance"]=88837, + ["mine_stage"]=18 + }, + [14808]={ + ["distance"]=88843, + ["mine_stage"]=14 + }, + [14809]={ + ["distance"]=88849, + ["mine_stage"]=57 + }, + [14810]={ + ["distance"]=88855, + ["mine_stage"]=53 + }, + [14811]={ + ["distance"]=88861, + ["mine_stage"]=22 + }, + [14812]={ + ["distance"]=88867, + ["mine_stage"]=25 + }, + [14813]={ + ["distance"]=88873, + ["mine_stage"]=12 + }, + [14814]={ + ["distance"]=88879, + ["mine_stage"]=6 + }, + [14815]={ + ["distance"]=88885, + ["mine_stage"]=54 + }, + [14816]={ + ["distance"]=88891, + ["mine_stage"]=51 + }, + [14817]={ + ["distance"]=88897, + ["mine_stage"]=6 + }, + [14818]={ + ["distance"]=88903, + ["mine_stage"]=27 + }, + [14819]={ + ["distance"]=88909, + ["mine_stage"]=7 + }, + [14820]={ + ["distance"]=88915, + ["mine_stage"]=11 + }, + [14821]={ + ["distance"]=88921, + ["mine_stage"]=44 + }, + [14822]={ + ["distance"]=88927, + ["mine_stage"]=8 + }, + [14823]={ + ["distance"]=88933, + ["mine_stage"]=9 + }, + [14824]={ + ["distance"]=88939, + ["mine_stage"]=60 + }, + [14825]={ + ["distance"]=88945, + ["mine_stage"]=40 + }, + [14826]={ + ["distance"]=88951, + ["mine_stage"]=18 + }, + [14827]={ + ["distance"]=88957, + ["mine_stage"]=24 + }, + [14828]={ + ["distance"]=88963, + ["mine_stage"]=47 + }, + [14829]={ + ["distance"]=88969, + ["mine_stage"]=26 + }, + [14830]={ + ["distance"]=88975, + ["mine_stage"]=4 + }, + [14831]={ + ["distance"]=88981, + ["mine_stage"]=50 + }, + [14832]={ + ["distance"]=88987, + ["mine_stage"]=1 + }, + [14833]={ + ["distance"]=88993, + ["mine_stage"]=6 + }, + [14834]={ + ["distance"]=88999, + ["mine_stage"]=9 + }, + [14835]={ + ["distance"]=89005, + ["mine_stage"]=18 + }, + [14836]={ + ["distance"]=89011, + ["mine_stage"]=2 + }, + [14837]={ + ["distance"]=89017, + ["mine_stage"]=9 + }, + [14838]={ + ["distance"]=89023, + ["mine_stage"]=27 + }, + [14839]={ + ["distance"]=89029, + ["mine_stage"]=9 + }, + [14840]={ + ["distance"]=89035, + ["mine_stage"]=30 + }, + [14841]={ + ["distance"]=89041, + ["mine_stage"]=55 + }, + [14842]={ + ["distance"]=89047, + ["mine_stage"]=60 + }, + [14843]={ + ["distance"]=89053, + ["mine_stage"]=7 + }, + [14844]={ + ["distance"]=89059, + ["mine_stage"]=2 + }, + [14845]={ + ["distance"]=89065, + ["mine_stage"]=27 + }, + [14846]={ + ["distance"]=89071, + ["mine_stage"]=53 + }, + [14847]={ + ["distance"]=89077, + ["mine_stage"]=42 + }, + [14848]={ + ["distance"]=89083, + ["mine_stage"]=39 + }, + [14849]={ + ["distance"]=89089, + ["mine_stage"]=19 + }, + [14850]={ + ["distance"]=89095, + ["mine_stage"]=28 + }, + [14851]={ + ["distance"]=89101, + ["mine_stage"]=67 + }, + [14852]={ + ["distance"]=89107, + ["mine_stage"]=27 + }, + [14853]={ + ["distance"]=89113, + ["mine_stage"]=56 + }, + [14854]={ + ["distance"]=89119, + ["mine_stage"]=29 + }, + [14855]={ + ["distance"]=89125, + ["mine_stage"]=7 + }, + [14856]={ + ["distance"]=89131, + ["mine_stage"]=60 + }, + [14857]={ + ["distance"]=89137, + ["mine_stage"]=23 + }, + [14858]={ + ["distance"]=89143, + ["mine_stage"]=45 + }, + [14859]={ + ["distance"]=89149, + ["mine_stage"]=32 + }, + [14860]={ + ["distance"]=89155, + ["mine_stage"]=53 + }, + [14861]={ + ["distance"]=89161, + ["mine_stage"]=6 + }, + [14862]={ + ["distance"]=89167, + ["mine_stage"]=8 + }, + [14863]={ + ["distance"]=89173, + ["mine_stage"]=59 + }, + [14864]={ + ["distance"]=89179, + ["mine_stage"]=42 + }, + [14865]={ + ["distance"]=89185, + ["mine_stage"]=50 + }, + [14866]={ + ["distance"]=89191, + ["mine_stage"]=16 + }, + [14867]={ + ["distance"]=89197, + ["mine_stage"]=34 + }, + [14868]={ + ["distance"]=89203, + ["mine_stage"]=45 + }, + [14869]={ + ["distance"]=89209, + ["mine_stage"]=37 + }, + [14870]={ + ["distance"]=89215, + ["mine_stage"]=51 + }, + [14871]={ + ["distance"]=89221, + ["mine_stage"]=23 + }, + [14872]={ + ["distance"]=89227, + ["mine_stage"]=18 + }, + [14873]={ + ["distance"]=89233, + ["mine_stage"]=60 + }, + [14874]={ + ["distance"]=89239, + ["mine_stage"]=33 + }, + [14875]={ + ["distance"]=89245, + ["mine_stage"]=15 + }, + [14876]={ + ["distance"]=89251, + ["mine_stage"]=17 + }, + [14877]={ + ["distance"]=89257, + ["mine_stage"]=14 + }, + [14878]={ + ["distance"]=89263, + ["mine_stage"]=44 + }, + [14879]={ + ["distance"]=89269, + ["mine_stage"]=11 + }, + [14880]={ + ["distance"]=89275, + ["mine_stage"]=46 + }, + [14881]={ + ["distance"]=89281, + ["mine_stage"]=13 + }, + [14882]={ + ["distance"]=89287, + ["mine_stage"]=23 + }, + [14883]={ + ["distance"]=89293, + ["mine_stage"]=41 + }, + [14884]={ + ["distance"]=89299, + ["mine_stage"]=4 + }, + [14885]={ + ["distance"]=89305, + ["mine_stage"]=20 + }, + [14886]={ + ["distance"]=89311, + ["mine_stage"]=16 + }, + [14887]={ + ["distance"]=89317, + ["mine_stage"]=6 + }, + [14888]={ + ["distance"]=89323, + ["mine_stage"]=20 + }, + [14889]={ + ["distance"]=89329, + ["mine_stage"]=14 + }, + [14890]={ + ["distance"]=89335, + ["mine_stage"]=49 + }, + [14891]={ + ["distance"]=89341, + ["mine_stage"]=10 + }, + [14892]={ + ["distance"]=89347, + ["mine_stage"]=49 + }, + [14893]={ + ["distance"]=89353, + ["mine_stage"]=27 + }, + [14894]={ + ["distance"]=89359, + ["mine_stage"]=60 + }, + [14895]={ + ["distance"]=89365, + ["mine_stage"]=11 + }, + [14896]={ + ["distance"]=89371, + ["mine_stage"]=16 + }, + [14897]={ + ["distance"]=89377, + ["mine_stage"]=4 + }, + [14898]={ + ["distance"]=89383, + ["mine_stage"]=35 + }, + [14899]={ + ["distance"]=89389, + ["mine_stage"]=24 + }, + [14900]={ + ["distance"]=89395, + ["mine_stage"]=34 + }, + [14901]={ + ["distance"]=89401, + ["mine_stage"]=65 + }, + [14902]={ + ["distance"]=89407, + ["mine_stage"]=38 + }, + [14903]={ + ["distance"]=89413, + ["mine_stage"]=54 + }, + [14904]={ + ["distance"]=89419, + ["mine_stage"]=32 + }, + [14905]={ + ["distance"]=89425, + ["mine_stage"]=19 + }, + [14906]={ + ["distance"]=89431, + ["mine_stage"]=10 + }, + [14907]={ + ["distance"]=89437, + ["mine_stage"]=14 + }, + [14908]={ + ["distance"]=89443, + ["mine_stage"]=26 + }, + [14909]={ + ["distance"]=89449, + ["mine_stage"]=57 + }, + [14910]={ + ["distance"]=89455, + ["mine_stage"]=56 + }, + [14911]={ + ["distance"]=89461, + ["mine_stage"]=48 + }, + [14912]={ + ["distance"]=89467, + ["mine_stage"]=56 + }, + [14913]={ + ["distance"]=89473, + ["mine_stage"]=44 + }, + [14914]={ + ["distance"]=89479, + ["mine_stage"]=38 + }, + [14915]={ + ["distance"]=89485, + ["mine_stage"]=48 + }, + [14916]={ + ["distance"]=89491, + ["mine_stage"]=49 + }, + [14917]={ + ["distance"]=89497, + ["mine_stage"]=25 + }, + [14918]={ + ["distance"]=89503, + ["mine_stage"]=33 + }, + [14919]={ + ["distance"]=89509, + ["mine_stage"]=42 + }, + [14920]={ + ["distance"]=89515, + ["mine_stage"]=26 + }, + [14921]={ + ["distance"]=89521, + ["mine_stage"]=25 + }, + [14922]={ + ["distance"]=89527, + ["mine_stage"]=57 + }, + [14923]={ + ["distance"]=89533, + ["mine_stage"]=13 + }, + [14924]={ + ["distance"]=89539, + ["mine_stage"]=59 + }, + [14925]={ + ["distance"]=89545, + ["mine_stage"]=59 + }, + [14926]={ + ["distance"]=89551, + ["mine_stage"]=7 + }, + [14927]={ + ["distance"]=89557, + ["mine_stage"]=17 + }, + [14928]={ + ["distance"]=89563, + ["mine_stage"]=33 + }, + [14929]={ + ["distance"]=89569, + ["mine_stage"]=9 + }, + [14930]={ + ["distance"]=89575, + ["mine_stage"]=59 + }, + [14931]={ + ["distance"]=89581, + ["mine_stage"]=22 + }, + [14932]={ + ["distance"]=89587, + ["mine_stage"]=39 + }, + [14933]={ + ["distance"]=89593, + ["mine_stage"]=22 + }, + [14934]={ + ["distance"]=89599, + ["mine_stage"]=58 + }, + [14935]={ + ["distance"]=89605, + ["mine_stage"]=40 + }, + [14936]={ + ["distance"]=89611, + ["mine_stage"]=26 + }, + [14937]={ + ["distance"]=89617, + ["mine_stage"]=47 + }, + [14938]={ + ["distance"]=89623, + ["mine_stage"]=21 + }, + [14939]={ + ["distance"]=89629, + ["mine_stage"]=34 + }, + [14940]={ + ["distance"]=89635, + ["mine_stage"]=40 + }, + [14941]={ + ["distance"]=89641, + ["mine_stage"]=30 + }, + [14942]={ + ["distance"]=89647, + ["mine_stage"]=38 + }, + [14943]={ + ["distance"]=89653, + ["mine_stage"]=52 + }, + [14944]={ + ["distance"]=89659, + ["mine_stage"]=60 + }, + [14945]={ + ["distance"]=89665, + ["mine_stage"]=33 + }, + [14946]={ + ["distance"]=89671, + ["mine_stage"]=36 + }, + [14947]={ + ["distance"]=89677, + ["mine_stage"]=41 + }, + [14948]={ + ["distance"]=89683, + ["mine_stage"]=51 + }, + [14949]={ + ["distance"]=89689, + ["mine_stage"]=60 + }, + [14950]={ + ["distance"]=89695, + ["mine_stage"]=42 + }, + [14951]={ + ["distance"]=89701, + ["mine_stage"]=68 + }, + [14952]={ + ["distance"]=89707, + ["mine_stage"]=24 + }, + [14953]={ + ["distance"]=89713, + ["mine_stage"]=30 + }, + [14954]={ + ["distance"]=89719, + ["mine_stage"]=43 + }, + [14955]={ + ["distance"]=89725, + ["mine_stage"]=48 + }, + [14956]={ + ["distance"]=89731, + ["mine_stage"]=26 + }, + [14957]={ + ["distance"]=89737, + ["mine_stage"]=30 + }, + [14958]={ + ["distance"]=89743, + ["mine_stage"]=37 + }, + [14959]={ + ["distance"]=89749, + ["mine_stage"]=35 + }, + [14960]={ + ["distance"]=89755, + ["mine_stage"]=57 + }, + [14961]={ + ["distance"]=89761, + ["mine_stage"]=36 + }, + [14962]={ + ["distance"]=89767, + ["mine_stage"]=13 + }, + [14963]={ + ["distance"]=89773, + ["mine_stage"]=35 + }, + [14964]={ + ["distance"]=89779, + ["mine_stage"]=7 + }, + [14965]={ + ["distance"]=89785, + ["mine_stage"]=16 + }, + [14966]={ + ["distance"]=89791, + ["mine_stage"]=37 + }, + [14967]={ + ["distance"]=89797, + ["mine_stage"]=28 + }, + [14968]={ + ["distance"]=89803, + ["mine_stage"]=34 + }, + [14969]={ + ["distance"]=89809, + ["mine_stage"]=29 + }, + [14970]={ + ["distance"]=89815, + ["mine_stage"]=2 + }, + [14971]={ + ["distance"]=89821, + ["mine_stage"]=57 + }, + [14972]={ + ["distance"]=89827, + ["mine_stage"]=34 + }, + [14973]={ + ["distance"]=89833, + ["mine_stage"]=29 + }, + [14974]={ + ["distance"]=89839, + ["mine_stage"]=56 + }, + [14975]={ + ["distance"]=89845, + ["mine_stage"]=12 + }, + [14976]={ + ["distance"]=89851, + ["mine_stage"]=15 + }, + [14977]={ + ["distance"]=89857, + ["mine_stage"]=4 + }, + [14978]={ + ["distance"]=89863, + ["mine_stage"]=40 + }, + [14979]={ + ["distance"]=89869, + ["mine_stage"]=17 + }, + [14980]={ + ["distance"]=89875, + ["mine_stage"]=45 + }, + [14981]={ + ["distance"]=89881, + ["mine_stage"]=46 + }, + [14982]={ + ["distance"]=89887, + ["mine_stage"]=6 + }, + [14983]={ + ["distance"]=89893, + ["mine_stage"]=57 + }, + [14984]={ + ["distance"]=89899, + ["mine_stage"]=26 + }, + [14985]={ + ["distance"]=89905, + ["mine_stage"]=57 + }, + [14986]={ + ["distance"]=89911, + ["mine_stage"]=11 + }, + [14987]={ + ["distance"]=89917, + ["mine_stage"]=51 + }, + [14988]={ + ["distance"]=89923, + ["mine_stage"]=55 + }, + [14989]={ + ["distance"]=89929, + ["mine_stage"]=24 + }, + [14990]={ + ["distance"]=89935, + ["mine_stage"]=37 + }, + [14991]={ + ["distance"]=89941, + ["mine_stage"]=43 + }, + [14992]={ + ["distance"]=89947, + ["mine_stage"]=30 + }, + [14993]={ + ["distance"]=89953, + ["mine_stage"]=44 + }, + [14994]={ + ["distance"]=89959, + ["mine_stage"]=31 + }, + [14995]={ + ["distance"]=89965, + ["mine_stage"]=4 + }, + [14996]={ + ["distance"]=89971, + ["mine_stage"]=38 + }, + [14997]={ + ["distance"]=89977, + ["mine_stage"]=19 + }, + [14998]={ + ["distance"]=89983, + ["mine_stage"]=7 + }, + [14999]={ + ["distance"]=89989, + ["mine_stage"]=7 + }, + [15000]={ + ["distance"]=89995, + ["mine_stage"]=56 + }, + [15001]={ + ["distance"]=90001, + ["mine_stage"]=66 + }, + [15002]={ + ["distance"]=90007, + ["mine_stage"]=45 + }, + [15003]={ + ["distance"]=90013, + ["mine_stage"]=16 + }, + [15004]={ + ["distance"]=90019, + ["mine_stage"]=6 + }, + [15005]={ + ["distance"]=90025, + ["mine_stage"]=33 + }, + [15006]={ + ["distance"]=90031, + ["mine_stage"]=35 + }, + [15007]={ + ["distance"]=90037, + ["mine_stage"]=53 + }, + [15008]={ + ["distance"]=90043, + ["mine_stage"]=25 + }, + [15009]={ + ["distance"]=90049, + ["mine_stage"]=45 + }, + [15010]={ + ["distance"]=90055, + ["mine_stage"]=39 + }, + [15011]={ + ["distance"]=90061, + ["mine_stage"]=52 + }, + [15012]={ + ["distance"]=90067, + ["mine_stage"]=47 + }, + [15013]={ + ["distance"]=90073, + ["mine_stage"]=7 + }, + [15014]={ + ["distance"]=90079, + ["mine_stage"]=57 + }, + [15015]={ + ["distance"]=90085, + ["mine_stage"]=3 + }, + [15016]={ + ["distance"]=90091, + ["mine_stage"]=32 + }, + [15017]={ + ["distance"]=90097, + ["mine_stage"]=13 + }, + [15018]={ + ["distance"]=90103, + ["mine_stage"]=9 + }, + [15019]={ + ["distance"]=90109, + ["mine_stage"]=58 + }, + [15020]={ + ["distance"]=90115, + ["mine_stage"]=45 + }, + [15021]={ + ["distance"]=90121, + ["mine_stage"]=4 + }, + [15022]={ + ["distance"]=90127, + ["mine_stage"]=51 + }, + [15023]={ + ["distance"]=90133, + ["mine_stage"]=26 + }, + [15024]={ + ["distance"]=90139, + ["mine_stage"]=34 + }, + [15025]={ + ["distance"]=90145, + ["mine_stage"]=27 + }, + [15026]={ + ["distance"]=90151, + ["mine_stage"]=47 + }, + [15027]={ + ["distance"]=90157, + ["mine_stage"]=59 + }, + [15028]={ + ["distance"]=90163, + ["mine_stage"]=22 + }, + [15029]={ + ["distance"]=90169, + ["mine_stage"]=28 + }, + [15030]={ + ["distance"]=90175, + ["mine_stage"]=52 + }, + [15031]={ + ["distance"]=90181, + ["mine_stage"]=55 + }, + [15032]={ + ["distance"]=90187, + ["mine_stage"]=2 + }, + [15033]={ + ["distance"]=90193, + ["mine_stage"]=10 + }, + [15034]={ + ["distance"]=90199, + ["mine_stage"]=53 + }, + [15035]={ + ["distance"]=90205, + ["mine_stage"]=29 + }, + [15036]={ + ["distance"]=90211, + ["mine_stage"]=52 + }, + [15037]={ + ["distance"]=90217, + ["mine_stage"]=53 + }, + [15038]={ + ["distance"]=90223, + ["mine_stage"]=53 + }, + [15039]={ + ["distance"]=90229, + ["mine_stage"]=25 + }, + [15040]={ + ["distance"]=90235, + ["mine_stage"]=44 + }, + [15041]={ + ["distance"]=90241, + ["mine_stage"]=43 + }, + [15042]={ + ["distance"]=90247, + ["mine_stage"]=42 + }, + [15043]={ + ["distance"]=90253, + ["mine_stage"]=60 + }, + [15044]={ + ["distance"]=90259, + ["mine_stage"]=11 + }, + [15045]={ + ["distance"]=90265, + ["mine_stage"]=7 + }, + [15046]={ + ["distance"]=90271, + ["mine_stage"]=12 + }, + [15047]={ + ["distance"]=90277, + ["mine_stage"]=26 + }, + [15048]={ + ["distance"]=90283, + ["mine_stage"]=18 + }, + [15049]={ + ["distance"]=90289, + ["mine_stage"]=17 + }, + [15050]={ + ["distance"]=90295, + ["mine_stage"]=42 + }, + [15051]={ + ["distance"]=90301, + ["mine_stage"]=69 + }, + [15052]={ + ["distance"]=90307, + ["mine_stage"]=3 + }, + [15053]={ + ["distance"]=90313, + ["mine_stage"]=7 + }, + [15054]={ + ["distance"]=90319, + ["mine_stage"]=35 + }, + [15055]={ + ["distance"]=90325, + ["mine_stage"]=28 + }, + [15056]={ + ["distance"]=90331, + ["mine_stage"]=16 + }, + [15057]={ + ["distance"]=90337, + ["mine_stage"]=25 + }, + [15058]={ + ["distance"]=90343, + ["mine_stage"]=12 + }, + [15059]={ + ["distance"]=90349, + ["mine_stage"]=14 + }, + [15060]={ + ["distance"]=90355, + ["mine_stage"]=7 + }, + [15061]={ + ["distance"]=90361, + ["mine_stage"]=10 + }, + [15062]={ + ["distance"]=90367, + ["mine_stage"]=17 + }, + [15063]={ + ["distance"]=90373, + ["mine_stage"]=2 + }, + [15064]={ + ["distance"]=90379, + ["mine_stage"]=48 + }, + [15065]={ + ["distance"]=90385, + ["mine_stage"]=44 + }, + [15066]={ + ["distance"]=90391, + ["mine_stage"]=22 + }, + [15067]={ + ["distance"]=90397, + ["mine_stage"]=19 + }, + [15068]={ + ["distance"]=90403, + ["mine_stage"]=42 + }, + [15069]={ + ["distance"]=90409, + ["mine_stage"]=5 + }, + [15070]={ + ["distance"]=90415, + ["mine_stage"]=38 + }, + [15071]={ + ["distance"]=90421, + ["mine_stage"]=3 + }, + [15072]={ + ["distance"]=90427, + ["mine_stage"]=32 + }, + [15073]={ + ["distance"]=90433, + ["mine_stage"]=28 + }, + [15074]={ + ["distance"]=90439, + ["mine_stage"]=19 + }, + [15075]={ + ["distance"]=90445, + ["mine_stage"]=6 + }, + [15076]={ + ["distance"]=90451, + ["mine_stage"]=30 + }, + [15077]={ + ["distance"]=90457, + ["mine_stage"]=57 + }, + [15078]={ + ["distance"]=90463, + ["mine_stage"]=33 + }, + [15079]={ + ["distance"]=90469, + ["mine_stage"]=6 + }, + [15080]={ + ["distance"]=90475, + ["mine_stage"]=24 + }, + [15081]={ + ["distance"]=90481, + ["mine_stage"]=56 + }, + [15082]={ + ["distance"]=90487, + ["mine_stage"]=5 + }, + [15083]={ + ["distance"]=90493, + ["mine_stage"]=49 + }, + [15084]={ + ["distance"]=90499, + ["mine_stage"]=41 + }, + [15085]={ + ["distance"]=90505, + ["mine_stage"]=38 + }, + [15086]={ + ["distance"]=90511, + ["mine_stage"]=58 + }, + [15087]={ + ["distance"]=90517, + ["mine_stage"]=28 + }, + [15088]={ + ["distance"]=90523, + ["mine_stage"]=6 + }, + [15089]={ + ["distance"]=90529, + ["mine_stage"]=20 + }, + [15090]={ + ["distance"]=90535, + ["mine_stage"]=52 + }, + [15091]={ + ["distance"]=90541, + ["mine_stage"]=27 + }, + [15092]={ + ["distance"]=90547, + ["mine_stage"]=16 + }, + [15093]={ + ["distance"]=90553, + ["mine_stage"]=60 + }, + [15094]={ + ["distance"]=90559, + ["mine_stage"]=41 + }, + [15095]={ + ["distance"]=90565, + ["mine_stage"]=1 + }, + [15096]={ + ["distance"]=90571, + ["mine_stage"]=37 + }, + [15097]={ + ["distance"]=90577, + ["mine_stage"]=53 + }, + [15098]={ + ["distance"]=90583, + ["mine_stage"]=24 + }, + [15099]={ + ["distance"]=90589, + ["mine_stage"]=16 + }, + [15100]={ + ["distance"]=90595, + ["mine_stage"]=19 + }, + [15101]={ + ["distance"]=90601, + ["mine_stage"]=64 + }, + [15102]={ + ["distance"]=90607, + ["mine_stage"]=6 + }, + [15103]={ + ["distance"]=90613, + ["mine_stage"]=1 + }, + [15104]={ + ["distance"]=90619, + ["mine_stage"]=20 + }, + [15105]={ + ["distance"]=90625, + ["mine_stage"]=23 + }, + [15106]={ + ["distance"]=90631, + ["mine_stage"]=7 + }, + [15107]={ + ["distance"]=90637, + ["mine_stage"]=60 + }, + [15108]={ + ["distance"]=90643, + ["mine_stage"]=13 + }, + [15109]={ + ["distance"]=90649, + ["mine_stage"]=11 + }, + [15110]={ + ["distance"]=90655, + ["mine_stage"]=28 + }, + [15111]={ + ["distance"]=90661, + ["mine_stage"]=31 + }, + [15112]={ + ["distance"]=90667, + ["mine_stage"]=47 + }, + [15113]={ + ["distance"]=90673, + ["mine_stage"]=46 + }, + [15114]={ + ["distance"]=90679, + ["mine_stage"]=2 + }, + [15115]={ + ["distance"]=90685, + ["mine_stage"]=18 + }, + [15116]={ + ["distance"]=90691, + ["mine_stage"]=50 + }, + [15117]={ + ["distance"]=90697, + ["mine_stage"]=46 + }, + [15118]={ + ["distance"]=90703, + ["mine_stage"]=26 + }, + [15119]={ + ["distance"]=90709, + ["mine_stage"]=33 + }, + [15120]={ + ["distance"]=90715, + ["mine_stage"]=7 + }, + [15121]={ + ["distance"]=90721, + ["mine_stage"]=9 + }, + [15122]={ + ["distance"]=90727, + ["mine_stage"]=33 + }, + [15123]={ + ["distance"]=90733, + ["mine_stage"]=23 + }, + [15124]={ + ["distance"]=90739, + ["mine_stage"]=7 + }, + [15125]={ + ["distance"]=90745, + ["mine_stage"]=53 + }, + [15126]={ + ["distance"]=90751, + ["mine_stage"]=44 + }, + [15127]={ + ["distance"]=90757, + ["mine_stage"]=13 + }, + [15128]={ + ["distance"]=90763, + ["mine_stage"]=11 + }, + [15129]={ + ["distance"]=90769, + ["mine_stage"]=35 + }, + [15130]={ + ["distance"]=90775, + ["mine_stage"]=29 + }, + [15131]={ + ["distance"]=90781, + ["mine_stage"]=4 + }, + [15132]={ + ["distance"]=90787, + ["mine_stage"]=3 + }, + [15133]={ + ["distance"]=90793, + ["mine_stage"]=55 + }, + [15134]={ + ["distance"]=90799, + ["mine_stage"]=6 + }, + [15135]={ + ["distance"]=90805, + ["mine_stage"]=59 + }, + [15136]={ + ["distance"]=90811, + ["mine_stage"]=1 + }, + [15137]={ + ["distance"]=90817, + ["mine_stage"]=6 + }, + [15138]={ + ["distance"]=90823, + ["mine_stage"]=56 + }, + [15139]={ + ["distance"]=90829, + ["mine_stage"]=35 + }, + [15140]={ + ["distance"]=90835, + ["mine_stage"]=9 + }, + [15141]={ + ["distance"]=90841, + ["mine_stage"]=59 + }, + [15142]={ + ["distance"]=90847, + ["mine_stage"]=19 + }, + [15143]={ + ["distance"]=90853, + ["mine_stage"]=47 + }, + [15144]={ + ["distance"]=90859, + ["mine_stage"]=55 + }, + [15145]={ + ["distance"]=90865, + ["mine_stage"]=24 + }, + [15146]={ + ["distance"]=90871, + ["mine_stage"]=15 + }, + [15147]={ + ["distance"]=90877, + ["mine_stage"]=5 + }, + [15148]={ + ["distance"]=90883, + ["mine_stage"]=17 + }, + [15149]={ + ["distance"]=90889, + ["mine_stage"]=26 + }, + [15150]={ + ["distance"]=90895, + ["mine_stage"]=56 + }, + [15151]={ + ["distance"]=90901, + ["mine_stage"]=67 + }, + [15152]={ + ["distance"]=90907, + ["mine_stage"]=14 + }, + [15153]={ + ["distance"]=90913, + ["mine_stage"]=11 + }, + [15154]={ + ["distance"]=90919, + ["mine_stage"]=57 + }, + [15155]={ + ["distance"]=90925, + ["mine_stage"]=15 + }, + [15156]={ + ["distance"]=90931, + ["mine_stage"]=12 + }, + [15157]={ + ["distance"]=90937, + ["mine_stage"]=40 + }, + [15158]={ + ["distance"]=90943, + ["mine_stage"]=54 + }, + [15159]={ + ["distance"]=90949, + ["mine_stage"]=11 + }, + [15160]={ + ["distance"]=90955, + ["mine_stage"]=59 + }, + [15161]={ + ["distance"]=90961, + ["mine_stage"]=51 + }, + [15162]={ + ["distance"]=90967, + ["mine_stage"]=15 + }, + [15163]={ + ["distance"]=90973, + ["mine_stage"]=46 + }, + [15164]={ + ["distance"]=90979, + ["mine_stage"]=3 + }, + [15165]={ + ["distance"]=90985, + ["mine_stage"]=44 + }, + [15166]={ + ["distance"]=90991, + ["mine_stage"]=19 + }, + [15167]={ + ["distance"]=90997, + ["mine_stage"]=47 + }, + [15168]={ + ["distance"]=91003, + ["mine_stage"]=51 + }, + [15169]={ + ["distance"]=91009, + ["mine_stage"]=18 + }, + [15170]={ + ["distance"]=91015, + ["mine_stage"]=43 + }, + [15171]={ + ["distance"]=91021, + ["mine_stage"]=10 + }, + [15172]={ + ["distance"]=91027, + ["mine_stage"]=59 + }, + [15173]={ + ["distance"]=91033, + ["mine_stage"]=12 + }, + [15174]={ + ["distance"]=91039, + ["mine_stage"]=7 + }, + [15175]={ + ["distance"]=91045, + ["mine_stage"]=38 + }, + [15176]={ + ["distance"]=91051, + ["mine_stage"]=18 + }, + [15177]={ + ["distance"]=91057, + ["mine_stage"]=36 + }, + [15178]={ + ["distance"]=91063, + ["mine_stage"]=50 + }, + [15179]={ + ["distance"]=91069, + ["mine_stage"]=48 + }, + [15180]={ + ["distance"]=91075, + ["mine_stage"]=19 + }, + [15181]={ + ["distance"]=91081, + ["mine_stage"]=1 + }, + [15182]={ + ["distance"]=91087, + ["mine_stage"]=59 + }, + [15183]={ + ["distance"]=91093, + ["mine_stage"]=17 + }, + [15184]={ + ["distance"]=91099, + ["mine_stage"]=33 + }, + [15185]={ + ["distance"]=91105, + ["mine_stage"]=1 + }, + [15186]={ + ["distance"]=91111, + ["mine_stage"]=3 + }, + [15187]={ + ["distance"]=91117, + ["mine_stage"]=16 + }, + [15188]={ + ["distance"]=91123, + ["mine_stage"]=43 + }, + [15189]={ + ["distance"]=91129, + ["mine_stage"]=58 + }, + [15190]={ + ["distance"]=91135, + ["mine_stage"]=3 + }, + [15191]={ + ["distance"]=91141, + ["mine_stage"]=29 + }, + [15192]={ + ["distance"]=91147, + ["mine_stage"]=55 + }, + [15193]={ + ["distance"]=91153, + ["mine_stage"]=8 + }, + [15194]={ + ["distance"]=91159, + ["mine_stage"]=4 + }, + [15195]={ + ["distance"]=91165, + ["mine_stage"]=8 + }, + [15196]={ + ["distance"]=91171, + ["mine_stage"]=27 + }, + [15197]={ + ["distance"]=91177, + ["mine_stage"]=43 + }, + [15198]={ + ["distance"]=91183, + ["mine_stage"]=11 + }, + [15199]={ + ["distance"]=91189, + ["mine_stage"]=50 + }, + [15200]={ + ["distance"]=91195, + ["mine_stage"]=44 + }, + [15201]={ + ["distance"]=91201, + ["mine_stage"]=65 + }, + [15202]={ + ["distance"]=91207, + ["mine_stage"]=39 + }, + [15203]={ + ["distance"]=91213, + ["mine_stage"]=7 + }, + [15204]={ + ["distance"]=91219, + ["mine_stage"]=57 + }, + [15205]={ + ["distance"]=91225, + ["mine_stage"]=42 + }, + [15206]={ + ["distance"]=91231, + ["mine_stage"]=11 + }, + [15207]={ + ["distance"]=91237, + ["mine_stage"]=56 + }, + [15208]={ + ["distance"]=91243, + ["mine_stage"]=31 + }, + [15209]={ + ["distance"]=91249, + ["mine_stage"]=53 + }, + [15210]={ + ["distance"]=91255, + ["mine_stage"]=11 + }, + [15211]={ + ["distance"]=91261, + ["mine_stage"]=51 + }, + [15212]={ + ["distance"]=91267, + ["mine_stage"]=11 + }, + [15213]={ + ["distance"]=91273, + ["mine_stage"]=28 + }, + [15214]={ + ["distance"]=91279, + ["mine_stage"]=36 + }, + [15215]={ + ["distance"]=91285, + ["mine_stage"]=51 + }, + [15216]={ + ["distance"]=91291, + ["mine_stage"]=58 + }, + [15217]={ + ["distance"]=91297, + ["mine_stage"]=18 + }, + [15218]={ + ["distance"]=91303, + ["mine_stage"]=17 + }, + [15219]={ + ["distance"]=91309, + ["mine_stage"]=50 + }, + [15220]={ + ["distance"]=91315, + ["mine_stage"]=8 + }, + [15221]={ + ["distance"]=91321, + ["mine_stage"]=55 + }, + [15222]={ + ["distance"]=91327, + ["mine_stage"]=59 + }, + [15223]={ + ["distance"]=91333, + ["mine_stage"]=54 + }, + [15224]={ + ["distance"]=91339, + ["mine_stage"]=13 + }, + [15225]={ + ["distance"]=91345, + ["mine_stage"]=57 + }, + [15226]={ + ["distance"]=91351, + ["mine_stage"]=19 + }, + [15227]={ + ["distance"]=91357, + ["mine_stage"]=50 + }, + [15228]={ + ["distance"]=91363, + ["mine_stage"]=41 + }, + [15229]={ + ["distance"]=91369, + ["mine_stage"]=15 + }, + [15230]={ + ["distance"]=91375, + ["mine_stage"]=51 + }, + [15231]={ + ["distance"]=91381, + ["mine_stage"]=34 + }, + [15232]={ + ["distance"]=91387, + ["mine_stage"]=30 + }, + [15233]={ + ["distance"]=91393, + ["mine_stage"]=49 + }, + [15234]={ + ["distance"]=91399, + ["mine_stage"]=16 + }, + [15235]={ + ["distance"]=91405, + ["mine_stage"]=57 + }, + [15236]={ + ["distance"]=91411, + ["mine_stage"]=57 + }, + [15237]={ + ["distance"]=91417, + ["mine_stage"]=53 + }, + [15238]={ + ["distance"]=91423, + ["mine_stage"]=18 + }, + [15239]={ + ["distance"]=91429, + ["mine_stage"]=44 + }, + [15240]={ + ["distance"]=91435, + ["mine_stage"]=47 + }, + [15241]={ + ["distance"]=91441, + ["mine_stage"]=38 + }, + [15242]={ + ["distance"]=91447, + ["mine_stage"]=1 + }, + [15243]={ + ["distance"]=91453, + ["mine_stage"]=4 + }, + [15244]={ + ["distance"]=91459, + ["mine_stage"]=58 + }, + [15245]={ + ["distance"]=91465, + ["mine_stage"]=34 + }, + [15246]={ + ["distance"]=91471, + ["mine_stage"]=40 + }, + [15247]={ + ["distance"]=91477, + ["mine_stage"]=28 + }, + [15248]={ + ["distance"]=91483, + ["mine_stage"]=30 + }, + [15249]={ + ["distance"]=91489, + ["mine_stage"]=57 + }, + [15250]={ + ["distance"]=91495, + ["mine_stage"]=17 + }, + [15251]={ + ["distance"]=91501, + ["mine_stage"]=68 + }, + [15252]={ + ["distance"]=91507, + ["mine_stage"]=53 + }, + [15253]={ + ["distance"]=91513, + ["mine_stage"]=17 + }, + [15254]={ + ["distance"]=91519, + ["mine_stage"]=31 + }, + [15255]={ + ["distance"]=91525, + ["mine_stage"]=41 + }, + [15256]={ + ["distance"]=91531, + ["mine_stage"]=40 + }, + [15257]={ + ["distance"]=91537, + ["mine_stage"]=6 + }, + [15258]={ + ["distance"]=91543, + ["mine_stage"]=17 + }, + [15259]={ + ["distance"]=91549, + ["mine_stage"]=34 + }, + [15260]={ + ["distance"]=91555, + ["mine_stage"]=24 + }, + [15261]={ + ["distance"]=91561, + ["mine_stage"]=26 + }, + [15262]={ + ["distance"]=91567, + ["mine_stage"]=59 + }, + [15263]={ + ["distance"]=91573, + ["mine_stage"]=6 + }, + [15264]={ + ["distance"]=91579, + ["mine_stage"]=51 + }, + [15265]={ + ["distance"]=91585, + ["mine_stage"]=46 + }, + [15266]={ + ["distance"]=91591, + ["mine_stage"]=35 + }, + [15267]={ + ["distance"]=91597, + ["mine_stage"]=16 + }, + [15268]={ + ["distance"]=91603, + ["mine_stage"]=3 + }, + [15269]={ + ["distance"]=91609, + ["mine_stage"]=42 + }, + [15270]={ + ["distance"]=91615, + ["mine_stage"]=58 + }, + [15271]={ + ["distance"]=91621, + ["mine_stage"]=59 + }, + [15272]={ + ["distance"]=91627, + ["mine_stage"]=26 + }, + [15273]={ + ["distance"]=91633, + ["mine_stage"]=28 + }, + [15274]={ + ["distance"]=91639, + ["mine_stage"]=56 + }, + [15275]={ + ["distance"]=91645, + ["mine_stage"]=42 + }, + [15276]={ + ["distance"]=91651, + ["mine_stage"]=45 + }, + [15277]={ + ["distance"]=91657, + ["mine_stage"]=33 + }, + [15278]={ + ["distance"]=91663, + ["mine_stage"]=56 + }, + [15279]={ + ["distance"]=91669, + ["mine_stage"]=35 + }, + [15280]={ + ["distance"]=91675, + ["mine_stage"]=46 + }, + [15281]={ + ["distance"]=91681, + ["mine_stage"]=9 + }, + [15282]={ + ["distance"]=91687, + ["mine_stage"]=38 + }, + [15283]={ + ["distance"]=91693, + ["mine_stage"]=1 + }, + [15284]={ + ["distance"]=91699, + ["mine_stage"]=50 + }, + [15285]={ + ["distance"]=91705, + ["mine_stage"]=29 + }, + [15286]={ + ["distance"]=91711, + ["mine_stage"]=11 + }, + [15287]={ + ["distance"]=91717, + ["mine_stage"]=27 + }, + [15288]={ + ["distance"]=91723, + ["mine_stage"]=48 + }, + [15289]={ + ["distance"]=91729, + ["mine_stage"]=4 + }, + [15290]={ + ["distance"]=91735, + ["mine_stage"]=43 + }, + [15291]={ + ["distance"]=91741, + ["mine_stage"]=51 + }, + [15292]={ + ["distance"]=91747, + ["mine_stage"]=14 + }, + [15293]={ + ["distance"]=91753, + ["mine_stage"]=44 + }, + [15294]={ + ["distance"]=91759, + ["mine_stage"]=30 + }, + [15295]={ + ["distance"]=91765, + ["mine_stage"]=1 + }, + [15296]={ + ["distance"]=91771, + ["mine_stage"]=40 + }, + [15297]={ + ["distance"]=91777, + ["mine_stage"]=4 + }, + [15298]={ + ["distance"]=91783, + ["mine_stage"]=33 + }, + [15299]={ + ["distance"]=91789, + ["mine_stage"]=40 + }, + [15300]={ + ["distance"]=91795, + ["mine_stage"]=20 + }, + [15301]={ + ["distance"]=91801, + ["mine_stage"]=66 + }, + [15302]={ + ["distance"]=91807, + ["mine_stage"]=38 + }, + [15303]={ + ["distance"]=91813, + ["mine_stage"]=5 + }, + [15304]={ + ["distance"]=91819, + ["mine_stage"]=58 + }, + [15305]={ + ["distance"]=91825, + ["mine_stage"]=10 + }, + [15306]={ + ["distance"]=91831, + ["mine_stage"]=21 + }, + [15307]={ + ["distance"]=91837, + ["mine_stage"]=26 + }, + [15308]={ + ["distance"]=91843, + ["mine_stage"]=27 + }, + [15309]={ + ["distance"]=91849, + ["mine_stage"]=4 + }, + [15310]={ + ["distance"]=91855, + ["mine_stage"]=10 + }, + [15311]={ + ["distance"]=91861, + ["mine_stage"]=30 + }, + [15312]={ + ["distance"]=91867, + ["mine_stage"]=19 + }, + [15313]={ + ["distance"]=91873, + ["mine_stage"]=14 + }, + [15314]={ + ["distance"]=91879, + ["mine_stage"]=30 + }, + [15315]={ + ["distance"]=91885, + ["mine_stage"]=5 + }, + [15316]={ + ["distance"]=91891, + ["mine_stage"]=45 + }, + [15317]={ + ["distance"]=91897, + ["mine_stage"]=18 + }, + [15318]={ + ["distance"]=91903, + ["mine_stage"]=2 + }, + [15319]={ + ["distance"]=91909, + ["mine_stage"]=38 + }, + [15320]={ + ["distance"]=91915, + ["mine_stage"]=15 + }, + [15321]={ + ["distance"]=91921, + ["mine_stage"]=40 + }, + [15322]={ + ["distance"]=91927, + ["mine_stage"]=20 + }, + [15323]={ + ["distance"]=91933, + ["mine_stage"]=9 + }, + [15324]={ + ["distance"]=91939, + ["mine_stage"]=44 + }, + [15325]={ + ["distance"]=91945, + ["mine_stage"]=47 + }, + [15326]={ + ["distance"]=91951, + ["mine_stage"]=16 + }, + [15327]={ + ["distance"]=91957, + ["mine_stage"]=20 + }, + [15328]={ + ["distance"]=91963, + ["mine_stage"]=40 + }, + [15329]={ + ["distance"]=91969, + ["mine_stage"]=14 + }, + [15330]={ + ["distance"]=91975, + ["mine_stage"]=11 + }, + [15331]={ + ["distance"]=91981, + ["mine_stage"]=37 + }, + [15332]={ + ["distance"]=91987, + ["mine_stage"]=17 + }, + [15333]={ + ["distance"]=91993, + ["mine_stage"]=26 + }, + [15334]={ + ["distance"]=91999, + ["mine_stage"]=59 + }, + [15335]={ + ["distance"]=92005, + ["mine_stage"]=54 + }, + [15336]={ + ["distance"]=92011, + ["mine_stage"]=54 + }, + [15337]={ + ["distance"]=92017, + ["mine_stage"]=38 + }, + [15338]={ + ["distance"]=92023, + ["mine_stage"]=1 + }, + [15339]={ + ["distance"]=92029, + ["mine_stage"]=54 + }, + [15340]={ + ["distance"]=92035, + ["mine_stage"]=52 + }, + [15341]={ + ["distance"]=92041, + ["mine_stage"]=24 + }, + [15342]={ + ["distance"]=92047, + ["mine_stage"]=45 + }, + [15343]={ + ["distance"]=92053, + ["mine_stage"]=13 + }, + [15344]={ + ["distance"]=92059, + ["mine_stage"]=34 + }, + [15345]={ + ["distance"]=92065, + ["mine_stage"]=19 + }, + [15346]={ + ["distance"]=92071, + ["mine_stage"]=24 + }, + [15347]={ + ["distance"]=92077, + ["mine_stage"]=33 + }, + [15348]={ + ["distance"]=92083, + ["mine_stage"]=60 + }, + [15349]={ + ["distance"]=92089, + ["mine_stage"]=15 + }, + [15350]={ + ["distance"]=92095, + ["mine_stage"]=12 + }, + [15351]={ + ["distance"]=92101, + ["mine_stage"]=69 + }, + [15352]={ + ["distance"]=92107, + ["mine_stage"]=60 + }, + [15353]={ + ["distance"]=92113, + ["mine_stage"]=35 + }, + [15354]={ + ["distance"]=92119, + ["mine_stage"]=18 + }, + [15355]={ + ["distance"]=92125, + ["mine_stage"]=33 + }, + [15356]={ + ["distance"]=92131, + ["mine_stage"]=30 + }, + [15357]={ + ["distance"]=92137, + ["mine_stage"]=13 + }, + [15358]={ + ["distance"]=92143, + ["mine_stage"]=15 + }, + [15359]={ + ["distance"]=92149, + ["mine_stage"]=57 + }, + [15360]={ + ["distance"]=92155, + ["mine_stage"]=25 + }, + [15361]={ + ["distance"]=92161, + ["mine_stage"]=11 + }, + [15362]={ + ["distance"]=92167, + ["mine_stage"]=16 + }, + [15363]={ + ["distance"]=92173, + ["mine_stage"]=3 + }, + [15364]={ + ["distance"]=92179, + ["mine_stage"]=11 + }, + [15365]={ + ["distance"]=92185, + ["mine_stage"]=38 + }, + [15366]={ + ["distance"]=92191, + ["mine_stage"]=35 + }, + [15367]={ + ["distance"]=92197, + ["mine_stage"]=38 + }, + [15368]={ + ["distance"]=92203, + ["mine_stage"]=50 + }, + [15369]={ + ["distance"]=92209, + ["mine_stage"]=49 + }, + [15370]={ + ["distance"]=92215, + ["mine_stage"]=33 + }, + [15371]={ + ["distance"]=92221, + ["mine_stage"]=42 + }, + [15372]={ + ["distance"]=92227, + ["mine_stage"]=30 + }, + [15373]={ + ["distance"]=92233, + ["mine_stage"]=26 + }, + [15374]={ + ["distance"]=92239, + ["mine_stage"]=55 + }, + [15375]={ + ["distance"]=92245, + ["mine_stage"]=40 + }, + [15376]={ + ["distance"]=92251, + ["mine_stage"]=43 + }, + [15377]={ + ["distance"]=92257, + ["mine_stage"]=45 + }, + [15378]={ + ["distance"]=92263, + ["mine_stage"]=26 + }, + [15379]={ + ["distance"]=92269, + ["mine_stage"]=34 + }, + [15380]={ + ["distance"]=92275, + ["mine_stage"]=40 + }, + [15381]={ + ["distance"]=92281, + ["mine_stage"]=3 + }, + [15382]={ + ["distance"]=92287, + ["mine_stage"]=13 + }, + [15383]={ + ["distance"]=92293, + ["mine_stage"]=41 + }, + [15384]={ + ["distance"]=92299, + ["mine_stage"]=18 + }, + [15385]={ + ["distance"]=92305, + ["mine_stage"]=20 + }, + [15386]={ + ["distance"]=92311, + ["mine_stage"]=39 + }, + [15387]={ + ["distance"]=92317, + ["mine_stage"]=53 + }, + [15388]={ + ["distance"]=92323, + ["mine_stage"]=59 + }, + [15389]={ + ["distance"]=92329, + ["mine_stage"]=5 + }, + [15390]={ + ["distance"]=92335, + ["mine_stage"]=15 + }, + [15391]={ + ["distance"]=92341, + ["mine_stage"]=35 + }, + [15392]={ + ["distance"]=92347, + ["mine_stage"]=20 + }, + [15393]={ + ["distance"]=92353, + ["mine_stage"]=50 + }, + [15394]={ + ["distance"]=92359, + ["mine_stage"]=7 + }, + [15395]={ + ["distance"]=92365, + ["mine_stage"]=59 + }, + [15396]={ + ["distance"]=92371, + ["mine_stage"]=40 + }, + [15397]={ + ["distance"]=92377, + ["mine_stage"]=33 + }, + [15398]={ + ["distance"]=92383, + ["mine_stage"]=1 + }, + [15399]={ + ["distance"]=92389, + ["mine_stage"]=21 + }, + [15400]={ + ["distance"]=92395, + ["mine_stage"]=46 + }, + [15401]={ + ["distance"]=92401, + ["mine_stage"]=64 + }, + [15402]={ + ["distance"]=92407, + ["mine_stage"]=31 + }, + [15403]={ + ["distance"]=92413, + ["mine_stage"]=20 + }, + [15404]={ + ["distance"]=92419, + ["mine_stage"]=38 + }, + [15405]={ + ["distance"]=92425, + ["mine_stage"]=24 + }, + [15406]={ + ["distance"]=92431, + ["mine_stage"]=32 + }, + [15407]={ + ["distance"]=92437, + ["mine_stage"]=22 + }, + [15408]={ + ["distance"]=92443, + ["mine_stage"]=38 + }, + [15409]={ + ["distance"]=92449, + ["mine_stage"]=49 + }, + [15410]={ + ["distance"]=92455, + ["mine_stage"]=53 + }, + [15411]={ + ["distance"]=92461, + ["mine_stage"]=58 + }, + [15412]={ + ["distance"]=92467, + ["mine_stage"]=28 + }, + [15413]={ + ["distance"]=92473, + ["mine_stage"]=49 + }, + [15414]={ + ["distance"]=92479, + ["mine_stage"]=26 + }, + [15415]={ + ["distance"]=92485, + ["mine_stage"]=57 + }, + [15416]={ + ["distance"]=92491, + ["mine_stage"]=42 + }, + [15417]={ + ["distance"]=92497, + ["mine_stage"]=59 + }, + [15418]={ + ["distance"]=92503, + ["mine_stage"]=9 + }, + [15419]={ + ["distance"]=92509, + ["mine_stage"]=18 + }, + [15420]={ + ["distance"]=92515, + ["mine_stage"]=17 + }, + [15421]={ + ["distance"]=92521, + ["mine_stage"]=53 + }, + [15422]={ + ["distance"]=92527, + ["mine_stage"]=32 + }, + [15423]={ + ["distance"]=92533, + ["mine_stage"]=47 + }, + [15424]={ + ["distance"]=92539, + ["mine_stage"]=23 + }, + [15425]={ + ["distance"]=92545, + ["mine_stage"]=11 + }, + [15426]={ + ["distance"]=92551, + ["mine_stage"]=40 + }, + [15427]={ + ["distance"]=92557, + ["mine_stage"]=19 + }, + [15428]={ + ["distance"]=92563, + ["mine_stage"]=17 + }, + [15429]={ + ["distance"]=92569, + ["mine_stage"]=26 + }, + [15430]={ + ["distance"]=92575, + ["mine_stage"]=45 + }, + [15431]={ + ["distance"]=92581, + ["mine_stage"]=8 + }, + [15432]={ + ["distance"]=92587, + ["mine_stage"]=55 + }, + [15433]={ + ["distance"]=92593, + ["mine_stage"]=5 + }, + [15434]={ + ["distance"]=92599, + ["mine_stage"]=49 + }, + [15435]={ + ["distance"]=92605, + ["mine_stage"]=26 + }, + [15436]={ + ["distance"]=92611, + ["mine_stage"]=44 + }, + [15437]={ + ["distance"]=92617, + ["mine_stage"]=29 + }, + [15438]={ + ["distance"]=92623, + ["mine_stage"]=32 + }, + [15439]={ + ["distance"]=92629, + ["mine_stage"]=15 + }, + [15440]={ + ["distance"]=92635, + ["mine_stage"]=39 + }, + [15441]={ + ["distance"]=92641, + ["mine_stage"]=26 + }, + [15442]={ + ["distance"]=92647, + ["mine_stage"]=48 + }, + [15443]={ + ["distance"]=92653, + ["mine_stage"]=32 + }, + [15444]={ + ["distance"]=92659, + ["mine_stage"]=47 + }, + [15445]={ + ["distance"]=92665, + ["mine_stage"]=52 + }, + [15446]={ + ["distance"]=92671, + ["mine_stage"]=15 + }, + [15447]={ + ["distance"]=92677, + ["mine_stage"]=34 + }, + [15448]={ + ["distance"]=92683, + ["mine_stage"]=53 + }, + [15449]={ + ["distance"]=92689, + ["mine_stage"]=49 + }, + [15450]={ + ["distance"]=92695, + ["mine_stage"]=16 + }, + [15451]={ + ["distance"]=92701, + ["mine_stage"]=67 + }, + [15452]={ + ["distance"]=92707, + ["mine_stage"]=60 + }, + [15453]={ + ["distance"]=92713, + ["mine_stage"]=10 + }, + [15454]={ + ["distance"]=92719, + ["mine_stage"]=31 + }, + [15455]={ + ["distance"]=92725, + ["mine_stage"]=2 + }, + [15456]={ + ["distance"]=92731, + ["mine_stage"]=3 + }, + [15457]={ + ["distance"]=92737, + ["mine_stage"]=54 + }, + [15458]={ + ["distance"]=92743, + ["mine_stage"]=24 + }, + [15459]={ + ["distance"]=92749, + ["mine_stage"]=1 + }, + [15460]={ + ["distance"]=92755, + ["mine_stage"]=46 + }, + [15461]={ + ["distance"]=92761, + ["mine_stage"]=39 + }, + [15462]={ + ["distance"]=92767, + ["mine_stage"]=49 + }, + [15463]={ + ["distance"]=92773, + ["mine_stage"]=30 + }, + [15464]={ + ["distance"]=92779, + ["mine_stage"]=31 + }, + [15465]={ + ["distance"]=92785, + ["mine_stage"]=14 + }, + [15466]={ + ["distance"]=92791, + ["mine_stage"]=5 + }, + [15467]={ + ["distance"]=92797, + ["mine_stage"]=34 + }, + [15468]={ + ["distance"]=92803, + ["mine_stage"]=24 + }, + [15469]={ + ["distance"]=92809, + ["mine_stage"]=54 + }, + [15470]={ + ["distance"]=92815, + ["mine_stage"]=9 + }, + [15471]={ + ["distance"]=92821, + ["mine_stage"]=6 + }, + [15472]={ + ["distance"]=92827, + ["mine_stage"]=15 + }, + [15473]={ + ["distance"]=92833, + ["mine_stage"]=46 + }, + [15474]={ + ["distance"]=92839, + ["mine_stage"]=3 + }, + [15475]={ + ["distance"]=92845, + ["mine_stage"]=38 + }, + [15476]={ + ["distance"]=92851, + ["mine_stage"]=18 + }, + [15477]={ + ["distance"]=92857, + ["mine_stage"]=36 + }, + [15478]={ + ["distance"]=92863, + ["mine_stage"]=17 + }, + [15479]={ + ["distance"]=92869, + ["mine_stage"]=24 + }, + [15480]={ + ["distance"]=92875, + ["mine_stage"]=18 + }, + [15481]={ + ["distance"]=92881, + ["mine_stage"]=59 + }, + [15482]={ + ["distance"]=92887, + ["mine_stage"]=17 + }, + [15483]={ + ["distance"]=92893, + ["mine_stage"]=60 + }, + [15484]={ + ["distance"]=92899, + ["mine_stage"]=38 + }, + [15485]={ + ["distance"]=92905, + ["mine_stage"]=37 + }, + [15486]={ + ["distance"]=92911, + ["mine_stage"]=54 + }, + [15487]={ + ["distance"]=92917, + ["mine_stage"]=57 + }, + [15488]={ + ["distance"]=92923, + ["mine_stage"]=45 + }, + [15489]={ + ["distance"]=92929, + ["mine_stage"]=7 + }, + [15490]={ + ["distance"]=92935, + ["mine_stage"]=17 + }, + [15491]={ + ["distance"]=92941, + ["mine_stage"]=8 + }, + [15492]={ + ["distance"]=92947, + ["mine_stage"]=35 + }, + [15493]={ + ["distance"]=92953, + ["mine_stage"]=19 + }, + [15494]={ + ["distance"]=92959, + ["mine_stage"]=57 + }, + [15495]={ + ["distance"]=92965, + ["mine_stage"]=34 + }, + [15496]={ + ["distance"]=92971, + ["mine_stage"]=30 + }, + [15497]={ + ["distance"]=92977, + ["mine_stage"]=30 + }, + [15498]={ + ["distance"]=92983, + ["mine_stage"]=12 + }, + [15499]={ + ["distance"]=92989, + ["mine_stage"]=49 + }, + [15500]={ + ["distance"]=92995, + ["mine_stage"]=47 + }, + [15501]={ + ["distance"]=93001, + ["mine_stage"]=65 + }, + [15502]={ + ["distance"]=93007, + ["mine_stage"]=4 + }, + [15503]={ + ["distance"]=93013, + ["mine_stage"]=39 + }, + [15504]={ + ["distance"]=93019, + ["mine_stage"]=46 + }, + [15505]={ + ["distance"]=93025, + ["mine_stage"]=35 + }, + [15506]={ + ["distance"]=93031, + ["mine_stage"]=59 + }, + [15507]={ + ["distance"]=93037, + ["mine_stage"]=35 + }, + [15508]={ + ["distance"]=93043, + ["mine_stage"]=16 + }, + [15509]={ + ["distance"]=93049, + ["mine_stage"]=13 + }, + [15510]={ + ["distance"]=93055, + ["mine_stage"]=34 + }, + [15511]={ + ["distance"]=93061, + ["mine_stage"]=25 + }, + [15512]={ + ["distance"]=93067, + ["mine_stage"]=56 + }, + [15513]={ + ["distance"]=93073, + ["mine_stage"]=2 + }, + [15514]={ + ["distance"]=93079, + ["mine_stage"]=52 + }, + [15515]={ + ["distance"]=93085, + ["mine_stage"]=56 + }, + [15516]={ + ["distance"]=93091, + ["mine_stage"]=31 + }, + [15517]={ + ["distance"]=93097, + ["mine_stage"]=20 + }, + [15518]={ + ["distance"]=93103, + ["mine_stage"]=21 + }, + [15519]={ + ["distance"]=93109, + ["mine_stage"]=32 + }, + [15520]={ + ["distance"]=93115, + ["mine_stage"]=21 + }, + [15521]={ + ["distance"]=93121, + ["mine_stage"]=16 + }, + [15522]={ + ["distance"]=93127, + ["mine_stage"]=41 + }, + [15523]={ + ["distance"]=93133, + ["mine_stage"]=24 + }, + [15524]={ + ["distance"]=93139, + ["mine_stage"]=57 + }, + [15525]={ + ["distance"]=93145, + ["mine_stage"]=28 + }, + [15526]={ + ["distance"]=93151, + ["mine_stage"]=26 + }, + [15527]={ + ["distance"]=93157, + ["mine_stage"]=37 + }, + [15528]={ + ["distance"]=93163, + ["mine_stage"]=17 + }, + [15529]={ + ["distance"]=93169, + ["mine_stage"]=40 + }, + [15530]={ + ["distance"]=93175, + ["mine_stage"]=28 + }, + [15531]={ + ["distance"]=93181, + ["mine_stage"]=32 + }, + [15532]={ + ["distance"]=93187, + ["mine_stage"]=53 + }, + [15533]={ + ["distance"]=93193, + ["mine_stage"]=48 + }, + [15534]={ + ["distance"]=93199, + ["mine_stage"]=14 + }, + [15535]={ + ["distance"]=93205, + ["mine_stage"]=17 + }, + [15536]={ + ["distance"]=93211, + ["mine_stage"]=2 + }, + [15537]={ + ["distance"]=93217, + ["mine_stage"]=43 + }, + [15538]={ + ["distance"]=93223, + ["mine_stage"]=27 + }, + [15539]={ + ["distance"]=93229, + ["mine_stage"]=12 + }, + [15540]={ + ["distance"]=93235, + ["mine_stage"]=8 + }, + [15541]={ + ["distance"]=93241, + ["mine_stage"]=41 + }, + [15542]={ + ["distance"]=93247, + ["mine_stage"]=51 + }, + [15543]={ + ["distance"]=93253, + ["mine_stage"]=28 + }, + [15544]={ + ["distance"]=93259, + ["mine_stage"]=59 + }, + [15545]={ + ["distance"]=93265, + ["mine_stage"]=49 + }, + [15546]={ + ["distance"]=93271, + ["mine_stage"]=1 + }, + [15547]={ + ["distance"]=93277, + ["mine_stage"]=13 + }, + [15548]={ + ["distance"]=93283, + ["mine_stage"]=55 + }, + [15549]={ + ["distance"]=93289, + ["mine_stage"]=39 + }, + [15550]={ + ["distance"]=93295, + ["mine_stage"]=19 + }, + [15551]={ + ["distance"]=93301, + ["mine_stage"]=68 + }, + [15552]={ + ["distance"]=93307, + ["mine_stage"]=38 + }, + [15553]={ + ["distance"]=93313, + ["mine_stage"]=34 + }, + [15554]={ + ["distance"]=93319, + ["mine_stage"]=50 + }, + [15555]={ + ["distance"]=93325, + ["mine_stage"]=40 + }, + [15556]={ + ["distance"]=93331, + ["mine_stage"]=46 + }, + [15557]={ + ["distance"]=93337, + ["mine_stage"]=51 + }, + [15558]={ + ["distance"]=93343, + ["mine_stage"]=42 + }, + [15559]={ + ["distance"]=93349, + ["mine_stage"]=11 + }, + [15560]={ + ["distance"]=93355, + ["mine_stage"]=54 + }, + [15561]={ + ["distance"]=93361, + ["mine_stage"]=46 + }, + [15562]={ + ["distance"]=93367, + ["mine_stage"]=40 + }, + [15563]={ + ["distance"]=93373, + ["mine_stage"]=43 + }, + [15564]={ + ["distance"]=93379, + ["mine_stage"]=13 + }, + [15565]={ + ["distance"]=93385, + ["mine_stage"]=55 + }, + [15566]={ + ["distance"]=93391, + ["mine_stage"]=33 + }, + [15567]={ + ["distance"]=93397, + ["mine_stage"]=1 + }, + [15568]={ + ["distance"]=93403, + ["mine_stage"]=12 + }, + [15569]={ + ["distance"]=93409, + ["mine_stage"]=13 + }, + [15570]={ + ["distance"]=93415, + ["mine_stage"]=44 + }, + [15571]={ + ["distance"]=93421, + ["mine_stage"]=40 + }, + [15572]={ + ["distance"]=93427, + ["mine_stage"]=43 + }, + [15573]={ + ["distance"]=93433, + ["mine_stage"]=19 + }, + [15574]={ + ["distance"]=93439, + ["mine_stage"]=25 + }, + [15575]={ + ["distance"]=93445, + ["mine_stage"]=12 + }, + [15576]={ + ["distance"]=93451, + ["mine_stage"]=59 + }, + [15577]={ + ["distance"]=93457, + ["mine_stage"]=26 + }, + [15578]={ + ["distance"]=93463, + ["mine_stage"]=18 + }, + [15579]={ + ["distance"]=93469, + ["mine_stage"]=45 + }, + [15580]={ + ["distance"]=93475, + ["mine_stage"]=37 + }, + [15581]={ + ["distance"]=93481, + ["mine_stage"]=22 + }, + [15582]={ + ["distance"]=93487, + ["mine_stage"]=14 + }, + [15583]={ + ["distance"]=93493, + ["mine_stage"]=46 + }, + [15584]={ + ["distance"]=93499, + ["mine_stage"]=44 + }, + [15585]={ + ["distance"]=93505, + ["mine_stage"]=24 + }, + [15586]={ + ["distance"]=93511, + ["mine_stage"]=6 + }, + [15587]={ + ["distance"]=93517, + ["mine_stage"]=17 + }, + [15588]={ + ["distance"]=93523, + ["mine_stage"]=43 + }, + [15589]={ + ["distance"]=93529, + ["mine_stage"]=54 + }, + [15590]={ + ["distance"]=93535, + ["mine_stage"]=41 + }, + [15591]={ + ["distance"]=93541, + ["mine_stage"]=25 + }, + [15592]={ + ["distance"]=93547, + ["mine_stage"]=14 + }, + [15593]={ + ["distance"]=93553, + ["mine_stage"]=12 + }, + [15594]={ + ["distance"]=93559, + ["mine_stage"]=1 + }, + [15595]={ + ["distance"]=93565, + ["mine_stage"]=30 + }, + [15596]={ + ["distance"]=93571, + ["mine_stage"]=19 + }, + [15597]={ + ["distance"]=93577, + ["mine_stage"]=20 + }, + [15598]={ + ["distance"]=93583, + ["mine_stage"]=13 + }, + [15599]={ + ["distance"]=93589, + ["mine_stage"]=3 + }, + [15600]={ + ["distance"]=93595, + ["mine_stage"]=1 + }, + [15601]={ + ["distance"]=93601, + ["mine_stage"]=66 + }, + [15602]={ + ["distance"]=93607, + ["mine_stage"]=16 + }, + [15603]={ + ["distance"]=93613, + ["mine_stage"]=32 + }, + [15604]={ + ["distance"]=93619, + ["mine_stage"]=40 + }, + [15605]={ + ["distance"]=93625, + ["mine_stage"]=9 + }, + [15606]={ + ["distance"]=93631, + ["mine_stage"]=57 + }, + [15607]={ + ["distance"]=93637, + ["mine_stage"]=1 + }, + [15608]={ + ["distance"]=93643, + ["mine_stage"]=32 + }, + [15609]={ + ["distance"]=93649, + ["mine_stage"]=10 + }, + [15610]={ + ["distance"]=93655, + ["mine_stage"]=39 + }, + [15611]={ + ["distance"]=93661, + ["mine_stage"]=46 + }, + [15612]={ + ["distance"]=93667, + ["mine_stage"]=14 + }, + [15613]={ + ["distance"]=93673, + ["mine_stage"]=42 + }, + [15614]={ + ["distance"]=93679, + ["mine_stage"]=3 + }, + [15615]={ + ["distance"]=93685, + ["mine_stage"]=57 + }, + [15616]={ + ["distance"]=93691, + ["mine_stage"]=49 + }, + [15617]={ + ["distance"]=93697, + ["mine_stage"]=19 + }, + [15618]={ + ["distance"]=93703, + ["mine_stage"]=10 + }, + [15619]={ + ["distance"]=93709, + ["mine_stage"]=4 + }, + [15620]={ + ["distance"]=93715, + ["mine_stage"]=46 + }, + [15621]={ + ["distance"]=93721, + ["mine_stage"]=59 + }, + [15622]={ + ["distance"]=93727, + ["mine_stage"]=27 + }, + [15623]={ + ["distance"]=93733, + ["mine_stage"]=37 + }, + [15624]={ + ["distance"]=93739, + ["mine_stage"]=56 + }, + [15625]={ + ["distance"]=93745, + ["mine_stage"]=18 + }, + [15626]={ + ["distance"]=93751, + ["mine_stage"]=36 + }, + [15627]={ + ["distance"]=93757, + ["mine_stage"]=35 + }, + [15628]={ + ["distance"]=93763, + ["mine_stage"]=31 + }, + [15629]={ + ["distance"]=93769, + ["mine_stage"]=56 + }, + [15630]={ + ["distance"]=93775, + ["mine_stage"]=51 + }, + [15631]={ + ["distance"]=93781, + ["mine_stage"]=16 + }, + [15632]={ + ["distance"]=93787, + ["mine_stage"]=50 + }, + [15633]={ + ["distance"]=93793, + ["mine_stage"]=1 + }, + [15634]={ + ["distance"]=93799, + ["mine_stage"]=15 + }, + [15635]={ + ["distance"]=93805, + ["mine_stage"]=24 + }, + [15636]={ + ["distance"]=93811, + ["mine_stage"]=56 + }, + [15637]={ + ["distance"]=93817, + ["mine_stage"]=21 + }, + [15638]={ + ["distance"]=93823, + ["mine_stage"]=50 + }, + [15639]={ + ["distance"]=93829, + ["mine_stage"]=9 + }, + [15640]={ + ["distance"]=93835, + ["mine_stage"]=42 + }, + [15641]={ + ["distance"]=93841, + ["mine_stage"]=47 + }, + [15642]={ + ["distance"]=93847, + ["mine_stage"]=3 + }, + [15643]={ + ["distance"]=93853, + ["mine_stage"]=11 + }, + [15644]={ + ["distance"]=93859, + ["mine_stage"]=4 + }, + [15645]={ + ["distance"]=93865, + ["mine_stage"]=35 + }, + [15646]={ + ["distance"]=93871, + ["mine_stage"]=55 + }, + [15647]={ + ["distance"]=93877, + ["mine_stage"]=6 + }, + [15648]={ + ["distance"]=93883, + ["mine_stage"]=41 + }, + [15649]={ + ["distance"]=93889, + ["mine_stage"]=51 + }, + [15650]={ + ["distance"]=93895, + ["mine_stage"]=35 + }, + [15651]={ + ["distance"]=93901, + ["mine_stage"]=69 + }, + [15652]={ + ["distance"]=93907, + ["mine_stage"]=11 + }, + [15653]={ + ["distance"]=93913, + ["mine_stage"]=38 + }, + [15654]={ + ["distance"]=93919, + ["mine_stage"]=4 + }, + [15655]={ + ["distance"]=93925, + ["mine_stage"]=12 + }, + [15656]={ + ["distance"]=93931, + ["mine_stage"]=17 + }, + [15657]={ + ["distance"]=93937, + ["mine_stage"]=15 + }, + [15658]={ + ["distance"]=93943, + ["mine_stage"]=10 + }, + [15659]={ + ["distance"]=93949, + ["mine_stage"]=41 + }, + [15660]={ + ["distance"]=93955, + ["mine_stage"]=27 + }, + [15661]={ + ["distance"]=93961, + ["mine_stage"]=46 + }, + [15662]={ + ["distance"]=93967, + ["mine_stage"]=23 + }, + [15663]={ + ["distance"]=93973, + ["mine_stage"]=50 + }, + [15664]={ + ["distance"]=93979, + ["mine_stage"]=18 + }, + [15665]={ + ["distance"]=93985, + ["mine_stage"]=48 + }, + [15666]={ + ["distance"]=93991, + ["mine_stage"]=27 + }, + [15667]={ + ["distance"]=93997, + ["mine_stage"]=2 + }, + [15668]={ + ["distance"]=94003, + ["mine_stage"]=37 + }, + [15669]={ + ["distance"]=94009, + ["mine_stage"]=14 + }, + [15670]={ + ["distance"]=94015, + ["mine_stage"]=27 + }, + [15671]={ + ["distance"]=94021, + ["mine_stage"]=9 + }, + [15672]={ + ["distance"]=94027, + ["mine_stage"]=37 + }, + [15673]={ + ["distance"]=94033, + ["mine_stage"]=3 + }, + [15674]={ + ["distance"]=94039, + ["mine_stage"]=55 + }, + [15675]={ + ["distance"]=94045, + ["mine_stage"]=38 + }, + [15676]={ + ["distance"]=94051, + ["mine_stage"]=35 + }, + [15677]={ + ["distance"]=94057, + ["mine_stage"]=8 + }, + [15678]={ + ["distance"]=94063, + ["mine_stage"]=3 + }, + [15679]={ + ["distance"]=94069, + ["mine_stage"]=23 + }, + [15680]={ + ["distance"]=94075, + ["mine_stage"]=6 + }, + [15681]={ + ["distance"]=94081, + ["mine_stage"]=3 + }, + [15682]={ + ["distance"]=94087, + ["mine_stage"]=14 + }, + [15683]={ + ["distance"]=94093, + ["mine_stage"]=14 + }, + [15684]={ + ["distance"]=94099, + ["mine_stage"]=32 + }, + [15685]={ + ["distance"]=94105, + ["mine_stage"]=7 + }, + [15686]={ + ["distance"]=94111, + ["mine_stage"]=41 + }, + [15687]={ + ["distance"]=94117, + ["mine_stage"]=37 + }, + [15688]={ + ["distance"]=94123, + ["mine_stage"]=51 + }, + [15689]={ + ["distance"]=94129, + ["mine_stage"]=35 + }, + [15690]={ + ["distance"]=94135, + ["mine_stage"]=4 + }, + [15691]={ + ["distance"]=94141, + ["mine_stage"]=2 + }, + [15692]={ + ["distance"]=94147, + ["mine_stage"]=1 + }, + [15693]={ + ["distance"]=94153, + ["mine_stage"]=8 + }, + [15694]={ + ["distance"]=94159, + ["mine_stage"]=20 + }, + [15695]={ + ["distance"]=94165, + ["mine_stage"]=31 + }, + [15696]={ + ["distance"]=94171, + ["mine_stage"]=9 + }, + [15697]={ + ["distance"]=94177, + ["mine_stage"]=18 + }, + [15698]={ + ["distance"]=94183, + ["mine_stage"]=3 + }, + [15699]={ + ["distance"]=94189, + ["mine_stage"]=49 + }, + [15700]={ + ["distance"]=94195, + ["mine_stage"]=42 + }, + [15701]={ + ["distance"]=94201, + ["mine_stage"]=64 + }, + [15702]={ + ["distance"]=94207, + ["mine_stage"]=43 + }, + [15703]={ + ["distance"]=94213, + ["mine_stage"]=5 + }, + [15704]={ + ["distance"]=94219, + ["mine_stage"]=54 + }, + [15705]={ + ["distance"]=94225, + ["mine_stage"]=4 + }, + [15706]={ + ["distance"]=94231, + ["mine_stage"]=28 + }, + [15707]={ + ["distance"]=94237, + ["mine_stage"]=13 + }, + [15708]={ + ["distance"]=94243, + ["mine_stage"]=42 + }, + [15709]={ + ["distance"]=94249, + ["mine_stage"]=39 + }, + [15710]={ + ["distance"]=94255, + ["mine_stage"]=25 + }, + [15711]={ + ["distance"]=94261, + ["mine_stage"]=14 + }, + [15712]={ + ["distance"]=94267, + ["mine_stage"]=43 + }, + [15713]={ + ["distance"]=94273, + ["mine_stage"]=16 + }, + [15714]={ + ["distance"]=94279, + ["mine_stage"]=50 + }, + [15715]={ + ["distance"]=94285, + ["mine_stage"]=9 + }, + [15716]={ + ["distance"]=94291, + ["mine_stage"]=6 + }, + [15717]={ + ["distance"]=94297, + ["mine_stage"]=44 + }, + [15718]={ + ["distance"]=94303, + ["mine_stage"]=44 + }, + [15719]={ + ["distance"]=94309, + ["mine_stage"]=13 + }, + [15720]={ + ["distance"]=94315, + ["mine_stage"]=13 + }, + [15721]={ + ["distance"]=94321, + ["mine_stage"]=45 + }, + [15722]={ + ["distance"]=94327, + ["mine_stage"]=27 + }, + [15723]={ + ["distance"]=94333, + ["mine_stage"]=35 + }, + [15724]={ + ["distance"]=94339, + ["mine_stage"]=12 + }, + [15725]={ + ["distance"]=94345, + ["mine_stage"]=36 + }, + [15726]={ + ["distance"]=94351, + ["mine_stage"]=49 + }, + [15727]={ + ["distance"]=94357, + ["mine_stage"]=18 + }, + [15728]={ + ["distance"]=94363, + ["mine_stage"]=53 + }, + [15729]={ + ["distance"]=94369, + ["mine_stage"]=25 + }, + [15730]={ + ["distance"]=94375, + ["mine_stage"]=13 + }, + [15731]={ + ["distance"]=94381, + ["mine_stage"]=13 + }, + [15732]={ + ["distance"]=94387, + ["mine_stage"]=20 + }, + [15733]={ + ["distance"]=94393, + ["mine_stage"]=52 + }, + [15734]={ + ["distance"]=94399, + ["mine_stage"]=2 + }, + [15735]={ + ["distance"]=94405, + ["mine_stage"]=19 + }, + [15736]={ + ["distance"]=94411, + ["mine_stage"]=9 + }, + [15737]={ + ["distance"]=94417, + ["mine_stage"]=29 + }, + [15738]={ + ["distance"]=94423, + ["mine_stage"]=13 + }, + [15739]={ + ["distance"]=94429, + ["mine_stage"]=9 + }, + [15740]={ + ["distance"]=94435, + ["mine_stage"]=60 + }, + [15741]={ + ["distance"]=94441, + ["mine_stage"]=29 + }, + [15742]={ + ["distance"]=94447, + ["mine_stage"]=16 + }, + [15743]={ + ["distance"]=94453, + ["mine_stage"]=47 + }, + [15744]={ + ["distance"]=94459, + ["mine_stage"]=18 + }, + [15745]={ + ["distance"]=94465, + ["mine_stage"]=58 + }, + [15746]={ + ["distance"]=94471, + ["mine_stage"]=52 + }, + [15747]={ + ["distance"]=94477, + ["mine_stage"]=15 + }, + [15748]={ + ["distance"]=94483, + ["mine_stage"]=28 + }, + [15749]={ + ["distance"]=94489, + ["mine_stage"]=58 + }, + [15750]={ + ["distance"]=94495, + ["mine_stage"]=13 + }, + [15751]={ + ["distance"]=94501, + ["mine_stage"]=67 + }, + [15752]={ + ["distance"]=94507, + ["mine_stage"]=31 + }, + [15753]={ + ["distance"]=94513, + ["mine_stage"]=41 + }, + [15754]={ + ["distance"]=94519, + ["mine_stage"]=15 + }, + [15755]={ + ["distance"]=94525, + ["mine_stage"]=44 + }, + [15756]={ + ["distance"]=94531, + ["mine_stage"]=23 + }, + [15757]={ + ["distance"]=94537, + ["mine_stage"]=17 + }, + [15758]={ + ["distance"]=94543, + ["mine_stage"]=29 + }, + [15759]={ + ["distance"]=94549, + ["mine_stage"]=3 + }, + [15760]={ + ["distance"]=94555, + ["mine_stage"]=60 + }, + [15761]={ + ["distance"]=94561, + ["mine_stage"]=29 + }, + [15762]={ + ["distance"]=94567, + ["mine_stage"]=55 + }, + [15763]={ + ["distance"]=94573, + ["mine_stage"]=43 + }, + [15764]={ + ["distance"]=94579, + ["mine_stage"]=14 + }, + [15765]={ + ["distance"]=94585, + ["mine_stage"]=43 + }, + [15766]={ + ["distance"]=94591, + ["mine_stage"]=25 + }, + [15767]={ + ["distance"]=94597, + ["mine_stage"]=58 + }, + [15768]={ + ["distance"]=94603, + ["mine_stage"]=40 + }, + [15769]={ + ["distance"]=94609, + ["mine_stage"]=19 + }, + [15770]={ + ["distance"]=94615, + ["mine_stage"]=19 + }, + [15771]={ + ["distance"]=94621, + ["mine_stage"]=53 + }, + [15772]={ + ["distance"]=94627, + ["mine_stage"]=13 + }, + [15773]={ + ["distance"]=94633, + ["mine_stage"]=44 + }, + [15774]={ + ["distance"]=94639, + ["mine_stage"]=46 + }, + [15775]={ + ["distance"]=94645, + ["mine_stage"]=35 + }, + [15776]={ + ["distance"]=94651, + ["mine_stage"]=52 + }, + [15777]={ + ["distance"]=94657, + ["mine_stage"]=28 + }, + [15778]={ + ["distance"]=94663, + ["mine_stage"]=27 + }, + [15779]={ + ["distance"]=94669, + ["mine_stage"]=27 + }, + [15780]={ + ["distance"]=94675, + ["mine_stage"]=48 + }, + [15781]={ + ["distance"]=94681, + ["mine_stage"]=3 + }, + [15782]={ + ["distance"]=94687, + ["mine_stage"]=26 + }, + [15783]={ + ["distance"]=94693, + ["mine_stage"]=12 + }, + [15784]={ + ["distance"]=94699, + ["mine_stage"]=48 + }, + [15785]={ + ["distance"]=94705, + ["mine_stage"]=37 + }, + [15786]={ + ["distance"]=94711, + ["mine_stage"]=38 + }, + [15787]={ + ["distance"]=94717, + ["mine_stage"]=31 + }, + [15788]={ + ["distance"]=94723, + ["mine_stage"]=2 + }, + [15789]={ + ["distance"]=94729, + ["mine_stage"]=40 + }, + [15790]={ + ["distance"]=94735, + ["mine_stage"]=33 + }, + [15791]={ + ["distance"]=94741, + ["mine_stage"]=18 + }, + [15792]={ + ["distance"]=94747, + ["mine_stage"]=45 + }, + [15793]={ + ["distance"]=94753, + ["mine_stage"]=41 + }, + [15794]={ + ["distance"]=94759, + ["mine_stage"]=28 + }, + [15795]={ + ["distance"]=94765, + ["mine_stage"]=60 + }, + [15796]={ + ["distance"]=94771, + ["mine_stage"]=25 + }, + [15797]={ + ["distance"]=94777, + ["mine_stage"]=19 + }, + [15798]={ + ["distance"]=94783, + ["mine_stage"]=35 + }, + [15799]={ + ["distance"]=94789, + ["mine_stage"]=29 + }, + [15800]={ + ["distance"]=94795, + ["mine_stage"]=29 + }, + [15801]={ + ["distance"]=94801, + ["mine_stage"]=65 + }, + [15802]={ + ["distance"]=94807, + ["mine_stage"]=55 + }, + [15803]={ + ["distance"]=94813, + ["mine_stage"]=58 + }, + [15804]={ + ["distance"]=94819, + ["mine_stage"]=28 + }, + [15805]={ + ["distance"]=94825, + ["mine_stage"]=46 + }, + [15806]={ + ["distance"]=94831, + ["mine_stage"]=58 + }, + [15807]={ + ["distance"]=94837, + ["mine_stage"]=37 + }, + [15808]={ + ["distance"]=94843, + ["mine_stage"]=14 + }, + [15809]={ + ["distance"]=94849, + ["mine_stage"]=24 + }, + [15810]={ + ["distance"]=94855, + ["mine_stage"]=49 + }, + [15811]={ + ["distance"]=94861, + ["mine_stage"]=42 + }, + [15812]={ + ["distance"]=94867, + ["mine_stage"]=37 + }, + [15813]={ + ["distance"]=94873, + ["mine_stage"]=60 + }, + [15814]={ + ["distance"]=94879, + ["mine_stage"]=57 + }, + [15815]={ + ["distance"]=94885, + ["mine_stage"]=4 + }, + [15816]={ + ["distance"]=94891, + ["mine_stage"]=36 + }, + [15817]={ + ["distance"]=94897, + ["mine_stage"]=31 + }, + [15818]={ + ["distance"]=94903, + ["mine_stage"]=44 + }, + [15819]={ + ["distance"]=94909, + ["mine_stage"]=14 + }, + [15820]={ + ["distance"]=94915, + ["mine_stage"]=47 + }, + [15821]={ + ["distance"]=94921, + ["mine_stage"]=44 + }, + [15822]={ + ["distance"]=94927, + ["mine_stage"]=13 + }, + [15823]={ + ["distance"]=94933, + ["mine_stage"]=30 + }, + [15824]={ + ["distance"]=94939, + ["mine_stage"]=10 + }, + [15825]={ + ["distance"]=94945, + ["mine_stage"]=28 + }, + [15826]={ + ["distance"]=94951, + ["mine_stage"]=41 + }, + [15827]={ + ["distance"]=94957, + ["mine_stage"]=27 + }, + [15828]={ + ["distance"]=94963, + ["mine_stage"]=35 + }, + [15829]={ + ["distance"]=94969, + ["mine_stage"]=56 + }, + [15830]={ + ["distance"]=94975, + ["mine_stage"]=54 + }, + [15831]={ + ["distance"]=94981, + ["mine_stage"]=55 + }, + [15832]={ + ["distance"]=94987, + ["mine_stage"]=46 + }, + [15833]={ + ["distance"]=94993, + ["mine_stage"]=46 + }, + [15834]={ + ["distance"]=94999, + ["mine_stage"]=5 + }, + [15835]={ + ["distance"]=95005, + ["mine_stage"]=11 + }, + [15836]={ + ["distance"]=95011, + ["mine_stage"]=33 + }, + [15837]={ + ["distance"]=95017, + ["mine_stage"]=12 + }, + [15838]={ + ["distance"]=95023, + ["mine_stage"]=20 + }, + [15839]={ + ["distance"]=95029, + ["mine_stage"]=17 + }, + [15840]={ + ["distance"]=95035, + ["mine_stage"]=43 + }, + [15841]={ + ["distance"]=95041, + ["mine_stage"]=19 + }, + [15842]={ + ["distance"]=95047, + ["mine_stage"]=26 + }, + [15843]={ + ["distance"]=95053, + ["mine_stage"]=17 + }, + [15844]={ + ["distance"]=95059, + ["mine_stage"]=36 + }, + [15845]={ + ["distance"]=95065, + ["mine_stage"]=45 + }, + [15846]={ + ["distance"]=95071, + ["mine_stage"]=20 + }, + [15847]={ + ["distance"]=95077, + ["mine_stage"]=20 + }, + [15848]={ + ["distance"]=95083, + ["mine_stage"]=14 + }, + [15849]={ + ["distance"]=95089, + ["mine_stage"]=11 + }, + [15850]={ + ["distance"]=95095, + ["mine_stage"]=30 + }, + [15851]={ + ["distance"]=95101, + ["mine_stage"]=68 + }, + [15852]={ + ["distance"]=95107, + ["mine_stage"]=2 + }, + [15853]={ + ["distance"]=95113, + ["mine_stage"]=45 + }, + [15854]={ + ["distance"]=95119, + ["mine_stage"]=36 + }, + [15855]={ + ["distance"]=95125, + ["mine_stage"]=39 + }, + [15856]={ + ["distance"]=95131, + ["mine_stage"]=51 + }, + [15857]={ + ["distance"]=95137, + ["mine_stage"]=1 + }, + [15858]={ + ["distance"]=95143, + ["mine_stage"]=4 + }, + [15859]={ + ["distance"]=95149, + ["mine_stage"]=37 + }, + [15860]={ + ["distance"]=95155, + ["mine_stage"]=27 + }, + [15861]={ + ["distance"]=95161, + ["mine_stage"]=3 + }, + [15862]={ + ["distance"]=95167, + ["mine_stage"]=31 + }, + [15863]={ + ["distance"]=95173, + ["mine_stage"]=47 + }, + [15864]={ + ["distance"]=95179, + ["mine_stage"]=44 + }, + [15865]={ + ["distance"]=95185, + ["mine_stage"]=26 + }, + [15866]={ + ["distance"]=95191, + ["mine_stage"]=44 + }, + [15867]={ + ["distance"]=95197, + ["mine_stage"]=14 + }, + [15868]={ + ["distance"]=95203, + ["mine_stage"]=50 + }, + [15869]={ + ["distance"]=95209, + ["mine_stage"]=14 + }, + [15870]={ + ["distance"]=95215, + ["mine_stage"]=24 + }, + [15871]={ + ["distance"]=95221, + ["mine_stage"]=25 + }, + [15872]={ + ["distance"]=95227, + ["mine_stage"]=26 + }, + [15873]={ + ["distance"]=95233, + ["mine_stage"]=29 + }, + [15874]={ + ["distance"]=95239, + ["mine_stage"]=34 + }, + [15875]={ + ["distance"]=95245, + ["mine_stage"]=52 + }, + [15876]={ + ["distance"]=95251, + ["mine_stage"]=8 + }, + [15877]={ + ["distance"]=95257, + ["mine_stage"]=43 + }, + [15878]={ + ["distance"]=95263, + ["mine_stage"]=37 + }, + [15879]={ + ["distance"]=95269, + ["mine_stage"]=25 + }, + [15880]={ + ["distance"]=95275, + ["mine_stage"]=60 + }, + [15881]={ + ["distance"]=95281, + ["mine_stage"]=6 + }, + [15882]={ + ["distance"]=95287, + ["mine_stage"]=18 + }, + [15883]={ + ["distance"]=95293, + ["mine_stage"]=15 + }, + [15884]={ + ["distance"]=95299, + ["mine_stage"]=46 + }, + [15885]={ + ["distance"]=95305, + ["mine_stage"]=16 + }, + [15886]={ + ["distance"]=95311, + ["mine_stage"]=30 + }, + [15887]={ + ["distance"]=95317, + ["mine_stage"]=6 + }, + [15888]={ + ["distance"]=95323, + ["mine_stage"]=25 + }, + [15889]={ + ["distance"]=95329, + ["mine_stage"]=2 + }, + [15890]={ + ["distance"]=95335, + ["mine_stage"]=43 + }, + [15891]={ + ["distance"]=95341, + ["mine_stage"]=51 + }, + [15892]={ + ["distance"]=95347, + ["mine_stage"]=42 + }, + [15893]={ + ["distance"]=95353, + ["mine_stage"]=36 + }, + [15894]={ + ["distance"]=95359, + ["mine_stage"]=52 + }, + [15895]={ + ["distance"]=95365, + ["mine_stage"]=7 + }, + [15896]={ + ["distance"]=95371, + ["mine_stage"]=48 + }, + [15897]={ + ["distance"]=95377, + ["mine_stage"]=54 + }, + [15898]={ + ["distance"]=95383, + ["mine_stage"]=35 + }, + [15899]={ + ["distance"]=95389, + ["mine_stage"]=44 + }, + [15900]={ + ["distance"]=95395, + ["mine_stage"]=5 + }, + [15901]={ + ["distance"]=95401, + ["mine_stage"]=66 + }, + [15902]={ + ["distance"]=95407, + ["mine_stage"]=52 + }, + [15903]={ + ["distance"]=95413, + ["mine_stage"]=27 + }, + [15904]={ + ["distance"]=95419, + ["mine_stage"]=11 + }, + [15905]={ + ["distance"]=95425, + ["mine_stage"]=46 + }, + [15906]={ + ["distance"]=95431, + ["mine_stage"]=11 + }, + [15907]={ + ["distance"]=95437, + ["mine_stage"]=31 + }, + [15908]={ + ["distance"]=95443, + ["mine_stage"]=7 + }, + [15909]={ + ["distance"]=95449, + ["mine_stage"]=13 + }, + [15910]={ + ["distance"]=95455, + ["mine_stage"]=47 + }, + [15911]={ + ["distance"]=95461, + ["mine_stage"]=41 + }, + [15912]={ + ["distance"]=95467, + ["mine_stage"]=7 + }, + [15913]={ + ["distance"]=95473, + ["mine_stage"]=28 + }, + [15914]={ + ["distance"]=95479, + ["mine_stage"]=36 + }, + [15915]={ + ["distance"]=95485, + ["mine_stage"]=22 + }, + [15916]={ + ["distance"]=95491, + ["mine_stage"]=58 + }, + [15917]={ + ["distance"]=95497, + ["mine_stage"]=15 + }, + [15918]={ + ["distance"]=95503, + ["mine_stage"]=11 + }, + [15919]={ + ["distance"]=95509, + ["mine_stage"]=47 + }, + [15920]={ + ["distance"]=95515, + ["mine_stage"]=41 + }, + [15921]={ + ["distance"]=95521, + ["mine_stage"]=21 + }, + [15922]={ + ["distance"]=95527, + ["mine_stage"]=28 + }, + [15923]={ + ["distance"]=95533, + ["mine_stage"]=20 + }, + [15924]={ + ["distance"]=95539, + ["mine_stage"]=38 + }, + [15925]={ + ["distance"]=95545, + ["mine_stage"]=19 + }, + [15926]={ + ["distance"]=95551, + ["mine_stage"]=27 + }, + [15927]={ + ["distance"]=95557, + ["mine_stage"]=15 + }, + [15928]={ + ["distance"]=95563, + ["mine_stage"]=2 + }, + [15929]={ + ["distance"]=95569, + ["mine_stage"]=32 + }, + [15930]={ + ["distance"]=95575, + ["mine_stage"]=42 + }, + [15931]={ + ["distance"]=95581, + ["mine_stage"]=11 + }, + [15932]={ + ["distance"]=95587, + ["mine_stage"]=7 + }, + [15933]={ + ["distance"]=95593, + ["mine_stage"]=21 + }, + [15934]={ + ["distance"]=95599, + ["mine_stage"]=27 + }, + [15935]={ + ["distance"]=95605, + ["mine_stage"]=35 + }, + [15936]={ + ["distance"]=95611, + ["mine_stage"]=16 + }, + [15937]={ + ["distance"]=95617, + ["mine_stage"]=57 + }, + [15938]={ + ["distance"]=95623, + ["mine_stage"]=32 + }, + [15939]={ + ["distance"]=95629, + ["mine_stage"]=45 + }, + [15940]={ + ["distance"]=95635, + ["mine_stage"]=51 + }, + [15941]={ + ["distance"]=95641, + ["mine_stage"]=43 + }, + [15942]={ + ["distance"]=95647, + ["mine_stage"]=7 + }, + [15943]={ + ["distance"]=95653, + ["mine_stage"]=12 + }, + [15944]={ + ["distance"]=95659, + ["mine_stage"]=37 + }, + [15945]={ + ["distance"]=95665, + ["mine_stage"]=18 + }, + [15946]={ + ["distance"]=95671, + ["mine_stage"]=32 + }, + [15947]={ + ["distance"]=95677, + ["mine_stage"]=39 + }, + [15948]={ + ["distance"]=95683, + ["mine_stage"]=35 + }, + [15949]={ + ["distance"]=95689, + ["mine_stage"]=41 + }, + [15950]={ + ["distance"]=95695, + ["mine_stage"]=8 + }, + [15951]={ + ["distance"]=95701, + ["mine_stage"]=69 + }, + [15952]={ + ["distance"]=95707, + ["mine_stage"]=29 + }, + [15953]={ + ["distance"]=95713, + ["mine_stage"]=25 + }, + [15954]={ + ["distance"]=95719, + ["mine_stage"]=29 + }, + [15955]={ + ["distance"]=95725, + ["mine_stage"]=47 + }, + [15956]={ + ["distance"]=95731, + ["mine_stage"]=15 + }, + [15957]={ + ["distance"]=95737, + ["mine_stage"]=60 + }, + [15958]={ + ["distance"]=95743, + ["mine_stage"]=6 + }, + [15959]={ + ["distance"]=95749, + ["mine_stage"]=8 + }, + [15960]={ + ["distance"]=95755, + ["mine_stage"]=33 + }, + [15961]={ + ["distance"]=95761, + ["mine_stage"]=38 + }, + [15962]={ + ["distance"]=95767, + ["mine_stage"]=9 + }, + [15963]={ + ["distance"]=95773, + ["mine_stage"]=12 + }, + [15964]={ + ["distance"]=95779, + ["mine_stage"]=7 + }, + [15965]={ + ["distance"]=95785, + ["mine_stage"]=15 + }, + [15966]={ + ["distance"]=95791, + ["mine_stage"]=11 + }, + [15967]={ + ["distance"]=95797, + ["mine_stage"]=38 + }, + [15968]={ + ["distance"]=95803, + ["mine_stage"]=57 + }, + [15969]={ + ["distance"]=95809, + ["mine_stage"]=46 + }, + [15970]={ + ["distance"]=95815, + ["mine_stage"]=56 + }, + [15971]={ + ["distance"]=95821, + ["mine_stage"]=44 + }, + [15972]={ + ["distance"]=95827, + ["mine_stage"]=38 + }, + [15973]={ + ["distance"]=95833, + ["mine_stage"]=27 + }, + [15974]={ + ["distance"]=95839, + ["mine_stage"]=40 + }, + [15975]={ + ["distance"]=95845, + ["mine_stage"]=39 + }, + [15976]={ + ["distance"]=95851, + ["mine_stage"]=53 + }, + [15977]={ + ["distance"]=95857, + ["mine_stage"]=39 + }, + [15978]={ + ["distance"]=95863, + ["mine_stage"]=56 + }, + [15979]={ + ["distance"]=95869, + ["mine_stage"]=59 + }, + [15980]={ + ["distance"]=95875, + ["mine_stage"]=59 + }, + [15981]={ + ["distance"]=95881, + ["mine_stage"]=28 + }, + [15982]={ + ["distance"]=95887, + ["mine_stage"]=35 + }, + [15983]={ + ["distance"]=95893, + ["mine_stage"]=3 + }, + [15984]={ + ["distance"]=95899, + ["mine_stage"]=58 + }, + [15985]={ + ["distance"]=95905, + ["mine_stage"]=28 + }, + [15986]={ + ["distance"]=95911, + ["mine_stage"]=17 + }, + [15987]={ + ["distance"]=95917, + ["mine_stage"]=11 + }, + [15988]={ + ["distance"]=95923, + ["mine_stage"]=19 + }, + [15989]={ + ["distance"]=95929, + ["mine_stage"]=51 + }, + [15990]={ + ["distance"]=95935, + ["mine_stage"]=52 + }, + [15991]={ + ["distance"]=95941, + ["mine_stage"]=28 + }, + [15992]={ + ["distance"]=95947, + ["mine_stage"]=33 + }, + [15993]={ + ["distance"]=95953, + ["mine_stage"]=17 + }, + [15994]={ + ["distance"]=95959, + ["mine_stage"]=24 + }, + [15995]={ + ["distance"]=95965, + ["mine_stage"]=48 + }, + [15996]={ + ["distance"]=95971, + ["mine_stage"]=57 + }, + [15997]={ + ["distance"]=95977, + ["mine_stage"]=48 + }, + [15998]={ + ["distance"]=95983, + ["mine_stage"]=8 + }, + [15999]={ + ["distance"]=95989, + ["mine_stage"]=25 + }, + [16000]={ + ["distance"]=95995, + ["mine_stage"]=7 + }, + [16001]={ + ["distance"]=96001, + ["mine_stage"]=64 + }, + [16002]={ + ["distance"]=96007, + ["mine_stage"]=15 + }, + [16003]={ + ["distance"]=96013, + ["mine_stage"]=3 + }, + [16004]={ + ["distance"]=96019, + ["mine_stage"]=24 + }, + [16005]={ + ["distance"]=96025, + ["mine_stage"]=58 + }, + [16006]={ + ["distance"]=96031, + ["mine_stage"]=30 + }, + [16007]={ + ["distance"]=96037, + ["mine_stage"]=11 + }, + [16008]={ + ["distance"]=96043, + ["mine_stage"]=44 + }, + [16009]={ + ["distance"]=96049, + ["mine_stage"]=7 + }, + [16010]={ + ["distance"]=96055, + ["mine_stage"]=34 + }, + [16011]={ + ["distance"]=96061, + ["mine_stage"]=48 + }, + [16012]={ + ["distance"]=96067, + ["mine_stage"]=10 + }, + [16013]={ + ["distance"]=96073, + ["mine_stage"]=57 + }, + [16014]={ + ["distance"]=96079, + ["mine_stage"]=58 + }, + [16015]={ + ["distance"]=96085, + ["mine_stage"]=43 + }, + [16016]={ + ["distance"]=96091, + ["mine_stage"]=19 + }, + [16017]={ + ["distance"]=96097, + ["mine_stage"]=49 + }, + [16018]={ + ["distance"]=96103, + ["mine_stage"]=54 + }, + [16019]={ + ["distance"]=96109, + ["mine_stage"]=13 + }, + [16020]={ + ["distance"]=96115, + ["mine_stage"]=32 + }, + [16021]={ + ["distance"]=96121, + ["mine_stage"]=16 + }, + [16022]={ + ["distance"]=96127, + ["mine_stage"]=17 + }, + [16023]={ + ["distance"]=96133, + ["mine_stage"]=58 + }, + [16024]={ + ["distance"]=96139, + ["mine_stage"]=12 + }, + [16025]={ + ["distance"]=96145, + ["mine_stage"]=1 + }, + [16026]={ + ["distance"]=96151, + ["mine_stage"]=19 + }, + [16027]={ + ["distance"]=96157, + ["mine_stage"]=55 + }, + [16028]={ + ["distance"]=96163, + ["mine_stage"]=50 + }, + [16029]={ + ["distance"]=96169, + ["mine_stage"]=21 + }, + [16030]={ + ["distance"]=96175, + ["mine_stage"]=45 + }, + [16031]={ + ["distance"]=96181, + ["mine_stage"]=47 + }, + [16032]={ + ["distance"]=96187, + ["mine_stage"]=7 + }, + [16033]={ + ["distance"]=96193, + ["mine_stage"]=34 + }, + [16034]={ + ["distance"]=96199, + ["mine_stage"]=25 + }, + [16035]={ + ["distance"]=96205, + ["mine_stage"]=31 + }, + [16036]={ + ["distance"]=96211, + ["mine_stage"]=6 + }, + [16037]={ + ["distance"]=96217, + ["mine_stage"]=19 + }, + [16038]={ + ["distance"]=96223, + ["mine_stage"]=43 + }, + [16039]={ + ["distance"]=96229, + ["mine_stage"]=12 + }, + [16040]={ + ["distance"]=96235, + ["mine_stage"]=56 + }, + [16041]={ + ["distance"]=96241, + ["mine_stage"]=49 + }, + [16042]={ + ["distance"]=96247, + ["mine_stage"]=48 + }, + [16043]={ + ["distance"]=96253, + ["mine_stage"]=26 + }, + [16044]={ + ["distance"]=96259, + ["mine_stage"]=1 + }, + [16045]={ + ["distance"]=96265, + ["mine_stage"]=12 + }, + [16046]={ + ["distance"]=96271, + ["mine_stage"]=17 + }, + [16047]={ + ["distance"]=96277, + ["mine_stage"]=3 + }, + [16048]={ + ["distance"]=96283, + ["mine_stage"]=11 + }, + [16049]={ + ["distance"]=96289, + ["mine_stage"]=14 + }, + [16050]={ + ["distance"]=96295, + ["mine_stage"]=3 + }, + [16051]={ + ["distance"]=96301, + ["mine_stage"]=67 + }, + [16052]={ + ["distance"]=96307, + ["mine_stage"]=15 + }, + [16053]={ + ["distance"]=96313, + ["mine_stage"]=40 + }, + [16054]={ + ["distance"]=96319, + ["mine_stage"]=29 + }, + [16055]={ + ["distance"]=96325, + ["mine_stage"]=54 + }, + [16056]={ + ["distance"]=96331, + ["mine_stage"]=43 + }, + [16057]={ + ["distance"]=96337, + ["mine_stage"]=25 + }, + [16058]={ + ["distance"]=96343, + ["mine_stage"]=43 + }, + [16059]={ + ["distance"]=96349, + ["mine_stage"]=15 + }, + [16060]={ + ["distance"]=96355, + ["mine_stage"]=13 + }, + [16061]={ + ["distance"]=96361, + ["mine_stage"]=39 + }, + [16062]={ + ["distance"]=96367, + ["mine_stage"]=38 + }, + [16063]={ + ["distance"]=96373, + ["mine_stage"]=36 + }, + [16064]={ + ["distance"]=96379, + ["mine_stage"]=27 + }, + [16065]={ + ["distance"]=96385, + ["mine_stage"]=17 + }, + [16066]={ + ["distance"]=96391, + ["mine_stage"]=45 + }, + [16067]={ + ["distance"]=96397, + ["mine_stage"]=47 + }, + [16068]={ + ["distance"]=96403, + ["mine_stage"]=36 + }, + [16069]={ + ["distance"]=96409, + ["mine_stage"]=25 + }, + [16070]={ + ["distance"]=96415, + ["mine_stage"]=29 + }, + [16071]={ + ["distance"]=96421, + ["mine_stage"]=7 + }, + [16072]={ + ["distance"]=96427, + ["mine_stage"]=22 + }, + [16073]={ + ["distance"]=96433, + ["mine_stage"]=57 + }, + [16074]={ + ["distance"]=96439, + ["mine_stage"]=10 + }, + [16075]={ + ["distance"]=96445, + ["mine_stage"]=1 + }, + [16076]={ + ["distance"]=96451, + ["mine_stage"]=23 + }, + [16077]={ + ["distance"]=96457, + ["mine_stage"]=15 + }, + [16078]={ + ["distance"]=96463, + ["mine_stage"]=48 + }, + [16079]={ + ["distance"]=96469, + ["mine_stage"]=4 + }, + [16080]={ + ["distance"]=96475, + ["mine_stage"]=15 + }, + [16081]={ + ["distance"]=96481, + ["mine_stage"]=10 + }, + [16082]={ + ["distance"]=96487, + ["mine_stage"]=39 + }, + [16083]={ + ["distance"]=96493, + ["mine_stage"]=59 + }, + [16084]={ + ["distance"]=96499, + ["mine_stage"]=30 + }, + [16085]={ + ["distance"]=96505, + ["mine_stage"]=48 + }, + [16086]={ + ["distance"]=96511, + ["mine_stage"]=8 + }, + [16087]={ + ["distance"]=96517, + ["mine_stage"]=41 + }, + [16088]={ + ["distance"]=96523, + ["mine_stage"]=25 + }, + [16089]={ + ["distance"]=96529, + ["mine_stage"]=55 + }, + [16090]={ + ["distance"]=96535, + ["mine_stage"]=17 + }, + [16091]={ + ["distance"]=96541, + ["mine_stage"]=46 + }, + [16092]={ + ["distance"]=96547, + ["mine_stage"]=49 + }, + [16093]={ + ["distance"]=96553, + ["mine_stage"]=28 + }, + [16094]={ + ["distance"]=96559, + ["mine_stage"]=39 + }, + [16095]={ + ["distance"]=96565, + ["mine_stage"]=1 + }, + [16096]={ + ["distance"]=96571, + ["mine_stage"]=44 + }, + [16097]={ + ["distance"]=96577, + ["mine_stage"]=49 + }, + [16098]={ + ["distance"]=96583, + ["mine_stage"]=40 + }, + [16099]={ + ["distance"]=96589, + ["mine_stage"]=36 + }, + [16100]={ + ["distance"]=96595, + ["mine_stage"]=14 + }, + [16101]={ + ["distance"]=96601, + ["mine_stage"]=65 + }, + [16102]={ + ["distance"]=96607, + ["mine_stage"]=27 + }, + [16103]={ + ["distance"]=96613, + ["mine_stage"]=46 + }, + [16104]={ + ["distance"]=96619, + ["mine_stage"]=10 + }, + [16105]={ + ["distance"]=96625, + ["mine_stage"]=38 + }, + [16106]={ + ["distance"]=96631, + ["mine_stage"]=59 + }, + [16107]={ + ["distance"]=96637, + ["mine_stage"]=26 + }, + [16108]={ + ["distance"]=96643, + ["mine_stage"]=32 + }, + [16109]={ + ["distance"]=96649, + ["mine_stage"]=38 + }, + [16110]={ + ["distance"]=96655, + ["mine_stage"]=11 + }, + [16111]={ + ["distance"]=96661, + ["mine_stage"]=2 + }, + [16112]={ + ["distance"]=96667, + ["mine_stage"]=8 + }, + [16113]={ + ["distance"]=96673, + ["mine_stage"]=17 + }, + [16114]={ + ["distance"]=96679, + ["mine_stage"]=26 + }, + [16115]={ + ["distance"]=96685, + ["mine_stage"]=38 + }, + [16116]={ + ["distance"]=96691, + ["mine_stage"]=53 + }, + [16117]={ + ["distance"]=96697, + ["mine_stage"]=49 + }, + [16118]={ + ["distance"]=96703, + ["mine_stage"]=53 + }, + [16119]={ + ["distance"]=96709, + ["mine_stage"]=42 + }, + [16120]={ + ["distance"]=96715, + ["mine_stage"]=31 + }, + [16121]={ + ["distance"]=96721, + ["mine_stage"]=28 + }, + [16122]={ + ["distance"]=96727, + ["mine_stage"]=51 + }, + [16123]={ + ["distance"]=96733, + ["mine_stage"]=50 + }, + [16124]={ + ["distance"]=96739, + ["mine_stage"]=36 + }, + [16125]={ + ["distance"]=96745, + ["mine_stage"]=39 + }, + [16126]={ + ["distance"]=96751, + ["mine_stage"]=29 + }, + [16127]={ + ["distance"]=96757, + ["mine_stage"]=31 + }, + [16128]={ + ["distance"]=96763, + ["mine_stage"]=32 + }, + [16129]={ + ["distance"]=96769, + ["mine_stage"]=4 + }, + [16130]={ + ["distance"]=96775, + ["mine_stage"]=45 + }, + [16131]={ + ["distance"]=96781, + ["mine_stage"]=25 + }, + [16132]={ + ["distance"]=96787, + ["mine_stage"]=46 + }, + [16133]={ + ["distance"]=96793, + ["mine_stage"]=4 + }, + [16134]={ + ["distance"]=96799, + ["mine_stage"]=2 + }, + [16135]={ + ["distance"]=96805, + ["mine_stage"]=45 + }, + [16136]={ + ["distance"]=96811, + ["mine_stage"]=19 + }, + [16137]={ + ["distance"]=96817, + ["mine_stage"]=38 + }, + [16138]={ + ["distance"]=96823, + ["mine_stage"]=46 + }, + [16139]={ + ["distance"]=96829, + ["mine_stage"]=12 + }, + [16140]={ + ["distance"]=96835, + ["mine_stage"]=28 + }, + [16141]={ + ["distance"]=96841, + ["mine_stage"]=44 + }, + [16142]={ + ["distance"]=96847, + ["mine_stage"]=52 + }, + [16143]={ + ["distance"]=96853, + ["mine_stage"]=29 + }, + [16144]={ + ["distance"]=96859, + ["mine_stage"]=25 + }, + [16145]={ + ["distance"]=96865, + ["mine_stage"]=60 + }, + [16146]={ + ["distance"]=96871, + ["mine_stage"]=10 + }, + [16147]={ + ["distance"]=96877, + ["mine_stage"]=17 + }, + [16148]={ + ["distance"]=96883, + ["mine_stage"]=16 + }, + [16149]={ + ["distance"]=96889, + ["mine_stage"]=44 + }, + [16150]={ + ["distance"]=96895, + ["mine_stage"]=40 + }, + [16151]={ + ["distance"]=96901, + ["mine_stage"]=68 + }, + [16152]={ + ["distance"]=96907, + ["mine_stage"]=12 + }, + [16153]={ + ["distance"]=96913, + ["mine_stage"]=22 + }, + [16154]={ + ["distance"]=96919, + ["mine_stage"]=2 + }, + [16155]={ + ["distance"]=96925, + ["mine_stage"]=60 + }, + [16156]={ + ["distance"]=96931, + ["mine_stage"]=37 + }, + [16157]={ + ["distance"]=96937, + ["mine_stage"]=51 + }, + [16158]={ + ["distance"]=96943, + ["mine_stage"]=32 + }, + [16159]={ + ["distance"]=96949, + ["mine_stage"]=50 + }, + [16160]={ + ["distance"]=96955, + ["mine_stage"]=55 + }, + [16161]={ + ["distance"]=96961, + ["mine_stage"]=26 + }, + [16162]={ + ["distance"]=96967, + ["mine_stage"]=27 + }, + [16163]={ + ["distance"]=96973, + ["mine_stage"]=23 + }, + [16164]={ + ["distance"]=96979, + ["mine_stage"]=5 + }, + [16165]={ + ["distance"]=96985, + ["mine_stage"]=45 + }, + [16166]={ + ["distance"]=96991, + ["mine_stage"]=27 + }, + [16167]={ + ["distance"]=96997, + ["mine_stage"]=28 + }, + [16168]={ + ["distance"]=97003, + ["mine_stage"]=47 + }, + [16169]={ + ["distance"]=97009, + ["mine_stage"]=20 + }, + [16170]={ + ["distance"]=97015, + ["mine_stage"]=35 + }, + [16171]={ + ["distance"]=97021, + ["mine_stage"]=26 + }, + [16172]={ + ["distance"]=97027, + ["mine_stage"]=9 + }, + [16173]={ + ["distance"]=97033, + ["mine_stage"]=44 + }, + [16174]={ + ["distance"]=97039, + ["mine_stage"]=58 + }, + [16175]={ + ["distance"]=97045, + ["mine_stage"]=14 + }, + [16176]={ + ["distance"]=97051, + ["mine_stage"]=2 + }, + [16177]={ + ["distance"]=97057, + ["mine_stage"]=52 + }, + [16178]={ + ["distance"]=97063, + ["mine_stage"]=26 + }, + [16179]={ + ["distance"]=97069, + ["mine_stage"]=9 + }, + [16180]={ + ["distance"]=97075, + ["mine_stage"]=38 + }, + [16181]={ + ["distance"]=97081, + ["mine_stage"]=56 + }, + [16182]={ + ["distance"]=97087, + ["mine_stage"]=40 + }, + [16183]={ + ["distance"]=97093, + ["mine_stage"]=12 + }, + [16184]={ + ["distance"]=97099, + ["mine_stage"]=54 + }, + [16185]={ + ["distance"]=97105, + ["mine_stage"]=4 + }, + [16186]={ + ["distance"]=97111, + ["mine_stage"]=47 + }, + [16187]={ + ["distance"]=97117, + ["mine_stage"]=49 + }, + [16188]={ + ["distance"]=97123, + ["mine_stage"]=5 + }, + [16189]={ + ["distance"]=97129, + ["mine_stage"]=3 + }, + [16190]={ + ["distance"]=97135, + ["mine_stage"]=10 + }, + [16191]={ + ["distance"]=97141, + ["mine_stage"]=33 + }, + [16192]={ + ["distance"]=97147, + ["mine_stage"]=24 + }, + [16193]={ + ["distance"]=97153, + ["mine_stage"]=59 + }, + [16194]={ + ["distance"]=97159, + ["mine_stage"]=11 + }, + [16195]={ + ["distance"]=97165, + ["mine_stage"]=24 + }, + [16196]={ + ["distance"]=97171, + ["mine_stage"]=4 + }, + [16197]={ + ["distance"]=97177, + ["mine_stage"]=17 + }, + [16198]={ + ["distance"]=97183, + ["mine_stage"]=31 + }, + [16199]={ + ["distance"]=97189, + ["mine_stage"]=48 + }, + [16200]={ + ["distance"]=97195, + ["mine_stage"]=25 + }, + [16201]={ + ["distance"]=97201, + ["mine_stage"]=66 + }, + [16202]={ + ["distance"]=97207, + ["mine_stage"]=14 + }, + [16203]={ + ["distance"]=97213, + ["mine_stage"]=43 + }, + [16204]={ + ["distance"]=97219, + ["mine_stage"]=59 + }, + [16205]={ + ["distance"]=97225, + ["mine_stage"]=12 + }, + [16206]={ + ["distance"]=97231, + ["mine_stage"]=50 + }, + [16207]={ + ["distance"]=97237, + ["mine_stage"]=53 + }, + [16208]={ + ["distance"]=97243, + ["mine_stage"]=58 + }, + [16209]={ + ["distance"]=97249, + ["mine_stage"]=26 + }, + [16210]={ + ["distance"]=97255, + ["mine_stage"]=4 + }, + [16211]={ + ["distance"]=97261, + ["mine_stage"]=28 + }, + [16212]={ + ["distance"]=97267, + ["mine_stage"]=29 + }, + [16213]={ + ["distance"]=97273, + ["mine_stage"]=16 + }, + [16214]={ + ["distance"]=97279, + ["mine_stage"]=24 + }, + [16215]={ + ["distance"]=97285, + ["mine_stage"]=58 + }, + [16216]={ + ["distance"]=97291, + ["mine_stage"]=56 + }, + [16217]={ + ["distance"]=97297, + ["mine_stage"]=46 + }, + [16218]={ + ["distance"]=97303, + ["mine_stage"]=40 + }, + [16219]={ + ["distance"]=97309, + ["mine_stage"]=8 + }, + [16220]={ + ["distance"]=97315, + ["mine_stage"]=14 + }, + [16221]={ + ["distance"]=97321, + ["mine_stage"]=28 + }, + [16222]={ + ["distance"]=97327, + ["mine_stage"]=44 + }, + [16223]={ + ["distance"]=97333, + ["mine_stage"]=3 + }, + [16224]={ + ["distance"]=97339, + ["mine_stage"]=42 + }, + [16225]={ + ["distance"]=97345, + ["mine_stage"]=23 + }, + [16226]={ + ["distance"]=97351, + ["mine_stage"]=19 + }, + [16227]={ + ["distance"]=97357, + ["mine_stage"]=12 + }, + [16228]={ + ["distance"]=97363, + ["mine_stage"]=1 + }, + [16229]={ + ["distance"]=97369, + ["mine_stage"]=32 + }, + [16230]={ + ["distance"]=97375, + ["mine_stage"]=16 + }, + [16231]={ + ["distance"]=97381, + ["mine_stage"]=27 + }, + [16232]={ + ["distance"]=97387, + ["mine_stage"]=6 + }, + [16233]={ + ["distance"]=97393, + ["mine_stage"]=52 + }, + [16234]={ + ["distance"]=97399, + ["mine_stage"]=45 + }, + [16235]={ + ["distance"]=97405, + ["mine_stage"]=60 + }, + [16236]={ + ["distance"]=97411, + ["mine_stage"]=55 + }, + [16237]={ + ["distance"]=97417, + ["mine_stage"]=26 + }, + [16238]={ + ["distance"]=97423, + ["mine_stage"]=40 + }, + [16239]={ + ["distance"]=97429, + ["mine_stage"]=19 + }, + [16240]={ + ["distance"]=97435, + ["mine_stage"]=45 + }, + [16241]={ + ["distance"]=97441, + ["mine_stage"]=6 + }, + [16242]={ + ["distance"]=97447, + ["mine_stage"]=1 + }, + [16243]={ + ["distance"]=97453, + ["mine_stage"]=46 + }, + [16244]={ + ["distance"]=97459, + ["mine_stage"]=31 + }, + [16245]={ + ["distance"]=97465, + ["mine_stage"]=11 + }, + [16246]={ + ["distance"]=97471, + ["mine_stage"]=29 + }, + [16247]={ + ["distance"]=97477, + ["mine_stage"]=54 + }, + [16248]={ + ["distance"]=97483, + ["mine_stage"]=8 + }, + [16249]={ + ["distance"]=97489, + ["mine_stage"]=47 + }, + [16250]={ + ["distance"]=97495, + ["mine_stage"]=11 + }, + [16251]={ + ["distance"]=97501, + ["mine_stage"]=69 + }, + [16252]={ + ["distance"]=97507, + ["mine_stage"]=19 + }, + [16253]={ + ["distance"]=97513, + ["mine_stage"]=22 + }, + [16254]={ + ["distance"]=97519, + ["mine_stage"]=55 + }, + [16255]={ + ["distance"]=97525, + ["mine_stage"]=30 + }, + [16256]={ + ["distance"]=97531, + ["mine_stage"]=44 + }, + [16257]={ + ["distance"]=97537, + ["mine_stage"]=6 + }, + [16258]={ + ["distance"]=97543, + ["mine_stage"]=48 + }, + [16259]={ + ["distance"]=97549, + ["mine_stage"]=24 + }, + [16260]={ + ["distance"]=97555, + ["mine_stage"]=10 + }, + [16261]={ + ["distance"]=97561, + ["mine_stage"]=7 + }, + [16262]={ + ["distance"]=97567, + ["mine_stage"]=11 + }, + [16263]={ + ["distance"]=97573, + ["mine_stage"]=33 + }, + [16264]={ + ["distance"]=97579, + ["mine_stage"]=5 + }, + [16265]={ + ["distance"]=97585, + ["mine_stage"]=4 + }, + [16266]={ + ["distance"]=97591, + ["mine_stage"]=18 + }, + [16267]={ + ["distance"]=97597, + ["mine_stage"]=39 + }, + [16268]={ + ["distance"]=97603, + ["mine_stage"]=25 + }, + [16269]={ + ["distance"]=97609, + ["mine_stage"]=38 + }, + [16270]={ + ["distance"]=97615, + ["mine_stage"]=16 + }, + [16271]={ + ["distance"]=97621, + ["mine_stage"]=3 + }, + [16272]={ + ["distance"]=97627, + ["mine_stage"]=39 + }, + [16273]={ + ["distance"]=97633, + ["mine_stage"]=40 + }, + [16274]={ + ["distance"]=97639, + ["mine_stage"]=39 + }, + [16275]={ + ["distance"]=97645, + ["mine_stage"]=38 + }, + [16276]={ + ["distance"]=97651, + ["mine_stage"]=19 + }, + [16277]={ + ["distance"]=97657, + ["mine_stage"]=16 + }, + [16278]={ + ["distance"]=97663, + ["mine_stage"]=42 + }, + [16279]={ + ["distance"]=97669, + ["mine_stage"]=8 + }, + [16280]={ + ["distance"]=97675, + ["mine_stage"]=38 + }, + [16281]={ + ["distance"]=97681, + ["mine_stage"]=47 + }, + [16282]={ + ["distance"]=97687, + ["mine_stage"]=1 + }, + [16283]={ + ["distance"]=97693, + ["mine_stage"]=29 + }, + [16284]={ + ["distance"]=97699, + ["mine_stage"]=47 + }, + [16285]={ + ["distance"]=97705, + ["mine_stage"]=51 + }, + [16286]={ + ["distance"]=97711, + ["mine_stage"]=51 + }, + [16287]={ + ["distance"]=97717, + ["mine_stage"]=12 + }, + [16288]={ + ["distance"]=97723, + ["mine_stage"]=12 + }, + [16289]={ + ["distance"]=97729, + ["mine_stage"]=45 + }, + [16290]={ + ["distance"]=97735, + ["mine_stage"]=3 + }, + [16291]={ + ["distance"]=97741, + ["mine_stage"]=16 + }, + [16292]={ + ["distance"]=97747, + ["mine_stage"]=58 + }, + [16293]={ + ["distance"]=97753, + ["mine_stage"]=8 + }, + [16294]={ + ["distance"]=97759, + ["mine_stage"]=57 + }, + [16295]={ + ["distance"]=97765, + ["mine_stage"]=57 + }, + [16296]={ + ["distance"]=97771, + ["mine_stage"]=49 + }, + [16297]={ + ["distance"]=97777, + ["mine_stage"]=49 + }, + [16298]={ + ["distance"]=97783, + ["mine_stage"]=18 + }, + [16299]={ + ["distance"]=97789, + ["mine_stage"]=57 + }, + [16300]={ + ["distance"]=97795, + ["mine_stage"]=33 + }, + [16301]={ + ["distance"]=97801, + ["mine_stage"]=64 + }, + [16302]={ + ["distance"]=97807, + ["mine_stage"]=2 + }, + [16303]={ + ["distance"]=97813, + ["mine_stage"]=30 + }, + [16304]={ + ["distance"]=97819, + ["mine_stage"]=46 + }, + [16305]={ + ["distance"]=97825, + ["mine_stage"]=47 + }, + [16306]={ + ["distance"]=97831, + ["mine_stage"]=56 + }, + [16307]={ + ["distance"]=97837, + ["mine_stage"]=19 + }, + [16308]={ + ["distance"]=97843, + ["mine_stage"]=7 + }, + [16309]={ + ["distance"]=97849, + ["mine_stage"]=22 + }, + [16310]={ + ["distance"]=97855, + ["mine_stage"]=10 + }, + [16311]={ + ["distance"]=97861, + ["mine_stage"]=24 + }, + [16312]={ + ["distance"]=97867, + ["mine_stage"]=5 + }, + [16313]={ + ["distance"]=97873, + ["mine_stage"]=40 + }, + [16314]={ + ["distance"]=97879, + ["mine_stage"]=10 + }, + [16315]={ + ["distance"]=97885, + ["mine_stage"]=28 + }, + [16316]={ + ["distance"]=97891, + ["mine_stage"]=56 + }, + [16317]={ + ["distance"]=97897, + ["mine_stage"]=26 + }, + [16318]={ + ["distance"]=97903, + ["mine_stage"]=16 + }, + [16319]={ + ["distance"]=97909, + ["mine_stage"]=6 + }, + [16320]={ + ["distance"]=97915, + ["mine_stage"]=28 + }, + [16321]={ + ["distance"]=97921, + ["mine_stage"]=33 + }, + [16322]={ + ["distance"]=97927, + ["mine_stage"]=41 + }, + [16323]={ + ["distance"]=97933, + ["mine_stage"]=19 + }, + [16324]={ + ["distance"]=97939, + ["mine_stage"]=60 + }, + [16325]={ + ["distance"]=97945, + ["mine_stage"]=28 + }, + [16326]={ + ["distance"]=97951, + ["mine_stage"]=29 + }, + [16327]={ + ["distance"]=97957, + ["mine_stage"]=42 + }, + [16328]={ + ["distance"]=97963, + ["mine_stage"]=53 + }, + [16329]={ + ["distance"]=97969, + ["mine_stage"]=15 + }, + [16330]={ + ["distance"]=97975, + ["mine_stage"]=51 + }, + [16331]={ + ["distance"]=97981, + ["mine_stage"]=6 + }, + [16332]={ + ["distance"]=97987, + ["mine_stage"]=46 + }, + [16333]={ + ["distance"]=97993, + ["mine_stage"]=40 + }, + [16334]={ + ["distance"]=97999, + ["mine_stage"]=32 + }, + [16335]={ + ["distance"]=98005, + ["mine_stage"]=60 + }, + [16336]={ + ["distance"]=98011, + ["mine_stage"]=22 + }, + [16337]={ + ["distance"]=98017, + ["mine_stage"]=44 + }, + [16338]={ + ["distance"]=98023, + ["mine_stage"]=16 + }, + [16339]={ + ["distance"]=98029, + ["mine_stage"]=53 + }, + [16340]={ + ["distance"]=98035, + ["mine_stage"]=9 + }, + [16341]={ + ["distance"]=98041, + ["mine_stage"]=1 + }, + [16342]={ + ["distance"]=98047, + ["mine_stage"]=12 + }, + [16343]={ + ["distance"]=98053, + ["mine_stage"]=26 + }, + [16344]={ + ["distance"]=98059, + ["mine_stage"]=51 + }, + [16345]={ + ["distance"]=98065, + ["mine_stage"]=34 + }, + [16346]={ + ["distance"]=98071, + ["mine_stage"]=49 + }, + [16347]={ + ["distance"]=98077, + ["mine_stage"]=12 + }, + [16348]={ + ["distance"]=98083, + ["mine_stage"]=3 + }, + [16349]={ + ["distance"]=98089, + ["mine_stage"]=50 + }, + [16350]={ + ["distance"]=98095, + ["mine_stage"]=49 + }, + [16351]={ + ["distance"]=98101, + ["mine_stage"]=67 + }, + [16352]={ + ["distance"]=98107, + ["mine_stage"]=25 + }, + [16353]={ + ["distance"]=98113, + ["mine_stage"]=47 + }, + [16354]={ + ["distance"]=98119, + ["mine_stage"]=48 + }, + [16355]={ + ["distance"]=98125, + ["mine_stage"]=43 + }, + [16356]={ + ["distance"]=98131, + ["mine_stage"]=22 + }, + [16357]={ + ["distance"]=98137, + ["mine_stage"]=44 + }, + [16358]={ + ["distance"]=98143, + ["mine_stage"]=15 + }, + [16359]={ + ["distance"]=98149, + ["mine_stage"]=14 + }, + [16360]={ + ["distance"]=98155, + ["mine_stage"]=4 + }, + [16361]={ + ["distance"]=98161, + ["mine_stage"]=2 + }, + [16362]={ + ["distance"]=98167, + ["mine_stage"]=12 + }, + [16363]={ + ["distance"]=98173, + ["mine_stage"]=20 + }, + [16364]={ + ["distance"]=98179, + ["mine_stage"]=11 + }, + [16365]={ + ["distance"]=98185, + ["mine_stage"]=41 + }, + [16366]={ + ["distance"]=98191, + ["mine_stage"]=50 + }, + [16367]={ + ["distance"]=98197, + ["mine_stage"]=40 + }, + [16368]={ + ["distance"]=98203, + ["mine_stage"]=59 + }, + [16369]={ + ["distance"]=98209, + ["mine_stage"]=1 + }, + [16370]={ + ["distance"]=98215, + ["mine_stage"]=15 + }, + [16371]={ + ["distance"]=98221, + ["mine_stage"]=22 + }, + [16372]={ + ["distance"]=98227, + ["mine_stage"]=6 + }, + [16373]={ + ["distance"]=98233, + ["mine_stage"]=11 + }, + [16374]={ + ["distance"]=98239, + ["mine_stage"]=52 + }, + [16375]={ + ["distance"]=98245, + ["mine_stage"]=31 + }, + [16376]={ + ["distance"]=98251, + ["mine_stage"]=16 + }, + [16377]={ + ["distance"]=98257, + ["mine_stage"]=28 + }, + [16378]={ + ["distance"]=98263, + ["mine_stage"]=39 + }, + [16379]={ + ["distance"]=98269, + ["mine_stage"]=13 + }, + [16380]={ + ["distance"]=98275, + ["mine_stage"]=43 + }, + [16381]={ + ["distance"]=98281, + ["mine_stage"]=31 + }, + [16382]={ + ["distance"]=98287, + ["mine_stage"]=43 + }, + [16383]={ + ["distance"]=98293, + ["mine_stage"]=56 + }, + [16384]={ + ["distance"]=98299, + ["mine_stage"]=40 + }, + [16385]={ + ["distance"]=98305, + ["mine_stage"]=27 + }, + [16386]={ + ["distance"]=98311, + ["mine_stage"]=5 + }, + [16387]={ + ["distance"]=98317, + ["mine_stage"]=54 + }, + [16388]={ + ["distance"]=98323, + ["mine_stage"]=19 + }, + [16389]={ + ["distance"]=98329, + ["mine_stage"]=8 + }, + [16390]={ + ["distance"]=98335, + ["mine_stage"]=35 + }, + [16391]={ + ["distance"]=98341, + ["mine_stage"]=43 + }, + [16392]={ + ["distance"]=98347, + ["mine_stage"]=8 + }, + [16393]={ + ["distance"]=98353, + ["mine_stage"]=9 + }, + [16394]={ + ["distance"]=98359, + ["mine_stage"]=30 + }, + [16395]={ + ["distance"]=98365, + ["mine_stage"]=20 + }, + [16396]={ + ["distance"]=98371, + ["mine_stage"]=6 + }, + [16397]={ + ["distance"]=98377, + ["mine_stage"]=23 + }, + [16398]={ + ["distance"]=98383, + ["mine_stage"]=19 + }, + [16399]={ + ["distance"]=98389, + ["mine_stage"]=17 + }, + [16400]={ + ["distance"]=98395, + ["mine_stage"]=19 + }, + [16401]={ + ["distance"]=98401, + ["mine_stage"]=65 + }, + [16402]={ + ["distance"]=98407, + ["mine_stage"]=36 + }, + [16403]={ + ["distance"]=98413, + ["mine_stage"]=27 + }, + [16404]={ + ["distance"]=98419, + ["mine_stage"]=23 + }, + [16405]={ + ["distance"]=98425, + ["mine_stage"]=37 + }, + [16406]={ + ["distance"]=98431, + ["mine_stage"]=4 + }, + [16407]={ + ["distance"]=98437, + ["mine_stage"]=22 + }, + [16408]={ + ["distance"]=98443, + ["mine_stage"]=60 + }, + [16409]={ + ["distance"]=98449, + ["mine_stage"]=4 + }, + [16410]={ + ["distance"]=98455, + ["mine_stage"]=36 + }, + [16411]={ + ["distance"]=98461, + ["mine_stage"]=59 + }, + [16412]={ + ["distance"]=98467, + ["mine_stage"]=8 + }, + [16413]={ + ["distance"]=98473, + ["mine_stage"]=37 + }, + [16414]={ + ["distance"]=98479, + ["mine_stage"]=13 + }, + [16415]={ + ["distance"]=98485, + ["mine_stage"]=24 + }, + [16416]={ + ["distance"]=98491, + ["mine_stage"]=23 + }, + [16417]={ + ["distance"]=98497, + ["mine_stage"]=7 + }, + [16418]={ + ["distance"]=98503, + ["mine_stage"]=28 + }, + [16419]={ + ["distance"]=98509, + ["mine_stage"]=43 + }, + [16420]={ + ["distance"]=98515, + ["mine_stage"]=59 + }, + [16421]={ + ["distance"]=98521, + ["mine_stage"]=54 + }, + [16422]={ + ["distance"]=98527, + ["mine_stage"]=56 + }, + [16423]={ + ["distance"]=98533, + ["mine_stage"]=43 + }, + [16424]={ + ["distance"]=98539, + ["mine_stage"]=5 + }, + [16425]={ + ["distance"]=98545, + ["mine_stage"]=6 + }, + [16426]={ + ["distance"]=98551, + ["mine_stage"]=39 + }, + [16427]={ + ["distance"]=98557, + ["mine_stage"]=54 + }, + [16428]={ + ["distance"]=98563, + ["mine_stage"]=57 + }, + [16429]={ + ["distance"]=98569, + ["mine_stage"]=30 + }, + [16430]={ + ["distance"]=98575, + ["mine_stage"]=18 + }, + [16431]={ + ["distance"]=98581, + ["mine_stage"]=7 + }, + [16432]={ + ["distance"]=98587, + ["mine_stage"]=30 + }, + [16433]={ + ["distance"]=98593, + ["mine_stage"]=41 + }, + [16434]={ + ["distance"]=98599, + ["mine_stage"]=42 + }, + [16435]={ + ["distance"]=98605, + ["mine_stage"]=4 + }, + [16436]={ + ["distance"]=98611, + ["mine_stage"]=56 + }, + [16437]={ + ["distance"]=98617, + ["mine_stage"]=60 + }, + [16438]={ + ["distance"]=98623, + ["mine_stage"]=8 + }, + [16439]={ + ["distance"]=98629, + ["mine_stage"]=53 + }, + [16440]={ + ["distance"]=98635, + ["mine_stage"]=44 + }, + [16441]={ + ["distance"]=98641, + ["mine_stage"]=40 + }, + [16442]={ + ["distance"]=98647, + ["mine_stage"]=41 + }, + [16443]={ + ["distance"]=98653, + ["mine_stage"]=45 + }, + [16444]={ + ["distance"]=98659, + ["mine_stage"]=10 + }, + [16445]={ + ["distance"]=98665, + ["mine_stage"]=48 + }, + [16446]={ + ["distance"]=98671, + ["mine_stage"]=58 + }, + [16447]={ + ["distance"]=98677, + ["mine_stage"]=22 + }, + [16448]={ + ["distance"]=98683, + ["mine_stage"]=25 + }, + [16449]={ + ["distance"]=98689, + ["mine_stage"]=49 + }, + [16450]={ + ["distance"]=98695, + ["mine_stage"]=30 + }, + [16451]={ + ["distance"]=98701, + ["mine_stage"]=68 + }, + [16452]={ + ["distance"]=98707, + ["mine_stage"]=38 + }, + [16453]={ + ["distance"]=98713, + ["mine_stage"]=6 + }, + [16454]={ + ["distance"]=98719, + ["mine_stage"]=55 + }, + [16455]={ + ["distance"]=98725, + ["mine_stage"]=24 + }, + [16456]={ + ["distance"]=98731, + ["mine_stage"]=16 + }, + [16457]={ + ["distance"]=98737, + ["mine_stage"]=28 + }, + [16458]={ + ["distance"]=98743, + ["mine_stage"]=33 + }, + [16459]={ + ["distance"]=98749, + ["mine_stage"]=7 + }, + [16460]={ + ["distance"]=98755, + ["mine_stage"]=37 + }, + [16461]={ + ["distance"]=98761, + ["mine_stage"]=25 + }, + [16462]={ + ["distance"]=98767, + ["mine_stage"]=18 + }, + [16463]={ + ["distance"]=98773, + ["mine_stage"]=47 + }, + [16464]={ + ["distance"]=98779, + ["mine_stage"]=40 + }, + [16465]={ + ["distance"]=98785, + ["mine_stage"]=28 + }, + [16466]={ + ["distance"]=98791, + ["mine_stage"]=56 + }, + [16467]={ + ["distance"]=98797, + ["mine_stage"]=38 + }, + [16468]={ + ["distance"]=98803, + ["mine_stage"]=52 + }, + [16469]={ + ["distance"]=98809, + ["mine_stage"]=60 + }, + [16470]={ + ["distance"]=98815, + ["mine_stage"]=32 + }, + [16471]={ + ["distance"]=98821, + ["mine_stage"]=32 + }, + [16472]={ + ["distance"]=98827, + ["mine_stage"]=19 + }, + [16473]={ + ["distance"]=98833, + ["mine_stage"]=47 + }, + [16474]={ + ["distance"]=98839, + ["mine_stage"]=5 + }, + [16475]={ + ["distance"]=98845, + ["mine_stage"]=22 + }, + [16476]={ + ["distance"]=98851, + ["mine_stage"]=6 + }, + [16477]={ + ["distance"]=98857, + ["mine_stage"]=51 + }, + [16478]={ + ["distance"]=98863, + ["mine_stage"]=18 + }, + [16479]={ + ["distance"]=98869, + ["mine_stage"]=35 + }, + [16480]={ + ["distance"]=98875, + ["mine_stage"]=57 + }, + [16481]={ + ["distance"]=98881, + ["mine_stage"]=15 + }, + [16482]={ + ["distance"]=98887, + ["mine_stage"]=44 + }, + [16483]={ + ["distance"]=98893, + ["mine_stage"]=58 + }, + [16484]={ + ["distance"]=98899, + ["mine_stage"]=35 + }, + [16485]={ + ["distance"]=98905, + ["mine_stage"]=7 + }, + [16486]={ + ["distance"]=98911, + ["mine_stage"]=35 + }, + [16487]={ + ["distance"]=98917, + ["mine_stage"]=33 + }, + [16488]={ + ["distance"]=98923, + ["mine_stage"]=17 + }, + [16489]={ + ["distance"]=98929, + ["mine_stage"]=41 + }, + [16490]={ + ["distance"]=98935, + ["mine_stage"]=1 + }, + [16491]={ + ["distance"]=98941, + ["mine_stage"]=10 + }, + [16492]={ + ["distance"]=98947, + ["mine_stage"]=41 + }, + [16493]={ + ["distance"]=98953, + ["mine_stage"]=50 + }, + [16494]={ + ["distance"]=98959, + ["mine_stage"]=33 + }, + [16495]={ + ["distance"]=98965, + ["mine_stage"]=9 + }, + [16496]={ + ["distance"]=98971, + ["mine_stage"]=41 + }, + [16497]={ + ["distance"]=98977, + ["mine_stage"]=51 + }, + [16498]={ + ["distance"]=98983, + ["mine_stage"]=49 + }, + [16499]={ + ["distance"]=98989, + ["mine_stage"]=3 + }, + [16500]={ + ["distance"]=98995, + ["mine_stage"]=41 + }, + [16501]={ + ["distance"]=99001, + ["mine_stage"]=66 + }, + [16502]={ + ["distance"]=99007, + ["mine_stage"]=35 + }, + [16503]={ + ["distance"]=99013, + ["mine_stage"]=39 + }, + [16504]={ + ["distance"]=99019, + ["mine_stage"]=38 + }, + [16505]={ + ["distance"]=99025, + ["mine_stage"]=18 + }, + [16506]={ + ["distance"]=99031, + ["mine_stage"]=50 + }, + [16507]={ + ["distance"]=99037, + ["mine_stage"]=52 + }, + [16508]={ + ["distance"]=99043, + ["mine_stage"]=15 + }, + [16509]={ + ["distance"]=99049, + ["mine_stage"]=46 + }, + [16510]={ + ["distance"]=99055, + ["mine_stage"]=46 + }, + [16511]={ + ["distance"]=99061, + ["mine_stage"]=27 + }, + [16512]={ + ["distance"]=99067, + ["mine_stage"]=10 + }, + [16513]={ + ["distance"]=99073, + ["mine_stage"]=33 + }, + [16514]={ + ["distance"]=99079, + ["mine_stage"]=47 + }, + [16515]={ + ["distance"]=99085, + ["mine_stage"]=29 + }, + [16516]={ + ["distance"]=99091, + ["mine_stage"]=59 + }, + [16517]={ + ["distance"]=99097, + ["mine_stage"]=33 + }, + [16518]={ + ["distance"]=99103, + ["mine_stage"]=29 + }, + [16519]={ + ["distance"]=99109, + ["mine_stage"]=12 + }, + [16520]={ + ["distance"]=99115, + ["mine_stage"]=38 + }, + [16521]={ + ["distance"]=99121, + ["mine_stage"]=23 + }, + [16522]={ + ["distance"]=99127, + ["mine_stage"]=13 + }, + [16523]={ + ["distance"]=99133, + ["mine_stage"]=10 + }, + [16524]={ + ["distance"]=99139, + ["mine_stage"]=15 + }, + [16525]={ + ["distance"]=99145, + ["mine_stage"]=17 + }, + [16526]={ + ["distance"]=99151, + ["mine_stage"]=52 + }, + [16527]={ + ["distance"]=99157, + ["mine_stage"]=26 + }, + [16528]={ + ["distance"]=99163, + ["mine_stage"]=26 + }, + [16529]={ + ["distance"]=99169, + ["mine_stage"]=36 + }, + [16530]={ + ["distance"]=99175, + ["mine_stage"]=57 + }, + [16531]={ + ["distance"]=99181, + ["mine_stage"]=43 + }, + [16532]={ + ["distance"]=99187, + ["mine_stage"]=42 + }, + [16533]={ + ["distance"]=99193, + ["mine_stage"]=50 + }, + [16534]={ + ["distance"]=99199, + ["mine_stage"]=11 + }, + [16535]={ + ["distance"]=99205, + ["mine_stage"]=2 + }, + [16536]={ + ["distance"]=99211, + ["mine_stage"]=37 + }, + [16537]={ + ["distance"]=99217, + ["mine_stage"]=44 + }, + [16538]={ + ["distance"]=99223, + ["mine_stage"]=56 + }, + [16539]={ + ["distance"]=99229, + ["mine_stage"]=4 + }, + [16540]={ + ["distance"]=99235, + ["mine_stage"]=52 + }, + [16541]={ + ["distance"]=99241, + ["mine_stage"]=29 + }, + [16542]={ + ["distance"]=99247, + ["mine_stage"]=56 + }, + [16543]={ + ["distance"]=99253, + ["mine_stage"]=57 + }, + [16544]={ + ["distance"]=99259, + ["mine_stage"]=49 + }, + [16545]={ + ["distance"]=99265, + ["mine_stage"]=60 + }, + [16546]={ + ["distance"]=99271, + ["mine_stage"]=25 + }, + [16547]={ + ["distance"]=99277, + ["mine_stage"]=52 + }, + [16548]={ + ["distance"]=99283, + ["mine_stage"]=29 + }, + [16549]={ + ["distance"]=99289, + ["mine_stage"]=58 + }, + [16550]={ + ["distance"]=99295, + ["mine_stage"]=16 + }, + [16551]={ + ["distance"]=99301, + ["mine_stage"]=69 + }, + [16552]={ + ["distance"]=99307, + ["mine_stage"]=12 + }, + [16553]={ + ["distance"]=99313, + ["mine_stage"]=18 + }, + [16554]={ + ["distance"]=99319, + ["mine_stage"]=42 + }, + [16555]={ + ["distance"]=99325, + ["mine_stage"]=29 + }, + [16556]={ + ["distance"]=99331, + ["mine_stage"]=44 + }, + [16557]={ + ["distance"]=99337, + ["mine_stage"]=23 + }, + [16558]={ + ["distance"]=99343, + ["mine_stage"]=53 + }, + [16559]={ + ["distance"]=99349, + ["mine_stage"]=8 + }, + [16560]={ + ["distance"]=99355, + ["mine_stage"]=4 + }, + [16561]={ + ["distance"]=99361, + ["mine_stage"]=21 + }, + [16562]={ + ["distance"]=99367, + ["mine_stage"]=39 + }, + [16563]={ + ["distance"]=99373, + ["mine_stage"]=10 + }, + [16564]={ + ["distance"]=99379, + ["mine_stage"]=6 + }, + [16565]={ + ["distance"]=99385, + ["mine_stage"]=10 + }, + [16566]={ + ["distance"]=99391, + ["mine_stage"]=52 + }, + [16567]={ + ["distance"]=99397, + ["mine_stage"]=25 + }, + [16568]={ + ["distance"]=99403, + ["mine_stage"]=56 + }, + [16569]={ + ["distance"]=99409, + ["mine_stage"]=28 + }, + [16570]={ + ["distance"]=99415, + ["mine_stage"]=45 + }, + [16571]={ + ["distance"]=99421, + ["mine_stage"]=58 + }, + [16572]={ + ["distance"]=99427, + ["mine_stage"]=51 + }, + [16573]={ + ["distance"]=99433, + ["mine_stage"]=44 + }, + [16574]={ + ["distance"]=99439, + ["mine_stage"]=38 + }, + [16575]={ + ["distance"]=99445, + ["mine_stage"]=37 + }, + [16576]={ + ["distance"]=99451, + ["mine_stage"]=55 + }, + [16577]={ + ["distance"]=99457, + ["mine_stage"]=22 + }, + [16578]={ + ["distance"]=99463, + ["mine_stage"]=35 + }, + [16579]={ + ["distance"]=99469, + ["mine_stage"]=45 + }, + [16580]={ + ["distance"]=99475, + ["mine_stage"]=7 + }, + [16581]={ + ["distance"]=99481, + ["mine_stage"]=51 + }, + [16582]={ + ["distance"]=99487, + ["mine_stage"]=51 + }, + [16583]={ + ["distance"]=99493, + ["mine_stage"]=40 + }, + [16584]={ + ["distance"]=99499, + ["mine_stage"]=39 + }, + [16585]={ + ["distance"]=99505, + ["mine_stage"]=52 + }, + [16586]={ + ["distance"]=99511, + ["mine_stage"]=11 + }, + [16587]={ + ["distance"]=99517, + ["mine_stage"]=60 + }, + [16588]={ + ["distance"]=99523, + ["mine_stage"]=60 + }, + [16589]={ + ["distance"]=99529, + ["mine_stage"]=5 + }, + [16590]={ + ["distance"]=99535, + ["mine_stage"]=16 + }, + [16591]={ + ["distance"]=99541, + ["mine_stage"]=59 + }, + [16592]={ + ["distance"]=99547, + ["mine_stage"]=50 + }, + [16593]={ + ["distance"]=99553, + ["mine_stage"]=40 + }, + [16594]={ + ["distance"]=99559, + ["mine_stage"]=13 + }, + [16595]={ + ["distance"]=99565, + ["mine_stage"]=41 + }, + [16596]={ + ["distance"]=99571, + ["mine_stage"]=25 + }, + [16597]={ + ["distance"]=99577, + ["mine_stage"]=58 + }, + [16598]={ + ["distance"]=99583, + ["mine_stage"]=12 + }, + [16599]={ + ["distance"]=99589, + ["mine_stage"]=36 + }, + [16600]={ + ["distance"]=99595, + ["mine_stage"]=3 + }, + [16601]={ + ["distance"]=99601, + ["mine_stage"]=64 + }, + [16602]={ + ["distance"]=99607, + ["mine_stage"]=8 + }, + [16603]={ + ["distance"]=99613, + ["mine_stage"]=45 + }, + [16604]={ + ["distance"]=99619, + ["mine_stage"]=12 + }, + [16605]={ + ["distance"]=99625, + ["mine_stage"]=35 + }, + [16606]={ + ["distance"]=99631, + ["mine_stage"]=48 + }, + [16607]={ + ["distance"]=99637, + ["mine_stage"]=32 + }, + [16608]={ + ["distance"]=99643, + ["mine_stage"]=58 + }, + [16609]={ + ["distance"]=99649, + ["mine_stage"]=10 + }, + [16610]={ + ["distance"]=99655, + ["mine_stage"]=43 + }, + [16611]={ + ["distance"]=99661, + ["mine_stage"]=25 + }, + [16612]={ + ["distance"]=99667, + ["mine_stage"]=25 + }, + [16613]={ + ["distance"]=99673, + ["mine_stage"]=13 + }, + [16614]={ + ["distance"]=99679, + ["mine_stage"]=35 + }, + [16615]={ + ["distance"]=99685, + ["mine_stage"]=33 + }, + [16616]={ + ["distance"]=99691, + ["mine_stage"]=59 + }, + [16617]={ + ["distance"]=99697, + ["mine_stage"]=22 + }, + [16618]={ + ["distance"]=99703, + ["mine_stage"]=1 + }, + [16619]={ + ["distance"]=99709, + ["mine_stage"]=51 + }, + [16620]={ + ["distance"]=99715, + ["mine_stage"]=22 + }, + [16621]={ + ["distance"]=99721, + ["mine_stage"]=39 + }, + [16622]={ + ["distance"]=99727, + ["mine_stage"]=9 + }, + [16623]={ + ["distance"]=99733, + ["mine_stage"]=54 + }, + [16624]={ + ["distance"]=99739, + ["mine_stage"]=54 + }, + [16625]={ + ["distance"]=99745, + ["mine_stage"]=4 + }, + [16626]={ + ["distance"]=99751, + ["mine_stage"]=48 + }, + [16627]={ + ["distance"]=99757, + ["mine_stage"]=53 + }, + [16628]={ + ["distance"]=99763, + ["mine_stage"]=15 + }, + [16629]={ + ["distance"]=99769, + ["mine_stage"]=49 + }, + [16630]={ + ["distance"]=99775, + ["mine_stage"]=40 + }, + [16631]={ + ["distance"]=99781, + ["mine_stage"]=55 + }, + [16632]={ + ["distance"]=99787, + ["mine_stage"]=1 + }, + [16633]={ + ["distance"]=99793, + ["mine_stage"]=1 + }, + [16634]={ + ["distance"]=99799, + ["mine_stage"]=47 + }, + [16635]={ + ["distance"]=99805, + ["mine_stage"]=21 + }, + [16636]={ + ["distance"]=99811, + ["mine_stage"]=33 + }, + [16637]={ + ["distance"]=99817, + ["mine_stage"]=60 + }, + [16638]={ + ["distance"]=99823, + ["mine_stage"]=43 + }, + [16639]={ + ["distance"]=99829, + ["mine_stage"]=32 + }, + [16640]={ + ["distance"]=99835, + ["mine_stage"]=48 + }, + [16641]={ + ["distance"]=99841, + ["mine_stage"]=36 + }, + [16642]={ + ["distance"]=99847, + ["mine_stage"]=15 + }, + [16643]={ + ["distance"]=99853, + ["mine_stage"]=53 + }, + [16644]={ + ["distance"]=99859, + ["mine_stage"]=14 + }, + [16645]={ + ["distance"]=99865, + ["mine_stage"]=39 + }, + [16646]={ + ["distance"]=99871, + ["mine_stage"]=24 + }, + [16647]={ + ["distance"]=99877, + ["mine_stage"]=54 + }, + [16648]={ + ["distance"]=99883, + ["mine_stage"]=16 + }, + [16649]={ + ["distance"]=99889, + ["mine_stage"]=34 + }, + [16650]={ + ["distance"]=99895, + ["mine_stage"]=43 + }, + [16651]={ + ["distance"]=99901, + ["mine_stage"]=67 + }, + [16652]={ + ["distance"]=99907, + ["mine_stage"]=59 + }, + [16653]={ + ["distance"]=99913, + ["mine_stage"]=44 + }, + [16654]={ + ["distance"]=99919, + ["mine_stage"]=40 + }, + [16655]={ + ["distance"]=99925, + ["mine_stage"]=19 + }, + [16656]={ + ["distance"]=99931, + ["mine_stage"]=28 + }, + [16657]={ + ["distance"]=99937, + ["mine_stage"]=38 + }, + [16658]={ + ["distance"]=99943, + ["mine_stage"]=30 + }, + [16659]={ + ["distance"]=99949, + ["mine_stage"]=14 + }, + [16660]={ + ["distance"]=99955, + ["mine_stage"]=40 + }, + [16661]={ + ["distance"]=99961, + ["mine_stage"]=5 + }, + [16662]={ + ["distance"]=99967, + ["mine_stage"]=44 + }, + [16663]={ + ["distance"]=99973, + ["mine_stage"]=44 + }, + [16664]={ + ["distance"]=99979, + ["mine_stage"]=15 + }, + [16665]={ + ["distance"]=99985, + ["mine_stage"]=11 + }, + [16666]={ + ["distance"]=99991, + ["mine_stage"]=36 + } +} +local config = { +data=mine,count=16666 +} +return config \ No newline at end of file diff --git a/lua/app/config/mine.lua.meta b/lua/app/config/mine.lua.meta new file mode 100644 index 00000000..0ceaf8ed --- /dev/null +++ b/lua/app/config/mine.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e7755abb0aa059e418bd2c550c9d725a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mine_element.lua b/lua/app/config/mine_element.lua new file mode 100644 index 00000000..e1fb7fc1 --- /dev/null +++ b/lua/app/config/mine_element.lua @@ -0,0 +1,508 @@ +local mine_element = { + [1]={ + ["type"]=1, + ["area"]={ + 1, + 1 + } + }, + [2]={ + ["type"]=2, + ["icon"]="mine_element_1", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + } + }, + [3]={ + ["type"]=2, + ["icon"]="mine_element_2", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=30, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [4]={ + ["type"]=2, + ["icon"]="mine_element_3", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [5]={ + ["type"]=2, + ["icon"]="mine_element_4", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=12, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [6]={ + ["type"]=2, + ["icon"]="mine_element_5", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=11, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [7]={ + ["type"]=2, + ["icon"]="mine_element_6", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=9, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [8]={ + ["type"]=2, + ["icon"]="mine_element_7", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=10, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [9]={ + ["type"]=2, + ["icon"]="mine_element_8", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=20, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [10]={ + ["type"]=3, + ["icon"]="mine_element_9", + ["pickaxe_cost"]=2, + ["area"]={ + 1, + 1 + } + }, + [11]={ + ["type"]=4, + ["icon"]="mine_element_10", + ["area"]={ + 2, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=25, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [12]={ + ["type"]=4, + ["icon"]="mine_element_11", + ["area"]={ + 3, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=25, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 2.0, + 2.0 + } + } + }, + [13]={ + ["type"]=4, + ["icon"]="mine_element_12", + ["area"]={ + 4, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=25, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 2.0, + 2.0 + } + } + }, + [14]={ + ["type"]=5, + ["icon"]="mine_element_11", + ["area"]={ + 3, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=26, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 2.0, + 2.0 + } + } + }, + [15]={ + ["type"]=5, + ["icon"]="mine_element_12", + ["area"]={ + 4, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=26, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 2.0, + 2.0 + } + } + }, + [16]={ + ["type"]=5, + ["icon"]="mine_element_13", + ["area"]={ + 6, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=26, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=26, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 2.0, + 3.0 + }, + { + 2.0, + 4.0 + } + } + }, + [17]={ + ["type"]=6, + ["icon"]="mine_element_11", + ["area"]={ + 3, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=27, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 2.0, + 2.0 + } + } + }, + [18]={ + ["type"]=6, + ["icon"]="mine_element_12", + ["area"]={ + 4, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=27, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=27, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 2.0, + 2.0 + }, + { + 2.0, + 3.0 + } + } + }, + [19]={ + ["type"]=6, + ["icon"]="mine_element_13", + ["area"]={ + 6, + 2 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=27, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + }, + { + ["type"]=1, + ["id"]=27, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 2.0, + 3.0 + }, + { + 2.0, + 4.0 + } + } + }, + [20]={ + ["type"]=2, + ["icon"]="mine_element_6", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=9, + ["count"]={ + ["value"]=3, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + }, + [21]={ + ["type"]=2, + ["icon"]="mine_element_14", + ["pickaxe_cost"]=1, + ["area"]={ + 1, + 1 + }, + ["reward"]={ + { + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=50, + ["unit"]=0 + } + } + }, + ["reward_location"]={ + { + 1.0, + 1.0 + } + } + } +} +local config = { +data=mine_element,count=21 +} +return config \ No newline at end of file diff --git a/lua/app/config/mine_element.lua.meta b/lua/app/config/mine_element.lua.meta new file mode 100644 index 00000000..20bfff61 --- /dev/null +++ b/lua/app/config/mine_element.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6496d3963c20cbd4483637564353ffba +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mine_item.lua b/lua/app/config/mine_item.lua new file mode 100644 index 00000000..555e31e7 --- /dev/null +++ b/lua/app/config/mine_item.lua @@ -0,0 +1,110 @@ +local mine_item = { + [9]={ + ["range"]={ + { + 0, + 0 + } + } + }, + [10]={ + ["range"]={ + { + 0, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + 3 + }, + { + 0, + -1 + }, + { + 0, + -2 + }, + { + 0, + -3 + }, + { + 1, + 3 + }, + { + -1, + 3 + } + } + }, + [11]={ + ["range"]={ + { + 0, + 0 + }, + { + 0, + 1 + }, + { + 0, + 2 + }, + { + 0, + -1 + }, + { + 0, + -2 + }, + { + 1, + 0 + }, + { + 1, + 1 + }, + { + 1, + -1 + }, + { + 2, + 0 + }, + { + -1, + 0 + }, + { + -1, + 1 + }, + { + -1, + -1 + }, + { + -2, + 0 + } + } + } +} +local config = { +data=mine_item,count=3 +} +return config \ No newline at end of file diff --git a/lua/app/config/mine_item.lua.meta b/lua/app/config/mine_item.lua.meta new file mode 100644 index 00000000..33fc7468 --- /dev/null +++ b/lua/app/config/mine_item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d777c3fbf97b22e40b965faf32516c1a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mine_research.lua b/lua/app/config/mine_research.lua new file mode 100644 index 00000000..29c55bb3 --- /dev/null +++ b/lua/app/config/mine_research.lua @@ -0,0 +1,5285 @@ +local mine_research = { + [1]={ + ["level"]=1, + ["icon"]="mine_research_1", + ["location"]=3, + ["next_mastery"]={ + 2, + 3 + }, + ["max_lv"]=1, + ["mineral_cost"]={ + 100 + }, + ["time_cost"]={ + 1800 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + } + }, + [2]={ + ["level"]=2, + ["icon"]="mine_research_3", + ["location"]=2, + ["before_mastery"]={ + 1 + }, + ["next_mastery"]={ + 4, + 5 + }, + ["max_lv"]=2, + ["mineral_cost"]={ + 950, + 1050 + }, + ["time_cost"]={ + 3420, + 3780 + }, + ["grow"]={ + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + } + }, + [3]={ + ["level"]=2, + ["icon"]="mine_research_2", + ["location"]=4, + ["before_mastery"]={ + 1 + }, + ["next_mastery"]={ + 5, + 6 + }, + ["max_lv"]=2, + ["mineral_cost"]={ + 950, + 1050 + }, + ["time_cost"]={ + 3420, + 3780 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + } + }, + [4]={ + ["level"]=3, + ["icon"]="mine_research_4", + ["location"]=1, + ["before_mastery"]={ + 2 + }, + ["next_mastery"]={ + 7 + }, + ["max_lv"]=3, + ["mineral_cost"]={ + 900, + 1000, + 1100 + }, + ["time_cost"]={ + 6480, + 7200, + 7920 + }, + ["grow"]={ + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + } + }, + [5]={ + ["level"]=3, + ["icon"]="mine_research_1", + ["location"]=3, + ["before_mastery"]={ + 2, + 3 + }, + ["next_mastery"]={ + 7, + 8 + }, + ["max_lv"]=3, + ["mineral_cost"]={ + 900, + 1000, + 1100 + }, + ["time_cost"]={ + 6480, + 7200, + 7920 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + } + }, + [6]={ + ["level"]=3, + ["icon"]="mine_research_6", + ["location"]=5, + ["before_mastery"]={ + 3 + }, + ["next_mastery"]={ + 8 + }, + ["max_lv"]=3, + ["mineral_cost"]={ + 900, + 1000, + 1100 + }, + ["time_cost"]={ + 6480, + 7200, + 7920 + }, + ["grow"]={ + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + } + }, + [7]={ + ["level"]=4, + ["icon"]="mine_research_5", + ["location"]=2, + ["before_mastery"]={ + 4, + 5 + }, + ["next_mastery"]={ + 9 + }, + ["max_lv"]=5, + ["mineral_cost"]={ + 1600, + 1800, + 2000, + 2200, + 2400 + }, + ["time_cost"]={ + 8640, + 9720, + 10800, + 11880, + 12960 + }, + ["grow"]={ + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + } + }, + [8]={ + ["level"]=4, + ["icon"]="mine_research_2", + ["location"]=4, + ["before_mastery"]={ + 5, + 6 + }, + ["next_mastery"]={ + 9 + }, + ["max_lv"]=5, + ["mineral_cost"]={ + 1600, + 1800, + 2000, + 2200, + 2400 + }, + ["time_cost"]={ + 8640, + 9720, + 10800, + 11880, + 12960 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + } + }, + [9]={ + ["level"]=5, + ["icon"]="mine_research_1", + ["location"]=3, + ["before_mastery"]={ + 7, + 8 + }, + ["next_mastery"]={ + 10, + 11 + }, + ["max_lv"]=5, + ["mineral_cost"]={ + 3200, + 3600, + 4000, + 4400, + 4800 + }, + ["time_cost"]={ + 11520, + 12960, + 14400, + 15840, + 17280 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + } + } + }, + [10]={ + ["level"]=6, + ["icon"]="mine_research_3", + ["location"]=2, + ["before_mastery"]={ + 9 + }, + ["next_mastery"]={ + 12, + 13 + }, + ["max_lv"]=10, + ["mineral_cost"]={ + 2750, + 3250, + 3750, + 4250, + 4750, + 5250, + 5750, + 6250, + 6750, + 7250 + }, + ["time_cost"]={ + 11880, + 14040, + 16200, + 18360, + 20520, + 22680, + 24840, + 27000, + 29160, + 31320 + }, + ["grow"]={ + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + } + }, + [11]={ + ["level"]=6, + ["icon"]="mine_research_2", + ["location"]=4, + ["before_mastery"]={ + 9 + }, + ["next_mastery"]={ + 13, + 14 + }, + ["max_lv"]=10, + ["mineral_cost"]={ + 2750, + 3250, + 3750, + 4250, + 4750, + 5250, + 5750, + 6250, + 6750, + 7250 + }, + ["time_cost"]={ + 11880, + 14040, + 16200, + 18360, + 20520, + 22680, + 24840, + 27000, + 29160, + 31320 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + } + } + }, + [12]={ + ["level"]=7, + ["icon"]="mine_research_4", + ["location"]=1, + ["before_mastery"]={ + 10 + }, + ["next_mastery"]={ + 15 + }, + ["max_lv"]=10, + ["mineral_cost"]={ + 3850, + 4550, + 5250, + 5950, + 6650, + 7350, + 8050, + 8750, + 9450, + 10150 + }, + ["time_cost"]={ + 15840, + 18720, + 21600, + 24480, + 27360, + 30240, + 33120, + 36000, + 38880, + 41760 + }, + ["grow"]={ + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + } + }, + [13]={ + ["level"]=7, + ["icon"]="mine_research_1", + ["location"]=3, + ["before_mastery"]={ + 10, + 11 + }, + ["next_mastery"]={ + 15, + 16 + }, + ["max_lv"]=10, + ["mineral_cost"]={ + 3850, + 4550, + 5250, + 5950, + 6650, + 7350, + 8050, + 8750, + 9450, + 10150 + }, + ["time_cost"]={ + 15840, + 18720, + 21600, + 24480, + 27360, + 30240, + 33120, + 36000, + 38880, + 41760 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + } + } + }, + [14]={ + ["level"]=7, + ["icon"]="mine_research_6", + ["location"]=5, + ["before_mastery"]={ + 11 + }, + ["next_mastery"]={ + 16 + }, + ["max_lv"]=10, + ["mineral_cost"]={ + 3850, + 4550, + 5250, + 5950, + 6650, + 7350, + 8050, + 8750, + 9450, + 10150 + }, + ["time_cost"]={ + 15840, + 18720, + 21600, + 24480, + 27360, + 30240, + 33120, + 36000, + 38880, + 41760 + }, + ["grow"]={ + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + } + }, + [15]={ + ["level"]=8, + ["icon"]="mine_research_5", + ["location"]=2, + ["before_mastery"]={ + 12, + 13 + }, + ["next_mastery"]={ + 17 + }, + ["max_lv"]=10, + ["mineral_cost"]={ + 5500, + 6500, + 7500, + 8500, + 9500, + 10500, + 11500, + 12500, + 13500, + 14500 + }, + ["time_cost"]={ + 19800, + 23400, + 27000, + 30600, + 34200, + 37800, + 41400, + 45000, + 48600, + 52200 + }, + ["grow"]={ + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + } + }, + [16]={ + ["level"]=8, + ["icon"]="mine_research_2", + ["location"]=4, + ["before_mastery"]={ + 13, + 14 + }, + ["next_mastery"]={ + 17 + }, + ["max_lv"]=10, + ["mineral_cost"]={ + 5500, + 6500, + 7500, + 8500, + 9500, + 10500, + 11500, + 12500, + 13500, + 14500 + }, + ["time_cost"]={ + 19800, + 23400, + 27000, + 30600, + 34200, + 37800, + 41400, + 45000, + 48600, + 52200 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + } + } + }, + [17]={ + ["level"]=9, + ["icon"]="mine_research_1", + ["location"]=3, + ["before_mastery"]={ + 15, + 16 + }, + ["next_mastery"]={ + 18, + 19 + }, + ["max_lv"]=10, + ["mineral_cost"]={ + 16500, + 19500, + 22500, + 25500, + 28500, + 31500, + 34500, + 37500, + 40500, + 43500 + }, + ["time_cost"]={ + 23760, + 28080, + 32400, + 36720, + 41040, + 45360, + 49680, + 54000, + 58320, + 62640 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + } + } + }, + [18]={ + ["level"]=10, + ["icon"]="mine_research_3", + ["location"]=2, + ["before_mastery"]={ + 17 + }, + ["next_mastery"]={ + 20, + 21 + }, + ["max_lv"]=20, + ["mineral_cost"]={ + 21000, + 23000, + 25000, + 27000, + 29000, + 31000, + 33000, + 35000, + 37000, + 39000, + 41000, + 43000, + 45000, + 47000, + 49000, + 51000, + 53000, + 55000, + 57000, + 59000 + }, + ["time_cost"]={ + 45360, + 49680, + 54000, + 58320, + 62640, + 66960, + 71280, + 75600, + 79920, + 84240, + 88560, + 92880, + 97200, + 101520, + 105840, + 110160, + 114480, + 118800, + 123120, + 127440 + }, + ["grow"]={ + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_own_limit", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + } + }, + [19]={ + ["level"]=10, + ["icon"]="mine_research_2", + ["location"]=4, + ["before_mastery"]={ + 17 + }, + ["next_mastery"]={ + 21, + 22 + }, + ["max_lv"]=20, + ["mineral_cost"]={ + 21000, + 23000, + 25000, + 27000, + 29000, + 31000, + 33000, + 35000, + 37000, + 39000, + 41000, + 43000, + 45000, + 47000, + 49000, + 51000, + 53000, + 55000, + 57000, + 59000 + }, + ["time_cost"]={ + 45360, + 49680, + 54000, + 58320, + 62640, + 66960, + 71280, + 75600, + 79920, + 84240, + 88560, + 92880, + 97200, + 101520, + 105840, + 110160, + 114480, + 118800, + 123120, + 127440 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + } + } + }, + [20]={ + ["level"]=11, + ["icon"]="mine_research_4", + ["location"]=1, + ["before_mastery"]={ + 18 + }, + ["next_mastery"]={ + 23 + }, + ["max_lv"]=20, + ["mineral_cost"]={ + 31500, + 34500, + 37500, + 40500, + 43500, + 46500, + 49500, + 52500, + 55500, + 58500, + 61500, + 64500, + 67500, + 70500, + 73500, + 76500, + 79500, + 82500, + 85500, + 88500 + }, + ["time_cost"]={ + 68040, + 74520, + 81000, + 87480, + 93960, + 100440, + 106920, + 113400, + 119880, + 126360, + 132840, + 139320, + 145800, + 152280, + 158760, + 165240, + 171720, + 178200, + 184680, + 191160 + }, + ["grow"]={ + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="pickaxe_recover_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + } + }, + [21]={ + ["level"]=11, + ["icon"]="mine_research_1", + ["location"]=3, + ["before_mastery"]={ + 18, + 19 + }, + ["next_mastery"]={ + 23, + 24 + }, + ["max_lv"]=20, + ["mineral_cost"]={ + 31500, + 34500, + 37500, + 40500, + 43500, + 46500, + 49500, + 52500, + 55500, + 58500, + 61500, + 64500, + 67500, + 70500, + 73500, + 76500, + 79500, + 82500, + 85500, + 88500 + }, + ["time_cost"]={ + 68040, + 74520, + 81000, + 87480, + 93960, + 100440, + 106920, + 113400, + 119880, + 126360, + 132840, + 139320, + 145800, + 152280, + 158760, + 165240, + 171720, + 178200, + 184680, + 191160 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + } + } + }, + [22]={ + ["level"]=11, + ["icon"]="mine_research_6", + ["location"]=5, + ["before_mastery"]={ + 19 + }, + ["next_mastery"]={ + 24 + }, + ["max_lv"]=20, + ["mineral_cost"]={ + 31500, + 34500, + 37500, + 40500, + 43500, + 46500, + 49500, + 52500, + 55500, + 58500, + 61500, + 64500, + 67500, + 70500, + 73500, + 76500, + 79500, + 82500, + 85500, + 88500 + }, + ["time_cost"]={ + 68040, + 74520, + 81000, + 87480, + 93960, + 100440, + 106920, + 113400, + 119880, + 126360, + 132840, + 139320, + 145800, + 152280, + 158760, + 165240, + 171720, + 178200, + 184680, + 191160 + }, + ["grow"]={ + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + }, + { + ["type"]="research_spd", + ["bignum"]={ + ["value"]=300, + ["unit"]=0 + } + } + } + }, + [23]={ + ["level"]=12, + ["icon"]="mine_research_5", + ["location"]=2, + ["before_mastery"]={ + 20, + 21 + }, + ["next_mastery"]={ + 25, + 26 + }, + ["max_lv"]=20, + ["mineral_cost"]={ + 52500, + 57500, + 62500, + 67500, + 72500, + 77500, + 82500, + 87500, + 92500, + 97500, + 102500, + 107500, + 112500, + 117500, + 122500, + 127500, + 132500, + 137500, + 142500, + 147500 + }, + ["time_cost"]={ + 90720, + 99360, + 108000, + 116640, + 125280, + 133920, + 142560, + 151200, + 159840, + 168480, + 177120, + 185760, + 194400, + 203040, + 211680, + 220320, + 228960, + 237600, + 246240, + 254880 + }, + ["grow"]={ + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="mineral_gain", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + } + }, + [24]={ + ["level"]=12, + ["icon"]="mine_research_2", + ["location"]=4, + ["before_mastery"]={ + 21, + 22 + }, + ["next_mastery"]={ + 26, + 27 + }, + ["max_lv"]=20, + ["mineral_cost"]={ + 52500, + 57500, + 62500, + 67500, + 72500, + 77500, + 82500, + 87500, + 92500, + 97500, + 102500, + 107500, + 112500, + 117500, + 122500, + 127500, + 132500, + 137500, + 142500, + 147500 + }, + ["time_cost"]={ + 90720, + 99360, + 108000, + 116640, + 125280, + 133920, + 142560, + 151200, + 159840, + 168480, + 177120, + 185760, + 194400, + 203040, + 211680, + 220320, + 228960, + 237600, + 246240, + 254880 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + } + } + }, + [25]={ + ["level"]=13, + ["icon"]="mine_research_2", + ["location"]=1, + ["before_mastery"]={ + 23 + }, + ["next_mastery"]={ + 28 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + } + } + }, + [26]={ + ["level"]=13, + ["icon"]="mine_research_1", + ["location"]=3, + ["before_mastery"]={ + 23, + 24 + }, + ["next_mastery"]={ + 29 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + } + } + }, + [27]={ + ["level"]=13, + ["icon"]="mine_research_2", + ["location"]=5, + ["before_mastery"]={ + 24 + }, + ["next_mastery"]={ + 30 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + } + } + }, + [28]={ + ["level"]=14, + ["icon"]="mine_research_1", + ["location"]=1, + ["before_mastery"]={ + 25 + }, + ["next_mastery"]={ + 31 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + } + } + }, + [29]={ + ["level"]=14, + ["icon"]="mine_research_2", + ["location"]=3, + ["before_mastery"]={ + 26 + }, + ["next_mastery"]={ + 32 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + } + } + }, + [30]={ + ["level"]=14, + ["icon"]="mine_research_1", + ["location"]=5, + ["before_mastery"]={ + 27 + }, + ["next_mastery"]={ + 33 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=256000, + ["unit"]=0 + } + } + } + }, + [31]={ + ["level"]=15, + ["icon"]="mine_research_2", + ["location"]=1, + ["before_mastery"]={ + 28 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + } + } + }, + [32]={ + ["level"]=15, + ["icon"]="mine_research_1", + ["location"]=3, + ["before_mastery"]={ + 29 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="atkp_6", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + } + } + }, + [33]={ + ["level"]=15, + ["icon"]="mine_research_2", + ["location"]=5, + ["before_mastery"]={ + 30 + }, + ["max_lv"]=30, + ["mineral_cost"]={ + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000, + 100000 + }, + ["time_cost"]={ + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000, + 216000 + }, + ["grow"]={ + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_3", + ["bignum"]={ + ["value"]=512000, + ["unit"]=0 + } + } + } + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/mine_research.lua.meta b/lua/app/config/mine_research.lua.meta new file mode 100644 index 00000000..9090841a --- /dev/null +++ b/lua/app/config/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f0d4ebe96af67f3468f6a5f9f0ff9fcb +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mine_research_time.lua b/lua/app/config/mine_research_time.lua new file mode 100644 index 00000000..c6965787 --- /dev/null +++ b/lua/app/config/mine_research_time.lua @@ -0,0 +1,34 @@ +local mine_research_time = { + [1]={ + ["time"]=0, + ["cost"]=0 + }, + [2]={ + ["time"]=3600, + ["cost"]=10 + }, + [3]={ + ["time"]=21600, + ["cost"]=5 + }, + [4]={ + ["time"]=86400, + ["cost"]=4 + }, + [5]={ + ["time"]=259200, + ["cost"]=3 + }, + [6]={ + ["time"]=864000, + ["cost"]=2 + }, + [7]={ + ["time"]=8640000, + ["cost"]=1 + } +} +local config = { +data=mine_research_time,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/mine_research_time.lua.meta b/lua/app/config/mine_research_time.lua.meta new file mode 100644 index 00000000..67b72429 --- /dev/null +++ b/lua/app/config/mine_research_time.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c4d13cb2884163e48a037760957842cb +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mine_stage.lua b/lua/app/config/mine_stage.lua new file mode 100644 index 00000000..e5938016 --- /dev/null +++ b/lua/app/config/mine_stage.lua @@ -0,0 +1,716 @@ +local mine_stage = { + [1]={ + ["mine_stage_row"]={ + 11, + 12, + 13, + 14, + 15, + 16 + } + }, + [2]={ + ["mine_stage_row"]={ + 21, + 22, + 23, + 24, + 25, + 26 + } + }, + [3]={ + ["mine_stage_row"]={ + 31, + 32, + 33, + 34, + 35, + 36 + } + }, + [4]={ + ["mine_stage_row"]={ + 41, + 42, + 43, + 44, + 45, + 46 + } + }, + [5]={ + ["mine_stage_row"]={ + 51, + 52, + 53, + 54, + 55, + 56 + } + }, + [6]={ + ["mine_stage_row"]={ + 61, + 62, + 63, + 64, + 65, + 66 + } + }, + [7]={ + ["mine_stage_row"]={ + 71, + 72, + 73, + 74, + 75, + 76 + } + }, + [8]={ + ["mine_stage_row"]={ + 81, + 82, + 83, + 84, + 85, + 86 + } + }, + [9]={ + ["mine_stage_row"]={ + 91, + 92, + 93, + 94, + 95, + 96 + } + }, + [10]={ + ["mine_stage_row"]={ + 101, + 102, + 103, + 104, + 105, + 106 + } + }, + [11]={ + ["mine_stage_row"]={ + 111, + 112, + 113, + 114, + 115, + 116 + } + }, + [12]={ + ["mine_stage_row"]={ + 121, + 122, + 123, + 124, + 125, + 126 + } + }, + [13]={ + ["mine_stage_row"]={ + 131, + 132, + 133, + 134, + 135, + 136 + } + }, + [14]={ + ["mine_stage_row"]={ + 141, + 142, + 143, + 144, + 145, + 146 + } + }, + [15]={ + ["mine_stage_row"]={ + 151, + 152, + 153, + 154, + 155, + 156 + } + }, + [16]={ + ["mine_stage_row"]={ + 161, + 162, + 163, + 164, + 165, + 166 + } + }, + [17]={ + ["mine_stage_row"]={ + 171, + 172, + 173, + 174, + 175, + 176 + } + }, + [18]={ + ["mine_stage_row"]={ + 181, + 182, + 183, + 184, + 185, + 186 + } + }, + [19]={ + ["mine_stage_row"]={ + 191, + 192, + 193, + 194, + 195, + 196 + } + }, + [20]={ + ["mine_stage_row"]={ + 201, + 202, + 203, + 204, + 205, + 206 + } + }, + [21]={ + ["mine_stage_row"]={ + 211, + 212, + 213, + 214, + 215, + 216 + } + }, + [22]={ + ["mine_stage_row"]={ + 221, + 222, + 223, + 224, + 225, + 226 + } + }, + [23]={ + ["mine_stage_row"]={ + 231, + 232, + 233, + 234, + 235, + 236 + } + }, + [24]={ + ["mine_stage_row"]={ + 241, + 242, + 243, + 244, + 245, + 246 + } + }, + [25]={ + ["mine_stage_row"]={ + 251, + 252, + 253, + 254, + 255, + 256 + } + }, + [26]={ + ["mine_stage_row"]={ + 261, + 262, + 263, + 264, + 265, + 266 + } + }, + [27]={ + ["mine_stage_row"]={ + 271, + 272, + 273, + 274, + 275, + 276 + } + }, + [28]={ + ["mine_stage_row"]={ + 281, + 282, + 283, + 284, + 285, + 286 + } + }, + [29]={ + ["mine_stage_row"]={ + 291, + 292, + 293, + 294, + 295, + 296 + } + }, + [30]={ + ["mine_stage_row"]={ + 301, + 302, + 303, + 304, + 305, + 306 + } + }, + [31]={ + ["mine_stage_row"]={ + 311, + 312, + 313, + 314, + 315, + 316 + } + }, + [32]={ + ["mine_stage_row"]={ + 321, + 322, + 323, + 324, + 325, + 326 + } + }, + [33]={ + ["mine_stage_row"]={ + 331, + 332, + 333, + 334, + 335, + 336 + } + }, + [34]={ + ["mine_stage_row"]={ + 341, + 342, + 343, + 344, + 345, + 346 + } + }, + [35]={ + ["mine_stage_row"]={ + 351, + 352, + 353, + 354, + 355, + 356 + } + }, + [36]={ + ["mine_stage_row"]={ + 361, + 362, + 363, + 364, + 365, + 366 + } + }, + [37]={ + ["mine_stage_row"]={ + 371, + 372, + 373, + 374, + 375, + 376 + } + }, + [38]={ + ["mine_stage_row"]={ + 381, + 382, + 383, + 384, + 385, + 386 + } + }, + [39]={ + ["mine_stage_row"]={ + 391, + 392, + 393, + 394, + 395, + 396 + } + }, + [40]={ + ["mine_stage_row"]={ + 401, + 402, + 403, + 404, + 405, + 406 + } + }, + [41]={ + ["mine_stage_row"]={ + 411, + 412, + 413, + 414, + 415, + 416 + } + }, + [42]={ + ["mine_stage_row"]={ + 421, + 422, + 423, + 424, + 425, + 426 + } + }, + [43]={ + ["mine_stage_row"]={ + 431, + 432, + 433, + 434, + 435, + 436 + } + }, + [44]={ + ["mine_stage_row"]={ + 441, + 442, + 443, + 444, + 445, + 446 + } + }, + [45]={ + ["mine_stage_row"]={ + 451, + 452, + 453, + 454, + 455, + 456 + } + }, + [46]={ + ["mine_stage_row"]={ + 461, + 462, + 463, + 464, + 465, + 466 + } + }, + [47]={ + ["mine_stage_row"]={ + 471, + 472, + 473, + 474, + 475, + 476 + } + }, + [48]={ + ["mine_stage_row"]={ + 481, + 482, + 483, + 484, + 485, + 486 + } + }, + [49]={ + ["mine_stage_row"]={ + 491, + 492, + 493, + 494, + 495, + 496 + } + }, + [50]={ + ["mine_stage_row"]={ + 501, + 502, + 503, + 504, + 505, + 506 + } + }, + [51]={ + ["mine_stage_row"]={ + 511, + 512, + 513, + 514, + 515, + 516 + } + }, + [52]={ + ["mine_stage_row"]={ + 521, + 522, + 523, + 524, + 525, + 526 + } + }, + [53]={ + ["mine_stage_row"]={ + 531, + 532, + 533, + 534, + 535, + 536 + } + }, + [54]={ + ["mine_stage_row"]={ + 541, + 542, + 543, + 544, + 545, + 546 + } + }, + [55]={ + ["mine_stage_row"]={ + 551, + 552, + 553, + 554, + 555, + 556 + } + }, + [56]={ + ["mine_stage_row"]={ + 561, + 562, + 563, + 564, + 565, + 566 + } + }, + [57]={ + ["mine_stage_row"]={ + 571, + 572, + 573, + 574, + 575, + 576 + } + }, + [58]={ + ["mine_stage_row"]={ + 581, + 582, + 583, + 584, + 585, + 586 + } + }, + [59]={ + ["mine_stage_row"]={ + 591, + 592, + 593, + 594, + 595, + 596 + } + }, + [60]={ + ["mine_stage_row"]={ + 601, + 602, + 603, + 604, + 605, + 606 + } + }, + [61]={ + ["mine_stage_row"]={ + 611, + 612, + 613, + 614, + 615, + 616 + } + }, + [62]={ + ["mine_stage_row"]={ + 621, + 622, + 623, + 624, + 625, + 626 + } + }, + [63]={ + ["mine_stage_row"]={ + 631, + 632, + 633, + 634, + 635, + 636 + } + }, + [64]={ + ["mine_stage_row"]={ + 641, + 642, + 643, + 644, + 645, + 646 + } + }, + [65]={ + ["mine_stage_row"]={ + 651, + 652, + 653, + 654, + 655, + 656 + } + }, + [66]={ + ["mine_stage_row"]={ + 661, + 662, + 663, + 664, + 665, + 666 + } + }, + [67]={ + ["mine_stage_row"]={ + 671, + 672, + 673, + 674, + 675, + 676 + } + }, + [68]={ + ["mine_stage_row"]={ + 681, + 682, + 683, + 684, + 685, + 686 + } + }, + [69]={ + ["mine_stage_row"]={ + 691, + 692, + 693, + 694, + 695, + 696 + } + }, + [70]={ + ["mine_stage_row"]={ + 701, + 702, + 703, + 704, + 705, + 706 + } + }, + [71]={ + ["mine_stage_row"]={ + 711, + 712, + 713, + 714, + 715, + 716 + } + } +} +local config = { +data=mine_stage,count=71 +} +return config \ No newline at end of file diff --git a/lua/app/config/mine_stage.lua.meta b/lua/app/config/mine_stage.lua.meta new file mode 100644 index 00000000..3ab088ac --- /dev/null +++ b/lua/app/config/mine_stage.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 332411f07ba21e54e95389ebfdbf9260 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/mine_stage_row.lua b/lua/app/config/mine_stage_row.lua new file mode 100644 index 00000000..14f3b646 --- /dev/null +++ b/lua/app/config/mine_stage_row.lua @@ -0,0 +1,3414 @@ +local mine_stage_row = { + [11]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [12]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [13]={ + ["column_1_element"]=1, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [14]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [15]={ + ["column_1_element"]=2, + ["column_2_element"]=7, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=7, + ["column_6_element"]=2 + }, + [16]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [21]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [22]={ + ["column_1_element"]=10, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [23]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=1, + ["column_6_element"]=10 + }, + [24]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=7, + ["column_6_element"]=10 + }, + [25]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=7, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [26]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [31]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [32]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=1 + }, + [33]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [34]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=1 + }, + [35]={ + ["column_1_element"]=10, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [36]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [41]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [42]={ + ["column_1_element"]=1, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [43]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [44]={ + ["column_1_element"]=7, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [45]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [46]={ + ["column_1_element"]=4, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [51]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [52]={ + ["column_1_element"]=1, + ["column_2_element"]=10, + ["column_3_element"]=1, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=10 + }, + [53]={ + ["column_1_element"]=10, + ["column_2_element"]=1, + ["column_3_element"]=10, + ["column_4_element"]=1, + ["column_5_element"]=10, + ["column_6_element"]=1 + }, + [54]={ + ["column_1_element"]=1, + ["column_2_element"]=10, + ["column_3_element"]=1, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=10 + }, + [55]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [56]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [61]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [62]={ + ["column_1_element"]=1, + ["column_2_element"]=10, + ["column_3_element"]=1, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=10 + }, + [63]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [64]={ + ["column_1_element"]=1, + ["column_2_element"]=10, + ["column_3_element"]=1, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=10 + }, + [65]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [66]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [71]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [72]={ + ["column_1_element"]=7, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [73]={ + ["column_1_element"]=7, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [74]={ + ["column_1_element"]=7, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=3 + }, + [75]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [76]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [81]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [82]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [83]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [84]={ + ["column_1_element"]=1, + ["column_2_element"]=7, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [85]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [86]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [91]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [92]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [93]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=4, + ["column_4_element"]=7, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [94]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=7, + ["column_5_element"]=3, + ["column_6_element"]=3 + }, + [95]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [96]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=3 + }, + [101]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [102]={ + ["column_1_element"]=10, + ["column_2_element"]=1, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [103]={ + ["column_1_element"]=4, + ["column_2_element"]=1, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=1, + ["column_6_element"]=4 + }, + [104]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=10 + }, + [105]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [106]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [111]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [112]={ + ["column_1_element"]=7, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [113]={ + ["column_1_element"]=21, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [114]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=7 + }, + [115]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=21 + }, + [116]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [121]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [122]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=3 + }, + [123]={ + ["column_1_element"]=9, + ["column_2_element"]=1, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [124]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=1, + ["column_6_element"]=9 + }, + [125]={ + ["column_1_element"]=3, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=7 + }, + [126]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [131]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=2 + }, + [132]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [133]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [134]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [135]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [136]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [141]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [142]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [143]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [144]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=1 + }, + [145]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=10 + }, + [146]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [151]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=7, + ["column_4_element"]=3, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [152]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [153]={ + ["column_1_element"]=7, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [154]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [155]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=3, + ["column_4_element"]=7, + ["column_5_element"]=7, + ["column_6_element"]=3 + }, + [156]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [161]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [162]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [163]={ + ["column_1_element"]=7, + ["column_2_element"]=4, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [164]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [165]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [166]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=1, + ["column_5_element"]=4, + ["column_6_element"]=2 + }, + [171]={ + ["column_1_element"]=1, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [172]={ + ["column_1_element"]=1, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=7, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [173]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [174]={ + ["column_1_element"]=21, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=7, + ["column_6_element"]=21 + }, + [175]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [176]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [181]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [182]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [183]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [184]={ + ["column_1_element"]=2, + ["column_2_element"]=9, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=4, + ["column_6_element"]=10 + }, + [185]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=4, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [186]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [191]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [192]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [193]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=4, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [194]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=1, + ["column_6_element"]=2 + }, + [195]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [196]={ + ["column_1_element"]=1, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=4 + }, + [201]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [202]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=9, + ["column_6_element"]=2 + }, + [203]={ + ["column_1_element"]=10, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [204]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [205]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=4, + ["column_6_element"]=10 + }, + [206]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=7, + ["column_4_element"]=7, + ["column_5_element"]=1, + ["column_6_element"]=10 + }, + [211]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=21 + }, + [212]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=10, + ["column_4_element"]=7, + ["column_5_element"]=7, + ["column_6_element"]=2 + }, + [213]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=21, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [214]={ + ["column_1_element"]=9, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=9, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [215]={ + ["column_1_element"]=2, + ["column_2_element"]=7, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [216]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=1, + ["column_6_element"]=2 + }, + [221]={ + ["column_1_element"]=3, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [222]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=3 + }, + [223]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [224]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [225]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [226]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [231]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [232]={ + ["column_1_element"]=2, + ["column_2_element"]=20, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [233]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [234]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=20, + ["column_6_element"]=2 + }, + [235]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [236]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [241]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [242]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=9 + }, + [243]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=2 + }, + [244]={ + ["column_1_element"]=2, + ["column_2_element"]=9, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [245]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=7, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [246]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [251]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [252]={ + ["column_1_element"]=2, + ["column_2_element"]=7, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [253]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=4, + ["column_4_element"]=7, + ["column_5_element"]=1, + ["column_6_element"]=2 + }, + [254]={ + ["column_1_element"]=10, + ["column_2_element"]=4, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=1 + }, + [255]={ + ["column_1_element"]=1, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=7, + ["column_6_element"]=10 + }, + [256]={ + ["column_1_element"]=2, + ["column_2_element"]=7, + ["column_3_element"]=9, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=1 + }, + [261]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [262]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=3, + ["column_4_element"]=4, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [263]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [264]={ + ["column_1_element"]=2, + ["column_2_element"]=7, + ["column_3_element"]=9, + ["column_4_element"]=7, + ["column_5_element"]=3, + ["column_6_element"]=9 + }, + [265]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [266]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [271]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=7, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [272]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [273]={ + ["column_1_element"]=10, + ["column_2_element"]=4, + ["column_3_element"]=9, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [274]={ + ["column_1_element"]=10, + ["column_2_element"]=7, + ["column_3_element"]=21, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [275]={ + ["column_1_element"]=10, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [276]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [281]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=9, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [282]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [283]={ + ["column_1_element"]=1, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [284]={ + ["column_1_element"]=1, + ["column_2_element"]=10, + ["column_3_element"]=5, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=7 + }, + [285]={ + ["column_1_element"]=1, + ["column_2_element"]=9, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [286]={ + ["column_1_element"]=2, + ["column_2_element"]=9, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [291]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [292]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [293]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=7 + }, + [294]={ + ["column_1_element"]=2, + ["column_2_element"]=20, + ["column_3_element"]=3, + ["column_4_element"]=21, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [295]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [296]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [301]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [302]={ + ["column_1_element"]=3, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [303]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [304]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=4, + ["column_4_element"]=7, + ["column_5_element"]=9, + ["column_6_element"]=2 + }, + [305]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [306]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [311]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [312]={ + ["column_1_element"]=3, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [313]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=3 + }, + [314]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [315]={ + ["column_1_element"]=3, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [316]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=3 + }, + [321]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [322]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=7, + ["column_6_element"]=2 + }, + [323]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [324]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [325]={ + ["column_1_element"]=2, + ["column_2_element"]=7, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=4, + ["column_6_element"]=2 + }, + [326]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [331]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [332]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [333]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [334]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=9, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [335]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [336]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [341]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [342]={ + ["column_1_element"]=2, + ["column_2_element"]=21, + ["column_3_element"]=1, + ["column_4_element"]=9, + ["column_5_element"]=1, + ["column_6_element"]=21 + }, + [343]={ + ["column_1_element"]=7, + ["column_2_element"]=10, + ["column_3_element"]=6, + ["column_4_element"]=10, + ["column_5_element"]=7, + ["column_6_element"]=10 + }, + [344]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [345]={ + ["column_1_element"]=7, + ["column_2_element"]=10, + ["column_3_element"]=6, + ["column_4_element"]=10, + ["column_5_element"]=7, + ["column_6_element"]=10 + }, + [346]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [351]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [352]={ + ["column_1_element"]=7, + ["column_2_element"]=10, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=7, + ["column_6_element"]=10 + }, + [353]={ + ["column_1_element"]=10, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=7, + ["column_5_element"]=10, + ["column_6_element"]=7 + }, + [354]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [355]={ + ["column_1_element"]=4, + ["column_2_element"]=10, + ["column_3_element"]=4, + ["column_4_element"]=10, + ["column_5_element"]=4, + ["column_6_element"]=10 + }, + [356]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [361]={ + ["column_1_element"]=1, + ["column_2_element"]=2, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [362]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [363]={ + ["column_1_element"]=10, + ["column_2_element"]=7, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=7, + ["column_6_element"]=10 + }, + [364]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=4, + ["column_6_element"]=2 + }, + [365]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [366]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [371]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [372]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=8, + ["column_4_element"]=10, + ["column_5_element"]=7, + ["column_6_element"]=2 + }, + [373]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=9, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [374]={ + ["column_1_element"]=3, + ["column_2_element"]=1, + ["column_3_element"]=3, + ["column_4_element"]=9, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [375]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=9, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [376]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=4, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [381]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [382]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [383]={ + ["column_1_element"]=2, + ["column_2_element"]=6, + ["column_3_element"]=7, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [384]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=4, + ["column_5_element"]=4, + ["column_6_element"]=2 + }, + [385]={ + ["column_1_element"]=2, + ["column_2_element"]=1, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=21 + }, + [386]={ + ["column_1_element"]=3, + ["column_2_element"]=1, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [391]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [392]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=5, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [393]={ + ["column_1_element"]=2, + ["column_2_element"]=9, + ["column_3_element"]=2, + ["column_4_element"]=9, + ["column_5_element"]=2, + ["column_6_element"]=7 + }, + [394]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=7, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [395]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [396]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [401]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [402]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=6, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [403]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=5, + ["column_6_element"]=10 + }, + [404]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=4, + ["column_6_element"]=10 + }, + [405]={ + ["column_1_element"]=1, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [406]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [411]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [412]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [413]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [414]={ + ["column_1_element"]=2, + ["column_2_element"]=21, + ["column_3_element"]=9, + ["column_4_element"]=21, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [415]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=9, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [416]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=9, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [421]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [422]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [423]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=2, + ["column_4_element"]=8, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [424]={ + ["column_1_element"]=4, + ["column_2_element"]=1, + ["column_3_element"]=9, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [425]={ + ["column_1_element"]=2, + ["column_2_element"]=9, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [426]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=4, + ["column_6_element"]=2 + }, + [431]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [432]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [433]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [434]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=7, + ["column_4_element"]=21, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [435]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [436]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [441]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [442]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [443]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=9, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [444]={ + ["column_1_element"]=3, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=7, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [445]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [446]={ + ["column_1_element"]=1, + ["column_2_element"]=10, + ["column_3_element"]=1, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [451]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [452]={ + ["column_1_element"]=7, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=7 + }, + [453]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [454]={ + ["column_1_element"]=6, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=8 + }, + [455]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [456]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [461]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [462]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [463]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=10, + ["column_5_element"]=9, + ["column_6_element"]=10 + }, + [464]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=5, + ["column_6_element"]=10 + }, + [465]={ + ["column_1_element"]=7, + ["column_2_element"]=10, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=9, + ["column_6_element"]=10 + }, + [466]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [471]={ + ["column_1_element"]=21, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [472]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [473]={ + ["column_1_element"]=10, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [474]={ + ["column_1_element"]=10, + ["column_2_element"]=4, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=3, + ["column_6_element"]=3 + }, + [475]={ + ["column_1_element"]=10, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [476]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [481]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [482]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [483]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=8, + ["column_4_element"]=9, + ["column_5_element"]=4, + ["column_6_element"]=2 + }, + [484]={ + ["column_1_element"]=1, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=1 + }, + [485]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [486]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [491]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [492]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=8, + ["column_4_element"]=10, + ["column_5_element"]=7, + ["column_6_element"]=2 + }, + [493]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=9, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [494]={ + ["column_1_element"]=3, + ["column_2_element"]=1, + ["column_3_element"]=3, + ["column_4_element"]=9, + ["column_5_element"]=2, + ["column_6_element"]=1 + }, + [495]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=9, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [496]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=4, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [501]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [502]={ + ["column_1_element"]=1, + ["column_2_element"]=1, + ["column_3_element"]=1, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [503]={ + ["column_1_element"]=2, + ["column_2_element"]=6, + ["column_3_element"]=7, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [504]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=4, + ["column_5_element"]=4, + ["column_6_element"]=2 + }, + [505]={ + ["column_1_element"]=10, + ["column_2_element"]=1, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=21 + }, + [506]={ + ["column_1_element"]=3, + ["column_2_element"]=1, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [511]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [512]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=5, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [513]={ + ["column_1_element"]=10, + ["column_2_element"]=9, + ["column_3_element"]=10, + ["column_4_element"]=9, + ["column_5_element"]=10, + ["column_6_element"]=7 + }, + [514]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [515]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [516]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [521]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [522]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=6, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [523]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=5, + ["column_6_element"]=10 + }, + [524]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=4, + ["column_6_element"]=10 + }, + [525]={ + ["column_1_element"]=1, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [526]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [531]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [532]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [533]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [534]={ + ["column_1_element"]=2, + ["column_2_element"]=21, + ["column_3_element"]=9, + ["column_4_element"]=21, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [535]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=9, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [536]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=9, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [541]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [542]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [543]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=2, + ["column_4_element"]=8, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [544]={ + ["column_1_element"]=4, + ["column_2_element"]=1, + ["column_3_element"]=9, + ["column_4_element"]=2, + ["column_5_element"]=3, + ["column_6_element"]=2 + }, + [545]={ + ["column_1_element"]=2, + ["column_2_element"]=9, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [546]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=4, + ["column_6_element"]=10 + }, + [551]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [552]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [553]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [554]={ + ["column_1_element"]=2, + ["column_2_element"]=3, + ["column_3_element"]=7, + ["column_4_element"]=21, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [555]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [556]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [561]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [562]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [563]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=9, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [564]={ + ["column_1_element"]=3, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=7, + ["column_5_element"]=3, + ["column_6_element"]=10 + }, + [565]={ + ["column_1_element"]=10, + ["column_2_element"]=3, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [566]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [571]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [572]={ + ["column_1_element"]=7, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=7 + }, + [573]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [574]={ + ["column_1_element"]=6, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=8 + }, + [575]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=3, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [576]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [581]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=3, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [582]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [583]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=9, + ["column_6_element"]=10 + }, + [584]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=5, + ["column_6_element"]=10 + }, + [585]={ + ["column_1_element"]=7, + ["column_2_element"]=10, + ["column_3_element"]=7, + ["column_4_element"]=10, + ["column_5_element"]=9, + ["column_6_element"]=10 + }, + [586]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [591]={ + ["column_1_element"]=21, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [592]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [593]={ + ["column_1_element"]=10, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [594]={ + ["column_1_element"]=10, + ["column_2_element"]=4, + ["column_3_element"]=10, + ["column_4_element"]=3, + ["column_5_element"]=3, + ["column_6_element"]=3 + }, + [595]={ + ["column_1_element"]=10, + ["column_2_element"]=7, + ["column_3_element"]=10, + ["column_4_element"]=1, + ["column_5_element"]=1, + ["column_6_element"]=1 + }, + [596]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [601]={ + ["column_1_element"]=3, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=3 + }, + [602]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [603]={ + ["column_1_element"]=2, + ["column_2_element"]=4, + ["column_3_element"]=8, + ["column_4_element"]=9, + ["column_5_element"]=4, + ["column_6_element"]=2 + }, + [604]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=3 + }, + [605]={ + ["column_1_element"]=2, + ["column_2_element"]=2, + ["column_3_element"]=3, + ["column_4_element"]=3, + ["column_5_element"]=2, + ["column_6_element"]=2 + }, + [606]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [611]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [612]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [613]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=11, + ["column_4_element"]=11, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [614]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=11, + ["column_4_element"]=11, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [615]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [616]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [621]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [622]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=2, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [623]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=12, + ["column_4_element"]=12, + ["column_5_element"]=12, + ["column_6_element"]=10 + }, + [624]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=12, + ["column_4_element"]=12, + ["column_5_element"]=12, + ["column_6_element"]=10 + }, + [625]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [626]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [631]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [632]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [633]={ + ["column_1_element"]=10, + ["column_2_element"]=13, + ["column_3_element"]=13, + ["column_4_element"]=13, + ["column_5_element"]=13, + ["column_6_element"]=10 + }, + [634]={ + ["column_1_element"]=10, + ["column_2_element"]=13, + ["column_3_element"]=13, + ["column_4_element"]=13, + ["column_5_element"]=13, + ["column_6_element"]=10 + }, + [635]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [636]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [641]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [642]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [643]={ + ["column_1_element"]=10, + ["column_2_element"]=14, + ["column_3_element"]=14, + ["column_4_element"]=14, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [644]={ + ["column_1_element"]=10, + ["column_2_element"]=14, + ["column_3_element"]=14, + ["column_4_element"]=14, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [645]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [646]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [651]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [652]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [653]={ + ["column_1_element"]=10, + ["column_2_element"]=15, + ["column_3_element"]=15, + ["column_4_element"]=15, + ["column_5_element"]=15, + ["column_6_element"]=10 + }, + [654]={ + ["column_1_element"]=10, + ["column_2_element"]=15, + ["column_3_element"]=15, + ["column_4_element"]=15, + ["column_5_element"]=15, + ["column_6_element"]=10 + }, + [655]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [656]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [661]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [662]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [663]={ + ["column_1_element"]=16, + ["column_2_element"]=16, + ["column_3_element"]=16, + ["column_4_element"]=16, + ["column_5_element"]=16, + ["column_6_element"]=16 + }, + [664]={ + ["column_1_element"]=16, + ["column_2_element"]=16, + ["column_3_element"]=16, + ["column_4_element"]=16, + ["column_5_element"]=16, + ["column_6_element"]=16 + }, + [665]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [666]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [671]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [672]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=2, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [673]={ + ["column_1_element"]=10, + ["column_2_element"]=17, + ["column_3_element"]=17, + ["column_4_element"]=17, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [674]={ + ["column_1_element"]=10, + ["column_2_element"]=17, + ["column_3_element"]=17, + ["column_4_element"]=17, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [675]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [676]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [681]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=2, + ["column_4_element"]=2, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [682]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=10 + }, + [683]={ + ["column_1_element"]=10, + ["column_2_element"]=18, + ["column_3_element"]=18, + ["column_4_element"]=18, + ["column_5_element"]=18, + ["column_6_element"]=10 + }, + [684]={ + ["column_1_element"]=10, + ["column_2_element"]=18, + ["column_3_element"]=18, + ["column_4_element"]=18, + ["column_5_element"]=18, + ["column_6_element"]=10 + }, + [685]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [686]={ + ["column_1_element"]=10, + ["column_2_element"]=2, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [691]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [692]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [693]={ + ["column_1_element"]=19, + ["column_2_element"]=19, + ["column_3_element"]=19, + ["column_4_element"]=19, + ["column_5_element"]=19, + ["column_6_element"]=19 + }, + [694]={ + ["column_1_element"]=19, + ["column_2_element"]=19, + ["column_3_element"]=19, + ["column_4_element"]=19, + ["column_5_element"]=19, + ["column_6_element"]=19 + }, + [695]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [696]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [701]={ + ["column_1_element"]=3, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [702]={ + ["column_1_element"]=2, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=10 + }, + [703]={ + ["column_1_element"]=6, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [704]={ + ["column_1_element"]=21, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [705]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [706]={ + ["column_1_element"]=8, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=4 + }, + [711]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [712]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=7 + }, + [713]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=2 + }, + [714]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=10, + ["column_6_element"]=1 + }, + [715]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=1, + ["column_6_element"]=2 + }, + [716]={ + ["column_1_element"]=10, + ["column_2_element"]=10, + ["column_3_element"]=10, + ["column_4_element"]=10, + ["column_5_element"]=2, + ["column_6_element"]=1 + } +} +local config = { +data=mine_stage_row,count=426 +} +return config \ No newline at end of file diff --git a/lua/app/config/mine_stage_row.lua.meta b/lua/app/config/mine_stage_row.lua.meta new file mode 100644 index 00000000..c5fbe4fd --- /dev/null +++ b/lua/app/config/mine_stage_row.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7dc869b8b8c96ec4dbd3389908e62037 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/monster_base.lua b/lua/app/config/monster_base.lua new file mode 100644 index 00000000..c5d1c4c3 --- /dev/null +++ b/lua/app/config/monster_base.lua @@ -0,0 +1,389 @@ +local monster_base = { + [1]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0001", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [2]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0002", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [3]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0003", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [4]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0004", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [5]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0005", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [6]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0006", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [7]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0007", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [8]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0008", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [9]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0009", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [10]={ + ["size"]=1, + ["collision_radius"]=60, + ["model_id"]="m0010", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1001]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1001", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1002]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1002", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1003]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1003", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1004]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1004", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1005]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1005", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1006]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1006", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1007]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1007", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1008]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1008", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1009]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1009", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1010]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1010", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1011]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1011", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1012]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1012", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [1013]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m1013", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [2001]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m2001", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [2002]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m2002", + ["model_fight"]=1.0, + ["fx_fight"]=1.0 + }, + [2003]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m2003", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m2003" + }, + [30011]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3001_1", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3001_1" + }, + [30012]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3001_2", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3001_2" + }, + [30013]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3001_3", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3001_3" + }, + [30014]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3001_4", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3001_4" + }, + [30015]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3001_5", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3001_5" + }, + [30016]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3001_6", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3001_6" + }, + [3002]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3002", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3002" + }, + [3003]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3003", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3003" + }, + [3004]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3004", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3004" + }, + [3005]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3005", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3005" + }, + [3006]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3006", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3006" + }, + [3007]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3007", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3007" + }, + [3008]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3008", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3008" + }, + [3009]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3009", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3009" + }, + [3010]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3010", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3010" + }, + [3011]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3011", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3011" + }, + [3012]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3012", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3012" + }, + [3013]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3013", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3013" + }, + [3014]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3014", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3014" + }, + [3015]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3015", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3015" + }, + [3016]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3016", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3016" + }, + [3017]={ + ["size"]=3, + ["collision_radius"]=120, + ["model_id"]="m3017", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3017" + }, + [3018]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3018", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3018" + }, + [3019]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3019", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3019" + }, + [3020]={ + ["size"]=2, + ["collision_radius"]=60, + ["model_id"]="m3020", + ["model_fight"]=1.0, + ["fx_fight"]=1.0, + ["icon"]="avatar_m3020" + } +} +local config = { +data=monster_base,count=51 +} +return config \ No newline at end of file diff --git a/lua/app/config/monster_base.lua.meta b/lua/app/config/monster_base.lua.meta new file mode 100644 index 00000000..99f2f683 --- /dev/null +++ b/lua/app/config/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8027af52fb917414ea749fba68a163e3 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/monster_position.lua b/lua/app/config/monster_position.lua new file mode 100644 index 00000000..6337eae7 --- /dev/null +++ b/lua/app/config/monster_position.lua @@ -0,0 +1,606 @@ +local monster_position = { + [101]={ + ["position"]={ + 5.0, + 4.0 + } + }, + [102]={ + ["position"]={ + 5.0, + 3.0 + } + }, + [103]={ + ["position"]={ + 5.0, + 2.0 + } + }, + [104]={ + ["position"]={ + 5.0, + 1.0 + } + }, + [105]={ + ["position"]={ + 5.0, + 0.0 + } + }, + [106]={ + ["position"]={ + 5.0, + -1.0 + } + }, + [107]={ + ["position"]={ + 5.0, + -2.0 + } + }, + [108]={ + ["position"]={ + 5.0, + -3.0 + } + }, + [109]={ + ["position"]={ + 5.0, + -4.0 + } + }, + [110]={ + ["position"]={ + 5.0, + -5.0 + } + }, + [201]={ + ["position"]={ + 4.0, + 4.0 + } + }, + [202]={ + ["position"]={ + 4.0, + 3.0 + } + }, + [203]={ + ["position"]={ + 4.0, + 2.0 + } + }, + [204]={ + ["position"]={ + 4.0, + 1.0 + } + }, + [205]={ + ["position"]={ + 4.0, + 0.0 + } + }, + [206]={ + ["position"]={ + 4.0, + -1.0 + } + }, + [207]={ + ["position"]={ + 4.0, + -2.0 + } + }, + [208]={ + ["position"]={ + 4.0, + -3.0 + } + }, + [209]={ + ["position"]={ + 4.0, + -4.0 + } + }, + [210]={ + ["position"]={ + 4.0, + -5.0 + } + }, + [301]={ + ["position"]={ + 3.0, + 4.0 + } + }, + [302]={ + ["position"]={ + 3.0, + 3.0 + } + }, + [303]={ + ["position"]={ + 3.0, + 2.0 + } + }, + [304]={ + ["position"]={ + 3.0, + 1.0 + } + }, + [305]={ + ["position"]={ + 3.0, + 0.0 + } + }, + [306]={ + ["position"]={ + 3.0, + -1.0 + } + }, + [307]={ + ["position"]={ + 3.0, + -2.0 + } + }, + [308]={ + ["position"]={ + 3.0, + -3.0 + } + }, + [309]={ + ["position"]={ + 3.0, + -4.0 + } + }, + [310]={ + ["position"]={ + 3.0, + -5.0 + } + }, + [401]={ + ["position"]={ + 2.0, + 4.0 + } + }, + [402]={ + ["position"]={ + 2.0, + 3.0 + } + }, + [403]={ + ["position"]={ + 2.0, + 2.0 + } + }, + [404]={ + ["position"]={ + 2.0, + 1.0 + } + }, + [405]={ + ["position"]={ + 2.0, + 0.0 + } + }, + [406]={ + ["position"]={ + 2.0, + -1.0 + } + }, + [407]={ + ["position"]={ + 2.0, + -2.0 + } + }, + [408]={ + ["position"]={ + 2.0, + -3.0 + } + }, + [409]={ + ["position"]={ + 2.0, + -4.0 + } + }, + [410]={ + ["position"]={ + 2.0, + -5.0 + } + }, + [501]={ + ["position"]={ + 1.0, + 4.0 + } + }, + [502]={ + ["position"]={ + 1.0, + 3.0 + } + }, + [503]={ + ["position"]={ + 1.0, + 2.0 + } + }, + [504]={ + ["position"]={ + 1.0, + 1.0 + } + }, + [505]={ + ["position"]={ + 1.0, + 0.0 + } + }, + [506]={ + ["position"]={ + 1.0, + -1.0 + } + }, + [507]={ + ["position"]={ + 1.0, + -2.0 + } + }, + [508]={ + ["position"]={ + 1.0, + -3.0 + } + }, + [509]={ + ["position"]={ + 1.0, + -4.0 + } + }, + [510]={ + ["position"]={ + 1.0, + -5.0 + } + }, + [601]={ + ["position"]={ + 0.0, + 4.0 + } + }, + [602]={ + ["position"]={ + 0.0, + 3.0 + } + }, + [603]={ + ["position"]={ + 0.0, + 2.0 + } + }, + [604]={ + ["position"]={ + 0.0, + 1.0 + } + }, + [605]={ + ["position"]={ + 0.0, + 0.0 + } + }, + [606]={ + ["position"]={ + 0.0, + -1.0 + } + }, + [607]={ + ["position"]={ + 0.0, + -2.0 + } + }, + [608]={ + ["position"]={ + 0.0, + -3.0 + } + }, + [609]={ + ["position"]={ + 0.0, + -4.0 + } + }, + [610]={ + ["position"]={ + 0.0, + -5.0 + } + }, + [701]={ + ["position"]={ + -1.0, + 4.0 + } + }, + [702]={ + ["position"]={ + -1.0, + 3.0 + } + }, + [703]={ + ["position"]={ + -1.0, + 2.0 + } + }, + [704]={ + ["position"]={ + -1.0, + 1.0 + } + }, + [705]={ + ["position"]={ + -1.0, + 0.0 + } + }, + [706]={ + ["position"]={ + -1.0, + -1.0 + } + }, + [707]={ + ["position"]={ + -1.0, + -2.0 + } + }, + [708]={ + ["position"]={ + -1.0, + -3.0 + } + }, + [709]={ + ["position"]={ + -1.0, + -4.0 + } + }, + [710]={ + ["position"]={ + -1.0, + -5.0 + } + }, + [801]={ + ["position"]={ + -2.0, + 4.0 + } + }, + [802]={ + ["position"]={ + -2.0, + 3.0 + } + }, + [803]={ + ["position"]={ + -2.0, + 2.0 + } + }, + [804]={ + ["position"]={ + -2.0, + 1.0 + } + }, + [805]={ + ["position"]={ + -2.0, + 0.0 + } + }, + [806]={ + ["position"]={ + -2.0, + -1.0 + } + }, + [807]={ + ["position"]={ + -2.0, + -2.0 + } + }, + [808]={ + ["position"]={ + -2.0, + -3.0 + } + }, + [809]={ + ["position"]={ + -2.0, + -4.0 + } + }, + [810]={ + ["position"]={ + -2.0, + -5.0 + } + }, + [901]={ + ["position"]={ + -3.0, + 4.0 + } + }, + [902]={ + ["position"]={ + -3.0, + 3.0 + } + }, + [903]={ + ["position"]={ + -3.0, + 2.0 + } + }, + [904]={ + ["position"]={ + -3.0, + 1.0 + } + }, + [905]={ + ["position"]={ + -3.0, + 0.0 + } + }, + [906]={ + ["position"]={ + -3.0, + -1.0 + } + }, + [907]={ + ["position"]={ + -3.0, + -2.0 + } + }, + [908]={ + ["position"]={ + -3.0, + -3.0 + } + }, + [909]={ + ["position"]={ + -3.0, + -4.0 + } + }, + [910]={ + ["position"]={ + -3.0, + -5.0 + } + }, + [1001]={ + ["position"]={ + -4.0, + 4.0 + } + }, + [1002]={ + ["position"]={ + -4.0, + 3.0 + } + }, + [1003]={ + ["position"]={ + -4.0, + 2.0 + } + }, + [1004]={ + ["position"]={ + -4.0, + 1.0 + } + }, + [1005]={ + ["position"]={ + -4.0, + 0.0 + } + }, + [1006]={ + ["position"]={ + -4.0, + -1.0 + } + }, + [1007]={ + ["position"]={ + -4.0, + -2.0 + } + }, + [1008]={ + ["position"]={ + -4.0, + -3.0 + } + }, + [1009]={ + ["position"]={ + -4.0, + -4.0 + } + }, + [1010]={ + ["position"]={ + -4.0, + -5.0 + } + } +} +local config = { +data=monster_position,count=100 +} +return config \ No newline at end of file diff --git a/lua/app/config/monster_position.lua.meta b/lua/app/config/monster_position.lua.meta new file mode 100644 index 00000000..46325ae5 --- /dev/null +++ b/lua/app/config/monster_position.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 55543330e808a2644bfe459c088643da +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/monster_stage.lua b/lua/app/config/monster_stage.lua new file mode 100644 index 00000000..1af45967 --- /dev/null +++ b/lua/app/config/monster_stage.lua @@ -0,0 +1,1138 @@ +local monster_stage = { + [100]={ + ["monster_baseid"]=1, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [200]={ + ["monster_baseid"]=2, + ["atk"]=3, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900021, + 900022, + 900023 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 2000, + 0, + 1000 + } + }, + [300]={ + ["monster_baseid"]=3, + ["atk"]=2, + ["hp"]=4, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900031 + }, + ["skill_ai"]={ + 3 + }, + ["interval"]={ + 2500 + } + }, + [400]={ + ["monster_baseid"]=4, + ["atk"]=3, + ["hp"]=3, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900041, + 900031 + }, + ["skill_ai"]={ + 7, + 8 + }, + ["interval"]={ + 0, + 2500 + } + }, + [500]={ + ["monster_baseid"]=5, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [600]={ + ["monster_baseid"]=6, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [700]={ + ["monster_baseid"]=7, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [800]={ + ["monster_baseid"]=8, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [900]={ + ["monster_baseid"]=9, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [1000]={ + ["monster_baseid"]=10, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [1100]={ + ["monster_baseid"]=11, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [1200]={ + ["monster_baseid"]=12, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [100100]={ + ["monster_baseid"]=1001, + ["atk"]=1, + ["hp"]=1, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910011, + 910012 + }, + ["skill_ai"]={ + 2, + 0 + }, + ["interval"]={ + 500, + 1000 + } + }, + [100200]={ + ["monster_baseid"]=1002, + ["atk"]=2, + ["hp"]=5, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910021, + 910022, + 910023 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 2000, + 0, + 1000 + } + }, + [100300]={ + ["monster_baseid"]=1003, + ["atk"]=3, + ["hp"]=3, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910031 + }, + ["skill_ai"]={ + 3 + }, + ["interval"]={ + 1000 + } + }, + [100400]={ + ["monster_baseid"]=1004, + ["atk"]=3, + ["hp"]=6, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910041 + }, + ["skill_ai"]={ + 3 + }, + ["interval"]={ + 2000 + } + }, + [100500]={ + ["monster_baseid"]=1005, + ["atk"]=3, + ["hp"]=3, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910011, + 910012 + }, + ["skill_ai"]={ + 2, + 0 + }, + ["interval"]={ + 500, + 1000 + } + }, + [100600]={ + ["monster_baseid"]=1006, + ["atk"]=4, + ["hp"]=3, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910061, + 910062, + 910063 + }, + ["skill_ai"]={ + 0, + 0, + 6 + }, + ["interval"]={ + 0, + 0, + 2000 + } + }, + [100700]={ + ["monster_baseid"]=1007, + ["atk"]=5, + ["hp"]=5, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910071, + 910072 + }, + ["skill_ai"]={ + 9, + 0 + }, + ["interval"]={ + 0, + 2000 + } + }, + [100800]={ + ["monster_baseid"]=1008, + ["atk"]=8, + ["hp"]=8, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910081, + 910082, + 910083 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 0, + 0, + 3000 + } + }, + [100900]={ + ["monster_baseid"]=1009, + ["atk"]=6, + ["hp"]=4, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910061, + 910062, + 910063 + }, + ["skill_ai"]={ + 0, + 0, + 6 + }, + ["interval"]={ + 0, + 0, + 2000 + } + }, + [101000]={ + ["monster_baseid"]=1010, + ["atk"]=4, + ["hp"]=5, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910021, + 910022, + 910023 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 2000, + 0, + 1000 + } + }, + [101100]={ + ["monster_baseid"]=1011, + ["atk"]=6, + ["hp"]=6, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 910111, + 910111, + 910111 + }, + ["skill_ai"]={ + 0, + 0, + 6 + }, + ["interval"]={ + 0, + 0, + 2000 + } + }, + [101200]={ + ["monster_baseid"]=1012, + ["atk"]=2, + ["hp"]=5, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [101300]={ + ["monster_baseid"]=1013, + ["atk"]=4, + ["hp"]=5, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [200100]={ + ["monster_baseid"]=2001, + ["atk"]=2, + ["hp"]=10, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 920011 + }, + ["skill_ai"]={ + 4 + }, + ["interval"]={ + 1000 + } + }, + [200200]={ + ["monster_baseid"]=2002, + ["atk"]=2, + ["hp"]=10, + ["crit"]=100, + ["miss"]=100, + ["crit_time"]=15000, + ["type"]=1, + ["skill"]={ + 920021 + }, + ["skill_ai"]={ + 4 + }, + ["interval"]={ + 1000 + } + }, + [200300]={ + ["monster_baseid"]=2003, + ["atk"]=8, + ["hp"]=100, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 920031, + 920021 + }, + ["skill_ai"]={ + 5, + 4 + }, + ["interval"]={ + 1000, + 1000 + } + }, + [300100]={ + ["monster_baseid"]=30011, + ["atk"]=8, + ["hp"]=100, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930011, + 930012, + 930013, + 930014 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 0, + 0, + 1000, + 2000 + } + }, + [300101]={ + ["monster_baseid"]=30012, + ["atk"]=8, + ["hp"]=100, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930011, + 930012, + 930013, + 930014 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 0, + 0, + 1000, + 2000 + } + }, + [300102]={ + ["monster_baseid"]=30013, + ["atk"]=8, + ["hp"]=100, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930011, + 930012, + 930013, + 930015 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 0, + 0, + 0, + 2000 + } + }, + [300103]={ + ["monster_baseid"]=30014, + ["atk"]=8, + ["hp"]=100, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930011, + 930012, + 930013, + 930016 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 0, + 0, + 0, + 2000 + } + }, + [300104]={ + ["monster_baseid"]=30015, + ["atk"]=8, + ["hp"]=100, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930011, + 930012, + 930013, + 930016 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 0, + 0, + 0, + 2000 + } + }, + [300105]={ + ["monster_baseid"]=30016, + ["atk"]=8, + ["hp"]=100, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930011, + 930012, + 930013, + 930018 + }, + ["skill_ai"]={ + 0, + 0, + 0 + }, + ["interval"]={ + 0, + 0, + 0, + 2000 + } + }, + [300200]={ + ["monster_baseid"]=3002, + ["atk"]=24, + ["hp"]=40, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930021, + 930022, + 930023 + }, + ["skill_ai"]={ + 0, + 0, + 6 + }, + ["interval"]={ + 0, + 1000, + 1000 + } + }, + [300300]={ + ["monster_baseid"]=3003, + ["atk"]=24, + ["hp"]=35, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [300400]={ + ["monster_baseid"]=3004, + ["atk"]=24, + ["hp"]=40, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [300500]={ + ["monster_baseid"]=3005, + ["atk"]=24, + ["hp"]=40, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930051, + 930052, + 930053, + 930054, + 930055 + }, + ["skill_ai"]={ + 0, + 0, + 0, + 0, + 6 + }, + ["interval"]={ + 0, + 0, + 2000, + 0, + 1000 + } + }, + [300600]={ + ["monster_baseid"]=3006, + ["atk"]=16, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [300700]={ + ["monster_baseid"]=3007, + ["atk"]=12, + ["hp"]=75, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [300800]={ + ["monster_baseid"]=3008, + ["atk"]=24, + ["hp"]=35, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930081, + 930082, + 930087, + 930088 + }, + ["skill_ai"]={ + 0, + 0, + 0, + 0 + }, + ["interval"]={ + 0, + 0, + 0, + 3000 + } + }, + [300900]={ + ["monster_baseid"]=3009, + ["atk"]=16, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930091, + 930092, + 930093 + }, + ["skill_ai"]={ + 5, + 0, + 6 + }, + ["interval"]={ + 0, + 0, + 3000 + } + }, + [301000]={ + ["monster_baseid"]=3010, + ["atk"]=16, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [301100]={ + ["monster_baseid"]=3011, + ["atk"]=16, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930111, + 930112, + 930113, + 930111, + 930112, + 930113, + 930114, + 930114, + 930114, + 930112, + 930113 + }, + ["skill_ai"]={ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + }, + ["interval"]={ + 2000, + 0, + 0, + 2000, + 0, + 0, + 500, + 500, + 500, + 0, + 0 + } + }, + [301200]={ + ["monster_baseid"]=3012, + ["atk"]=24, + ["hp"]=35, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930121, + 930121, + 930121 + }, + ["skill_ai"]={ + 0, + 0, + 6 + }, + ["interval"]={ + 0, + 0, + 2000 + } + }, + [301300]={ + ["monster_baseid"]=3013, + ["atk"]=16, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [301400]={ + ["monster_baseid"]=3014, + ["atk"]=20, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [301500]={ + ["monster_baseid"]=3015, + ["atk"]=20, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [301600]={ + ["monster_baseid"]=3016, + ["atk"]=24, + ["hp"]=35, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930161 + }, + ["skill_ai"]={ + 0 + }, + ["interval"]={ + 4000 + } + }, + [301700]={ + ["monster_baseid"]=3017, + ["atk"]=16, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [301800]={ + ["monster_baseid"]=3018, + ["atk"]=12, + ["hp"]=75, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + }, + [301900]={ + ["monster_baseid"]=3019, + ["atk"]=20, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 930191, + 930192, + 930193 + }, + ["skill_ai"]={ + 3, + 0, + 0 + }, + ["interval"]={ + 3000 + } + }, + [302000]={ + ["monster_baseid"]=3020, + ["atk"]=16, + ["hp"]=50, + ["crit"]=2000, + ["miss"]=2000, + ["crit_time"]=15000, + ["type"]=2, + ["skill"]={ + 900011 + }, + ["skill_ai"]={ + 1 + }, + ["interval"]={ + 1000 + } + } +} +local config = { +data=monster_stage,count=53 +} +return config \ No newline at end of file diff --git a/lua/app/config/monster_stage.lua.meta b/lua/app/config/monster_stage.lua.meta new file mode 100644 index 00000000..b741b3ee --- /dev/null +++ b/lua/app/config/monster_stage.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9422cff54b4c2504aa8dcc248be9d325 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/move.lua b/lua/app/config/move.lua new file mode 100644 index 00000000..f50bbcbf --- /dev/null +++ b/lua/app/config/move.lua @@ -0,0 +1,39 @@ +local move = { + [1]={ + ["horizontal"]=1, + ["target"]=2, + ["target_offset"]={ + 50, + 0 + }, + ["across"]=1, + ["speed"]=9999, + ["end_distance"]=0 + }, + [2]={ + ["horizontal"]=1, + ["target"]=1, + ["target_offset"]={ + 500, + 0 + }, + ["across"]=1, + ["speed"]=1000, + ["end_distance"]=0 + }, + [3]={ + ["horizontal"]=1, + ["target"]=1, + ["target_offset"]={ + -500, + 0 + }, + ["speed"]=200, + ["end_time"]=2000, + ["collision_type"]=1 + } +} +local config = { +data=move,count=3 +} +return config \ No newline at end of file diff --git a/lua/app/config/move.lua.meta b/lua/app/config/move.lua.meta new file mode 100644 index 00000000..245e9041 --- /dev/null +++ b/lua/app/config/move.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 99ea5fc7cdbc7da43a0c79572e66583c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/player_initial.lua b/lua/app/config/player_initial.lua new file mode 100644 index 00000000..5192a35d --- /dev/null +++ b/lua/app/config/player_initial.lua @@ -0,0 +1,16 @@ +local player_initial = { + [1]={ + ["reward"]={ + ["type"]=3, + ["id"]=60001, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } +} +local config = { +data=player_initial,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/player_initial.lua.meta b/lua/app/config/player_initial.lua.meta new file mode 100644 index 00000000..b739ca1d --- /dev/null +++ b/lua/app/config/player_initial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9a658f77de9804144acfa29d49d8b968 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/recharge.lua b/lua/app/config/recharge.lua new file mode 100644 index 00000000..7a83bdc9 --- /dev/null +++ b/lua/app/config/recharge.lua @@ -0,0 +1,142 @@ +local recharge = { + [1]={ + ["payId"]="com.idle.ko.io.0.99dollar", + ["price"]=0.99, + ["price_cn"]=6, + ["same_price"]=1, + ["price_str"]="$0.99", + ["score"]=1 + }, + [2]={ + ["payId"]="com.idle.ko.io.1.99dollar", + ["price"]=1.99, + ["price_cn"]=12, + ["same_price"]=2, + ["price_str"]="$1.99", + ["score"]=2 + }, + [3]={ + ["payId"]="com.idle.ko.io.2.99dollar", + ["price"]=2.99, + ["price_cn"]=18, + ["same_price"]=3, + ["price_str"]="$2.99", + ["score"]=3 + }, + [4]={ + ["payId"]="com.idle.ko.io.3.99dollar", + ["price"]=3.99, + ["price_cn"]=24, + ["same_price"]=4, + ["price_str"]="$3.99", + ["score"]=4 + }, + [5]={ + ["payId"]="com.idle.ko.io.4.99dollar", + ["price"]=4.99, + ["price_cn"]=30, + ["same_price"]=5, + ["price_str"]="$4.99", + ["score"]=5 + }, + [6]={ + ["payId"]="com.idle.ko.io.5.99dollar", + ["price"]=5.99, + ["price_cn"]=36, + ["same_price"]=6, + ["price_str"]="$5.99", + ["score"]=6 + }, + [7]={ + ["payId"]="com.idle.ko.io.6.99dollar", + ["price"]=6.99, + ["price_cn"]=42, + ["same_price"]=7, + ["price_str"]="$6.99", + ["score"]=7 + }, + [8]={ + ["payId"]="com.idle.ko.io.7.99dollar", + ["price"]=7.99, + ["price_cn"]=49, + ["same_price"]=8, + ["price_str"]="$7.99", + ["score"]=8 + }, + [9]={ + ["payId"]="com.idle.ko.io.8.99dollar", + ["price"]=8.99, + ["price_cn"]=56, + ["same_price"]=9, + ["price_str"]="$8.99", + ["score"]=9 + }, + [10]={ + ["payId"]="com.idle.ko.io.9.99dollar", + ["price"]=9.99, + ["price_cn"]=68, + ["same_price"]=10, + ["price_str"]="$9.99", + ["score"]=10 + }, + [11]={ + ["payId"]="com.idle.ko.io.14.99dollar", + ["price"]=14.99, + ["price_cn"]=98, + ["same_price"]=15, + ["price_str"]="$14.99", + ["score"]=15 + }, + [12]={ + ["payId"]="com.idle.ko.io.19.99dollar", + ["price"]=19.99, + ["price_cn"]=128, + ["same_price"]=20, + ["price_str"]="$19.99", + ["score"]=20 + }, + [13]={ + ["payId"]="com.idle.ko.io.24.99dollar", + ["price"]=24.99, + ["price_cn"]=168, + ["same_price"]=25, + ["price_str"]="$24.99", + ["score"]=25 + }, + [14]={ + ["payId"]="com.idle.ko.io.29.99dollar", + ["price"]=29.99, + ["price_cn"]=198, + ["same_price"]=30, + ["price_str"]="$29.99", + ["score"]=30 + }, + [15]={ + ["payId"]="com.idle.ko.io.49.99dollar", + ["price"]=49.99, + ["price_cn"]=328, + ["same_price"]=50, + ["price_str"]="$49.99", + ["score"]=50 + }, + [16]={ + ["payId"]="com.idle.ko.io.69.99dollar", + ["price"]=69.99, + ["price_cn"]=448, + ["same_price"]=70, + ["price_str"]="$69.99", + ["score"]=70 + }, + [17]={ + ["payId"]="com.idle.ko.io.99.99dollar", + ["price"]=99.99, + ["price_cn"]=648, + ["same_price"]=100, + ["price_str"]="$99.99", + ["score"]=100 + } +} +local config = { +data=recharge,count=17 +} +return config \ No newline at end of file diff --git a/lua/app/config/recharge.lua.meta b/lua/app/config/recharge.lua.meta new file mode 100644 index 00000000..6b97ea2c --- /dev/null +++ b/lua/app/config/recharge.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d76c8732bb54a49409b51d1b5ebc458c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/recovery.lua b/lua/app/config/recovery.lua new file mode 100644 index 00000000..0ea84c2f --- /dev/null +++ b/lua/app/config/recovery.lua @@ -0,0 +1,49 @@ +local recovery = { + [4]={ + ["type"]=2, + ["limit"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [5]={ + ["type"]=2, + ["limit"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [6]={ + ["type"]=2, + ["limit"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [7]={ + ["type"]=2, + ["limit"]={ + ["value"]=2, + ["unit"]=0 + } + }, + [9]={ + ["type"]=1, + ["time"]=600, + ["limit"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [16]={ + ["type"]=2, + ["limit"]={ + ["value"]=2, + ["unit"]=0 + } + } +} +local config = { +data=recovery,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/recovery.lua.meta b/lua/app/config/recovery.lua.meta new file mode 100644 index 00000000..0c2a1958 --- /dev/null +++ b/lua/app/config/recovery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bafaa208885e86a4b85099be5d2eb334 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/runes.lua b/lua/app/config/runes.lua new file mode 100644 index 00000000..974db7ec --- /dev/null +++ b/lua/app/config/runes.lua @@ -0,0 +1,255 @@ +local runes = { + [50101]={ + ["icon"]="50101", + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=1, + ["skill_id"]={ + 501011 + } + }, + [50102]={ + ["icon"]="50102", + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=1, + ["skill_id"]={ + 501021 + } + }, + [50103]={ + ["icon"]="50103", + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=1, + ["skill_id"]={ + 501031 + } + }, + [50104]={ + ["icon"]="50104", + ["part"]=1, + ["weapon_part"]=1, + ["qlt"]=1, + ["skill_id"]={ + 501041 + } + }, + [50201]={ + ["icon"]="50201", + ["part"]=2, + ["weapon_part"]=4, + ["qlt"]=1, + ["skill_id"]={ + 502011 + } + }, + [50202]={ + ["icon"]="50202", + ["part"]=2, + ["weapon_part"]=4, + ["qlt"]=1, + ["skill_id"]={ + 502021, + 502022 + } + }, + [50203]={ + ["icon"]="50203", + ["part"]=2, + ["weapon_part"]=4, + ["qlt"]=1, + ["skill_id"]={ + 502031 + } + }, + [50204]={ + ["icon"]="50204", + ["part"]=2, + ["weapon_part"]=4, + ["qlt"]=1, + ["skill_id"]={ + 502041 + } + }, + [50301]={ + ["icon"]="50301", + ["part"]=3, + ["weapon_part"]=2, + ["qlt"]=1, + ["skill_id"]={ + 503011 + } + }, + [50302]={ + ["icon"]="50302", + ["part"]=3, + ["weapon_part"]=2, + ["qlt"]=1, + ["skill_id"]={ + 503021 + } + }, + [50303]={ + ["icon"]="50303", + ["part"]=3, + ["weapon_part"]=2, + ["qlt"]=1, + ["skill_id"]={ + 503031 + } + }, + [50304]={ + ["icon"]="50304", + ["part"]=3, + ["weapon_part"]=2, + ["qlt"]=1, + ["skill_id"]={ + 503041 + } + }, + [50401]={ + ["icon"]="50401", + ["part"]=4, + ["weapon_part"]=3, + ["qlt"]=1, + ["skill_id"]={ + 504011 + } + }, + [50402]={ + ["icon"]="50402", + ["part"]=4, + ["weapon_part"]=3, + ["qlt"]=1, + ["skill_id"]={ + 504021 + } + }, + [50403]={ + ["icon"]="50403", + ["part"]=4, + ["weapon_part"]=3, + ["qlt"]=1, + ["skill_id"]={ + 504031 + } + }, + [50404]={ + ["icon"]="50404", + ["part"]=4, + ["weapon_part"]=3, + ["qlt"]=1, + ["skill_id"]={ + 504041 + } + }, + [50501]={ + ["icon"]="50501", + ["part"]=5, + ["weapon_part"]=1, + ["qlt"]=1, + ["skill_id"]={ + 505011 + } + }, + [50502]={ + ["icon"]="50502", + ["part"]=5, + ["weapon_part"]=4, + ["qlt"]=1, + ["skill_id"]={ + 505021 + } + }, + [50503]={ + ["icon"]="50503", + ["part"]=5, + ["weapon_part"]=2, + ["qlt"]=1, + ["skill_id"]={ + 505031 + } + }, + [50504]={ + ["icon"]="50504", + ["part"]=5, + ["weapon_part"]=3, + ["qlt"]=1, + ["skill_id"]={ + 505041 + } + }, + [50601]={ + ["icon"]="50601", + ["part"]=6, + ["weapon_part"]=1, + ["qlt"]=1, + ["skill_id"]={ + 506011 + } + }, + [50602]={ + ["icon"]="50602", + ["part"]=6, + ["weapon_part"]=4, + ["qlt"]=1, + ["skill_id"]={ + 506021 + } + }, + [50603]={ + ["icon"]="50603", + ["part"]=6, + ["weapon_part"]=2, + ["qlt"]=1, + ["skill_id"]={ + 506031 + } + }, + [50604]={ + ["icon"]="50604", + ["part"]=6, + ["weapon_part"]=3, + ["qlt"]=1, + ["skill_id"]={ + 506041 + } + }, + [50701]={ + ["icon"]="50701", + ["part"]=7, + ["qlt"]=1, + ["skill_id"]={ + 507011 + } + }, + [50702]={ + ["icon"]="50702", + ["part"]=7, + ["qlt"]=1, + ["skill_id"]={ + 507021 + } + }, + [50703]={ + ["icon"]="50703", + ["part"]=7, + ["qlt"]=1, + ["skill_id"]={ + 507031 + } + }, + [50704]={ + ["icon"]="50704", + ["part"]=7, + ["qlt"]=1, + ["skill_id"]={ + 507041 + } + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/runes.lua.meta b/lua/app/config/runes.lua.meta new file mode 100644 index 00000000..ba647e78 --- /dev/null +++ b/lua/app/config/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: de0abbbe85f0f0840b7d36b6af770611 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/runes_level.lua b/lua/app/config/runes_level.lua new file mode 100644 index 00000000..08bb6975 --- /dev/null +++ b/lua/app/config/runes_level.lua @@ -0,0 +1,4402 @@ +local runes_level = { + [1]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=6, + ["unit"]=0 + } + }, + [2]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=36, + ["unit"]=0 + } + }, + [3]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=216, + ["unit"]=0 + } + }, + [4]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1296, + ["unit"]=0 + } + }, + [5]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=5000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=5000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=7776, + ["unit"]=0 + } + }, + [6]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=46656, + ["unit"]=0 + } + }, + [7]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=7000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=7000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=279936, + ["unit"]=0 + } + }, + [8]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=8000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1680, + ["unit"]=1 + } + }, + [9]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=9000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=9000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=10078, + ["unit"]=1 + } + }, + [10]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=10000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=60466, + ["unit"]=1 + } + }, + [11]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=11000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=11000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=362797, + ["unit"]=1 + } + }, + [12]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=12000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=12000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2177, + ["unit"]=2 + } + }, + [13]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=13000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=13000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=13061, + ["unit"]=2 + } + }, + [14]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=14000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=14000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=78364, + ["unit"]=2 + } + }, + [15]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=15000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=15000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=470185, + ["unit"]=2 + } + }, + [16]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=16000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2821, + ["unit"]=3 + } + }, + [17]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=17000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=17000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=16927, + ["unit"]=3 + } + }, + [18]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=18000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=18000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=101560, + ["unit"]=3 + } + }, + [19]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=19000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=19000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=609360, + ["unit"]=3 + } + }, + [20]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=20000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=3656, + ["unit"]=4 + } + }, + [21]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=22000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=22000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=21937, + ["unit"]=4 + } + }, + [22]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=24000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=24000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=131622, + ["unit"]=4 + } + }, + [23]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=26000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=26000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=789730, + ["unit"]=4 + } + }, + [24]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=28000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=28000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=4738, + ["unit"]=5 + } + }, + [25]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=30000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=30000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=28430, + ["unit"]=5 + } + }, + [26]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=32000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=170582, + ["unit"]=5 + } + }, + [27]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=34000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=34000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1023, + ["unit"]=6 + } + }, + [28]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=36000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=36000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=6141, + ["unit"]=6 + } + }, + [29]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=38000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=38000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=36846, + ["unit"]=6 + } + }, + [30]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=40000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=40000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=221074, + ["unit"]=6 + } + }, + [31]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=42000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=42000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1326, + ["unit"]=7 + } + }, + [32]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=44000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=44000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=7959, + ["unit"]=7 + } + }, + [33]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=46000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=46000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=47752, + ["unit"]=7 + } + }, + [34]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=48000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=48000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=286512, + ["unit"]=7 + } + }, + [35]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=50000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1719, + ["unit"]=8 + } + }, + [36]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=52000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=52000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=10314, + ["unit"]=8 + } + }, + [37]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=54000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=54000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=61887, + ["unit"]=8 + } + }, + [38]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=56000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=56000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=371319, + ["unit"]=8 + } + }, + [39]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=58000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=58000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2228, + ["unit"]=9 + } + }, + [40]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=60000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=13367, + ["unit"]=9 + } + }, + [41]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=64000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=80205, + ["unit"]=9 + } + }, + [42]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=68000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=68000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=481230, + ["unit"]=9 + } + }, + [43]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=72000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=72000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2887, + ["unit"]=10 + } + }, + [44]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=76000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=76000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=17324, + ["unit"]=10 + } + }, + [45]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=80000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=80000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=103946, + ["unit"]=10 + } + }, + [46]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=84000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=84000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=623674, + ["unit"]=10 + } + }, + [47]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=88000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=88000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=3742, + ["unit"]=11 + } + }, + [48]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=92000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=92000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=22452, + ["unit"]=11 + } + }, + [49]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=96000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=96000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=134714, + ["unit"]=11 + } + }, + [50]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=100000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=808281, + ["unit"]=11 + } + }, + [51]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=104000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=104000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=4850, + ["unit"]=12 + } + }, + [52]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=108000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=108000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=29098, + ["unit"]=12 + } + }, + [53]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=112000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=112000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=174589, + ["unit"]=12 + } + }, + [54]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=116000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=116000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1048, + ["unit"]=13 + } + }, + [55]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=120000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=120000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=6285, + ["unit"]=13 + } + }, + [56]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=124000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=124000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=37711, + ["unit"]=13 + } + }, + [57]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=128000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=226267, + ["unit"]=13 + } + }, + [58]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=132000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=132000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1358, + ["unit"]=14 + } + }, + [59]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=136000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=136000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=8146, + ["unit"]=14 + } + }, + [60]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=140000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=140000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=48874, + ["unit"]=14 + } + }, + [61]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=148000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=148000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=293242, + ["unit"]=14 + } + }, + [62]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=156000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=156000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1759, + ["unit"]=15 + } + }, + [63]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=164000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=164000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=10557, + ["unit"]=15 + } + }, + [64]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=172000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=172000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=63340, + ["unit"]=15 + } + }, + [65]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=180000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=180000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=380042, + ["unit"]=15 + } + }, + [66]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=188000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=188000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2280, + ["unit"]=16 + } + }, + [67]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=196000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=196000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=13682, + ["unit"]=16 + } + }, + [68]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=204000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=204000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=82089, + ["unit"]=16 + } + }, + [69]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=212000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=212000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=492534, + ["unit"]=16 + } + }, + [70]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=220000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=220000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2955, + ["unit"]=17 + } + }, + [71]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=228000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=228000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=17731, + ["unit"]=17 + } + }, + [72]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=236000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=236000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=106387, + ["unit"]=17 + } + }, + [73]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=244000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=244000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=638324, + ["unit"]=17 + } + }, + [74]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=252000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=252000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=3830, + ["unit"]=18 + } + }, + [75]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=260000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=260000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=22980, + ["unit"]=18 + } + }, + [76]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=268000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=268000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=137878, + ["unit"]=18 + } + }, + [77]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=276000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=276000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=827268, + ["unit"]=18 + } + }, + [78]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=284000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=284000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=4964, + ["unit"]=19 + } + }, + [79]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=292000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=292000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=29782, + ["unit"]=19 + } + }, + [80]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=300000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=300000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=178690, + ["unit"]=19 + } + }, + [81]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=316000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=316000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1072, + ["unit"]=20 + } + }, + [82]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=332000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=332000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=6433, + ["unit"]=20 + } + }, + [83]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=348000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=348000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=38597, + ["unit"]=20 + } + }, + [84]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=364000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=364000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=231582, + ["unit"]=20 + } + }, + [85]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=380000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=380000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1389, + ["unit"]=21 + } + }, + [86]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=396000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=396000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=8337, + ["unit"]=21 + } + }, + [87]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=412000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=412000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=50022, + ["unit"]=21 + } + }, + [88]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=428000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=428000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=300130, + ["unit"]=21 + } + }, + [89]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=444000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=444000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1801, + ["unit"]=22 + } + }, + [90]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=460000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=460000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=10805, + ["unit"]=22 + } + }, + [91]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=476000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=476000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=64828, + ["unit"]=22 + } + }, + [92]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=492000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=492000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=388969, + ["unit"]=22 + } + }, + [93]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=508000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=508000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2334, + ["unit"]=23 + } + }, + [94]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=524000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=524000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=14003, + ["unit"]=23 + } + }, + [95]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=540000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=540000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=84017, + ["unit"]=23 + } + }, + [96]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=556000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=556000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=504104, + ["unit"]=23 + } + }, + [97]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=572000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=572000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=3025, + ["unit"]=24 + } + }, + [98]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=588000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=588000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=18148, + ["unit"]=24 + } + }, + [99]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=604000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=604000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=108886, + ["unit"]=24 + } + }, + [100]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=620000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=620000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=653319, + ["unit"]=24 + } + }, + [101]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=652000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=652000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=3920, + ["unit"]=25 + } + }, + [102]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=684000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=684000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=23519, + ["unit"]=25 + } + }, + [103]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=716000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=716000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=141117, + ["unit"]=25 + } + }, + [104]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=748000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=748000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=846701, + ["unit"]=25 + } + }, + [105]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=780000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=780000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=5080, + ["unit"]=26 + } + }, + [106]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=812000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=812000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=30481, + ["unit"]=26 + } + }, + [107]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=844000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=844000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=182887, + ["unit"]=26 + } + }, + [108]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=876000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=876000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1097, + ["unit"]=27 + } + }, + [109]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=908000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=908000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=6584, + ["unit"]=27 + } + }, + [110]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=940000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=940000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=39504, + ["unit"]=27 + } + }, + [111]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=972000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=972000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=237022, + ["unit"]=27 + } + }, + [112]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1004000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1004000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1422, + ["unit"]=28 + } + }, + [113]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1036000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1036000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=8533, + ["unit"]=28 + } + }, + [114]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1068000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1068000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=51197, + ["unit"]=28 + } + }, + [115]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1100000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1100000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=307181, + ["unit"]=28 + } + }, + [116]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1132000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1132000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1843, + ["unit"]=29 + } + }, + [117]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1164000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1164000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=11059, + ["unit"]=29 + } + }, + [118]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1196000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1196000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=66351, + ["unit"]=29 + } + }, + [119]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1228000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1228000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=398106, + ["unit"]=29 + } + }, + [120]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1260000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1260000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2389, + ["unit"]=30 + } + }, + [121]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1324000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1324000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=14332, + ["unit"]=30 + } + }, + [122]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1388000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1388000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=85991, + ["unit"]=30 + } + }, + [123]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1452000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1452000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=515945, + ["unit"]=30 + } + }, + [124]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1516000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1516000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=3096, + ["unit"]=31 + } + }, + [125]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1580000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1580000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=18574, + ["unit"]=31 + } + }, + [126]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1644000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1644000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=111444, + ["unit"]=31 + } + }, + [127]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1708000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1708000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=668665, + ["unit"]=31 + } + }, + [128]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1772000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1772000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=4012, + ["unit"]=32 + } + }, + [129]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1836000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1836000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=24072, + ["unit"]=32 + } + }, + [130]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1900000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1900000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=144432, + ["unit"]=32 + } + }, + [131]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=1964000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=1964000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=866590, + ["unit"]=32 + } + }, + [132]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2028000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2028000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=5200, + ["unit"]=33 + } + }, + [133]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2092000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2092000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=31197, + ["unit"]=33 + } + }, + [134]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2156000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2156000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=187183, + ["unit"]=33 + } + }, + [135]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2220000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2220000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1123, + ["unit"]=34 + } + }, + [136]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2284000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2284000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=6739, + ["unit"]=34 + } + }, + [137]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2348000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2348000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=40432, + ["unit"]=34 + } + }, + [138]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2412000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2412000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=242590, + ["unit"]=34 + } + }, + [139]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2476000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2476000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1456, + ["unit"]=35 + } + }, + [140]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2540000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2540000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=8733, + ["unit"]=35 + } + }, + [141]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2668000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2668000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=52399, + ["unit"]=35 + } + }, + [142]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2796000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2796000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=314396, + ["unit"]=35 + } + }, + [143]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=2924000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=2924000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1886, + ["unit"]=36 + } + }, + [144]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3052000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3052000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=11318, + ["unit"]=36 + } + }, + [145]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3180000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3180000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=67910, + ["unit"]=36 + } + }, + [146]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3308000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3308000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=407458, + ["unit"]=36 + } + }, + [147]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3436000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3436000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2445, + ["unit"]=37 + } + }, + [148]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3564000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3564000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=14668, + ["unit"]=37 + } + }, + [149]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3692000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3692000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=88011, + ["unit"]=37 + } + }, + [150]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3820000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3820000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=528065, + ["unit"]=37 + } + }, + [151]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=3948000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=3948000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=3168, + ["unit"]=38 + } + }, + [152]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4076000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4076000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=19010, + ["unit"]=38 + } + }, + [153]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4204000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4204000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=114062, + ["unit"]=38 + } + }, + [154]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4332000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4332000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=684373, + ["unit"]=38 + } + }, + [155]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4460000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4460000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=4106, + ["unit"]=39 + } + }, + [156]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4588000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4588000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=24637, + ["unit"]=39 + } + }, + [157]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4716000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4716000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=147824, + ["unit"]=39 + } + }, + [158]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4844000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4844000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=886947, + ["unit"]=39 + } + }, + [159]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=4972000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=4972000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=5322, + ["unit"]=40 + } + }, + [160]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=5100000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=5100000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=31930, + ["unit"]=40 + } + }, + [161]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=5356000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=5356000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=191581, + ["unit"]=40 + } + }, + [162]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=5612000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=5612000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1149, + ["unit"]=41 + } + }, + [163]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=5868000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=5868000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=6897, + ["unit"]=41 + } + }, + [164]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=6124000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=6124000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=41381, + ["unit"]=41 + } + }, + [165]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=6380000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=6380000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=248288, + ["unit"]=41 + } + }, + [166]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=6636000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=6636000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1490, + ["unit"]=42 + } + }, + [167]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=6892000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=6892000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=8938, + ["unit"]=42 + } + }, + [168]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=7148000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=7148000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=53630, + ["unit"]=42 + } + }, + [169]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=7404000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=7404000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=321782, + ["unit"]=42 + } + }, + [170]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=7660000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=7660000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1931, + ["unit"]=43 + } + }, + [171]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=7916000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=7916000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=11584, + ["unit"]=43 + } + }, + [172]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=8172000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=8172000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=69505, + ["unit"]=43 + } + }, + [173]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=8428000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=8428000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=417029, + ["unit"]=43 + } + }, + [174]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=8684000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=8684000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=2502, + ["unit"]=44 + } + }, + [175]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=8940000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=8940000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=15013, + ["unit"]=44 + } + }, + [176]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=9196000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=9196000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=90078, + ["unit"]=44 + } + }, + [177]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=9452000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=9452000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=540470, + ["unit"]=44 + } + }, + [178]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=9708000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=9708000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=3243, + ["unit"]=45 + } + }, + [179]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=9964000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=9964000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=19457, + ["unit"]=45 + } + }, + [180]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=10220000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=10220000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=116741, + ["unit"]=45 + } + }, + [181]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=10732000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=10732000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=700449, + ["unit"]=45 + } + }, + [182]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=11244000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=11244000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=4203, + ["unit"]=46 + } + }, + [183]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=11756000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=11756000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=25216, + ["unit"]=46 + } + }, + [184]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=12268000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=12268000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=151297, + ["unit"]=46 + } + }, + [185]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=12780000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=12780000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=907781, + ["unit"]=46 + } + }, + [186]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=13292000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=13292000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=5447, + ["unit"]=47 + } + }, + [187]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=13804000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=13804000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=32680, + ["unit"]=47 + } + }, + [188]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=14316000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=14316000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=196081, + ["unit"]=47 + } + }, + [189]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=14828000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=14828000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1176, + ["unit"]=48 + } + }, + [190]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=15340000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=15340000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=7059, + ["unit"]=48 + } + }, + [191]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=15852000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=15852000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=42353, + ["unit"]=48 + } + }, + [192]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=16364000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=16364000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=254121, + ["unit"]=48 + } + }, + [193]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=16876000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=16876000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1525, + ["unit"]=49 + } + }, + [194]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=17388000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=17388000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=9148, + ["unit"]=49 + } + }, + [195]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=17900000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=17900000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=54890, + ["unit"]=49 + } + }, + [196]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=18412000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=18412000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=329340, + ["unit"]=49 + } + }, + [197]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=18924000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=18924000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=1976, + ["unit"]=50 + } + }, + [198]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=19436000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=19436000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=11856, + ["unit"]=50 + } + }, + [199]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=19948000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=19948000, + ["unit"]=0 + } + } + }, + ["mithril_cost"]={ + ["value"]=71138, + ["unit"]=50 + } + }, + [200]={ + ["grow"]={ + { + ["type"]="atkp_5", + ["bignum"]={ + ["value"]=20460000, + ["unit"]=0 + } + }, + { + ["type"]="hpp_5", + ["bignum"]={ + ["value"]=20460000, + ["unit"]=0 + } + } + } + } +} +local config = { +data=runes_level,count=200 +} +return config \ No newline at end of file diff --git a/lua/app/config/runes_level.lua.meta b/lua/app/config/runes_level.lua.meta new file mode 100644 index 00000000..e5be9399 --- /dev/null +++ b/lua/app/config/runes_level.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fa4f7a74c2081044f9b7a94b3c144c0a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/runes_unlock.lua b/lua/app/config/runes_unlock.lua new file mode 100644 index 00000000..37654dbc --- /dev/null +++ b/lua/app/config/runes_unlock.lua @@ -0,0 +1,370 @@ +local runes_unlock = { + [1]={ + ["mithril_cost"]={ + ["value"]=10, + ["unit"]=0 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=1000, + ["unit"]=0 + } + } + }, + [2]={ + ["mithril_cost"]={ + ["value"]=100, + ["unit"]=0 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=6000, + ["unit"]=0 + } + } + }, + [3]={ + ["mithril_cost"]={ + ["value"]=1000, + ["unit"]=0 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=26000, + ["unit"]=0 + } + } + }, + [4]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=0 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=86000, + ["unit"]=0 + } + } + }, + [5]={ + ["mithril_cost"]={ + ["value"]=100000, + ["unit"]=0 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=210000, + ["unit"]=0 + } + } + }, + [6]={ + ["mithril_cost"]={ + ["value"]=1000, + ["unit"]=1 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=390000, + ["unit"]=0 + } + } + }, + [7]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=1 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=630000, + ["unit"]=0 + } + } + }, + [8]={ + ["mithril_cost"]={ + ["value"]=100000, + ["unit"]=1 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=990000, + ["unit"]=0 + } + } + }, + [9]={ + ["mithril_cost"]={ + ["value"]=1000, + ["unit"]=2 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=1500000, + ["unit"]=0 + } + } + }, + [10]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=2 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=2100000, + ["unit"]=0 + } + } + }, + [11]={ + ["mithril_cost"]={ + ["value"]=100000, + ["unit"]=2 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=2800000, + ["unit"]=0 + } + } + }, + [12]={ + ["mithril_cost"]={ + ["value"]=1000, + ["unit"]=3 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=3600000, + ["unit"]=0 + } + } + }, + [13]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=3 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=4600000, + ["unit"]=0 + } + } + }, + [14]={ + ["mithril_cost"]={ + ["value"]=100000, + ["unit"]=3 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=5700000, + ["unit"]=0 + } + } + }, + [15]={ + ["mithril_cost"]={ + ["value"]=1000, + ["unit"]=4 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=7000000, + ["unit"]=0 + } + } + }, + [16]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=4 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=8500000, + ["unit"]=0 + } + } + }, + [17]={ + ["mithril_cost"]={ + ["value"]=100000, + ["unit"]=4 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=10000000, + ["unit"]=0 + } + } + }, + [18]={ + ["mithril_cost"]={ + ["value"]=1000, + ["unit"]=5 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=12000000, + ["unit"]=0 + } + } + }, + [19]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=5 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=14000000, + ["unit"]=0 + } + } + }, + [20]={ + ["mithril_cost"]={ + ["value"]=100000, + ["unit"]=5 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=17000000, + ["unit"]=0 + } + } + }, + [21]={ + ["mithril_cost"]={ + ["value"]=1000, + ["unit"]=6 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=20000000, + ["unit"]=0 + } + } + }, + [22]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=6 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=23000000, + ["unit"]=0 + } + } + }, + [23]={ + ["mithril_cost"]={ + ["value"]=100000, + ["unit"]=6 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=27000000, + ["unit"]=0 + } + } + }, + [24]={ + ["mithril_cost"]={ + ["value"]=1000, + ["unit"]=7 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=31000000, + ["unit"]=0 + } + } + }, + [25]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=7 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=36000000, + ["unit"]=0 + } + } + }, + [26]={ + ["mithril_cost"]={ + ["value"]=100000, + ["unit"]=7 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=41000000, + ["unit"]=0 + } + } + }, + [27]={ + ["mithril_cost"]={ + ["value"]=1000000, + ["unit"]=7 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=47000000, + ["unit"]=0 + } + } + }, + [28]={ + ["mithril_cost"]={ + ["value"]=10000, + ["unit"]=8 + }, + ["unlock_attr"]={ + ["type"]="atkp_9", + ["bignum"]={ + ["value"]=53000000, + ["unit"]=0 + } + } + } +} +local config = { +data=runes_unlock,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/runes_unlock.lua.meta b/lua/app/config/runes_unlock.lua.meta new file mode 100644 index 00000000..52446a6a --- /dev/null +++ b/lua/app/config/runes_unlock.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 54ffa86af8e9e834d987e03509c28ed9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/signin.lua b/lua/app/config/signin.lua new file mode 100644 index 00000000..23ed3017 --- /dev/null +++ b/lua/app/config/signin.lua @@ -0,0 +1,76 @@ +local signin = { + [1]={ + ["reward"]={ + ["type"]=2, + ["id"]=10003, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + [2]={ + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + [3]={ + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + [4]={ + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + [5]={ + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + [6]={ + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=2000, + ["unit"]=0 + } + } + }, + [7]={ + ["reward"]={ + ["type"]=4, + ["id"]=40401, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + } +} +local config = { +data=signin,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/signin.lua.meta b/lua/app/config/signin.lua.meta new file mode 100644 index 00000000..76460c68 --- /dev/null +++ b/lua/app/config/signin.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 84349e0b2b2e8974a8fed0be2ac83912 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/skill.lua b/lua/app/config/skill.lua new file mode 100644 index 00000000..935d54dd --- /dev/null +++ b/lua/app/config/skill.lua @@ -0,0 +1,19066 @@ +local skill = { + [1]={ + ["kind"]=3, + ["trigger"]=14, + ["effect"]={ + { + ["type"]="none", + ["num"]=0, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 10 + }, + ["aim_search_type"]=2002, + ["aim_time"]=10, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_point"]=8 + }, + [1001]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack_ex1", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1403, + ["fx_hit"]=2 + }, + [1002]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack_ex2", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1406, + ["fx_hit"]=2 + }, + [1101]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1101, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1102]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 130 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1102, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [1103]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1103, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1104]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1104, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1105]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1105, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1106]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 210 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1106, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [1201]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1101, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1202]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1102, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [1203]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1103, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1204]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1104, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1205]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1105, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1206]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1106, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [1301]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1301, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1302]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1302, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [1303]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1303, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1304]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1304, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1305]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1305, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1306]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1306, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [1401]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1401, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1402]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1402, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [1403]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1403, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1404]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1404, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1405]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1405, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1406]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1406, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [1501]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1501, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1502]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1502, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [1503]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1503, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1504]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1504, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1505]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1505, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1506]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1506, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [1601]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1601, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1602]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1602, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1603]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1603, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1604]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1604, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1605]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1605, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [1606]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=1606, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [2001]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack_ex1", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2403, + ["fx_hit"]=1 + }, + [2002]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack_ex2", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2406, + ["fx_hit"]=1 + }, + [2101]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1200, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2101, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [2102]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1200, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2102, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [2103]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1200, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2103, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2104]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1200, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2104, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2105]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1200, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2105, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2106]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1200, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2106, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2201]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1800, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2101, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2202]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1800, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2102, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2203]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1800, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2103, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2204]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1800, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2104, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2205]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1800, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2105, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2206]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1800, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2106, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2301]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=2880, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2301, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2302]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=2880, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2302, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2303]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=2880, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2303, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2304]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=2880, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2304, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2305]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=2880, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2305, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2306]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=2880, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2306, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2401]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=5760, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2401, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2402]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=5760, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2402, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2403]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=5760, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2403, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2404]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=5760, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2404, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2405]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=5760, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2405, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2406]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=5760, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2406, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2501]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=12000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2501, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2502]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=12000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2502, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2503]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=12000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2503, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2504]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=12000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2504, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2505]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=12000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2505, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2506]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=12000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2506, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2601]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=24000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2601, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2602]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=24000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2602, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2603]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=24000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2603, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2604]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=24000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2604, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2605]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=24000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2605, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [2606]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=24000, + ["time"]=3000, + ["ratio"]=1000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=2606, + ["fx_self_delay"]=100, + ["fx_hit"]=1 + }, + [3001]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack_ex1", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3402, + ["fx_hit"]=2 + }, + [3002]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack_ex2", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3406, + ["fx_hit"]=2 + }, + [3101]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3101, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3102]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3102, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3103]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 100, + 200, + 300 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3103, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3104]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2, + 3 + }, + ["effect_timing"]={ + 100, + 200, + 300, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3104, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3105]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3105, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3106]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3106, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3201]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3101, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3202]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3102, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3203]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 100, + 200, + 300 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3103, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3204]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2, + 3 + }, + ["effect_timing"]={ + 100, + 200, + 300, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3104, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3205]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3105, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3206]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3106, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3301]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3301, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3302]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3302, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3303]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 100, + 200, + 300 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3303, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3304]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2, + 3 + }, + ["effect_timing"]={ + 100, + 200, + 300, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3304, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3305]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3305, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3306]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3306, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3401]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3401, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3402]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3402, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3403]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 100, + 200, + 300 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3403, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3404]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2, + 3 + }, + ["effect_timing"]={ + 100, + 200, + 300, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3404, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3405]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3405, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3406]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3406, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3501]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3501, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3502]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3502, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3503]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 100, + 200, + 300 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3503, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3504]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2, + 3 + }, + ["effect_timing"]={ + 100, + 200, + 300, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3504, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3505]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3505, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3506]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3506, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3601]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3601, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3602]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3602, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3603]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 100, + 200, + 300 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3603, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3604]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2, + 3 + }, + ["effect_timing"]={ + 100, + 200, + 300, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3604, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3605]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3605, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [3606]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=3606, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [4001]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack_ex1", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4404, + ["fx_hit"]=2 + }, + [4002]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack_ex2", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4406, + ["fx_hit"]=2 + }, + [4101]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4101, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4102]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4102, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4103]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4103, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [4104]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 130 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4104, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [4105]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 210 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4105, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [4106]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 2, + 3, + 4 + }, + ["effect_timing"]={ + 180, + 250, + 340, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4106, + ["fx_self_delay"]=180, + ["fx_hit"]=2 + }, + [4201]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4101, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4202]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4102, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4203]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4103, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [4204]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 130 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4104, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [4205]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 210 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4105, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [4206]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 2, + 3, + 4 + }, + ["effect_timing"]={ + 180, + 250, + 340, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4106, + ["fx_self_delay"]=180, + ["fx_hit"]=2 + }, + [4301]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4301, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4302]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4302, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4303]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4303, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [4304]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 130 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4304, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [4305]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 210 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4305, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [4306]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 2, + 3, + 4 + }, + ["effect_timing"]={ + 180, + 250, + 340, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4306, + ["fx_self_delay"]=180, + ["fx_hit"]=2 + }, + [4401]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4401, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4402]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4402, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4403]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4403, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [4404]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 130 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4404, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [4405]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 210 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4405, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [4406]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 2, + 3, + 4 + }, + ["effect_timing"]={ + 180, + 250, + 340, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4406, + ["fx_self_delay"]=180, + ["fx_hit"]=2 + }, + [4501]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4501, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4502]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4502, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4503]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4503, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [4504]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 130 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4504, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [4505]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 210 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4505, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [4506]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 2, + 3, + 4 + }, + ["effect_timing"]={ + 180, + 250, + 340, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4506, + ["fx_self_delay"]=180, + ["fx_hit"]=2 + }, + [4601]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4601, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4602]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 160 + }, + ["min_timing"]=220, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4602, + ["fx_self_delay"]=160, + ["fx_hit"]=2 + }, + [4603]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["min_timing"]=220, + ["act_name"]="attack03", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4603, + ["fx_self_delay"]=100, + ["fx_hit"]=2 + }, + [4604]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 130 + }, + ["min_timing"]=220, + ["act_name"]="attack04", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4604, + ["fx_self_delay"]=130, + ["fx_hit"]=2 + }, + [4605]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 210 + }, + ["min_timing"]=220, + ["act_name"]="attack05", + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4605, + ["fx_self_delay"]=210, + ["fx_hit"]=2 + }, + [4606]={ + ["kind"]=1, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 2, + 3, + 4 + }, + ["effect_timing"]={ + 180, + 250, + 340, + 400 + }, + ["min_timing"]=220, + ["act_name"]="attack06", + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 4 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_self"]=4606, + ["fx_self_delay"]=180, + ["fx_hit"]=2 + }, + [11011]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 100 + }, + ["string_num_grow"]={ + 15 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11012]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=900, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 240 + }, + ["string_num_grow"]={ + 36 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11013]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=900, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11014]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=900, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11015]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=900, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11016]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=13000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 390 + }, + ["string_num_grow"]={ + 60 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11017]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=13000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11018]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=13000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11021]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 150 + }, + ["string_num_grow"]={ + 23 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11022]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=9000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 360 + }, + ["string_num_grow"]={ + 56 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11023]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=9000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11024]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=9000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11025]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=9000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11026]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 600 + }, + ["string_num_grow"]={ + 90 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11027]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11028]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11031]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 240 + }, + ["string_num_grow"]={ + 36 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11032]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 600 + }, + ["string_num_grow"]={ + 92 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11033]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11034]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11035]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11036]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 960 + }, + ["string_num_grow"]={ + 144 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11037]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11038]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11041]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 480 + }, + ["string_num_grow"]={ + 72 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11042]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1200 + }, + ["string_num_grow"]={ + 180 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11043]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11044]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11045]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11046]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=64000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1920 + }, + ["string_num_grow"]={ + 288 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11047]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=64000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11048]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=64000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11051]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1000 + }, + ["string_num_grow"]={ + 150 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11052]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2400 + }, + ["string_num_grow"]={ + 360 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11053]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11054]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11055]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11056]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=19000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 3900 + }, + ["string_num_grow"]={ + 570 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11057]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=19000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11058]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=19000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11061]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2000 + }, + ["string_num_grow"]={ + 300 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11062]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=18000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4800 + }, + ["string_num_grow"]={ + 720 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11063]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=18000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11064]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=18000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11065]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=18000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11066]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 8100 + }, + ["string_num_grow"]={ + 1200 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11067]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11068]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11071]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=45000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 3000 + }, + ["string_num_grow"]={ + 450 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11072]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=28000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 7600 + }, + ["string_num_grow"]={ + 1120 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11073]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=28000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11074]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=28000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11075]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=28000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11076]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 12000 + }, + ["string_num_grow"]={ + 1800 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11077]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11078]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11081]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4000 + }, + ["string_num_grow"]={ + 600 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11082]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=250000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=38000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 10000 + }, + ["string_num_grow"]={ + 1520 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11083]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=250000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=38000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11084]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=250000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=38000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11085]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=250000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=38000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11086]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=530000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 15900 + }, + ["string_num_grow"]={ + 2400 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11087]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=530000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11088]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=530000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11091]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=600000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=90000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 6000 + }, + ["string_num_grow"]={ + 900 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="11011", + ["qlt"]=1, + ["fx_self"]=1001, + ["show_name"]=1 + }, + [11092]={ + ["kind"]=2, + ["skill_sub"]={ + 11013, + 11014, + 11015 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 0, + 0, + 0 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=380000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=56000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 15200 + }, + ["string_num_grow"]={ + 2240 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 400 + }, + ["shake_type"]={ + 3 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["cd_attack"]=15, + ["icon"]="11012", + ["qlt"]=1, + ["fx_self"]=1002, + ["fx_hit"]=1, + ["show_name"]=1 + }, + [11093]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=380000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=56000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11094]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=380000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=56000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11095]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=380000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=56000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 850 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1200 + }, + ["qlt"]=1 + }, + [11096]={ + ["kind"]=2, + ["skill_sub"]={ + 11017, + 11018 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 300, + 600 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=800000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 24000 + }, + ["string_num_grow"]={ + 3600 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=25, + ["icon"]="11016", + ["qlt"]=1, + ["duration"]=1000, + ["fx_point"]=1004, + ["show_name"]=1 + }, + [11097]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=800000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 400, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [11098]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=800000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 100 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 600, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["qlt"]=1, + ["fx_point"]=1004 + }, + [21011]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=7000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 210 + }, + ["string_num_grow"]={ + 30 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21012]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=7000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21013]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=7000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21014]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=8000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1200, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1200, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=120, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 80 + }, + ["string_num_grow"]={ + 12 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21015]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=17000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=17000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=17000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=17000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=17000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=17000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1020 + }, + ["string_num_grow"]={ + 150 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [21021]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 300 + }, + ["string_num_grow"]={ + 45 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21022]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21023]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21024]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=1800, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=180, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 120 + }, + ["string_num_grow"]={ + 18 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21025]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=25000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=25000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=25000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=25000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=25000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=25000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1500 + }, + ["string_num_grow"]={ + 228 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [21031]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=16000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 480 + }, + ["string_num_grow"]={ + 72 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21032]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=16000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21033]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=16000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21034]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=19000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=2880, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2900, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=280, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 190 + }, + ["string_num_grow"]={ + 29 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21035]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=6000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2400 + }, + ["string_num_grow"]={ + 360 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [21041]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 960 + }, + ["string_num_grow"]={ + 144 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21042]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21043]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21044]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=38000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=5760, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=5800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=570, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 380 + }, + ["string_num_grow"]={ + 58 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21045]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4800 + }, + ["string_num_grow"]={ + 720 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [21051]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=67000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2010 + }, + ["string_num_grow"]={ + 300 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21052]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=67000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21053]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=67000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21054]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=77000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=12000, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=1200, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 770 + }, + ["string_num_grow"]={ + 120 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21055]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=160000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=160000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=160000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=160000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=160000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=160000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 9600 + }, + ["string_num_grow"]={ + 1440 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [21061]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 3900 + }, + ["string_num_grow"]={ + 600 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21062]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21063]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21064]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=24000, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=23000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=2400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1500 + }, + ["string_num_grow"]={ + 230 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21065]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=330000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=330000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=330000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=330000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=330000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=330000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=50000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=50000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=50000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=50000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=50000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=50000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 19800 + }, + ["string_num_grow"]={ + 3000 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [21071]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 6000 + }, + ["string_num_grow"]={ + 900 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21072]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21073]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21074]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=240000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=36000, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=36000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2400 + }, + ["string_num_grow"]={ + 360 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21075]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=500000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=500000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=500000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=500000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=500000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=500000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=75000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=75000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=75000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=75000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=75000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=75000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 30000 + }, + ["string_num_grow"]={ + 4500 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [21081]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 8100 + }, + ["string_num_grow"]={ + 1200 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21082]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21083]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21084]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=320000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=48000, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 3200 + }, + ["string_num_grow"]={ + 480 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21085]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=670000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=670000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=670000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=670000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=670000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=670000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 40200 + }, + ["string_num_grow"]={ + 6000 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [21091]={ + ["kind"]=2, + ["skill_sub"]={ + 21012, + 21013 + }, + ["skill_sub_trigger"]={ + 1, + 1 + }, + ["skill_sub_value"]={ + 200, + 400 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 12000 + }, + ["string_num_grow"]={ + 1800 + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=8, + ["icon"]="21011", + ["qlt"]=1, + ["fx_target"]=2001, + ["fx_hit"]=2007, + ["show_name"]=1 + }, + [21092]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2002, + ["fx_hit"]=2007 + }, + [21093]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["effect_timing"]={ + 350 + }, + ["shake_trigger"]={ + 350 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["qlt"]=1, + ["fx_target"]=2003, + ["fx_hit"]=2007 + }, + [21094]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=480000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="poison", + ["num"]=72000, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=72000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="poison", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4800 + }, + ["string_num_grow"]={ + 720 + }, + ["effect_timing"]={ + 50 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["cd_attack"]=15, + ["icon"]="21014", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=1000, + ["fx_skill"]=2004, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [21095]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=1000000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=1000000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=1000000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=1000000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=1000000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=1000000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 60000 + }, + ["string_num_grow"]={ + 9000 + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 410, + 440, + 470, + 500, + 530, + 680 + }, + ["shake_trigger"]={ + 410 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 5 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="21015", + ["qlt"]=1, + ["fx_target"]=2005, + ["fx_hit"]=2006, + ["show_name"]=1 + }, + [31011]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 100 + }, + ["string_num_grow"]={ + 15 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31012]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 500 + }, + ["string_num_grow"]={ + 75 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31013]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=13000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=13000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=13000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 390 + }, + ["string_num_grow"]={ + 60 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [31021]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 150 + }, + ["string_num_grow"]={ + 23 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31022]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 750 + }, + ["string_num_grow"]={ + 115 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31023]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 600 + }, + ["string_num_grow"]={ + 90 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [31031]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 240 + }, + ["string_num_grow"]={ + 36 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31032]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1200 + }, + ["string_num_grow"]={ + 180 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31033]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 960 + }, + ["string_num_grow"]={ + 144 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [31041]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 480 + }, + ["string_num_grow"]={ + 72 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31042]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2400 + }, + ["string_num_grow"]={ + 360 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31043]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=64000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=64000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=64000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9600, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=9600, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=9600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1920 + }, + ["string_num_grow"]={ + 288 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [31051]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1000 + }, + ["string_num_grow"]={ + 150 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31052]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=96000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=96000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=96000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=96000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=96000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=14000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=14000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=14000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=14000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=14000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4800 + }, + ["string_num_grow"]={ + 700 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31053]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=19000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=19000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=19000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 3900 + }, + ["string_num_grow"]={ + 570 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [31061]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2000 + }, + ["string_num_grow"]={ + 300 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31062]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=190000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=29000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=29000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=29000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=29000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=29000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 9500 + }, + ["string_num_grow"]={ + 1450 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31063]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 8100 + }, + ["string_num_grow"]={ + 1200 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [31071]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=45000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 3000 + }, + ["string_num_grow"]={ + 450 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31072]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=45000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=45000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=45000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=45000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=45000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 15000 + }, + ["string_num_grow"]={ + 2250 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31073]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 12000 + }, + ["string_num_grow"]={ + 1800 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [31081]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4000 + }, + ["string_num_grow"]={ + 600 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31082]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 20000 + }, + ["string_num_grow"]={ + 3000 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31083]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=530000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=530000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=530000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 15900 + }, + ["string_num_grow"]={ + 2400 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [31091]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=600000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=90000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 6000 + }, + ["string_num_grow"]={ + 900 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="31011", + ["qlt"]=1, + ["fx_self"]=3001, + ["fx_hit"]=3002, + ["show_name"]=1 + }, + [31092]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=600000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=600000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=600000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=600000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=600000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=90000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=90000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=90000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=90000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=90000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 30000 + }, + ["string_num_grow"]={ + 4500 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["cd_attack"]=15, + ["icon"]="31012", + ["qlt"]=1, + ["duration"]=1600, + ["interval"]=300, + ["fx_skill"]=3003, + ["fx_hit"]=2, + ["show_name"]=1 + }, + [31093]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=800000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=800000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=800000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 24000 + }, + ["string_num_grow"]={ + 3600 + }, + ["multiple_effect"]={ + 1, + 2 + }, + ["effect_timing"]={ + 220, + 440, + 660 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 600 + }, + ["shake_type"]={ + 6 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1200 + }, + ["cd_attack"]=25, + ["icon"]="31013", + ["qlt"]=1, + ["fx_self"]=3005, + ["show_name"]=1 + }, + [41011]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=13000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 130 + }, + ["string_num_grow"]={ + 20 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41012]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 50 + }, + ["string_num_grow"]={ + 8 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41013]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=7000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=1000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 70 + }, + ["string_num_grow"]={ + 10 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [41021]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=3, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 200 + }, + ["string_num_grow"]={ + 30 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41022]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=8000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1100, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 80 + }, + ["string_num_grow"]={ + 11 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41023]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=1500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 100 + }, + ["string_num_grow"]={ + 15 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [41031]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=3, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 320 + }, + ["string_num_grow"]={ + 48 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41032]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=12000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 120 + }, + ["string_num_grow"]={ + 18 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41033]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=16000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=2400, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 160 + }, + ["string_num_grow"]={ + 24 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [41041]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=64000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=3, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=9600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 640 + }, + ["string_num_grow"]={ + 96 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41042]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=24000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 240 + }, + ["string_num_grow"]={ + 36 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41043]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=32000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=4800, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 320 + }, + ["string_num_grow"]={ + 48 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [41051]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=3, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1300 + }, + ["string_num_grow"]={ + 200 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41052]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=48000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=7200, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 480 + }, + ["string_num_grow"]={ + 72 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41053]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=64000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=9600, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 640 + }, + ["string_num_grow"]={ + 96 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [41061]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=3, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2700 + }, + ["string_num_grow"]={ + 400 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41062]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=96000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=14000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 960 + }, + ["string_num_grow"]={ + 140 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41063]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=130000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1300 + }, + ["string_num_grow"]={ + 200 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [41071]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=3, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4000 + }, + ["string_num_grow"]={ + 600 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41072]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=23000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1500 + }, + ["string_num_grow"]={ + 230 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41073]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=30000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2000 + }, + ["string_num_grow"]={ + 300 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [41081]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=530000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=3, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=80000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 5300 + }, + ["string_num_grow"]={ + 800 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41082]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2000 + }, + ["string_num_grow"]={ + 300 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41083]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=270000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2700 + }, + ["string_num_grow"]={ + 400 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [41091]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=800000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=3, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=120000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 8000 + }, + ["string_num_grow"]={ + 1200 + }, + ["effect_timing"]={ + 100 + }, + ["shake_trigger"]={ + 100 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1600, + 1000 + }, + ["cd_attack"]=8, + ["icon"]="41011", + ["qlt"]=1, + ["fx_self"]=4001, + ["fx_hit"]=4002, + ["show_name"]=1 + }, + [41092]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=45000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 3000 + }, + ["string_num_grow"]={ + 450 + }, + ["effect_timing"]={ + 50 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 450 + }, + ["cd_attack"]=15, + ["icon"]="41012", + ["qlt"]=1, + ["duration"]=5000, + ["interval"]=500, + ["fx_skill"]=4003, + ["fx_hit"]=4004, + ["show_name"]=1 + }, + [41093]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="spell_mark_explode", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="spell_mark_explode", + ["num"]=60000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4000 + }, + ["string_num_grow"]={ + 600 + }, + ["effect_timing"]={ + 200 + }, + ["shake_trigger"]={ + 200 + }, + ["shake_time"]={ + 200 + }, + ["shake_type"]={ + 1 + }, + ["aim_search_type"]=1002, + ["aim_time"]=0, + ["cd_attack"]=25, + ["icon"]="41013", + ["qlt"]=1, + ["fx_self"]=4005, + ["fx_hit"]=4006, + ["show_name"]=1 + }, + [400011]={ + ["kind"]=3, + ["trigger"]=1, + ["trigger_value"]=3, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 50 + }, + ["string_num_grow"]={ + 5 + }, + ["multiple_effect"]={ + 1 + }, + ["effect_timing"]={ + 400, + 600 + }, + ["aim_search_type"]=2001, + ["aim_time"]=400, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 200 + }, + ["fx_point"]=11, + ["fx_point_delay"]=400, + ["show_name"]=1 + }, + [400021]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=3000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 30 + }, + ["string_num_grow"]={ + 3 + } + }, + [400031]={ + ["kind"]=4, + ["trigger"]=5, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=3000, + ["time"]=5000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=300, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 30 + }, + ["string_num_grow"]={ + 3 + }, + ["cd_time"]=15000 + }, + [400041]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="lie_time", + ["num"]=0, + ["time"]=1000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="lie_time", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 50 + }, + ["string_num_grow"]={ + 5 + } + }, + [400051]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="attack_crit_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="crit_time_up", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="attack_crit_up", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="crit_time_up", + ["num"]=500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 50 + }, + ["string_num_grow"]={ + 5 + } + }, + [401011]={ + ["kind"]=3, + ["trigger"]=2, + ["trigger_value"]=5, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=1000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 100 + }, + ["string_num_grow"]={ + 10 + }, + ["effect_timing"]={ + 10 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + -1200, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1200, + 300 + }, + ["fx_self"]=9, + ["show_name"]=1 + }, + [401021]={ + ["kind"]=3, + ["trigger"]=3, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="airborne", + ["num"]=0, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="airborne", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 200 + }, + ["string_num_grow"]={ + 20 + }, + ["effect_timing"]={ + 10 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1000 + }, + ["cd_time"]=15000, + ["fx_self"]=10, + ["show_name"]=1 + }, + [401031]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="airborne_num_up", + ["num"]=3, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=1000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="airborne_num_up", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 100 + }, + ["string_num_grow"]={ + 10 + } + }, + [401041]={ + ["kind"]=4, + ["trigger"]=8, + ["trigger_value"]=10000, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 50 + }, + ["string_num_grow"]={ + 5 + } + }, + [401051]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 200 + }, + ["string_num_grow"]={ + 20 + } + }, + [402011]={ + ["kind"]=3, + ["trigger"]=23, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 200 + }, + ["string_num_grow"]={ + 20 + }, + ["effect_timing"]={ + 200 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["show_name"]=1 + }, + [402021]={ + ["kind"]=4, + ["trigger"]=6, + ["trigger_value"]=3000, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 200 + }, + ["string_num_grow"]={ + 20 + } + }, + [402031]={ + ["kind"]=3, + ["trigger"]=1, + ["trigger_value"]=3, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=3000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 300 + }, + ["string_num_grow"]={ + 30 + }, + ["multiple_effect"]={ + 1 + }, + ["effect_timing"]={ + 400, + 600 + }, + ["aim_search_type"]=2001, + ["aim_time"]=400, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 200 + }, + ["fx_point"]=11, + ["fx_point_delay"]=400, + ["show_name"]=1 + }, + [402041]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 200 + }, + ["string_num_grow"]={ + 20 + } + }, + [402051]={ + ["kind"]=4, + ["trigger"]=5, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 200 + }, + ["string_num_grow"]={ + 20 + }, + ["cd_time"]=15000 + }, + [403011]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=80000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="lie_time", + ["num"]=0, + ["time"]=1000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=8000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="lie_time", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 800 + }, + ["string_num_grow"]={ + 80 + } + }, + [403021]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="attack_crit_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="crit_time_up", + ["num"]=20000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="attack_crit_up", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="crit_time_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 200 + }, + ["string_num_grow"]={ + 20 + } + }, + [403031]={ + ["kind"]=3, + ["trigger"]=2, + ["trigger_value"]=5, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=25000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=25000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=2500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=2500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 250 + }, + ["string_num_grow"]={ + 25 + }, + ["effect_timing"]={ + 200 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + -1200, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1200, + 300 + }, + ["fx_self"]=9, + ["show_name"]=1 + }, + [403041]={ + ["kind"]=3, + ["trigger"]=3, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="airborne", + ["num"]=0, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="airborne_time", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1000 + }, + ["string_num_grow"]={ + 100 + }, + ["effect_timing"]={ + 200 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1000 + }, + ["cd_time"]=15000, + ["fx_self"]=10, + ["show_name"]=1 + }, + [403051]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=50000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="airborne_num_up", + ["num"]=5, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=5000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="airborne_num_up", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 500 + }, + ["string_num_grow"]={ + 50 + } + }, + [404011]={ + ["kind"]=4, + ["trigger"]=8, + ["trigger_value"]=10000, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=50000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=5000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 500 + }, + ["string_num_grow"]={ + 50 + } + }, + [404021]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2000 + }, + ["string_num_grow"]={ + 200 + } + }, + [404031]={ + ["kind"]=3, + ["trigger"]=23, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=100000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1000 + }, + ["string_num_grow"]={ + 100 + }, + ["effect_timing"]={ + 200 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["show_name"]=1 + }, + [404041]={ + ["kind"]=4, + ["trigger"]=6, + ["trigger_value"]=3000, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=100000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=10000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1000 + }, + ["string_num_grow"]={ + 100 + } + }, + [404051]={ + ["kind"]=3, + ["trigger"]=1, + ["trigger_value"]=3, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=150000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=15000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1500 + }, + ["string_num_grow"]={ + 150 + }, + ["multiple_effect"]={ + 1 + }, + ["effect_timing"]={ + 400, + 600 + }, + ["aim_search_type"]=2001, + ["aim_time"]=400, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 200 + }, + ["fx_point"]=11, + ["fx_point_delay"]=400, + ["show_name"]=1 + }, + [405011]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=150000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=15000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1500 + }, + ["string_num_grow"]={ + 150 + } + }, + [405021]={ + ["kind"]=4, + ["trigger"]=5, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=150000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=15000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1500 + }, + ["string_num_grow"]={ + 150 + }, + ["cd_time"]=15000 + }, + [405031]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=240000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="lie_time", + ["num"]=0, + ["time"]=1000, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=24000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="lie_time", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2400 + }, + ["string_num_grow"]={ + 240 + } + }, + [405041]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="attack_crit_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="crit_time_up", + ["num"]=60000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="attack_crit_up", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="crit_time_up", + ["num"]=6000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 600 + }, + ["string_num_grow"]={ + 60 + } + }, + [405051]={ + ["kind"]=3, + ["trigger"]=2, + ["trigger_value"]=5, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=75000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=75000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=7500, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="hurt", + ["num"]=7500, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 750 + }, + ["string_num_grow"]={ + 75 + }, + ["effect_timing"]={ + 200 + }, + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + -1200, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1200, + 300 + }, + ["fx_self"]=9, + ["show_name"]=1 + }, + [406011]={ + ["kind"]=3, + ["trigger"]=3, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=300000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="airborne", + ["num"]=0, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=30000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="airborne_time", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 3000 + }, + ["string_num_grow"]={ + 300 + }, + ["effect_timing"]={ + 200 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 1000 + }, + ["cd_time"]=1000, + ["fx_self"]=10, + ["show_name"]=1 + }, + [406021]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="airborne_num_up", + ["num"]=10, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + }, + { + ["type"]="airborne_num_up", + ["num"]=0, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2000 + }, + ["string_num_grow"]={ + 200 + } + }, + [406031]={ + ["kind"]=4, + ["trigger"]=8, + ["trigger_value"]=10000, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=150000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=15000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 1500 + }, + ["string_num_grow"]={ + 150 + } + }, + [406041]={ + ["kind"]=4, + ["trigger"]=4, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=400000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="airborne_damage_up", + ["num"]=40000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 4000 + }, + ["string_num_grow"]={ + 400 + } + }, + [406051]={ + ["kind"]=3, + ["trigger"]=23, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="hurt", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2000 + }, + ["string_num_grow"]={ + 200 + }, + ["effect_timing"]={ + 200 + }, + ["aim_search_type"]=1001, + ["aim_time"]=0, + ["show_name"]=1 + }, + [406061]={ + ["kind"]=4, + ["trigger"]=6, + ["trigger_value"]=3000, + ["obj"]=1, + ["effect"]={ + { + ["type"]="atkp_up", + ["num"]=200000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_grow"]={ + { + ["type"]="atkp_up", + ["num"]=20000, + ["time"]=0, + ["ratio"]=0 + } + }, + ["string_num_base"]={ + 2000 + }, + ["string_num_grow"]={ + 200 + } + }, + [501011]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="double_skill", + ["num"]=2000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [501021]={ + ["kind"]=4, + ["trigger"]=8, + ["trigger_value"]=10000, + ["obj"]=1, + ["effect"]={ + { + ["type"]="double_skill", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [501031]={ + ["kind"]=4, + ["trigger"]=3, + ["obj"]=1, + ["effect"]={ + { + ["type"]="skill_all_damage_up", + ["num"]=3000, + ["time"]=5000, + ["ratio"]=10000 + } + }, + ["cd_time"]=5000 + }, + [501041]={ + ["kind"]=4, + ["trigger"]=9, + ["obj"]=1, + ["effect"]={ + { + ["type"]="attack_damage_up", + ["num"]=10000, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["cd_time"]=3000 + }, + [502011]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="spell_mark_save", + ["num"]=2000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [502021]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="miss_up", + ["num"]=1000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [502022]={ + ["kind"]=3, + ["trigger"]=5, + ["effect"]={ + { + ["type"]="spell_mark", + ["num"]=2, + ["time"]=999999, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 100 + }, + ["aim_search_type"]=1002 + }, + [502031]={ + ["kind"]=4, + ["trigger"]=11, + ["obj"]=2, + ["effect"]={ + { + ["type"]="spell_mark", + ["num"]=1, + ["time"]=999999, + ["ratio"]=10000 + } + } + }, + [502041]={ + ["kind"]=4, + ["trigger"]=14, + ["obj"]=2, + ["effect"]={ + { + ["type"]="spell_mark", + ["num"]=10, + ["time"]=999999, + ["ratio"]=3000 + } + } + }, + [503011]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="poison_double", + ["num"]=3000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [503021]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="poison_superposition", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [503031]={ + ["kind"]=4, + ["trigger"]=24, + ["obj"]=2, + ["effect"]={ + { + ["type"]="poison", + ["num"]=1000, + ["time"]=0, + ["ratio"]=5000 + } + } + }, + [503041]={ + ["kind"]=4, + ["trigger"]=13, + ["obj"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [504011]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="double_skill", + ["num"]=2000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [504021]={ + ["kind"]=4, + ["trigger"]=14, + ["obj"]=1, + ["effect"]={ + { + ["type"]="skill_3", + ["num"]=1, + ["time"]=0, + ["ratio"]=2000 + } + } + }, + [504031]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="skill_2", + ["num"]=1, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["cd_time"]=10000 + }, + [504041]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="skill_damage_double", + ["num"]=3000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [505011]={ + ["kind"]=4, + ["trigger"]=15, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_time", + ["num"]=0, + ["time"]=500, + ["ratio"]=10000 + }, + { + ["type"]="attack_damage_up", + ["num"]=2000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["cd_time"]=3000 + }, + [505021]={ + ["kind"]=4, + ["trigger"]=16, + ["obj"]=2, + ["effect"]={ + { + ["type"]="spell_mark", + ["num"]=2, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["aim_search_type"]=1002 + }, + [505031]={ + ["kind"]=4, + ["trigger"]=17, + ["obj"]=1, + ["effect"]={ + { + ["type"]="skill_1", + ["num"]=1, + ["time"]=0, + ["ratio"]=2000 + } + } + }, + [505041]={ + ["kind"]=4, + ["trigger"]=18, + ["obj"]=1, + ["effect"]={ + { + ["type"]="skill_2", + ["num"]=1, + ["time"]=0, + ["ratio"]=2000 + } + } + }, + [506011]={ + ["kind"]=4, + ["trigger"]=19, + ["obj"]=1, + ["effect"]={ + { + ["type"]="attack_crit_up", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [506021]={ + ["kind"]=4, + ["trigger"]=20, + ["obj"]=1, + ["effect"]={ + { + ["type"]="spell_mark_damage", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [506031]={ + ["kind"]=4, + ["trigger"]=21, + ["obj"]=1, + ["effect"]={ + { + ["type"]="poison_time", + ["num"]=0, + ["time"]=5000, + ["ratio"]=10000 + } + } + }, + [506041]={ + ["kind"]=4, + ["trigger"]=22, + ["obj"]=1, + ["effect"]={ + { + ["type"]="skill_2_damage_up", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [507011]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="crit_up", + ["num"]=1000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [507021]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="miss_up", + ["num"]=1000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [507031]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="attack_damage_up", + ["num"]=1000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [507041]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="airborne_damage_up", + ["num"]=1000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [600011]={ + ["kind"]=4, + ["trigger"]=2, + ["trigger_value"]=10, + ["obj"]=1, + ["effect"]={ + { + ["type"]="treat", + ["num"]=2000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [600021]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="treat_shield", + ["num"]=3000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [600031]={ + ["kind"]=4, + ["trigger"]=3, + ["obj"]=1, + ["effect"]={ + { + ["type"]="miss_up", + ["num"]=5000, + ["time"]=3000, + ["ratio"]=10000 + } + }, + ["cd_time"]=30000 + }, + [600041]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="attack_interval_dec", + ["num"]=50, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [600051]={ + ["kind"]=4, + ["trigger"]=1, + ["trigger_value"]=1, + ["obj"]=1, + ["effect"]={ + { + ["type"]="treat", + ["num"]=1500, + ["time"]=0, + ["ratio"]=3000 + } + } + }, + [600061]={ + ["kind"]=4, + ["trigger"]=2, + ["trigger_value"]=10, + ["obj"]=1, + ["effect"]={ + { + ["type"]="treat", + ["num"]=3000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [600071]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="treat_shield", + ["num"]=6000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [600081]={ + ["kind"]=4, + ["trigger"]=3, + ["obj"]=1, + ["effect"]={ + { + ["type"]="miss_up", + ["num"]=5000, + ["time"]=5000, + ["ratio"]=10000 + } + }, + ["cd_time"]=30000 + }, + [600091]={ + ["kind"]=4, + ["trigger"]=1, + ["trigger_value"]=1, + ["obj"]=1, + ["effect"]={ + { + ["type"]="treat", + ["num"]=3000, + ["time"]=0, + ["ratio"]=3000 + } + } + }, + [600101]={ + ["kind"]=4, + ["trigger"]=2, + ["trigger_value"]=10, + ["obj"]=1, + ["effect"]={ + { + ["type"]="treat", + ["num"]=4000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [600111]={ + ["kind"]=4, + ["trigger"]=7, + ["obj"]=1, + ["effect"]={ + { + ["type"]="treat_shield", + ["num"]=9000, + ["time"]=0, + ["ratio"]=10000 + } + } + }, + [900011]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 166 + }, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 200 + }, + ["fx_hit"]=1 + }, + [900021]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1500 + }, + ["act_name"]="attack01", + ["warning_target_type"]=1, + ["warning_time"]={ + 500, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["aim_search_type"]=2001, + ["aim_time"]=500, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 200 + }, + ["act_duration"]=1500, + ["fx_point"]=910021, + ["fx_point_delay"]=1350, + ["fx_hit"]=2 + }, + [900022]={ + ["kind"]=2, + ["act_name"]="jump", + ["move_id"]=8, + ["move_timing"]=500, + ["invincible_start"]=500 + }, + [900023]={ + ["kind"]=2, + ["act_name"]="born", + ["invincible_end"]=200 + }, + [900031]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1250 + }, + ["act_name"]="attack01", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1200 + }, + ["warning_type"]=1, + ["warning_range"]={ + 350, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 350, + 300 + }, + ["act_duration"]=2000, + ["fx_hit"]=1 + }, + [900041]={ + ["act_name"]="attack02", + ["act_duration"]=300, + ["move_id"]=14, + ["move_timing"]=10 + }, + [910011]={ + + }, + [910012]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 166 + }, + ["act_name"]="attack01", + ["aim_search_type"]=2002, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 250, + 200 + }, + ["fx_hit"]=1 + }, + [910021]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1500 + }, + ["act_name"]="attack01", + ["warning_target_type"]=1, + ["warning_time"]={ + 500, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 200 + }, + ["aim_search_type"]=2001, + ["aim_time"]=500, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 200 + }, + ["act_duration"]=1500, + ["fx_point"]=910021, + ["fx_point_delay"]=1350, + ["fx_hit"]=2 + }, + [910022]={ + ["kind"]=2, + ["act_name"]="jump", + ["move_id"]=8, + ["move_timing"]=500, + ["invincible_start"]=500 + }, + [910023]={ + ["kind"]=2, + ["act_name"]="born", + ["invincible_end"]=200 + }, + [910031]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1250 + }, + ["act_name"]="attack01", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1200 + }, + ["warning_type"]=1, + ["warning_range"]={ + 350, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 350, + 300 + }, + ["act_duration"]=1783, + ["fx_hit"]=1 + }, + [910041]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1000 + }, + ["act_name"]="attack01", + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 400, + 300 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 300 + }, + ["duration"]=1300, + ["interval"]=5000, + ["fx_hit"]=1, + ["move_id"]=17, + ["move_timing"]=1000 + }, + [910061]={ + ["kind"]=2, + ["act_name"]="attack01", + ["fx_self"]=910061, + ["fx_self_delay"]=700, + ["move_id"]=24, + ["move_timing"]=900, + ["invincible_start"]=850 + }, + [910062]={ + ["kind"]=2, + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["act_duration"]=1000 + }, + [910063]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 533 + }, + ["act_name"]="attack02", + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 300 + }, + ["fx_self"]=910061, + ["invincible_end"]=500 + }, + [910071]={ + ["act_name"]="attack01", + ["act_duration"]=500, + ["move_id"]=18, + ["move_timing"]=10 + }, + [910072]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1033 + }, + ["act_name"]="attack02", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 350, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 350, + 300 + }, + ["fx_hit"]=1 + }, + [910081]={ + ["kind"]=2, + ["act_name"]="attack01_1", + ["move_id"]=24, + ["move_timing"]=500, + ["invincible_start"]=400 + }, + [910082]={ + ["kind"]=2, + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["act_duration"]=1000 + }, + [910083]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 10 + }, + ["act_name"]="attack01_2", + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 300 + }, + ["fx_self"]=930081, + ["invincible_end"]=1000 + }, + [910111]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1000 + }, + ["act_name"]="attack01", + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 800, + 300 + }, + ["aim_search_type"]=2003, + ["aim_time"]=900, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 300 + }, + ["duration"]=1300, + ["interval"]=5000, + ["fx_hit"]=1, + ["move_id"]=26, + ["move_timing"]=1000 + }, + [920011]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1000 + }, + ["act_name"]="attack02", + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 1200 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1200, + 300 + }, + ["aim_search_type"]=2003, + ["aim_time"]=800, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 300 + }, + ["duration"]=1300, + ["interval"]=5000, + ["fx_hit"]=1, + ["move_id"]=7, + ["move_timing"]=1100 + }, + [920021]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + }, + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["multiple_effect"]={ + 1, + 2, + 3, + 4, + 5 + }, + ["effect_timing"]={ + 2033, + 2433, + 2833, + 3233, + 3633, + 4033 + }, + ["act_name"]="attack02", + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 2000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 2000, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 550, + 300 + }, + ["fx_self"]=920022, + ["fx_self_delay"]=2000, + ["fx_hit"]=2, + ["move_id"]=9, + ["move_timing"]=2000 + }, + [920031]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1200 + }, + ["act_name"]="attack01", + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 1200 + }, + ["warning_type"]=1, + ["warning_range"]={ + 650, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 550, + 300 + }, + ["act_duration"]=1700, + ["fx_self"]=920021, + ["fx_self_delay"]=1200, + ["fx_hit"]=2 + }, + [930011]={ + ["kind"]=2, + ["act_name"]="attack02_1", + ["move_id"]=19, + ["move_timing"]=500, + ["invincible_start"]=500 + }, + [930012]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="none", + ["num"]=0, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 3350 + }, + ["warning_target_type"]=4, + ["warning_time"]={ + 0, + 3350 + }, + ["warning_type"]=2, + ["warning_range"]={ + 600 + }, + ["aim_search_type"]=2001, + ["aim_time"]=0, + ["aim_follow"]={ + 3000, + 500 + }, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 600 + }, + ["act_duration"]=3350, + ["move_id"]=20, + ["move_timing"]=0 + }, + [930013]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 150 + }, + ["act_name"]="attack02_2", + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 600 + }, + ["fx_self"]=930013, + ["invincible_end"]=200 + }, + [930014]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 3000 + }, + ["act_name"]="attack01", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 3000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1800, + 400 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1800, + 400 + }, + ["act_duration"]=3871, + ["fx_self"]=930014, + ["fx_self_delay"]=3000 + }, + [930015]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1900 + }, + ["act_name"]="attack03", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 2000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1900, + 400 + }, + ["aim_search_type"]=2003, + ["aim_time"]=1800, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 600, + 400 + }, + ["duration"]=2000, + ["interval"]=5000, + ["act_duration"]=3801, + ["fx_self"]=930011, + ["fx_self_delay"]=1900, + ["fx_hit"]=1, + ["move_id"]=22, + ["move_timing"]=1900 + }, + [930016]={ + ["kind"]=2, + ["skill_sub"]={ + 930017 + }, + ["skill_sub_trigger"]={ + 1 + }, + ["skill_sub_value"]={ + 500 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1900 + }, + ["act_name"]="attack03", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 2000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1900, + 400 + }, + ["aim_search_type"]=2003, + ["aim_time"]=1800, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 600, + 400 + }, + ["duration"]=2000, + ["interval"]=5000, + ["act_duration"]=3125, + ["fx_self"]=930011, + ["fx_self_delay"]=1900, + ["fx_hit"]=1, + ["move_id"]=22, + ["move_timing"]=1900 + }, + [930017]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1000 + }, + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 200 + }, + ["aim_search_type"]=2001, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 200 + }, + ["act_duration"]=1600, + ["fx_point"]=930015, + ["fx_point_delay"]=900 + }, + [930018]={ + ["kind"]=2, + ["skill_sub"]={ + 930017 + }, + ["skill_sub_trigger"]={ + 1 + }, + ["skill_sub_value"]={ + 1500 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 3000 + }, + ["act_name"]="attack01", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 3000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1800, + 400 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1800, + 400 + }, + ["act_duration"]=3871, + ["fx_self"]=930014, + ["fx_self_delay"]=3000 + }, + [930021]={ + ["kind"]=2, + ["act_name"]="attack03_1", + ["fx_self"]=930023, + ["move_id"]=11, + ["move_timing"]=600 + }, + [930022]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 800 + }, + ["act_name"]="attack01", + ["warning_target_type"]=1, + ["warning_time"]={ + 300, + 500 + }, + ["warning_type"]=1, + ["warning_range"]={ + 400, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 300, + 300 + }, + ["act_duration"]=1120, + ["fx_self"]=930021, + ["fx_self_delay"]=800, + ["fx_hit"]=2 + }, + [930023]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1500 + }, + ["act_name"]="attack02", + ["warning_target_type"]=1, + ["warning_time"]={ + 600, + 1000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1200, + 300 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 100, + 300 + }, + ["duration"]=1800, + ["interval"]=5000, + ["ignore_hit_fly"]=1, + ["ignore_hit_back"]=1, + ["fx_self"]=930022, + ["fx_self_delay"]=1500, + ["fx_hit"]=2, + ["move_id"]=12, + ["move_timing"]=1600 + }, + [930051]={ + ["kind"]=2, + ["act_name"]="attack01_1", + ["move_id"]=23, + ["move_timing"]=500, + ["invincible_start"]=500 + }, + [930052]={ + ["kind"]=2, + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 700 + }, + ["act_duration"]=1000 + }, + [930053]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 200 + }, + ["act_name"]="attack01_2", + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 700 + }, + ["fx_self"]=930052, + ["invincible_end"]=200 + }, + [930054]={ + ["kind"]=2, + ["act_name"]="attack02_1", + ["fx_self"]=930053, + ["move_id"]=11, + ["move_timing"]=600 + }, + [930055]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1500 + }, + ["act_name"]="attack03", + ["warning_target_type"]=1, + ["warning_time"]={ + 600, + 1000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1200, + 300 + }, + ["aim_search_type"]=2003, + ["aim_time"]=0, + ["range_offset"]={ + 100, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 100, + 300 + }, + ["duration"]=1800, + ["interval"]=5000, + ["ignore_hit_fly"]=1, + ["ignore_hit_back"]=1, + ["fx_self"]=930051, + ["fx_self_delay"]=1500, + ["fx_hit"]=2, + ["move_id"]=12, + ["move_timing"]=1600 + }, + [930081]={ + ["kind"]=2, + ["act_name"]="attack01_1", + ["invincible_start"]=400 + }, + [930082]={ + ["kind"]=2, + ["skill_sub"]={ + 930083, + 930084, + 930085, + 930086 + }, + ["skill_sub_trigger"]={ + 1, + 1, + 1, + 1 + }, + ["skill_sub_value"]={ + 500, + 1000, + 1500, + 2000 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 510 + }, + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 500 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["aim_search_type"]=2001, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 300 + }, + ["act_duration"]=3000, + ["fx_point"]=930082, + ["fx_point_delay"]=500, + ["move_id"]=25, + ["move_timing"]=1000 + }, + [930083]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 510 + }, + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 500 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["aim_search_type"]=2001, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 300 + }, + ["act_duration"]=500, + ["fx_point"]=930082, + ["fx_point_delay"]=500 + }, + [930084]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 510 + }, + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 500 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["aim_search_type"]=2001, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 300 + }, + ["act_duration"]=500, + ["fx_point"]=930082, + ["fx_point_delay"]=500 + }, + [930085]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 510 + }, + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 500 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["aim_search_type"]=2001, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 300 + }, + ["act_duration"]=500, + ["fx_point"]=930082, + ["fx_point_delay"]=500 + }, + [930086]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=5000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 510 + }, + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 500 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["aim_search_type"]=2001, + ["aim_time"]=0, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 300 + }, + ["act_duration"]=510, + ["fx_point"]=930082, + ["fx_point_delay"]=500 + }, + [930087]={ + ["kind"]=2, + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 500 + }, + ["act_duration"]=1000 + }, + [930088]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 10 + }, + ["act_name"]="attack01_2", + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["fx_self"]=930081, + ["invincible_end"]=1000 + }, + [930091]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1133 + }, + ["act_name"]="attack01_1", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1100 + }, + ["warning_type"]=1, + ["warning_range"]={ + 600, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 600, + 300 + }, + ["fx_self"]=930091, + ["fx_self_delay"]=1000 + }, + [930092]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1100 + }, + ["act_name"]="attack01_2", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1100 + }, + ["warning_type"]=1, + ["warning_range"]={ + 900, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 900, + 300 + }, + ["fx_self"]=930092, + ["fx_self_delay"]=1000 + }, + [930093]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 2433 + }, + ["act_name"]="attack01_3", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 2400 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1200, + 300 + }, + ["aim_search_type"]=2002, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1200, + 300 + }, + ["fx_self"]=930093, + ["fx_self_delay"]=1600 + }, + [930111]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 2500 + }, + ["act_name"]="attack01", + ["warning_target_type"]=4, + ["warning_time"]={ + 500, + 1850 + }, + ["warning_type"]=2, + ["warning_range"]={ + 400 + }, + ["aim_search_type"]=2001, + ["aim_time"]=500, + ["aim_follow"]={ + 1850, + 800 + }, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["act_duration"]=3000, + ["fx_point"]=910021, + ["fx_point_delay"]=2350, + ["fx_hit"]=2 + }, + [930112]={ + ["kind"]=2, + ["act_name"]="jump", + ["move_id"]=8, + ["move_timing"]=700, + ["invincible_start"]=700 + }, + [930113]={ + ["kind"]=2, + ["act_name"]="born", + ["invincible_end"]=200 + }, + [930114]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1000 + }, + ["act_name"]="attack01", + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 850 + }, + ["warning_type"]=2, + ["warning_range"]={ + 400 + }, + ["aim_search_type"]=2001, + ["aim_time"]=850, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 400 + }, + ["act_duration"]=1200, + ["fx_point"]=910021, + ["fx_point_delay"]=850, + ["fx_hit"]=2 + }, + [930121]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 2100 + }, + ["act_name"]="attack01", + ["warning_target_type"]=1, + ["warning_time"]={ + 0, + 2200 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1600, + 300 + }, + ["aim_search_type"]=2003, + ["aim_time"]=2000, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 200, + 300 + }, + ["duration"]=2500, + ["interval"]=5000, + ["fx_self"]=930121, + ["fx_self_delay"]=2100, + ["fx_hit"]=1, + ["move_id"]=27, + ["move_timing"]=2100 + }, + [930161]={ + ["kind"]=2, + ["skill_sub"]={ + 930162 + }, + ["skill_sub_trigger"]={ + 1 + }, + ["skill_sub_value"]={ + 1000 + }, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 2900 + }, + ["act_name"]="attack03", + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 3000 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1900, + 400 + }, + ["aim_search_type"]=2003, + ["aim_time"]=2800, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 400, + 400 + }, + ["duration"]=3200, + ["interval"]=5000, + ["act_duration"]=4286, + ["fx_self"]=930161, + ["fx_self_delay"]=2900, + ["fx_hit"]=1, + ["move_id"]=22, + ["move_timing"]=2900 + }, + [930162]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1500 + }, + ["warning_target_type"]=2, + ["warning_time"]={ + 0, + 1500 + }, + ["warning_type"]=1, + ["warning_range"]={ + 1000, + 1000 + }, + ["aim_search_type"]=2003, + ["range_offset"]={ + 0, + 0 + }, + ["range_type"]=1, + ["range_value"]={ + 1000, + 1000 + }, + ["act_duration"]=1600, + ["fx_self"]=930162, + ["fx_self_delay"]=1490 + }, + [930191]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 2000 + }, + ["act_name"]="attack02_1", + ["warning_target_type"]=4, + ["warning_time"]={ + 0, + 2000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 300 + }, + ["aim_search_type"]=2002, + ["aim_time"]=2000, + ["range_offset"]={ + 200, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 300 + }, + ["act_duration"]=2600, + ["fx_point"]=930191, + ["fx_point_delay"]=2000 + }, + [930192]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1000 + }, + ["act_name"]="attack02_2", + ["warning_target_type"]=4, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 500 + }, + ["aim_search_type"]=2002, + ["aim_time"]=1000, + ["range_offset"]={ + 200, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 500 + }, + ["act_duration"]=1666, + ["fx_point"]=930192, + ["fx_point_delay"]=1000 + }, + [930193]={ + ["kind"]=2, + ["effect"]={ + { + ["type"]="hurt", + ["num"]=10000, + ["time"]=0, + ["ratio"]=10000 + } + }, + ["effect_timing"]={ + 1000 + }, + ["act_name"]="attack02_2", + ["warning_target_type"]=4, + ["warning_time"]={ + 0, + 1000 + }, + ["warning_type"]=2, + ["warning_range"]={ + 700 + }, + ["aim_search_type"]=2002, + ["aim_time"]=1000, + ["range_offset"]={ + 200, + 0 + }, + ["range_type"]=2, + ["range_value"]={ + 700 + }, + ["act_duration"]=1666, + ["fx_point"]=930193, + ["fx_point_delay"]=1000 + } +} +local config = { +data=skill,count=462 +} +return config \ No newline at end of file diff --git a/lua/app/config/skill.lua.meta b/lua/app/config/skill.lua.meta new file mode 100644 index 00000000..9f46345b --- /dev/null +++ b/lua/app/config/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e392f9a6a1b5777428d46ab3ad23a603 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/skill_ai.lua b/lua/app/config/skill_ai.lua new file mode 100644 index 00000000..399bfa35 --- /dev/null +++ b/lua/app/config/skill_ai.lua @@ -0,0 +1,53 @@ +local skill_ai = { + [1]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_before"]=1 + }, + [2]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_before"]=2 + }, + [3]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_before"]=3, + ["move_after"]=4 + }, + [4]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_before"]=5, + ["move_after"]=6 + }, + [5]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_before"]=10 + }, + [6]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_after"]=13 + }, + [7]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_before"]=15 + }, + [8]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_after"]=16 + }, + [9]={ + ["trigger"]=1, + ["trigger_value"]=0, + ["move_before"]=21 + } +} +local config = { +data=skill_ai,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/skill_ai.lua.meta b/lua/app/config/skill_ai.lua.meta new file mode 100644 index 00000000..25800d16 --- /dev/null +++ b/lua/app/config/skill_ai.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b582c858a9136624a9e42c5a2dfc0bc2 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/stage.lua b/lua/app/config/stage.lua new file mode 100644 index 00000000..c061def6 --- /dev/null +++ b/lua/app/config/stage.lua @@ -0,0 +1,6138 @@ +local stage = { + [101]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [102]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=1500 + }, + [103]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1500 + }, + [104]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=1500 + }, + [105]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1500 + }, + [201]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [202]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [203]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [204]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 17 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [301]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [302]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -17 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [401]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [402]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [403]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [404]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [501]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [601]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [602]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [603]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [604]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [605]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [606]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 12 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [607]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=1000 + }, + [608]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [609]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [610]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [611]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [612]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -12 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [701]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [702]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [801]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [802]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [803]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [804]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [901]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [902]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -12 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [903]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -14 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [904]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [905]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 12 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [906]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 14 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [1001]={ + ["monster_id"]={ + 200300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1101]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1102]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [1103]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [1104]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 17 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [1201]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1301]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1302]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [1303]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [1304]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [1305]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [1306]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 12 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [1307]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=1000 + }, + [1401]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1402]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [1403]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [1404]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [1501]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1502]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [1601]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1602]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [1701]={ + ["monster_id"]={ + 200200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1801]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1802]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [1803]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [1804]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [1901]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [1902]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2001]={ + ["monster_id"]={ + 301100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2101]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2102]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2103]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [2104]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 17 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [2105]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [2106]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [2107]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -17 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [2201]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2202]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2301]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2302]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2303]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2304]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2305]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2306]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [2307]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2308]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2309]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2310]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2311]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 10 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [2312]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2401]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2402]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [2403]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [2404]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 12, + -12 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [2501]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2502]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2601]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2602]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2603]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [2604]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2605]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2606]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 15 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2607]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [2608]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2609]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2610]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -15 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2701]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2702]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2801]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2802]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2803]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2804]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2805]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2806]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 12 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2807]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2808]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 14 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2809]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [2810]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2811]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2812]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2813]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2814]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -12 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2815]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2816]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -14 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2817]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 10 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [2818]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [2901]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [2902]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3001]={ + ["monster_id"]={ + 300200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3101]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3102]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3103]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3104]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3105]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3106]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [3107]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3108]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3109]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3110]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3201]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3202]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3203]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 9 + }, + ["create_type"]=2, + ["create_delay"]=2000 + }, + [3204]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3205]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3206]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 15 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3207]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [3208]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3209]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3210]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -15 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3301]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3302]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3401]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3402]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3403]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3404]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3405]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3406]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3407]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3408]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3501]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3502]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3503]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 9 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [3504]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3505]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3506]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 15 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3507]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [3508]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3509]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3510]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -15 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3601]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3602]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3701]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3702]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3801]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3802]={ + ["monster_id"]={ + 100300 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [3901]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [3902]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3903]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3904]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3905]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3906]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3907]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3908]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 3 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [3909]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [3910]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4001]={ + ["monster_id"]={ + 200300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4101]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4102]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4103]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4104]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4105]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4106]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [4107]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4108]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4109]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4201]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4202]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4301]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4302]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4303]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [4304]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4305]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [4306]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4307]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [4308]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4401]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4402]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [4403]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 3 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [4501]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4502]={ + ["monster_id"]={ + 100200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4601]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4602]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4603]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4604]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4605]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 11 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4606]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [4607]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -8 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4608]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -9 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4609]={ + ["monster_id"]={ + 100100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4610]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [4611]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4701]={ + ["monster_id"]={ + 200200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4801]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4802]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4803]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [4804]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4805]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [4806]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4807]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=2, + ["create_delay"]=0 + }, + [4808]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [4901]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [4902]={ + ["monster_id"]={ + 100400 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [5001]={ + ["monster_id"]={ + 300200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10101]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10102]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10103]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [10104]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10105]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [10106]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10107]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [10108]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10201]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10202]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10203]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [10204]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10205]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [10206]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10207]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [10208]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10209]={ + ["monster_id"]={ + 100800 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10210]={ + ["monster_id"]={ + 100800 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10301]={ + ["monster_id"]={ + 100300, + 100300 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10302]={ + ["monster_id"]={ + 100300, + 100300 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10303]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10304]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10305]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10306]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10401]={ + ["monster_id"]={ + 200200, + 200200 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10402]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10403]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10501]={ + ["monster_id"]={ + 200100, + 200100 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10502]={ + ["monster_id"]={ + 200100, + 200100 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10503]={ + ["monster_id"]={ + 200100, + 200100 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10504]={ + ["monster_id"]={ + 200100, + 200100 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10601]={ + ["monster_id"]={ + 100400, + 100400 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10602]={ + ["monster_id"]={ + 100400, + 100400 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10603]={ + ["monster_id"]={ + 100400, + 100400 + }, + ["monster_num"]={ + 3, + 3 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10604]={ + ["monster_id"]={ + 100400, + 100400 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=5000 + }, + [10605]={ + ["monster_id"]={ + 100400, + 100400 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10606]={ + ["monster_id"]={ + 100400, + 100400 + }, + ["monster_num"]={ + 3, + 3 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10701]={ + ["monster_id"]={ + 100500, + 100500 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10702]={ + ["monster_id"]={ + 100500, + 100500 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10703]={ + ["monster_id"]={ + 100500, + 100500 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [10704]={ + ["monster_id"]={ + 100500, + 100500 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10705]={ + ["monster_id"]={ + 100700, + 100700 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=5000 + }, + [10801]={ + ["monster_id"]={ + 101100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10802]={ + ["monster_id"]={ + 101100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10803]={ + ["monster_id"]={ + 101100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10804]={ + ["monster_id"]={ + 101100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10805]={ + ["monster_id"]={ + 101100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10806]={ + ["monster_id"]={ + 101100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [10901]={ + ["monster_id"]={ + 101100, + 101100 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [10902]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10903]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [10904]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 3, + 3 + }, + ["position"]={ + 16, + -16 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11001]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11002]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11003]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11004]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11005]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11006]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11007]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [11008]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [11101]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11102]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11103]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11104]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11105]={ + ["monster_id"]={ + 100300, + 100300 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11106]={ + ["monster_id"]={ + 100300, + 100300 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11107]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11108]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11201]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11202]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11203]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11204]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [11205]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [11206]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11207]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11208]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11209]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [11210]={ + ["monster_id"]={ + 100200, + 100200 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=3000 + }, + [11301]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11302]={ + ["monster_id"]={ + 100500, + 100500 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11303]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11304]={ + ["monster_id"]={ + 100500, + 100500 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11305]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11306]={ + ["monster_id"]={ + 100500, + 100500 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11307]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11308]={ + ["monster_id"]={ + 100500, + 100500 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11401]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11402]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11403]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11404]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11405]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11406]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11407]={ + ["monster_id"]={ + 100700 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11408]={ + ["monster_id"]={ + 100700 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11501]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11502]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11503]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11504]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11505]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11506]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11507]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11508]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11601]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11602]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 5, + -5 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11603]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11604]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11605]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11606]={ + ["monster_id"]={ + 100100, + 100100 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11607]={ + ["monster_id"]={ + 200100, + 200100 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11608]={ + ["monster_id"]={ + 200100, + 200100 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11609]={ + ["monster_id"]={ + 200100, + 200100 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11610]={ + ["monster_id"]={ + 200100, + 200100 + }, + ["monster_num"]={ + 2, + 2 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11701]={ + ["monster_id"]={ + 200200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11702]={ + ["monster_id"]={ + 200200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11703]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11704]={ + ["monster_id"]={ + 200100 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11801]={ + ["monster_id"]={ + 200200, + 200200 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11802]={ + ["monster_id"]={ + 101100, + 101100 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11803]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 1, + 1 + }, + ["position"]={ + 13, + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11901]={ + ["monster_id"]={ + 100800 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [11902]={ + ["monster_id"]={ + 100800 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [11903]={ + ["monster_id"]={ + 100700 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [11904]={ + ["monster_id"]={ + 100700 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [12001]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [12002]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [12003]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 1, + 3 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [12004]={ + ["monster_id"]={ + 101000, + 101000 + }, + ["monster_num"]={ + 3, + 1 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=1000 + }, + [20101]={ + ["monster_id"]={ + 200300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [20201]={ + ["monster_id"]={ + 300100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [20301]={ + ["monster_id"]={ + 300102 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [20401]={ + ["monster_id"]={ + 300104 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [20501]={ + ["monster_id"]={ + 300105 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [20601]={ + ["monster_id"]={ + 300200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [20701]={ + ["monster_id"]={ + 300500 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [20801]={ + ["monster_id"]={ + 300800 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [20901]={ + ["monster_id"]={ + 300900 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [21001]={ + ["monster_id"]={ + 301100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [21101]={ + ["monster_id"]={ + 301200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [21201]={ + ["monster_id"]={ + 301600 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [21301]={ + ["monster_id"]={ + 301900 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [100101]={ + ["monster_id"]={ + 100, + 100 + }, + ["monster_num"]={ + 5, + 5 + }, + ["position"]={ + 7, + -7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [100102]={ + ["monster_id"]={ + 100, + 100 + }, + ["monster_num"]={ + 5, + 5 + }, + ["position"]={ + 10, + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100201]={ + ["monster_id"]={ + 100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [100202]={ + ["monster_id"]={ + 100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100203]={ + ["monster_id"]={ + 200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100204]={ + ["monster_id"]={ + 100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100205]={ + ["monster_id"]={ + 100 + }, + ["monster_num"]={ + 4 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100206]={ + ["monster_id"]={ + 200 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100301]={ + ["monster_id"]={ + 300 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [100302]={ + ["monster_id"]={ + 300 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100303]={ + ["monster_id"]={ + 200 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100304]={ + ["monster_id"]={ + 300 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100305]={ + ["monster_id"]={ + 300 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100306]={ + ["monster_id"]={ + 200 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100401]={ + ["monster_id"]={ + 400 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [100402]={ + ["monster_id"]={ + 400 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100403]={ + ["monster_id"]={ + 200 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100404]={ + ["monster_id"]={ + 400 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100405]={ + ["monster_id"]={ + 400 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100406]={ + ["monster_id"]={ + 200 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100501]={ + ["monster_id"]={ + 100 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [100502]={ + ["monster_id"]={ + 300 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100503]={ + ["monster_id"]={ + 400 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100504]={ + ["monster_id"]={ + 200 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + 16 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100505]={ + ["monster_id"]={ + 100 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -7 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100506]={ + ["monster_id"]={ + 300 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -10 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100507]={ + ["monster_id"]={ + 400 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -13 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [100508]={ + ["monster_id"]={ + 200 + }, + ["monster_num"]={ + 5 + }, + ["position"]={ + -16 + }, + ["create_type"]=1, + ["create_delay"]=2000 + }, + [200101]={ + ["monster_id"]={ + 301200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [300101]={ + ["monster_id"]={ + 300800 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [300102]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=5000 + }, + [300103]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=5000 + }, + [300104]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=10000 + }, + [300105]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=10000 + }, + [300106]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=15000 + }, + [300107]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=15000 + }, + [300108]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=20000 + }, + [300109]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=20000 + }, + [300110]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=25000 + }, + [300111]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=25000 + }, + [300112]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=30000 + }, + [300113]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=30000 + }, + [300114]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=35000 + }, + [300115]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=35000 + }, + [300116]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=40000 + }, + [300117]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=40000 + }, + [300118]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=45000 + }, + [300119]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=45000 + }, + [300120]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=50000 + }, + [300121]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=50000 + }, + [300122]={ + ["monster_id"]={ + 100600 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 7 + }, + ["create_type"]=1, + ["create_delay"]=55000 + }, + [300123]={ + ["monster_id"]={ + 100900 + }, + ["monster_num"]={ + 2 + }, + ["position"]={ + 13 + }, + ["create_type"]=1, + ["create_delay"]=55000 + }, + [500101]={ + ["monster_id"]={ + 200300 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [500201]={ + ["monster_id"]={ + 300100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [500301]={ + ["monster_id"]={ + 300102 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [500401]={ + ["monster_id"]={ + 300104 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [500501]={ + ["monster_id"]={ + 300105 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [500601]={ + ["monster_id"]={ + 300200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [500701]={ + ["monster_id"]={ + 300500 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [500801]={ + ["monster_id"]={ + 300800 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [500901]={ + ["monster_id"]={ + 300900 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [501001]={ + ["monster_id"]={ + 301100 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [501101]={ + ["monster_id"]={ + 301200 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [501201]={ + ["monster_id"]={ + 301600 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + }, + [501301]={ + ["monster_id"]={ + 301900 + }, + ["monster_num"]={ + 1 + }, + ["position"]={ + 10 + }, + ["create_type"]=1, + ["create_delay"]=0 + } +} +local config = { +data=stage,count=438 +} +return config \ No newline at end of file diff --git a/lua/app/config/stage.lua.meta b/lua/app/config/stage.lua.meta new file mode 100644 index 00000000..1afc5e8a --- /dev/null +++ b/lua/app/config/stage.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ae71932c6ec57994cb203f447089cc3d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/stage_random.lua b/lua/app/config/stage_random.lua new file mode 100644 index 00000000..25a60737 --- /dev/null +++ b/lua/app/config/stage_random.lua @@ -0,0 +1,397 @@ +local stage_random = { + [1]={ + ["stage"]={ + 1 + } + }, + [2]={ + ["stage"]={ + 2 + } + }, + [3]={ + ["stage"]={ + 3 + } + }, + [4]={ + ["stage"]={ + 4 + } + }, + [5]={ + ["stage"]={ + 5 + } + }, + [6]={ + ["stage"]={ + 6 + } + }, + [7]={ + ["stage"]={ + 7 + } + }, + [8]={ + ["stage"]={ + 8 + } + }, + [9]={ + ["stage"]={ + 9 + } + }, + [10]={ + ["stage"]={ + 10 + } + }, + [11]={ + ["stage"]={ + 11 + } + }, + [12]={ + ["stage"]={ + 12 + } + }, + [13]={ + ["stage"]={ + 13 + } + }, + [14]={ + ["stage"]={ + 14 + } + }, + [15]={ + ["stage"]={ + 15 + } + }, + [16]={ + ["stage"]={ + 16 + } + }, + [17]={ + ["stage"]={ + 17 + } + }, + [18]={ + ["stage"]={ + 18 + } + }, + [19]={ + ["stage"]={ + 19 + } + }, + [20]={ + ["stage"]={ + 20 + } + }, + [21]={ + ["stage"]={ + 21 + } + }, + [22]={ + ["stage"]={ + 22 + } + }, + [23]={ + ["stage"]={ + 23 + } + }, + [24]={ + ["stage"]={ + 24 + } + }, + [25]={ + ["stage"]={ + 25 + } + }, + [26]={ + ["stage"]={ + 26 + } + }, + [27]={ + ["stage"]={ + 27 + } + }, + [28]={ + ["stage"]={ + 28 + } + }, + [29]={ + ["stage"]={ + 29 + } + }, + [30]={ + ["stage"]={ + 30 + } + }, + [31]={ + ["stage"]={ + 31 + } + }, + [32]={ + ["stage"]={ + 32 + } + }, + [33]={ + ["stage"]={ + 33 + } + }, + [34]={ + ["stage"]={ + 34 + } + }, + [35]={ + ["stage"]={ + 35 + } + }, + [36]={ + ["stage"]={ + 36 + } + }, + [37]={ + ["stage"]={ + 37 + } + }, + [38]={ + ["stage"]={ + 38 + } + }, + [39]={ + ["stage"]={ + 39 + } + }, + [40]={ + ["stage"]={ + 40 + } + }, + [41]={ + ["stage"]={ + 41 + } + }, + [42]={ + ["stage"]={ + 42 + } + }, + [43]={ + ["stage"]={ + 43 + } + }, + [44]={ + ["stage"]={ + 44 + } + }, + [45]={ + ["stage"]={ + 45 + } + }, + [46]={ + ["stage"]={ + 46 + } + }, + [47]={ + ["stage"]={ + 47 + } + }, + [48]={ + ["stage"]={ + 48 + } + }, + [49]={ + ["stage"]={ + 49 + } + }, + [50]={ + ["stage"]={ + 50 + } + }, + [100]={ + ["stage"]={ + 101, + 102, + 103, + 104, + 105, + 106, + 107, + 108, + 109, + 110, + 111, + 112, + 113, + 114, + 115, + 116, + 117, + 118, + 119, + 120 + } + }, + [201]={ + ["stage"]={ + 201 + } + }, + [202]={ + ["stage"]={ + 202 + } + }, + [203]={ + ["stage"]={ + 203 + } + }, + [204]={ + ["stage"]={ + 204 + } + }, + [205]={ + ["stage"]={ + 205 + } + }, + [206]={ + ["stage"]={ + 206 + } + }, + [207]={ + ["stage"]={ + 207 + } + }, + [208]={ + ["stage"]={ + 208 + } + }, + [209]={ + ["stage"]={ + 209 + } + }, + [210]={ + ["stage"]={ + 210 + } + }, + [211]={ + ["stage"]={ + 211 + } + }, + [212]={ + ["stage"]={ + 212 + } + }, + [213]={ + ["stage"]={ + 213 + } + }, + [1001]={ + ["stage"]={ + 1001 + } + }, + [1002]={ + ["stage"]={ + 1002 + } + }, + [1003]={ + ["stage"]={ + 1003 + } + }, + [1004]={ + ["stage"]={ + 1004 + } + }, + [1005]={ + ["stage"]={ + 1005 + } + }, + [2001]={ + ["stage"]={ + 2001 + } + }, + [3001]={ + ["stage"]={ + 3001 + } + }, + [5001]={ + ["stage"]={ + 5001, + 5002, + 5003, + 5004, + 5005, + 5006, + 5007, + 5008, + 5009, + 5010, + 5011, + 5012, + 5013 + } + } +} +local config = { +data=stage_random,count=72 +} +return config \ No newline at end of file diff --git a/lua/app/config/stage_random.lua.meta b/lua/app/config/stage_random.lua.meta new file mode 100644 index 00000000..6bfe7311 --- /dev/null +++ b/lua/app/config/stage_random.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f35a34c414d8f4c4893a76bc248a8295 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/stage_template.lua b/lua/app/config/stage_template.lua new file mode 100644 index 00000000..32b894fc --- /dev/null +++ b/lua/app/config/stage_template.lua @@ -0,0 +1,418 @@ +local stage_template = { + [1]={ + ["stage_head"]=101, + ["stage_end"]=105 + }, + [2]={ + ["stage_head"]=201, + ["stage_end"]=204 + }, + [3]={ + ["stage_head"]=301, + ["stage_end"]=302 + }, + [4]={ + ["stage_head"]=401, + ["stage_end"]=404 + }, + [5]={ + ["stage_head"]=501, + ["stage_end"]=501 + }, + [6]={ + ["stage_head"]=601, + ["stage_end"]=612 + }, + [7]={ + ["stage_head"]=701, + ["stage_end"]=702 + }, + [8]={ + ["stage_head"]=801, + ["stage_end"]=804 + }, + [9]={ + ["stage_head"]=901, + ["stage_end"]=906 + }, + [10]={ + ["stage_head"]=1001, + ["stage_end"]=1001 + }, + [11]={ + ["stage_head"]=1101, + ["stage_end"]=1104 + }, + [12]={ + ["stage_head"]=1201, + ["stage_end"]=1201 + }, + [13]={ + ["stage_head"]=1301, + ["stage_end"]=1307 + }, + [14]={ + ["stage_head"]=1401, + ["stage_end"]=1404 + }, + [15]={ + ["stage_head"]=1501, + ["stage_end"]=1502 + }, + [16]={ + ["stage_head"]=1601, + ["stage_end"]=1602 + }, + [17]={ + ["stage_head"]=1701, + ["stage_end"]=1701 + }, + [18]={ + ["stage_head"]=1801, + ["stage_end"]=1804 + }, + [19]={ + ["stage_head"]=1901, + ["stage_end"]=1902 + }, + [20]={ + ["stage_head"]=2001, + ["stage_end"]=2001 + }, + [21]={ + ["stage_head"]=2101, + ["stage_end"]=2107 + }, + [22]={ + ["stage_head"]=2201, + ["stage_end"]=2202 + }, + [23]={ + ["stage_head"]=2301, + ["stage_end"]=2312 + }, + [24]={ + ["stage_head"]=2401, + ["stage_end"]=2404 + }, + [25]={ + ["stage_head"]=2501, + ["stage_end"]=2502 + }, + [26]={ + ["stage_head"]=2601, + ["stage_end"]=2610 + }, + [27]={ + ["stage_head"]=2701, + ["stage_end"]=2702 + }, + [28]={ + ["stage_head"]=2801, + ["stage_end"]=2818 + }, + [29]={ + ["stage_head"]=2901, + ["stage_end"]=2902 + }, + [30]={ + ["stage_head"]=3001, + ["stage_end"]=3001 + }, + [31]={ + ["stage_head"]=3101, + ["stage_end"]=3110 + }, + [32]={ + ["stage_head"]=3201, + ["stage_end"]=3210 + }, + [33]={ + ["stage_head"]=3301, + ["stage_end"]=3302 + }, + [34]={ + ["stage_head"]=3401, + ["stage_end"]=3408 + }, + [35]={ + ["stage_head"]=3501, + ["stage_end"]=3510 + }, + [36]={ + ["stage_head"]=3601, + ["stage_end"]=3602 + }, + [37]={ + ["stage_head"]=3701, + ["stage_end"]=3702 + }, + [38]={ + ["stage_head"]=3801, + ["stage_end"]=3802 + }, + [39]={ + ["stage_head"]=3901, + ["stage_end"]=3910 + }, + [40]={ + ["stage_head"]=4001, + ["stage_end"]=4001 + }, + [41]={ + ["stage_head"]=4101, + ["stage_end"]=4109 + }, + [42]={ + ["stage_head"]=4201, + ["stage_end"]=4202 + }, + [43]={ + ["stage_head"]=4301, + ["stage_end"]=4308 + }, + [44]={ + ["stage_head"]=4401, + ["stage_end"]=4403 + }, + [45]={ + ["stage_head"]=4501, + ["stage_end"]=4502 + }, + [46]={ + ["stage_head"]=4601, + ["stage_end"]=4611 + }, + [47]={ + ["stage_head"]=4701, + ["stage_end"]=4701 + }, + [48]={ + ["stage_head"]=4801, + ["stage_end"]=4808 + }, + [49]={ + ["stage_head"]=4901, + ["stage_end"]=4902 + }, + [50]={ + ["stage_head"]=5001, + ["stage_end"]=5001 + }, + [101]={ + ["stage_head"]=10101, + ["stage_end"]=10108 + }, + [102]={ + ["stage_head"]=10201, + ["stage_end"]=10210 + }, + [103]={ + ["stage_head"]=10301, + ["stage_end"]=10306 + }, + [104]={ + ["stage_head"]=10401, + ["stage_end"]=10403 + }, + [105]={ + ["stage_head"]=10501, + ["stage_end"]=10504 + }, + [106]={ + ["stage_head"]=10601, + ["stage_end"]=10606 + }, + [107]={ + ["stage_head"]=10701, + ["stage_end"]=10705 + }, + [108]={ + ["stage_head"]=10801, + ["stage_end"]=10806 + }, + [109]={ + ["stage_head"]=10901, + ["stage_end"]=10904 + }, + [110]={ + ["stage_head"]=11001, + ["stage_end"]=11008 + }, + [111]={ + ["stage_head"]=11101, + ["stage_end"]=11108 + }, + [112]={ + ["stage_head"]=11201, + ["stage_end"]=11210 + }, + [113]={ + ["stage_head"]=11301, + ["stage_end"]=11308 + }, + [114]={ + ["stage_head"]=11401, + ["stage_end"]=11408 + }, + [115]={ + ["stage_head"]=11501, + ["stage_end"]=11508 + }, + [116]={ + ["stage_head"]=11601, + ["stage_end"]=11610 + }, + [117]={ + ["stage_head"]=11701, + ["stage_end"]=11704 + }, + [118]={ + ["stage_head"]=11801, + ["stage_end"]=11803 + }, + [119]={ + ["stage_head"]=11901, + ["stage_end"]=11904 + }, + [120]={ + ["stage_head"]=12001, + ["stage_end"]=12004 + }, + [201]={ + ["stage_head"]=20101, + ["stage_end"]=20101 + }, + [202]={ + ["stage_head"]=20201, + ["stage_end"]=20201 + }, + [203]={ + ["stage_head"]=20301, + ["stage_end"]=20301 + }, + [204]={ + ["stage_head"]=20401, + ["stage_end"]=20401 + }, + [205]={ + ["stage_head"]=20501, + ["stage_end"]=20501 + }, + [206]={ + ["stage_head"]=20601, + ["stage_end"]=20601 + }, + [207]={ + ["stage_head"]=20701, + ["stage_end"]=20701 + }, + [208]={ + ["stage_head"]=20801, + ["stage_end"]=20801 + }, + [209]={ + ["stage_head"]=20901, + ["stage_end"]=20901 + }, + [210]={ + ["stage_head"]=21001, + ["stage_end"]=21001 + }, + [211]={ + ["stage_head"]=21101, + ["stage_end"]=21101 + }, + [212]={ + ["stage_head"]=21201, + ["stage_end"]=21201 + }, + [213]={ + ["stage_head"]=21301, + ["stage_end"]=21301 + }, + [1001]={ + ["stage_head"]=100101, + ["stage_end"]=100102 + }, + [1002]={ + ["stage_head"]=100201, + ["stage_end"]=100206 + }, + [1003]={ + ["stage_head"]=100301, + ["stage_end"]=100306 + }, + [1004]={ + ["stage_head"]=100401, + ["stage_end"]=100406 + }, + [1005]={ + ["stage_head"]=100501, + ["stage_end"]=100508 + }, + [2001]={ + ["stage_head"]=200101, + ["stage_end"]=200101 + }, + [3001]={ + ["stage_head"]=300101, + ["stage_end"]=300123 + }, + [5001]={ + ["stage_head"]=500101, + ["stage_end"]=500101 + }, + [5002]={ + ["stage_head"]=500201, + ["stage_end"]=500201 + }, + [5003]={ + ["stage_head"]=500301, + ["stage_end"]=500301 + }, + [5004]={ + ["stage_head"]=500401, + ["stage_end"]=500401 + }, + [5005]={ + ["stage_head"]=500501, + ["stage_end"]=500501 + }, + [5006]={ + ["stage_head"]=500601, + ["stage_end"]=500601 + }, + [5007]={ + ["stage_head"]=500701, + ["stage_end"]=500701 + }, + [5008]={ + ["stage_head"]=500801, + ["stage_end"]=500801 + }, + [5009]={ + ["stage_head"]=500901, + ["stage_end"]=500901 + }, + [5010]={ + ["stage_head"]=501001, + ["stage_end"]=501001 + }, + [5011]={ + ["stage_head"]=501101, + ["stage_end"]=501101 + }, + [5012]={ + ["stage_head"]=501201, + ["stage_end"]=501201 + }, + [5013]={ + ["stage_head"]=501301, + ["stage_end"]=501301 + } +} +local config = { +data=stage_template,count=103 +} +return config \ No newline at end of file diff --git a/lua/app/config/stage_template.lua.meta b/lua/app/config/stage_template.lua.meta new file mode 100644 index 00000000..18445e85 --- /dev/null +++ b/lua/app/config/stage_template.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c146c2578fd7c2846a9ed5e648c8b477 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings.meta b/lua/app/config/strings.meta new file mode 100644 index 00000000..ce9345b1 --- /dev/null +++ b/lua/app/config/strings.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1e02f30acb055b4f97119ab6a7e38d6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/cn.meta b/lua/app/config/strings/cn.meta new file mode 100644 index 00000000..095d7da2 --- /dev/null +++ b/lua/app/config/strings/cn.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 231aa00bd7a12bb47a02297c22087871 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/cn/act_battle_pass_task.lua b/lua/app/config/strings/cn/act_battle_pass_task.lua new file mode 100644 index 00000000..dd941811 --- /dev/null +++ b/lua/app/config/strings/cn/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + ["desc"]="击溃敌人" + }, + [2]={ + ["desc"]="完成关卡" + }, + [3]={ + ["desc"]="召唤" + }, + [4]={ + ["desc"]="收看广告" + }, + [5]={ + ["desc"]="完成BOSS冲锋" + }, + [6]={ + ["desc"]="完成金币副本" + }, + [7]={ + ["desc"]="完成每日任务" + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/act_battle_pass_task.lua.meta b/lua/app/config/strings/cn/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..15b29830 --- /dev/null +++ b/lua/app/config/strings/cn/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 84b9d03142eb1684699fb0d54b9c9ab5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/act_fund.lua b/lua/app/config/strings/cn/act_fund.lua new file mode 100644 index 00000000..ebdb1158 --- /dev/null +++ b/lua/app/config/strings/cn/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + ["name"]="关卡基金-低档" + }, + [60002]={ + ["name"]="关卡基金-高档" + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/act_fund.lua.meta b/lua/app/config/strings/cn/act_fund.lua.meta new file mode 100644 index 00000000..af3745ed --- /dev/null +++ b/lua/app/config/strings/cn/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: cb9e7505569d7514a8a450b5fadd187d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/act_sevenday_quest.lua b/lua/app/config/strings/cn/act_sevenday_quest.lua new file mode 100644 index 00000000..4d7b2d5c --- /dev/null +++ b/lua/app/config/strings/cn/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + ["desc"]="累计签到1天" + }, + [2]={ + ["desc"]="通过第100关" + }, + [3]={ + ["desc"]="完成钻石副本2" + }, + [4]={ + ["desc"]="完成金币副本2" + }, + [5]={ + ["desc"]="修炼800次攻击" + }, + [6]={ + ["desc"]="修炼800次生命" + }, + [7]={ + ["desc"]="进行50次武器召唤" + }, + [8]={ + ["desc"]="进行50次护具召唤" + }, + [9]={ + ["desc"]="进行50次传家宝召唤" + }, + [10]={ + ["desc"]="收看5次广告" + }, + [11]={ + ["desc"]="累计签到2天" + }, + [12]={ + ["desc"]="通过第200关" + }, + [13]={ + ["desc"]="完成秘银副本2" + }, + [14]={ + ["desc"]="获得1个符文" + }, + [15]={ + ["desc"]="使用50次" + }, + [16]={ + ["desc"]="使用2次炎弹" + }, + [17]={ + ["desc"]="使用2次圣光蜡烛" + }, + [18]={ + ["desc"]="完成3次研究" + }, + [19]={ + ["desc"]="矿山前进100米" + }, + [20]={ + ["desc"]="领取5次祝福" + }, + [21]={ + ["desc"]="累计签到3天" + }, + [22]={ + ["desc"]="通过第300关" + }, + [23]={ + ["desc"]="完成钻石副本4" + }, + [24]={ + ["desc"]="完成金币副本4" + }, + [25]={ + ["desc"]="修炼2400次攻击" + }, + [26]={ + ["desc"]="修炼2400次生命" + }, + [27]={ + ["desc"]="进行300次武器召唤" + }, + [28]={ + ["desc"]="进行300次护具召唤" + }, + [29]={ + ["desc"]="进行300次传家宝召唤" + }, + [30]={ + ["desc"]="收看20次广告" + }, + [31]={ + ["desc"]="累计签到4天" + }, + [32]={ + ["desc"]="通过第400关" + }, + [33]={ + ["desc"]="完成秘银副本6" + }, + [34]={ + ["desc"]="获得3个符文" + }, + [35]={ + ["desc"]="使用200次火把" + }, + [36]={ + ["desc"]="使用6次炎弹" + }, + [37]={ + ["desc"]="使用6次圣光蜡烛" + }, + [38]={ + ["desc"]="完成10次研究" + }, + [39]={ + ["desc"]="矿山前进300米" + }, + [40]={ + ["desc"]="领取20次祝福" + }, + [41]={ + ["desc"]="累计签到5天" + }, + [42]={ + ["desc"]="通过第500关" + }, + [43]={ + ["desc"]="完成钻石副本7" + }, + [44]={ + ["desc"]="完成金币副本7" + }, + [45]={ + ["desc"]="修炼3600次攻击" + }, + [46]={ + ["desc"]="修炼3600次生命" + }, + [47]={ + ["desc"]="进行600次武器召唤" + }, + [48]={ + ["desc"]="进行600次护具召唤" + }, + [49]={ + ["desc"]="进行600次传家宝召唤" + }, + [50]={ + ["desc"]="收看30次广告" + }, + [51]={ + ["desc"]="累计签到6天" + }, + [52]={ + ["desc"]="通过第600关" + }, + [53]={ + ["desc"]="完成秘银副本8" + }, + [54]={ + ["desc"]="获得5个符文" + }, + [55]={ + ["desc"]="使用300次火把" + }, + [56]={ + ["desc"]="使用10次炎弹" + }, + [57]={ + ["desc"]="使用10次圣光蜡烛" + }, + [58]={ + ["desc"]="完成15次研究" + }, + [59]={ + ["desc"]="矿山前进400米" + }, + [60]={ + ["desc"]="领取30次祝福" + }, + [61]={ + ["desc"]="累计签到7天" + }, + [62]={ + ["desc"]="通过第700关" + }, + [63]={ + ["desc"]="完成钻石副本9" + }, + [64]={ + ["desc"]="完成金币副本9" + }, + [65]={ + ["desc"]="修炼4500次攻击" + }, + [66]={ + ["desc"]="修炼4500次生命" + }, + [67]={ + ["desc"]="进行900次武器召唤" + }, + [68]={ + ["desc"]="进行900次护具召唤" + }, + [69]={ + ["desc"]="进行900次传家宝召唤" + }, + [70]={ + ["desc"]="收看50次广告" + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/act_sevenday_quest.lua.meta b/lua/app/config/strings/cn/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..36018c34 --- /dev/null +++ b/lua/app/config/strings/cn/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fb1bfafabea245b4285cb15bc0380506 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/arena.lua b/lua/app/config/strings/cn/arena.lua new file mode 100644 index 00000000..293f417c --- /dev/null +++ b/lua/app/config/strings/cn/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + ["desc"]="见习勇者III" + }, + [2]={ + ["desc"]="见习勇者II" + }, + [3]={ + ["desc"]="见习勇者I" + }, + [4]={ + ["desc"]="正式勇士III" + }, + [5]={ + ["desc"]="正式勇士II" + }, + [6]={ + ["desc"]="正式勇士I" + }, + [7]={ + ["desc"]="白银骑士III" + }, + [8]={ + ["desc"]="白银骑士II" + }, + [9]={ + ["desc"]="白银骑士I" + }, + [10]={ + ["desc"]="黄金骑士III" + }, + [11]={ + ["desc"]="黄金骑士II" + }, + [12]={ + ["desc"]="黄金骑士I" + }, + [13]={ + ["desc"]="战争统帅III" + }, + [14]={ + ["desc"]="战争统帅II" + }, + [15]={ + ["desc"]="战争统帅I" + }, + [16]={ + ["desc"]="英雄之王III" + }, + [17]={ + ["desc"]="英雄之王II" + }, + [18]={ + ["desc"]="英雄之王I" + }, + [19]={ + ["desc"]="传奇主宰III" + }, + [20]={ + ["desc"]="传奇主宰II" + }, + [21]={ + ["desc"]="传奇主宰I" + }, + [22]={ + ["desc"]="战神III" + }, + [23]={ + ["desc"]="战神II" + }, + [24]={ + ["desc"]="战神I" + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/arena.lua.meta b/lua/app/config/strings/cn/arena.lua.meta new file mode 100644 index 00000000..6e1c088e --- /dev/null +++ b/lua/app/config/strings/cn/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 448d8381be6930d4eb50613fbfb36a62 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/attr.lua b/lua/app/config/strings/cn/attr.lua new file mode 100644 index 00000000..cd022e2b --- /dev/null +++ b/lua/app/config/strings/cn/attr.lua @@ -0,0 +1,105 @@ +local attr = { + [1]={ + ["name"]="生命" + }, + [2]={ + ["name"]="攻击" + }, + [3]={ + ["name"]="暴击率" + }, + [4]={ + ["name"]="暴击伤害" + }, + [5]={ + ["name"]="伤害减免" + }, + [6]={ + ["name"]="攻击力" + }, + [7]={ + ["name"]="攻击力" + }, + [8]={ + ["name"]="攻击力" + }, + [9]={ + ["name"]="攻击力" + }, + [10]={ + ["name"]="攻击力" + }, + [11]={ + ["name"]="攻击力" + }, + [12]={ + ["name"]="攻击力" + }, + [13]={ + ["name"]="攻击力" + }, + [14]={ + ["name"]="攻击力" + }, + [15]={ + ["name"]="生命" + }, + [16]={ + ["name"]="生命" + }, + [17]={ + ["name"]="生命" + }, + [18]={ + ["name"]="生命" + }, + [19]={ + ["name"]="生命" + }, + [20]={ + ["name"]="生命" + }, + [21]={ + ["name"]="生命" + }, + [22]={ + ["name"]="伤害" + }, + [23]={ + ["name"]="闪避" + }, + [24]={ + ["name"]="金币获取" + }, + [25]={ + ["name"]="技能伤害" + }, + [26]={ + ["name"]="普攻伤害" + }, + [27]={ + ["name"]="放置奖励" + }, + [28]={ + ["name"]="火把回复速度" + }, + [29]={ + ["name"]="火把持有上限" + }, + [30]={ + ["name"]="知识获取" + }, + [31]={ + ["name"]="研究速度" + }, + [32]={ + ["name"]="击飞伤害" + }, + [33]={ + ["name"]="击飞数量" + } +} +local config = { +data=attr,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/attr.lua.meta b/lua/app/config/strings/cn/attr.lua.meta new file mode 100644 index 00000000..ff922a22 --- /dev/null +++ b/lua/app/config/strings/cn/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 10a25d9efe329044788f7b7a36912228 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/collection.lua b/lua/app/config/strings/cn/collection.lua new file mode 100644 index 00000000..63d7b831 --- /dev/null +++ b/lua/app/config/strings/cn/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + ["name"]="新的征程" + }, + [2]={ + ["name"]="刀枪可入" + }, + [3]={ + ["name"]="制杖大师" + }, + [4]={ + ["name"]="精雕细琢" + }, + [5]={ + ["name"]="一点寒芒" + }, + [6]={ + ["name"]="光与阴影" + }, + [7]={ + ["name"]="自然之力" + }, + [8]={ + ["name"]="狂风骤雨" + }, + [9]={ + ["name"]="刺客信仰" + }, + [10]={ + ["name"]="冰火交响" + }, + [101]={ + ["name"]="粗布麻衣" + }, + [102]={ + ["name"]="狩猎开始" + }, + [103]={ + ["name"]="精致生活" + }, + [104]={ + ["name"]="为战而生" + }, + [105]={ + ["name"]="守护骑士" + }, + [106]={ + ["name"]="有死无生" + }, + [107]={ + ["name"]="光明永存" + }, + [108]={ + ["name"]="邪气凛然" + }, + [109]={ + ["name"]="恶魔耳语" + }, + [110]={ + ["name"]="神圣之物" + }, + [201]={ + ["name"]="暗夜行者" + }, + [202]={ + ["name"]="平民珍宝" + }, + [203]={ + ["name"]="格斗大师" + }, + [204]={ + ["name"]="利刃出鞘" + }, + [205]={ + ["name"]="绝对防御" + }, + [206]={ + ["name"]="天雷滚滚" + }, + [207]={ + ["name"]="神兵利器" + }, + [208]={ + ["name"]="圣光照耀" + }, + [209]={ + ["name"]="神之遗物" + }, + [210]={ + ["name"]="至高神器" + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/collection.lua.meta b/lua/app/config/strings/cn/collection.lua.meta new file mode 100644 index 00000000..4f028320 --- /dev/null +++ b/lua/app/config/strings/cn/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c901c36d5e5651d4d9bca98bb9c1f3a7 +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 new file mode 100644 index 00000000..0d2c7335 --- /dev/null +++ b/lua/app/config/strings/cn/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + ["name"]="铁剑" + }, + [10002]={ + ["name"]="钢剑" + }, + [10003]={ + ["name"]="精钢剑" + }, + [10004]={ + ["name"]="雕纹长剑" + }, + [10005]={ + ["name"]="骑士长剑" + }, + [10006]={ + ["name"]="暴风大剑" + }, + [10007]={ + ["name"]="狂怒之剑" + }, + [10008]={ + ["name"]="正义裁决" + }, + [10009]={ + ["name"]="鲜血之痕" + }, + [10101]={ + ["name"]="短刀" + }, + [10102]={ + ["name"]="钢短刀" + }, + [10103]={ + ["name"]="精钢短刀" + }, + [10104]={ + ["name"]="雕纹短刀" + }, + [10105]={ + ["name"]="刺客短刀" + }, + [10106]={ + ["name"]="剧毒短刀" + }, + [10107]={ + ["name"]="暗影之刃" + }, + [10108]={ + ["name"]="毒蛇之咬" + }, + [10109]={ + ["name"]="死亡主宰" + }, + [10201]={ + ["name"]="木枪" + }, + [10202]={ + ["name"]="钢枪" + }, + [10203]={ + ["name"]="精钢长枪" + }, + [10204]={ + ["name"]="雕纹长枪" + }, + [10205]={ + ["name"]="白银长枪" + }, + [10206]={ + ["name"]="狼牙长枪" + }, + [10207]={ + ["name"]="狮心之枪" + }, + [10208]={ + ["name"]="极冰" + }, + [10209]={ + ["name"]="龙炎" + }, + [10301]={ + ["name"]="木杖" + }, + [10302]={ + ["name"]="玻璃法杖" + }, + [10303]={ + ["name"]="宝石法杖" + }, + [10304]={ + ["name"]="水晶法杖" + }, + [10305]={ + ["name"]="妖精法杖" + }, + [10306]={ + ["name"]="青鸟法杖" + }, + [10307]={ + ["name"]="白蛇之杖" + }, + [10308]={ + ["name"]="月光" + }, + [10309]={ + ["name"]="烈日" + }, + [20001]={ + ["name"]="蓖麻衣" + }, + [20002]={ + ["name"]="皮衣" + }, + [20003]={ + ["name"]="士兵袍服" + }, + [20004]={ + ["name"]="精铁甲" + }, + [20005]={ + ["name"]="守护盔甲" + }, + [20006]={ + ["name"]="圣光铠甲" + }, + [20007]={ + ["name"]="天启战衣" + }, + [20101]={ + ["name"]="粗布衣" + }, + [20102]={ + ["name"]="厚皮衣" + }, + [20103]={ + ["name"]="精致袍服" + }, + [20104]={ + ["name"]="卫兵铁甲" + }, + [20105]={ + ["name"]="精铜盔甲" + }, + [20106]={ + ["name"]="堕落铠甲" + }, + [20107]={ + ["name"]="黄金圣衣" + }, + [20201]={ + ["name"]="棉布衣" + }, + [20202]={ + ["name"]="猎人皮衣" + }, + [20203]={ + ["name"]="迷彩袍服" + }, + [20204]={ + ["name"]="正义铁甲" + }, + [20205]={ + ["name"]="陷阵盔甲" + }, + [20206]={ + ["name"]="邪龙铠甲" + }, + [20207]={ + ["name"]="路西法之衣" + }, + [20301]={ + ["name"]="丝绸衣" + }, + [20302]={ + ["name"]="精致皮衣" + }, + [20303]={ + ["name"]="肩甲袍服" + }, + [20304]={ + ["name"]="荣耀铁甲" + }, + [20305]={ + ["name"]="黄金盔甲" + }, + [20306]={ + ["name"]="征服铠甲" + }, + [20307]={ + ["name"]="屠龙传说" + }, + [30001]={ + ["name"]="蓖麻头带" + }, + [30002]={ + ["name"]="粗铁细头环" + }, + [30003]={ + ["name"]="雕纹银环" + }, + [30004]={ + ["name"]="战士头冠" + }, + [30005]={ + ["name"]="强运之冠" + }, + [30006]={ + ["name"]="风雷之冕" + }, + [30007]={ + ["name"]="屠龙金冕" + }, + [30101]={ + ["name"]="粗布头带" + }, + [30102]={ + ["name"]="黄铜细头环" + }, + [30103]={ + ["name"]="碎宝石银环" + }, + [30104]={ + ["name"]="冲锋头冠" + }, + [30105]={ + ["name"]="智慧之冠" + }, + [30106]={ + ["name"]="灭运之冕" + }, + [30107]={ + ["name"]="光辉圣冕" + }, + [30201]={ + ["name"]="棉布头带" + }, + [30202]={ + ["name"]="青铜细头环" + }, + [30203]={ + ["name"]="雕纹金环" + }, + [30204]={ + ["name"]="骑士头冠" + }, + [30205]={ + ["name"]="渴血之冠" + }, + [30206]={ + ["name"]="战神之冕" + }, + [30207]={ + ["name"]="撒旦邪冕" + }, + [30301]={ + ["name"]="丝绸头带" + }, + [30302]={ + ["name"]="白银细头环" + }, + [30303]={ + ["name"]="碎宝石金环" + }, + [30304]={ + ["name"]="英雄头冠" + }, + [30305]={ + ["name"]="光明之冠" + }, + [30306]={ + ["name"]="无光之冕" + }, + [30307]={ + ["name"]="创世神冕" + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/equip.lua.meta b/lua/app/config/strings/cn/equip.lua.meta new file mode 100644 index 00000000..9d8ea8e5 --- /dev/null +++ b/lua/app/config/strings/cn/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2c85efa7c1fb5864fa260c1abede7a5a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/global.lua b/lua/app/config/strings/cn/global.lua new file mode 100644 index 00000000..c2b409f9 --- /dev/null +++ b/lua/app/config/strings/cn/global.lua @@ -0,0 +1,406 @@ +local localization_global = +{ + ["TASK_DAILY_TITLE"] = "每日任务", + ["COUNTDOWN"] = "{0}:{1}:{2}", + ["EVENT_TITLE"] = "活动", + ["ACT_SEVENDAY_TITLE"] = "庆典开演", + ["ACT_SEVENDAY_BTN"] = "参演", + ["ACT_SEVENDAY_LEFTTIME"] = "剩余时间:{0}天", + ["ACT_SEVENDAY_TASK"] = "任务完成:{0}", + ["ACT_SEVENDAY_DESC"] = "每日将开启新的任务。", + ["BTN_CLAIM"] = "领取", + ["BTN_DONE"] = "已领取", + ["BTN_GO"] = "前往", + ["BTN_FREE"] = "免费", + ["BTN_CONFIRM"] = "确定", + ["SUMMON_TIMES"] = "召唤{0}次", + ["SUMMON_RATE_TITLE"] = "综合概率", + ["SUMMON_RATE_DESC1"] = "各品质获得概率", + ["SUMMON_RATE_DESC2"] = "召唤一定数量后,召唤等级增加。", + ["IDLE_TITLE1"] = "放置奖励", + ["IDLE_TITLE2"] = "额外奖励", + ["IDLE_BTN"] = "获得额外奖励", + ["IDLE_DESC"] = "收集{0}分钟", + ["MAIL_TITLE"] = "邮箱", + ["MAIL_COUNTDOWN"] = "{0}小时到期", + ["BTN_READ"] = "读取", + ["BTN_DELETE_ALL"] = "删除已读邮件", + ["BTN_CLAIM_ALL"] = "领取所有", + ["FIRST_CHARGE_REWARD_DESC"] = "首次购买奖励", + ["SHOP_DESC1"] = "商店", + ["SUMMON_DESC1"] = "召唤", + ["SUMMON_DESC2"] = "召唤{0}次", + ["SUMMON_DESC3"] = "召唤一定数量后召唤等级增加", + ["DAILY_AND_WEEK"] = "每日/每周", + ["TREASURE_DESC1"] = "财宝", + ["FAMILY_HEIRLOOM"] = "传家宝", + ["ARMOR_DESC1"] = "防具", + ["QLT_DESC_1"] = "普通", + ["QLT_DESC_2"] = "高级", + ["QLT_DESC_3"] = "稀有", + ["QLT_DESC_4"] = "史诗", + ["QLT_DESC_5"] = "传说", + ["QLT_DESC_6"] = "神话", + ["QLT_DESC_7"] = "超越", + ["PROBABILITY_DESC1"] = "综合概率", + ["PROBABILITY_DESC2"] = "各种级别获得概率", + ["LEVEL_DESC1"] = "LEVEL{0}", + ["WEAPON_DESC1"] = "武器", + ["LV_POINT"] = "LV.{0}", + ["LOOK_AD_DESC1"] = "观看广告", + ["LOOK_AD_DESC2"] = "观看广告免费召唤", + ["LOOK_AD_DESC3"] = "每观看一次广告都可以增加召唤次数", + ["NEXT_SUMMON_NUM"] = "下一次召唤:{0}", + ["MAX_SUMMON_NUM"] = "(最多召唤{0}次)", + ["CANCEL_1"] = "取消", + ["TIME_STR_DHM"] = "{0}天{1}时{2}分", + ["TIME_STR_M"] = "{0}分", + ["TIME_STR_MS"] = "{0}分{1}秒", + ["TIME_STR_S"] = "{0}秒", + ["TIME_STR_DH"] = "{0}天{1}时", + ["TIME_STR_HMS"] = "{0}时{1}分{2}秒", + ["TIME_STR_HM"] = "{0}时{1}分", + ["TIME_STR_D"] = "{0}天", + ["TIME_MS"] = "{0}:{1}", + ["TIME_HMS"] = "{0}:{1}:{2}", + ["REMAIN_TIME_DESC1"] = "剩余时间:{0}", + ["SUPER_DESC1"] = "超值", + ["GIFT_DESC1"] = "礼包", + ["DUMGEON_1"] = "金币副本", + ["DUMGEON_2"] = "钻石副本", + ["DUMGEON_3"] = "秘银副本", + ["DUMGEON_4"] = "特性副本", + ["BLESSING_1"] = "金币", + ["BLESSING_2"] = "攻击", + ["BLESSING_3"] = "技能伤害", + ["ACCELERATION"] = "战斗加速", + ["LOOK_AD"] = "广告", + ["DAILY_SHOP"] = "每日商店", + ["WEEK_SHOP"] = "每周商店", + ["FIRST_BUY_AWARD"] = "首次购买奖励", + ["FIRST_BUT_AWARD_2"] = "首次购买任意商品时获得", + ["EQUIP_TITLE "] = "装备界面", + ["EQUIP_DESC_1"] = "拥有效果", + ["EQUIP_DESC_2"] = "装备效果", + ["EQUIP_DESC_3"] = "装备", + ["EQUIP_DESC_4"] = "强化", + ["EQUIP_DESC_5"] = "前往召唤", + ["EQUIP_DESC_6"] = "全部强化", + ["ATTR_NAME_1"] = "生命", + ["ATTR_NAME_2"] = "生命恢复", + ["ATTR_NAME_3"] = "攻击", + ["ATTR_NAME_4"] = "移动速度", + ["ATTR_NAME_5"] = "暴击率", + ["ATTR_NAME_6"] = "暴击伤害", + ["ATTR_NAME_7"] = "攻击范围", + ["ATTR_NAME_8"] = "伤害减免", + ["ATTR_NAME_9"] = "对boss伤害提升", + ["ATTR_NAME_11"] = "攻击", + ["ATTR_NAME_20"] = "生命", + ["CAN_NOT_DIGGING_DARK"] = "不可探索远处的雾区", + ["MUST_PUT_IN_GROUND"] = "必须放在已照亮的区域", + ["ITEM_NOT_ENOUGH"] = "{0}不足", + ["MAX_LV_DESC"] = "最高等级", + ["RESET_DESC"] = "重置", + ["STRENGTHEN_DESC"] = "强化", + ["MASTERY_DESC_1"] = "精通能力", + ["MASTERY_DESC_2"] = "精通能力帮助", + ["MASTERY_DESC_3"] = "回溯关卡时,可以获得精通点数,消耗精通点数可以升级精通能力。", + ["MASTERY_DESC_4"] = "一个精通能力升级满后才能解锁下一个精通能力。", + ["MASTERY_DESC_5"] = "是否重置精通?\n重置将返回全部精通点数,所有精通重置为0级。", + ["HERO_TITLE_1"] = "装备", + ["HERO_TITLE_2"] = "传家宝", + ["HERO_TITLE_3"] = "精通", + ["HERO_TITLE_4"] = "符文", + ["EQUIP_DESC_7"] = "已装备", + ["EQUIP_DESC_8"] = "脱下", + ["EQUIP_DESC_9"] = "图鉴", + ["EQUIP_DESC_10"] = "打造符文", + ["EQUIP_DESC_11"] = "已解锁符文:{0}/{1}", + ["EQUIP_DESC_12"] = "未解锁符文", + ["EQUIP_DESC_13"] = "收集效果:{0}", + ["CONGRATULATE_GET_DESC"] = "恭喜获得", + ["MINING_TITLE"] = "探索", + ["Next"] = "下一个", + ["MINING_TIPS_DESC1"] = "火把将自动补充", + ["MINING_TIPS_DESC2"] = "探索越深入的区域越容易发现好的宝藏", + ["MINING_TIPS_DESC3"] = "使用圣光蜡烛和炎弹可以轻松驱散厚重迷雾", + ["MINING_TIPS_DESC4"] = "照亮黄线以下可以进入更深的区域", + ["RESEARCH_TITLE"] = "研究所", + ["RESEARCH_MAT"] = "研究材料", + ["RESEARCHING_QUICK_FINISH"] = "马上结束!", + ["RESEARCHING_JUMP_TIME"] = "跳过{0}分钟", + ["RESEARCHING_DESC1"] = "正在进行研究——【{0}】", + ["MAX"] = "MAX", + ["NEED_BEFORE_RESEARCH"] = "需要进行提前研究", + ["RESEARCH"] = "研究", + ["DISCONNECT_RELOGIN"] = "网络连接已断开, 请重新登录", + ["RECONNECT"] = "网络连接已断开,是否重连", + ["BTN_TEXT_OK"] = "确定", + ["RELOGIN"] = "重新登录", + ["DUNGEON_GOLD"] = "金币副本", + ["DUNGEON_TREASURE"] = "钻石副本", + ["DUNGEON_MITHRIL"] = "秘银副本", + ["DUNGEON_CHARACTERISTIC"] = "特性副本", + ["TRAIN_DESC_1"] = "训练", + ["TRAIN_DESC_2"] = "回溯", + ["TRAIN_DESC_3"] = "速通", + ["TRAIN_DESC_4"] = "本次最佳:{0}关,回溯后可获得:", + ["TRAIN_DESC_5"] = "当前进度", + ["TRAIN_DESC_6"] = "最高进度", + ["TRAIN_DESC_7"] = "训练属性", + ["TRAIN_DESC_8"] = "通关{0}关解锁", + ["TRAIN_DESC_9"] = "前往回溯", + ["TRAIN_DESC_10"] = "速通至{0}关", + ["TRAIN_DESC_11"] = "结束本次挑战", + ["TRAIN_DESC_12"] = "本次关卡推进越远,回溯获得金币、精通点数越多", + ["TRAIN_DESC_13"] = "当前不是最高关卡,奖励会减少,是否确定", + ["TRAIN_DESC_14"] = "开始回溯", + ["TRAIN_DESC_15"] = "{0}关", + ["TRAIN_DESC_16"] = "速通升级", + ["TRAIN_DESC_17"] = "等级{0}", + ["TRAIN_DESC_18"] = "每次速通将立即跳过{0}(+300)关。(速通等级越高,速通关卡数越多;但速通无法超过当前最高关卡)", + ["UPGRADE_DESC"] = "升级", + ["GET_REWARDS"] = "获得奖励", + ["ARENA"] = "竞技场", + ["REFRESH_TIME"] = "刷新时间:{0}", + ["DUNGEON_DESC1"] = "副本入场钥匙会每天自动补充", + ["CHAPTER_UNLOCK_DESC"] = "通关{0}解锁", + ["LEVEL_UNLOCK_DESC"] = "等级达到{0}解锁", + ["ENTER_DUNGEON"] = "入场", + ["TASK_COMPLETE_DESC"] = "完成主线任务{0}解锁", + ["DUNGEON_GOLD_HELP_CONTENT"] = "猜猜撬开了宝箱会发生什么?呀!宝箱张嘴咬人啦!", + ["DUNGEON_TREASURE_HELP_CONTENT"] = "勇者视财宝为身外之物,不屑于争夺,不过,送上门的除外~", + ["DUNGEON_MITHRIL_HELP_CONTENT"] = "秘银的挖掘是个体力活,挖掘可以用魔法,但被惊醒的魔物就是大麻烦啦!", + ["DUNGEON_CHARACTERISTIC_HELP_CONTENT"] = "无数次的战斗磨砺带来的,除了体格的强壮,还有意志的坚定和随机应变的机敏。", + ["ARENA_HELP_CONTENT"] = "1.竞技场总共有4个主题,分别为:剑、短刀、长枪、法杖。主题不同,对应的对手也不同。\n2.用主题武器可获得额外攻击加成,本期使用{0},攻击力额外提升20%。下一期主题使用{1}。\n3.限定时间内和对手战斗,造成伤害得分,根据得分进入段位。\n4.每周日0点(UTC-0)将结算1次段位并给奖励,结算后你的段位将下降最多5个段位。\n5.竞技场中的武器、防具和传家宝的拥有属性将生效。武器装备属性和技能将在战斗开始时进行选择。\n6.传家宝的装备效果不会生效,每波通过后将随机出已有的传家宝效果供你选择,提高后续作战能力,但不会额外获得传家宝属性。", + ["GET_SEVER_ERROR"] = "请求服务器失败,正在重试", + ["ENTER_DUNGEON_AD"] = "广告入场", + ["DUNGEON_DIFFICULT"] = "难度", + ["PASS_REWARD"] = "通关奖励", + ["ARENA_RULE_TITLE"] = "竞技场规则", + ["ARENA_RULE_CONTENT"] = "1.竞技场总共有4个主题,分别为:剑、短刀、长枪、法杖。主题不同,对应的对手也不同。\n2.用主题武器可获得额外攻击加成,本期使用{0},攻击力额外提升20%。下一期主题使用{1}。\n3.限定时间内和对手战斗,造成伤害得分,根据得分进入段位。\n4.每周日0点(UTC-0)将结算1次段位并给奖励,结算后你的段位将下降最多5个段位。\n5.竞技场中的武器、防具和传家宝的拥有属性将生效。武器装备属性和技能将在战斗开始时进行选择。\n6.传家宝的装备效果不会生效,每波通过后将随机出已有的传家宝效果供你选择,提高后续作战能力,但不会额外获得传家宝属性。", + ["LOOK_SEASON_REWARD"] = "查看本期奖励", + ["ARENA_SUBJECT_DESC"] = "本期比拼主题:{0}", + ["SWARD"] = "剑", + ["WAND"] = "法杖", + ["KNIFE"] = "短刀", + ["SPEAR"] = "长枪", + ["REWARD_PREVIEW"] = "奖励预览", + ["ARENA_ENTER_TITLE"] = "竞技场.{0}", + ["ARENA_REFRESH_TIME_DESC"] = "{0}后轮换至下个主题", + ["CUR_RANK_LEVEL"] = "当前段位", + ["SCORE_DESC"] = "{0}分", + ["RANK_ORDER"] = "第{0}名", + ["HERO_RANKING_TITLE"] = "英雄榜", + ["ARENA_BATTLE_REWARD_TITLE"] = "挑战奖励", + ["ARENA_MAX_LEVEL"] = "巅峰!", + ["BEST_DESC"] = "最佳", + ["RANKING_REWARD"] = "排名奖励", + ["RANK_LEVEL_REWARD"] = "段位奖励", + ["RANKING_DESC1"] = "排名", + ["RANKING_DESC2"] = "每周结算奖励", + ["CLEARING_REMAIN_DESC"] = "距离结算剩余:{0}", + ["NO_ONE_IN_THIS_SEGMENT"] = "暂未有人进入此段位", + ["NEED_SOMETHING"] = "需要:{0}", + ["SELF_RANKING"] = "我的排名", + ["RANKIN_LEVEL_DESC"] = "{0} (所在段位)", + ["ARENA_RANK_DESC_1"] = "参与战斗后才有排名", + ["SELF_RANK_ORDER"] = "我的排名", + ["SEVEN_DAY_SIGNIN_TITLE"] = "7天签到活动", + ["DAY_DESC1"] = "第{0}天", + ["SEVEN_DAY_DESC"] = "超强金装,战力飙升!", + ["NOT_IN_RANK"] = "未上榜", + ["DIAMOND_GIFT_TITLE"] = "钻石礼包", + ["LIMIT_GIFT"] = "限时礼包", + ["DAILY_GIFT"] = "每日礼包", + ["WEEK_GIFT"] = "每周礼包", + ["MALL_GIFT"] = "礼包商店", + ["WEAPON_SUMMON_TITLE"] = "武器召唤", + ["ARMOR_SUMMON_TITLE"] = "防具召唤", + ["FAMILY_HEIRLOOM_SUMMON_TITLE"] = "传家宝召唤", + ["CHAPTER_DESC_1"] = "关卡", + ["CHAPTER_DESC_2"] = "关卡奖励", + ["CHAPTER_DESC_3"] = "挑战目标", + ["CHAPTER_DESC_4"] = "挑战奖励", + ["LIMIT_DESC"] = "限购:{0}", + ["QLT_DESC"] = "{0}品质", + ["ITEM_DESC"] = "道具", + ["IDLE_DROP_DESC_1"] = "放置奖励", + ["IDLE_DROP_DESC_2"] = "金币获取:{0}/m", + ["IDLE_DROP_DESC_3"] = "已搜集{0}分钟", + ["GET_REWARDS_1"] = "领取奖励", + ["EXT_REWARDS"] = "额外奖励", + ["CAN_NOT_DIG_GROUND"] = "不可放置于已照亮的区域!", + ["SEVEN_DAY_DESC_1"] = "新人七天乐", + ["SEVEN_DAY_DESC_2"] = "结束时间:{0}", + ["SEVEN_DAY_DESC_3"] = "已完成任务数:{0}/{1}", + ["SEVEN_DAY_DESC_4"] = "领取全部", + ["DAILY_TASK_DESC_1"] = "每日任务", + ["DAILY_TASK_DESC_2"] = "完成", + ["GAME_SETTING_DESC_1"] = "我的信息", + ["GAME_SETTING_DESC_2"] = "账号", + ["GAME_SETTING_DESC_3"] = "语言", + ["GAME_SETTING_DESC_4"] = "支持", + ["GAME_SETTING_DESC_5"] = "隐私", + ["GAME_SETTING_FACEBOOK"] = "Facebook", + ["GAME_SETTING_DISCORD"] = "Discord", + ["GAME_SETTING_DESC_6"] = "立即进入省电模式", + ["GAME_SETTING_DESC_7"] = "PlayerID:{0}", + ["GAME_SETTING_DESC_8"] = "开", + ["GAME_SETTING_DESC_9"] = "关", + ["GAME_SETTING_DESC_10"] = "背景音", + ["GAME_SETTING_DESC_11"] = "环境音", + ["GAME_SETTING_DESC_12"] = "画面抖动", + ["GAME_SETTING_DESC_13"] = "通知", + ["GAME_SETTING_DESC_14"] = "使用省电模式", + ["TUTORIAL_MINE"] = "那么这些知识有什么用呢?", + ["HAS_RESEARCHING"] = "研究正在进行", + ["BATTLE_FAILED"] = "失败了", + ["BATTLE_FAIL_DESC_1"] = "召唤装备,武装自己", + ["BATTLE_FAIL_DESC_2"] = "挑战副本,攫取资源", + ["BATTLE_FAIL_DESC_3"] = "探索迷雾,研究知识", + ["BATTLE_FAIL_DESC_4"] = "回溯速通,训练精通", + ["ACCOUNT_DESC_1"] = "绑定账户", + ["ACCOUNT_DESC_2"] = "绑定账号,安全保护游戏信息!", + ["LOGIN_BY_GOOGLE"] = "通过Google登录", + ["LOGIN_BY_APPLE"] = "通过Apple登录", + ["DELETE_ACCOUNT"] = "删除账号", + ["BLESSING_TITLE"] = "祝福", + ["BLESSING_TITLE_1"] = "丰收之神的祝福", + ["BLESSING_TITLE_2"] = "战神的祝福", + ["BLESSING_TITLE_3"] = "锻造之神的祝福", + ["BLESSING_DESC_1"] = "金币获得量增加到", + ["BLESSING_DESC_2"] = "攻击力增加到", + ["BLESSING_DESC_3"] = "技能伤害增加到", + ["BLESSING_DESC_4"] = "还有自动延长祝福的礼包?", + ["GET"] = "获得", + ["ACT_SEVENDAY_DESC_1"] = "第{0}天解锁", + ["BATTLE_SPEED_UP_DESC_1"] = "加速游戏", + ["BATTLE_SPEED_UP_DESC_2"] = "速度X2", + ["BATTLE_SPEED_UP_DESC_3"] = "观看广告,接下来20分钟游戏2倍速", + ["BATTLE_SPEED_UP_DESC_4"] = "(开启后,打开自动攻击即可生效)", + ["BATTLE_SPEED_UP_DESC_5"] = "加速期间观看广告会刷新加速时长,但最高不超过20分钟", + ["BATTLE_SPEED_UP_DESC_6"] = "激活", + ["BATTLE_FAIL"] = "战斗失败", + ["BATTLE_VICTORY"] = "战斗胜利", + ["CLICK_CLOSE_DESC"] = "点击关闭", + ["FUNC_OPEN_LEVEL"] = "玩家等级{0}开启", + ["FUNC_OPEN_STAGE"] = "通关章节{0}开启", + ["FUNC_OPEN_TASK"] = "完成主线任务{0}开启", + ["TASK_DESC"] = "主线任务", + ["TRAIN_DESC_19"] = "速通奖励", + ["TRAIN_DESC_20"] = "金币翻倍", + ["RUNE_TITLE_1"] = "符文:剑", + ["RUNE_TITLE_2"] = "符文:法杖", + ["RUNE_TITLE_3"] = "符文:短刀", + ["RUNE_TITLE_4"] = "符文:长枪", + ["RUNE_TITLE_5"] = "符文:衣服", + ["RUNE_TITLE_6"] = "符文:头饰", + ["RUNE_TITLE_7"] = "符文:通用", + ["BATTLE_SPEED_UP_DESC_7"] = "自动攻击2倍速已生效,剩余20分钟", + ["MASTERY_DESC_6"] = "重置精通能力", + ["MESSAGE_BOX_TITLE"] = "提示", + ["RESEARCH_COMPLETE"] = "研究完成!", + ["BOUNTY_DESC_1"] = "高级通行证", + ["BOUNTY_DESC_2"] = "本赛季期间可获得如下优惠。", + ["BOUNTY_DESC_4"] = "解锁高级通行证专用奖励", + ["BOUNTY_DESC_5"] = "解锁高级通行证专用任务", + ["BOUNTY_DESC_6"] = "S{0}赛季战令", + ["BOUNTY_DESC_7"] = "通行证奖励", + ["BOUNTY_DESC_8"] = "普通通行证", + ["BOUNTY_DESC_9"] = "已满级", + ["BOUNTY_DESC_10"] = "已激活", + ["BOUNTY_DESC_11"] = "每日任务", + ["BOUNTY_DESC_12"] = "每周任务", + ["BOUNTY_DESC_13"] = "购买高级通行证时激活", + ["BOUNTY_DESC_14"] = "已完成", + ["BOUNTY_DESC_15"] = "完成任务", + ["AUTO_FIGHT"] = "自动攻击", + ["OPEN_AUTO_FIGHT"] = "开启自动", + ["BATTLE_NEXT_WAVE"] = "进入第{0}波", + ["BATTLE_WAVE"] = "第{0}波", + ["BATTLE_LEFT"] = "剩余", + ["BATTLE_STAGE_FAILED_DESC"] = "挑战失败\n回退{0}关\n回去好好练习再来吧", + ["POWER"] = "战力", + ["BATTLE_CHAPTER_PASS"] = "通过关卡", + ["BATTLE_CHAPTER_DESC"] = "第{0}关", + ["BATTLE_LIMIT_DESC"] = "限时挑战", + ["BATTLE_CHAPTER_STEP_DESC"] = "第{0}层\n第{1}关", + ["BATTLE_PAUSE"] = "暂停", + ["BATTLE_ATTR"] = "当前属性", + ["BATTLE_RESUME"] = "继续战斗", + ["BATTLE_DUNGEON_EXIT"] = "退出副本", + ["TRAIN_DESC_21"] = "1.花费时光沙漏可以进行回溯,获得金币和精通点数。时光沙漏每天0点(UTC-0)会刷新并回复数量至5。\n2.回溯时所处的关卡数越高,回溯获得的奖励就越多,当前低于100关时,将不能进行回溯。\n3.回溯后将回到第一关,通过速通可以快速回到当前最高关卡进度。 \n4.时光回溯消耗大量体力和精神力,因此每次回溯后需要休息15分钟才可进行下次回溯。", + ["TRAIN_DESC_22"] = "1.使用时光粉尘可以进行速通,跨越时间和空间维度,快速通关至当前最高关卡进度,并获得对应的金币奖励。时光粉尘每天0点(UTC-0)会刷新并回复数量至5。\n2.速通通过的关卡数越多,获得的奖励就越多。\n3.速通可到达的关卡数受已通关的关卡数和速通等级限制,消耗速通石可升级速通等级。每次速通等级提升,可使速通到达的最高关卡数增加300。", + ["HELP_DESC"] = "帮助", + ["HISTORY_RECORD"] = "历史最高", + ["NEW_RECORD"] = "新纪录", + ["BATTLE_END"] = "战斗结束", + ["CUR_RECORD"] = "当前记录", + ["CLICK_CLOSE_DESC_2"] = "点击任意区域关闭", + ["BATTLE_REVIVE_TITLE"] = "是否要复活?", + ["BATTLE_REVIVE_AD"] = "免费复活", + ["BATTLE_REVIVE"] = "复活", + ["SELECT_LEGACY_DESC"] = "已选择的传家宝", + ["SELECT_ONE_LEGACY"] = "选择一项传家宝", + ["CHANGE_OTHER"] = "换一批", + ["VIEW_SELECTED_LEGACY"] = "查看已选择传家宝", + ["ARENA_CHANGE_FINISH_DESC"] = "挑战结束", + ["ARENA_SCORE"] = "得分", + ["BATTLE_AGAIN"] = "重新挑战", + ["RECHARGE_TITLE"] = "每周重置双倍钻石充值次数", + ["BATTLE_ERROR"] = "战斗异常,请重试。", + ["ARENA_CALCULATE"] = "竞技场结算中,请稍后", + ["RENAME_DESC_1"] = "更改名称", + ["RENAME_DESC_2"] = "名字最多6字", + ["RENAME_DESC_3"] = "更改名称", + ["RENAME_DESC_4"] = "请输入名称", + ["SHIELDED_WORD_DESC"] = "文字中有不可用字符", + ["NAME_ALREADY_USED_DESC"] = "名称已被占用", + ["NEW_PLAYER_DESC"] = "新玩家", + ["LANGUAGE_DESC"] = "语言", + ["ARENA_FIGHT_FORBID"] = "竞技场即将结束, 无法开启战斗!", + ["FUNDCHAPTER_TITLE"] = "关卡基金", + ["FUNDCHAPTER_TITLE_DESC"] = "提升关卡进度获得奖励!", + ["ARENA_SEGMENT_TITLE"] = "英雄榜奖励", + ["ARENA_SEGMENT_TITLE_DESC"] = "少侠身手不凡,上周成绩为:", + ["RECEIVE_REWARD"] = "收下奖励", + ["REWARD_TITLE"] = "获得奖励", + ["MAX_SCORE"] = "最高得分:{0}", + ["SAVE_POWER_DESC_2"] = "正在竞技场中过关斩将", + ["SAVE_POWER_DESC_3"] = "滑动即可退出节电模式", + ["SAVE_POWER_DESC_4"] = "(可在设置中关闭/开启)", + ["FUND_PROGRESS"] = "关卡进度", + ["FUND_LOW_TX"] = "豪华奖励", + ["FUND_HIGH_TX"] = "高级奖励", + ["NO_NETWORK"] = "无网络连接,请连接网络后重试", + ["NETWORK_ERROE_1"] = "服务器通信异常,请稍后重试", + ["REPEAT_PAY_ORDER"] = "订单已到账,如有异常,请重启游戏", + ["BATTLE_STAGE_FAILED_DESC_2"] = "挑战失败\n\n回去好好练习再来吧", + ["ACTIVITY_OVER_DESC"] = "活动已结束", + ["BINDED_DESC"] = "已绑定", + ["SWITCH_ACCOUNT_DESC"] = "切换账号", + ["BATTLE_MISS"] = "闪避", + ["MAINTAIN"] = "服务器维护", + ["FORBIDDEN"] = "封号/禁止登录", + ["OTHER_LOGIN"] = "账号在其他设备登录", + ["NO_ADS"] = "新广告还没有准备好", + ["ACCOUNT_EXCHANGE_DESC_1"] = "当前账号未绑定,切换账号后可能导致当前账号信息丢失,是否切换?", + ["ACCOUNT_EXCHANGE_DESC_2"] = "该账号没有账号信息,无法切换", + ["BESURE_DELETE_TIPS_DESC"] = "是否要删除账号,删除后将清除所有信息和内容。如果确定请输入“{0}”", + ["BESURE_DELETE_ACCOUNT_DESC"] = "确认删除", + ["LOADING_DESC"] = "加载中.......", + ["CLICK_COPY_ACOUNT_DESC"] = "点击复制用户ID", + ["APP"] = "版本号:", + ["BLESS_DESC"] = "自动祝福!", + ["SKIP_AD_DESC"] = "免除所有广告!", + ["ARENA_SETTLE_DESC"] = "竞技场结算中,请稍后", + ["PAY_FAILED_DESC_1"] = "订单异常,请联系客服处理", + ["MONTH_CARD_DESC"] = "连续30日每日发放!", + ["SETTING_DESC_22"] = "Google Play Store连接异常,请稍后再试", + ["SETTING_DESC_23"] = "当前有订单正在处理中,请稍后再试", + ["SETTING_DESC_25"] = "支付取消", +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/cn/global.lua.meta b/lua/app/config/strings/cn/global.lua.meta new file mode 100644 index 00000000..6514ba76 --- /dev/null +++ b/lua/app/config/strings/cn/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 699124b665bad054ba69de0235a23d69 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/hero.lua b/lua/app/config/strings/cn/hero.lua new file mode 100644 index 00000000..9222f008 --- /dev/null +++ b/lua/app/config/strings/cn/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + ["name"]="亚瑟" + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/hero.lua.meta b/lua/app/config/strings/cn/hero.lua.meta new file mode 100644 index 00000000..dbe19353 --- /dev/null +++ b/lua/app/config/strings/cn/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8a785d250ba90204d90c5af259b96941 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/item.lua b/lua/app/config/strings/cn/item.lua new file mode 100644 index 00000000..931debc5 --- /dev/null +++ b/lua/app/config/strings/cn/item.lua @@ -0,0 +1,112 @@ +local item = { + [1]={ + ["name"]="金币", + ["desc"]="通用货币,很多地方都会使用。" + }, + [2]={ + ["name"]="钻石", + ["desc"]="稀有货币,主要用于召唤。" + }, + [3]={ + ["name"]="空闲占位" + }, + [4]={ + ["name"]="金币副本钥匙", + ["desc"]="可用于挑战金币副本" + }, + [5]={ + ["name"]="钻石副本钥匙", + ["desc"]="可用于挑战钻石副本" + }, + [6]={ + ["name"]="秘银副本钥匙", + ["desc"]="可用于挑战秘银副本" + }, + [7]={ + ["name"]="特性副本钥匙", + ["desc"]="可用于挑战特性副本" + }, + [8]={ + ["name"]="速通石", + ["desc"]="可用于升级速通等级" + }, + [9]={ + ["name"]="火把", + ["desc"]="可用于驱散迷雾" + }, + [10]={ + ["name"]="炎弹", + ["desc"]="可用于驱散范围内的迷雾" + }, + [11]={ + ["name"]="圣光蜡烛", + ["desc"]="可用于驱散范围内的迷雾" + }, + [12]={ + ["name"]="知识", + ["desc"]="可用于进行研究" + }, + [13]={ + ["name"]="精通点数", + ["desc"]="可用于精通属性的提升" + }, + [14]={ + ["name"]="秘银", + ["desc"]="可用于符文的解锁和强化" + }, + [15]={ + ["name"]="时光沙漏", + ["desc"]="可用于回溯" + }, + [16]={ + ["name"]="竞技场钥匙", + ["desc"]="可用于参与竞技场" + }, + [17]={ + ["name"]="单抽箱子", + ["desc"]="打开可获得随机一件武器/防具/传家宝" + }, + [18]={ + ["name"]="十连箱子", + ["desc"]="打开可获得随机十件武器/防具/传家宝" + }, + [19]={ + ["name"]="战令积分", + ["desc"]="收集一定积分可以提升战令等级" + }, + [20]={ + ["name"]="包裹" + }, + [21]={ + ["name"]="三十五连箱子", + ["desc"]="打开可获得随机三十五件武器/防具/传家宝" + }, + [22]={ + ["name"]="一百零五连箱子", + ["desc"]="打开可获得随机一百零五件武器/防具/传家宝" + }, + [23]={ + ["name"]="金色传说宝箱", + ["desc"]="打开可获得骑士长剑、守护盔甲和强运头冠" + }, + [24]={ + ["name"]="一张羊皮纸" + }, + [25]={ + ["name"]="一沓羊皮纸" + }, + [26]={ + ["name"]="一卷羊皮纸" + }, + [27]={ + ["name"]="羊皮书" + }, + [28]={ + ["name"]="时光粉尘", + ["desc"]="可用于速通" + } +} +local config = { +data=item,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/item.lua.meta b/lua/app/config/strings/cn/item.lua.meta new file mode 100644 index 00000000..79a72ed6 --- /dev/null +++ b/lua/app/config/strings/cn/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a4b4a23431203eb4ca1155122c299bd1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/legacy.lua b/lua/app/config/strings/cn/legacy.lua new file mode 100644 index 00000000..5835887d --- /dev/null +++ b/lua/app/config/strings/cn/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + ["name"]="引雷针" + }, + [40002]={ + ["name"]="凝神香囊" + }, + [40003]={ + ["name"]="盗贼短靴" + }, + [40004]={ + ["name"]="灵巧手套" + }, + [40005]={ + ["name"]="刺客匕首" + }, + [40101]={ + ["name"]="家传护符" + }, + [40102]={ + ["name"]="负重铁甲" + }, + [40103]={ + ["name"]="力量手套" + }, + [40104]={ + ["name"]="伪装披风" + }, + [40105]={ + ["name"]="虎爪" + }, + [40201]={ + ["name"]="黑铁锥" + }, + [40202]={ + ["name"]="格斗指环" + }, + [40203]={ + ["name"]="雷纹水晶" + }, + [40204]={ + ["name"]="冰石面具" + }, + [40205]={ + ["name"]="锁子甲" + }, + [40301]={ + ["name"]="大师长剑" + }, + [40302]={ + ["name"]="撕裂尖刺" + }, + [40303]={ + ["name"]="魔法水晶盾" + }, + [40304]={ + ["name"]="荆棘之甲" + }, + [40305]={ + ["name"]="黄金臂甲" + }, + [40401]={ + ["name"]="辉煌王冠" + }, + [40402]={ + ["name"]="斩骨巨刀" + }, + [40403]={ + ["name"]="朗基努斯之枪" + }, + [40404]={ + ["name"]="嗜血魔剑" + }, + [40405]={ + ["name"]="雷神之锤" + }, + [40501]={ + ["name"]="智慧之匙" + }, + [40502]={ + ["name"]="夜神之翼" + }, + [40503]={ + ["name"]="骑士荣耀" + }, + [40504]={ + ["name"]="真实之眼" + }, + [40505]={ + ["name"]="菲尼克斯之泪" + }, + [40601]={ + ["name"]="裂地图腾" + }, + [40602]={ + ["name"]="海神三叉戟" + }, + [40603]={ + ["name"]="太阳神弓" + }, + [40604]={ + ["name"]="无形之刃" + }, + [40605]={ + ["name"]="永恒之枪冈尼尔" + }, + [40606]={ + ["name"]="末日审判" + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/legacy.lua.meta b/lua/app/config/strings/cn/legacy.lua.meta new file mode 100644 index 00000000..5d09f6d0 --- /dev/null +++ b/lua/app/config/strings/cn/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 17766f8730d92bc4d83b234849dd4916 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/mail.lua b/lua/app/config/strings/cn/mail.lua new file mode 100644 index 00000000..f76e0a67 --- /dev/null +++ b/lua/app/config/strings/cn/mail.lua @@ -0,0 +1,24 @@ +local mail = { + [1]={ + ["name"]="路边老爷爷的馈赠" + }, + [2]={ + ["name"]="国王的日常补给" + }, + [3]={ + ["name"]="哼哼哈嘿", + ["desc"]="乐观的人总在不经意间获得意外之喜" + }, + [4]={ + ["name"]="仁者无敌", + ["desc"]="心地善良的人,会善有善报的" + }, + [5]={ + ["name"]="风生水起", + ["desc"]="精力充沛,运势良好,财运连连" + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/mail.lua.meta b/lua/app/config/strings/cn/mail.lua.meta new file mode 100644 index 00000000..b76dd502 --- /dev/null +++ b/lua/app/config/strings/cn/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7e5883e7d4a1380458e887038d1999ad +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/mall_act.lua b/lua/app/config/strings/cn/mall_act.lua new file mode 100644 index 00000000..1779221f --- /dev/null +++ b/lua/app/config/strings/cn/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + ["name"]="首充奖励" + }, + [10001]={ + ["name"]="贵重物品" + }, + [10002]={ + ["name"]="勇者向前冲" + }, + [10003]={ + ["name"]="地宫继承者" + }, + [10004]={ + ["name"]="炼金术士的储物箱" + }, + [10005]={ + ["name"]="巨龙宝藏" + }, + [10006]={ + ["name"]="狂战士血统" + }, + [10101]={ + ["name"]="探索大礼包" + }, + [10102]={ + ["name"]="闪亮钥匙串" + }, + [10103]={ + ["name"]="问鼎天下" + }, + [10104]={ + ["name"]="神话法杖套装" + }, + [10105]={ + ["name"]="神话刺客套装" + }, + [10106]={ + ["name"]="正义的使者" + }, + [10201]={ + ["name"]="传说装备三件套" + }, + [10202]={ + ["name"]="神话装备三件套" + }, + [10301]={ + ["name"]="传说中的传家宝" + }, + [10302]={ + ["name"]="神话中的传家宝" + }, + [20001]={ + ["name"]="免广告礼包" + }, + [30001]={ + ["name"]="自动祝福礼包" + }, + [40001]={ + ["name"]="黄金冒险家勋章" + }, + [60001]={ + ["name"]="关卡基金-低档" + }, + [60002]={ + ["name"]="关卡基金-高档" + }, + [70001]={ + ["name"]="战令1赛季" + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/mall_act.lua.meta b/lua/app/config/strings/cn/mall_act.lua.meta new file mode 100644 index 00000000..b8a6a941 --- /dev/null +++ b/lua/app/config/strings/cn/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 101fd766a00033e48becea9e267618a8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/mall_daily.lua b/lua/app/config/strings/cn/mall_daily.lua new file mode 100644 index 00000000..ffefab36 --- /dev/null +++ b/lua/app/config/strings/cn/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + ["name"]="免费礼包" + }, + [1002]={ + ["name"]="小钥匙串" + }, + [1003]={ + ["name"]="时光盒" + }, + [1004]={ + ["name"]="钥匙串" + }, + [1005]={ + ["name"]="探索袋" + }, + [2001]={ + ["name"]="大钥匙串" + }, + [2002]={ + ["name"]="时光宝盒" + }, + [2003]={ + ["name"]="钥匙大礼包" + }, + [2004]={ + ["name"]="探索行囊" + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/mall_daily.lua.meta b/lua/app/config/strings/cn/mall_daily.lua.meta new file mode 100644 index 00000000..b110594f --- /dev/null +++ b/lua/app/config/strings/cn/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 716335e9f7cb1c640b9d47453ca36eb1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/mall_treasure.lua b/lua/app/config/strings/cn/mall_treasure.lua new file mode 100644 index 00000000..a16d49e3 --- /dev/null +++ b/lua/app/config/strings/cn/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + ["name"]="一把钻石" + }, + [2]={ + ["name"]="一袋钻石" + }, + [3]={ + ["name"]="一包钻石" + }, + [4]={ + ["name"]="一箱钻石" + }, + [5]={ + ["name"]="一桶钻石" + }, + [6]={ + ["name"]="一车钻石" + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/mall_treasure.lua.meta b/lua/app/config/strings/cn/mall_treasure.lua.meta new file mode 100644 index 00000000..ef40a818 --- /dev/null +++ b/lua/app/config/strings/cn/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7354d0e70f2768648b7ac478d7c131b4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/mastery.lua b/lua/app/config/strings/cn/mastery.lua new file mode 100644 index 00000000..458d92d4 --- /dev/null +++ b/lua/app/config/strings/cn/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + ["desc"]="普攻回复" + }, + [2]={ + ["desc"]="金币加成" + }, + [3]={ + ["desc"]="攻击加成" + }, + [4]={ + ["desc"]="生命加成" + }, + [5]={ + ["desc"]="放置加成" + }, + [6]={ + ["desc"]="普攻伤害加成" + }, + [7]={ + ["desc"]="金币加成" + }, + [8]={ + ["desc"]="攻击加成" + }, + [9]={ + ["desc"]="生命加成" + }, + [10]={ + ["desc"]="过量治疗" + }, + [11]={ + ["desc"]="放置加成" + }, + [12]={ + ["desc"]="闪避加成" + }, + [13]={ + ["desc"]="金币加成" + }, + [14]={ + ["desc"]="攻击加成" + }, + [15]={ + ["desc"]="生命加成" + }, + [16]={ + ["desc"]="放置加成" + }, + [17]={ + ["desc"]="普攻伤害加成" + }, + [18]={ + ["desc"]="金币加成" + }, + [19]={ + ["desc"]="攻击加成" + }, + [20]={ + ["desc"]="生命加成" + }, + [21]={ + ["desc"]="受伤闪避" + }, + [22]={ + ["desc"]="放置加成" + }, + [23]={ + ["desc"]="闪避加成" + }, + [24]={ + ["desc"]="金币加成" + }, + [25]={ + ["desc"]="攻击加成" + }, + [26]={ + ["desc"]="生命加成" + }, + [27]={ + ["desc"]="放置加成" + }, + [28]={ + ["desc"]="普攻伤害加成" + }, + [29]={ + ["desc"]="金币加成" + }, + [30]={ + ["desc"]="攻击加成" + }, + [31]={ + ["desc"]="生命加成" + }, + [32]={ + ["desc"]="自动攻速" + }, + [33]={ + ["desc"]="放置加成" + }, + [34]={ + ["desc"]="闪避加成" + }, + [35]={ + ["desc"]="金币加成" + }, + [36]={ + ["desc"]="攻击加成" + }, + [37]={ + ["desc"]="生命加成" + }, + [38]={ + ["desc"]="放置加成" + }, + [39]={ + ["desc"]="普攻伤害加成" + }, + [40]={ + ["desc"]="金币加成" + }, + [41]={ + ["desc"]="攻击加成" + }, + [42]={ + ["desc"]="生命加成" + }, + [43]={ + ["desc"]="技能回复" + }, + [44]={ + ["desc"]="放置加成" + }, + [45]={ + ["desc"]="闪避加成" + }, + [46]={ + ["desc"]="金币加成" + }, + [47]={ + ["desc"]="攻击加成" + }, + [48]={ + ["desc"]="生命加成" + }, + [49]={ + ["desc"]="放置加成" + }, + [50]={ + ["desc"]="普攻伤害加成" + }, + [51]={ + ["desc"]="金币加成" + }, + [52]={ + ["desc"]="攻击加成" + }, + [53]={ + ["desc"]="生命加成" + }, + [54]={ + ["desc"]="普攻回复" + }, + [55]={ + ["desc"]="放置加成" + }, + [56]={ + ["desc"]="闪避加成" + }, + [57]={ + ["desc"]="金币加成" + }, + [58]={ + ["desc"]="攻击加成" + }, + [59]={ + ["desc"]="生命加成" + }, + [60]={ + ["desc"]="放置加成" + }, + [61]={ + ["desc"]="普攻伤害加成" + }, + [62]={ + ["desc"]="金币加成" + }, + [63]={ + ["desc"]="攻击加成" + }, + [64]={ + ["desc"]="生命加成" + }, + [65]={ + ["desc"]="过量治疗" + }, + [66]={ + ["desc"]="放置加成" + }, + [67]={ + ["desc"]="闪避加成" + }, + [68]={ + ["desc"]="金币加成" + }, + [69]={ + ["desc"]="攻击加成" + }, + [70]={ + ["desc"]="生命加成" + }, + [71]={ + ["desc"]="放置加成" + }, + [72]={ + ["desc"]="普攻伤害加成" + }, + [73]={ + ["desc"]="金币加成" + }, + [74]={ + ["desc"]="攻击加成" + }, + [75]={ + ["desc"]="生命加成" + }, + [76]={ + ["desc"]="受伤闪避" + }, + [77]={ + ["desc"]="放置加成" + }, + [78]={ + ["desc"]="闪避加成" + }, + [79]={ + ["desc"]="金币加成" + }, + [80]={ + ["desc"]="攻击加成" + }, + [81]={ + ["desc"]="生命加成" + }, + [82]={ + ["desc"]="放置加成" + }, + [83]={ + ["desc"]="普攻伤害加成" + }, + [84]={ + ["desc"]="金币加成" + }, + [85]={ + ["desc"]="攻击加成" + }, + [86]={ + ["desc"]="生命加成" + }, + [87]={ + ["desc"]="技能回复" + }, + [88]={ + ["desc"]="放置加成" + }, + [89]={ + ["desc"]="闪避加成" + }, + [90]={ + ["desc"]="金币加成" + }, + [91]={ + ["desc"]="攻击加成" + }, + [92]={ + ["desc"]="生命加成" + }, + [93]={ + ["desc"]="放置加成" + }, + [94]={ + ["desc"]="普攻伤害加成" + }, + [95]={ + ["desc"]="金币加成" + }, + [96]={ + ["desc"]="攻击加成" + }, + [97]={ + ["desc"]="生命加成" + }, + [98]={ + ["desc"]="普攻回复" + }, + [99]={ + ["desc"]="放置加成" + }, + [100]={ + ["desc"]="闪避加成" + }, + [101]={ + ["desc"]="金币加成" + }, + [102]={ + ["desc"]="攻击加成" + }, + [103]={ + ["desc"]="生命加成" + }, + [104]={ + ["desc"]="放置加成" + }, + [105]={ + ["desc"]="普攻伤害加成" + }, + [106]={ + ["desc"]="金币加成" + }, + [107]={ + ["desc"]="攻击加成" + }, + [108]={ + ["desc"]="生命加成" + }, + [109]={ + ["desc"]="过量治疗" + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/mastery.lua.meta b/lua/app/config/strings/cn/mastery.lua.meta new file mode 100644 index 00000000..5991f52b --- /dev/null +++ b/lua/app/config/strings/cn/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0f2d73e02dd6f47448ef68f33ecad663 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/mine_research.lua b/lua/app/config/strings/cn/mine_research.lua new file mode 100644 index 00000000..6b5a04f1 --- /dev/null +++ b/lua/app/config/strings/cn/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [1]={ + ["desc"]="为了知识冲!" + }, + [2]={ + ["desc"]="学习制作枯草火把" + }, + [3]={ + ["desc"]="外面冷加件衣服" + }, + [4]={ + ["desc"]="火把要没了疯狂捡草" + }, + [5]={ + ["desc"]="捡起石头准备砸怪物" + }, + [6]={ + ["desc"]="好好学习天天向上" + }, + [7]={ + ["desc"]="知识,更多的知识" + }, + [8]={ + ["desc"]="还是有点冷再加件衣服" + }, + [9]={ + ["desc"]="把石头打磨成小刀" + }, + [10]={ + ["desc"]="枯树枝是更好的火把" + }, + [11]={ + ["desc"]="有怪物丢石头再加件衣服" + }, + [12]={ + ["desc"]="树枝烧完了赶紧捡" + }, + [13]={ + ["desc"]="掏出祖传的生锈铁剑" + }, + [14]={ + ["desc"]="头发吊起来学习贼快" + }, + [15]={ + ["desc"]="奇怪的知识增加了" + }, + [16]={ + ["desc"]="衣服挡不住石头要穿铁甲" + }, + [17]={ + ["desc"]="祖传的铁剑发光了" + }, + [18]={ + ["desc"]="终于学会了制作优秀的火把" + }, + [19]={ + ["desc"]=" 脑袋好疼戴个头盔" + }, + [20]={ + ["desc"]="火把要做快点不然就没有火把用了" + }, + [21]={ + ["desc"]="铁皮脱落变成了钢剑" + }, + [22]={ + ["desc"]="学习困了就用剑扎大腿" + }, + [23]={ + ["desc"]="奇怪的知识又增加了" + }, + [24]={ + ["desc"]="手臂好疼戴个护臂" + }, + [25]={ + ["desc"]="加衣服,不停地加衣服" + }, + [26]={ + ["desc"]="磨剑,不停地磨剑" + }, + [27]={ + ["desc"]="加衣服,不停地加衣服" + }, + [28]={ + ["desc"]="磨剑,不停地磨剑" + }, + [29]={ + ["desc"]="加衣服,不停地加衣服" + }, + [30]={ + ["desc"]="磨剑,不停地磨剑" + }, + [31]={ + ["desc"]="加衣服,不停地加衣服" + }, + [32]={ + ["desc"]="磨剑,不停地磨剑" + }, + [33]={ + ["desc"]="加衣服,不停地加衣服" + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/mine_research.lua.meta b/lua/app/config/strings/cn/mine_research.lua.meta new file mode 100644 index 00000000..e9b9a17f --- /dev/null +++ b/lua/app/config/strings/cn/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4a4ec60f57b018047a18c4176feafa08 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/monster_base.lua b/lua/app/config/strings/cn/monster_base.lua new file mode 100644 index 00000000..0493f3a7 --- /dev/null +++ b/lua/app/config/strings/cn/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + ["name"]="哥布林打手" + }, + [2]={ + ["name"]="哥布林打手" + }, + [3]={ + ["name"]="哥布林打手" + }, + [4]={ + ["name"]="哥布林打手" + }, + [5]={ + ["name"]="哥布林打手" + }, + [6]={ + ["name"]="哥布林打手" + }, + [7]={ + ["name"]="哥布林打手" + }, + [8]={ + ["name"]="哥布林打手" + }, + [9]={ + ["name"]="哥布林打手" + }, + [10]={ + ["name"]="哥布林打手" + }, + [1001]={ + ["name"]="哥布林打手" + }, + [1002]={ + ["name"]="哥布林打手" + }, + [1003]={ + ["name"]="哥布林打手" + }, + [1004]={ + ["name"]="哥布林打手" + }, + [1005]={ + ["name"]="哥布林打手" + }, + [1006]={ + ["name"]="哥布林打手" + }, + [1007]={ + ["name"]="哥布林打手" + }, + [1008]={ + ["name"]="哥布林打手" + }, + [1009]={ + ["name"]="哥布林打手" + }, + [1010]={ + ["name"]="哥布林打手" + }, + [2001]={ + ["name"]="哥布林打手" + }, + [2002]={ + ["name"]="哥布林打手" + }, + [2003]={ + ["name"]="哥布林打手" + }, + [2004]={ + ["name"]="哥布林打手" + }, + [2005]={ + ["name"]="哥布林打手" + }, + [2006]={ + ["name"]="哥布林打手" + }, + [2007]={ + ["name"]="哥布林打手" + }, + [2008]={ + ["name"]="哥布林打手" + }, + [2009]={ + ["name"]="哥布林打手" + }, + [2010]={ + ["name"]="哥布林打手" + }, + [3001]={ + ["name"]="BOSS1" + }, + [3002]={ + ["name"]="BOSS2" + }, + [3003]={ + ["name"]="BOSS3" + }, + [3004]={ + ["name"]="BOSS4" + }, + [3005]={ + ["name"]="BOSS5" + }, + [3006]={ + ["name"]="BOSS6" + }, + [3007]={ + ["name"]="BOSS7" + }, + [3008]={ + ["name"]="BOSS8" + }, + [3009]={ + ["name"]="BOSS9" + }, + [3010]={ + ["name"]="BOSS10" + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/monster_base.lua.meta b/lua/app/config/strings/cn/monster_base.lua.meta new file mode 100644 index 00000000..4b40bc3f --- /dev/null +++ b/lua/app/config/strings/cn/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 52c7e3b7f87f45743a261c9473385ba9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/runes.lua b/lua/app/config/strings/cn/runes.lua new file mode 100644 index 00000000..64e6781b --- /dev/null +++ b/lua/app/config/strings/cn/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + ["name"]="残影" + }, + [50102]={ + ["name"]="昂扬" + }, + [50103]={ + ["name"]="狂战" + }, + [50104]={ + ["name"]="重击" + }, + [50201]={ + ["name"]="回收" + }, + [50202]={ + ["name"]="灵巧" + }, + [50203]={ + ["name"]="压制" + }, + [50204]={ + ["name"]="秘技" + }, + [50301]={ + ["name"]="烈毒" + }, + [50302]={ + ["name"]="入髓" + }, + [50303]={ + ["name"]="涂毒" + }, + [50304]={ + ["name"]="弱点" + }, + [50401]={ + ["name"]="枪花" + }, + [50402]={ + ["name"]="上挑" + }, + [50403]={ + ["name"]="本能" + }, + [50404]={ + ["name"]="悍勇" + }, + [50501]={ + ["name"]="轻甲" + }, + [50502]={ + ["name"]="布甲" + }, + [50503]={ + ["name"]="皮甲" + }, + [50504]={ + ["name"]="重甲" + }, + [50601]={ + ["name"]="剑意" + }, + [50602]={ + ["name"]="魔杖" + }, + [50603]={ + ["name"]="刃心" + }, + [50604]={ + ["name"]="枪魂" + }, + [50701]={ + ["name"]="暴怒" + }, + [50702]={ + ["name"]="灵风" + }, + [50703]={ + ["name"]="无华" + }, + [50704]={ + ["name"]="行云" + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/runes.lua.meta b/lua/app/config/strings/cn/runes.lua.meta new file mode 100644 index 00000000..1adfdd83 --- /dev/null +++ b/lua/app/config/strings/cn/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 467b0f787f2f9c940893bad62d2cbcc2 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/skill.lua b/lua/app/config/strings/cn/skill.lua new file mode 100644 index 00000000..559373d3 --- /dev/null +++ b/lua/app/config/strings/cn/skill.lua @@ -0,0 +1,742 @@ +local skill = { + [11011]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11012]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11016]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21011]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21014]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21015]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31011]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31012]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31013]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41011]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41012]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41013]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [11021]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11022]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11026]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21021]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21024]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21025]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31021]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31022]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31023]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41021]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41022]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41023]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [11031]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11032]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11036]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21031]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21034]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21035]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31031]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31032]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31033]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41031]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41032]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41033]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [11041]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11042]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11046]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21041]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21044]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21045]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31041]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31042]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31043]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41041]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41042]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41043]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [11051]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11052]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11056]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21051]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21054]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21055]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31051]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31052]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31053]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41051]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41052]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41053]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [11061]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11062]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11066]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21061]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21064]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21065]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31061]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31062]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31063]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41061]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41062]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41063]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [11071]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11072]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11076]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21071]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21074]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21075]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31071]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31072]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31073]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41071]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41072]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41073]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [11081]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11082]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11086]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21081]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21084]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21085]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31081]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31082]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31083]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41081]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41082]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41083]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [11091]={ + ["name"]="血斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [11092]={ + ["name"]="裂地斩", + ["desc"]="每15次普攻后,向前打出1道裂地斩,造成相当于{0}%攻击力的伤害" + }, + [11096]={ + ["name"]="崩山击", + ["desc"]="每25次普攻后,召唤3把巨剑从天而降,造成相当于{0}%攻击力的伤害" + }, + [21091]={ + ["name"]="飞刃", + ["desc"]="每8次普攻后,召唤3把飞刃刺向敌人,造成相当于{0}%攻击力的伤害" + }, + [21094]={ + ["name"]="毒雾", + ["desc"]="每15次普攻后,释放1圈毒雾,持续5秒,毒雾内敌人每1秒受到相当于{0}%攻击力的伤害,并施加中毒" + }, + [21095]={ + ["name"]="千刃杀", + ["desc"]="每25次普攻后,召唤6把飞刃绞杀敌人,造成相当于{0}%攻击力的伤害" + }, + [31091]={ + ["name"]="半月斩", + ["desc"]="每8次普攻后,向前挥出1道斩击,造成相当于{0}%攻击力的伤害" + }, + [31092]={ + ["name"]="枪舞", + ["desc"]="每15次普攻后,用力挥动武器,对周围敌人造成相当于{0}%攻击力的伤害" + }, + [31093]={ + ["name"]="枪雨", + ["desc"]="每25次普攻后,召唤8杆长枪从天而降,造成相当于{0}%攻击力的伤害" + }, + [41091]={ + ["name"]="旋风", + ["desc"]="每8次普攻后,向前发出1道旋风,造成相当于{0}%攻击力的伤害,并施加3层法术印记" + }, + [41092]={ + ["name"]="极寒领域", + ["desc"]="每15次普攻后,在自己脚下召唤1个冰霜法阵,持续5秒,每0.5秒造成相当于{0}%攻击力的伤害,并施加1层法术印记" + }, + [41093]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻后,引爆所有敌人的法术印记,每层印记造成相当于{0}%攻击力的伤害" + }, + [400011]={ + ["name"]="引雷针", + ["desc"]="每触发3次武器技能,对倒地的敌人劈下2道雷霆,每道造成攻击{0}%的范围伤害" + }, + [400021]={ + ["name"]="凝神香囊", + ["desc"]="在预警范围内,攻击+{0}%" + }, + [400031]={ + ["name"]="盗贼短靴", + ["desc"]="成功闪避时,攻击提升{0}%,持续5秒,冷却15秒" + }, + [400041]={ + ["name"]="灵巧手套", + ["desc"]="预警范围内,击飞伤害+{0}%,并且倒地时间延长1秒" + }, + [400051]={ + ["name"]="刺客匕首", + ["desc"]="预警范围内,普攻暴击率提升20%,暴击伤害提升{0}%" + }, + [401011]={ + ["name"]="家传护符", + ["desc"]="每5次普攻,发出1道攻击身后最近的敌人,造成攻击*{0}%的伤害" + }, + [401021]={ + ["name"]="负重铁甲", + ["desc"]="受伤时,击飞周身小怪并造成攻击*{0}%的伤害,冷却时间15秒" + }, + [401031]={ + ["name"]="力量手套", + ["desc"]="击飞敌人时,击飞伤害+{0}%,击飞敌人数量+3" + }, + [401041]={ + ["name"]="伪装披风", + ["desc"]="英雄满血时,攻击提升{0}%" + }, + [401051]={ + ["name"]="虎爪", + ["desc"]="在预警范围内,击飞造成的伤害+{0}%" + }, + [402011]={ + ["name"]="黑铁锥", + ["desc"]="攻击倒地的敌人时进行追击,每次追击造成攻击*{0}%伤害" + }, + [402021]={ + ["name"]="格斗指环", + ["desc"]="血量低于30%时,攻击提升{0}%" + }, + [402031]={ + ["name"]="雷纹水晶", + ["desc"]="每触发3次武器技能,对倒地的敌人劈下2道雷霆,每道造成攻击*{0}%的范围伤害" + }, + [402041]={ + ["name"]="冰石面具", + ["desc"]="在预警范围内,攻击+{0}%" + }, + [402051]={ + ["name"]="锁子甲", + ["desc"]="成功闪避时,攻击提升{0}%,持续5秒,冷却15秒" + }, + [403011]={ + ["name"]="大师长剑", + ["desc"]="预警范围内,击飞伤害+{0}%,并且倒地时间延长1秒" + }, + [403021]={ + ["name"]="撕裂尖刺", + ["desc"]="预警范围内,普攻暴击率提升20%,暴击伤害提升{0}%" + }, + [403031]={ + ["name"]="魔法水晶盾", + ["desc"]="每5次普攻,发出2道攻击身后最近的敌人,造成攻击*{0}%的伤害" + }, + [403041]={ + ["name"]="荆棘之甲", + ["desc"]="受伤时,击飞周身小怪并造成攻击*{0}%的伤害,冷却时间15秒" + }, + [403051]={ + ["name"]="黄金臂甲", + ["desc"]="击飞敌人时,击飞伤害+{0}%,击飞敌人数量+5" + }, + [404011]={ + ["name"]="辉煌王冠", + ["desc"]="英雄满血时,攻击提升{0}%" + }, + [404021]={ + ["name"]="斩骨巨刀", + ["desc"]="在预警范围内,击飞造成的伤害+{0}%" + }, + [404031]={ + ["name"]="朗基努斯之枪", + ["desc"]="攻击倒地的敌人时进行追击,每次追击造成攻击*{0}%伤害" + }, + [404041]={ + ["name"]="嗜血魔剑", + ["desc"]="血量低于30%时,攻击提升{0}%" + }, + [404051]={ + ["name"]="雷神之锤", + ["desc"]="每触发3次武器技能,对倒地的敌人劈下2道雷霆,每道造成攻击*{0}%的范围伤害" + }, + [405011]={ + ["name"]="智慧之匙", + ["desc"]="在预警范围内,攻击+{0}%" + }, + [405021]={ + ["name"]="夜神之翼", + ["desc"]="成功闪避时,攻击提升{0}%,持续5秒,冷却15秒" + }, + [405031]={ + ["name"]="骑士荣耀", + ["desc"]="预警范围内,击飞伤害+{0}%,并且倒地时间延长1秒" + }, + [405041]={ + ["name"]="真实之眼", + ["desc"]="预警范围内,普攻暴击率提升20%,暴击伤害提升{0}%" + }, + [405051]={ + ["name"]="菲尼克斯之泪", + ["desc"]="每5次普攻,发出2道攻击身后最近的敌人,造成攻击*{0}%的伤害" + }, + [406011]={ + ["name"]="裂地图腾", + ["desc"]="受伤时,击飞周身小怪并造成攻击*{0}%的伤害,冷却时间10秒" + }, + [406021]={ + ["name"]="海神三叉戟", + ["desc"]="击飞敌人时,击飞伤害+{0}%,击飞敌人数量+10" + }, + [406031]={ + ["name"]="太阳神弓", + ["desc"]="英雄满血时,攻击提升{0}%" + }, + [406041]={ + ["name"]="无形之刃", + ["desc"]="在预警范围内,击飞造成的伤害+{0}%" + }, + [406051]={ + ["name"]="永恒之枪冈尼尔", + ["desc"]="攻击倒地的敌人时进行追击,每次追击造成攻击*{0}%伤害" + }, + [406061]={ + ["name"]="末日审判", + ["desc"]="血量低于30%时,攻击提升{0}%" + }, + [501011]={ + ["name"]="残影", + ["desc"]="每次触发技能,有20%几率再释放1次" + }, + [501021]={ + ["name"]="昂扬", + ["desc"]="自身血量等于100%时,技能有50%几率额外触发1次" + }, + [501031]={ + ["name"]="狂战", + ["desc"]="受伤时,技能伤害增加30%,持续5秒,冷却5秒" + }, + [501041]={ + ["name"]="重击", + ["desc"]="普攻攻击眩晕状态的单位,普攻伤害提升100%,持续3秒,冷却3秒" + }, + [502011]={ + ["name"]="回收", + ["desc"]="每次引爆必定保留20%法术印记层数" + }, + [502021]={ + ["name"]="灵巧", + ["desc"]="闪避+10%" + }, + [502022]={ + ["name"]="灵巧", + ["desc"]="每次闪避成功,对所有敌人加2层法术印记" + }, + [502031]={ + ["name"]="压制", + ["desc"]="普攻暴击时,对普攻目标额外上1层法术印记" + }, + [502041]={ + ["name"]="秘技", + ["desc"]="击飞敌人时,对被击飞的目标有30%概率附加10层法术印记" + }, + [503011]={ + ["name"]="烈毒", + ["desc"]="中毒有30%概率造成双倍伤害" + }, + [503021]={ + ["name"]="入髓", + ["desc"]="每叠1层毒,毒伤提高5%" + }, + [503031]={ + ["name"]="涂毒", + ["desc"]="预警范围内,每次普攻有50%概率上一层毒" + }, + [503041]={ + ["name"]="弱点", + ["desc"]="技能命中带毒的敌人,伤害提高50%" + }, + [504011]={ + ["name"]="枪花", + ["desc"]="每次施放武器技能时,有20%几率再释放1次" + }, + [504021]={ + ["name"]="上挑", + ["desc"]="击飞时,有20%概率释放一次技能3" + }, + [504031]={ + ["name"]="本能", + ["desc"]="入场后每10秒释放1次技能2" + }, + [504041]={ + ["name"]="悍勇", + ["desc"]="技能有30%概率造成2倍伤害" + }, + [505011]={ + ["name"]="轻甲", + ["desc"]="触发【剑】技能时,击飞时长提升0.5秒,普攻伤害+20%,持续3秒,冷却3秒" + }, + [505021]={ + ["name"]="布甲", + ["desc"]="触发【法杖】技能时,对所有敌人附加2层法术印记" + }, + [505031]={ + ["name"]="皮甲", + ["desc"]="触发【短刀】技能时,有20%概率额外释放1次技能1" + }, + [505041]={ + ["name"]="重甲", + ["desc"]="触发【长枪】技能时,有20%概率额外释放1次技能2" + }, + [506011]={ + ["name"]="剑意", + ["desc"]="使用【剑】时,普攻暴击率提升100%" + }, + [506021]={ + ["name"]="魔杖", + ["desc"]="使用【法杖】时,引爆法术印记的伤害提升50%" + }, + [506031]={ + ["name"]="刃心", + ["desc"]="使用【短刀】时,毒伤持续时间提升5秒" + }, + [506041]={ + ["name"]="枪魂", + ["desc"]="使用【长枪】时,技能2伤害增加100%" + }, + [507011]={ + ["name"]="暴怒", + ["desc"]="暴击率+10%" + }, + [507021]={ + ["name"]="灵风", + ["desc"]="闪避率+10%" + }, + [507031]={ + ["name"]="无华", + ["desc"]="普攻伤害+20%" + }, + [507041]={ + ["name"]="行云", + ["desc"]="击飞伤害+30%" + }, + [600011]={ + ["name"]="攻击回血", + ["desc"]="攻击10次回复20%上限的生命" + }, + [600021]={ + ["name"]="过量治疗", + ["desc"]="回复血量溢出时,会转化为护盾,最多能形成30%血量上限的护盾值" + }, + [600031]={ + ["name"]="受伤闪避", + ["desc"]="受伤后提升50%的闪避率,持续3秒,冷却30秒" + }, + [600041]={ + ["name"]="自动攻速", + ["desc"]="自动攻击时,攻击频率提升到0.35秒/次" + }, + [600051]={ + ["name"]="技能回血", + ["desc"]="使用技能时有30%几率回复15%生命" + }, + [600061]={ + ["name"]="攻击回血", + ["desc"]="攻击10次回复30%上限的生命" + }, + [600071]={ + ["name"]="过量治疗", + ["desc"]="回复血量溢出时,会转化为护盾,最多能形成60%血量上限的护盾值" + }, + [600081]={ + ["name"]="受伤闪避", + ["desc"]="受伤后提升50%的闪避率,持续5秒,冷却30秒" + }, + [600091]={ + ["name"]="技能回血", + ["desc"]="使用技能时有30%几率回复30%生命" + }, + [600101]={ + ["name"]="攻击回血", + ["desc"]="攻击10次回复40%上限的生命" + }, + [600111]={ + ["name"]="过量治疗", + ["desc"]="回复血量溢出时,会转化为护盾,最多能形成90%血量上限的护盾值" + } +} +local config = { +data=skill,count=184 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/skill.lua.meta b/lua/app/config/strings/cn/skill.lua.meta new file mode 100644 index 00000000..38570b15 --- /dev/null +++ b/lua/app/config/strings/cn/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8a2d25adc42c07c4797b9cce43f3bc46 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/task.lua b/lua/app/config/strings/cn/task.lua new file mode 100644 index 00000000..bd9da987 --- /dev/null +++ b/lua/app/config/strings/cn/task.lua @@ -0,0 +1,130 @@ +local task = { + [1]={ + ["desc"]="击溃{0}名敌人", + ["tutorial_desc"]="击溃敌人" + }, + [2]={ + ["desc"]="通过第{0}关", + ["tutorial_desc"]="通过关卡" + }, + [3]={ + ["desc"]="进行{0}次召唤", + ["tutorial_desc"]="进行召唤" + }, + [4]={ + ["desc"]="收看{0}次广告", + ["tutorial_desc"]="观看广告" + }, + [5]={ + ["desc"]="完成每日任务{0}", + ["tutorial_desc"]="完成每日任务" + }, + [6]={ + ["desc"]="累计签到{0}天", + ["tutorial_desc"]="累计签到天数" + }, + [7]={ + ["desc"]="进行{0}次武器召唤", + ["tutorial_desc"]="武器召唤" + }, + [8]={ + ["desc"]="进行{0}次防具召唤", + ["tutorial_desc"]="防具召唤" + }, + [9]={ + ["desc"]="进行{0}次传家宝召唤", + ["tutorial_desc"]="传家宝召唤" + }, + [10]={ + ["desc"]="完成钻石副本难度{0}", + ["tutorial_desc"]="完成钻石副本难度" + }, + [11]={ + ["desc"]="完成金币副本难度{0}", + ["tutorial_desc"]="完成金币副本难度" + }, + [12]={ + ["desc"]="完成秘银副本难度{0}", + ["tutorial_desc"]="完成秘银副本难度" + }, + [13]={ + ["desc"]="完成特性副本难度{0}", + ["tutorial_desc"]="完成特性副本难度" + }, + [14]={ + ["desc"]="竞技场段位达到{0}", + ["tutorial_desc"]="竞技场段位" + }, + [15]={ + ["desc"]="使用{0}次火把", + ["tutorial_desc"]="使用火把次数" + }, + [16]={ + ["desc"]="使用{0}次炎弹", + ["tutorial_desc"]="使用炎弹次数" + }, + [17]={ + ["desc"]="使用{0}次圣光蜡烛", + ["tutorial_desc"]="使用圣光蜡烛次数" + }, + [18]={ + ["desc"]="完成{0}次研究", + ["tutorial_desc"]="完成研究次数" + }, + [19]={ + ["desc"]="驱散{0}片迷雾区域", + ["tutorial_desc"]="驱散迷雾次数" + }, + [20]={ + ["desc"]="探索前进{0}米", + ["tutorial_desc"]="探索前进距离" + }, + [21]={ + ["desc"]="领取{0}次祝福", + ["tutorial_desc"]="领取祝福次数" + }, + [22]={ + ["desc"]="获得{0}个符文", + ["tutorial_desc"]="获得符文个数" + }, + [23]={ + ["desc"]="强化{0}次符文", + ["tutorial_desc"]="强化符文" + }, + [24]={ + ["desc"]="攻击训练达到{0}级", + ["tutorial_desc"]="训练攻击" + }, + [25]={ + ["desc"]="生命训练达到{0}级", + ["tutorial_desc"]="训练生命" + }, + [26]={ + ["desc"]="挑战{0}次关卡", + ["tutorial_desc"]="挑战关卡次数" + }, + [27]={ + ["desc"]="完成{0}次钻石副本", + ["tutorial_desc"]="完成钻石副本次数" + }, + [28]={ + ["desc"]="完成{0}次金币副本", + ["tutorial_desc"]="完成金币副本次数" + }, + [29]={ + ["desc"]="完成{0}次秘银副本", + ["tutorial_desc"]="完成秘银副本次数" + }, + [30]={ + ["desc"]="完成{0}次特性副本", + ["tutorial_desc"]="完成特性副本次数" + }, + [31]={ + ["desc"]="挑战{0}次竞技场", + ["tutorial_desc"]="挑战竞技场次数" + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/task.lua.meta b/lua/app/config/strings/cn/task.lua.meta new file mode 100644 index 00000000..2f0e89ad --- /dev/null +++ b/lua/app/config/strings/cn/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2eee950760c46ca4887529b631f9a208 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/task_daily.lua b/lua/app/config/strings/cn/task_daily.lua new file mode 100644 index 00000000..ef12ca46 --- /dev/null +++ b/lua/app/config/strings/cn/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + ["desc"]="击溃100名敌人" + }, + [2]={ + ["desc"]="挑战5次关卡" + }, + [3]={ + ["desc"]="进行10次召唤" + }, + [4]={ + ["desc"]="收看2次广告" + }, + [5]={ + ["desc"]="完成1次宝石试炼" + }, + [6]={ + ["desc"]="完成1次金币试炼" + }, + [7]={ + ["desc"]="完成每日任务" + }, + [8]={ + ["desc"]="击溃500名敌人" + }, + [9]={ + ["desc"]="挑战6次关卡" + }, + [10]={ + ["desc"]="进行20次召唤" + }, + [11]={ + ["desc"]="完成2次宝石试炼" + }, + [12]={ + ["desc"]="完成2次金币试炼" + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/task_daily.lua.meta b/lua/app/config/strings/cn/task_daily.lua.meta new file mode 100644 index 00000000..03334435 --- /dev/null +++ b/lua/app/config/strings/cn/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 86325617ea78d8f46959d8a30b33baac +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/tutorial.lua b/lua/app/config/strings/cn/tutorial.lua new file mode 100644 index 00000000..526616cb --- /dev/null +++ b/lua/app/config/strings/cn/tutorial.lua @@ -0,0 +1,72 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + ["value"]="来啦~选拔赛等你好久了,现在可以开始了吧!" + }, + ["TUTORIAL_TXT_2"]={ + ["value"]="现在开始你的表演~" + }, + ["TUTORIAL_TXT_3"]={ + ["value"]="刚才战斗比较顺利,接下来有点难,训练一下自己!" + }, + ["TUTORIAL_TXT_4"]={ + ["value"]="长按可以快速训练,先提升到5级。" + }, + ["TUTORIAL_TXT_5"]={ + ["value"]="武器功能已解锁,让我们先去召唤武器。" + }, + ["TUTORIAL_TXT_6"]={ + ["value"]="召唤了好多武器,快去装备上。" + }, + ["TUTORIAL_TXT_7"]={ + ["value"]="获取的相同武器可以用于强化,提升属性。" + }, + ["TUTORIAL_TXT_8"]={ + ["value"]="全部强化可以强化所有可强化的武器,拥有更多高等级武器同样能带来属性提升。" + }, + ["TUTORIAL_TXT_9"]={ + ["value"]="武器拥有技能,攻击一定次数后自动释放技能。" + }, + ["TUTORIAL_TXT_10"]={ + ["value"]="防具已解锁,让我们去召唤防具进行装备。" + }, + ["TUTORIAL_TXT_11"]={ + ["value"]="防具分为衣服和头饰,衣服增加生命,头饰增加攻击&生命。" + }, + ["TUTORIAL_TXT_12"]={ + ["value"]="防具跟武器相同,可强化提升属性。" + }, + ["TUTORIAL_TXT_13"]={ + ["value"]="自动战斗,轻松闯关!" + }, + ["TUTORIAL_TXT_14"]={ + ["value"]="传家宝功能已解锁,先去召唤传家宝吧!" + }, + ["TUTORIAL_TXT_15"]={ + ["value"]="传家宝是一些稀奇古怪的东西,去看看怎么使用~" + }, + ["TUTORIAL_TXT_16"]={ + ["value"]="强化过的传家宝也能提供属性成长。" + }, + ["TUTORIAL_TXT_17"]={ + ["value"]="继续通关,可以解锁更多传家宝的装备栏。" + }, + ["TUTORIAL_TXT_18"]={ + ["value"]="我们可以精通更多能力了,去看看吧!" + }, + ["TUTORIAL_TXT_19"]={ + ["value"]="城堡探索开启了,据说有很多财宝。" + }, + ["TUTORIAL_TXT_20"]={ + ["value"]="用火把开始探索吧~" + }, + ["TUTORIAL_TXT_21"]={ + ["value"]="根据说明,一直向下探索可以获得更多财宝!" + }, + ["TUTORIAL_TXT_22"]={ + ["value"]="想知道武器,防具和传家宝的关系吗?点击这里!" + } +} +local config = { +data=tutorial,count=22 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/tutorial.lua.meta b/lua/app/config/strings/cn/tutorial.lua.meta new file mode 100644 index 00000000..eecc5840 --- /dev/null +++ b/lua/app/config/strings/cn/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a7a0fd406203b9846a22299219a56813 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/cn/tutorialtask.lua b/lua/app/config/strings/cn/tutorialtask.lua new file mode 100644 index 00000000..70ec6399 --- /dev/null +++ b/lua/app/config/strings/cn/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + ["value"]="通过关卡" + }, + [2]={ + ["value"]="训练攻击" + }, + [3]={ + ["value"]="击溃敌人" + }, + [4]={ + ["value"]="武器召唤" + }, + [5]={ + ["value"]="通过关卡" + }, + [6]={ + ["value"]="训练生命" + }, + [7]={ + ["value"]="击溃敌人" + }, + [8]={ + ["value"]="完成金币试炼" + }, + [9]={ + ["value"]="通过关卡" + }, + [10]={ + ["value"]="训练攻击" + }, + [11]={ + ["value"]="击溃敌人" + }, + [12]={ + ["value"]="防具召唤" + }, + [13]={ + ["value"]="通过关卡" + }, + [14]={ + ["value"]="训练生命" + }, + [15]={ + ["value"]="击溃敌人" + }, + [16]={ + ["value"]="完成宝石试炼" + }, + [17]={ + ["value"]="通过关卡" + }, + [18]={ + ["value"]="训练攻击" + }, + [19]={ + ["value"]="击溃敌人" + }, + [20]={ + ["value"]="传家宝召唤" + }, + [21]={ + ["value"]="通过关卡" + }, + [22]={ + ["value"]="训练生命" + }, + [23]={ + ["value"]="击溃敌人" + }, + [24]={ + ["value"]="完成金币试炼" + }, + [25]={ + ["value"]="通过关卡" + }, + [26]={ + ["value"]="训练攻击" + }, + [27]={ + ["value"]="击溃敌人" + }, + [28]={ + ["value"]="武器召唤" + }, + [29]={ + ["value"]="通过关卡" + }, + [30]={ + ["value"]="训练生命" + }, + [31]={ + ["value"]="击溃敌人" + }, + [32]={ + ["value"]="完成宝石试炼" + }, + [33]={ + ["value"]="通过关卡" + }, + [34]={ + ["value"]="训练攻击" + }, + [35]={ + ["value"]="击溃敌人" + }, + [36]={ + ["value"]="防具召唤" + }, + [37]={ + ["value"]="通过关卡" + }, + [38]={ + ["value"]="训练生命" + }, + [39]={ + ["value"]="击溃敌人" + }, + [40]={ + ["value"]="完成金币试炼" + }, + [41]={ + ["value"]="通过关卡" + }, + [42]={ + ["value"]="训练攻击" + }, + [43]={ + ["value"]="击溃敌人" + }, + [44]={ + ["value"]="传家宝召唤" + }, + [45]={ + ["value"]="通过关卡" + }, + [46]={ + ["value"]="训练生命" + }, + [47]={ + ["value"]="密室前进距离" + }, + [48]={ + ["value"]="完成宝石试炼" + }, + [49]={ + ["value"]="通过关卡" + }, + [50]={ + ["value"]="训练攻击" + }, + [51]={ + ["value"]="击溃敌人" + }, + [52]={ + ["value"]="武器召唤" + }, + [53]={ + ["value"]="通过关卡" + }, + [54]={ + ["value"]="训练生命" + }, + [55]={ + ["value"]="击溃敌人" + }, + [56]={ + ["value"]="完成金币试炼" + }, + [57]={ + ["value"]="通过关卡" + }, + [58]={ + ["value"]="训练攻击" + }, + [59]={ + ["value"]="击溃敌人" + }, + [60]={ + ["value"]="防具召唤" + }, + [61]={ + ["value"]="通过关卡" + }, + [62]={ + ["value"]="训练生命" + }, + [63]={ + ["value"]="击溃敌人" + }, + [64]={ + ["value"]="完成宝石试炼" + }, + [65]={ + ["value"]="通过关卡" + }, + [66]={ + ["value"]="训练攻击" + }, + [67]={ + ["value"]="击溃敌人" + }, + [68]={ + ["value"]="传家宝召唤" + }, + [69]={ + ["value"]="通过关卡" + }, + [70]={ + ["value"]="训练生命" + }, + [71]={ + ["value"]="密室前进距离" + }, + [72]={ + ["value"]="完成秘银试炼" + }, + [73]={ + ["value"]="通过关卡" + }, + [74]={ + ["value"]="训练攻击" + }, + [75]={ + ["value"]="击溃敌人" + }, + [76]={ + ["value"]="武器召唤" + }, + [77]={ + ["value"]="通过关卡" + }, + [78]={ + ["value"]="训练生命" + }, + [79]={ + ["value"]="击溃敌人" + }, + [80]={ + ["value"]="完成金币试炼" + }, + [81]={ + ["value"]="通过关卡" + }, + [82]={ + ["value"]="训练攻击" + }, + [83]={ + ["value"]="击溃敌人" + }, + [84]={ + ["value"]="防具召唤" + }, + [85]={ + ["value"]="通过关卡" + }, + [86]={ + ["value"]="训练生命" + }, + [87]={ + ["value"]="击溃敌人" + }, + [88]={ + ["value"]="完成宝石试炼" + }, + [89]={ + ["value"]="通过关卡" + }, + [90]={ + ["value"]="训练攻击" + }, + [91]={ + ["value"]="英雄大会段位" + }, + [92]={ + ["value"]="传家宝召唤" + }, + [93]={ + ["value"]="通过关卡" + }, + [94]={ + ["value"]="训练生命" + }, + [95]={ + ["value"]="击溃敌人" + }, + [96]={ + ["value"]="完成秘银试炼" + }, + [97]={ + ["value"]="通过关卡" + }, + [98]={ + ["value"]="训练攻击" + }, + [99]={ + ["value"]="击溃敌人" + }, + [100]={ + ["value"]="武器召唤" + }, + [101]={ + ["value"]="通过关卡" + }, + [102]={ + ["value"]="训练生命" + }, + [103]={ + ["value"]="击溃敌人" + }, + [104]={ + ["value"]="完成金币试炼" + }, + [105]={ + ["value"]="通过关卡" + }, + [106]={ + ["value"]="训练攻击" + }, + [107]={ + ["value"]="密室前进距离" + }, + [108]={ + ["value"]="防具召唤" + }, + [109]={ + ["value"]="通过关卡" + }, + [110]={ + ["value"]="训练生命" + }, + [111]={ + ["value"]="击溃敌人" + }, + [112]={ + ["value"]="完成宝石试炼" + }, + [113]={ + ["value"]="通过关卡" + }, + [114]={ + ["value"]="训练攻击" + }, + [115]={ + ["value"]="击溃敌人" + }, + [116]={ + ["value"]="传家宝召唤" + }, + [117]={ + ["value"]="通过关卡" + }, + [118]={ + ["value"]="训练生命" + }, + [119]={ + ["value"]="击溃敌人" + }, + [120]={ + ["value"]="完成秘银试炼" + }, + [121]={ + ["value"]="通过关卡" + }, + [122]={ + ["value"]="训练攻击" + }, + [123]={ + ["value"]="击溃敌人" + }, + [124]={ + ["value"]="武器召唤" + }, + [125]={ + ["value"]="通过关卡" + }, + [126]={ + ["value"]="训练生命" + }, + [127]={ + ["value"]="击溃敌人" + }, + [128]={ + ["value"]="完成金币试炼" + }, + [129]={ + ["value"]="通过关卡" + }, + [130]={ + ["value"]="训练攻击" + }, + [131]={ + ["value"]="击溃敌人" + }, + [132]={ + ["value"]="防具召唤" + }, + [133]={ + ["value"]="通过关卡" + }, + [134]={ + ["value"]="训练生命" + }, + [135]={ + ["value"]="密室前进距离" + }, + [136]={ + ["value"]="完成宝石试炼" + }, + [137]={ + ["value"]="通过关卡" + }, + [138]={ + ["value"]="训练攻击" + }, + [139]={ + ["value"]="击溃敌人" + }, + [140]={ + ["value"]="传家宝召唤" + }, + [141]={ + ["value"]="通过关卡" + }, + [142]={ + ["value"]="训练生命" + }, + [143]={ + ["value"]="击溃敌人" + }, + [144]={ + ["value"]="完成秘银试炼" + }, + [145]={ + ["value"]="通过关卡" + }, + [146]={ + ["value"]="训练攻击" + }, + [147]={ + ["value"]="击溃敌人" + }, + [148]={ + ["value"]="武器召唤" + }, + [149]={ + ["value"]="通过关卡" + }, + [150]={ + ["value"]="训练生命" + }, + [151]={ + ["value"]="击溃敌人" + }, + [152]={ + ["value"]="完成金币试炼" + }, + [153]={ + ["value"]="通过关卡" + }, + [154]={ + ["value"]="训练攻击" + }, + [155]={ + ["value"]="击溃敌人" + }, + [156]={ + ["value"]="防具召唤" + }, + [157]={ + ["value"]="通过关卡" + }, + [158]={ + ["value"]="训练生命" + }, + [159]={ + ["value"]="击溃敌人" + }, + [160]={ + ["value"]="完成宝石试炼" + }, + [161]={ + ["value"]="通过关卡" + }, + [162]={ + ["value"]="训练攻击" + }, + [163]={ + ["value"]="击溃敌人" + }, + [164]={ + ["value"]="传家宝召唤" + }, + [165]={ + ["value"]="通过关卡" + }, + [166]={ + ["value"]="训练生命" + }, + [167]={ + ["value"]="击溃敌人" + }, + [168]={ + ["value"]="完成秘银试炼" + }, + [169]={ + ["value"]="通过关卡" + }, + [170]={ + ["value"]="训练攻击" + }, + [171]={ + ["value"]="密室前进距离" + }, + [172]={ + ["value"]="武器召唤" + }, + [173]={ + ["value"]="通过关卡" + }, + [174]={ + ["value"]="训练生命" + }, + [175]={ + ["value"]="击溃敌人" + }, + [176]={ + ["value"]="完成金币试炼" + }, + [177]={ + ["value"]="通过关卡" + }, + [178]={ + ["value"]="训练攻击" + }, + [179]={ + ["value"]="击溃敌人" + }, + [180]={ + ["value"]="防具召唤" + }, + [181]={ + ["value"]="通过关卡" + }, + [182]={ + ["value"]="训练生命" + }, + [183]={ + ["value"]="英雄大会段位" + }, + [184]={ + ["value"]="完成宝石试炼" + }, + [185]={ + ["value"]="通过关卡" + }, + [186]={ + ["value"]="训练攻击" + }, + [187]={ + ["value"]="击溃敌人" + }, + [188]={ + ["value"]="传家宝召唤" + }, + [189]={ + ["value"]="通过关卡" + }, + [190]={ + ["value"]="训练生命" + }, + [191]={ + ["value"]="击溃敌人" + }, + [192]={ + ["value"]="完成秘银试炼" + }, + [193]={ + ["value"]="通过关卡" + }, + [194]={ + ["value"]="训练攻击" + }, + [195]={ + ["value"]="密室前进距离" + }, + [196]={ + ["value"]="武器召唤" + }, + [197]={ + ["value"]="通过关卡" + }, + [198]={ + ["value"]="训练生命" + }, + [199]={ + ["value"]="击溃敌人" + }, + [200]={ + ["value"]="完成金币试炼" + }, + [201]={ + ["value"]="通过关卡" + }, + [202]={ + ["value"]="训练攻击" + }, + [203]={ + ["value"]="击溃敌人" + }, + [204]={ + ["value"]="防具召唤" + }, + [205]={ + ["value"]="通过关卡" + }, + [206]={ + ["value"]="训练生命" + }, + [207]={ + ["value"]="击溃敌人" + }, + [208]={ + ["value"]="完成宝石试炼" + }, + [209]={ + ["value"]="通过关卡" + }, + [210]={ + ["value"]="训练攻击" + }, + [211]={ + ["value"]="击溃敌人" + }, + [212]={ + ["value"]="传家宝召唤" + }, + [213]={ + ["value"]="通过关卡" + }, + [214]={ + ["value"]="训练生命" + }, + [215]={ + ["value"]="密室前进距离" + }, + [216]={ + ["value"]="完成秘银试炼" + }, + [217]={ + ["value"]="通过关卡" + }, + [218]={ + ["value"]="训练攻击" + }, + [219]={ + ["value"]="英雄大会段位" + }, + [220]={ + ["value"]="武器召唤" + }, + [221]={ + ["value"]="通过关卡" + }, + [222]={ + ["value"]="训练生命" + }, + [223]={ + ["value"]="击溃敌人" + }, + [224]={ + ["value"]="完成金币试炼" + }, + [225]={ + ["value"]="通过关卡" + }, + [226]={ + ["value"]="训练攻击" + }, + [227]={ + ["value"]="击溃敌人" + }, + [228]={ + ["value"]="防具召唤" + }, + [229]={ + ["value"]="通过关卡" + }, + [230]={ + ["value"]="训练生命" + }, + [231]={ + ["value"]="击溃敌人" + }, + [232]={ + ["value"]="完成宝石试炼" + }, + [233]={ + ["value"]="通过关卡" + }, + [234]={ + ["value"]="训练攻击" + }, + [235]={ + ["value"]="击溃敌人" + }, + [236]={ + ["value"]="传家宝召唤" + }, + [237]={ + ["value"]="通过关卡" + }, + [238]={ + ["value"]="训练生命" + }, + [239]={ + ["value"]="密室前进距离" + }, + [240]={ + ["value"]="完成秘银试炼" + }, + [241]={ + ["value"]="通过关卡" + }, + [242]={ + ["value"]="训练攻击" + }, + [243]={ + ["value"]="击溃敌人" + }, + [244]={ + ["value"]="武器召唤" + }, + [245]={ + ["value"]="通过关卡" + }, + [246]={ + ["value"]="训练生命" + }, + [247]={ + ["value"]="击溃敌人" + }, + [248]={ + ["value"]="完成金币试炼" + }, + [249]={ + ["value"]="通过关卡" + }, + [250]={ + ["value"]="训练攻击" + }, + [251]={ + ["value"]="击溃敌人" + }, + [252]={ + ["value"]="防具召唤" + }, + [253]={ + ["value"]="通过关卡" + }, + [254]={ + ["value"]="训练生命" + }, + [255]={ + ["value"]="击溃敌人" + }, + [256]={ + ["value"]="完成宝石试炼" + }, + [257]={ + ["value"]="通过关卡" + }, + [258]={ + ["value"]="训练攻击" + }, + [259]={ + ["value"]="英雄大会段位" + }, + [260]={ + ["value"]="传家宝召唤" + }, + [261]={ + ["value"]="通过关卡" + }, + [262]={ + ["value"]="训练生命" + }, + [263]={ + ["value"]="击溃敌人" + }, + [264]={ + ["value"]="完成秘银试炼" + }, + [265]={ + ["value"]="通过关卡" + }, + [266]={ + ["value"]="训练攻击" + }, + [267]={ + ["value"]="击溃敌人" + }, + [268]={ + ["value"]="武器召唤" + }, + [269]={ + ["value"]="通过关卡" + }, + [270]={ + ["value"]="训练生命" + }, + [271]={ + ["value"]="击溃敌人" + }, + [272]={ + ["value"]="完成金币试炼" + }, + [273]={ + ["value"]="通过关卡" + }, + [274]={ + ["value"]="训练攻击" + }, + [275]={ + ["value"]="击溃敌人" + }, + [276]={ + ["value"]="防具召唤" + }, + [277]={ + ["value"]="通过关卡" + }, + [278]={ + ["value"]="训练生命" + }, + [279]={ + ["value"]="英雄大会段位" + }, + [280]={ + ["value"]="完成宝石试炼" + }, + [281]={ + ["value"]="通过关卡" + }, + [282]={ + ["value"]="训练攻击" + }, + [283]={ + ["value"]="密室前进距离" + }, + [284]={ + ["value"]="传家宝召唤" + }, + [285]={ + ["value"]="通过关卡" + }, + [286]={ + ["value"]="训练生命" + }, + [287]={ + ["value"]="击溃敌人" + }, + [288]={ + ["value"]="完成秘银试炼" + }, + [289]={ + ["value"]="通过关卡" + }, + [290]={ + ["value"]="训练攻击" + }, + [291]={ + ["value"]="击溃敌人" + }, + [292]={ + ["value"]="武器召唤" + }, + [293]={ + ["value"]="通过关卡" + }, + [294]={ + ["value"]="训练生命" + }, + [295]={ + ["value"]="击溃敌人" + }, + [296]={ + ["value"]="完成金币试炼" + }, + [297]={ + ["value"]="通过关卡" + }, + [298]={ + ["value"]="训练攻击" + }, + [299]={ + ["value"]="英雄大会段位" + }, + [300]={ + ["value"]="防具召唤" + }, + [301]={ + ["value"]="通过关卡" + }, + [302]={ + ["value"]="训练生命" + }, + [303]={ + ["value"]="击溃敌人" + }, + [304]={ + ["value"]="完成宝石试炼" + }, + [305]={ + ["value"]="通过关卡" + }, + [306]={ + ["value"]="训练攻击" + }, + [307]={ + ["value"]="击溃敌人" + }, + [308]={ + ["value"]="传家宝召唤" + }, + [309]={ + ["value"]="通过关卡" + }, + [310]={ + ["value"]="训练生命" + }, + [311]={ + ["value"]="击溃敌人" + }, + [312]={ + ["value"]="完成秘银试炼" + }, + [313]={ + ["value"]="通过关卡" + }, + [314]={ + ["value"]="训练攻击" + }, + [315]={ + ["value"]="击溃敌人" + }, + [316]={ + ["value"]="武器召唤" + }, + [317]={ + ["value"]="通过关卡" + }, + [318]={ + ["value"]="训练生命" + }, + [319]={ + ["value"]="击溃敌人" + }, + [320]={ + ["value"]="完成金币试炼" + }, + [321]={ + ["value"]="通过关卡" + }, + [322]={ + ["value"]="训练攻击" + }, + [323]={ + ["value"]="击溃敌人" + }, + [324]={ + ["value"]="防具召唤" + }, + [325]={ + ["value"]="通过关卡" + }, + [326]={ + ["value"]="训练生命" + }, + [327]={ + ["value"]="击溃敌人" + }, + [328]={ + ["value"]="完成宝石试炼" + }, + [329]={ + ["value"]="通过关卡" + }, + [330]={ + ["value"]="训练攻击" + }, + [331]={ + ["value"]="击溃敌人" + }, + [332]={ + ["value"]="传家宝召唤" + }, + [333]={ + ["value"]="通过关卡" + }, + [334]={ + ["value"]="训练生命" + }, + [335]={ + ["value"]="击溃敌人" + }, + [336]={ + ["value"]="完成秘银试炼" + }, + [337]={ + ["value"]="通过关卡" + }, + [338]={ + ["value"]="训练攻击" + }, + [339]={ + ["value"]="击溃敌人" + }, + [340]={ + ["value"]="武器召唤" + }, + [341]={ + ["value"]="通过关卡" + }, + [342]={ + ["value"]="训练生命" + }, + [343]={ + ["value"]="击溃敌人" + }, + [344]={ + ["value"]="完成金币试炼" + }, + [345]={ + ["value"]="通过关卡" + }, + [346]={ + ["value"]="训练攻击" + }, + [347]={ + ["value"]="击溃敌人" + }, + [348]={ + ["value"]="防具召唤" + }, + [349]={ + ["value"]="通过关卡" + }, + [350]={ + ["value"]="训练生命" + }, + [351]={ + ["value"]="击溃敌人" + }, + [352]={ + ["value"]="完成宝石试炼" + }, + [353]={ + ["value"]="通过关卡" + }, + [354]={ + ["value"]="训练攻击" + }, + [355]={ + ["value"]="击溃敌人" + }, + [356]={ + ["value"]="传家宝召唤" + }, + [357]={ + ["value"]="通过关卡" + }, + [358]={ + ["value"]="训练生命" + }, + [359]={ + ["value"]="密室前进距离" + }, + [360]={ + ["value"]="完成秘银试炼" + }, + [361]={ + ["value"]="通过关卡" + }, + [362]={ + ["value"]="训练攻击" + }, + [363]={ + ["value"]="英雄大会段位" + }, + [364]={ + ["value"]="武器召唤" + }, + [365]={ + ["value"]="通过关卡" + }, + [366]={ + ["value"]="训练生命" + }, + [367]={ + ["value"]="击溃敌人" + }, + [368]={ + ["value"]="完成金币试炼" + }, + [369]={ + ["value"]="通过关卡" + }, + [370]={ + ["value"]="训练攻击" + }, + [371]={ + ["value"]="击溃敌人" + }, + [372]={ + ["value"]="防具召唤" + }, + [373]={ + ["value"]="通过关卡" + }, + [374]={ + ["value"]="训练生命" + }, + [375]={ + ["value"]="击溃敌人" + }, + [376]={ + ["value"]="完成宝石试炼" + }, + [377]={ + ["value"]="通过关卡" + }, + [378]={ + ["value"]="训练攻击" + }, + [379]={ + ["value"]="击溃敌人" + }, + [380]={ + ["value"]="传家宝召唤" + }, + [381]={ + ["value"]="通过关卡" + }, + [382]={ + ["value"]="训练生命" + }, + [383]={ + ["value"]="击溃敌人" + }, + [384]={ + ["value"]="完成秘银试炼" + }, + [385]={ + ["value"]="通过关卡" + }, + [386]={ + ["value"]="训练攻击" + }, + [387]={ + ["value"]="击溃敌人" + }, + [388]={ + ["value"]="武器召唤" + }, + [389]={ + ["value"]="通过关卡" + }, + [390]={ + ["value"]="训练生命" + }, + [391]={ + ["value"]="击溃敌人" + }, + [392]={ + ["value"]="完成金币试炼" + }, + [393]={ + ["value"]="通过关卡" + }, + [394]={ + ["value"]="训练攻击" + }, + [395]={ + ["value"]="击溃敌人" + }, + [396]={ + ["value"]="防具召唤" + }, + [397]={ + ["value"]="通过关卡" + }, + [398]={ + ["value"]="训练生命" + }, + [399]={ + ["value"]="击溃敌人" + }, + [400]={ + ["value"]="完成宝石试炼" + }, + [401]={ + ["value"]="通过关卡" + }, + [402]={ + ["value"]="训练攻击" + }, + [403]={ + ["value"]="击溃敌人" + }, + [404]={ + ["value"]="传家宝召唤" + }, + [405]={ + ["value"]="通过关卡" + }, + [406]={ + ["value"]="训练生命" + }, + [407]={ + ["value"]="击溃敌人" + }, + [408]={ + ["value"]="完成秘银试炼" + }, + [409]={ + ["value"]="通过关卡" + }, + [410]={ + ["value"]="训练攻击" + }, + [411]={ + ["value"]="击溃敌人" + }, + [412]={ + ["value"]="武器召唤" + }, + [413]={ + ["value"]="通过关卡" + }, + [414]={ + ["value"]="训练生命" + }, + [415]={ + ["value"]="击溃敌人" + }, + [416]={ + ["value"]="完成金币试炼" + }, + [417]={ + ["value"]="通过关卡" + }, + [418]={ + ["value"]="训练攻击" + }, + [419]={ + ["value"]="击溃敌人" + }, + [420]={ + ["value"]="防具召唤" + }, + [421]={ + ["value"]="通过关卡" + }, + [422]={ + ["value"]="训练生命" + }, + [423]={ + ["value"]="击溃敌人" + }, + [424]={ + ["value"]="完成宝石试炼" + }, + [425]={ + ["value"]="通过关卡" + }, + [426]={ + ["value"]="训练攻击" + }, + [427]={ + ["value"]="击溃敌人" + }, + [428]={ + ["value"]="传家宝召唤" + }, + [429]={ + ["value"]="通过关卡" + }, + [430]={ + ["value"]="训练生命" + }, + [431]={ + ["value"]="击溃敌人" + }, + [432]={ + ["value"]="完成秘银试炼" + }, + [433]={ + ["value"]="通过关卡" + }, + [434]={ + ["value"]="训练攻击" + }, + [435]={ + ["value"]="击溃敌人" + }, + [436]={ + ["value"]="武器召唤" + }, + [437]={ + ["value"]="通过关卡" + }, + [438]={ + ["value"]="训练生命" + }, + [439]={ + ["value"]="击溃敌人" + }, + [440]={ + ["value"]="完成金币试炼" + }, + [441]={ + ["value"]="通过关卡" + }, + [442]={ + ["value"]="训练攻击" + }, + [443]={ + ["value"]="击溃敌人" + }, + [444]={ + ["value"]="防具召唤" + }, + [445]={ + ["value"]="通过关卡" + }, + [446]={ + ["value"]="训练生命" + }, + [447]={ + ["value"]="击溃敌人" + }, + [448]={ + ["value"]="完成宝石试炼" + }, + [449]={ + ["value"]="通过关卡" + }, + [450]={ + ["value"]="训练攻击" + }, + [451]={ + ["value"]="击溃敌人" + }, + [452]={ + ["value"]="传家宝召唤" + }, + [453]={ + ["value"]="通过关卡" + }, + [454]={ + ["value"]="训练生命" + }, + [455]={ + ["value"]="击溃敌人" + }, + [456]={ + ["value"]="完成秘银试炼" + }, + [457]={ + ["value"]="通过关卡" + }, + [458]={ + ["value"]="训练攻击" + }, + [459]={ + ["value"]="击溃敌人" + }, + [460]={ + ["value"]="武器召唤" + }, + [461]={ + ["value"]="通过关卡" + }, + [462]={ + ["value"]="训练生命" + }, + [463]={ + ["value"]="击溃敌人" + }, + [464]={ + ["value"]="完成金币试炼" + }, + [465]={ + ["value"]="通过关卡" + }, + [466]={ + ["value"]="训练攻击" + }, + [467]={ + ["value"]="击溃敌人" + }, + [468]={ + ["value"]="防具召唤" + }, + [469]={ + ["value"]="通过关卡" + }, + [470]={ + ["value"]="训练生命" + }, + [471]={ + ["value"]="击溃敌人" + }, + [472]={ + ["value"]="完成宝石试炼" + }, + [473]={ + ["value"]="通过关卡" + }, + [474]={ + ["value"]="训练攻击" + }, + [475]={ + ["value"]="击溃敌人" + }, + [476]={ + ["value"]="传家宝召唤" + }, + [477]={ + ["value"]="通过关卡" + }, + [478]={ + ["value"]="训练生命" + }, + [479]={ + ["value"]="击溃敌人" + }, + [480]={ + ["value"]="完成秘银试炼" + }, + [481]={ + ["value"]="通过关卡" + }, + [482]={ + ["value"]="训练攻击" + }, + [483]={ + ["value"]="击溃敌人" + }, + [484]={ + ["value"]="武器召唤" + }, + [485]={ + ["value"]="通过关卡" + }, + [486]={ + ["value"]="训练生命" + }, + [487]={ + ["value"]="击溃敌人" + }, + [488]={ + ["value"]="完成金币试炼" + }, + [489]={ + ["value"]="通过关卡" + }, + [490]={ + ["value"]="训练攻击" + }, + [491]={ + ["value"]="击溃敌人" + }, + [492]={ + ["value"]="防具召唤" + }, + [493]={ + ["value"]="通过关卡" + }, + [494]={ + ["value"]="训练生命" + }, + [495]={ + ["value"]="击溃敌人" + }, + [496]={ + ["value"]="完成宝石试炼" + }, + [497]={ + ["value"]="通过关卡" + }, + [498]={ + ["value"]="训练攻击" + }, + [499]={ + ["value"]="击溃敌人" + }, + [500]={ + ["value"]="传家宝召唤" + }, + [501]={ + ["value"]="通过关卡" + }, + [502]={ + ["value"]="训练生命" + }, + [503]={ + ["value"]="击溃敌人" + }, + [504]={ + ["value"]="完成秘银试炼" + }, + [505]={ + ["value"]="通过关卡" + }, + [506]={ + ["value"]="训练攻击" + }, + [507]={ + ["value"]="击溃敌人" + }, + [508]={ + ["value"]="武器召唤" + }, + [509]={ + ["value"]="通过关卡" + }, + [510]={ + ["value"]="训练生命" + }, + [511]={ + ["value"]="击溃敌人" + }, + [512]={ + ["value"]="完成金币试炼" + }, + [513]={ + ["value"]="通过关卡" + }, + [514]={ + ["value"]="训练攻击" + }, + [515]={ + ["value"]="击溃敌人" + }, + [516]={ + ["value"]="防具召唤" + }, + [517]={ + ["value"]="通过关卡" + }, + [518]={ + ["value"]="训练生命" + }, + [519]={ + ["value"]="击溃敌人" + }, + [520]={ + ["value"]="完成宝石试炼" + }, + [521]={ + ["value"]="通过关卡" + }, + [522]={ + ["value"]="训练攻击" + }, + [523]={ + ["value"]="英雄大会段位" + }, + [524]={ + ["value"]="传家宝召唤" + }, + [525]={ + ["value"]="通过关卡" + }, + [526]={ + ["value"]="训练生命" + }, + [527]={ + ["value"]="击溃敌人" + }, + [528]={ + ["value"]="完成秘银试炼" + }, + [529]={ + ["value"]="通过关卡" + }, + [530]={ + ["value"]="训练攻击" + }, + [531]={ + ["value"]="击溃敌人" + }, + [532]={ + ["value"]="武器召唤" + }, + [533]={ + ["value"]="通过关卡" + }, + [534]={ + ["value"]="训练生命" + }, + [535]={ + ["value"]="击溃敌人" + }, + [536]={ + ["value"]="完成金币试炼" + }, + [537]={ + ["value"]="通过关卡" + }, + [538]={ + ["value"]="训练攻击" + }, + [539]={ + ["value"]="击溃敌人" + }, + [540]={ + ["value"]="防具召唤" + }, + [541]={ + ["value"]="通过关卡" + }, + [542]={ + ["value"]="训练生命" + }, + [543]={ + ["value"]="击溃敌人" + }, + [544]={ + ["value"]="完成宝石试炼" + }, + [545]={ + ["value"]="通过关卡" + }, + [546]={ + ["value"]="训练攻击" + }, + [547]={ + ["value"]="击溃敌人" + }, + [548]={ + ["value"]="传家宝召唤" + }, + [549]={ + ["value"]="通过关卡" + }, + [550]={ + ["value"]="训练生命" + }, + [551]={ + ["value"]="击溃敌人" + }, + [552]={ + ["value"]="完成秘银试炼" + }, + [553]={ + ["value"]="通过关卡" + }, + [554]={ + ["value"]="训练攻击" + }, + [555]={ + ["value"]="击溃敌人" + }, + [556]={ + ["value"]="武器召唤" + }, + [557]={ + ["value"]="通过关卡" + }, + [558]={ + ["value"]="训练生命" + }, + [559]={ + ["value"]="击溃敌人" + }, + [560]={ + ["value"]="完成金币试炼" + }, + [561]={ + ["value"]="通过关卡" + }, + [562]={ + ["value"]="训练攻击" + }, + [563]={ + ["value"]="击溃敌人" + }, + [564]={ + ["value"]="防具召唤" + }, + [565]={ + ["value"]="通过关卡" + }, + [566]={ + ["value"]="训练生命" + }, + [567]={ + ["value"]="击溃敌人" + }, + [568]={ + ["value"]="完成宝石试炼" + }, + [569]={ + ["value"]="通过关卡" + }, + [570]={ + ["value"]="训练攻击" + }, + [571]={ + ["value"]="击溃敌人" + }, + [572]={ + ["value"]="传家宝召唤" + }, + [573]={ + ["value"]="通过关卡" + }, + [574]={ + ["value"]="训练生命" + }, + [575]={ + ["value"]="击溃敌人" + }, + [576]={ + ["value"]="完成秘银试炼" + }, + [577]={ + ["value"]="通过关卡" + }, + [578]={ + ["value"]="训练攻击" + }, + [579]={ + ["value"]="英雄大会段位" + }, + [580]={ + ["value"]="武器召唤" + }, + [581]={ + ["value"]="通过关卡" + }, + [582]={ + ["value"]="训练生命" + }, + [583]={ + ["value"]="击溃敌人" + }, + [584]={ + ["value"]="完成金币试炼" + }, + [585]={ + ["value"]="通过关卡" + }, + [586]={ + ["value"]="训练攻击" + }, + [587]={ + ["value"]="击溃敌人" + }, + [588]={ + ["value"]="防具召唤" + }, + [589]={ + ["value"]="通过关卡" + }, + [590]={ + ["value"]="训练生命" + }, + [591]={ + ["value"]="击溃敌人" + }, + [592]={ + ["value"]="完成宝石试炼" + }, + [593]={ + ["value"]="通过关卡" + }, + [594]={ + ["value"]="训练攻击" + }, + [595]={ + ["value"]="击溃敌人" + }, + [596]={ + ["value"]="传家宝召唤" + }, + [597]={ + ["value"]="通过关卡" + }, + [598]={ + ["value"]="训练生命" + }, + [599]={ + ["value"]="击溃敌人" + }, + [600]={ + ["value"]="完成秘银试炼" + }, + [601]={ + ["value"]="通过关卡" + }, + [602]={ + ["value"]="训练攻击" + }, + [603]={ + ["value"]="击溃敌人" + }, + [604]={ + ["value"]="武器召唤" + }, + [605]={ + ["value"]="通过关卡" + }, + [606]={ + ["value"]="训练生命" + }, + [607]={ + ["value"]="击溃敌人" + }, + [608]={ + ["value"]="完成金币试炼" + }, + [609]={ + ["value"]="通过关卡" + }, + [610]={ + ["value"]="训练攻击" + }, + [611]={ + ["value"]="击溃敌人" + }, + [612]={ + ["value"]="防具召唤" + }, + [613]={ + ["value"]="通过关卡" + }, + [614]={ + ["value"]="训练生命" + }, + [615]={ + ["value"]="击溃敌人" + }, + [616]={ + ["value"]="完成宝石试炼" + }, + [617]={ + ["value"]="通过关卡" + }, + [618]={ + ["value"]="训练攻击" + }, + [619]={ + ["value"]="击溃敌人" + }, + [620]={ + ["value"]="传家宝召唤" + }, + [621]={ + ["value"]="通过关卡" + }, + [622]={ + ["value"]="训练生命" + }, + [623]={ + ["value"]="击溃敌人" + }, + [624]={ + ["value"]="完成秘银试炼" + }, + [625]={ + ["value"]="通过关卡" + }, + [626]={ + ["value"]="训练攻击" + }, + [627]={ + ["value"]="击溃敌人" + }, + [628]={ + ["value"]="武器召唤" + }, + [629]={ + ["value"]="通过关卡" + }, + [630]={ + ["value"]="训练生命" + }, + [631]={ + ["value"]="击溃敌人" + }, + [632]={ + ["value"]="完成金币试炼" + }, + [633]={ + ["value"]="通过关卡" + }, + [634]={ + ["value"]="训练攻击" + }, + [635]={ + ["value"]="击溃敌人" + }, + [636]={ + ["value"]="防具召唤" + }, + [637]={ + ["value"]="通过关卡" + }, + [638]={ + ["value"]="训练生命" + }, + [639]={ + ["value"]="击溃敌人" + }, + [640]={ + ["value"]="完成宝石试炼" + }, + [641]={ + ["value"]="通过关卡" + }, + [642]={ + ["value"]="训练攻击" + }, + [643]={ + ["value"]="击溃敌人" + }, + [644]={ + ["value"]="传家宝召唤" + }, + [645]={ + ["value"]="通过关卡" + }, + [646]={ + ["value"]="训练生命" + }, + [647]={ + ["value"]="击溃敌人" + }, + [648]={ + ["value"]="完成秘银试炼" + }, + [649]={ + ["value"]="通过关卡" + }, + [650]={ + ["value"]="训练攻击" + }, + [651]={ + ["value"]="击溃敌人" + }, + [652]={ + ["value"]="武器召唤" + }, + [653]={ + ["value"]="通过关卡" + }, + [654]={ + ["value"]="训练生命" + }, + [655]={ + ["value"]="击溃敌人" + }, + [656]={ + ["value"]="完成金币试炼" + }, + [657]={ + ["value"]="通过关卡" + }, + [658]={ + ["value"]="训练攻击" + }, + [659]={ + ["value"]="击溃敌人" + }, + [660]={ + ["value"]="防具召唤" + }, + [661]={ + ["value"]="通过关卡" + }, + [662]={ + ["value"]="训练生命" + }, + [663]={ + ["value"]="击溃敌人" + }, + [664]={ + ["value"]="完成宝石试炼" + }, + [665]={ + ["value"]="通过关卡" + }, + [666]={ + ["value"]="训练攻击" + }, + [667]={ + ["value"]="击溃敌人" + }, + [668]={ + ["value"]="传家宝召唤" + }, + [669]={ + ["value"]="通过关卡" + }, + [670]={ + ["value"]="训练生命" + }, + [671]={ + ["value"]="击溃敌人" + }, + [672]={ + ["value"]="完成秘银试炼" + }, + [673]={ + ["value"]="通过关卡" + }, + [674]={ + ["value"]="训练攻击" + }, + [675]={ + ["value"]="击溃敌人" + }, + [676]={ + ["value"]="武器召唤" + }, + [677]={ + ["value"]="通过关卡" + }, + [678]={ + ["value"]="训练生命" + }, + [679]={ + ["value"]="击溃敌人" + }, + [680]={ + ["value"]="完成金币试炼" + }, + [681]={ + ["value"]="通过关卡" + }, + [682]={ + ["value"]="训练攻击" + }, + [683]={ + ["value"]="击溃敌人" + }, + [684]={ + ["value"]="防具召唤" + }, + [685]={ + ["value"]="通过关卡" + }, + [686]={ + ["value"]="训练生命" + }, + [687]={ + ["value"]="击溃敌人" + }, + [688]={ + ["value"]="完成宝石试炼" + }, + [689]={ + ["value"]="通过关卡" + }, + [690]={ + ["value"]="训练攻击" + }, + [691]={ + ["value"]="击溃敌人" + }, + [692]={ + ["value"]="传家宝召唤" + }, + [693]={ + ["value"]="通过关卡" + }, + [694]={ + ["value"]="训练生命" + }, + [695]={ + ["value"]="击溃敌人" + }, + [696]={ + ["value"]="完成秘银试炼" + }, + [697]={ + ["value"]="通过关卡" + }, + [698]={ + ["value"]="训练攻击" + }, + [699]={ + ["value"]="击溃敌人" + }, + [700]={ + ["value"]="武器召唤" + }, + [701]={ + ["value"]="通过关卡" + }, + [702]={ + ["value"]="训练生命" + }, + [703]={ + ["value"]="击溃敌人" + }, + [704]={ + ["value"]="完成金币试炼" + }, + [705]={ + ["value"]="通过关卡" + }, + [706]={ + ["value"]="训练攻击" + }, + [707]={ + ["value"]="击溃敌人" + }, + [708]={ + ["value"]="防具召唤" + }, + [709]={ + ["value"]="通过关卡" + }, + [710]={ + ["value"]="训练生命" + }, + [711]={ + ["value"]="击溃敌人" + }, + [712]={ + ["value"]="完成宝石试炼" + }, + [713]={ + ["value"]="通过关卡" + }, + [714]={ + ["value"]="训练攻击" + }, + [715]={ + ["value"]="击溃敌人" + }, + [716]={ + ["value"]="传家宝召唤" + }, + [717]={ + ["value"]="通过关卡" + }, + [718]={ + ["value"]="训练生命" + }, + [719]={ + ["value"]="击溃敌人" + }, + [720]={ + ["value"]="完成秘银试炼" + }, + [721]={ + ["value"]="通过关卡" + }, + [722]={ + ["value"]="训练攻击" + }, + [723]={ + ["value"]="击溃敌人" + }, + [724]={ + ["value"]="武器召唤" + }, + [725]={ + ["value"]="通过关卡" + }, + [726]={ + ["value"]="训练生命" + }, + [727]={ + ["value"]="击溃敌人" + }, + [728]={ + ["value"]="完成金币试炼" + }, + [729]={ + ["value"]="通过关卡" + }, + [730]={ + ["value"]="训练攻击" + }, + [731]={ + ["value"]="击溃敌人" + }, + [732]={ + ["value"]="防具召唤" + }, + [733]={ + ["value"]="通过关卡" + }, + [734]={ + ["value"]="训练生命" + }, + [735]={ + ["value"]="击溃敌人" + }, + [736]={ + ["value"]="完成宝石试炼" + }, + [737]={ + ["value"]="通过关卡" + }, + [738]={ + ["value"]="训练攻击" + }, + [739]={ + ["value"]="击溃敌人" + }, + [740]={ + ["value"]="传家宝召唤" + }, + [741]={ + ["value"]="通过关卡" + }, + [742]={ + ["value"]="训练生命" + }, + [743]={ + ["value"]="击溃敌人" + }, + [744]={ + ["value"]="完成秘银试炼" + }, + [745]={ + ["value"]="通过关卡" + }, + [746]={ + ["value"]="训练攻击" + }, + [747]={ + ["value"]="击溃敌人" + }, + [748]={ + ["value"]="武器召唤" + }, + [749]={ + ["value"]="通过关卡" + }, + [750]={ + ["value"]="训练生命" + }, + [751]={ + ["value"]="击溃敌人" + }, + [752]={ + ["value"]="完成金币试炼" + }, + [753]={ + ["value"]="通过关卡" + }, + [754]={ + ["value"]="训练攻击" + }, + [755]={ + ["value"]="击溃敌人" + }, + [756]={ + ["value"]="防具召唤" + }, + [757]={ + ["value"]="通过关卡" + }, + [758]={ + ["value"]="训练生命" + }, + [759]={ + ["value"]="击溃敌人" + }, + [760]={ + ["value"]="完成宝石试炼" + }, + [761]={ + ["value"]="通过关卡" + }, + [762]={ + ["value"]="训练攻击" + }, + [763]={ + ["value"]="击溃敌人" + }, + [764]={ + ["value"]="传家宝召唤" + }, + [765]={ + ["value"]="通过关卡" + }, + [766]={ + ["value"]="训练生命" + }, + [767]={ + ["value"]="击溃敌人" + }, + [768]={ + ["value"]="完成秘银试炼" + }, + [769]={ + ["value"]="通过关卡" + }, + [770]={ + ["value"]="训练攻击" + }, + [771]={ + ["value"]="击溃敌人" + }, + [772]={ + ["value"]="武器召唤" + }, + [773]={ + ["value"]="通过关卡" + }, + [774]={ + ["value"]="训练生命" + }, + [775]={ + ["value"]="击溃敌人" + }, + [776]={ + ["value"]="完成金币试炼" + }, + [777]={ + ["value"]="通过关卡" + }, + [778]={ + ["value"]="训练攻击" + }, + [779]={ + ["value"]="击溃敌人" + }, + [780]={ + ["value"]="防具召唤" + }, + [781]={ + ["value"]="通过关卡" + }, + [782]={ + ["value"]="训练生命" + }, + [783]={ + ["value"]="击溃敌人" + }, + [784]={ + ["value"]="完成宝石试炼" + }, + [785]={ + ["value"]="通过关卡" + }, + [786]={ + ["value"]="训练攻击" + }, + [787]={ + ["value"]="击溃敌人" + }, + [788]={ + ["value"]="传家宝召唤" + }, + [789]={ + ["value"]="通过关卡" + }, + [790]={ + ["value"]="训练生命" + }, + [791]={ + ["value"]="击溃敌人" + }, + [792]={ + ["value"]="完成秘银试炼" + }, + [793]={ + ["value"]="通过关卡" + }, + [794]={ + ["value"]="训练攻击" + }, + [795]={ + ["value"]="击溃敌人" + }, + [796]={ + ["value"]="武器召唤" + }, + [797]={ + ["value"]="通过关卡" + }, + [798]={ + ["value"]="训练生命" + }, + [799]={ + ["value"]="击溃敌人" + }, + [800]={ + ["value"]="完成金币试炼" + }, + [801]={ + ["value"]="通过关卡" + }, + [802]={ + ["value"]="训练攻击" + }, + [803]={ + ["value"]="击溃敌人" + }, + [804]={ + ["value"]="防具召唤" + }, + [805]={ + ["value"]="通过关卡" + }, + [806]={ + ["value"]="训练生命" + }, + [807]={ + ["value"]="击溃敌人" + }, + [808]={ + ["value"]="完成宝石试炼" + }, + [809]={ + ["value"]="通过关卡" + }, + [810]={ + ["value"]="训练攻击" + }, + [811]={ + ["value"]="击溃敌人" + }, + [812]={ + ["value"]="传家宝召唤" + }, + [813]={ + ["value"]="通过关卡" + }, + [814]={ + ["value"]="训练生命" + }, + [815]={ + ["value"]="击溃敌人" + }, + [816]={ + ["value"]="完成秘银试炼" + }, + [817]={ + ["value"]="通过关卡" + }, + [818]={ + ["value"]="训练攻击" + }, + [819]={ + ["value"]="击溃敌人" + }, + [820]={ + ["value"]="武器召唤" + }, + [821]={ + ["value"]="通过关卡" + }, + [822]={ + ["value"]="训练生命" + }, + [823]={ + ["value"]="击溃敌人" + }, + [824]={ + ["value"]="完成金币试炼" + }, + [825]={ + ["value"]="通过关卡" + }, + [826]={ + ["value"]="训练攻击" + }, + [827]={ + ["value"]="击溃敌人" + }, + [828]={ + ["value"]="防具召唤" + }, + [829]={ + ["value"]="通过关卡" + }, + [830]={ + ["value"]="训练生命" + }, + [831]={ + ["value"]="击溃敌人" + }, + [832]={ + ["value"]="完成宝石试炼" + }, + [833]={ + ["value"]="通过关卡" + }, + [834]={ + ["value"]="训练攻击" + }, + [835]={ + ["value"]="击溃敌人" + }, + [836]={ + ["value"]="传家宝召唤" + }, + [837]={ + ["value"]="通过关卡" + }, + [838]={ + ["value"]="训练生命" + }, + [839]={ + ["value"]="击溃敌人" + }, + [840]={ + ["value"]="完成秘银试炼" + }, + [841]={ + ["value"]="通过关卡" + }, + [842]={ + ["value"]="训练攻击" + }, + [843]={ + ["value"]="击溃敌人" + }, + [844]={ + ["value"]="武器召唤" + }, + [845]={ + ["value"]="通过关卡" + }, + [846]={ + ["value"]="训练生命" + }, + [847]={ + ["value"]="击溃敌人" + }, + [848]={ + ["value"]="完成金币试炼" + }, + [849]={ + ["value"]="通过关卡" + }, + [850]={ + ["value"]="训练攻击" + }, + [851]={ + ["value"]="击溃敌人" + }, + [852]={ + ["value"]="防具召唤" + }, + [853]={ + ["value"]="通过关卡" + }, + [854]={ + ["value"]="训练生命" + }, + [855]={ + ["value"]="击溃敌人" + }, + [856]={ + ["value"]="完成宝石试炼" + }, + [857]={ + ["value"]="通过关卡" + }, + [858]={ + ["value"]="训练攻击" + }, + [859]={ + ["value"]="击溃敌人" + }, + [860]={ + ["value"]="传家宝召唤" + }, + [861]={ + ["value"]="通过关卡" + }, + [862]={ + ["value"]="训练生命" + }, + [863]={ + ["value"]="击溃敌人" + }, + [864]={ + ["value"]="完成秘银试炼" + }, + [865]={ + ["value"]="通过关卡" + }, + [866]={ + ["value"]="训练攻击" + }, + [867]={ + ["value"]="击溃敌人" + }, + [868]={ + ["value"]="武器召唤" + }, + [869]={ + ["value"]="通过关卡" + }, + [870]={ + ["value"]="训练生命" + }, + [871]={ + ["value"]="击溃敌人" + }, + [872]={ + ["value"]="完成金币试炼" + }, + [873]={ + ["value"]="通过关卡" + }, + [874]={ + ["value"]="训练攻击" + }, + [875]={ + ["value"]="击溃敌人" + }, + [876]={ + ["value"]="防具召唤" + }, + [877]={ + ["value"]="通过关卡" + }, + [878]={ + ["value"]="训练生命" + }, + [879]={ + ["value"]="击溃敌人" + }, + [880]={ + ["value"]="完成宝石试炼" + }, + [881]={ + ["value"]="通过关卡" + }, + [882]={ + ["value"]="训练攻击" + }, + [883]={ + ["value"]="击溃敌人" + }, + [884]={ + ["value"]="传家宝召唤" + }, + [885]={ + ["value"]="通过关卡" + }, + [886]={ + ["value"]="训练生命" + }, + [887]={ + ["value"]="击溃敌人" + }, + [888]={ + ["value"]="完成秘银试炼" + }, + [889]={ + ["value"]="通过关卡" + }, + [890]={ + ["value"]="训练攻击" + }, + [891]={ + ["value"]="击溃敌人" + }, + [892]={ + ["value"]="武器召唤" + }, + [893]={ + ["value"]="通过关卡" + }, + [894]={ + ["value"]="训练生命" + }, + [895]={ + ["value"]="击溃敌人" + }, + [896]={ + ["value"]="完成金币试炼" + }, + [897]={ + ["value"]="通过关卡" + }, + [898]={ + ["value"]="训练攻击" + }, + [899]={ + ["value"]="击溃敌人" + }, + [900]={ + ["value"]="防具召唤" + }, + [901]={ + ["value"]="通过关卡" + }, + [902]={ + ["value"]="训练生命" + }, + [903]={ + ["value"]="击溃敌人" + }, + [904]={ + ["value"]="完成宝石试炼" + }, + [905]={ + ["value"]="通过关卡" + }, + [906]={ + ["value"]="训练攻击" + }, + [907]={ + ["value"]="击溃敌人" + }, + [908]={ + ["value"]="传家宝召唤" + }, + [909]={ + ["value"]="通过关卡" + }, + [910]={ + ["value"]="训练生命" + }, + [911]={ + ["value"]="击溃敌人" + }, + [912]={ + ["value"]="完成秘银试炼" + }, + [913]={ + ["value"]="通过关卡" + }, + [914]={ + ["value"]="训练攻击" + }, + [915]={ + ["value"]="击溃敌人" + }, + [916]={ + ["value"]="武器召唤" + }, + [917]={ + ["value"]="通过关卡" + }, + [918]={ + ["value"]="训练生命" + }, + [919]={ + ["value"]="击溃敌人" + }, + [920]={ + ["value"]="完成金币试炼" + }, + [921]={ + ["value"]="通过关卡" + }, + [922]={ + ["value"]="训练攻击" + }, + [923]={ + ["value"]="击溃敌人" + }, + [924]={ + ["value"]="防具召唤" + }, + [925]={ + ["value"]="通过关卡" + }, + [926]={ + ["value"]="训练生命" + }, + [927]={ + ["value"]="击溃敌人" + }, + [928]={ + ["value"]="完成宝石试炼" + }, + [929]={ + ["value"]="通过关卡" + }, + [930]={ + ["value"]="训练攻击" + }, + [931]={ + ["value"]="击溃敌人" + }, + [932]={ + ["value"]="传家宝召唤" + }, + [933]={ + ["value"]="通过关卡" + }, + [934]={ + ["value"]="训练生命" + }, + [935]={ + ["value"]="击溃敌人" + }, + [936]={ + ["value"]="完成秘银试炼" + }, + [937]={ + ["value"]="通过关卡" + }, + [938]={ + ["value"]="训练攻击" + }, + [939]={ + ["value"]="击溃敌人" + }, + [940]={ + ["value"]="武器召唤" + }, + [941]={ + ["value"]="通过关卡" + }, + [942]={ + ["value"]="训练生命" + }, + [943]={ + ["value"]="击溃敌人" + }, + [944]={ + ["value"]="完成金币试炼" + }, + [945]={ + ["value"]="通过关卡" + }, + [946]={ + ["value"]="训练攻击" + }, + [947]={ + ["value"]="击溃敌人" + }, + [948]={ + ["value"]="防具召唤" + }, + [949]={ + ["value"]="通过关卡" + }, + [950]={ + ["value"]="训练生命" + }, + [951]={ + ["value"]="击溃敌人" + }, + [952]={ + ["value"]="完成宝石试炼" + }, + [953]={ + ["value"]="通过关卡" + }, + [954]={ + ["value"]="训练攻击" + }, + [955]={ + ["value"]="击溃敌人" + }, + [956]={ + ["value"]="传家宝召唤" + }, + [957]={ + ["value"]="通过关卡" + }, + [958]={ + ["value"]="训练生命" + }, + [959]={ + ["value"]="击溃敌人" + }, + [960]={ + ["value"]="完成秘银试炼" + }, + [961]={ + ["value"]="通过关卡" + }, + [962]={ + ["value"]="训练攻击" + }, + [963]={ + ["value"]="击溃敌人" + }, + [964]={ + ["value"]="武器召唤" + }, + [965]={ + ["value"]="通过关卡" + }, + [966]={ + ["value"]="训练生命" + }, + [967]={ + ["value"]="击溃敌人" + }, + [968]={ + ["value"]="完成金币试炼" + }, + [969]={ + ["value"]="通过关卡" + }, + [970]={ + ["value"]="训练攻击" + }, + [971]={ + ["value"]="击溃敌人" + }, + [972]={ + ["value"]="防具召唤" + }, + [973]={ + ["value"]="通过关卡" + }, + [974]={ + ["value"]="训练生命" + }, + [975]={ + ["value"]="击溃敌人" + }, + [976]={ + ["value"]="完成宝石试炼" + }, + [977]={ + ["value"]="通过关卡" + }, + [978]={ + ["value"]="训练攻击" + }, + [979]={ + ["value"]="击溃敌人" + }, + [980]={ + ["value"]="传家宝召唤" + }, + [981]={ + ["value"]="通过关卡" + }, + [982]={ + ["value"]="训练生命" + }, + [983]={ + ["value"]="击溃敌人" + }, + [984]={ + ["value"]="完成秘银试炼" + }, + [985]={ + ["value"]="通过关卡" + }, + [986]={ + ["value"]="训练攻击" + }, + [987]={ + ["value"]="击溃敌人" + }, + [988]={ + ["value"]="武器召唤" + }, + [989]={ + ["value"]="通过关卡" + }, + [990]={ + ["value"]="训练生命" + }, + [991]={ + ["value"]="击溃敌人" + }, + [992]={ + ["value"]="完成金币试炼" + }, + [993]={ + ["value"]="通过关卡" + }, + [994]={ + ["value"]="训练攻击" + }, + [995]={ + ["value"]="击溃敌人" + }, + [996]={ + ["value"]="防具召唤" + }, + [997]={ + ["value"]="通过关卡" + }, + [998]={ + ["value"]="训练生命" + }, + [999]={ + ["value"]="击溃敌人" + }, + [1000]={ + ["value"]="完成宝石试炼" + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/cn/tutorialtask.lua.meta b/lua/app/config/strings/cn/tutorialtask.lua.meta new file mode 100644 index 00000000..360df0e8 --- /dev/null +++ b/lua/app/config/strings/cn/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8310864827c6b0d458bf6b34f2ff5cbf +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de.meta b/lua/app/config/strings/de.meta new file mode 100644 index 00000000..1243ff5b --- /dev/null +++ b/lua/app/config/strings/de.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 40a4e6402f26a0446ba83409710391c6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/de/act_battle_pass_task.lua b/lua/app/config/strings/de/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/de/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/act_battle_pass_task.lua.meta b/lua/app/config/strings/de/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..4a0d5b86 --- /dev/null +++ b/lua/app/config/strings/de/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9947d2b8bc4e67f4494353c80ba39b6b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/act_fund.lua b/lua/app/config/strings/de/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/de/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/act_fund.lua.meta b/lua/app/config/strings/de/act_fund.lua.meta new file mode 100644 index 00000000..ba20d65c --- /dev/null +++ b/lua/app/config/strings/de/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dbdaa7c88e11501488c42479f89775f0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/act_sevenday_quest.lua b/lua/app/config/strings/de/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/de/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/act_sevenday_quest.lua.meta b/lua/app/config/strings/de/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..6556de89 --- /dev/null +++ b/lua/app/config/strings/de/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 91c9b6743d7a7364e8d9e9844d78a03c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/arena.lua b/lua/app/config/strings/de/arena.lua new file mode 100644 index 00000000..f6b81b9f --- /dev/null +++ b/lua/app/config/strings/de/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/arena.lua.meta b/lua/app/config/strings/de/arena.lua.meta new file mode 100644 index 00000000..34f755a1 --- /dev/null +++ b/lua/app/config/strings/de/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9c09a9deac434a146af4ec1e62d8149e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/attr.lua b/lua/app/config/strings/de/attr.lua new file mode 100644 index 00000000..b72c0660 --- /dev/null +++ b/lua/app/config/strings/de/attr.lua @@ -0,0 +1,105 @@ +local attr = { + [1]={ + ["name"]="Lebenspunkte" + }, + [2]={ + ["name"]="Angriffskraft" + }, + [3]={ + ["name"]="Kritische Trefferrate" + }, + [4]={ + ["name"]="Kritischen Schaden" + }, + [5]={ + ["name"]="Schadensreduzierung" + }, + [6]={ + ["name"]="Angriffskraft" + }, + [7]={ + ["name"]="Angriffskraft" + }, + [8]={ + ["name"]="Angriffskraft" + }, + [9]={ + ["name"]="Angriffskraft" + }, + [10]={ + ["name"]="Angriffskraft" + }, + [11]={ + ["name"]="Angriffskraft" + }, + [12]={ + ["name"]="Angriffskraft" + }, + [13]={ + ["name"]="Angriffskraft" + }, + [14]={ + ["name"]="Angriffskraft" + }, + [15]={ + ["name"]="Lebenspunkte" + }, + [16]={ + ["name"]="Lebenspunkte" + }, + [17]={ + ["name"]="Lebenspunkte" + }, + [18]={ + ["name"]="Lebenspunkte" + }, + [19]={ + ["name"]="Lebenspunkte" + }, + [20]={ + ["name"]="Lebenspunkte" + }, + [21]={ + ["name"]="Lebenspunkte" + }, + [22]={ + ["name"]="Schaden" + }, + [23]={ + + }, + [24]={ + ["name"]="Gewinn der Goldmünzen" + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + } +} +local config = { +data=attr,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/attr.lua.meta b/lua/app/config/strings/de/attr.lua.meta new file mode 100644 index 00000000..b31ac9f2 --- /dev/null +++ b/lua/app/config/strings/de/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e42212de78ed3614ba4a037f3d0c25c1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/collection.lua b/lua/app/config/strings/de/collection.lua new file mode 100644 index 00000000..06cecc89 --- /dev/null +++ b/lua/app/config/strings/de/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/collection.lua.meta b/lua/app/config/strings/de/collection.lua.meta new file mode 100644 index 00000000..3a643b4f --- /dev/null +++ b/lua/app/config/strings/de/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8c6b1ab954e22764985df7032a983533 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/equip.lua b/lua/app/config/strings/de/equip.lua new file mode 100644 index 00000000..8d0d286d --- /dev/null +++ b/lua/app/config/strings/de/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10007]={ + + }, + [10008]={ + + }, + [10009]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10107]={ + + }, + [10108]={ + + }, + [10109]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10203]={ + + }, + [10204]={ + + }, + [10205]={ + + }, + [10206]={ + + }, + [10207]={ + + }, + [10208]={ + + }, + [10209]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [10303]={ + + }, + [10304]={ + + }, + [10305]={ + + }, + [10306]={ + + }, + [10307]={ + + }, + [10308]={ + + }, + [10309]={ + + }, + [20001]={ + + }, + [20002]={ + + }, + [20003]={ + + }, + [20004]={ + + }, + [20005]={ + + }, + [20006]={ + + }, + [20007]={ + + }, + [20101]={ + + }, + [20102]={ + + }, + [20103]={ + + }, + [20104]={ + + }, + [20105]={ + + }, + [20106]={ + + }, + [20107]={ + + }, + [20201]={ + + }, + [20202]={ + + }, + [20203]={ + + }, + [20204]={ + + }, + [20205]={ + + }, + [20206]={ + + }, + [20207]={ + + }, + [20301]={ + + }, + [20302]={ + + }, + [20303]={ + + }, + [20304]={ + + }, + [20305]={ + + }, + [20306]={ + + }, + [20307]={ + + }, + [30001]={ + + }, + [30002]={ + + }, + [30003]={ + + }, + [30004]={ + + }, + [30005]={ + + }, + [30006]={ + + }, + [30007]={ + + }, + [30101]={ + + }, + [30102]={ + + }, + [30103]={ + + }, + [30104]={ + + }, + [30105]={ + + }, + [30106]={ + + }, + [30107]={ + + }, + [30201]={ + + }, + [30202]={ + + }, + [30203]={ + + }, + [30204]={ + + }, + [30205]={ + + }, + [30206]={ + + }, + [30207]={ + + }, + [30301]={ + + }, + [30302]={ + + }, + [30303]={ + + }, + [30304]={ + + }, + [30305]={ + + }, + [30306]={ + + }, + [30307]={ + + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/equip.lua.meta b/lua/app/config/strings/de/equip.lua.meta new file mode 100644 index 00000000..69171488 --- /dev/null +++ b/lua/app/config/strings/de/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4e2f0bb2f3e7ead45bcd08bac5d85073 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/global.lua b/lua/app/config/strings/de/global.lua new file mode 100644 index 00000000..ae51a10a --- /dev/null +++ b/lua/app/config/strings/de/global.lua @@ -0,0 +1,160 @@ +local localization_global = +{ + ["TASK_DAILY_TITLE"] = "Tägliche Aufgaben", + ["COUNTDOWN"] = "{0}:{1}:{2}", + ["EVENT_TITLE"] = "Event", + ["ACT_SEVENDAY_BTN"] = "eingeben", + ["ACT_SEVENDAY_TASK"] = "Anzahl erledigter Aufgaben:", + ["BTN_CLAIM"] = "Abholbar", + ["BTN_DONE"] = "Bereits erhalten", + ["BTN_GO"] = "Losgehen", + ["BTN_FREE"] = "Kostenlos", + ["BTN_CONFIRM"] = "Bestätigen", + ["SUMMON_RATE_TITLE"] = "Wahrscheinlichkeit", + ["IDLE_TITLE2"] = "Bonus", + ["MAIL_TITLE"] = "Mailbox", + ["BTN_READ"] = "Lesen Sie", + ["PROBABILITY_DESC1"] = "Wahrscheinlichkeit", + ["WEAPON_DESC1"] = "Waffe", + ["LV_POINT"] = "Lv. {0}", + ["LOOK_AD_DESC1"] = "Werbung spielen", + ["CANCEL_1"] = "Nein", + ["TIME_STR_DHM"] = "{0} Tag(e) {1} Stunde(n) {2} Minute(n)", + ["TIME_STR_M"] = "{0} Minute(n)", + ["TIME_STR_MS"] = "{0} Minute(n) {1} Sekunde(n)", + ["TIME_STR_S"] = "{0} Sekunde(n)", + ["TIME_STR_DH"] = "{0} Tag(e) {1} Stunde(n)", + ["TIME_STR_HMS"] = "{0} Stunde(n) {1} Minute(n) {2} Sekunde(n)", + ["TIME_STR_HM"] = "{0} Stunde(n) {1} Minute(n)", + ["TIME_STR_D"] = "{0} Tag(e)", + ["TIME_MS"] = "{0}:{1}", + ["TIME_HMS"] = "{0}:{1}:{2}", + ["REMAIN_TIME_DESC1"] = "Verbleibende Zeit:{0}", + ["SUPER_DESC1"] = "Wertvoll", + ["BLESSING_1"] = "Goldmünze", + ["BLESSING_2"] = "Angriffskraft", + ["EQUIP_TITLE "] = "Ausrüstungsbildschirm", + ["EQUIP_DESC_3"] = "Rüstung", + ["EQUIP_DESC_4"] = "Verstärkung", + ["EQUIP_DESC_5"] = "Gehe zu Anrufen", + ["EQUIP_DESC_6"] = "Alle Erweiterungen", + ["ATTR_NAME_1"] = "Lebenspunkte", + ["ATTR_NAME_2"] = "Regeneration", + ["ATTR_NAME_3"] = "Angriffskraft", + ["ATTR_NAME_4"] = "Bewegungsgeschwindigkeit", + ["ATTR_NAME_5"] = "Kritische Trefferrate", + ["ATTR_NAME_6"] = "Kritischen Schaden", + ["ATTR_NAME_7"] = "Angriffsreichweite", + ["ATTR_NAME_8"] = "Schadensreduzierung", + ["ATTR_NAME_9"] = "Der dem Boss zugefügte Schaden wird erhöht.", + ["ATTR_NAME_11"] = "Angriffskraft", + ["ATTR_NAME_20"] = "Lebenspunkte", + ["ITEM_NOT_ENOUGH"] = "{0} unzureichend", + ["RESET_DESC"] = "Zurücksetzen", + ["STRENGTHEN_DESC"] = "Verstärkung", + ["HERO_TITLE_1"] = "Rüstung", + ["EQUIP_DESC_8"] = "Ablegen", + ["CONGRATULATE_GET_DESC"] = "Herzlichen Glückwunsch zum Erhalt", + ["Next"] = "Nächste", + ["MINING_TIPS_DESC2"] = "Je tiefer du das Gebiet erkundest, desto wahrscheinlicher ist es, dass du gute Schätze findest", + ["BTN_TEXT_OK"] = "Bestätigen", + ["TRAIN_DESC_17"] = "Lv. {0}", + ["UPGRADE_DESC"] = "Stufenaufstieg", + ["GET_REWARDS"] = "Belohnung gewinnen", + ["REFRESH_TIME"] = "Aktualisierungszeit:{0}", + ["ENTER_DUNGEON_AD"] = "Werbung spielen", + ["PASS_REWARD"] = "Levelende-Belohnungen", + ["REWARD_PREVIEW"] = "Belohnungsübersicht", + ["RANK_ORDER"] = "Platz {0}", + ["RANKING_REWARD"] = "Belohnung für den Rang", + ["RANK_LEVEL_REWARD"] = "Rangbelohnung", + ["RANKING_DESC1"] = "Rang", + ["SELF_RANKING"] = "Mein Rang", + ["SELF_RANK_ORDER"] = "Mein Rang", + ["DAY_DESC1"] = "Tag {0}", + ["NOT_IN_RANK"] = "Nicht auf der Liste", + ["DIAMOND_GIFT_TITLE"] = "Diamantenpaket", + ["LIMIT_GIFT"] = "Zeitlich begrenztes Paket", + ["DAILY_GIFT"] = "Tägliches Geschenkpaket", + ["WEEK_GIFT"] = "Wöchentliches Paket", + ["CHAPTER_DESC_1"] = "Level", + ["LIMIT_DESC"] = "Kauflimit: {0}", + ["IDLE_DROP_DESC_2"] = "Gewinn der Goldmünzen:{0}/m", + ["EXT_REWARDS"] = "Bonus", + ["DAILY_TASK_DESC_1"] = "Tägliche Aufgaben", + ["GAME_SETTING_DESC_3"] = "Sprache", + ["GAME_SETTING_DESC_4"] = "Die Unterstützung", + ["GAME_SETTING_FACEBOOK"] = "Facebook", + ["GAME_SETTING_DISCORD"] = "Discord", + ["GAME_SETTING_DESC_8"] = "Einschalten", + ["GAME_SETTING_DESC_9"] = "Ausschalten", + ["ACCOUNT_DESC_1"] = "Account verbinden", + ["DELETE_ACCOUNT"] = "Account löschen", + ["GET"] = "Erhalten", + ["BATTLE_SPEED_UP_DESC_6"] = "Aktivieren", + ["CLICK_CLOSE_DESC"] = "Zum Schließen klicken", + ["MESSAGE_BOX_TITLE"] = "Hinweis", + ["BOUNTY_DESC_10"] = "Bereits aktiviert", + ["BOUNTY_DESC_11"] = "Tägliche Aufgaben", + ["HISTORY_RECORD"] = "Höchste Punktzahl aller Zeiten", + ["NEW_RECORD"] = "Neue Rekorde", + ["BATTLE_END"] = "Das Ende der Schlacht", + ["CUR_RECORD"] = "Aktuelle Aufzeichnung", + ["CLICK_CLOSE_DESC_2"] = "Klicken Sie zum Schließen auf einen beliebigen Bereich", + ["BATTLE_REVIVE_TITLE"] = "Soll ich wiederauferstehen?", + ["BATTLE_REVIVE_AD"] = "Kostenlos wiederbeleben", + ["BATTLE_REVIVE"] = "Wiederauferstehung", + ["SELECT_LEGACY_DESC"] = "Ausgewählte Heirlooms", + ["SELECT_ONE_LEGACY"] = "Wählen Sie ein Familienerbstück", + ["CHANGE_OTHER"] = "Ändern Sie eine Gruppe", + ["VIEW_SELECTED_LEGACY"] = "Ausgewählte Erbstücke anzeigen", + ["ARENA_CHANGE_FINISH_DESC"] = "Ende der Herausforderung", + ["ARENA_SCORE"] = "Punktestand", + ["BATTLE_AGAIN"] = "Erneut herausfordern", + ["RECHARGE_TITLE"] = "Wöchentliche Rücksetzung der Anzahl der Aufstockungen für Doppel-Diamanten", + ["BATTLE_ERROR"] = "Der Kampf ist abnormal, bitte versuchen Sie es erneut.", + ["ARENA_CALCULATE"] = "Arena-Abrechnung in Arbeit, bitte warten", + ["RENAME_DESC_1"] = "Ändern Sie den Namen", + ["RENAME_DESC_2"] = "Name bis zu 6 Zeichen", + ["RENAME_DESC_3"] = "Ändern Sie den Namen", + ["RENAME_DESC_4"] = "Bitte geben Sie einen Namen ein", + ["SHIELDED_WORD_DESC"] = "Nicht verfügbare Zeichen im Text", + ["NAME_ALREADY_USED_DESC"] = "Name bereits vorhanden", + ["NEW_PLAYER_DESC"] = "Neuer Spieler", + ["LANGUAGE_DESC"] = "Sprache", + ["ARENA_FIGHT_FORBID"] = "Die Arena endet, es können keine Kämpfe mehr gestartet werden!", + ["ARENA_SEGMENT_TITLE_DESC"] = "Der junge Krieger hat ein gutes Händchen und die Ergebnisse der letzten Woche waren:", + ["RECEIVE_REWARD"] = "Belohnungen erhalten", + ["REWARD_TITLE"] = "Belohnung gewinnen", + ["MAX_SCORE"] = "Höchste Punktzahl:{0}", + ["FUND_PROGRESS"] = "Fortschritt der Stufe", + ["FUND_LOW_TX"] = "Luxus-Belohnung", + ["FUND_HIGH_TX"] = "Premium-Belohnungen", + ["NO_NETWORK"] = "Keine Netzwerkverbindung, bitte verbinde dich mit dem Netzwerk und versuche es erneut", + ["NETWORK_ERROE_1"] = "Serverkommunikation anormal, bitte versuche es später erneut", + ["REPEAT_PAY_ORDER"] = "Die Bestellung ist angekommen. Bitte starten Sie das Spiel neu, falls es eine Ausnahme gibt.", + ["ACTIVITY_OVER_DESC"] = "Die Aktion ist zu Ende", + ["BINDED_DESC"] = "Gebunden", + ["SWITCH_ACCOUNT_DESC"] = "Account wechseln", + ["MAINTAIN"] = "Wartung der Server", + ["FORBIDDEN"] = "Sperrung von Konten / Verbot des Einloggens", + ["OTHER_LOGIN"] = "Ihr Konto ist auf einem anderen Gerät angemeldet.", + ["NO_ADS"] = "Die neue Werbung ist noch nicht bereit", + ["ACCOUNT_EXCHANGE_DESC_1"] = "Das aktuelle Konto ist nicht gebunden, ein Wechsel kann zu Datenverlust führen, den Wechsel bestätigen?", + ["ACCOUNT_EXCHANGE_DESC_2"] = "Das Konto erhält keine Informationen. Wechseln unmöglich.", + ["BESURE_DELETE_TIPS_DESC"] = "Wenn du deinen Account löschen möchtest, werden alle Informationen und Inhalte gelöscht, und dein Account wird auf den Anfängerstatus der Stufe 1 gesetzt, wenn du dich wieder einloggst. Wenn du dir sicher bist, gib bitte \"{0}\" ein.", + ["BESURE_DELETE_ACCOUNT_DESC"] = "Löschung bestätigen", + ["LOADING_DESC"] = "Laden…", + ["CLICK_COPY_ACOUNT_DESC"] = "Klicken Sie auf , um die Benutzer-ID zu kopieren", + ["APP"] = "Versionsnummer:", + ["BLESS_DESC"] = "Automatischer Segen!", + ["SKIP_AD_DESC"] = "Alle Anzeigen entfernen!", + ["ARENA_SETTLE_DESC"] = "Arena-Abrechnung in Arbeit, bitte warten", + ["PAY_FAILED_DESC_1"] = "Ausnahmen bei der Bestellung, bitte kontaktieren Sie den Kundenservice", + ["MONTH_CARD_DESC"] = "Tägliche Belohnungen für 30 aufeinanderfolgende Tage!", + ["SETTING_DESC_22"] = "Google Play Store Verbindungsfehler, bitte versuchen Sie es später noch einmal", + ["SETTING_DESC_23"] = "Eine Bestellung wird gerade bearbeitet, bitte versuchen Sie es später noch einmal.", + ["SETTING_DESC_25"] = "Die Zahlung wurde annulliert", +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/de/global.lua.meta b/lua/app/config/strings/de/global.lua.meta new file mode 100644 index 00000000..c20e72c4 --- /dev/null +++ b/lua/app/config/strings/de/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4b47de5557b44664596b6ac60106df8a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/hero.lua b/lua/app/config/strings/de/hero.lua new file mode 100644 index 00000000..01c2c0ba --- /dev/null +++ b/lua/app/config/strings/de/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/hero.lua.meta b/lua/app/config/strings/de/hero.lua.meta new file mode 100644 index 00000000..1c859c9c --- /dev/null +++ b/lua/app/config/strings/de/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 215b4c955e2155341a4e93b26955e7d9 +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 new file mode 100644 index 00000000..2cf83315 --- /dev/null +++ b/lua/app/config/strings/de/item.lua @@ -0,0 +1,91 @@ +local item = { + [1]={ + ["name"]="Goldmünze", + ["desc"]="Gemeinsame Währung, die in vieler Orten verwendet wird" + }, + [2]={ + ["name"]="Diamant" + }, + [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]={ + + } +} +local config = { +data=item,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/item.lua.meta b/lua/app/config/strings/de/item.lua.meta new file mode 100644 index 00000000..0169f2e7 --- /dev/null +++ b/lua/app/config/strings/de/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e6f6a17d8ba98cb43a32f8abfb079ef5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/legacy.lua b/lua/app/config/strings/de/legacy.lua new file mode 100644 index 00000000..99d9f42a --- /dev/null +++ b/lua/app/config/strings/de/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + + }, + [40002]={ + + }, + [40003]={ + + }, + [40004]={ + + }, + [40005]={ + + }, + [40101]={ + + }, + [40102]={ + + }, + [40103]={ + + }, + [40104]={ + + }, + [40105]={ + + }, + [40201]={ + + }, + [40202]={ + + }, + [40203]={ + + }, + [40204]={ + + }, + [40205]={ + + }, + [40301]={ + + }, + [40302]={ + + }, + [40303]={ + + }, + [40304]={ + + }, + [40305]={ + + }, + [40401]={ + + }, + [40402]={ + + }, + [40403]={ + + }, + [40404]={ + + }, + [40405]={ + + }, + [40501]={ + + }, + [40502]={ + + }, + [40503]={ + + }, + [40504]={ + + }, + [40505]={ + + }, + [40601]={ + + }, + [40602]={ + + }, + [40603]={ + + }, + [40604]={ + + }, + [40605]={ + + }, + [40606]={ + + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/legacy.lua.meta b/lua/app/config/strings/de/legacy.lua.meta new file mode 100644 index 00000000..218ce1ad --- /dev/null +++ b/lua/app/config/strings/de/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8be29ed55ba2b1645af07e5c21fe1f07 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/mail.lua b/lua/app/config/strings/de/mail.lua new file mode 100644 index 00000000..a4d974e0 --- /dev/null +++ b/lua/app/config/strings/de/mail.lua @@ -0,0 +1,21 @@ +local mail = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/mail.lua.meta b/lua/app/config/strings/de/mail.lua.meta new file mode 100644 index 00000000..9389f6bb --- /dev/null +++ b/lua/app/config/strings/de/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 60cdc1e34373f544d879b6710a51a678 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/mall_act.lua b/lua/app/config/strings/de/mall_act.lua new file mode 100644 index 00000000..960b5c9c --- /dev/null +++ b/lua/app/config/strings/de/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + + }, + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [20001]={ + + }, + [30001]={ + + }, + [40001]={ + + }, + [60001]={ + + }, + [60002]={ + + }, + [70001]={ + + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/mall_act.lua.meta b/lua/app/config/strings/de/mall_act.lua.meta new file mode 100644 index 00000000..80424c35 --- /dev/null +++ b/lua/app/config/strings/de/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ad179299685ac7c41a78fb6cdf8d4764 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/mall_daily.lua b/lua/app/config/strings/de/mall_daily.lua new file mode 100644 index 00000000..3a3f154a --- /dev/null +++ b/lua/app/config/strings/de/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/mall_daily.lua.meta b/lua/app/config/strings/de/mall_daily.lua.meta new file mode 100644 index 00000000..a31a0184 --- /dev/null +++ b/lua/app/config/strings/de/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ecfb58398e41a2c41b8c3b462319447f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/mall_treasure.lua b/lua/app/config/strings/de/mall_treasure.lua new file mode 100644 index 00000000..b446b540 --- /dev/null +++ b/lua/app/config/strings/de/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/mall_treasure.lua.meta b/lua/app/config/strings/de/mall_treasure.lua.meta new file mode 100644 index 00000000..aa973706 --- /dev/null +++ b/lua/app/config/strings/de/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dbd6448383dc8aa479d0808dd77a22a9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/mastery.lua b/lua/app/config/strings/de/mastery.lua new file mode 100644 index 00000000..84521b29 --- /dev/null +++ b/lua/app/config/strings/de/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/mastery.lua.meta b/lua/app/config/strings/de/mastery.lua.meta new file mode 100644 index 00000000..96d5cc4f --- /dev/null +++ b/lua/app/config/strings/de/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4644d4bf238fa604ba4b686a050dafd1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/mine_research.lua b/lua/app/config/strings/de/mine_research.lua new file mode 100644 index 00000000..f5198ea1 --- /dev/null +++ b/lua/app/config/strings/de/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [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]={ + + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/mine_research.lua.meta b/lua/app/config/strings/de/mine_research.lua.meta new file mode 100644 index 00000000..adddcd75 --- /dev/null +++ b/lua/app/config/strings/de/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6f3c79769684423408d6d9980712d7a1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/monster_base.lua b/lua/app/config/strings/de/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/de/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/monster_base.lua.meta b/lua/app/config/strings/de/monster_base.lua.meta new file mode 100644 index 00000000..4e09e8af --- /dev/null +++ b/lua/app/config/strings/de/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 86f1d30276c49e142b61b47135e08d1c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/runes.lua b/lua/app/config/strings/de/runes.lua new file mode 100644 index 00000000..9466cf77 --- /dev/null +++ b/lua/app/config/strings/de/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + + }, + [50102]={ + + }, + [50103]={ + + }, + [50104]={ + + }, + [50201]={ + + }, + [50202]={ + + }, + [50203]={ + + }, + [50204]={ + + }, + [50301]={ + + }, + [50302]={ + + }, + [50303]={ + + }, + [50304]={ + + }, + [50401]={ + + }, + [50402]={ + + }, + [50403]={ + + }, + [50404]={ + + }, + [50501]={ + + }, + [50502]={ + + }, + [50503]={ + + }, + [50504]={ + + }, + [50601]={ + + }, + [50602]={ + + }, + [50603]={ + + }, + [50604]={ + + }, + [50701]={ + + }, + [50702]={ + + }, + [50703]={ + + }, + [50704]={ + + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/runes.lua.meta b/lua/app/config/strings/de/runes.lua.meta new file mode 100644 index 00000000..97ce58db --- /dev/null +++ b/lua/app/config/strings/de/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 356e4218da57fa942b964aa72055ffc4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/skill.lua b/lua/app/config/strings/de/skill.lua new file mode 100644 index 00000000..3e24335e --- /dev/null +++ b/lua/app/config/strings/de/skill.lua @@ -0,0 +1,558 @@ +local skill = { + [11011]={ + + }, + [11012]={ + + }, + [11016]={ + + }, + [21011]={ + + }, + [21014]={ + + }, + [21015]={ + + }, + [31011]={ + + }, + [31012]={ + + }, + [31013]={ + + }, + [41011]={ + + }, + [41012]={ + + }, + [41013]={ + + }, + [11021]={ + + }, + [11022]={ + + }, + [11026]={ + + }, + [21021]={ + + }, + [21024]={ + + }, + [21025]={ + + }, + [31021]={ + + }, + [31022]={ + + }, + [31023]={ + + }, + [41021]={ + + }, + [41022]={ + + }, + [41023]={ + + }, + [11031]={ + + }, + [11032]={ + + }, + [11036]={ + + }, + [21031]={ + + }, + [21034]={ + + }, + [21035]={ + + }, + [31031]={ + + }, + [31032]={ + + }, + [31033]={ + + }, + [41031]={ + + }, + [41032]={ + + }, + [41033]={ + + }, + [11041]={ + + }, + [11042]={ + + }, + [11046]={ + + }, + [21041]={ + + }, + [21044]={ + + }, + [21045]={ + + }, + [31041]={ + + }, + [31042]={ + + }, + [31043]={ + + }, + [41041]={ + + }, + [41042]={ + + }, + [41043]={ + + }, + [11051]={ + + }, + [11052]={ + + }, + [11056]={ + + }, + [21051]={ + + }, + [21054]={ + + }, + [21055]={ + + }, + [31051]={ + + }, + [31052]={ + + }, + [31053]={ + + }, + [41051]={ + + }, + [41052]={ + + }, + [41053]={ + + }, + [11061]={ + + }, + [11062]={ + + }, + [11066]={ + + }, + [21061]={ + + }, + [21064]={ + + }, + [21065]={ + + }, + [31061]={ + + }, + [31062]={ + + }, + [31063]={ + + }, + [41061]={ + + }, + [41062]={ + + }, + [41063]={ + + }, + [11071]={ + + }, + [11072]={ + + }, + [11076]={ + + }, + [21071]={ + + }, + [21074]={ + + }, + [21075]={ + + }, + [31071]={ + + }, + [31072]={ + + }, + [31073]={ + + }, + [41071]={ + + }, + [41072]={ + + }, + [41073]={ + + }, + [11081]={ + + }, + [11082]={ + + }, + [11086]={ + + }, + [21081]={ + + }, + [21084]={ + + }, + [21085]={ + + }, + [31081]={ + + }, + [31082]={ + + }, + [31083]={ + + }, + [41081]={ + + }, + [41082]={ + + }, + [41083]={ + + }, + [11091]={ + + }, + [11092]={ + + }, + [11096]={ + + }, + [21091]={ + + }, + [21094]={ + + }, + [21095]={ + + }, + [31091]={ + + }, + [31092]={ + + }, + [31093]={ + + }, + [41091]={ + + }, + [41092]={ + + }, + [41093]={ + + }, + [400011]={ + + }, + [400021]={ + + }, + [400031]={ + + }, + [400041]={ + + }, + [400051]={ + + }, + [401011]={ + + }, + [401021]={ + + }, + [401031]={ + + }, + [401041]={ + + }, + [401051]={ + + }, + [402011]={ + + }, + [402021]={ + + }, + [402031]={ + + }, + [402041]={ + + }, + [402051]={ + + }, + [403011]={ + + }, + [403021]={ + + }, + [403031]={ + + }, + [403041]={ + + }, + [403051]={ + + }, + [404011]={ + + }, + [404021]={ + + }, + [404031]={ + + }, + [404041]={ + + }, + [404051]={ + + }, + [405011]={ + + }, + [405021]={ + + }, + [405031]={ + + }, + [405041]={ + + }, + [405051]={ + + }, + [406011]={ + + }, + [406021]={ + + }, + [406031]={ + + }, + [406041]={ + + }, + [406051]={ + + }, + [406061]={ + + }, + [501011]={ + + }, + [501021]={ + + }, + [501031]={ + + }, + [501041]={ + + }, + [502011]={ + + }, + [502021]={ + + }, + [502022]={ + + }, + [502031]={ + + }, + [502041]={ + + }, + [503011]={ + + }, + [503021]={ + + }, + [503031]={ + + }, + [503041]={ + + }, + [504011]={ + ["desc"]="20% Chance, bei jedem Wurf 1 zusätzliche Waffenfertigkeit freizusetzen" + }, + [504021]={ + + }, + [504031]={ + + }, + [504041]={ + + }, + [505011]={ + + }, + [505021]={ + + }, + [505031]={ + + }, + [505041]={ + + }, + [506011]={ + + }, + [506021]={ + + }, + [506031]={ + + }, + [506041]={ + + }, + [507011]={ + ["desc"]="Kri. Rate +10%" + }, + [507021]={ + + }, + [507031]={ + + }, + [507041]={ + + }, + [600011]={ + ["name"]="Angriff zur Wiederherstellung des Lebens" + }, + [600021]={ + + }, + [600031]={ + + }, + [600041]={ + + }, + [600051]={ + ["name"]="Fertigkeit stellt Leben wieder her" + }, + [600061]={ + ["name"]="Angriff zur Wiederherstellung des Lebens" + }, + [600071]={ + + }, + [600081]={ + + }, + [600091]={ + ["name"]="Fertigkeit stellt Leben wieder her" + }, + [600101]={ + ["name"]="Angriff zur Wiederherstellung des Lebens" + }, + [600111]={ + + } +} +local config = { +data=skill,count=184 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/skill.lua.meta b/lua/app/config/strings/de/skill.lua.meta new file mode 100644 index 00000000..1a8d3815 --- /dev/null +++ b/lua/app/config/strings/de/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2ff92b863555e2941a75d46705384278 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/task.lua b/lua/app/config/strings/de/task.lua new file mode 100644 index 00000000..2f9b2cad --- /dev/null +++ b/lua/app/config/strings/de/task.lua @@ -0,0 +1,99 @@ +local task = { + [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]={ + + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/task.lua.meta b/lua/app/config/strings/de/task.lua.meta new file mode 100644 index 00000000..bfc8647b --- /dev/null +++ b/lua/app/config/strings/de/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 907e640892ba92d48bfb093779ad7e81 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/task_daily.lua b/lua/app/config/strings/de/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/de/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/task_daily.lua.meta b/lua/app/config/strings/de/task_daily.lua.meta new file mode 100644 index 00000000..daa2f933 --- /dev/null +++ b/lua/app/config/strings/de/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8cc62b710152dcf429de90e762957d4c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/tutorial.lua b/lua/app/config/strings/de/tutorial.lua new file mode 100644 index 00000000..4570cab5 --- /dev/null +++ b/lua/app/config/strings/de/tutorial.lua @@ -0,0 +1,72 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + ["value"]="Es ist an der Zeit, mit dem Auswahlprozess zu beginnen!" + }, + ["TUTORIAL_TXT_2"]={ + + }, + ["TUTORIAL_TXT_3"]={ + + }, + ["TUTORIAL_TXT_4"]={ + + }, + ["TUTORIAL_TXT_5"]={ + + }, + ["TUTORIAL_TXT_6"]={ + + }, + ["TUTORIAL_TXT_7"]={ + + }, + ["TUTORIAL_TXT_8"]={ + + }, + ["TUTORIAL_TXT_9"]={ + + }, + ["TUTORIAL_TXT_10"]={ + + }, + ["TUTORIAL_TXT_11"]={ + + }, + ["TUTORIAL_TXT_12"]={ + + }, + ["TUTORIAL_TXT_13"]={ + + }, + ["TUTORIAL_TXT_14"]={ + + }, + ["TUTORIAL_TXT_15"]={ + + }, + ["TUTORIAL_TXT_16"]={ + + }, + ["TUTORIAL_TXT_17"]={ + + }, + ["TUTORIAL_TXT_18"]={ + + }, + ["TUTORIAL_TXT_19"]={ + ["value"]="Das Schloss Quest ist offen und soll voller Schätze sein." + }, + ["TUTORIAL_TXT_20"]={ + ["value"]="Benutze die Fackel, um mit der Erkundung zu beginnen~" + }, + ["TUTORIAL_TXT_21"]={ + ["value"]="Den Anweisungen zufolge musst du weiter nach unten gehen, um weitere Schätze zu finden!" + }, + ["TUTORIAL_TXT_22"]={ + ["value"]="Willst du wissen, wie Waffen, Verteidigungsanlagen und Erbstücke miteinander zusammenhängen? Dann klicke hier!" + } +} +local config = { +data=tutorial,count=22 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/tutorial.lua.meta b/lua/app/config/strings/de/tutorial.lua.meta new file mode 100644 index 00000000..c8fb5f5b --- /dev/null +++ b/lua/app/config/strings/de/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 410d5e6e83e425842bb8d4f661bded82 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/de/tutorialtask.lua b/lua/app/config/strings/de/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/de/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/de/tutorialtask.lua.meta b/lua/app/config/strings/de/tutorialtask.lua.meta new file mode 100644 index 00000000..d8232a0c --- /dev/null +++ b/lua/app/config/strings/de/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4448421d0b11f224ca933f4328dbb6e8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en.meta b/lua/app/config/strings/en.meta new file mode 100644 index 00000000..f491851a --- /dev/null +++ b/lua/app/config/strings/en.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bc9771c9a0b6b144e8aae10a5e73a936 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/en/act_battle_pass_task.lua b/lua/app/config/strings/en/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/en/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/act_battle_pass_task.lua.meta b/lua/app/config/strings/en/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..dd189bbf --- /dev/null +++ b/lua/app/config/strings/en/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 18d7c5b948a12104c83d497699bbfd38 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/act_fund.lua b/lua/app/config/strings/en/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/en/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/act_fund.lua.meta b/lua/app/config/strings/en/act_fund.lua.meta new file mode 100644 index 00000000..f88df00b --- /dev/null +++ b/lua/app/config/strings/en/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ed013862db4e87647a7747b28fe27d61 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/act_sevenday_quest.lua b/lua/app/config/strings/en/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/en/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/act_sevenday_quest.lua.meta b/lua/app/config/strings/en/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..9e682e31 --- /dev/null +++ b/lua/app/config/strings/en/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 84106b5e132921d45a572ce64c0d3754 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/arena.lua b/lua/app/config/strings/en/arena.lua new file mode 100644 index 00000000..2353976e --- /dev/null +++ b/lua/app/config/strings/en/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + ["desc"]="Trainee III" + }, + [2]={ + ["desc"]="Trainee II" + }, + [3]={ + ["desc"]="Trainee I" + }, + [4]={ + ["desc"]="Warrior III" + }, + [5]={ + ["desc"]="Warrior II" + }, + [6]={ + ["desc"]="Warrior I" + }, + [7]={ + ["desc"]="Silver III" + }, + [8]={ + ["desc"]="Silver II" + }, + [9]={ + ["desc"]="Silver I" + }, + [10]={ + ["desc"]="Gold III" + }, + [11]={ + ["desc"]="Gold II" + }, + [12]={ + ["desc"]="Gold I" + }, + [13]={ + ["desc"]="Warlord III" + }, + [14]={ + ["desc"]="Warlord II" + }, + [15]={ + ["desc"]="Warlord I" + }, + [16]={ + ["desc"]="Dominator III" + }, + [17]={ + ["desc"]="Dominator II" + }, + [18]={ + ["desc"]="Dominator I" + }, + [19]={ + ["desc"]="Legend III" + }, + [20]={ + ["desc"]="Legend II" + }, + [21]={ + ["desc"]="Legend I" + }, + [22]={ + ["desc"]="Wargod III" + }, + [23]={ + ["desc"]="Wargod II" + }, + [24]={ + ["desc"]="Wargod I" + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/arena.lua.meta b/lua/app/config/strings/en/arena.lua.meta new file mode 100644 index 00000000..0f9d715e --- /dev/null +++ b/lua/app/config/strings/en/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 823ded250018d2c4692ff43555f4b03f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/attr.lua b/lua/app/config/strings/en/attr.lua new file mode 100644 index 00000000..6404ad78 --- /dev/null +++ b/lua/app/config/strings/en/attr.lua @@ -0,0 +1,105 @@ +local attr = { + [1]={ + ["name"]="HP" + }, + [2]={ + ["name"]="Attack" + }, + [3]={ + ["name"]="Crit Rate" + }, + [4]={ + ["name"]="Crit Damage" + }, + [5]={ + ["name"]="Damage Reduction" + }, + [6]={ + ["name"]="Attack" + }, + [7]={ + ["name"]="Attack" + }, + [8]={ + ["name"]="Attack" + }, + [9]={ + ["name"]="Attack" + }, + [10]={ + ["name"]="Attack" + }, + [11]={ + ["name"]="Attack" + }, + [12]={ + ["name"]="Attack" + }, + [13]={ + ["name"]="Attack" + }, + [14]={ + ["name"]="Attack" + }, + [15]={ + ["name"]="HP" + }, + [16]={ + ["name"]="HP" + }, + [17]={ + ["name"]="HP" + }, + [18]={ + ["name"]="HP" + }, + [19]={ + ["name"]="HP" + }, + [20]={ + ["name"]="HP" + }, + [21]={ + ["name"]="HP" + }, + [22]={ + ["name"]="Damage" + }, + [23]={ + ["name"]="Dodge" + }, + [24]={ + ["name"]="Gold Coin Accumulation" + }, + [25]={ + ["name"]="Skill DMG" + }, + [26]={ + ["name"]="Base Attack DMG" + }, + [27]={ + ["name"]="Auto Mode Reward" + }, + [28]={ + ["name"]="Torch Regeneration Speed" + }, + [29]={ + ["name"]="Max Torch Count" + }, + [30]={ + ["name"]="Knowledge Gain" + }, + [31]={ + ["name"]="Research Speed" + }, + [32]={ + ["name"]="Knockback DMG" + }, + [33]={ + ["name"]="Knockback Count" + } +} +local config = { +data=attr,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/attr.lua.meta b/lua/app/config/strings/en/attr.lua.meta new file mode 100644 index 00000000..4af92133 --- /dev/null +++ b/lua/app/config/strings/en/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ebae3a54901962f4ba6b00402dc2c576 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/collection.lua b/lua/app/config/strings/en/collection.lua new file mode 100644 index 00000000..495f0020 --- /dev/null +++ b/lua/app/config/strings/en/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + ["name"]="New Journey" + }, + [2]={ + ["name"]="Flesh Body" + }, + [3]={ + ["name"]="Staff Maker" + }, + [4]={ + ["name"]="Well Carved" + }, + [5]={ + ["name"]="Blade Light" + }, + [6]={ + ["name"]="Light and Shade" + }, + [7]={ + ["name"]="Force of Nature" + }, + [8]={ + ["name"]="Wild Storm" + }, + [9]={ + ["name"]="Faith of Assassin" + }, + [10]={ + ["name"]="Frost and Fire" + }, + [101]={ + ["name"]="Roughly Armored" + }, + [102]={ + ["name"]="Hunt Begins" + }, + [103]={ + ["name"]="Fine Lifestyle" + }, + [104]={ + ["name"]="Born to Fight" + }, + [105]={ + ["name"]="Guardian Knight" + }, + [106]={ + ["name"]="Destined Demise" + }, + [107]={ + ["name"]="Eternal Light" + }, + [108]={ + ["name"]="Evil Breath" + }, + [109]={ + ["name"]="Devilish Whisper" + }, + [110]={ + ["name"]="Holy Creature" + }, + [201]={ + ["name"]="Dark Ranger" + }, + [202]={ + ["name"]="Civilian's Treasure" + }, + [203]={ + ["name"]="Battle Master" + }, + [204]={ + ["name"]="Blade Unleashed" + }, + [205]={ + ["name"]="Impenetrable Defense" + }, + [206]={ + ["name"]="Roaring Thunder" + }, + [207]={ + ["name"]="Arsenal Absolute" + }, + [208]={ + ["name"]="Holy Radiance" + }, + [209]={ + ["name"]="Relic of Divinity" + }, + [210]={ + ["name"]="Artifact of Supremacy" + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/collection.lua.meta b/lua/app/config/strings/en/collection.lua.meta new file mode 100644 index 00000000..00808316 --- /dev/null +++ b/lua/app/config/strings/en/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e60732d58abf8674680a934b52d9a88b +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 new file mode 100644 index 00000000..ae74c76d --- /dev/null +++ b/lua/app/config/strings/en/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + ["name"]="Iron Sword" + }, + [10002]={ + ["name"]="Steel Sword" + }, + [10003]={ + ["name"]="Refined Steel Sword" + }, + [10004]={ + ["name"]="Carved Longsword" + }, + [10005]={ + ["name"]="Cavalry Longsword" + }, + [10006]={ + ["name"]="Claymore of Storm" + }, + [10007]={ + ["name"]="Edge of Fury" + }, + [10008]={ + ["name"]="Justice" + }, + [10009]={ + ["name"]="Scar of Blood" + }, + [10101]={ + ["name"]="Dagger" + }, + [10102]={ + ["name"]="Steel Dagger" + }, + [10103]={ + ["name"]="Refined Steel Dagger" + }, + [10104]={ + ["name"]="Carved Dagger" + }, + [10105]={ + ["name"]="Assassin's Edge" + }, + [10106]={ + ["name"]="Poisoned Edge" + }, + [10107]={ + ["name"]="Edge of Shadow" + }, + [10108]={ + ["name"]="Serpent Bite" + }, + [10109]={ + ["name"]="Dominator of Death" + }, + [10201]={ + ["name"]="Wooden Lance" + }, + [10202]={ + ["name"]="Steel Lance" + }, + [10203]={ + ["name"]="Refined Steel Lance" + }, + [10204]={ + ["name"]="Carved Lance" + }, + [10205]={ + ["name"]="Silver Lance" + }, + [10206]={ + ["name"]="Fanged Lance" + }, + [10207]={ + ["name"]="Lionheart Lance" + }, + [10208]={ + ["name"]="Everfrost" + }, + [10209]={ + ["name"]="Draconic Flame" + }, + [10301]={ + ["name"]="Wooden Staff" + }, + [10302]={ + ["name"]="Glass Staff" + }, + [10303]={ + ["name"]="Gemmed Staff" + }, + [10304]={ + ["name"]="Crystal Staff" + }, + [10305]={ + ["name"]="Faerie Staff" + }, + [10306]={ + ["name"]="Staff of Verdant Bird" + }, + [10307]={ + ["name"]="Staff of White Serpent" + }, + [10308]={ + ["name"]="Moonlight" + }, + [10309]={ + ["name"]="Sunblaze" + }, + [20001]={ + ["name"]="Castor Armor" + }, + [20002]={ + ["name"]="Leather Armor" + }, + [20003]={ + ["name"]="Combatant's Robe" + }, + [20004]={ + ["name"]="Refined Iron Armor" + }, + [20005]={ + ["name"]="Guardian's Armor" + }, + [20006]={ + ["name"]="Armor of Light" + }, + [20007]={ + ["name"]="Armor of Apocalypse" + }, + [20101]={ + ["name"]="Rough Cloth Robe" + }, + [20102]={ + ["name"]="Thick Leather Armor" + }, + [20103]={ + ["name"]="Well-made Robes" + }, + [20104]={ + ["name"]="Guardian's Iron Armor" + }, + [20105]={ + ["name"]="Fine Bronze Armor" + }, + [20106]={ + ["name"]="Armor of the Fallen" + }, + [20107]={ + ["name"]="Sacred Gold Armor" + }, + [20201]={ + ["name"]="Woolen Cloth Armor" + }, + [20202]={ + ["name"]="Hunter's Leather Armor" + }, + [20203]={ + ["name"]="Chromatic Robes" + }, + [20204]={ + ["name"]="Iron Armor of Justice" + }, + [20205]={ + ["name"]="Vanguard's Armor" + }, + [20206]={ + ["name"]="Evil Draconic Armor" + }, + [20207]={ + ["name"]="Robes of Lucifer" + }, + [20301]={ + ["name"]="Silken Cloth" + }, + [20302]={ + ["name"]="Exquisite Leather Armor" + }, + [20303]={ + ["name"]="Spaulder-decorated Robes" + }, + [20304]={ + ["name"]="Iron Armor of Glory" + }, + [20305]={ + ["name"]="Golden Armor" + }, + [20306]={ + ["name"]="Conqueror's Armor" + }, + [20307]={ + ["name"]="Dragonslayer's Tome" + }, + [30001]={ + ["name"]="Castor Headband" + }, + [30002]={ + ["name"]="Thin Iron Circlet" + }, + [30003]={ + ["name"]="Carved Silver Circlet" + }, + [30004]={ + ["name"]="Warrior's Crown" + }, + [30005]={ + ["name"]="Crown of Fortune" + }, + [30006]={ + ["name"]="Crown of Storm" + }, + [30007]={ + ["name"]="Dragonslayer's Crown" + }, + [30101]={ + ["name"]="Rough Cloth Headband" + }, + [30102]={ + ["name"]="Thin Golden Circlet" + }, + [30103]={ + ["name"]="Gemdotted Silver Circlet" + }, + [30104]={ + ["name"]="Vanguard's Crown" + }, + [30105]={ + ["name"]="Crown of Wisdom" + }, + [30106]={ + ["name"]="Crown of Destruction" + }, + [30107]={ + ["name"]="Crown of Radiance" + }, + [30201]={ + ["name"]="Woolen Headband" + }, + [30202]={ + ["name"]="Thin Bronze Circlet" + }, + [30203]={ + ["name"]="Carved Golden Circlet" + }, + [30204]={ + ["name"]="Knight's Crown" + }, + [30205]={ + ["name"]="Crown of Bloodthirst" + }, + [30206]={ + ["name"]="Wargod's Crown" + }, + [30207]={ + ["name"]="Evil Crown of Satan" + }, + [30301]={ + ["name"]="Silken Headband" + }, + [30302]={ + ["name"]="Thin Silver Circlet" + }, + [30303]={ + ["name"]="Gemdotted Golden Circlet" + }, + [30304]={ + ["name"]="Hero's Crown" + }, + [30305]={ + ["name"]="Crown of Light" + }, + [30306]={ + ["name"]="Crown of Darkness" + }, + [30307]={ + ["name"]="Crown of Creation" + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/equip.lua.meta b/lua/app/config/strings/en/equip.lua.meta new file mode 100644 index 00000000..f1428646 --- /dev/null +++ b/lua/app/config/strings/en/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ced3e3a92bc09e044b3d08de4bd6acac +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/global.lua b/lua/app/config/strings/en/global.lua new file mode 100644 index 00000000..ed7f0487 --- /dev/null +++ b/lua/app/config/strings/en/global.lua @@ -0,0 +1,406 @@ +local localization_global = +{ + ["TASK_DAILY_TITLE"] = "Daily Quests", + ["COUNTDOWN"] = "{0}:{1}:{2}", + ["EVENT_TITLE"] = "Event", + ["ACT_SEVENDAY_TITLE"] = "Festival Begins", + ["ACT_SEVENDAY_BTN"] = "ENTER", + ["ACT_SEVENDAY_LEFTTIME"] = "Time left: {0} day(s)", + ["ACT_SEVENDAY_TASK"] = "Completed Missions:", + ["ACT_SEVENDAY_DESC"] = "New Quests become available every day.", + ["BTN_CLAIM"] = "Claim", + ["BTN_DONE"] = "Already Collected", + ["BTN_GO"] = "Go", + ["BTN_FREE"] = "Free", + ["BTN_CONFIRM"] = "Confirm", + ["SUMMON_TIMES"] = "Summon x{0}", + ["SUMMON_RATE_TITLE"] = "Overall Rate", + ["SUMMON_RATE_DESC1"] = "Probabilities", + ["SUMMON_RATE_DESC2"] = "Summoning Level raises after having summoned certain times.", + ["IDLE_TITLE1"] = "Auto Mode Reward", + ["IDLE_TITLE2"] = "Extra Bonus", + ["IDLE_BTN"] = "Bonus received!", + ["IDLE_DESC"] = "Collect for {0} min", + ["MAIL_TITLE"] = "Mailbox", + ["MAIL_COUNTDOWN"] = "Expiry: {0} min", + ["BTN_READ"] = "Read", + ["BTN_DELETE_ALL"] = "Delete All Read Mails", + ["BTN_CLAIM_ALL"] = "Claim All", + ["FIRST_CHARGE_REWARD_DESC"] = "First-purchase Reward", + ["SHOP_DESC1"] = "Shop", + ["SUMMON_DESC1"] = "Summon", + ["SUMMON_DESC2"] = "Summon x{0}", + ["SUMMON_DESC3"] = "Summoning Level raises after having summoned certain times.", + ["DAILY_AND_WEEK"] = "Daily/Weekly", + ["TREASURE_DESC1"] = "Treasure", + ["FAMILY_HEIRLOOM"] = "Heirloom", + ["ARMOR_DESC1"] = "Armor", + ["QLT_DESC_1"] = "Normal", + ["QLT_DESC_2"] = "Advanced", + ["QLT_DESC_3"] = "Rare", + ["QLT_DESC_4"] = "Epic", + ["QLT_DESC_5"] = "Legendary", + ["QLT_DESC_6"] = "Mythic", + ["QLT_DESC_7"] = "Transcendent", + ["PROBABILITY_DESC1"] = "Overall Rate", + ["PROBABILITY_DESC2"] = "Loot Probabilities", + ["LEVEL_DESC1"] = "LEVEL{0}", + ["WEAPON_DESC1"] = "Weapon", + ["LV_POINT"] = "Lv.{0}", + ["LOOK_AD_DESC1"] = "Watch Ads", + ["LOOK_AD_DESC2"] = "Watch ads to Summon for FREE.", + ["LOOK_AD_DESC3"] = "Grants 1 Summon attempt for each ad watched.", + ["NEXT_SUMMON_NUM"] = "Next Summon: {0}", + ["MAX_SUMMON_NUM"] = "(Max: {0})", + ["CANCEL_1"] = "Cancel", + ["TIME_STR_DHM"] = "{0} d {0} h {0} min", + ["TIME_STR_M"] = "{0} min", + ["TIME_STR_MS"] = "{0} min {0} sec", + ["TIME_STR_S"] = "{0} sec", + ["TIME_STR_DH"] = "{0} d {0} h", + ["TIME_STR_HMS"] = "{0} h {0} min {0} sec", + ["TIME_STR_HM"] = "{0} h {0} min", + ["TIME_STR_D"] = "{0} d", + ["TIME_MS"] = "{0}:{1}", + ["TIME_HMS"] = "{0}:{1}:{2}", + ["REMAIN_TIME_DESC1"] = "Time remaining:{0}", + ["SUPER_DESC1"] = "value", + ["GIFT_DESC1"] = "Bundles", + ["DUMGEON_1"] = "Gold Instance", + ["DUMGEON_2"] = "Diamond Instance", + ["DUMGEON_3"] = "Mithril Instance", + ["DUMGEON_4"] = "Special Instance", + ["BLESSING_1"] = "Gold Coins", + ["BLESSING_2"] = "Attack", + ["BLESSING_3"] = "Skill DMG", + ["ACCELERATION"] = "Combat Speedup", + ["LOOK_AD"] = "Ads", + ["DAILY_SHOP"] = "Daily Shop", + ["WEEK_SHOP"] = "Weekly Shop", + ["FIRST_BUY_AWARD"] = "First-purchase Reward", + ["FIRST_BUT_AWARD_2"] = "Buy anything to get", + ["EQUIP_TITLE "] = "Equipment Interface", + ["EQUIP_DESC_1"] = "Effects", + ["EQUIP_DESC_2"] = "Equipped", + ["EQUIP_DESC_3"] = "Equipment", + ["EQUIP_DESC_4"] = "Enhance", + ["EQUIP_DESC_5"] = "Go to summon", + ["EQUIP_DESC_6"] = "Reinforce All", + ["ATTR_NAME_1"] = "HP", + ["ATTR_NAME_2"] = "HP Restore", + ["ATTR_NAME_3"] = "Attack", + ["ATTR_NAME_4"] = "Movement Speed", + ["ATTR_NAME_5"] = "Crit Rate", + ["ATTR_NAME_6"] = "Crit Damage", + ["ATTR_NAME_7"] = "Attack Range", + ["ATTR_NAME_8"] = "Damage Reduction", + ["ATTR_NAME_9"] = "Damage dealt to Boss is increased", + ["ATTR_NAME_11"] = "Attack", + ["ATTR_NAME_20"] = "HP", + ["CAN_NOT_DIGGING_DARK"] = "Unable to explore unreachable Fogged Areas.", + ["MUST_PUT_IN_GROUND"] = "You must place this in lit areas.", + ["ITEM_NOT_ENOUGH"] = "Insufficient {0}", + ["MAX_LV_DESC"] = "Max Level", + ["RESET_DESC"] = "Reset", + ["STRENGTHEN_DESC"] = "Enhance", + ["MASTERY_DESC_1"] = "Mastered Skills", + ["MASTERY_DESC_2"] = "Help", + ["MASTERY_DESC_3"] = "You earn Mastery Points when farming passed levels. Use Mastery Points to upgrade Mastered Skills.", + ["MASTERY_DESC_4"] = "Upgrade a Mastered Skill to the max level to unlock the next.", + ["MASTERY_DESC_5"] = "Redistribute all Mastery Points?\nAfter redistribution, all Mastery Points will be refunded and Mastered Skills will be reset to Level 0.", + ["HERO_TITLE_1"] = "Equipment", + ["HERO_TITLE_2"] = "Heirloom", + ["HERO_TITLE_3"] = "Mastery", + ["HERO_TITLE_4"] = "Runes", + ["EQUIP_DESC_7"] = "Equipped", + ["EQUIP_DESC_8"] = "Unequip", + ["EQUIP_DESC_9"] = "Index", + ["EQUIP_DESC_10"] = "Craft Runes", + ["EQUIP_DESC_11"] = "Unlocked: {0}/{1}", + ["EQUIP_DESC_12"] = "Locked", + ["EQUIP_DESC_13"] = "Effects: {0}", + ["CONGRATULATE_GET_DESC"] = "Congrats on obtaining", + ["MINING_TITLE"] = "Explore", + ["Next"] = "Next", + ["MINING_TIPS_DESC1"] = "Torches regenerate automatically", + ["MINING_TIPS_DESC2"] = "The deeper you explore the area the more likely you are to find good treasures", + ["MINING_TIPS_DESC3"] = "Use Pyroshell and Candle of Divinity to dispel fog!", + ["MINING_TIPS_DESC4"] = "Light below the yellow line to proceed to deeper zones.", + ["RESEARCH_TITLE"] = "Academy", + ["RESEARCH_MAT"] = "Materials", + ["RESEARCHING_QUICK_FINISH"] = "Ending soon!", + ["RESEARCHING_JUMP_TIME"] = "Skip for {0} min", + ["RESEARCHING_DESC1"] = "Research in progress -- [{0}]", + ["MAX"] = "MAX", + ["NEED_BEFORE_RESEARCH"] = "Research required", + ["RESEARCH"] = "Research", + ["DISCONNECT_RELOGIN"] = "You have been disconnected, please retry login", + ["RECONNECT"] = "You have been disconnected, reconnect now?", + ["BTN_TEXT_OK"] = "Confirm", + ["RELOGIN"] = "Reconnect", + ["DUNGEON_GOLD"] = "Gold Instance", + ["DUNGEON_TREASURE"] = "Diamond Instance", + ["DUNGEON_MITHRIL"] = "Mithril Instance", + ["DUNGEON_CHARACTERISTIC"] = "Special Instance", + ["TRAIN_DESC_1"] = "Train", + ["TRAIN_DESC_2"] = "Farm", + ["TRAIN_DESC_3"] = "Quickpass", + ["TRAIN_DESC_4"] = "Current Best: Level {0}, farming rewards:", + ["TRAIN_DESC_5"] = "Current Progress", + ["TRAIN_DESC_6"] = "Best", + ["TRAIN_DESC_7"] = "Upgrades", + ["TRAIN_DESC_8"] = "Unlocks after passing Level {0}", + ["TRAIN_DESC_9"] = "Farm Now", + ["TRAIN_DESC_10"] = "Quickpass to Lv. {0}", + ["TRAIN_DESC_11"] = "Stop Challenge", + ["TRAIN_DESC_12"] = "You earn more Mastery Points and Gold by farming when you progress further in the current challenge.", + ["TRAIN_DESC_13"] = "You have not reached the highest level yet and farming now will earn less rewards. Proceed anyway?", + ["TRAIN_DESC_14"] = "Start Farming", + ["TRAIN_DESC_15"] = "Level {0}", + ["TRAIN_DESC_16"] = "Quick Leveling", + ["TRAIN_DESC_17"] = "Level {0}", + ["TRAIN_DESC_18"] = "For each Quickpass you have done, you will pass {0} (+300) additional levels. (You will Quickpass more levels when your Quickpass is at higher level; Quickpass available below the highest level you have reached)", + ["UPGRADE_DESC"] = "Upgrade", + ["GET_REWARDS"] = "Rewards Obtained", + ["ARENA"] = "Arena", + ["REFRESH_TIME"] = "Refreshing in:{0}", + ["DUNGEON_DESC1"] = "Arena Key regenerates every day.", + ["CHAPTER_UNLOCK_DESC"] = "Unlocks after passing {0}", + ["LEVEL_UNLOCK_DESC"] = "Unlocks after reaching Lv. {0}", + ["ENTER_DUNGEON"] = "Start", + ["TASK_COMPLETE_DESC"] = "Unlocks after finishing the Main Quest: {0}", + ["DUNGEON_GOLD_HELP_CONTENT"] = "Guess what is going to happen after you lever this chest open? Aggghhh! It's trying to bite me!", + ["DUNGEON_TREASURE_HELP_CONTENT"] = "We the champions are not interested in all kinds of material rewards, unless they are for free!", + ["DUNGEON_MITHRIL_HELP_CONTENT"] = "It's a physical task to dig mithril mines. Nobody wants to awake the evil creatures beneath while digging with magic power.", + ["DUNGEON_CHARACTERISTIC_HELP_CONTENT"] = "Countless battles grant me a strong physique, as well as a decisive mind and flexibility.", + ["ARENA_HELP_CONTENT"] = "1. There are a total of 4 themes in the arena: Sword, Dagger, Lance and Staff. Each theme lasts for 14 days. The opponents you will be facing varies when in different Themes. \n2. Themed Weapons grant additional ATK. Use {0} in the current theme and get an extra 20% attack boost. The next theme is for {1}.\n3. Dealing damage to the opponent within time limit to score. Ranks will be given based on your score.\n4. Rank rewards will be given at 0:00 every Sunday, and your Rank will move down by up to 5 tiers afterwards.\n5. Stats of Weapons, Armors and Heirlooms take effect in Arena battles. You may choose the Stats and Skills you wish to take into battle before it begins.\n6. Heirloom Effects are unavailable in Arena battles, instead, you will be allowed to select one from the given Heirloom Effects after each attack wave. You will NOT be given additional Heirloom Stats.", + ["GET_SEVER_ERROR"] = "Failed to retrieve server info, retrying connection...", + ["ENTER_DUNGEON_AD"] = "Watch Ads", + ["DUNGEON_DIFFICULT"] = "Difficulty", + ["PASS_REWARD"] = "Stage Reward", + ["ARENA_RULE_TITLE"] = "Arena Rules", + ["ARENA_RULE_CONTENT"] = "1. There are a total of 4 themes in the arena: Sword, Dagger, Lance and Staff. Each theme lasts for 14 days. The opponents you will be facing varies when in different Themes. \n2. Themed Weapons grant additional ATK. Use {0} in the current theme and get an extra 20% attack boost. The next theme is for {1}.\n3. Dealing damage to the opponent within time limit to score. Ranks will be given based on your score.\n4. Rank rewards will be given at 0:00 every Sunday, and your Rank will move down by up to 5 tiers afterwards.\n5. Stats of Weapons, Armors and Heirlooms take effect in Arena battles. You may choose the Stats and Skills you wish to take into battle before it begins.\n6. Heirloom Effects are unavailable in Arena battles, instead, you will be allowed to select one from the given Heirloom Effects after each attack wave. You will NOT be given additional Heirloom Stats.", + ["LOOK_SEASON_REWARD"] = "View Current Rewards", + ["ARENA_SUBJECT_DESC"] = "Current Theme: {0}", + ["SWARD"] = "Sword", + ["WAND"] = "Staff", + ["KNIFE"] = "Dagger", + ["SPEAR"] = "Lance", + ["REWARD_PREVIEW"] = "Reward Overview", + ["ARENA_ENTER_TITLE"] = "Arena.{0}", + ["ARENA_REFRESH_TIME_DESC"] = "Next theme in {0}", + ["CUR_RANK_LEVEL"] = "Current Rank", + ["SCORE_DESC"] = "{0} pts", + ["RANK_ORDER"] = "No. {0}", + ["HERO_RANKING_TITLE"] = "Leaderboard", + ["ARENA_BATTLE_REWARD_TITLE"] = "Reward", + ["ARENA_MAX_LEVEL"] = "Ace!", + ["BEST_DESC"] = "Best", + ["RANKING_REWARD"] = "Ranking Reward", + ["RANK_LEVEL_REWARD"] = "Title Reward", + ["RANKING_DESC1"] = "Rank", + ["RANKING_DESC2"] = "Weekly Reward", + ["CLEARING_REMAIN_DESC"] = "Reward in: {0}", + ["NO_ONE_IN_THIS_SEGMENT"] = "Nobody has reached this Rank yet.", + ["NEED_SOMETHING"] = "Requires: {0}", + ["SELF_RANKING"] = "My Rank", + ["RANKIN_LEVEL_DESC"] = "{0} (Current Rank)", + ["ARENA_RANK_DESC_1"] = "Standing available after attending at least 1 battle", + ["SELF_RANK_ORDER"] = "My Rank", + ["SEVEN_DAY_SIGNIN_TITLE"] = "7-Day Sign-in Event", + ["DAY_DESC1"] = "Day {0}", + ["SEVEN_DAY_DESC"] = "Boost power with Legendary gear!", + ["NOT_IN_RANK"] = "Not on the list", + ["DIAMOND_GIFT_TITLE"] = "Diamond Pack", + ["LIMIT_GIFT"] = "Time Limited Package", + ["DAILY_GIFT"] = "Daily Pack", + ["WEEK_GIFT"] = "Claim Weekly Gift Pack", + ["MALL_GIFT"] = "Bundle Shop", + ["WEAPON_SUMMON_TITLE"] = "Summon Weapons", + ["ARMOR_SUMMON_TITLE"] = "Summon Armors", + ["FAMILY_HEIRLOOM_SUMMON_TITLE"] = "Summon Heirlooms", + ["CHAPTER_DESC_1"] = "Stage", + ["CHAPTER_DESC_2"] = "Level Reward", + ["CHAPTER_DESC_3"] = "Objective", + ["CHAPTER_DESC_4"] = "Reward", + ["LIMIT_DESC"] = "Max Purchase: {0}", + ["QLT_DESC"] = "Quality: {0}", + ["ITEM_DESC"] = "Items", + ["IDLE_DROP_DESC_1"] = "Auto Mode Reward", + ["IDLE_DROP_DESC_2"] = "Gold Coin Accumulation:{0}/m", + ["IDLE_DROP_DESC_3"] = "Duration: {0} min", + ["GET_REWARDS_1"] = "Claim Reward", + ["EXT_REWARDS"] = "Extra Bonus", + ["CAN_NOT_DIG_GROUND"] = "Auto Mode unavailable in lit areas!", + ["SEVEN_DAY_DESC_1"] = "7-Day Newcomer Feast", + ["SEVEN_DAY_DESC_2"] = "End: {0}", + ["SEVEN_DAY_DESC_3"] = "Quests Finished: {0}/{1}", + ["SEVEN_DAY_DESC_4"] = "Claim All", + ["DAILY_TASK_DESC_1"] = "Daily Quests", + ["DAILY_TASK_DESC_2"] = "Complete", + ["GAME_SETTING_DESC_1"] = "Profile", + ["GAME_SETTING_DESC_2"] = "Account", + ["GAME_SETTING_DESC_3"] = "Language", + ["GAME_SETTING_DESC_4"] = "Support", + ["GAME_SETTING_DESC_5"] = "Privacy", + ["GAME_SETTING_FACEBOOK"] = "Facebook", + ["GAME_SETTING_DISCORD"] = "Discord", + ["GAME_SETTING_DESC_6"] = "Enter Power-saving Mode", + ["GAME_SETTING_DESC_7"] = "PlayerID: {0}", + ["GAME_SETTING_DESC_8"] = "ON", + ["GAME_SETTING_DESC_9"] = "OFF", + ["GAME_SETTING_DESC_10"] = "Background", + ["GAME_SETTING_DESC_11"] = "Environment", + ["GAME_SETTING_DESC_12"] = "Vibrance", + ["GAME_SETTING_DESC_13"] = "Notification", + ["GAME_SETTING_DESC_14"] = "Apply Power-saving Mode", + ["TUTORIAL_MINE"] = "So what's this knowledge all about?", + ["HAS_RESEARCHING"] = "Research in progress", + ["BATTLE_FAILED"] = "Failed", + ["BATTLE_FAIL_DESC_1"] = "Summon & gear up!", + ["BATTLE_FAIL_DESC_2"] = "Challenge & loot!", + ["BATTLE_FAIL_DESC_3"] = "Explore the fogged zones!", + ["BATTLE_FAIL_DESC_4"] = "Farm and become a master!", + ["ACCOUNT_DESC_1"] = "Bind Account", + ["ACCOUNT_DESC_2"] = "Bind account to secure your game data!", + ["LOGIN_BY_GOOGLE"] = "Log in via Google Account", + ["LOGIN_BY_APPLE"] = "Log in via Apple ID", + ["DELETE_ACCOUNT"] = "Delete Account", + ["BLESSING_TITLE"] = "Blessing", + ["BLESSING_TITLE_1"] = "Blessing: Harvest", + ["BLESSING_TITLE_2"] = "Blessing: Might", + ["BLESSING_TITLE_3"] = "Blessing: Forge", + ["BLESSING_DESC_1"] = "Gold loot increased to", + ["BLESSING_DESC_2"] = "ATK increased to", + ["BLESSING_DESC_3"] = "Skill DMG increased to", + ["BLESSING_DESC_4"] = "There are bundles will extend Blessing duration for me?", + ["GET"] = "Obtain", + ["ACT_SEVENDAY_DESC_1"] = "Unlocks on Day {0}", + ["BATTLE_SPEED_UP_DESC_1"] = "Speedup", + ["BATTLE_SPEED_UP_DESC_2"] = "Speed x2", + ["BATTLE_SPEED_UP_DESC_3"] = "Watch ads to get 200% Game Speed in the next 20 minutes.", + ["BATTLE_SPEED_UP_DESC_4"] = "(Toggle Auto Attack to enable it)", + ["BATTLE_SPEED_UP_DESC_5"] = "When Speedup is active, watch ads to extend its duration to a max to 20 minutes.", + ["BATTLE_SPEED_UP_DESC_6"] = "Activate", + ["BATTLE_FAIL"] = "Defeat", + ["BATTLE_VICTORY"] = "Victory", + ["CLICK_CLOSE_DESC"] = "Tap to close", + ["FUNC_OPEN_LEVEL"] = "Unlocks when player reaches Lv. {0}", + ["FUNC_OPEN_STAGE"] = "Unlocks after passing Chapter {0}", + ["FUNC_OPEN_TASK"] = "Unlocks after finishing the Main Quest: {0}", + ["TASK_DESC"] = "Main Quest", + ["TRAIN_DESC_19"] = "Quickpass Reward", + ["TRAIN_DESC_20"] = "200% Gold", + ["RUNE_TITLE_1"] = "Rune: Sword", + ["RUNE_TITLE_2"] = "Rune: Staff", + ["RUNE_TITLE_3"] = "Rune: Dagger", + ["RUNE_TITLE_4"] = "Rune: Lance", + ["RUNE_TITLE_5"] = "Rune: Body Armor", + ["RUNE_TITLE_6"] = "Rune: Head Armor", + ["RUNE_TITLE_7"] = "Rune: Universal", + ["BATTLE_SPEED_UP_DESC_7"] = "200% Auto Attack Speed is active. 20 minutes remaining.", + ["MASTERY_DESC_6"] = "Reset Mastered Skills", + ["MESSAGE_BOX_TITLE"] = "Hint", + ["RESEARCH_COMPLETE"] = "Research complete!", + ["BOUNTY_DESC_1"] = "Premium Battlepass", + ["BOUNTY_DESC_2"] = "Below are available Seasonal Discounts:", + ["BOUNTY_DESC_4"] = "Unlocks Premium Battlepass Rewards", + ["BOUNTY_DESC_5"] = "Unlocks Premium Battlepass Quests", + ["BOUNTY_DESC_6"] = "S{0} Battlepass", + ["BOUNTY_DESC_7"] = "Battlepass Rewards", + ["BOUNTY_DESC_8"] = "Standard Battlepass", + ["BOUNTY_DESC_9"] = "At Max Level", + ["BOUNTY_DESC_10"] = "Activated", + ["BOUNTY_DESC_11"] = "Daily Quests", + ["BOUNTY_DESC_12"] = "Weekly Quests", + ["BOUNTY_DESC_13"] = "Becomes active after purchasing Premium Battlepass", + ["BOUNTY_DESC_14"] = "Finished", + ["BOUNTY_DESC_15"] = "Finish Quests", + ["AUTO_FIGHT"] = "Auto", + ["OPEN_AUTO_FIGHT"] = "Auto", + ["BATTLE_NEXT_WAVE"] = "Incoming: Wave {0}", + ["BATTLE_WAVE"] = "Wave {0}", + ["BATTLE_LEFT"] = "Remaining", + ["BATTLE_STAGE_FAILED_DESC"] = "You lose\n{0} levels moved back\nImprove yourself and come again!", + ["POWER"] = "Combat Rating", + ["BATTLE_CHAPTER_PASS"] = "Passing Levels", + ["BATTLE_CHAPTER_DESC"] = "Level {0}", + ["BATTLE_LIMIT_DESC"] = "Timed Challenge", + ["BATTLE_CHAPTER_STEP_DESC"] = "Layer {0}\nLevel {1}", + ["BATTLE_PAUSE"] = "Pause", + ["BATTLE_ATTR"] = "Current Stats", + ["BATTLE_RESUME"] = "Continue", + ["BATTLE_DUNGEON_EXIT"] = "Leave Instance", + ["TRAIN_DESC_21"] = "1. Farming consumes Temporal Hourglass and grants Gold and Mastery Points. Temporal Hourglass count resets to 5 every day at 0:00 (UTC-0).\n2. You get more Farming rewards when you choose to start Farming at higher level reached. When the current level is below 100, Farming will not be possible.\n3. You will start over from Level 1 after choosing Farming, use Quickpass to hit the highest level you have already reached. \n4. Farming costs a lot of Stamina and Spirit, so it takes 15 minutes to start Farming again.", + ["TRAIN_DESC_22"] = "1. Quickpass costs Temporal Dust and it will take you to the highest level you have ever reached, granting Gold as reward for all levels you have passed. Temporal Dust count resets to 4 every day at 0:00 (UTC-0).\n2. You get more Quickpass rewards when it passes more levels for you.\n3. The highest level that Quickpass can reach is limited by levels you have passed and your Quickpass Level. Use Quickpass Gems to raise your Quickpass Level. Each time as your Quickpass Level raises, the highest level you can reach is increased by 300.", + ["HELP_DESC"] = "Help", + ["HISTORY_RECORD"] = "Highest ever", + ["NEW_RECORD"] = "New record", + ["BATTLE_END"] = "The end of the battle", + ["CUR_RECORD"] = "Current record", + ["CLICK_CLOSE_DESC_2"] = "Click on any area to close", + ["BATTLE_REVIVE_TITLE"] = "Resurrect?", + ["BATTLE_REVIVE_AD"] = "Resurrect for free", + ["BATTLE_REVIVE"] = "Resurrection", + ["SELECT_LEGACY_DESC"] = "Selected Heirlooms", + ["SELECT_ONE_LEGACY"] = "Select a family heirloom", + ["CHANGE_OTHER"] = "Change a group", + ["VIEW_SELECTED_LEGACY"] = "View selected heirlooms", + ["ARENA_CHANGE_FINISH_DESC"] = "End of challenge", + ["ARENA_SCORE"] = "Score", + ["BATTLE_AGAIN"] = "Re-challenge", + ["RECHARGE_TITLE"] = "Weekly reset for double diamond top-ups", + ["BATTLE_ERROR"] = "The battle is abnormal, please try again.", + ["ARENA_CALCULATE"] = "Arena settlement in progress, please wait", + ["RENAME_DESC_1"] = "Change the name", + ["RENAME_DESC_2"] = "Up to 12 characters", + ["RENAME_DESC_3"] = "Change the name", + ["RENAME_DESC_4"] = "Please enter a name", + ["SHIELDED_WORD_DESC"] = "Unavailable characters in the text", + ["NAME_ALREADY_USED_DESC"] = "Name already exists", + ["NEW_PLAYER_DESC"] = "Survivor", + ["LANGUAGE_DESC"] = "Language", + ["ARENA_FIGHT_FORBID"] = "The arena is ending, no battles can be started!", + ["FUNDCHAPTER_TITLE"] = "Conqueror's Fund", + ["FUNDCHAPTER_TITLE_DESC"] = "Progress through the level stages to earn the reward!", + ["ARENA_SEGMENT_TITLE"] = "Leaderboard Rewards", + ["ARENA_SEGMENT_TITLE_DESC"] = "You have great skills and last week's results were:", + ["RECEIVE_REWARD"] = "Receive Rewards", + ["REWARD_TITLE"] = "Rewards Obtained", + ["MAX_SCORE"] = "Highest score:{0}", + ["SAVE_POWER_DESC_2"] = "Arena Battle is in progress", + ["SAVE_POWER_DESC_3"] = "Slide to disable Power-saving Mode", + ["SAVE_POWER_DESC_4"] = "(Enable/Disable it in Configuration)", + ["FUND_PROGRESS"] = "Level progress", + ["FUND_LOW_TX"] = "Deluxe Reward", + ["FUND_HIGH_TX"] = "Advanced Rewards", + ["NO_NETWORK"] = "Disconnected, please connect to the network and retry", + ["NETWORK_ERROE_1"] = "Server network anomaly, please retry later", + ["REPEAT_PAY_ORDER"] = "The order has been delivered. Restart the game if there is any problem.", + ["BATTLE_STAGE_FAILED_DESC_2"] = "You lose\n\nImprove yourself and come again!", + ["ACTIVITY_OVER_DESC"] = "Event is over", + ["BINDED_DESC"] = "Registered", + ["SWITCH_ACCOUNT_DESC"] = "Switch Account", + ["BATTLE_MISS"] = "Dodge", + ["MAINTAIN"] = "Server maintenance", + ["FORBIDDEN"] = "Account blocking/banning from logging in", + ["OTHER_LOGIN"] = "Your account is logged in on another device.", + ["NO_ADS"] = "New ad is not ready", + ["ACCOUNT_EXCHANGE_DESC_1"] = "The current account is not bound, switching may cause missing of your data, confirm to switch?", + ["ACCOUNT_EXCHANGE_DESC_2"] = "No account info, can't switch.", + ["BESURE_DELETE_TIPS_DESC"] = "Are you sure to delete your account? All content and imformation will be deleted and you will become Lv.1 novice if you login again. Enter \"{0}\" if you are sure to continue", + ["BESURE_DELETE_ACCOUNT_DESC"] = "Yes", + ["LOADING_DESC"] = "Loading…", + ["CLICK_COPY_ACOUNT_DESC"] = "Click to copy your PlayerID", + ["APP"] = "Version:", + ["BLESS_DESC"] = "Automatic blessing!", + ["SKIP_AD_DESC"] = "Remove all ads!", + ["ARENA_SETTLE_DESC"] = "Arena settlement in progress, please wait", + ["PAY_FAILED_DESC_1"] = "Order is abnormal, please contact customer service.", + ["MONTH_CARD_DESC"] = "Daily rewards for 30 consecutive days!", + ["SETTING_DESC_22"] = "Google Play Store connection error, please try again later", + ["SETTING_DESC_23"] = "An order is currently being processed, please try again later", + ["SETTING_DESC_25"] = "Payment cancelled", +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/en/global.lua.meta b/lua/app/config/strings/en/global.lua.meta new file mode 100644 index 00000000..3e419280 --- /dev/null +++ b/lua/app/config/strings/en/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3d0342bfa63d730438e753abd1625f16 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/hero.lua b/lua/app/config/strings/en/hero.lua new file mode 100644 index 00000000..f34f0c51 --- /dev/null +++ b/lua/app/config/strings/en/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + ["name"]="Arthur" + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/hero.lua.meta b/lua/app/config/strings/en/hero.lua.meta new file mode 100644 index 00000000..a5c4fab0 --- /dev/null +++ b/lua/app/config/strings/en/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4b9f033c88a1efe48b57869d842f5c54 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/item.lua b/lua/app/config/strings/en/item.lua new file mode 100644 index 00000000..faf206aa --- /dev/null +++ b/lua/app/config/strings/en/item.lua @@ -0,0 +1,112 @@ +local item = { + [1]={ + ["name"]="Gold Coins", + ["desc"]="Universal currency that is used everywhere." + }, + [2]={ + ["name"]="Diamond", + ["desc"]="Rare currency that is used to summon items." + }, + [3]={ + + }, + [4]={ + ["name"]="Gold Instance Key", + ["desc"]="Used to challenge Gold Instances." + }, + [5]={ + ["name"]="Diamond Instance Key", + ["desc"]="Used to challenge Diamond Instances." + }, + [6]={ + ["name"]="Mithril Instance Key", + ["desc"]="Used to challenge Mithril Instances." + }, + [7]={ + ["name"]="Special Instance Key", + ["desc"]="Used to challenge Special Instances." + }, + [8]={ + ["name"]="Quickpass Gem", + ["desc"]="Used to get higher Quickpass level." + }, + [9]={ + ["name"]="Torch", + ["desc"]="Used to dispel fog." + }, + [10]={ + ["name"]="Pyroshell", + ["desc"]="Used to dispel fog in the selected area." + }, + [11]={ + ["name"]="Candle of Divinity", + ["desc"]="Used to dispel fog in the selected area." + }, + [12]={ + ["name"]="Knowledge", + ["desc"]="Used to do Researches." + }, + [13]={ + ["name"]="Mastery Point", + ["desc"]="Used to boost Mastery Stats." + }, + [14]={ + ["name"]="Mithril", + ["desc"]="Used to unlock and reinforce Runes." + }, + [15]={ + ["name"]="Temporal Hourglass", + ["desc"]="Used to farm passed levels." + }, + [16]={ + ["name"]="Arena Key", + ["desc"]="Used to join Arena battles." + }, + [17]={ + ["name"]="Chest: Single Draw", + ["desc"]="Open it to get a Weapon, Armor or Heirloom." + }, + [18]={ + ["name"]="Chest: 10x Draw", + ["desc"]="Open it to get 10 Weapons, Armors or Heirlooms." + }, + [19]={ + ["name"]="Battlepass Point", + ["desc"]="Collect certain points to level up your Battlepass." + }, + [20]={ + ["name"]="Package" + }, + [21]={ + ["name"]="Chest: 35x Draw", + ["desc"]="Open it to get 35 Weapons, Armors or Heirlooms." + }, + [22]={ + ["name"]="Chest: 105x Draw", + ["desc"]="Open it to get 105 Weapons, Armors or Heirlooms." + }, + [23]={ + ["name"]="Legendary Gold Chest", + ["desc"]="Open it to get Cavalry Longsword, Guardian's Armor and Crown of Fortune." + }, + [24]={ + ["name"]="Parchment" + }, + [25]={ + ["name"]="Parchment Stack" + }, + [26]={ + ["name"]="Parchment Scroll" + }, + [27]={ + ["name"]="Parchment Tome" + }, + [28]={ + ["name"]="Temporal Dust", + ["desc"]="Available for Quickpass" + } +} +local config = { +data=item,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/item.lua.meta b/lua/app/config/strings/en/item.lua.meta new file mode 100644 index 00000000..836f86f5 --- /dev/null +++ b/lua/app/config/strings/en/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: afb648deb6913cf4a9e534ddec546dc2 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/legacy.lua b/lua/app/config/strings/en/legacy.lua new file mode 100644 index 00000000..71ed5fc6 --- /dev/null +++ b/lua/app/config/strings/en/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + ["name"]="Lightning Rod" + }, + [40002]={ + ["name"]="Sachet of Tranquility" + }, + [40003]={ + ["name"]="Bandit's Ankle Boots" + }, + [40004]={ + ["name"]="Gloves of Dexterity" + }, + [40005]={ + ["name"]="Assassin's Dagger" + }, + [40101]={ + ["name"]="Legacy Talisman" + }, + [40102]={ + ["name"]="Heavy Iron Armor" + }, + [40103]={ + ["name"]="Gloves of Strength" + }, + [40104]={ + ["name"]="Cloak of Disguise" + }, + [40105]={ + ["name"]="Tiger Talon" + }, + [40201]={ + ["name"]="Darkiron Cone" + }, + [40202]={ + ["name"]="Battlemaster's Ring" + }, + [40203]={ + ["name"]="Crystal of Thunder" + }, + [40204]={ + ["name"]="Frost-gem Mask" + }, + [40205]={ + ["name"]="Chain Mail" + }, + [40301]={ + ["name"]="Master's Claymore" + }, + [40302]={ + ["name"]="Spine of Lancination" + }, + [40303]={ + ["name"]="Sorcerer's Crystal Aegis" + }, + [40304]={ + ["name"]="Thorn Armor" + }, + [40305]={ + ["name"]="Golden Wristguard" + }, + [40401]={ + ["name"]="Crown of Resplendence" + }, + [40402]={ + ["name"]="Bone Crusher" + }, + [40403]={ + ["name"]="Lance of Longinus" + }, + [40404]={ + ["name"]="Spellblade of Bloodlust" + }, + [40405]={ + ["name"]="Thor's Hammer" + }, + [40501]={ + ["name"]="Key of Wisdom" + }, + [40502]={ + ["name"]="Nightingale's Wings" + }, + [40503]={ + ["name"]="Horseman's Glory" + }, + [40504]={ + ["name"]="Sight of Truth" + }, + [40505]={ + ["name"]="Teardrop of Phoenix" + }, + [40601]={ + ["name"]="Totem of Earthshatterer" + }, + [40602]={ + ["name"]="Neptune's Trident" + }, + [40603]={ + ["name"]="Sunstrider's Longbow" + }, + [40604]={ + ["name"]="Edge of Void" + }, + [40605]={ + ["name"]="Gungnir\nthe Lance of Eternity" + }, + [40606]={ + ["name"]="Armageddon" + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/legacy.lua.meta b/lua/app/config/strings/en/legacy.lua.meta new file mode 100644 index 00000000..304e7987 --- /dev/null +++ b/lua/app/config/strings/en/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4f41ff509272fd94f95257a2bbe111b6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/mail.lua b/lua/app/config/strings/en/mail.lua new file mode 100644 index 00000000..01f03ccf --- /dev/null +++ b/lua/app/config/strings/en/mail.lua @@ -0,0 +1,24 @@ +local mail = { + [1]={ + ["name"]="Bestowal of the Elder" + }, + [2]={ + ["name"]="Daily Allowance of the King" + }, + [3]={ + ["name"]="Hey! See what's inside!", + ["desc"]="An optimistic person is always surprised by the unexpected" + }, + [4]={ + ["name"]="To my beloved...", + ["desc"]="A good heart will be rewarded with good deeds" + }, + [5]={ + ["name"]="Thrive!", + ["desc"]="Good energy, good luck and good fortune" + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/mail.lua.meta b/lua/app/config/strings/en/mail.lua.meta new file mode 100644 index 00000000..c13fa552 --- /dev/null +++ b/lua/app/config/strings/en/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c9bd59762cf04b64faad8cba9e22a795 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/mall_act.lua b/lua/app/config/strings/en/mall_act.lua new file mode 100644 index 00000000..b325e227 --- /dev/null +++ b/lua/app/config/strings/en/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + ["name"]="First Recharge Reward" + }, + [10001]={ + ["name"]="Valuable Belongings" + }, + [10002]={ + ["name"]="Vanguard Bundle" + }, + [10003]={ + ["name"]="Successor Bundle" + }, + [10004]={ + ["name"]="Alchemist's Box" + }, + [10005]={ + ["name"]="Draconic Treasure" + }, + [10006]={ + ["name"]="Berserker Bundle" + }, + [10101]={ + ["name"]="Explorer's Sack" + }, + [10102]={ + ["name"]="Shiny Keyring" + }, + [10103]={ + ["name"]="Befalling Treasure" + }, + [10104]={ + ["name"]="Mythic Staff Set" + }, + [10105]={ + ["name"]="Mythic Assassin Set" + }, + [10106]={ + ["name"]="Justice Bringer" + }, + [10201]={ + ["name"]="Legendary 3-pcs Set" + }, + [10202]={ + ["name"]="Mythic 3-pcs Set" + }, + [10301]={ + ["name"]="Legendary Heirloom" + }, + [10302]={ + ["name"]="Mythic Heirloom" + }, + [20001]={ + ["name"]="Ads Removal Bundle" + }, + [30001]={ + ["name"]="Auto Blessing Bundle" + }, + [40001]={ + ["name"]="Golden Explorer's Badge" + }, + [60001]={ + ["name"]="Conqueror's Fund - Standard" + }, + [60002]={ + ["name"]="Conqueror's Fund - Premium" + }, + [70001]={ + ["name"]="Battlepass: Season 1" + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/mall_act.lua.meta b/lua/app/config/strings/en/mall_act.lua.meta new file mode 100644 index 00000000..bcf85c1b --- /dev/null +++ b/lua/app/config/strings/en/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e916bfcdef5261941a291cf2d76b8dff +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/mall_daily.lua b/lua/app/config/strings/en/mall_daily.lua new file mode 100644 index 00000000..bdb34d2d --- /dev/null +++ b/lua/app/config/strings/en/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + ["name"]="Free Bundle" + }, + [1002]={ + ["name"]="Keyring (S)" + }, + [1003]={ + ["name"]="Temporal Sack" + }, + [1004]={ + ["name"]="Keyring" + }, + [1005]={ + ["name"]="Explorer's Sack" + }, + [2001]={ + ["name"]="Keyring (L)" + }, + [2002]={ + ["name"]="Temporal Chest" + }, + [2003]={ + ["name"]="Large Key Pack" + }, + [2004]={ + ["name"]="Explorer's Backpack" + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/mall_daily.lua.meta b/lua/app/config/strings/en/mall_daily.lua.meta new file mode 100644 index 00000000..4f07d27a --- /dev/null +++ b/lua/app/config/strings/en/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 769e1486cd8bdd741a1b59f9072b2dee +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/mall_treasure.lua b/lua/app/config/strings/en/mall_treasure.lua new file mode 100644 index 00000000..358f7a5f --- /dev/null +++ b/lua/app/config/strings/en/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + ["name"]="Gem Shards" + }, + [2]={ + ["name"]="Gem Sack" + }, + [3]={ + ["name"]="Gem Pack" + }, + [4]={ + ["name"]="Gem Box" + }, + [5]={ + ["name"]="Gem Bucket" + }, + [6]={ + ["name"]="Gem Cart" + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/mall_treasure.lua.meta b/lua/app/config/strings/en/mall_treasure.lua.meta new file mode 100644 index 00000000..64286df7 --- /dev/null +++ b/lua/app/config/strings/en/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ecbad3159211f0a4bbfd362d23c75fab +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/mastery.lua b/lua/app/config/strings/en/mastery.lua new file mode 100644 index 00000000..cd1247ae --- /dev/null +++ b/lua/app/config/strings/en/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + ["desc"]="Base Attack Recovery" + }, + [2]={ + ["desc"]="Bonus Gold" + }, + [3]={ + ["desc"]="Bonus ATK" + }, + [4]={ + ["desc"]="Bonus HP" + }, + [5]={ + ["desc"]="Auto Mode Bonus" + }, + [6]={ + ["desc"]="Bonus Base Attack DMG" + }, + [7]={ + ["desc"]="Bonus Gold" + }, + [8]={ + ["desc"]="Bonus ATK" + }, + [9]={ + ["desc"]="Bonus HP" + }, + [10]={ + ["desc"]="Overheal" + }, + [11]={ + ["desc"]="Auto Mode Bonus" + }, + [12]={ + ["desc"]="Bonus Dodge" + }, + [13]={ + ["desc"]="Bonus Gold" + }, + [14]={ + ["desc"]="Bonus ATK" + }, + [15]={ + ["desc"]="Bonus HP" + }, + [16]={ + ["desc"]="Auto Mode Bonus" + }, + [17]={ + ["desc"]="Bonus Base Attack DMG" + }, + [18]={ + ["desc"]="Bonus Gold" + }, + [19]={ + ["desc"]="Bonus ATK" + }, + [20]={ + ["desc"]="Bonus HP" + }, + [21]={ + ["desc"]="Dodge when taking damage" + }, + [22]={ + ["desc"]="Auto Mode Bonus" + }, + [23]={ + ["desc"]="Bonus Dodge" + }, + [24]={ + ["desc"]="Bonus Gold" + }, + [25]={ + ["desc"]="Bonus ATK" + }, + [26]={ + ["desc"]="Bonus HP" + }, + [27]={ + ["desc"]="Auto Mode Bonus" + }, + [28]={ + ["desc"]="Bonus Base Attack DMG" + }, + [29]={ + ["desc"]="Bonus Gold" + }, + [30]={ + ["desc"]="Bonus ATK" + }, + [31]={ + ["desc"]="Bonus HP" + }, + [32]={ + ["desc"]="Auto Attack Speed" + }, + [33]={ + ["desc"]="Auto Mode Bonus" + }, + [34]={ + ["desc"]="Bonus Dodge" + }, + [35]={ + ["desc"]="Bonus Gold" + }, + [36]={ + ["desc"]="Bonus ATK" + }, + [37]={ + ["desc"]="Bonus HP" + }, + [38]={ + ["desc"]="Auto Mode Bonus" + }, + [39]={ + ["desc"]="Bonus Base Attack DMG" + }, + [40]={ + ["desc"]="Bonus Gold" + }, + [41]={ + ["desc"]="Bonus ATK" + }, + [42]={ + ["desc"]="Bonus HP" + }, + [43]={ + ["desc"]="Skill Recovery" + }, + [44]={ + ["desc"]="Auto Mode Bonus" + }, + [45]={ + ["desc"]="Bonus Dodge" + }, + [46]={ + ["desc"]="Bonus Gold" + }, + [47]={ + ["desc"]="Bonus ATK" + }, + [48]={ + ["desc"]="Bonus HP" + }, + [49]={ + ["desc"]="Auto Mode Bonus" + }, + [50]={ + ["desc"]="Bonus Base Attack DMG" + }, + [51]={ + ["desc"]="Bonus Gold" + }, + [52]={ + ["desc"]="Bonus ATK" + }, + [53]={ + ["desc"]="Bonus HP" + }, + [54]={ + ["desc"]="Base Attack Recovery" + }, + [55]={ + ["desc"]="Auto Mode Bonus" + }, + [56]={ + ["desc"]="Bonus Dodge" + }, + [57]={ + ["desc"]="Bonus Gold" + }, + [58]={ + ["desc"]="Bonus ATK" + }, + [59]={ + ["desc"]="Bonus HP" + }, + [60]={ + ["desc"]="Auto Mode Bonus" + }, + [61]={ + ["desc"]="Bonus Base Attack DMG" + }, + [62]={ + ["desc"]="Bonus Gold" + }, + [63]={ + ["desc"]="Bonus ATK" + }, + [64]={ + ["desc"]="Bonus HP" + }, + [65]={ + ["desc"]="Overheal" + }, + [66]={ + ["desc"]="Auto Mode Bonus" + }, + [67]={ + ["desc"]="Bonus Dodge" + }, + [68]={ + ["desc"]="Bonus Gold" + }, + [69]={ + ["desc"]="Bonus ATK" + }, + [70]={ + ["desc"]="Bonus HP" + }, + [71]={ + ["desc"]="Auto Mode Bonus" + }, + [72]={ + ["desc"]="Bonus Base Attack DMG" + }, + [73]={ + ["desc"]="Bonus Gold" + }, + [74]={ + ["desc"]="Bonus ATK" + }, + [75]={ + ["desc"]="Bonus HP" + }, + [76]={ + ["desc"]="Dodge when taking damage" + }, + [77]={ + ["desc"]="Auto Mode Bonus" + }, + [78]={ + ["desc"]="Bonus Dodge" + }, + [79]={ + ["desc"]="Bonus Gold" + }, + [80]={ + ["desc"]="Bonus ATK" + }, + [81]={ + ["desc"]="Bonus HP" + }, + [82]={ + ["desc"]="Auto Mode Bonus" + }, + [83]={ + ["desc"]="Bonus Base Attack DMG" + }, + [84]={ + ["desc"]="Bonus Gold" + }, + [85]={ + ["desc"]="Bonus ATK" + }, + [86]={ + ["desc"]="Bonus HP" + }, + [87]={ + ["desc"]="Skill Recovery" + }, + [88]={ + ["desc"]="Auto Mode Bonus" + }, + [89]={ + ["desc"]="Bonus Dodge" + }, + [90]={ + ["desc"]="Bonus Gold" + }, + [91]={ + ["desc"]="Bonus ATK" + }, + [92]={ + ["desc"]="Bonus HP" + }, + [93]={ + ["desc"]="Auto Mode Bonus" + }, + [94]={ + ["desc"]="Bonus Base Attack DMG" + }, + [95]={ + ["desc"]="Bonus Gold" + }, + [96]={ + ["desc"]="Bonus ATK" + }, + [97]={ + ["desc"]="Bonus HP" + }, + [98]={ + ["desc"]="Base Attack Recovery" + }, + [99]={ + ["desc"]="Auto Mode Bonus" + }, + [100]={ + ["desc"]="Bonus Dodge" + }, + [101]={ + ["desc"]="Bonus Gold" + }, + [102]={ + ["desc"]="Bonus ATK" + }, + [103]={ + ["desc"]="Bonus HP" + }, + [104]={ + ["desc"]="Auto Mode Bonus" + }, + [105]={ + ["desc"]="Bonus Base Attack DMG" + }, + [106]={ + ["desc"]="Bonus Gold" + }, + [107]={ + ["desc"]="Bonus ATK" + }, + [108]={ + ["desc"]="Bonus HP" + }, + [109]={ + ["desc"]="Overheal" + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/mastery.lua.meta b/lua/app/config/strings/en/mastery.lua.meta new file mode 100644 index 00000000..399bd2a9 --- /dev/null +++ b/lua/app/config/strings/en/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 897f46e84b6c62244ac1b7bd22eae7cf +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/mine_research.lua b/lua/app/config/strings/en/mine_research.lua new file mode 100644 index 00000000..9d410f92 --- /dev/null +++ b/lua/app/config/strings/en/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [1]={ + ["desc"]="Run for knowledge!" + }, + [2]={ + ["desc"]="Learn to make torches with dry grass." + }, + [3]={ + ["desc"]="It's cold outside... Get yourself wrapped up." + }, + [4]={ + ["desc"]="The torch is burning up! Get more dry grass!" + }, + [5]={ + ["desc"]="Smash the monsters with these... pebbles?" + }, + [6]={ + ["desc"]="Learn and make progress, right?" + }, + [7]={ + ["desc"]="Feed my appetite for knowledge!" + }, + [8]={ + ["desc"]="Still I can't feel the warmth. Where's the wardrobe anyway?" + }, + [9]={ + ["desc"]="How about making a stone dagger?" + }, + [10]={ + ["desc"]="Those dry branches are better materials for torches." + }, + [11]={ + ["desc"]="Cloth armors help me stand against rock attacks!" + }, + [12]={ + ["desc"]="The branches are burnt up! Get more!" + }, + [13]={ + ["desc"]="Behold this rusty, and old sword!" + }, + [14]={ + ["desc"]="Tying my hair with the roof beam helps me study harder." + }, + [15]={ + ["desc"]="I learned about some useless stuff." + }, + [16]={ + ["desc"]="Maybe iron armor is better against rock attacks." + }, + [17]={ + ["desc"]="This rusty, dumb iron sheet is shining, whoa!" + }, + [18]={ + ["desc"]="Finally I know how to make a torch." + }, + [19]={ + ["desc"]="Where is my helmet?" + }, + [20]={ + ["desc"]="Quickly, I need more torches!" + }, + [21]={ + ["desc"]="This rusty iron sheet is actually a steel sword?" + }, + [22]={ + ["desc"]="Stab my own legs with the sword when feeling sleepy - that's how I kept learning." + }, + [23]={ + ["desc"]="I learned about some more useless stuff." + }, + [24]={ + ["desc"]="I need an armband. It hurts!" + }, + [25]={ + ["desc"]="Keep bundling up!" + }, + [26]={ + ["desc"]="Sharpen this blade..." + }, + [27]={ + ["desc"]="Keep bundling up!" + }, + [28]={ + ["desc"]="Sharpen this blade..." + }, + [29]={ + ["desc"]="Keep bundling up!" + }, + [30]={ + ["desc"]="Sharpen this blade..." + }, + [31]={ + ["desc"]="Keep bundling up!" + }, + [32]={ + ["desc"]="Sharpen this blade..." + }, + [33]={ + ["desc"]="Keep bundling up!" + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/mine_research.lua.meta b/lua/app/config/strings/en/mine_research.lua.meta new file mode 100644 index 00000000..067e7539 --- /dev/null +++ b/lua/app/config/strings/en/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5444b205096c54a418fa322232c8fb9a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/monster_base.lua b/lua/app/config/strings/en/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/en/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/monster_base.lua.meta b/lua/app/config/strings/en/monster_base.lua.meta new file mode 100644 index 00000000..b78e154e --- /dev/null +++ b/lua/app/config/strings/en/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0336fd49c9be3c143b53420d3665045f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/runes.lua b/lua/app/config/strings/en/runes.lua new file mode 100644 index 00000000..5bbf55f8 --- /dev/null +++ b/lua/app/config/strings/en/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + ["name"]="Shade" + }, + [50102]={ + ["name"]="Enlighten" + }, + [50103]={ + ["name"]="Berserker" + }, + [50104]={ + ["name"]="Smash" + }, + [50201]={ + ["name"]="Recycle" + }, + [50202]={ + ["name"]="Agile" + }, + [50203]={ + ["name"]="Suppress" + }, + [50204]={ + ["name"]="Technique" + }, + [50301]={ + ["name"]="Toxic" + }, + [50302]={ + ["name"]="Bone-deep" + }, + [50303]={ + ["name"]="Poisoned" + }, + [50304]={ + ["name"]="Weakness" + }, + [50401]={ + ["name"]="Multi-attack" + }, + [50402]={ + ["name"]="Upstroke" + }, + [50403]={ + ["name"]="Instinct" + }, + [50404]={ + ["name"]="Valor" + }, + [50501]={ + ["name"]="Light-armor" + }, + [50502]={ + ["name"]="Cloth" + }, + [50503]={ + ["name"]="Leather" + }, + [50504]={ + ["name"]="Heavy-armor" + }, + [50601]={ + ["name"]="Edge-runner" + }, + [50602]={ + ["name"]="Wand" + }, + [50603]={ + ["name"]="Blade-might" + }, + [50604]={ + ["name"]="Lance-soul" + }, + [50701]={ + ["name"]="Fury" + }, + [50702]={ + ["name"]="Netherwind" + }, + [50703]={ + ["name"]="Flawless" + }, + [50704]={ + ["name"]="Cloud-flow" + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/runes.lua.meta b/lua/app/config/strings/en/runes.lua.meta new file mode 100644 index 00000000..0f1bd4ae --- /dev/null +++ b/lua/app/config/strings/en/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 57631c8ff28f1724280565eba1ac7d1e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/skill.lua b/lua/app/config/strings/en/skill.lua new file mode 100644 index 00000000..1c58d36f --- /dev/null +++ b/lua/app/config/strings/en/skill.lua @@ -0,0 +1,742 @@ +local skill = { + [11011]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11012]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11016]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21011]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21014]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21015]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31011]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31012]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31013]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41011]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target." + }, + [41012]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41013]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [11021]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11022]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11026]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21021]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21024]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21025]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31021]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31022]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31023]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41021]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target." + }, + [41022]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41023]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [11031]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11032]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11036]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21031]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21034]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21035]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31031]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31032]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31033]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41031]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target, and applies 3 stacks of Spell Mark to the target." + }, + [41032]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41033]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [11041]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11042]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11046]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21041]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21044]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21045]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31041]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31042]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31043]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41041]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target." + }, + [41042]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41043]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [11051]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11052]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11056]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21051]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21054]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21055]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31051]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31052]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31053]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41051]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target." + }, + [41052]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41053]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [11061]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11062]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11066]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21061]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21064]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21065]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31061]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31062]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31063]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41061]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target." + }, + [41062]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41063]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [11071]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11072]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11076]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21071]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21074]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21075]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31071]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31072]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31073]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41071]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target." + }, + [41072]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41073]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [11081]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11082]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11086]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21081]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21084]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21085]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31081]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31082]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31083]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41081]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target." + }, + [41082]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41083]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [11091]={ + ["name"]="Blood Strike", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [11092]={ + ["name"]="Earth Shatter", + ["desc"]="After landing every 15 base attacks, releases an Earth-shattering Slash forward, dealing damage by {0}% of your ATK." + }, + [11096]={ + ["name"]="Mountain Smash", + ["desc"]="After landing every 25 base attacks, summons 3 swords falling from above, dealing damage by {0}% of your ATK." + }, + [21091]={ + ["name"]="Whirling Blade", + ["desc"]="After landing every 8 base attacks, summons 3 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [21094]={ + ["name"]="Toxic Haze", + ["desc"]="After landing every 15 base attacks, lets out a Toxic Haze, lasting 5 sec, which deals damage by {0}% of your ATK every 1 sec,and impose poisoning." + }, + [21095]={ + ["name"]="Bladed Death", + ["desc"]="After landing every 25 base attacks, summons 6 daggers striking towards your enemy, dealing damage by {0}% of your ATK." + }, + [31091]={ + ["name"]="Crescent Slash", + ["desc"]="After landing every 8 base attacks, slashes forward once, dealing damage by {0}% of your ATK." + }, + [31092]={ + ["name"]="Lance Flurry", + ["desc"]="After landing every 15 base attacks, you smash enemy unit around with your weapon, dealing damage by {0}% of your ATK." + }, + [31093]={ + ["name"]="Lance Rain", + ["desc"]="After landing every 25 base attacks, summons 8 lances falling from above, dealing damage by {0}% of your ATK." + }, + [41091]={ + ["name"]="Tornado", + ["desc"]="After landing every 8 base attacks, releases a Tornado forward, dealing damage by {0}% of your ATK, and applies 3 stacks of Spell Mark to the target." + }, + [41092]={ + ["name"]="Everfrozen Zone", + ["desc"]="After landing every 15 base attacks, summons a Frost Rune beneath you, lasting 5 sec, which deals damage by {0}% of your ATK every 0.5 sec, and applies 1 stack of Spell Mark to the target." + }, + [41093]={ + ["name"]="Dark Echo", + ["desc"]="After landing 25 base attacks, detonates all Spell Marks on enemy units. Each stack of Spell Mark deals damage by {0}%of your ATK." + }, + [400011]={ + ["name"]="Lightning Rod", + ["desc"]="For every 3 times you trigger Weapon Skill, you will summon 2 Lightning Strikes to attack knocked-down enemy units, each dealing AoE DMG by {0}% of your ATK." + }, + [400021]={ + ["name"]="Sachet of Tranquility", + ["desc"]="Increases ATK by {0}% when in Guarding Area." + }, + [400031]={ + ["name"]="Bandit's Ankle Boots", + ["desc"]="Each successful Dodge increases ATK by {0}% for 5 sec. This effect cannot occur more than once every 15 seconds." + }, + [400041]={ + ["name"]="Gloves of Dexterity", + ["desc"]="When in Guarding Area, increases Knock-back DMG by {0}% and extends the duration of Knock-down effects by 1 sec." + }, + [400051]={ + ["name"]="Assassin's Dagger", + ["desc"]="When in Guarding Area, improves the Crit Chance of base attacks by 20%, Crit Damage is increased by {0}%" + }, + [401011]={ + ["name"]="Legacy Talisman", + ["desc"]="After landing every 5 base attacks, release a blast wave that attacks the closest enemy unit behind you, dealing damage by {0}% of your ATK." + }, + [401021]={ + ["name"]="Heavy Iron Armor", + ["desc"]="When taking damage, knocks back all minions around and deals damage by {0}% of ATK. This effect cannot occur more than once every 15 seconds." + }, + [401031]={ + ["name"]="Gloves of Strength", + ["desc"]="When you successfully knock back an enemy unit, you will gain {0}% additional Knock-back DMG and you can knock back 3 additional enemy units." + }, + [401041]={ + ["name"]="Cloak of Disguise", + ["desc"]="Increases Hero's ATK by {0}% when he/she is at full HP." + }, + [401051]={ + ["name"]="Tiger Talon", + ["desc"]="When in Guarding Area, increases Knock-back DMG by {0}%." + }, + [402011]={ + ["name"]="Darkiron Cone", + ["desc"]="When attacking Knocked-down enemy units, lands additional attack blows on them, each dealing damage by {0}% of ATK." + }, + [402021]={ + ["name"]="Battlemaster's Ring", + ["desc"]="Increases ATK by {0}% when HP is below 30%." + }, + [402031]={ + ["name"]="Crystal of Thunder", + ["desc"]="For every 3 times you trigger Weapon Skill, you will summon 2 Lightning Strikes to attack knocked-down enemy units, each dealing AoE DMG by {0}% of your ATK." + }, + [402041]={ + ["name"]="Frost-gem Mask", + ["desc"]="Increases ATK by {0}% when in Guarding Area." + }, + [402051]={ + ["name"]="Chain Mail", + ["desc"]="Each successful Dodge increases ATK by {0}% for 5 sec. This effect cannot occur more than once every 15 seconds." + }, + [403011]={ + ["name"]="Master's Claymore", + ["desc"]="When in Guarding Area, increases Knock-back DMG by {0}% and extends the duration of Knock-down effects by 1 sec." + }, + [403021]={ + ["name"]="Spine of Lancination", + ["desc"]="When in Guarding Area, improves the Crit Chance of base attacks by 20%, Crit Damage is increased by {0}%" + }, + [403031]={ + ["name"]="Sorcerer's Crystal Aegis", + ["desc"]="After landing every 5 base attacks, release a blast wave that attacks the closest enemy unit behind you, dealing damage by {0}% of your ATK." + }, + [403041]={ + ["name"]="Thorn Armor", + ["desc"]="When taking damage, knocks back all minions around and deals damage by {0}% of ATK. This effect cannot occur more than once every 15 seconds." + }, + [403051]={ + ["name"]="Golden Wristguard", + ["desc"]="When you successfully knock back an enemy unit, you will gain {0}% additional Knock-back DMG and you can knock back 5 additional enemy units." + }, + [404011]={ + ["name"]="Crown of Resplendence", + ["desc"]="Increases Hero's ATK by {0}% when he/she is at full HP." + }, + [404021]={ + ["name"]="Bone Crusher", + ["desc"]="When in Guarding Area, increases Knock-back DMG by {0}%." + }, + [404031]={ + ["name"]="Lance of Longinus", + ["desc"]="When attacking Knocked-down enemy units, lands additional attack blows on them, each dealing damage by {0}% of ATK." + }, + [404041]={ + ["name"]="Spellblade of Bloodlust", + ["desc"]="Increases ATK by {0}% when HP is below 30%." + }, + [404051]={ + ["name"]="Thor's Hammer", + ["desc"]="For every 3 times you trigger Weapon Skill, you will summon 2 Lightning Strikes to attack knocked-down enemy units, each dealing AoE DMG by {0}% of your ATK." + }, + [405011]={ + ["name"]="Key of Wisdom", + ["desc"]="Increases ATK by {0}% when in Guarding Area." + }, + [405021]={ + ["name"]="Nightingale's Wings", + ["desc"]="Each successful Dodge increases ATK by {0}% for 5 sec. This effect cannot occur more than once every 15 seconds." + }, + [405031]={ + ["name"]="Horseman's Glory", + ["desc"]="When in Guarding Area, increases Knock-back DMG by {0}% and extends the duration of Knock-down effects by 1 sec." + }, + [405041]={ + ["name"]="Sight of Truth", + ["desc"]="When in Guarding Area, improves the Crit Chance of base attacks by 20%, Crit Damage is increased by {0}%" + }, + [405051]={ + ["name"]="Teardrop of Phoenix", + ["desc"]="After landing every 5 base attacks, release a blast wave that attacks the closest enemy unit behind you, dealing damage by {0}% of your ATK." + }, + [406011]={ + ["name"]="Totem of Earthshatterer", + ["desc"]="When taking damage, knocks back all minions around and deals damage by {0}% of ATK. This effect cannot occur more than once every 15 seconds." + }, + [406021]={ + ["name"]="Neptune's Trident", + ["desc"]="When you successfully knock back an enemy unit, you will gain {0}% additional Knock-back DMG and you can knock back 5 additional enemy units." + }, + [406031]={ + ["name"]="Sunstrider's Longbow", + ["desc"]="Increases Hero's ATK by {0}% when he/she is at full HP." + }, + [406041]={ + ["name"]="Edge of Void", + ["desc"]="When in Guarding Area, increases Knock-back DMG by {0}%." + }, + [406051]={ + ["name"]="Gungnir, the Lance of Eternity", + ["desc"]="When attacking Knocked-down enemy units, lands additional attack blows on them, each dealing damage by {0}% of ATK." + }, + [406061]={ + ["name"]="Armageddon", + ["desc"]="Increases ATK by {0}% when HP is below 30%." + }, + [501011]={ + ["name"]="Shade", + ["desc"]="Each time when a Skill is triggered, there is 20% chance to trigger once more." + }, + [501021]={ + ["name"]="Enlighten", + ["desc"]="When at full HP, there is 50% chance to trigger Skill once more." + }, + [501031]={ + ["name"]="Berserker", + ["desc"]="When taking damage, increases Skill DMG by 30% for 5 sec. This effect cannot occur more than once every 5 seconds." + }, + [501041]={ + ["name"]="Smash", + ["desc"]="Base attack blows on Stunned enemy units deal 100% additional damage." + }, + [502011]={ + ["name"]="Recycle", + ["desc"]="After each detonation, 20% of the Spell Mark stacks will be retained." + }, + [502021]={ + ["name"]="Agile", + ["desc"]="Increases Dodge by 10%." + }, + [502022]={ + ["name"]="Agile", + ["desc"]="Each successful Dodge adds 2 stacks of Spell Mark to all enemy units." + }, + [502031]={ + ["name"]="Suppress", + ["desc"]="When landing a critical strike, apply 1 stack of Spell Mark to the base attack target." + }, + [502041]={ + ["name"]="Technique", + ["desc"]="When knocking an enemy unit back, there is 30% chance to apply 1 stack of Spell Mark to it." + }, + [503011]={ + ["name"]="Toxic", + ["desc"]="There is 30% chance to deal 100% additional Poison DMG." + }, + [503021]={ + ["name"]="Bone-deep", + ["desc"]="Each stack of Poison increases total Poison DMG by 5%." + }, + [503031]={ + ["name"]="Poisoned", + ["desc"]="When in Guarding Area, each base attack blow has 50% chance to apply 1 stack of Poison to the target." + }, + [503041]={ + ["name"]="Weakness", + ["desc"]="Skills deal 50% additional damage to Poisoned enemy units." + }, + [504011]={ + ["name"]="Multi-attack", + ["desc"]="20% chance of releasing 1 additional weapon skill each time it is cast" + }, + [504021]={ + ["name"]="Upstroke", + ["desc"]="When knocking an enemy unit back, there is 20% chance to release Skill 3 once." + }, + [504031]={ + ["name"]="Instinct", + ["desc"]="After entering battle, releases Skill 2 once every 10 sec." + }, + [504041]={ + ["name"]="Valor", + ["desc"]="Skills have 30% chance to deal 200% damage." + }, + [505011]={ + ["name"]="Light-armor", + ["desc"]="When [Sword] Skill is triggered, extends Knock-back duration by 0.5 sec and increases base attack DMG by 20% for 3 sec. This effect cannot occur more than once every 3 seconds." + }, + [505021]={ + ["name"]="Cloth", + ["desc"]="When [Staff] Skill is triggered, applies 2 stacks of Spell Mark to the target." + }, + [505031]={ + ["name"]="Leather", + ["desc"]="When [Dagger] Skill is triggered, there is 20% chance to release Skill 1 once." + }, + [505041]={ + ["name"]="Heavy-armor", + ["desc"]="When [Lance] Skill is triggered, there is 20% chance to release Skill 2 once." + }, + [506011]={ + ["name"]="Edge-runner", + ["desc"]="[Sword] Increases Crit Chance of base attacks by 100%." + }, + [506021]={ + ["name"]="Wand", + ["desc"]="[Staff] Increases DMG of Spell Mark detonation by 50%." + }, + [506031]={ + ["name"]="Blade-might", + ["desc"]="[Dagger] Extends Poison duration by 5 sec." + }, + [506041]={ + ["name"]="Lance-soul", + ["desc"]="When using [Lance], Skill 2 damage is increased by 100%" + }, + [507011]={ + ["name"]="Fury", + ["desc"]="Crit Rate +10%" + }, + [507021]={ + ["name"]="Netherwind", + ["desc"]="Increases Dodge Chance by 10%." + }, + [507031]={ + ["name"]="Flawless", + ["desc"]="Increases base attack DMG by 20%." + }, + [507041]={ + ["name"]="Cloud-flow", + ["desc"]="Increases Knock-back DMG by 30%." + }, + [600011]={ + ["name"]="Attack to restore life", + ["desc"]="For every 10 attacks, heals by 20% of max HP." + }, + [600021]={ + ["name"]="Overheal", + ["desc"]="Overheal effects will convert into a shield that absorbs up to 30% of max HP." + }, + [600031]={ + ["name"]="Dodge when taking damage", + ["desc"]="When taking damage, increases Dodge Chance by 50% for 3 sec. This effect cannot occur more than once every 30 seconds." + }, + [600041]={ + ["name"]="Auto Attack Speed", + ["desc"]="Reduces base attack interval to 0.35 sec." + }, + [600051]={ + ["name"]="Skill restores life", + ["desc"]="Grants 30% chance to restore 15% HP when using Skills." + }, + [600061]={ + ["name"]="Attack to restore life", + ["desc"]="For every 10 attacks, heals by 30% of max HP." + }, + [600071]={ + ["name"]="Overheal", + ["desc"]="Overheal effects will convert into a shield that absorbs up to 60% of max HP." + }, + [600081]={ + ["name"]="Dodge when taking damage", + ["desc"]="When taking damage, increases Dodge Chance by 50% for 5 sec. This effect cannot occur more than once every 30 seconds." + }, + [600091]={ + ["name"]="Skill restores life", + ["desc"]="Grants 30% chance to restore 15% HP when using Skills." + }, + [600101]={ + ["name"]="Attack to restore life", + ["desc"]="For every 10 attacks, heals by 40% of max HP." + }, + [600111]={ + ["name"]="Overheal", + ["desc"]="Overheal effects will convert into a shield that absorbs up to 90% of max HP." + } +} +local config = { +data=skill,count=184 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/skill.lua.meta b/lua/app/config/strings/en/skill.lua.meta new file mode 100644 index 00000000..76048071 --- /dev/null +++ b/lua/app/config/strings/en/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c3abb73b76579cc44b49034462c3a648 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/task.lua b/lua/app/config/strings/en/task.lua new file mode 100644 index 00000000..271f293a --- /dev/null +++ b/lua/app/config/strings/en/task.lua @@ -0,0 +1,130 @@ +local task = { + [1]={ + ["desc"]="Defeat {0} enemies", + ["tutorial_desc"]="Defeat Enemies" + }, + [2]={ + ["desc"]="Pass Level {0}", + ["tutorial_desc"]="Passing Levels" + }, + [3]={ + ["desc"]="Summon {0} time(s)", + ["tutorial_desc"]="Summon" + }, + [4]={ + ["desc"]="Watch ads {0} time(s)", + ["tutorial_desc"]="Watch ads" + }, + [5]={ + ["desc"]="Finish Daily Quest", + ["tutorial_desc"]="Finish Daily Quest" + }, + [6]={ + ["desc"]="Sign in for {0} day(s)", + ["tutorial_desc"]="Accumulate check-in days" + }, + [7]={ + ["desc"]="Summon Weapon {0} time(s)", + ["tutorial_desc"]="Summon Weapons" + }, + [8]={ + ["desc"]="Summon Armor {0} time(s)", + ["tutorial_desc"]="Summon Armors" + }, + [9]={ + ["desc"]="Summon Heirloom {0} time(s)", + ["tutorial_desc"]="Summon Heirlooms" + }, + [10]={ + ["desc"]="Finish Diamond Instance {0}", + ["tutorial_desc"]="Finish Diamond Instances" + }, + [11]={ + ["desc"]="Finish Gold Instance {0}", + ["tutorial_desc"]="Finish Gold Instances" + }, + [12]={ + ["desc"]="Finish Mithril Instance {0}", + ["tutorial_desc"]="Finish Mithril Instances" + }, + [13]={ + ["desc"]="Finish Special Instance {0}", + ["tutorial_desc"]="Finish Special Instance" + }, + [14]={ + ["desc"]="Reach the Rank of {0} in Arena", + ["tutorial_desc"]="Arena Ranks" + }, + [15]={ + ["desc"]="Use Torch {0} time(s)", + ["tutorial_desc"]="Use Torch" + }, + [16]={ + ["desc"]="Use Pyroshell {0} time(s)", + ["tutorial_desc"]="Use Pyroshell" + }, + [17]={ + ["desc"]="Use Candle of Divinity {0} time(s)", + ["tutorial_desc"]="Use Candle of Divinity" + }, + [18]={ + ["desc"]="Finish {0} Research(es)", + ["tutorial_desc"]="Finish Research(es)" + }, + [19]={ + ["desc"]="Dispel {0} Fogged Zone(s)", + ["tutorial_desc"]="Dispel Fogged Zone(s)" + }, + [20]={ + ["desc"]="Explore and advance {0} meter(s)", + ["tutorial_desc"]="Explore and Advance" + }, + [21]={ + ["desc"]="Claim Blessing {0} time(s)", + ["tutorial_desc"]="Claim Blessing" + }, + [22]={ + ["desc"]="Get {0} Rune(s)", + ["tutorial_desc"]="Get Rune(s)" + }, + [23]={ + ["desc"]="Reinforce Runes {0} time(s)", + ["tutorial_desc"]="Reinforce Runes" + }, + [24]={ + ["desc"]="Upgrade ATK {0} time(s)", + ["tutorial_desc"]="Upgrade ATK" + }, + [25]={ + ["desc"]="Upgrade HP {0} time(s)", + ["tutorial_desc"]="Upgrade HP" + }, + [26]={ + ["desc"]="Try passing levels {0} time(s)", + ["tutorial_desc"]="Try passing levels" + }, + [27]={ + ["desc"]="Finish Diamond Instance {0} time(s)", + ["tutorial_desc"]="Number of Diamond Instance completed" + }, + [28]={ + ["desc"]="Finish Gold Instance {0} time(s)", + ["tutorial_desc"]="Number of Gold Instance completed" + }, + [29]={ + ["desc"]="Finish Mithril Instance {0} time(s)", + ["tutorial_desc"]="Number of Mithril Instance completed" + }, + [30]={ + ["desc"]="Finish Special Instance {0} time(s)", + ["tutorial_desc"]="Number of Special Instance completed" + }, + [31]={ + ["desc"]="Try Arena battles {0} time(s)", + ["tutorial_desc"]="Try Arena battles" + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/task.lua.meta b/lua/app/config/strings/en/task.lua.meta new file mode 100644 index 00000000..7b1998a0 --- /dev/null +++ b/lua/app/config/strings/en/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0449613e00cf588479402010a94bf984 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/task_daily.lua b/lua/app/config/strings/en/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/en/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/task_daily.lua.meta b/lua/app/config/strings/en/task_daily.lua.meta new file mode 100644 index 00000000..9f781d28 --- /dev/null +++ b/lua/app/config/strings/en/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 19987db9d9a2d684e824e9563a9b0fb6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/tutorial.lua b/lua/app/config/strings/en/tutorial.lua new file mode 100644 index 00000000..f7e161c0 --- /dev/null +++ b/lua/app/config/strings/en/tutorial.lua @@ -0,0 +1,72 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + ["value"]="It's time to start the selection process!" + }, + ["TUTORIAL_TXT_2"]={ + ["value"]="It's time to put on a show!" + }, + ["TUTORIAL_TXT_3"]={ + ["value"]="You're going to face tough foes! Get yourself prepared and well trained!" + }, + ["TUTORIAL_TXT_4"]={ + ["value"]="Hold to train yourself faster. Reach Lv. 5 first." + }, + ["TUTORIAL_TXT_5"]={ + ["value"]="You have unlocked Weapons. Now let's summon some weapons first." + }, + ["TUTORIAL_TXT_6"]={ + ["value"]="That's a lot. Equip the weapon you like." + }, + ["TUTORIAL_TXT_7"]={ + ["value"]="Same weapons you get can be used for Reinforcement, which grants more Stats." + }, + ["TUTORIAL_TXT_8"]={ + ["value"]="Tap \"Reinforce All\" to reinforce all available weapons. Owning high level weapons is another way to get Stats boost." + }, + ["TUTORIAL_TXT_9"]={ + ["value"]="After certain base attacks landed, your weapon will release its unique Weapon Skill." + }, + ["TUTORIAL_TXT_10"]={ + ["value"]="You have unlocked Armors. Go and summon some now." + }, + ["TUTORIAL_TXT_11"]={ + ["value"]="Armors go into Head and Body slots. Body Armor increases your Max HP and Head Armor increases your ATK." + }, + ["TUTORIAL_TXT_12"]={ + ["value"]="Same as weapons, they can be Reinforced for higher Stats." + }, + ["TUTORIAL_TXT_13"]={ + ["value"]="Do Auto Combat to pass levels faster!" + }, + ["TUTORIAL_TXT_14"]={ + ["value"]="Heirlooms are now available. Go and get some!" + }, + ["TUTORIAL_TXT_15"]={ + ["value"]="You don't see these Heirlooms quite often. Let's learn how to use them." + }, + ["TUTORIAL_TXT_16"]={ + ["value"]="Reinforced Heirlooms also grant higher Stats." + }, + ["TUTORIAL_TXT_17"]={ + ["value"]="Keep passing levels to unlock more Heirloom slots!" + }, + ["TUTORIAL_TXT_18"]={ + ["value"]="We can now unlock more Mastered Skills, go and see!" + }, + ["TUTORIAL_TXT_19"]={ + ["value"]="The castle exploration is open and is said to be full of treasures." + }, + ["TUTORIAL_TXT_20"]={ + ["value"]="Use the torch to start exploring~" + }, + ["TUTORIAL_TXT_21"]={ + ["value"]="According to the instructions, keep exploring downwards to get more treasure!" + }, + ["TUTORIAL_TXT_22"]={ + ["value"]="Want to know how weapons, defences and heirlooms relate to each other? Click here!" + } +} +local config = { +data=tutorial,count=22 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/tutorial.lua.meta b/lua/app/config/strings/en/tutorial.lua.meta new file mode 100644 index 00000000..384811a5 --- /dev/null +++ b/lua/app/config/strings/en/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 649fd22e71204b54dbbc4dace25c7a86 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/en/tutorialtask.lua b/lua/app/config/strings/en/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/en/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/en/tutorialtask.lua.meta b/lua/app/config/strings/en/tutorialtask.lua.meta new file mode 100644 index 00000000..a3754b6f --- /dev/null +++ b/lua/app/config/strings/en/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e1a7e2899c90826479f34b4f5a8000bf +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr.meta b/lua/app/config/strings/fr.meta new file mode 100644 index 00000000..e8acf6bc --- /dev/null +++ b/lua/app/config/strings/fr.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17cf910b83b6b384bb180d54a5a87b9b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/fr/act_battle_pass_task.lua b/lua/app/config/strings/fr/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/fr/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/act_battle_pass_task.lua.meta b/lua/app/config/strings/fr/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..538a34bd --- /dev/null +++ b/lua/app/config/strings/fr/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f1ce53792bb61334189d202753fcc4af +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/act_fund.lua b/lua/app/config/strings/fr/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/fr/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/act_fund.lua.meta b/lua/app/config/strings/fr/act_fund.lua.meta new file mode 100644 index 00000000..9b116287 --- /dev/null +++ b/lua/app/config/strings/fr/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 13e1e9777e26b4e4085fc4c1ee017aae +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/act_sevenday_quest.lua b/lua/app/config/strings/fr/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/fr/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/act_sevenday_quest.lua.meta b/lua/app/config/strings/fr/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..9a46bcae --- /dev/null +++ b/lua/app/config/strings/fr/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ec2fdf2f59433324ebc22cc310e59e49 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/arena.lua b/lua/app/config/strings/fr/arena.lua new file mode 100644 index 00000000..6dae204b --- /dev/null +++ b/lua/app/config/strings/fr/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + ["desc"]="Guerrier Stagiaire III" + }, + [2]={ + ["desc"]="Guerrier Stagiaire II" + }, + [3]={ + ["desc"]="Guerrier Stagiaire I" + }, + [4]={ + ["desc"]="Guerrier officiel III" + }, + [5]={ + ["desc"]="Guerrier officiel II" + }, + [6]={ + ["desc"]="Guerrier officiel I" + }, + [7]={ + ["desc"]="Chevalier d'argent III" + }, + [8]={ + ["desc"]="Chevalier d'argent II" + }, + [9]={ + ["desc"]="Chevalier d'argent I" + }, + [10]={ + ["desc"]="Chevalier d'or III" + }, + [11]={ + ["desc"]="Chevalier d'or II" + }, + [12]={ + ["desc"]="Chevalier d'or I" + }, + [13]={ + ["desc"]="Seigneur de guerre III" + }, + [14]={ + ["desc"]="Seigneur de guerre II" + }, + [15]={ + ["desc"]="Seigneur de guerre I" + }, + [16]={ + ["desc"]="Roi des héros III" + }, + [17]={ + ["desc"]="Roi des héros II" + }, + [18]={ + ["desc"]="Roi des héros I" + }, + [19]={ + ["desc"]="Maître légendaire III" + }, + [20]={ + ["desc"]="Maître légendaire II" + }, + [21]={ + ["desc"]="Maître légendaire I" + }, + [22]={ + ["desc"]="Dieu de la guerre III" + }, + [23]={ + ["desc"]="Dieu de la guerre II" + }, + [24]={ + ["desc"]="Dieu de la guerre I" + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/arena.lua.meta b/lua/app/config/strings/fr/arena.lua.meta new file mode 100644 index 00000000..4c2de38d --- /dev/null +++ b/lua/app/config/strings/fr/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 99305b27794e0c84b864ddf54a8d8bb5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/attr.lua b/lua/app/config/strings/fr/attr.lua new file mode 100644 index 00000000..866bb6dc --- /dev/null +++ b/lua/app/config/strings/fr/attr.lua @@ -0,0 +1,105 @@ +local attr = { + [1]={ + ["name"]="PV" + }, + [2]={ + ["name"]="ATK" + }, + [3]={ + ["name"]="Taux de Crit." + }, + [4]={ + ["name"]="Dégâts de Crit." + }, + [5]={ + ["name"]="Réduction de dégâts" + }, + [6]={ + ["name"]="ATK" + }, + [7]={ + ["name"]="ATK" + }, + [8]={ + ["name"]="ATK" + }, + [9]={ + ["name"]="ATK" + }, + [10]={ + ["name"]="ATK" + }, + [11]={ + ["name"]="ATK" + }, + [12]={ + ["name"]="ATK" + }, + [13]={ + ["name"]="ATK" + }, + [14]={ + ["name"]="ATK" + }, + [15]={ + ["name"]="PV" + }, + [16]={ + ["name"]="PV" + }, + [17]={ + ["name"]="PV" + }, + [18]={ + ["name"]="PV" + }, + [19]={ + ["name"]="PV" + }, + [20]={ + ["name"]="PV" + }, + [21]={ + ["name"]="PV" + }, + [22]={ + ["name"]="Dégâts" + }, + [23]={ + ["name"]="Esquive" + }, + [24]={ + ["name"]="Gain de pièces d'or" + }, + [25]={ + ["name"]="Dégâts de compétence" + }, + [26]={ + ["name"]="Dégâts d'ATK général" + }, + [27]={ + ["name"]="Récompense de placement" + }, + [28]={ + ["name"]="Taux de récupération de la torche" + }, + [29]={ + ["name"]="Limite de maintien des torches" + }, + [30]={ + ["name"]="Acquisition de connaissances" + }, + [31]={ + ["name"]="Vitesse de recherche" + }, + [32]={ + ["name"]="Dégâts de renversement" + }, + [33]={ + ["name"]="Nombre d'ennemis renversés" + } +} +local config = { +data=attr,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/attr.lua.meta b/lua/app/config/strings/fr/attr.lua.meta new file mode 100644 index 00000000..87ca8369 --- /dev/null +++ b/lua/app/config/strings/fr/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e2a11805146ed16478a99a30a4cd20f6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/collection.lua b/lua/app/config/strings/fr/collection.lua new file mode 100644 index 00000000..f1f6624e --- /dev/null +++ b/lua/app/config/strings/fr/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + ["name"]="Nouveau voyage" + }, + [2]={ + ["name"]="Arme acérée" + }, + [3]={ + ["name"]="Maître fabricant de bâtons" + }, + [4]={ + ["name"]="Élaborer finement" + }, + [5]={ + ["name"]="Un peu de froid" + }, + [6]={ + ["name"]="Ombres et lumières" + }, + [7]={ + ["name"]="Force de nature" + }, + [8]={ + ["name"]="Orage violent" + }, + [9]={ + ["name"]="Foi de l'assassin" + }, + [10]={ + ["name"]="Symphonie de feu et de glace" + }, + [101]={ + ["name"]="Vêtements en lin brut" + }, + [102]={ + ["name"]="La chasse commence" + }, + [103]={ + ["name"]="Vie exquise" + }, + [104]={ + ["name"]="Fait pour la guerre" + }, + [105]={ + ["name"]="Chevalier gardien" + }, + [106]={ + ["name"]="Pas chance de vivre" + }, + [107]={ + ["name"]="Lumière pour toujours" + }, + [108]={ + ["name"]="Intention vicieuse" + }, + [109]={ + ["name"]="Murmure du diable" + }, + [110]={ + ["name"]="Objet sacré" + }, + [201]={ + ["name"]="Marcheur de nuit" + }, + [202]={ + ["name"]="Trésors du peuple" + }, + [203]={ + ["name"]="Maître de combat" + }, + [204]={ + ["name"]="Arrive de lame tranchante" + }, + [205]={ + ["name"]="Défense absolue" + }, + [206]={ + ["name"]="Tonnerre du ciel" + }, + [207]={ + ["name"]="Arme magique" + }, + [208]={ + ["name"]="La lumière sacrée brille" + }, + [209]={ + ["name"]="Relique de Dieu" + }, + [210]={ + ["name"]="Artefact suprême" + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/collection.lua.meta b/lua/app/config/strings/fr/collection.lua.meta new file mode 100644 index 00000000..3e41bdcb --- /dev/null +++ b/lua/app/config/strings/fr/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e5303f39d3037e84a8c6e2d15b107a34 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/equip.lua b/lua/app/config/strings/fr/equip.lua new file mode 100644 index 00000000..28cb7fa3 --- /dev/null +++ b/lua/app/config/strings/fr/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + ["name"]="Épée de fer" + }, + [10002]={ + ["name"]="Épée en acier" + }, + [10003]={ + ["name"]="Épée en acier fin" + }, + [10004]={ + ["name"]="Épée longue sculptée" + }, + [10005]={ + ["name"]="Épée de chevalier" + }, + [10006]={ + ["name"]="Épée de tempête" + }, + [10007]={ + ["name"]="Épée de rage" + }, + [10008]={ + ["name"]="Verdict de justice" + }, + [10009]={ + ["name"]="Cicatrice de sang" + }, + [10101]={ + ["name"]="Dague" + }, + [10102]={ + ["name"]="Dague en acier" + }, + [10103]={ + ["name"]="Dague en acier fin" + }, + [10104]={ + ["name"]="Dague sculptée" + }, + [10105]={ + ["name"]="Dague d'assassin" + }, + [10106]={ + ["name"]="Dague empoisonnée" + }, + [10107]={ + ["name"]="Lame d'ombre" + }, + [10108]={ + ["name"]="Morsure de vipère" + }, + [10109]={ + ["name"]="Seigneur de mort" + }, + [10201]={ + ["name"]="Pistolet en bois" + }, + [10202]={ + ["name"]="Pistolet en acier" + }, + [10203]={ + ["name"]="Lance en acier" + }, + [10204]={ + ["name"]="Lance sculptée" + }, + [10205]={ + ["name"]="Lance d'argent" + }, + [10206]={ + ["name"]="Lance de dents de loup" + }, + [10207]={ + ["name"]="Pistolet Cœur de Lion" + }, + [10208]={ + ["name"]="Glace extrême" + }, + [10209]={ + ["name"]="Flamme de dragon" + }, + [10301]={ + ["name"]="Bâton en bois" + }, + [10302]={ + ["name"]="Bâton de verre" + }, + [10303]={ + ["name"]="Bâton de gemme" + }, + [10304]={ + ["name"]="Bâton de cristal" + }, + [10305]={ + ["name"]="Bâton de gobelin" + }, + [10306]={ + ["name"]="Bâton de l'oiseau bleu" + }, + [10307]={ + ["name"]="Bâton de serpent blanc" + }, + [10308]={ + ["name"]="Clair de lune" + }, + [10309]={ + ["name"]="Soleil brûlant" + }, + [20001]={ + ["name"]="Manteau de ricin" + }, + [20002]={ + ["name"]="Manteau de cuir" + }, + [20003]={ + ["name"]="Vêtement de soldats" + }, + [20004]={ + ["name"]="Armure de fer fine" + }, + [20005]={ + ["name"]="Armure de gardien" + }, + [20006]={ + ["name"]="Armure de lumière sacrée" + }, + [20007]={ + ["name"]="Armure d'apocalypse" + }, + [20101]={ + ["name"]="Vêtements en tissu brut" + }, + [20102]={ + ["name"]="Manteau de cuir épais" + }, + [20103]={ + ["name"]="Robe exquise" + }, + [20104]={ + ["name"]="Armure de garde" + }, + [20105]={ + ["name"]="Armure de bronze fine" + }, + [20106]={ + ["name"]="Armure déchue" + }, + [20107]={ + ["name"]="Vêtement d'or sacré" + }, + [20201]={ + ["name"]="Vêtement en coton" + }, + [20202]={ + ["name"]="Veste en cuir de chasseur" + }, + [20203]={ + ["name"]="Vêtement de camouflage" + }, + [20204]={ + ["name"]="Armure de justice" + }, + [20205]={ + ["name"]="Armure de combat" + }, + [20206]={ + ["name"]="Armure de dragon maléfique" + }, + [20207]={ + ["name"]="Vêtements de Lucifer" + }, + [20301]={ + ["name"]="Vêtements en soie" + }, + [20302]={ + ["name"]="Veste en cuir fin" + }, + [20303]={ + ["name"]="Vêtement à épaulettes" + }, + [20304]={ + ["name"]="Armure de gloire" + }, + [20305]={ + ["name"]="Armure dorée" + }, + [20306]={ + ["name"]="Armure de conquête" + }, + [20307]={ + ["name"]="Légende du tueur de dragon" + }, + [30001]={ + ["name"]="Bandeau de ricin" + }, + [30002]={ + ["name"]="Anneau à tête en fer grossier" + }, + [30003]={ + ["name"]="Anneau en argent gravé" + }, + [30004]={ + ["name"]="Couronne de guerrier" + }, + [30005]={ + ["name"]="Couronne de Fortune" + }, + [30006]={ + ["name"]="Couronne de tonnerre" + }, + [30007]={ + ["name"]="Couronne d'or du tueur de dragon" + }, + [30101]={ + ["name"]="Bandeau en tissu grossier" + }, + [30102]={ + ["name"]="Anneau à tête en laiton" + }, + [30103]={ + ["name"]="Anneau en argent avec gemmes brisées" + }, + [30104]={ + ["name"]="Couronne de charge" + }, + [30105]={ + ["name"]="Couronne de sagesse" + }, + [30106]={ + ["name"]="Couronne de destruction" + }, + [30107]={ + ["name"]="Couronne glorieuse" + }, + [30201]={ + ["name"]="Bandeau en coton" + }, + [30202]={ + ["name"]="Anneau à tête en bronze" + }, + [30203]={ + ["name"]="Anneau en or gravé" + }, + [30204]={ + ["name"]="Couronne de chevalier" + }, + [30205]={ + ["name"]="Couronne sanguinaire" + }, + [30206]={ + ["name"]="Couronne du Dieu de la guerre" + }, + [30207]={ + ["name"]="Couronne diabolique de Satan" + }, + [30301]={ + ["name"]="Bandeau en soie" + }, + [30302]={ + ["name"]="Anneau à tête en argent" + }, + [30303]={ + ["name"]="Anneau en or avec gemmes brisées" + }, + [30304]={ + ["name"]="Couronne de héros" + }, + [30305]={ + ["name"]="Couronne de lumière" + }, + [30306]={ + ["name"]="Couronne sans lumière" + }, + [30307]={ + ["name"]="Couronne sacrée de la Création" + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/equip.lua.meta b/lua/app/config/strings/fr/equip.lua.meta new file mode 100644 index 00000000..a245a14d --- /dev/null +++ b/lua/app/config/strings/fr/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ae470bd0b2d724949a37845145fda304 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/global.lua b/lua/app/config/strings/fr/global.lua new file mode 100644 index 00000000..65419a71 --- /dev/null +++ b/lua/app/config/strings/fr/global.lua @@ -0,0 +1,406 @@ +local localization_global = +{ + ["TASK_DAILY_TITLE"] = "Quête quotidienne", + ["COUNTDOWN"] = "{0}:{1}:{2}", + ["EVENT_TITLE"] = "Evénement", + ["ACT_SEVENDAY_TITLE"] = "Ouverture du festival", + ["ACT_SEVENDAY_BTN"] = "ENTRER", + ["ACT_SEVENDAY_LEFTTIME"] = "Temps restant : {0} jours", + ["ACT_SEVENDAY_TASK"] = "Quêtes terminées :", + ["ACT_SEVENDAY_DESC"] = "De nouvelles tâches seront ouvertes chaque jour.", + ["BTN_CLAIM"] = "À récupérer", + ["BTN_DONE"] = "Collecté", + ["BTN_GO"] = "Aller", + ["BTN_FREE"] = "Gratuit", + ["BTN_CONFIRM"] = "Confirmer", + ["SUMMON_TIMES"] = "Appeler {0} fois", + ["SUMMON_RATE_TITLE"] = "Probabilités combinées", + ["SUMMON_RATE_DESC1"] = "Probabilité d'obtenir chaque qualité", + ["SUMMON_RATE_DESC2"] = "Après un certain nombre d'appels, le niveau d'appel augmente.", + ["IDLE_TITLE1"] = "Récompense de placement", + ["IDLE_TITLE2"] = "Bonus", + ["IDLE_BTN"] = "Obtenir des récompenses supplémentaires", + ["IDLE_DESC"] = "Collecter {0} minutes", + ["MAIL_TITLE"] = "Boîte aux lettres", + ["MAIL_COUNTDOWN"] = "Expirer dans {0} heures", + ["BTN_READ"] = "Lire", + ["BTN_DELETE_ALL"] = "Supprimer les courriels lus", + ["BTN_CLAIM_ALL"] = "Recevoir tout", + ["FIRST_CHARGE_REWARD_DESC"] = "Récompense du premier achat", + ["SHOP_DESC1"] = "magasin", + ["SUMMON_DESC1"] = "appeler", + ["SUMMON_DESC2"] = "Appeler {0} fois", + ["SUMMON_DESC3"] = "Après un certain nombre d'appels, le niveau d'appel augmente.", + ["DAILY_AND_WEEK"] = "Quotidien/hebdomadaire", + ["TREASURE_DESC1"] = "Trésor", + ["FAMILY_HEIRLOOM"] = "Héritage", + ["ARMOR_DESC1"] = "Défense", + ["QLT_DESC_1"] = "Normal", + ["QLT_DESC_2"] = "Avancé", + ["QLT_DESC_3"] = "Rare", + ["QLT_DESC_4"] = "Épique", + ["QLT_DESC_5"] = "Légendaire", + ["QLT_DESC_6"] = "Mythique", + ["QLT_DESC_7"] = "Superbe", + ["PROBABILITY_DESC1"] = "Probabilités combinées", + ["PROBABILITY_DESC2"] = "Probabilité d'obtenir différents niveaux", + ["LEVEL_DESC1"] = "NIVEAU{0}", + ["WEAPON_DESC1"] = "Armes", + ["LV_POINT"] = "Niv. {0}", + ["LOOK_AD_DESC1"] = "Jouer les publicités", + ["LOOK_AD_DESC2"] = "Regardez l'annonce pour un appel gratuit", + ["LOOK_AD_DESC3"] = "Chaque fois que vous regardez une publicité, vous pouvez augmenter les chances d'appel.", + ["NEXT_SUMMON_NUM"] = "Prochain appel : {0}", + ["MAX_SUMMON_NUM"] = "Appeler {0} fois au plus", + ["CANCEL_1"] = "Annuler", + ["TIME_STR_DHM"] = "{0} jour(s) {1} h {2} sec", + ["TIME_STR_M"] = "{0} min", + ["TIME_STR_MS"] = "{0} min {1}sec", + ["TIME_STR_S"] = "{0} sec", + ["TIME_STR_DH"] = "{0} jour(s) {1} h", + ["TIME_STR_HMS"] = "{0} h {1} min {2}sec", + ["TIME_STR_HM"] = "{0} h {1} sec", + ["TIME_STR_D"] = "{0} jour(s)", + ["TIME_MS"] = "{0}:{1}", + ["TIME_HMS"] = "{0}:{1}:{2}", + ["REMAIN_TIME_DESC1"] = "Temps restant :{0}", + ["SUPER_DESC1"] = "Valeur", + ["GIFT_DESC1"] = "Paquet", + ["DUMGEON_1"] = "Donjon d'or", + ["DUMGEON_2"] = "Donjon de diamant", + ["DUMGEON_3"] = "Donjon d'argent", + ["DUMGEON_4"] = "Donjon de caractéristique", + ["BLESSING_1"] = "Pièce d'or", + ["BLESSING_2"] = "ATK", + ["BLESSING_3"] = "Dégâts de compétence", + ["ACCELERATION"] = "Accélération du combat", + ["LOOK_AD"] = "Publicité", + ["DAILY_SHOP"] = "Tägliches Geschäft", + ["WEEK_SHOP"] = "Boutique hebdomadaire", + ["FIRST_BUY_AWARD"] = "Récompense du premier achat", + ["FIRST_BUT_AWARD_2"] = "Obtenant en votre premier achat de n'importe quel article", + ["EQUIP_TITLE "] = "Écran d'équipement", + ["EQUIP_DESC_1"] = "Effet de possession", + ["EQUIP_DESC_2"] = "Effet d'équipement", + ["EQUIP_DESC_3"] = "Équipement", + ["EQUIP_DESC_4"] = "Renforcer", + ["EQUIP_DESC_5"] = "Aller à Appel", + ["EQUIP_DESC_6"] = "Renforcer tout", + ["ATTR_NAME_1"] = "PV", + ["ATTR_NAME_2"] = "Récupération de PV", + ["ATTR_NAME_3"] = "ATK", + ["ATTR_NAME_4"] = "Vitesse de déplacement", + ["ATTR_NAME_5"] = "Taux de Crit.", + ["ATTR_NAME_6"] = "Dégâts de Crit.", + ["ATTR_NAME_7"] = "Portée d'attaque", + ["ATTR_NAME_8"] = "Réduction de dégâts", + ["ATTR_NAME_9"] = "Les dégâts infligés au boss sont augmentés", + ["ATTR_NAME_11"] = "ATK", + ["ATTR_NAME_20"] = "PV", + ["CAN_NOT_DIGGING_DARK"] = "Impossible d'explorer la zone brumeuse lointaine", + ["MUST_PUT_IN_GROUND"] = "Doit être placé dans une zone éclairée", + ["ITEM_NOT_ENOUGH"] = "{0}Insuffisance", + ["MAX_LV_DESC"] = "Niveau le plus élevé", + ["RESET_DESC"] = "Réinitialiser", + ["STRENGTHEN_DESC"] = "Renforcer", + ["MASTERY_DESC_1"] = "Compétence de maîtrise", + ["MASTERY_DESC_2"] = "Aide à la compétence de maîtrise", + ["MASTERY_DESC_3"] = "Lorsque vous revenez au premier niveau, vous pouvez obtenir des points de maîtrise et la consommation de ces points peut améliorer la compétence de maîtrise.", + ["MASTERY_DESC_4"] = "La compétence de maîtrise suivante ne peut pas être débloquée tant qu'une compétence a été entièrement améliorée.", + ["MASTERY_DESC_5"] = "Voulez-vous réinitialiser la maîtrise ? \nLa réinitialisation renverra tous les points de maîtrise et toutes les compétences seront réinitialisées au niveau 0.", + ["HERO_TITLE_1"] = "Équipement", + ["HERO_TITLE_2"] = "Héritage", + ["HERO_TITLE_3"] = "Maîtrise", + ["HERO_TITLE_4"] = "Rune", + ["EQUIP_DESC_7"] = "Équipé", + ["EQUIP_DESC_8"] = "Supprimer", + ["EQUIP_DESC_9"] = "Bande illustrée", + ["EQUIP_DESC_10"] = "Créer une rune", + ["EQUIP_DESC_11"] = "Runes débloquées : {0}/{1}", + ["EQUIP_DESC_12"] = "Runes pas débloquées", + ["EQUIP_DESC_13"] = "Collection d'effet : {0}", + ["CONGRATULATE_GET_DESC"] = "Félicitations pour avoir gagné", + ["MINING_TITLE"] = "Explorer", + ["Next"] = "Le prochain", + ["MINING_TIPS_DESC1"] = "Les torches seront automatiquement réapprovisionnées", + ["MINING_TIPS_DESC2"] = "Plus vous explorez la zone en profondeur, plus vous avez de chances de trouver de bons trésors.", + ["MINING_TIPS_DESC3"] = "Le brouillard peut être facilement dissipé à l'aide de bougies de lumière sacrée et de bombes incendiaires", + ["MINING_TIPS_DESC4"] = "L'éclairage sous la ligne jaune permet d'accéder à des zones plus profondes", + ["RESEARCH_TITLE"] = "Institut de recherche", + ["RESEARCH_MAT"] = "Matériel de recherche", + ["RESEARCHING_QUICK_FINISH"] = "C'est terminé maintenant !", + ["RESEARCHING_JUMP_TIME"] = "Sauter {0} minutes", + ["RESEARCHING_DESC1"] = "Recherche en cours - [{0}]", + ["MAX"] = "MAX", + ["NEED_BEFORE_RESEARCH"] = "Recherches préalables sont nécessaires", + ["RESEARCH"] = "Rechercher", + ["DISCONNECT_RELOGIN"] = "La connexion Internet a été déconnectée, veuillez vous connecter à nouveau.", + ["RECONNECT"] = "La connexion réseau a été déconnectée, voulez-vous reconnecter ?", + ["BTN_TEXT_OK"] = "Confirmer", + ["RELOGIN"] = "Se reconnecter", + ["DUNGEON_GOLD"] = "Donjon d'or", + ["DUNGEON_TREASURE"] = "Donjon de diamant", + ["DUNGEON_MITHRIL"] = "Donjon d'argent", + ["DUNGEON_CHARACTERISTIC"] = "Donjon de caractéristique", + ["TRAIN_DESC_1"] = "Entraîner", + ["TRAIN_DESC_2"] = "Revenir au début", + ["TRAIN_DESC_3"] = "Passage rapide", + ["TRAIN_DESC_4"] = "Le meilleur cette fois : niveau {0}, après le retour au début, vous pouvez obtenir :", + ["TRAIN_DESC_5"] = "Progrès actuel", + ["TRAIN_DESC_6"] = "Progression maximale", + ["TRAIN_DESC_7"] = "Entraînement d'attribut", + ["TRAIN_DESC_8"] = "Débloqué en passant niveau {0}", + ["TRAIN_DESC_9"] = "Allez revenir", + ["TRAIN_DESC_10"] = "Passer rapide à Niv. {0}", + ["TRAIN_DESC_11"] = "Terminer ce défi", + ["TRAIN_DESC_12"] = "Plus vous avancez dans ce niveau, plus vous obtenez de pièces d'or et de points de maîtrise dans le retour", + ["TRAIN_DESC_13"] = "Ce n'est pas le niveau le plus élevé actuellement et les récompenses seront réduites. Voulez-vous revenir au début ?", + ["TRAIN_DESC_14"] = "Commencer à revenir", + ["TRAIN_DESC_15"] = "Niv. {0}", + ["TRAIN_DESC_16"] = "Mise à niveau du passage rapide", + ["TRAIN_DESC_17"] = "Niv. {0}", + ["TRAIN_DESC_18"] = "Chaque fois que vous passez rapidement, le passage immédiat{0} (+300) niveau. (Plus le niveau de passage rapide est élevé, plus il y a de niveaux de passage rapide, mais le passage rapide ne peut pas dépasser la difficulté la plus élevée actuelle)", + ["UPGRADE_DESC"] = "Mettre à Niveau", + ["GET_REWARDS"] = "Être récompensé", + ["ARENA"] = "Arène", + ["REFRESH_TIME"] = "Temps de rafraîchissement :{0}", + ["DUNGEON_DESC1"] = "Les clés d'entrée de donjon sont automatiquement réapprovisionnées chaque jour", + ["CHAPTER_UNLOCK_DESC"] = "Débloqué en passant niveau {0}", + ["LEVEL_UNLOCK_DESC"] = "Débloqué en atteignant niveau {0}", + ["ENTER_DUNGEON"] = "Entrer", + ["TASK_COMPLETE_DESC"] = "Débloqué en terminant la quête principale {0}", + ["DUNGEON_GOLD_HELP_CONTENT"] = "Devinez ce qui se passe quand vous ouvrez le coffre ? Ah ! Le coffre ouvre sa bouche pour mordre !", + ["DUNGEON_TREASURE_HELP_CONTENT"] = "Les courageux considèrent le trésor comme des biens d'extérieur à eux et ne se soucient pas de se battre pour lui, sauf quand il est livré à leur porte~", + ["DUNGEON_MITHRIL_HELP_CONTENT"] = "Creuser pour trouver de l'argent est un travail physique, on peut creuser avec de la magie, mais les montres réveillées sont un gros problème !", + ["DUNGEON_CHARACTERISTIC_HELP_CONTENT"] = "D'innombrables batailles ont fait naître non seulement la force physique, mais aussi une volonté forte et un esprit d'adaptation rapide.", + ["ARENA_HELP_CONTENT"] = "1. Il y a quatre thèmes dans l'arène : les épées, les dagues, les lances et les bâtons en bois. Chaque thème dure 14 jours. Différents thèmes correspondent à différents adversaires. \n2. Vous bénéficiez d'un bonus d'attaque supplémentaire pour l'arme de thème actuel. Si vous utilisez {0} pendant la durée de ce thème, votre attaque est augmentée de 20%. Le prochain thème sera {1}. \n3. Dans le temps limité, vous vous battez avec l'adversaire, causant des points de dégâts, et divisé en différents niveaux en fonction des points. \n4. À 0 h tous les dimanches, les niveaux seront réglés une fois et vous serez récompensé. Après le règlement, votre niveau baissera jusqu'à 5. \n5. Les attributs de possession d'armes, de défenses et d'héritages dans l'arène prendront effet. Les attributs et les compétences de l'équipement d'arme seront sélectionnés au début du combat. \n6. Les effets d'équipement des héritages ne prendront pas effet. Après avoir passé chaque vague, les effets d'héritage existants seront à sélectionner au hasard, ce qui améliorera vos capacités de combat de suivi, mais vous n'obtiendrez pas d'attributs d'héritage supplémentaires.", + ["GET_SEVER_ERROR"] = "Échec de requête au serveur, nouvelle tentative", + ["ENTER_DUNGEON_AD"] = "Jouer les publicités", + ["DUNGEON_DIFFICULT"] = "Difficulté", + ["PASS_REWARD"] = "Récompenses", + ["ARENA_RULE_TITLE"] = "Règles de l'arène", + ["ARENA_RULE_CONTENT"] = "1. Il y a quatre thèmes dans l'arène : les épées, les dagues, les lances et les bâtons en bois. Chaque thème dure 14 jours. Différents thèmes correspondent à différents adversaires. \n2. Vous bénéficiez d'un bonus d'attaque supplémentaire pour l'arme de thème actuel. Si vous utilisez {0} pendant la durée de ce thème, votre attaque est augmentée de 20%. Le prochain thème sera {1}. \n3. Dans le temps limité, vous vous battez avec l'adversaire, causant des points de dégâts, et divisé en différents niveaux en fonction des points. \n4. À 0 h tous les dimanches, les niveaux seront réglés une fois et vous serez récompensé. Après le règlement, votre niveau baissera jusqu'à 5. \n5. Les attributs de possession d'armes, de défenses et d'héritages dans l'arène prendront effet. Les attributs et les compétences de l'équipement d'arme seront sélectionnés au début du combat. \n6. Les effets d'équipement des héritages ne prendront pas effet. Après avoir passé chaque vague, les effets d'héritage existants seront à sélectionner au hasard, ce qui améliorera vos capacités de combat de suivi, mais vous n'obtiendrez pas d'attributs d'héritage supplémentaires.", + ["LOOK_SEASON_REWARD"] = "Voir les récompenses de cette période", + ["ARENA_SUBJECT_DESC"] = "Thème du combat de cette période : {0}", + ["SWARD"] = "Épée", + ["WAND"] = "Bâton", + ["KNIFE"] = "Dague", + ["SPEAR"] = "Lance", + ["REWARD_PREVIEW"] = "Aperçu des Récompenses", + ["ARENA_ENTER_TITLE"] = "Arène. {0}", + ["ARENA_REFRESH_TIME_DESC"] = "Passer au thème suivant après {0}", + ["CUR_RANK_LEVEL"] = "Niveau actuel", + ["SCORE_DESC"] = "{0 points", + ["RANK_ORDER"] = "No. {0}", + ["HERO_RANKING_TITLE"] = "Classement des héros", + ["ARENA_BATTLE_REWARD_TITLE"] = "Récompense du défi", + ["ARENA_MAX_LEVEL"] = "Top !", + ["BEST_DESC"] = "Le meilleur", + ["RANKING_REWARD"] = "Récompense de classement", + ["RANK_LEVEL_REWARD"] = "Récompense de niveaux", + ["RANKING_DESC1"] = "Classement ", + ["RANKING_DESC2"] = "Récompense de règlement hebdomadaire", + ["CLEARING_REMAIN_DESC"] = "Temps restant avant régler : {0}", + ["NO_ONE_IN_THIS_SEGMENT"] = "Personne n'est encore entré dans ce niveau", + ["NEED_SOMETHING"] = "Nécessite : {0}", + ["SELF_RANKING"] = "Mon classement ", + ["RANKIN_LEVEL_DESC"] = "{0}(niveau actuel)", + ["ARENA_RANK_DESC_1"] = "Les classements ne sont disponibles qu'après avoir participé au combat", + ["SELF_RANK_ORDER"] = "Mon classement ", + ["SEVEN_DAY_SIGNIN_TITLE"] = "Évènement d'enregistrement de 7 jours", + ["DAY_DESC1"] = "Jour {0}", + ["SEVEN_DAY_DESC"] = "Superbe équipement Légendaire, envolez-vous dans les combats !", + ["NOT_IN_RANK"] = "Pas sur le classement", + ["DIAMOND_GIFT_TITLE"] = "Pack de Diamant", + ["LIMIT_GIFT"] = "Cadeau à durée limitée", + ["DAILY_GIFT"] = "Paquet quotidien", + ["WEEK_GIFT"] = "Paquet hebdomadaire", + ["MALL_GIFT"] = "Magasin de paquet", + ["WEAPON_SUMMON_TITLE"] = "Appel aux armes", + ["ARMOR_SUMMON_TITLE"] = "Appel aux défenses", + ["FAMILY_HEIRLOOM_SUMMON_TITLE"] = "Appel aux héritages", + ["CHAPTER_DESC_1"] = "Niveau", + ["CHAPTER_DESC_2"] = "Récompense de niveau", + ["CHAPTER_DESC_3"] = "Objectif du défi", + ["CHAPTER_DESC_4"] = "Récompense du défi", + ["LIMIT_DESC"] = "Limite d'achat : {0}", + ["QLT_DESC"] = "{0} qualité", + ["ITEM_DESC"] = "Accessoire", + ["IDLE_DROP_DESC_1"] = "Récompense de placement", + ["IDLE_DROP_DESC_2"] = "Gain de pièces d'or:{0}/m", + ["IDLE_DROP_DESC_3"] = "Déjà collecté {0} minutes", + ["GET_REWARDS_1"] = "Recevoir les récompenses", + ["EXT_REWARDS"] = "Bonus", + ["CAN_NOT_DIG_GROUND"] = "Ne peut pas être placé dans les zones déjà éclairées !", + ["SEVEN_DAY_DESC_1"] = "Sept jours de plaisir pour les nouveaux arrivants", + ["SEVEN_DAY_DESC_2"] = "Heure de fin : {0}", + ["SEVEN_DAY_DESC_3"] = "Nombre de tâches accomplies:{0}/{1}", + ["SEVEN_DAY_DESC_4"] = "Recevoir tout", + ["DAILY_TASK_DESC_1"] = "Quête quotidienne", + ["DAILY_TASK_DESC_2"] = "Accomplir", + ["GAME_SETTING_DESC_1"] = "Mes informations", + ["GAME_SETTING_DESC_2"] = "Compte", + ["GAME_SETTING_DESC_3"] = "Langue", + ["GAME_SETTING_DESC_4"] = "Soutenir", + ["GAME_SETTING_DESC_5"] = "Vie privée", + ["GAME_SETTING_FACEBOOK"] = "Facebook", + ["GAME_SETTING_DISCORD"] = "Discord", + ["GAME_SETTING_DESC_6"] = "Passer en mode économie d'énergie", + ["GAME_SETTING_DESC_7"] = "ID du joueur : {0}", + ["GAME_SETTING_DESC_8"] = "Ouvrir", + ["GAME_SETTING_DESC_9"] = "Fermer", + ["GAME_SETTING_DESC_10"] = "Son de fond", + ["GAME_SETTING_DESC_11"] = "Son ambiant", + ["GAME_SETTING_DESC_12"] = "Secousse de l'écran", + ["GAME_SETTING_DESC_13"] = "Notification", + ["GAME_SETTING_DESC_14"] = "Utiliser le mode économie d'énergie", + ["TUTORIAL_MINE"] = "Alors à quoi sert ces connaissances ?", + ["HAS_RESEARCHING"] = "Les recherches sont en cours", + ["BATTLE_FAILED"] = "Échoué", + ["BATTLE_FAIL_DESC_1"] = "Appelez l'équipement et armez-vous", + ["BATTLE_FAIL_DESC_2"] = "Défiez les donjons, récupérez des ressources", + ["BATTLE_FAIL_DESC_3"] = "Explorez les brumes et recherchez des connaissances", + ["BATTLE_FAIL_DESC_4"] = "Revenez au début et passez rapide pour maîtriser l'entraînement", + ["ACCOUNT_DESC_1"] = "Lier le compte", + ["ACCOUNT_DESC_2"] = "Liez votre compte et protégez vos informations de jeu en toute sécurité !", + ["LOGIN_BY_GOOGLE"] = "Connexion via Google", + ["LOGIN_BY_APPLE"] = "Connexion via Apple", + ["DELETE_ACCOUNT"] = "Supprimer le compte", + ["BLESSING_TITLE"] = "Bénédiction", + ["BLESSING_TITLE_1"] = "Bénédiction du dieu de la moisson", + ["BLESSING_TITLE_2"] = "Bénédiction du dieu de la guerre", + ["BLESSING_TITLE_3"] = "Bénédiction du dieu de la forge", + ["BLESSING_DESC_1"] = "Le montant des pièces d'or gagnées augmente à", + ["BLESSING_DESC_2"] = "L'ATK augmente à", + ["BLESSING_DESC_3"] = "Dégâts de compétence augmentent à", + ["BLESSING_DESC_4"] = "Et il y a même le paquet d'extension automatique de bénédiction ?", + ["GET"] = "Acquérir", + ["ACT_SEVENDAY_DESC_1"] = "Débloqué en jour {0}", + ["BATTLE_SPEED_UP_DESC_1"] = "Accélérer le jeu", + ["BATTLE_SPEED_UP_DESC_2"] = "Vitesse X2", + ["BATTLE_SPEED_UP_DESC_3"] = "Regardez une publicité et jouez à vitesse 2x pendant les 20 prochaines minutes", + ["BATTLE_SPEED_UP_DESC_4"] = "(Après l'avoir activé, activez l'attaque automatique pour qu'elle prenne effet)", + ["BATTLE_SPEED_UP_DESC_5"] = "Regarder des publicités pendant la période d'accélération actualisera le temps d'accélération, mais le maximum ne dépasse pas 20 minutes", + ["BATTLE_SPEED_UP_DESC_6"] = "Activer", + ["BATTLE_FAIL"] = "Combat échoué", + ["BATTLE_VICTORY"] = "Combat gagné", + ["CLICK_CLOSE_DESC"] = "Fermer", + ["FUNC_OPEN_LEVEL"] = "Ouvrir avec le niveau du joueur atteignant {0}", + ["FUNC_OPEN_STAGE"] = "Ouvrir après le passage du Chapitre {0}", + ["FUNC_OPEN_TASK"] = "Ouvrir en terminant la quête principale {0}", + ["TASK_DESC"] = "la quête principale", + ["TRAIN_DESC_19"] = "Récompenses de passage rapide", + ["TRAIN_DESC_20"] = "Pièces d'or doublées", + ["RUNE_TITLE_1"] = "Rune : Épée", + ["RUNE_TITLE_2"] = "Rune : Bâton", + ["RUNE_TITLE_3"] = "Rune : Dague", + ["RUNE_TITLE_4"] = "Rune : Lance", + ["RUNE_TITLE_5"] = "Rune : Vêtements", + ["RUNE_TITLE_6"] = "Rune : Couvre-chef", + ["RUNE_TITLE_7"] = "Rune : Universelle", + ["BATTLE_SPEED_UP_DESC_7"] = "L'attaque automatique à double vitesse a pris effet, et il reste 20 minutes", + ["MASTERY_DESC_6"] = "Réinitialiser les compétences de maîtrise", + ["MESSAGE_BOX_TITLE"] = "Astuce", + ["RESEARCH_COMPLETE"] = "Recherche terminée !", + ["BOUNTY_DESC_1"] = "Permis Prime", + ["BOUNTY_DESC_2"] = "Les réductions suivantes sont disponibles pendant cette saison.", + ["BOUNTY_DESC_4"] = "Débloquer les récompenses exclusives du permis prime", + ["BOUNTY_DESC_5"] = "Débloquer les quêtes exclusives au permis prime", + ["BOUNTY_DESC_6"] = "Mandat de combat de saison S{0}", + ["BOUNTY_DESC_7"] = "Récompenses du permis", + ["BOUNTY_DESC_8"] = "Permis général", + ["BOUNTY_DESC_9"] = "Niveau complet", + ["BOUNTY_DESC_10"] = "Activé", + ["BOUNTY_DESC_11"] = "Quête quotidienne", + ["BOUNTY_DESC_12"] = "Tâche hebdomadaire", + ["BOUNTY_DESC_13"] = "Activé lors de l'achat du permis prime", + ["BOUNTY_DESC_14"] = "Accompli", + ["BOUNTY_DESC_15"] = "Tâche accomplie", + ["AUTO_FIGHT"] = "Auto", + ["OPEN_AUTO_FIGHT"] = "Auto", + ["BATTLE_NEXT_WAVE"] = "Entrer dans la vague {0}", + ["BATTLE_WAVE"] = "Vague {0}", + ["BATTLE_LEFT"] = "Restant", + ["BATTLE_STAGE_FAILED_DESC"] = "Défi échoué \nRetour au niveau {0} \nRevenir mieux s'entraîner pour revenir", + ["POWER"] = "Puissance de combat", + ["BATTLE_CHAPTER_PASS"] = "Passer le niveau", + ["BATTLE_CHAPTER_DESC"] = "Niv. {0}", + ["BATTLE_LIMIT_DESC"] = "Défi à durée limitée", + ["BATTLE_CHAPTER_STEP_DESC"] = "Étage {0}\nNiveau {1}", + ["BATTLE_PAUSE"] = "Suspendre", + ["BATTLE_ATTR"] = "Attribut actuel", + ["BATTLE_RESUME"] = "Continuer le combat", + ["BATTLE_DUNGEON_EXIT"] = "Quitter le donjon", + ["TRAIN_DESC_21"] = "1. Vous pouvez dépenser le sablier du temps pour revenir au début et gagner des pièces d'or et des points de maîtrise. Le sablier sera actualisé à 0 h (UTC-0) chaque jour et reviendra à une quantité de 4. \n2. Plus le nombre de niveaux que vous avez atteint lorsque vous revenez est élevé, plus vous recevrez de récompenses pour le retour. Lorsque le niveau actuel est inférieur à 100, vous ne pouvez pas revenir en arrière.\n3. Après avoir revenu au début vous rentrez au niveau 1, et vous pouvez rapidement revenir à votre niveau le plus élevé actuel en utilisant le passage rapide. \n4. Le revenir au début consomme beaucoup d'endurance et d'énergie mentale, vous devrez donc vous reposer pendant 15 minutes avant d'exercer le prochain retour.", + ["TRAIN_DESC_22"] = "1. La poussière du temps peut être utilisée pour passer rapidement, traverser les dimensions temporelles et spatiales, avec laquelle vous pouvez passer rapidement jusqu'au niveau de progression le plus élevé et obtenir la récompense de pièces d'or correspondante. La poussière du temps sera actualisé à 0 h (UTC-0) tous les jours et la quantité sera restaurée à 4. \n2. Plus vous passez de niveaux en passage rapide, plus vous obtiendrez de récompenses. \n3. Le nombre de niveaux pouvant être atteints en passage rapide est limité par les niveaux franchis et le niveau de passage rapide. Consommer des pierres de passage rapide peut améliorer le niveau. Chaque fois que le niveau est augmenté, le nombre maximum de niveaux atteint par le passage rapide peut augmente de 300.", + ["HELP_DESC"] = "Aide", + ["HISTORY_RECORD"] = "Le meilleur score jamais atteint", + ["NEW_RECORD"] = "Nouveaux records", + ["BATTLE_END"] = "La fin de la bataille", + ["CUR_RECORD"] = "Dossier en cours", + ["CLICK_CLOSE_DESC_2"] = "Cliquez sur n'importe quelle zone pour la fermer", + ["BATTLE_REVIVE_TITLE"] = "Dois-je ressusciter ?", + ["BATTLE_REVIVE_AD"] = "Ressusciter gratuitement", + ["BATTLE_REVIVE"] = "Résurrection", + ["SELECT_LEGACY_DESC"] = "Héritages sélectionnés", + ["SELECT_ONE_LEGACY"] = "Sélectionner un héritage familial", + ["CHANGE_OTHER"] = "Modifier un groupe", + ["VIEW_SELECTED_LEGACY"] = "Voir les héritages sélectionnés", + ["ARENA_CHANGE_FINISH_DESC"] = "Fin du défi", + ["ARENA_SCORE"] = "Score", + ["BATTLE_AGAIN"] = "Nouveau défi", + ["RECHARGE_TITLE"] = "Réinitialisation hebdomadaire du nombre de rechargements pour les doubles diamants", + ["BATTLE_ERROR"] = "La bataille est anormale, veuillez réessayer.", + ["ARENA_CALCULATE"] = "Règlement de l'arène en cours, veuillez patienter", + ["RENAME_DESC_1"] = "Modifier le nom", + ["RENAME_DESC_2"] = "Nom moins de 6 caractères", + ["RENAME_DESC_3"] = "Modifier le nom", + ["RENAME_DESC_4"] = "Veuillez saisir un nom", + ["SHIELDED_WORD_DESC"] = "Caractères non disponibles dans le texte", + ["NAME_ALREADY_USED_DESC"] = "Le nom est déjà pris", + ["NEW_PLAYER_DESC"] = "Nouveau joueur", + ["LANGUAGE_DESC"] = "Langue", + ["ARENA_FIGHT_FORBID"] = "L'arène se termine, aucun combat ne peut être commencé !", + ["FUNDCHAPTER_TITLE"] = "Fonds de niveau", + ["FUNDCHAPTER_TITLE_DESC"] = "Progressez dans les niveaux pour obtenir la récompense !", + ["ARENA_SEGMENT_TITLE"] = "Récompenses du classement des héros", + ["ARENA_SEGMENT_TITLE_DESC"] = "Le jeune guerrier a la main heureuse et les résultats de la semaine dernière sont les suivants :", + ["RECEIVE_REWARD"] = "Récompenses reçues", + ["REWARD_TITLE"] = "Être récompensé", + ["MAX_SCORE"] = "Meilleur score:{0}", + ["SAVE_POWER_DESC_2"] = "Combat dans l'arène en cour", + ["SAVE_POWER_DESC_3"] = "Glisser pour quitter le mode d'économie d'énergie", + ["SAVE_POWER_DESC_4"] = "(Vous pouvez l'activer/désactiver dans les réglages)", + ["FUND_PROGRESS"] = "Progression du niveau", + ["FUND_LOW_TX"] = "Récompense de luxe", + ["FUND_HIGH_TX"] = "Récompense supérieure", + ["NO_NETWORK"] = "Pas de connexion réseau, veuillez vous connecter au réseau et réessayer", + ["NETWORK_ERROE_1"] = "Erreur de communication du serveur, veuillez réessayer plus tard", + ["REPEAT_PAY_ORDER"] = "Achat réussi, veuillez redémarrer votre jeu s'il y a des problèmes.", + ["BATTLE_STAGE_FAILED_DESC_2"] = "Défi échoué \n\nRevenir mieux s'entraîner pour revenir", + ["ACTIVITY_OVER_DESC"] = "L'événement est terminé", + ["BINDED_DESC"] = "lié", + ["SWITCH_ACCOUNT_DESC"] = "Changer de compte", + ["BATTLE_MISS"] = "Esquive", + ["MAINTAIN"] = "Maintenance du serveur", + ["FORBIDDEN"] = "Blocage de compte/interdiction de se connecter", + ["OTHER_LOGIN"] = "La connexion à votre compte a été établie ailleurs.", + ["NO_ADS"] = "La nouvelle annonce n'est pas encore prête", + ["ACCOUNT_EXCHANGE_DESC_1"] = "Le compte courant n'est pas lié, la commutation peut entraîner une perte de données, voulez-vous confirmer la commutation ?", + ["ACCOUNT_EXCHANGE_DESC_2"] = "Ce compte ne contient aucune information ne peut pas être changé.", + ["BESURE_DELETE_TIPS_DESC"] = "Si vous souhaitez supprimer votre compte, toutes les informations seront effacées et lorsque vous vous connecterez à nouveau, votre compte aura le statut débutant de niveau 1. Si vous êtes sûr, veuillez entrer \"{0}\".", + ["BESURE_DELETE_ACCOUNT_DESC"] = "Confirmer la suppression", + ["LOADING_DESC"] = "Chargement…", + ["CLICK_COPY_ACOUNT_DESC"] = "Cliquez pour copier l'identifiant de l'utilisateur", + ["APP"] = "Numéro de version", + ["BLESS_DESC"] = "Bénédiction automatique!", + ["SKIP_AD_DESC"] = "Supprimer toutes les annonces!", + ["ARENA_SETTLE_DESC"] = "Règlement de l'arène en cours, veuillez patienter", + ["PAY_FAILED_DESC_1"] = "La commande est une anormale, veuillez contacter le service clientèle pour y remédier.", + ["MONTH_CARD_DESC"] = "Récompenses quotidiennes pendant 30 jours consécutifs !", + ["SETTING_DESC_22"] = "Erreur de connexion au Google Play Store, veuillez réessayer plus tard", + ["SETTING_DESC_23"] = "Une commande est en cours de traitement, veuillez réessayer plus tard.", + ["SETTING_DESC_25"] = "Le paiement a été annulé", +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/fr/global.lua.meta b/lua/app/config/strings/fr/global.lua.meta new file mode 100644 index 00000000..0aa648d7 --- /dev/null +++ b/lua/app/config/strings/fr/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 26e30ddf7a71f96429c09392798b5dd3 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/hero.lua b/lua/app/config/strings/fr/hero.lua new file mode 100644 index 00000000..f34f0c51 --- /dev/null +++ b/lua/app/config/strings/fr/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + ["name"]="Arthur" + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/hero.lua.meta b/lua/app/config/strings/fr/hero.lua.meta new file mode 100644 index 00000000..5240a19f --- /dev/null +++ b/lua/app/config/strings/fr/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 98086bb377c04314e93dfe8d2f493185 +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 new file mode 100644 index 00000000..5c2208d7 --- /dev/null +++ b/lua/app/config/strings/fr/item.lua @@ -0,0 +1,112 @@ +local item = { + [1]={ + ["name"]="Pièces d'or", + ["desc"]="Monnaie universelle, utilisée dans de nombreux endroits" + }, + [2]={ + ["name"]="Diamant", + ["desc"]="Monnaie rare, principalement utilisée pour l'appel." + }, + [3]={ + + }, + [4]={ + ["name"]="Clé de donjon d'or", + ["desc"]="Servir à défier le donjon d'or" + }, + [5]={ + ["name"]="Clé de donjon de diamant", + ["desc"]="Servir à défier le donjon de diamant" + }, + [6]={ + ["name"]="Clé de donjon d'argent", + ["desc"]="Servir à défier le donjon d'argent" + }, + [7]={ + ["name"]="Clé de donjon de caractéristique", + ["desc"]="Servir à défier le donjon de caractéristique" + }, + [8]={ + ["name"]="Pierre de passage rapide", + ["desc"]="Servir à améliorer le niveau de passage rapide" + }, + [9]={ + ["name"]="torche", + ["desc"]="Servir à dissiper le brouillard" + }, + [10]={ + ["name"]="Bombe incendiaire", + ["desc"]="Servir à dissiper le brouillard à portée" + }, + [11]={ + ["name"]="Bougie de Lumière Sainte", + ["desc"]="Servir à dissiper le brouillard à portée" + }, + [12]={ + ["name"]="Connaissance", + ["desc"]="Servir à mener des études" + }, + [13]={ + ["name"]="Points de maîtrise", + ["desc"]="Servir à améliorer les attributs de compétence" + }, + [14]={ + ["name"]="Argent", + ["desc"]="Servir à débloquer et améliorer les runes" + }, + [15]={ + ["name"]="Sablier du temps", + ["desc"]="Servir à revenir au début" + }, + [16]={ + ["name"]="Clés de l'arène", + ["desc"]="Servir à participer à l'arène" + }, + [17]={ + ["name"]="Boîte de tirage unique", + ["desc"]="Ouvrez-le pour obtenir une arme/armure/héritage aléatoire" + }, + [18]={ + ["name"]="Boîte de 10 tirages", + ["desc"]="Ouvrez-le pour obtenir 10 armes/armures/héritages aléatoires" + }, + [19]={ + ["name"]="Points du mandat de combat", + ["desc"]="Collectez un certain nombre de points pour augmenter le niveau de mandat de combat" + }, + [20]={ + ["name"]="paquet" + }, + [21]={ + ["name"]="Boîte de 35 tirages", + ["desc"]="Ouvrez-le pour obtenir 35 armes/armures/héritages aléatoires" + }, + [22]={ + ["name"]="Boîte de 105 tirages", + ["desc"]="Ouvrez-le pour obtenir 105 arme/armure/héritage aléatoire" + }, + [23]={ + ["name"]="Coffre de légende dorée", + ["desc"]="Ouvrez-le pour obtenir l'Épée de chevalier, l'Armure de gardien et la Couronne de Fortune" + }, + [24]={ + ["name"]="Une feuille de parchemin" + }, + [25]={ + ["name"]="Une pile de parchemins" + }, + [26]={ + ["name"]="Un rouleau de parchemin" + }, + [27]={ + ["name"]="Livre en parchemin" + }, + [28]={ + ["name"]="Poussière du temps", + ["desc"]="Disponible pour le Passage rapide" + } +} +local config = { +data=item,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/item.lua.meta b/lua/app/config/strings/fr/item.lua.meta new file mode 100644 index 00000000..d9f7d0ed --- /dev/null +++ b/lua/app/config/strings/fr/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 71974f31acd1d984694b0deb315dd235 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/legacy.lua b/lua/app/config/strings/fr/legacy.lua new file mode 100644 index 00000000..6c918b30 --- /dev/null +++ b/lua/app/config/strings/fr/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + ["name"]="Aiguille de tonnerre" + }, + [40002]={ + ["name"]="Sachet de parfum de concentration" + }, + [40003]={ + ["name"]="Bottes de voleur" + }, + [40004]={ + ["name"]="Gants adroits" + }, + [40005]={ + ["name"]="Dague d'assassin" + }, + [40101]={ + ["name"]="Fétiche de famille" + }, + [40102]={ + ["name"]="Armure lourde" + }, + [40103]={ + ["name"]="Gants de puissance" + }, + [40104]={ + ["name"]="Cape de camouflage" + }, + [40105]={ + ["name"]="Griffe de tigre" + }, + [40201]={ + ["name"]="Cône de fer noir" + }, + [40202]={ + ["name"]="Anneau de combat" + }, + [40203]={ + ["name"]="Cristal de motif foudre" + }, + [40204]={ + ["name"]="Masque en pierre de glace" + }, + [40205]={ + ["name"]="Cotte de mailles" + }, + [40301]={ + ["name"]="Épée du maître" + }, + [40302]={ + ["name"]="Pointe déchirante" + }, + [40303]={ + ["name"]="Bouclier de cristal magique" + }, + [40304]={ + ["name"]="Armure d'épines" + }, + [40305]={ + ["name"]="Armure de bras dorée" + }, + [40401]={ + ["name"]="Couronne glorieuse" + }, + [40402]={ + ["name"]="Hachoir à os" + }, + [40403]={ + ["name"]="Lance de Longinus" + }, + [40404]={ + ["name"]="Épée diabolique sanguinaire" + }, + [40405]={ + ["name"]="Marteau de Thor" + }, + [40501]={ + ["name"]="Clé de sagesse" + }, + [40502]={ + ["name"]="Ailes de la nuit" + }, + [40503]={ + ["name"]="Gloire du chevalier" + }, + [40504]={ + ["name"]="œil de vérité" + }, + [40505]={ + ["name"]="Larme de Phénix" + }, + [40601]={ + ["name"]="Totem de la Faille" + }, + [40602]={ + ["name"]="Trident de Poséidon" + }, + [40603]={ + ["name"]="Arc du Dieu de Soleil" + }, + [40604]={ + ["name"]="Lame invisible" + }, + [40605]={ + ["name"]="Gungnir\nle pistolet éternel" + }, + [40606]={ + ["name"]="Jugement dernier" + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/legacy.lua.meta b/lua/app/config/strings/fr/legacy.lua.meta new file mode 100644 index 00000000..d3653367 --- /dev/null +++ b/lua/app/config/strings/fr/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b0ab41d69e1ac17408f4472a7a4df78e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/mail.lua b/lua/app/config/strings/fr/mail.lua new file mode 100644 index 00000000..543ac975 --- /dev/null +++ b/lua/app/config/strings/fr/mail.lua @@ -0,0 +1,24 @@ +local mail = { + [1]={ + ["name"]="Cadeau d'un grand-père au bord de la route" + }, + [2]={ + ["name"]="Approvisionnement quotidien du roi" + }, + [3]={ + ["name"]="Hoho hahé", + ["desc"]="Une personne optimiste est toujours surprise par l'inattendu" + }, + [4]={ + ["name"]="Le bienveillant invincible", + ["desc"]="Une personne au bon cœur sera récompensée par de bonnes actions" + }, + [5]={ + ["name"]="En plein forme", + ["desc"]="Bonne énergie, bonne chance et bonne fortune" + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/mail.lua.meta b/lua/app/config/strings/fr/mail.lua.meta new file mode 100644 index 00000000..d222c1d5 --- /dev/null +++ b/lua/app/config/strings/fr/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 89740e53731a5db428a5915c89051aa9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/mall_act.lua b/lua/app/config/strings/fr/mall_act.lua new file mode 100644 index 00000000..34ecac7c --- /dev/null +++ b/lua/app/config/strings/fr/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + ["name"]="Récompense de première charge" + }, + [10001]={ + ["name"]="Objets de valeur" + }, + [10002]={ + ["name"]="Allez en avant les braves" + }, + [10003]={ + ["name"]="Héritier du Palais de la Terre" + }, + [10004]={ + ["name"]="Boîte d'alchimiste" + }, + [10005]={ + ["name"]="Trésor du dragon" + }, + [10006]={ + ["name"]="Lignée de Berserker" + }, + [10101]={ + ["name"]="Paquet d'exploration" + }, + [10102]={ + ["name"]="Porte-clés étincelant" + }, + [10103]={ + ["name"]="Au sommet du monde" + }, + [10104]={ + ["name"]="Ensemble de bâton mythique" + }, + [10105]={ + ["name"]="Ensemble d'assassin mythique" + }, + [10106]={ + ["name"]="Messager de la justice" + }, + [10201]={ + ["name"]="Ensemble de trois pièces d'équipement légendaire" + }, + [10202]={ + ["name"]="Ensemble de trois pièces d'équipement mythique" + }, + [10301]={ + ["name"]="Héritage légendaire" + }, + [10302]={ + ["name"]="Héritage mythique" + }, + [20001]={ + ["name"]="Paquet sans publicité" + }, + [30001]={ + ["name"]="Paquet de bénédiction automatique" + }, + [40001]={ + ["name"]="Médaille d'aventurier d'or" + }, + [60001]={ + ["name"]="Fonds de niveau - Bas" + }, + [60002]={ + ["name"]="Fonds de niveau - Prime" + }, + [70001]={ + ["name"]="Mandat de combat saison 1" + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/mall_act.lua.meta b/lua/app/config/strings/fr/mall_act.lua.meta new file mode 100644 index 00000000..ec4f5b93 --- /dev/null +++ b/lua/app/config/strings/fr/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c2153d9469ab41649a584903e434dab0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/mall_daily.lua b/lua/app/config/strings/fr/mall_daily.lua new file mode 100644 index 00000000..4bfc9f70 --- /dev/null +++ b/lua/app/config/strings/fr/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + ["name"]="Paquet gratuit" + }, + [1002]={ + ["name"]="Petit porte-clés" + }, + [1003]={ + ["name"]="Boîte de temps" + }, + [1004]={ + ["name"]="Porte-clés" + }, + [1005]={ + ["name"]="Sac d'exploration" + }, + [2001]={ + ["name"]="Grand porte-clés" + }, + [2002]={ + ["name"]="Coffre au trésor du temps" + }, + [2003]={ + ["name"]="Paquet de clés" + }, + [2004]={ + ["name"]="Bagage d'exploration" + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/mall_daily.lua.meta b/lua/app/config/strings/fr/mall_daily.lua.meta new file mode 100644 index 00000000..34232375 --- /dev/null +++ b/lua/app/config/strings/fr/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 074efecc01c980b478867bbc7005787f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/mall_treasure.lua b/lua/app/config/strings/fr/mall_treasure.lua new file mode 100644 index 00000000..afcdfc03 --- /dev/null +++ b/lua/app/config/strings/fr/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + ["name"]="Une poignée de gemmes" + }, + [2]={ + ["name"]="Un sac de gemmes" + }, + [3]={ + ["name"]="Un paquet de gemmes" + }, + [4]={ + ["name"]="Une boîte de gemmes" + }, + [5]={ + ["name"]="Un baril de gemmes" + }, + [6]={ + ["name"]="Une voiture de gemmes" + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/mall_treasure.lua.meta b/lua/app/config/strings/fr/mall_treasure.lua.meta new file mode 100644 index 00000000..dbd6f540 --- /dev/null +++ b/lua/app/config/strings/fr/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 88e97427af422404f9351654ee4b5151 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/mastery.lua b/lua/app/config/strings/fr/mastery.lua new file mode 100644 index 00000000..23b8666a --- /dev/null +++ b/lua/app/config/strings/fr/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + ["desc"]="Récupération d'attaque général" + }, + [2]={ + ["desc"]="Bonus de pièce d'or" + }, + [3]={ + ["desc"]="Bonus d'attaque" + }, + [4]={ + ["desc"]="Bonus de PV" + }, + [5]={ + ["desc"]="Bonus de placement" + }, + [6]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [7]={ + ["desc"]="Bonus de pièce d'or" + }, + [8]={ + ["desc"]="Bonus d'attaque" + }, + [9]={ + ["desc"]="Bonus de PV" + }, + [10]={ + ["desc"]="Surtraitement" + }, + [11]={ + ["desc"]="Bonus de placement" + }, + [12]={ + ["desc"]="Bonus d'esquive" + }, + [13]={ + ["desc"]="Bonus de pièce d'or" + }, + [14]={ + ["desc"]="Bonus d'attaque" + }, + [15]={ + ["desc"]="Bonus de PV" + }, + [16]={ + ["desc"]="Bonus de placement" + }, + [17]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [18]={ + ["desc"]="Bonus de pièce d'or" + }, + [19]={ + ["desc"]="Bonus d'attaque" + }, + [20]={ + ["desc"]="Bonus de PV" + }, + [21]={ + ["desc"]="Esquive en cas de blessé" + }, + [22]={ + ["desc"]="Bonus de placement" + }, + [23]={ + ["desc"]="Bonus d'esquive" + }, + [24]={ + ["desc"]="Bonus de pièce d'or" + }, + [25]={ + ["desc"]="Bonus d'attaque" + }, + [26]={ + ["desc"]="Bonus de PV" + }, + [27]={ + ["desc"]="Bonus de placement" + }, + [28]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [29]={ + ["desc"]="Bonus de pièce d'or" + }, + [30]={ + ["desc"]="Bonus d'attaque" + }, + [31]={ + ["desc"]="Bonus de PV" + }, + [32]={ + ["desc"]="Vitesse d'attaque automatique" + }, + [33]={ + ["desc"]="Bonus de placement" + }, + [34]={ + ["desc"]="Bonus d'esquive" + }, + [35]={ + ["desc"]="Bonus de pièce d'or" + }, + [36]={ + ["desc"]="Bonus d'attaque" + }, + [37]={ + ["desc"]="Bonus de PV" + }, + [38]={ + ["desc"]="Bonus de placement" + }, + [39]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [40]={ + ["desc"]="Bonus de pièce d'or" + }, + [41]={ + ["desc"]="Bonus d'attaque" + }, + [42]={ + ["desc"]="Bonus de PV" + }, + [43]={ + ["desc"]="Récupération des compétences" + }, + [44]={ + ["desc"]="Bonus de placement" + }, + [45]={ + ["desc"]="Bonus d'esquive" + }, + [46]={ + ["desc"]="Bonus de pièce d'or" + }, + [47]={ + ["desc"]="Bonus d'attaque" + }, + [48]={ + ["desc"]="Bonus de PV" + }, + [49]={ + ["desc"]="Bonus de placement" + }, + [50]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [51]={ + ["desc"]="Bonus de pièce d'or" + }, + [52]={ + ["desc"]="Bonus d'attaque" + }, + [53]={ + ["desc"]="Bonus de PV" + }, + [54]={ + ["desc"]="Récupération d'attaque général" + }, + [55]={ + ["desc"]="Bonus de placement" + }, + [56]={ + ["desc"]="Bonus d'esquive" + }, + [57]={ + ["desc"]="Bonus de pièce d'or" + }, + [58]={ + ["desc"]="Bonus d'attaque" + }, + [59]={ + ["desc"]="Bonus de PV" + }, + [60]={ + ["desc"]="Bonus de placement" + }, + [61]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [62]={ + ["desc"]="Bonus de pièce d'or" + }, + [63]={ + ["desc"]="Bonus d'attaque" + }, + [64]={ + ["desc"]="Bonus de PV" + }, + [65]={ + ["desc"]="Surtraitement" + }, + [66]={ + ["desc"]="Bonus de placement" + }, + [67]={ + ["desc"]="Bonus d'esquive" + }, + [68]={ + ["desc"]="Bonus de pièce d'or" + }, + [69]={ + ["desc"]="Bonus d'attaque" + }, + [70]={ + ["desc"]="Bonus de PV" + }, + [71]={ + ["desc"]="Bonus de placement" + }, + [72]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [73]={ + ["desc"]="Bonus de pièce d'or" + }, + [74]={ + ["desc"]="Bonus d'attaque" + }, + [75]={ + ["desc"]="Bonus de PV" + }, + [76]={ + ["desc"]="Esquive en cas de blessé" + }, + [77]={ + ["desc"]="Bonus de placement" + }, + [78]={ + ["desc"]="Bonus d'esquive" + }, + [79]={ + ["desc"]="Bonus de pièce d'or" + }, + [80]={ + ["desc"]="Bonus d'attaque" + }, + [81]={ + ["desc"]="Bonus de PV" + }, + [82]={ + ["desc"]="Bonus de placement" + }, + [83]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [84]={ + ["desc"]="Bonus de pièce d'or" + }, + [85]={ + ["desc"]="Bonus d'attaque" + }, + [86]={ + ["desc"]="Bonus de PV" + }, + [87]={ + ["desc"]="Récupération des compétences" + }, + [88]={ + ["desc"]="Bonus de placement" + }, + [89]={ + ["desc"]="Bonus d'esquive" + }, + [90]={ + ["desc"]="Bonus de pièce d'or" + }, + [91]={ + ["desc"]="Bonus d'attaque" + }, + [92]={ + ["desc"]="Bonus de PV" + }, + [93]={ + ["desc"]="Bonus de placement" + }, + [94]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [95]={ + ["desc"]="Bonus de pièce d'or" + }, + [96]={ + ["desc"]="Bonus d'attaque" + }, + [97]={ + ["desc"]="Bonus de PV" + }, + [98]={ + ["desc"]="Récupération d'attaque général" + }, + [99]={ + ["desc"]="Bonus de placement" + }, + [100]={ + ["desc"]="Bonus d'esquive" + }, + [101]={ + ["desc"]="Bonus de pièce d'or" + }, + [102]={ + ["desc"]="Bonus d'attaque" + }, + [103]={ + ["desc"]="Bonus de PV" + }, + [104]={ + ["desc"]="Bonus de placement" + }, + [105]={ + ["desc"]="Bonus de dégâts d'ATK général" + }, + [106]={ + ["desc"]="Bonus de pièce d'or" + }, + [107]={ + ["desc"]="Bonus d'attaque" + }, + [108]={ + ["desc"]="Bonus de PV" + }, + [109]={ + ["desc"]="Surtraitement" + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/mastery.lua.meta b/lua/app/config/strings/fr/mastery.lua.meta new file mode 100644 index 00000000..2dafb5a8 --- /dev/null +++ b/lua/app/config/strings/fr/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 479e164197664d146ad55f1a7159c0fb +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/mine_research.lua b/lua/app/config/strings/fr/mine_research.lua new file mode 100644 index 00000000..f09a4c23 --- /dev/null +++ b/lua/app/config/strings/fr/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [1]={ + ["desc"]="Allez vers la connaissance !" + }, + [2]={ + ["desc"]="Apprenez à fabriquer une torche en herbe" + }, + [3]={ + ["desc"]="Il fait froid dehors, ajoutez un manteau." + }, + [4]={ + ["desc"]="La torche est partie, ramassez plus d'herbe" + }, + [5]={ + ["desc"]="Ramassez des pierres et préparez-vous à écraser le monstre" + }, + [6]={ + ["desc"]="Étudier dur pour s'améliorer chaque jour" + }, + [7]={ + ["desc"]="Connaissances, plus de connaissances" + }, + [8]={ + ["desc"]="Il fait encore un peu froid, rajoutez une autre couche" + }, + [9]={ + ["desc"]="Broyer des pierres en couteaux" + }, + [10]={ + ["desc"]="Une branche morte est une meilleure torche" + }, + [11]={ + ["desc"]="Il y a des monstres qui lancent des pierres, ajoutez un autre vêtement" + }, + [12]={ + ["desc"]="Ramassez plus de branches au fur et à mesure qu'elles brûlent" + }, + [13]={ + ["desc"]="Sortez l'épée de fer rouillée ancestrale" + }, + [14]={ + ["desc"]="Accrochez vos cheveux pour apprendre plus vite" + }, + [15]={ + ["desc"]="Les connaissances étranges se sont accrues" + }, + [16]={ + ["desc"]="Les vêtements n'arrêteront pas les pierres, il faut porter une armure de fer" + }, + [17]={ + ["desc"]="L'épée de fer ancestrale brille" + }, + [18]={ + ["desc"]="Nous avons enfin appris à fabriquer d'excellentes torches" + }, + [19]={ + ["desc"]="Porter le casque en cas de mal à la tête" + }, + [20]={ + ["desc"]="Fabriquez les torches rapidement ou il n'y aura plus de torches à utiliser" + }, + [21]={ + ["desc"]="La feuille de fer est tombée et l'épée s'est transformée en épée d'acier" + }, + [22]={ + ["desc"]="Piquer la cuisse avec une épée quand on a sommeil" + }, + [23]={ + ["desc"]="Les connaissances étranges se sont accrues" + }, + [24]={ + ["desc"]="Porter une attelle en cas de mal au bras" + }, + [25]={ + ["desc"]="Ajouter des vêtements, continuer à ajouter des vêtements" + }, + [26]={ + ["desc"]="Aiguiser l'épée, continuer à aiguiser l'épée" + }, + [27]={ + ["desc"]="Ajouter des vêtements, continuer à ajouter des vêtements" + }, + [28]={ + ["desc"]="Aiguiser l'épée, continuer à aiguiser l'épée" + }, + [29]={ + ["desc"]="Ajouter des vêtements, continuer à ajouter des vêtements" + }, + [30]={ + ["desc"]="Aiguiser l'épée, continuer à aiguiser l'épée" + }, + [31]={ + ["desc"]="Ajouter des vêtements, continuer à ajouter des vêtements" + }, + [32]={ + ["desc"]="Aiguiser l'épée, continuer à aiguiser l'épée" + }, + [33]={ + ["desc"]="Ajouter des vêtements, continuer à ajouter des vêtements" + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/mine_research.lua.meta b/lua/app/config/strings/fr/mine_research.lua.meta new file mode 100644 index 00000000..7d606342 --- /dev/null +++ b/lua/app/config/strings/fr/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bd21f8122a1ed5b45a29a7167e48813a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/monster_base.lua b/lua/app/config/strings/fr/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/fr/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/monster_base.lua.meta b/lua/app/config/strings/fr/monster_base.lua.meta new file mode 100644 index 00000000..2f019ad3 --- /dev/null +++ b/lua/app/config/strings/fr/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 41f5724c48b5b8743a8ecdcda7c2bd50 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/runes.lua b/lua/app/config/strings/fr/runes.lua new file mode 100644 index 00000000..902ca156 --- /dev/null +++ b/lua/app/config/strings/fr/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + ["name"]="Ombre délabrée" + }, + [50102]={ + ["name"]="fougueux" + }, + [50103]={ + ["name"]="Guerre sauvage" + }, + [50104]={ + ["name"]="Martelage" + }, + [50201]={ + ["name"]="Recyclage" + }, + [50202]={ + ["name"]="Dextérité" + }, + [50203]={ + ["name"]="réprimer" + }, + [50204]={ + ["name"]="Astuces" + }, + [50301]={ + ["name"]="Toxique" + }, + [50302]={ + ["name"]="Empoisonné" + }, + [50303]={ + ["name"]="Empoisonné" + }, + [50304]={ + ["name"]="Faiblesses" + }, + [50401]={ + ["name"]="Pierre à feu" + }, + [50402]={ + ["name"]="Renversement" + }, + [50403]={ + ["name"]="instinct" + }, + [50404]={ + ["name"]="brave" + }, + [50501]={ + ["name"]="Armure légère" + }, + [50502]={ + ["name"]="Armure en tissu" + }, + [50503]={ + ["name"]="armure de cuir" + }, + [50504]={ + ["name"]="Armure lourde" + }, + [50601]={ + ["name"]="Souffle d'épée" + }, + [50602]={ + ["name"]="Baguette magique" + }, + [50603]={ + ["name"]="cœur de lame" + }, + [50604]={ + ["name"]="Âme de pistolet" + }, + [50701]={ + ["name"]="fureur" + }, + [50702]={ + ["name"]="Vent spirituel" + }, + [50703]={ + ["name"]="Sans fioriture" + }, + [50704]={ + ["name"]="Nuage de ligne" + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/runes.lua.meta b/lua/app/config/strings/fr/runes.lua.meta new file mode 100644 index 00000000..a43a9119 --- /dev/null +++ b/lua/app/config/strings/fr/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 52970be0e366bba48897c0aeab27f794 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/skill.lua b/lua/app/config/strings/fr/skill.lua new file mode 100644 index 00000000..bba4bbc5 --- /dev/null +++ b/lua/app/config/strings/fr/skill.lua @@ -0,0 +1,706 @@ +local skill = { + [11011]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11012]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11016]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21011]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21014]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21015]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31011]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31012]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31013]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41011]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41012]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41013]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [11021]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11022]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11026]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21021]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21024]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21025]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31021]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31022]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31023]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41021]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41022]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41023]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [11031]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11032]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11036]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21031]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21034]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21035]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31031]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31032]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31033]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41031]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41032]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41033]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [11041]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11042]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11046]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21041]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21044]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21045]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31041]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31042]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31043]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41041]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41042]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41043]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [11051]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11052]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11056]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21051]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21054]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21055]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31051]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31052]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31053]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41051]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41052]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41053]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [11061]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11062]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11066]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21061]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21064]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21065]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31061]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31062]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31063]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41061]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41062]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41063]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [11071]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11072]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11076]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21071]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21074]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21075]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31071]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31072]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31073]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41071]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41072]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41073]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [11081]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11082]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11086]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21081]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21084]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21085]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31081]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31082]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31083]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41081]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41082]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41083]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [11091]={ + ["name"]="Épée sanglante", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11092]={ + ["name"]="Coupe de brèche", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 Coupe de brèche vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [11096]={ + ["name"]="Souffle d'avalanche", + ["desc"]="Après tous les 25 attaques généraux, il appelle 3 épée géant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21091]={ + ["name"]="lame volante", + ["desc"]="Après tous les 8 attaques généraux, il appelle 3 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [21094]={ + ["name"]="Brouillard toxique", + ["desc"]="Après tous les 15 attaques généraux, il libère 1 cercle de Brouillard toxique où tous les 1seconde les ennemis souffrent des dégâts égaux à {0}% d'attaque." + }, + [21095]={ + ["name"]="Coupe de mille lames", + ["desc"]="Après tous les 25 attaques généraux, il appelle 6 lames volantes sur les ennemis, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31091]={ + ["name"]="Coupe de nouvelle lune", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 coupe vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31092]={ + ["name"]="Danse des armes", + ["desc"]="Après tous les 15 attaques généraux, il balance son arme vigoureusement, infligeant des dégâts égaux à {0}% d'attaque." + }, + [31093]={ + ["name"]="Pluie de balles", + ["desc"]="Après tous les 25 attaques généraux, il appelle 8lances, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41091]={ + ["name"]="tourbillon", + ["desc"]="Après tous les 8 attaques généraux, il libère 1 tourbillon vers l'avant, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41092]={ + ["name"]="Champ extrêmement froid", + ["desc"]="Après tous les 15 attaques généraux, il appelle 1 unité de glace sous les pieds, infligeant des dégâts égaux à {0}% d'attaque." + }, + [41093]={ + ["name"]="Résonance sombre", + ["desc"]="Après tous les 25 attaques généraux, il fait exploser tous les marques de sorts des ennemis, et les dégâts infligés par chaque couche de marque sont égaux à {0}% d'attaque." + }, + [400011]={ + ["desc"]="Tous les 3 déclenchements de la compétence d'arme, 2 foudres s'abattent sur l'ennemi tombé, chacun infligeant des dégâts à distance de l'attaque{0}%" + }, + [400021]={ + ["desc"]="A portée d'alerte, l'ATK+{0}%" + }, + [400031]={ + ["desc"]="En cas d'esquive réussie, l'ATK augmente de 30 % pendant 5 secondes, avec 15 secondes de temps de recharge" + }, + [400041]={ + ["desc"]="A portée d'alerte, les dégâts de renversement +{0}% et le temps de tomber se prolonge de 1 seconde" + }, + [400051]={ + ["desc"]="À portée d'alerte, le taux de Crit des ATK général augmente de 20 %, dégâts de Crit. augmente de {0}%" + }, + [401011]={ + ["desc"]="Toutes les 5 ATK général, une attaque sera envoyée vers l'ennemi le plus proche derrière, infligeant des dégâts égaux à ATK * {0}%" + }, + [401021]={ + ["desc"]="En cas de blessure, il renverse les monstres environnants et cause des dégâts égaux à ATK * {0}%, avec le temps de recharge de 15 secondes" + }, + [401031]={ + ["desc"]="Lorsque l'ennemi est projeté en l'air, les dégâts de renversement +{0}%, le nombre d'ennemis renversés +3" + }, + [401041]={ + ["desc"]="Lorsque le héros est en plein PV, l'ATK augmente de {0}%" + }, + [401051]={ + ["desc"]="A portée d'alerte, les dégâts de renversement +{0}%" + }, + [402011]={ + ["desc"]="Lorsque vous attaquez un ennemi tombé, chaque poursuite causera des dégâts égaux à ATK * {0}%" + }, + [402021]={ + ["desc"]="Lorsque le PV est inférieur à 30%, L'ATK augmente de {0}%" + }, + [402031]={ + ["desc"]="Tous les 3 déclenchements de la compétence d'arme, 2 foudres s'abattent sur l'ennemi tombé, chacun infligeant des dégâts à distance de l'attaque*{0}%." + }, + [402041]={ + ["desc"]="A portée d'alerte, l'ATK+{0}%" + }, + [402051]={ + ["desc"]="En cas d'esquive réussie, l'ATK augmente de 200 % pendant 5 secondes, avec 15 secondes de temps de recharge" + }, + [403011]={ + ["desc"]="A portée d'alerte, les dégâts de renversement +{0}% et le temps de tomber se prolonge de 1 seconde" + }, + [403021]={ + ["desc"]="À portée d'alerte, le taux de Crit des ATK général augmente de 20 %, dégâts de Crit. augmente de {0}%" + }, + [403031]={ + ["desc"]="Toutes les 5 ATK général, une attaque sera envoyée vers l'ennemi le plus proche derrière, infligeant des dégâts égaux à ATK * {0}%" + }, + [403041]={ + ["desc"]="En cas de blessure, il renverse les monstres environnants et cause des dégâts égaux à ATK * {0}%, avec le temps de recharge de 15 secondes" + }, + [403051]={ + ["desc"]="Lorsque l'ennemi est projeté en l'air, les dégâts de renversement +{0}%, le nombre d'ennemis renversés +5" + }, + [404011]={ + ["desc"]="Lorsque le héros est en plein PV, l'ATK augmente de {0}%" + }, + [404021]={ + ["desc"]="A portée d'alerte, les dégâts de renversement +{0}%" + }, + [404031]={ + ["desc"]="Lorsque vous attaquez un ennemi tombé, chaque poursuite causera des dégâts égaux à ATK * {0}%" + }, + [404041]={ + ["desc"]="Lorsque le PV est inférieur à 30%, L'ATK augmente de {0}%" + }, + [404051]={ + ["desc"]="Tous les 3 déclenchements de la compétence d'arme, 2 foudres s'abattent sur l'ennemi tombé, chacun infligeant des dégâts à distance de l'attaque*{0}%." + }, + [405011]={ + ["desc"]="A portée d'alerte, l'ATK+{0}%" + }, + [405021]={ + ["desc"]="En cas d'esquive réussie, l'ATK augmente de 1500 % pendant 5 secondes, avec 15 secondes de temps de recharge" + }, + [405031]={ + ["desc"]="A portée d'alerte, les dégâts de renversement +{0}% et le temps de tomber se prolonge de 1 seconde" + }, + [405041]={ + ["desc"]="À portée d'alerte, le taux de Crit des ATK général augmente de 20 %, dégâts de Crit. augmente de {0}%" + }, + [405051]={ + ["desc"]="Toutes les 5 ATK général, une attaque sera envoyée vers l'ennemi le plus proche derrière, infligeant des dégâts égaux à ATK * {0}%" + }, + [406011]={ + ["desc"]="En cas de blessure, il renverse les monstres environnants et cause des dégâts égaux à ATK * {0}%, avec le temps de recharge de 15 secondes" + }, + [406021]={ + ["desc"]="Lorsque l'ennemi est projeté en l'air, les dégâts de renversement +{0}%, le nombre d'ennemis renversés +10" + }, + [406031]={ + ["desc"]="Lorsque le héros est en plein PV, l'ATK augmente de {0}%" + }, + [406041]={ + ["desc"]="A portée d'alerte, les dégâts de renversement +{0}%" + }, + [406051]={ + ["desc"]="Lorsque vous attaquez un ennemi tombé, chaque poursuite causera des dégâts égaux à ATK * {0}%" + }, + [406061]={ + ["desc"]="Lorsque le PV est inférieur à 30%, L'ATK augmente de {0}%" + }, + [501011]={ + ["name"]="Ombre délabrée", + ["desc"]="Chaque fois que vous déclenchez une compétence, vous avez 20 % de chances de la déclencher une fois de plus" + }, + [501021]={ + ["name"]="fougueux", + ["desc"]="Lorsque le PV est plein, la compétence a 50 % de chances de s'est déclenchée une fois de plus" + }, + [501031]={ + ["name"]="Guerre sauvage", + ["desc"]="En cas de blessure, les dégâts de compétence augmente de 30% pendant 5 secondes, temps de recharge 5 secondes" + }, + [501041]={ + ["name"]="Martelage", + ["desc"]="Lorsque l'attaque général attaque une unité étourdie, les dégâts de l'attaque de base augmente de 100 %" + }, + [502011]={ + ["name"]="Recyclage", + ["desc"]="Chaque détonation doit conserver 20% de la couche de marque de sort" + }, + [502021]={ + ["name"]="Dextérité", + ["desc"]="Esquive +10 %" + }, + [502022]={ + ["name"]="Dextérité", + ["desc"]="Chaque esquive réussie ajoute 2 couches de marques de sort à tous les ennemis" + }, + [502031]={ + ["name"]="réprimer", + ["desc"]="Lorsqu'un Crit est appliqué, la cible de l'attaque général aura une marque de sort supplémentaire" + }, + [502041]={ + ["name"]="Astuces", + ["desc"]="Lorsque vous renverse un ennemi, il y a 30 % de chances de l'ajouter 10 couches de marques de sort" + }, + [503011]={ + ["name"]="Toxique", + ["desc"]="Les dégâts des blessures de poison ont 30 % de chances d'augmentent à 100 %" + }, + [503021]={ + ["name"]="Empoisonné", + ["desc"]="Chaque couche de poison augmente les dégâts de poison de 5 %" + }, + [503031]={ + ["name"]="Empoisonné", + ["desc"]="Dans la portée d'alerte, chaque attaque général a 50 % de chances d'ajouter une couche de poison" + }, + [503041]={ + ["name"]="Faiblesses", + ["desc"]="Lorsque la compétence touche un ennemi empoisonné, les dégâts augmentent de 50 %" + }, + [504011]={ + ["name"]="Pierre à feu", + ["desc"]="20% de chances de débloquer 1 compétence d'arme supplémentaire à chaque fois qu'elle est lancée" + }, + [504021]={ + ["name"]="Renversement", + ["desc"]="En cas de renversement, il y a 20 % de chances de libérer la compétence 3 une fois" + }, + [504031]={ + ["name"]="instinct", + ["desc"]="La compétence 2 sera libérée toutes les 10 secondes après être entré sur le terrain" + }, + [504041]={ + ["name"]="brave", + ["desc"]="La compétence a 30% de chances d'infliger des dégâts doublés" + }, + [505011]={ + ["name"]="Armure légère", + ["desc"]="Lorsque la compétence [Épée] est déclenchée, la durée du renversement augmentera de 0,5 seconde et les dégâts de l'attaque général augmenteront de 20% pendant 3 secondes, le temps de recharge est de 3 secondes." + }, + [505021]={ + ["name"]="Armure en tissu", + ["desc"]="Lorsque la compétence [Bâton] est déclenchée, 2 niveaux de marques de sorts y sont attachés" + }, + [505031]={ + ["name"]="armure de cuir", + ["desc"]="Lorsque la compétence [Dague] est déclenchée, il y a 20 % de chances de libérer la compétence 1 fois de plus" + }, + [505041]={ + ["name"]="Armure lourde", + ["desc"]="Lorsque la compétence [Lance] est déclenchée, il y a 20 % de chances de libérer la compétence 2 une fois de plus" + }, + [506011]={ + ["name"]="Souffle d'épée", + ["desc"]="[Épée] Lorsque vous utilisez une épée à deux mains, le taux de Crit de l'attaque général est augmentée de 100%." + }, + [506021]={ + ["name"]="Baguette magique", + ["desc"]="[Bâton] Lorsque vous utilisez le bâton, les dégâts de la détonation d'une marque de sort augmentent de 50%" + }, + [506031]={ + ["name"]="cœur de lame", + ["desc"]="[Dague] Lorsque vous utilisez la dague, la durée des dégâts de poison augmente de 5 secondes" + }, + [506041]={ + ["name"]="Âme de pistolet", + ["desc"]="[Lance] Lorsque vous utilisez la lance, les dégâts de la compétence 2 sont augmentés de 100%" + }, + [507011]={ + ["name"]="fureur", + ["desc"]="Taux de Crit +10%" + }, + [507021]={ + ["name"]="Vent spirituel", + ["desc"]="Taux d'esquive +10%" + }, + [507031]={ + ["name"]="Sans fioriture", + ["desc"]="Dégâts d'attaque général + 20 %" + }, + [507041]={ + ["name"]="Nuage de ligne", + ["desc"]="Dégâts de renversement +30%" + }, + [600011]={ + ["name"]="Attaque pour restaurer la vie", + ["desc"]="10 fois d'ATK aident à restaurer au plus 20% de PV" + }, + [600021]={ + ["name"]="Surtraitement", + ["desc"]="Lorsque le PV récupéré déborde, il sera converti en bouclier, qui peut former une valeur de bouclier jusqu'à 30% de la limite supérieure du PV" + }, + [600031]={ + ["name"]="Esquive en cas de blessé", + ["desc"]="Après avoir été blessé, le taux d'esquive augmente de 50 % pendant 3 secondes, avec temps de recharge de 30 secondes" + }, + [600041]={ + ["name"]="Vitesse d'attaque automatique", + ["desc"]="Lors de l'attaque automatique, la fréquence d'ATK augmente à 0,35 seconde/fois" + }, + [600051]={ + ["name"]="La compétence redonne de la vie", + ["desc"]="Il y a 30% de chances de restaurer 15% de PV lors de l'utilisation de compétences" + }, + [600061]={ + ["name"]="Attaque pour restaurer la vie", + ["desc"]="10 fois d'ATK aident à restaurer au plus 30% de PV" + }, + [600071]={ + ["name"]="Surtraitement", + ["desc"]="Lorsque le PV récupéré déborde, il sera converti en bouclier, qui peut former une valeur de bouclier jusqu'à 60% de la limite supérieure du PV" + }, + [600081]={ + ["name"]="Esquive en cas de blessé", + ["desc"]="Après avoir été blessé, le taux d'esquive augmente de 50 % pendant 5 secondes, avec temps de recharge de 30 secondes" + }, + [600091]={ + ["name"]="La compétence redonne de la vie", + ["desc"]="Il y a 30% de chances de restaurer 30% de PV lors de l'utilisation de compétences" + }, + [600101]={ + ["name"]="Attaque pour restaurer la vie", + ["desc"]="10 fois d'ATK aident à restaurer au plus 40% de PV" + }, + [600111]={ + ["name"]="Surtraitement", + ["desc"]="Lorsque le PV récupéré déborde, il sera converti en bouclier, qui peut former une valeur de bouclier jusqu'à 90% de la limite supérieure du PV" + } +} +local config = { +data=skill,count=184 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/skill.lua.meta b/lua/app/config/strings/fr/skill.lua.meta new file mode 100644 index 00000000..bbf82dba --- /dev/null +++ b/lua/app/config/strings/fr/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 171f6786e07e6084c9a29a86acb397d9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/task.lua b/lua/app/config/strings/fr/task.lua new file mode 100644 index 00000000..5693a592 --- /dev/null +++ b/lua/app/config/strings/fr/task.lua @@ -0,0 +1,130 @@ +local task = { + [1]={ + ["desc"]="Vous avez vaincu {0} ennemis", + ["tutorial_desc"]="Vaincre l'ennemi" + }, + [2]={ + ["desc"]="Niveau {0} passé", + ["tutorial_desc"]="Passer le niveau" + }, + [3]={ + ["desc"]="Faire {0} appels", + ["tutorial_desc"]="appeler" + }, + [4]={ + ["desc"]="Regarder les publicités {0} fois", + ["tutorial_desc"]="Regarder de la publicité" + }, + [5]={ + ["desc"]="Accomplir les tâches quotidiennes", + ["tutorial_desc"]="Accomplir les tâches quotidiennes" + }, + [6]={ + ["desc"]="Enregistrer pendant {0} jours", + ["tutorial_desc"]="Nombre total de jours de connexion" + }, + [7]={ + ["desc"]="Faire {0} appels aux armes", + ["tutorial_desc"]="Appel aux armes" + }, + [8]={ + ["desc"]="Faire {0} appels aux défenses", + ["tutorial_desc"]="Appel aux défenses" + }, + [9]={ + ["desc"]="Faire {0} appels aux héritages", + ["tutorial_desc"]="Appel aux héritages" + }, + [10]={ + ["desc"]="Donjon {0} de diamant accompli", + ["tutorial_desc"]="Accomplir le donjon de diamant" + }, + [11]={ + ["desc"]="Donjon {0} d'or accompli", + ["tutorial_desc"]="Accomplir le donjon d'or" + }, + [12]={ + ["desc"]="Donjon {0} d'argent accompli", + ["tutorial_desc"]="Accomplir le donjon d'argent" + }, + [13]={ + ["desc"]="Donjon {0} de caractéristique accompli", + ["tutorial_desc"]="Donjon de caractéristique accompli" + }, + [14]={ + ["desc"]="Niveau d'arène atteint {0}", + ["tutorial_desc"]="Niveau d'arène" + }, + [15]={ + ["desc"]="Utiliser la torche {0} fois", + ["tutorial_desc"]="Utiliser la torche" + }, + [16]={ + ["desc"]="Utiliser la bombe incendiaire {0} fois", + ["tutorial_desc"]="Utiliser la bombe incendiaire" + }, + [17]={ + ["desc"]="Utiliser la Bougie de Lumière Sainte {0} fois", + ["tutorial_desc"]="Utiliser la Bougie de Lumière Sainte" + }, + [18]={ + ["desc"]="Accomplir {0} fois d'études", + ["tutorial_desc"]="Accomplir des études" + }, + [19]={ + ["desc"]="Dissiper {0} zones de brouillard", + ["tutorial_desc"]="Dissiper les zones de brouillard" + }, + [20]={ + ["desc"]="Explorer vers l'avant {0} m", + ["tutorial_desc"]="Explorer vers l'avant" + }, + [21]={ + ["desc"]="Recevoir {0} fois de bénédiction", + ["tutorial_desc"]="Recevoir des bénédictions" + }, + [22]={ + ["desc"]="Obtenir {0} runes", + ["tutorial_desc"]="Obtenir des runes" + }, + [23]={ + ["desc"]="Renforcer {0} runes", + ["tutorial_desc"]="Renforcer des runes" + }, + [24]={ + ["desc"]="Entraîner {0} fois d'attaques", + ["tutorial_desc"]="Entrainer les attaques" + }, + [25]={ + ["desc"]="Entraîner {0} fois de PV", + ["tutorial_desc"]="Entrainer le PV" + }, + [26]={ + ["desc"]="Défier {0} fois les niveaux", + ["tutorial_desc"]="Défier les niveaux" + }, + [27]={ + ["desc"]="Accomplir {0} fois le donjon de diamant", + ["tutorial_desc"]="Nombre de défi du donjon de diamant" + }, + [28]={ + ["desc"]="Accomplir {0} fois le donjon d'or", + ["tutorial_desc"]="Nombre de défi du donjon d'or" + }, + [29]={ + ["desc"]="Accomplir {0} fois le donjon d'argent", + ["tutorial_desc"]="Nombre de défi du donjon d'argent" + }, + [30]={ + ["desc"]="Accomplir {0} fois le donjon de caractéristique", + ["tutorial_desc"]="Nombre de défi du donjon de caractéristique" + }, + [31]={ + ["desc"]="Défier {0} fois l'arène", + ["tutorial_desc"]="Défier l'arène" + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/task.lua.meta b/lua/app/config/strings/fr/task.lua.meta new file mode 100644 index 00000000..df338280 --- /dev/null +++ b/lua/app/config/strings/fr/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7551d18cb57b42546954225f33b31176 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/task_daily.lua b/lua/app/config/strings/fr/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/fr/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/task_daily.lua.meta b/lua/app/config/strings/fr/task_daily.lua.meta new file mode 100644 index 00000000..e9494af3 --- /dev/null +++ b/lua/app/config/strings/fr/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b1f38af843ffb8a44940876550c589b4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/tutorial.lua b/lua/app/config/strings/fr/tutorial.lua new file mode 100644 index 00000000..d132ed69 --- /dev/null +++ b/lua/app/config/strings/fr/tutorial.lua @@ -0,0 +1,72 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + ["value"]="Il est temps de commencer le processus de sélection !" + }, + ["TUTORIAL_TXT_2"]={ + ["value"]="Maintenant, commencez votre show ~" + }, + ["TUTORIAL_TXT_3"]={ + ["value"]="La bataille s'est bien déroulée tout à l'heure, la prochaine sera un peu plus difficile, entraînez-vous !" + }, + ["TUTORIAL_TXT_4"]={ + ["value"]="Appuyez longuement pour vous entraîner rapidement passez d'abord au niveau 5." + }, + ["TUTORIAL_TXT_5"]={ + ["value"]="La fonction d'arme a été débloquée, alors allons invoquer une arme." + }, + ["TUTORIAL_TXT_6"]={ + ["value"]="De nombreuses armes ont été invoquées, allez les équiper." + }, + ["TUTORIAL_TXT_7"]={ + ["value"]="Les mêmes armes obtenues peuvent être renforcées pour améliorer les attributs." + }, + ["TUTORIAL_TXT_8"]={ + ["value"]="Renforcer tout peut renforcer toutes les armes qui peuvent être renforcées et avoir plus d'armes de haut niveau peut également améliorer les attributs." + }, + ["TUTORIAL_TXT_9"]={ + ["value"]="Les armes ont des compétences, qui seront automatiquement libérées après un certain nombre d'attaques." + }, + ["TUTORIAL_TXT_10"]={ + ["value"]="Les défenses ont été débloquées, allons les appeler et les équiper." + }, + ["TUTORIAL_TXT_11"]={ + ["value"]="La défense est divisée en vêtements et couvre-chefs, les vêtements apportant le PV et les couvre-chefs l'attaque et le PV." + }, + ["TUTORIAL_TXT_12"]={ + ["value"]="La défense, comme les armes, peut être renforcé afin d'améliorer ses attributs." + }, + ["TUTORIAL_TXT_13"]={ + ["value"]="Bataille automatique, passer les niveaux facilement !" + }, + ["TUTORIAL_TXT_14"]={ + ["value"]="La fonction d'héritage a été débloquée, alors allons appeler l'héritage !" + }, + ["TUTORIAL_TXT_15"]={ + ["value"]="Les héritages sont des choses étranges, voyons comment les utiliser ~" + }, + ["TUTORIAL_TXT_16"]={ + ["value"]="Les héritages renforcés peuvent également fournir une croissance aux attributs." + }, + ["TUTORIAL_TXT_17"]={ + ["value"]="Continuez à franchir les niveaux pour débloquer d'autres barres d'équipement d'héritage." + }, + ["TUTORIAL_TXT_18"]={ + ["value"]="Nous pouvons maintenant débloquer plus de compétences de maîtrise, allez voir !" + }, + ["TUTORIAL_TXT_19"]={ + ["value"]="L'exploration du château est ouverte et on dit qu'il regorge de trésors." + }, + ["TUTORIAL_TXT_20"]={ + ["value"]="Utilisez la torche pour commencer à explorer~" + }, + ["TUTORIAL_TXT_21"]={ + ["value"]="Selon les instructions, continuez à explorer vers le bas pour obtenir plus de trésors !" + }, + ["TUTORIAL_TXT_22"]={ + ["value"]="Vous voulez savoir comment les armes, les défenses et les héritages sont liés les uns aux autres ? Cliquez ici !" + } +} +local config = { +data=tutorial,count=22 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/tutorial.lua.meta b/lua/app/config/strings/fr/tutorial.lua.meta new file mode 100644 index 00000000..6c64be3e --- /dev/null +++ b/lua/app/config/strings/fr/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 92b04241165e17a4b929f156faa44934 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/fr/tutorialtask.lua b/lua/app/config/strings/fr/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/fr/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/fr/tutorialtask.lua.meta b/lua/app/config/strings/fr/tutorialtask.lua.meta new file mode 100644 index 00000000..62392b0a --- /dev/null +++ b/lua/app/config/strings/fr/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6a05a0445fa30c0498568cc6c4cfdd69 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id.meta b/lua/app/config/strings/id.meta new file mode 100644 index 00000000..02f69235 --- /dev/null +++ b/lua/app/config/strings/id.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10b9aaa9a7f80c749bb87f05abba02bc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/id/act_battle_pass_task.lua b/lua/app/config/strings/id/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/id/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/act_battle_pass_task.lua.meta b/lua/app/config/strings/id/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..51794b3a --- /dev/null +++ b/lua/app/config/strings/id/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2ca0d5100dceeff448dc7780256f7429 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/act_fund.lua b/lua/app/config/strings/id/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/id/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/act_fund.lua.meta b/lua/app/config/strings/id/act_fund.lua.meta new file mode 100644 index 00000000..96a014ab --- /dev/null +++ b/lua/app/config/strings/id/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9645c8b50c4fd7d42ad72267d6ba3510 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/act_sevenday_quest.lua b/lua/app/config/strings/id/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/id/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/act_sevenday_quest.lua.meta b/lua/app/config/strings/id/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..96279d19 --- /dev/null +++ b/lua/app/config/strings/id/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c3fb57a7cc719e944aa0f84960e9ab06 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/arena.lua b/lua/app/config/strings/id/arena.lua new file mode 100644 index 00000000..f6b81b9f --- /dev/null +++ b/lua/app/config/strings/id/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/arena.lua.meta b/lua/app/config/strings/id/arena.lua.meta new file mode 100644 index 00000000..b5a4b1ce --- /dev/null +++ b/lua/app/config/strings/id/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: cea806eba479323488045e18416baaf2 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/attr.lua b/lua/app/config/strings/id/attr.lua new file mode 100644 index 00000000..cc681634 --- /dev/null +++ b/lua/app/config/strings/id/attr.lua @@ -0,0 +1,141 @@ +local attr = { + [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=attr,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/attr.lua.meta b/lua/app/config/strings/id/attr.lua.meta new file mode 100644 index 00000000..ff3aab2e --- /dev/null +++ b/lua/app/config/strings/id/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ed32e897792f6c7429c486a33c24481c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/collection.lua b/lua/app/config/strings/id/collection.lua new file mode 100644 index 00000000..06cecc89 --- /dev/null +++ b/lua/app/config/strings/id/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/collection.lua.meta b/lua/app/config/strings/id/collection.lua.meta new file mode 100644 index 00000000..2028554f --- /dev/null +++ b/lua/app/config/strings/id/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 59b9fe6d06eb9fc4cb0ead3f32b3be37 +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 new file mode 100644 index 00000000..8d0d286d --- /dev/null +++ b/lua/app/config/strings/id/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10007]={ + + }, + [10008]={ + + }, + [10009]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10107]={ + + }, + [10108]={ + + }, + [10109]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10203]={ + + }, + [10204]={ + + }, + [10205]={ + + }, + [10206]={ + + }, + [10207]={ + + }, + [10208]={ + + }, + [10209]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [10303]={ + + }, + [10304]={ + + }, + [10305]={ + + }, + [10306]={ + + }, + [10307]={ + + }, + [10308]={ + + }, + [10309]={ + + }, + [20001]={ + + }, + [20002]={ + + }, + [20003]={ + + }, + [20004]={ + + }, + [20005]={ + + }, + [20006]={ + + }, + [20007]={ + + }, + [20101]={ + + }, + [20102]={ + + }, + [20103]={ + + }, + [20104]={ + + }, + [20105]={ + + }, + [20106]={ + + }, + [20107]={ + + }, + [20201]={ + + }, + [20202]={ + + }, + [20203]={ + + }, + [20204]={ + + }, + [20205]={ + + }, + [20206]={ + + }, + [20207]={ + + }, + [20301]={ + + }, + [20302]={ + + }, + [20303]={ + + }, + [20304]={ + + }, + [20305]={ + + }, + [20306]={ + + }, + [20307]={ + + }, + [30001]={ + + }, + [30002]={ + + }, + [30003]={ + + }, + [30004]={ + + }, + [30005]={ + + }, + [30006]={ + + }, + [30007]={ + + }, + [30101]={ + + }, + [30102]={ + + }, + [30103]={ + + }, + [30104]={ + + }, + [30105]={ + + }, + [30106]={ + + }, + [30107]={ + + }, + [30201]={ + + }, + [30202]={ + + }, + [30203]={ + + }, + [30204]={ + + }, + [30205]={ + + }, + [30206]={ + + }, + [30207]={ + + }, + [30301]={ + + }, + [30302]={ + + }, + [30303]={ + + }, + [30304]={ + + }, + [30305]={ + + }, + [30306]={ + + }, + [30307]={ + + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/equip.lua.meta b/lua/app/config/strings/id/equip.lua.meta new file mode 100644 index 00000000..ceb778b3 --- /dev/null +++ b/lua/app/config/strings/id/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 514e843b78d532d43a5c2c846a044f0f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/global.lua b/lua/app/config/strings/id/global.lua new file mode 100644 index 00000000..8d7b7871 --- /dev/null +++ b/lua/app/config/strings/id/global.lua @@ -0,0 +1,5 @@ +local localization_global = +{ +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/id/global.lua.meta b/lua/app/config/strings/id/global.lua.meta new file mode 100644 index 00000000..2ddf6ab1 --- /dev/null +++ b/lua/app/config/strings/id/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e13fb0ac7b0c3f8449194c8af92f32d1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/hero.lua b/lua/app/config/strings/id/hero.lua new file mode 100644 index 00000000..01c2c0ba --- /dev/null +++ b/lua/app/config/strings/id/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/hero.lua.meta b/lua/app/config/strings/id/hero.lua.meta new file mode 100644 index 00000000..6477912a --- /dev/null +++ b/lua/app/config/strings/id/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 840f94164da34f24593e778a8065c045 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/item.lua b/lua/app/config/strings/id/item.lua new file mode 100644 index 00000000..d0535476 --- /dev/null +++ b/lua/app/config/strings/id/item.lua @@ -0,0 +1,89 @@ +local item = { + [1]={ + ["name"]="Gold", + ["desc"]="Mata uang umum yang bisa digunakan di banyak tempat" + }, + [2]={ + ["name"]="Diamond", + ["desc"]="Mata uang langka yang bisa digunakan untuk membeli sebagian besar item" + }, + [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]={ + + } +} +local config = { +data=item,count=27 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/item.lua.meta b/lua/app/config/strings/id/item.lua.meta new file mode 100644 index 00000000..76f3113c --- /dev/null +++ b/lua/app/config/strings/id/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7d9053bb4f2aa9046a58a398d0230e61 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/legacy.lua b/lua/app/config/strings/id/legacy.lua new file mode 100644 index 00000000..99d9f42a --- /dev/null +++ b/lua/app/config/strings/id/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + + }, + [40002]={ + + }, + [40003]={ + + }, + [40004]={ + + }, + [40005]={ + + }, + [40101]={ + + }, + [40102]={ + + }, + [40103]={ + + }, + [40104]={ + + }, + [40105]={ + + }, + [40201]={ + + }, + [40202]={ + + }, + [40203]={ + + }, + [40204]={ + + }, + [40205]={ + + }, + [40301]={ + + }, + [40302]={ + + }, + [40303]={ + + }, + [40304]={ + + }, + [40305]={ + + }, + [40401]={ + + }, + [40402]={ + + }, + [40403]={ + + }, + [40404]={ + + }, + [40405]={ + + }, + [40501]={ + + }, + [40502]={ + + }, + [40503]={ + + }, + [40504]={ + + }, + [40505]={ + + }, + [40601]={ + + }, + [40602]={ + + }, + [40603]={ + + }, + [40604]={ + + }, + [40605]={ + + }, + [40606]={ + + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/legacy.lua.meta b/lua/app/config/strings/id/legacy.lua.meta new file mode 100644 index 00000000..a1a57687 --- /dev/null +++ b/lua/app/config/strings/id/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 42b1d227aca24604f971573af3d78b94 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/mail.lua b/lua/app/config/strings/id/mail.lua new file mode 100644 index 00000000..a4d974e0 --- /dev/null +++ b/lua/app/config/strings/id/mail.lua @@ -0,0 +1,21 @@ +local mail = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/mail.lua.meta b/lua/app/config/strings/id/mail.lua.meta new file mode 100644 index 00000000..97345b34 --- /dev/null +++ b/lua/app/config/strings/id/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9971f3fc71eed684da4c2ce81647ca77 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/mall_act.lua b/lua/app/config/strings/id/mall_act.lua new file mode 100644 index 00000000..960b5c9c --- /dev/null +++ b/lua/app/config/strings/id/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + + }, + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [20001]={ + + }, + [30001]={ + + }, + [40001]={ + + }, + [60001]={ + + }, + [60002]={ + + }, + [70001]={ + + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/mall_act.lua.meta b/lua/app/config/strings/id/mall_act.lua.meta new file mode 100644 index 00000000..5a4bb35b --- /dev/null +++ b/lua/app/config/strings/id/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2ff8f677622e3aa4a96270e830586314 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/mall_daily.lua b/lua/app/config/strings/id/mall_daily.lua new file mode 100644 index 00000000..3a3f154a --- /dev/null +++ b/lua/app/config/strings/id/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/mall_daily.lua.meta b/lua/app/config/strings/id/mall_daily.lua.meta new file mode 100644 index 00000000..6b156159 --- /dev/null +++ b/lua/app/config/strings/id/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a9aff855e05bc2d45ae448549283b034 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/mall_treasure.lua b/lua/app/config/strings/id/mall_treasure.lua new file mode 100644 index 00000000..b446b540 --- /dev/null +++ b/lua/app/config/strings/id/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/mall_treasure.lua.meta b/lua/app/config/strings/id/mall_treasure.lua.meta new file mode 100644 index 00000000..65d9769c --- /dev/null +++ b/lua/app/config/strings/id/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ddbc44376ff112a48a7afdb2b163e242 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/mastery.lua b/lua/app/config/strings/id/mastery.lua new file mode 100644 index 00000000..84521b29 --- /dev/null +++ b/lua/app/config/strings/id/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/mastery.lua.meta b/lua/app/config/strings/id/mastery.lua.meta new file mode 100644 index 00000000..8a7ac2cd --- /dev/null +++ b/lua/app/config/strings/id/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 41dadb314c2e9f448a564a12194a540f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/mine_research.lua b/lua/app/config/strings/id/mine_research.lua new file mode 100644 index 00000000..f5198ea1 --- /dev/null +++ b/lua/app/config/strings/id/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [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]={ + + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/mine_research.lua.meta b/lua/app/config/strings/id/mine_research.lua.meta new file mode 100644 index 00000000..89513829 --- /dev/null +++ b/lua/app/config/strings/id/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a2775c6e2e56e054ba33bec219b0f651 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/monster_base.lua b/lua/app/config/strings/id/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/id/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/monster_base.lua.meta b/lua/app/config/strings/id/monster_base.lua.meta new file mode 100644 index 00000000..aadd5067 --- /dev/null +++ b/lua/app/config/strings/id/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fdc76aa5dd49ba14f80d98468f1af4ec +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/runes.lua b/lua/app/config/strings/id/runes.lua new file mode 100644 index 00000000..9466cf77 --- /dev/null +++ b/lua/app/config/strings/id/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + + }, + [50102]={ + + }, + [50103]={ + + }, + [50104]={ + + }, + [50201]={ + + }, + [50202]={ + + }, + [50203]={ + + }, + [50204]={ + + }, + [50301]={ + + }, + [50302]={ + + }, + [50303]={ + + }, + [50304]={ + + }, + [50401]={ + + }, + [50402]={ + + }, + [50403]={ + + }, + [50404]={ + + }, + [50501]={ + + }, + [50502]={ + + }, + [50503]={ + + }, + [50504]={ + + }, + [50601]={ + + }, + [50602]={ + + }, + [50603]={ + + }, + [50604]={ + + }, + [50701]={ + + }, + [50702]={ + + }, + [50703]={ + + }, + [50704]={ + + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/runes.lua.meta b/lua/app/config/strings/id/runes.lua.meta new file mode 100644 index 00000000..0d550052 --- /dev/null +++ b/lua/app/config/strings/id/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e64133bd7e358074e880a71dcc85a24e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/skill.lua b/lua/app/config/strings/id/skill.lua new file mode 100644 index 00000000..4b430b5b --- /dev/null +++ b/lua/app/config/strings/id/skill.lua @@ -0,0 +1,267 @@ +local skill = { + [11011]={ + + }, + [11012]={ + + }, + [11013]={ + + }, + [21011]={ + + }, + [21014]={ + + }, + [21015]={ + + }, + [31011]={ + + }, + [31014]={ + + }, + [31015]={ + + }, + [41011]={ + + }, + [41014]={ + + }, + [41015]={ + + }, + [400011]={ + + }, + [400021]={ + + }, + [400031]={ + + }, + [400041]={ + + }, + [400051]={ + + }, + [401011]={ + + }, + [401021]={ + + }, + [401031]={ + + }, + [401041]={ + + }, + [401051]={ + + }, + [402011]={ + + }, + [402021]={ + + }, + [402031]={ + + }, + [402041]={ + + }, + [402051]={ + + }, + [403011]={ + + }, + [403021]={ + + }, + [403031]={ + + }, + [403041]={ + + }, + [403051]={ + + }, + [404011]={ + + }, + [404021]={ + + }, + [404031]={ + + }, + [404041]={ + + }, + [404051]={ + + }, + [405011]={ + + }, + [405021]={ + + }, + [405031]={ + + }, + [405041]={ + + }, + [405051]={ + + }, + [406011]={ + + }, + [406021]={ + + }, + [406031]={ + + }, + [406041]={ + + }, + [406051]={ + + }, + [406061]={ + + }, + [501011]={ + + }, + [501021]={ + + }, + [501031]={ + + }, + [501041]={ + + }, + [502011]={ + + }, + [502021]={ + + }, + [502022]={ + + }, + [502031]={ + + }, + [502041]={ + + }, + [503011]={ + + }, + [503021]={ + + }, + [503031]={ + + }, + [503041]={ + + }, + [504011]={ + + }, + [504021]={ + + }, + [504031]={ + + }, + [504041]={ + + }, + [505011]={ + + }, + [505021]={ + + }, + [505031]={ + + }, + [505041]={ + + }, + [506011]={ + + }, + [506021]={ + + }, + [506031]={ + + }, + [506041]={ + + }, + [507011]={ + + }, + [507021]={ + + }, + [507031]={ + + }, + [507041]={ + + }, + [600011]={ + + }, + [600021]={ + + }, + [600031]={ + + }, + [600041]={ + + }, + [600051]={ + + }, + [600061]={ + + }, + [600071]={ + + }, + [600081]={ + + }, + [600091]={ + + }, + [600101]={ + + } +} +local config = { +data=skill,count=87 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/skill.lua.meta b/lua/app/config/strings/id/skill.lua.meta new file mode 100644 index 00000000..daa8cbb1 --- /dev/null +++ b/lua/app/config/strings/id/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b44a133c5b0cbfb4f8c6aa70d8485fab +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/task.lua b/lua/app/config/strings/id/task.lua new file mode 100644 index 00000000..2f9b2cad --- /dev/null +++ b/lua/app/config/strings/id/task.lua @@ -0,0 +1,99 @@ +local task = { + [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]={ + + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/task.lua.meta b/lua/app/config/strings/id/task.lua.meta new file mode 100644 index 00000000..04d9f930 --- /dev/null +++ b/lua/app/config/strings/id/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e7eeef714bcab3e43aeb862efb830da6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/task_daily.lua b/lua/app/config/strings/id/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/id/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/task_daily.lua.meta b/lua/app/config/strings/id/task_daily.lua.meta new file mode 100644 index 00000000..dd4ebfdb --- /dev/null +++ b/lua/app/config/strings/id/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: aad3e5371b050b2429ff4a3c2d8891b5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/tutorial.lua b/lua/app/config/strings/id/tutorial.lua new file mode 100644 index 00000000..21efc841 --- /dev/null +++ b/lua/app/config/strings/id/tutorial.lua @@ -0,0 +1,66 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + + }, + ["TUTORIAL_TXT_2"]={ + + }, + ["TUTORIAL_TXT_3"]={ + + }, + ["TUTORIAL_TXT_4"]={ + + }, + ["TUTORIAL_TXT_5"]={ + + }, + ["TUTORIAL_TXT_6"]={ + + }, + ["TUTORIAL_TXT_7"]={ + + }, + ["TUTORIAL_TXT_8"]={ + + }, + ["TUTORIAL_TXT_9"]={ + + }, + ["TUTORIAL_TXT_10"]={ + + }, + ["TUTORIAL_TXT_11"]={ + + }, + ["TUTORIAL_TXT_12"]={ + + }, + ["TUTORIAL_TXT_13"]={ + + }, + ["TUTORIAL_TXT_14"]={ + + }, + ["TUTORIAL_TXT_15"]={ + + }, + ["TUTORIAL_TXT_16"]={ + + }, + ["TUTORIAL_TXT_17"]={ + + }, + ["TUTORIAL_TXT_18"]={ + + }, + ["TUTORIAL_TXT_19"]={ + + }, + ["TUTORIAL_TXT_20"]={ + + } +} +local config = { +data=tutorial,count=20 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/tutorial.lua.meta b/lua/app/config/strings/id/tutorial.lua.meta new file mode 100644 index 00000000..6ff5e5f3 --- /dev/null +++ b/lua/app/config/strings/id/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d02f40567d974ae4b887150e334d3ca5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/id/tutorialtask.lua b/lua/app/config/strings/id/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/id/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/id/tutorialtask.lua.meta b/lua/app/config/strings/id/tutorialtask.lua.meta new file mode 100644 index 00000000..b0740773 --- /dev/null +++ b/lua/app/config/strings/id/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 396e0aa3685bcaa40b34b52c17f1d8be +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja.meta b/lua/app/config/strings/ja.meta new file mode 100644 index 00000000..b70ff1b0 --- /dev/null +++ b/lua/app/config/strings/ja.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 60abf5acfc4e79b4583fa2175f0b2f07 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/ja/act_battle_pass_task.lua b/lua/app/config/strings/ja/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/ja/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/act_battle_pass_task.lua.meta b/lua/app/config/strings/ja/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..b6ed9048 --- /dev/null +++ b/lua/app/config/strings/ja/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c840b613319544f449b026af3b84eb7f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/act_fund.lua b/lua/app/config/strings/ja/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/ja/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/act_fund.lua.meta b/lua/app/config/strings/ja/act_fund.lua.meta new file mode 100644 index 00000000..a0d3eaae --- /dev/null +++ b/lua/app/config/strings/ja/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6914860ae76740e438528320a977b696 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/act_sevenday_quest.lua b/lua/app/config/strings/ja/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/ja/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/act_sevenday_quest.lua.meta b/lua/app/config/strings/ja/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..cda02a5b --- /dev/null +++ b/lua/app/config/strings/ja/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 72b8f49cae9174f4cbb9b091ada8f554 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/arena.lua b/lua/app/config/strings/ja/arena.lua new file mode 100644 index 00000000..f6b81b9f --- /dev/null +++ b/lua/app/config/strings/ja/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/arena.lua.meta b/lua/app/config/strings/ja/arena.lua.meta new file mode 100644 index 00000000..f7ec1c0e --- /dev/null +++ b/lua/app/config/strings/ja/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 99bcaadf473d2c646b53a2d355613b87 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/attr.lua b/lua/app/config/strings/ja/attr.lua new file mode 100644 index 00000000..30c59ff6 --- /dev/null +++ b/lua/app/config/strings/ja/attr.lua @@ -0,0 +1,105 @@ +local attr = { + [1]={ + ["name"]="HP" + }, + [2]={ + ["name"]="攻撃" + }, + [3]={ + ["name"]="クリティカルヒット率" + }, + [4]={ + ["name"]="クリティカルダメージ" + }, + [5]={ + ["name"]="ダメージ軽減" + }, + [6]={ + ["name"]="攻撃" + }, + [7]={ + ["name"]="攻撃" + }, + [8]={ + ["name"]="攻撃" + }, + [9]={ + ["name"]="攻撃" + }, + [10]={ + ["name"]="攻撃" + }, + [11]={ + ["name"]="攻撃" + }, + [12]={ + ["name"]="攻撃" + }, + [13]={ + ["name"]="攻撃" + }, + [14]={ + ["name"]="攻撃" + }, + [15]={ + ["name"]="HP" + }, + [16]={ + ["name"]="HP" + }, + [17]={ + ["name"]="HP" + }, + [18]={ + ["name"]="HP" + }, + [19]={ + ["name"]="HP" + }, + [20]={ + ["name"]="HP" + }, + [21]={ + ["name"]="HP" + }, + [22]={ + ["name"]="ダメージ" + }, + [23]={ + + }, + [24]={ + ["name"]="コイン獲得" + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + } +} +local config = { +data=attr,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/attr.lua.meta b/lua/app/config/strings/ja/attr.lua.meta new file mode 100644 index 00000000..ebb54ccd --- /dev/null +++ b/lua/app/config/strings/ja/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 30af32126e9dd2243a0c5d6d6b9f0644 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/collection.lua b/lua/app/config/strings/ja/collection.lua new file mode 100644 index 00000000..06cecc89 --- /dev/null +++ b/lua/app/config/strings/ja/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/collection.lua.meta b/lua/app/config/strings/ja/collection.lua.meta new file mode 100644 index 00000000..472d6d72 --- /dev/null +++ b/lua/app/config/strings/ja/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 00611f2c3f8d9b24a8c5dbe69bb4fdd3 +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 new file mode 100644 index 00000000..8d0d286d --- /dev/null +++ b/lua/app/config/strings/ja/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10007]={ + + }, + [10008]={ + + }, + [10009]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10107]={ + + }, + [10108]={ + + }, + [10109]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10203]={ + + }, + [10204]={ + + }, + [10205]={ + + }, + [10206]={ + + }, + [10207]={ + + }, + [10208]={ + + }, + [10209]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [10303]={ + + }, + [10304]={ + + }, + [10305]={ + + }, + [10306]={ + + }, + [10307]={ + + }, + [10308]={ + + }, + [10309]={ + + }, + [20001]={ + + }, + [20002]={ + + }, + [20003]={ + + }, + [20004]={ + + }, + [20005]={ + + }, + [20006]={ + + }, + [20007]={ + + }, + [20101]={ + + }, + [20102]={ + + }, + [20103]={ + + }, + [20104]={ + + }, + [20105]={ + + }, + [20106]={ + + }, + [20107]={ + + }, + [20201]={ + + }, + [20202]={ + + }, + [20203]={ + + }, + [20204]={ + + }, + [20205]={ + + }, + [20206]={ + + }, + [20207]={ + + }, + [20301]={ + + }, + [20302]={ + + }, + [20303]={ + + }, + [20304]={ + + }, + [20305]={ + + }, + [20306]={ + + }, + [20307]={ + + }, + [30001]={ + + }, + [30002]={ + + }, + [30003]={ + + }, + [30004]={ + + }, + [30005]={ + + }, + [30006]={ + + }, + [30007]={ + + }, + [30101]={ + + }, + [30102]={ + + }, + [30103]={ + + }, + [30104]={ + + }, + [30105]={ + + }, + [30106]={ + + }, + [30107]={ + + }, + [30201]={ + + }, + [30202]={ + + }, + [30203]={ + + }, + [30204]={ + + }, + [30205]={ + + }, + [30206]={ + + }, + [30207]={ + + }, + [30301]={ + + }, + [30302]={ + + }, + [30303]={ + + }, + [30304]={ + + }, + [30305]={ + + }, + [30306]={ + + }, + [30307]={ + + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/equip.lua.meta b/lua/app/config/strings/ja/equip.lua.meta new file mode 100644 index 00000000..fb63cccb --- /dev/null +++ b/lua/app/config/strings/ja/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9d3568810c963a349aef10fbfaa72991 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/global.lua b/lua/app/config/strings/ja/global.lua new file mode 100644 index 00000000..ba5bae53 --- /dev/null +++ b/lua/app/config/strings/ja/global.lua @@ -0,0 +1,161 @@ +local localization_global = +{ + ["TASK_DAILY_TITLE"] = "デイリー任務", + ["COUNTDOWN"] = "{0}:{1}:{2}", + ["EVENT_TITLE"] = "アクティビティ", + ["ACT_SEVENDAY_BTN"] = "入る", + ["ACT_SEVENDAY_TASK"] = "達成済のクエスト数:", + ["BTN_CLAIM"] = "受取る", + ["BTN_DONE"] = "受取済", + ["BTN_GO"] = "向かう", + ["BTN_FREE"] = "無料", + ["BTN_CONFIRM"] = "確認", + ["SUMMON_RATE_TITLE"] = "総合確率", + ["IDLE_TITLE2"] = "追加報酬", + ["MAIL_TITLE"] = "受信箱", + ["BTN_READ"] = "読む", + ["PROBABILITY_DESC1"] = "総合確率", + ["WEAPON_DESC1"] = "武器", + ["LV_POINT"] = "レベル{0}", + ["LOOK_AD_DESC1"] = "CMを再生する", + ["CANCEL_1"] = "キャンセル", + ["TIME_STR_DHM"] = "{0}日{1}時{2}分", + ["TIME_STR_M"] = "{0}分", + ["TIME_STR_MS"] = "{0}分{1}秒", + ["TIME_STR_S"] = "{0}秒", + ["TIME_STR_DH"] = "{0}日{1}時", + ["TIME_STR_HMS"] = "{0}時{1}分{2}秒", + ["TIME_STR_HM"] = "{0}時{1}分", + ["TIME_STR_D"] = "{0}日", + ["TIME_MS"] = "{0}:{1}", + ["TIME_HMS"] = "{0}:{1}:{2}", + ["REMAIN_TIME_DESC1"] = "残り時間:{0}", + ["SUPER_DESC1"] = "バリューパック", + ["BLESSING_1"] = "コイン", + ["BLESSING_2"] = "攻撃", + ["DAILY_SHOP"] = "デイリーショップ", + ["EQUIP_TITLE "] = "装置スクリーン", + ["EQUIP_DESC_3"] = "装備品", + ["EQUIP_DESC_4"] = "強化", + ["EQUIP_DESC_5"] = "コーリングへ行く", + ["EQUIP_DESC_6"] = "すべての機能拡張", + ["ATTR_NAME_1"] = "HP", + ["ATTR_NAME_2"] = "HP回復", + ["ATTR_NAME_3"] = "攻撃", + ["ATTR_NAME_4"] = "移動速度", + ["ATTR_NAME_5"] = "クリティカルヒット率", + ["ATTR_NAME_6"] = "クリティカルダメージ", + ["ATTR_NAME_7"] = "攻撃範囲", + ["ATTR_NAME_8"] = "ダメージ軽減", + ["ATTR_NAME_9"] = "ボスに与えるダメージが増加する", + ["ATTR_NAME_11"] = "攻撃", + ["ATTR_NAME_20"] = "HP", + ["ITEM_NOT_ENOUGH"] = "{0}不足", + ["RESET_DESC"] = "リセット", + ["STRENGTHEN_DESC"] = "強化", + ["HERO_TITLE_1"] = "装備品", + ["EQUIP_DESC_8"] = "取外す", + ["CONGRATULATE_GET_DESC"] = "獲得したアイテム:", + ["Next"] = "次へ", + ["MINING_TIPS_DESC2"] = "深く探せば探すほど、良いお宝に出会える可能性があります", + ["BTN_TEXT_OK"] = "確認", + ["TRAIN_DESC_17"] = "レベル{0}", + ["UPGRADE_DESC"] = "レベルアップ", + ["GET_REWARDS"] = "報酬獲得", + ["REFRESH_TIME"] = "更新時間:{0}", + ["ENTER_DUNGEON_AD"] = "CMを再生する", + ["PASS_REWARD"] = "ステージクリア報酬", + ["REWARD_PREVIEW"] = "報酬プレビュー", + ["RANK_ORDER"] = "第{0}位", + ["RANKING_REWARD"] = "ランキング報酬", + ["RANK_LEVEL_REWARD"] = "ランク報酬", + ["RANKING_DESC1"] = "ランキング ", + ["SELF_RANKING"] = "自分の順位", + ["SELF_RANK_ORDER"] = "自分の順位", + ["DAY_DESC1"] = "{0}日目", + ["NOT_IN_RANK"] = "データがありません", + ["DIAMOND_GIFT_TITLE"] = "ダイヤパック", + ["LIMIT_GIFT"] = "時間限定パック", + ["DAILY_GIFT"] = "毎日のプレゼント", + ["WEEK_GIFT"] = "毎週のギフトバック", + ["CHAPTER_DESC_1"] = "ステージ", + ["LIMIT_DESC"] = "購入制限:{0}", + ["IDLE_DROP_DESC_2"] = "コイン獲得:{0}/m", + ["EXT_REWARDS"] = "追加報酬", + ["DAILY_TASK_DESC_1"] = "デイリー任務", + ["GAME_SETTING_DESC_3"] = "言語", + ["GAME_SETTING_DESC_4"] = "サポート", + ["GAME_SETTING_FACEBOOK"] = "Facebook", + ["GAME_SETTING_DISCORD"] = "Discord", + ["GAME_SETTING_DESC_8"] = "オン", + ["GAME_SETTING_DESC_9"] = "オフ", + ["ACCOUNT_DESC_1"] = "アカウントのバインド", + ["DELETE_ACCOUNT"] = "アカウントの削除", + ["GET"] = "獲得", + ["BATTLE_SPEED_UP_DESC_6"] = "アクティブ化", + ["CLICK_CLOSE_DESC"] = "タップして閉じる", + ["MESSAGE_BOX_TITLE"] = "ヒント", + ["BOUNTY_DESC_10"] = "アクティブ化済み", + ["BOUNTY_DESC_11"] = "デイリー任務", + ["HISTORY_RECORD"] = "過去最高", + ["NEW_RECORD"] = "新記録", + ["BATTLE_END"] = "戦いの果てに", + ["CUR_RECORD"] = "現在の記録", + ["CLICK_CLOSE_DESC_2"] = "任意の箇所をクリックすると閉じます", + ["BATTLE_REVIVE_TITLE"] = "復活させるべき?", + ["BATTLE_REVIVE_AD"] = "無料で復活させる", + ["BATTLE_REVIVE"] = "リザレクション", + ["SELECT_LEGACY_DESC"] = "厳選された家宝", + ["SELECT_ONE_LEGACY"] = "家宝を選ぶ", + ["CHANGE_OTHER"] = "グループを変更する", + ["VIEW_SELECTED_LEGACY"] = "厳選された家宝を見る", + ["ARENA_CHANGE_FINISH_DESC"] = "挑戦の果てに", + ["ARENA_SCORE"] = "スコア", + ["BATTLE_AGAIN"] = "再チャレンジ", + ["RECHARGE_TITLE"] = "ダブルダイヤモンドの上乗せ回数を週替わりでリセット", + ["BATTLE_ERROR"] = "戦闘が異常です、もう一度やり直してください。", + ["ARENA_CALCULATE"] = "闘技場決算中、少々お待ちください", + ["RENAME_DESC_1"] = "名称を変更する", + ["RENAME_DESC_2"] = "名前最大6文字入力可能", + ["RENAME_DESC_3"] = "名称を変更する", + ["RENAME_DESC_4"] = "名前を入力してください", + ["SHIELDED_WORD_DESC"] = "本文中の使用できない文字", + ["NAME_ALREADY_USED_DESC"] = "この名前は使用されました", + ["NEW_PLAYER_DESC"] = "新プレイヤー", + ["LANGUAGE_DESC"] = "言語", + ["ARENA_FIGHT_FORBID"] = "アリーナが終了し、バトルを開始することができません!", + ["ARENA_SEGMENT_TITLE_DESC"] = "若武者の手腕は素晴らしく、先週の成績は", + ["RECEIVE_REWARD"] = "報酬の受け取り", + ["REWARD_TITLE"] = "報酬獲得", + ["MAX_SCORE"] = "最高得点:{0}。", + ["FUND_PROGRESS"] = "レベルアップ", + ["FUND_LOW_TX"] = "デラックス特典", + ["FUND_HIGH_TX"] = "高級奨励金", + ["NO_NETWORK"] = "ネットワークに接続されていません。ネットワークに接続してからもう一度お試しください", + ["NETWORK_ERROE_1"] = "サーバー通信エラー、後程もう一度お試しください", + ["REPEAT_PAY_ORDER"] = "注文が届きました。エラーが発生している場合、ゲームを再起動してください。", + ["ACTIVITY_OVER_DESC"] = "イベントは終了しました", + ["BINDED_DESC"] = "バインド済み", + ["SWITCH_ACCOUNT_DESC"] = "アカウントの切り替え", + ["MAINTAIN"] = "サーバーのメンテナンス", + ["FORBIDDEN"] = "アカウントのブロック/ログイン禁止", + ["OTHER_LOGIN"] = "あなたのアカウントは、他のデバイスからログインされています。", + ["NO_ADS"] = "新広告はまだ準備中です", + ["ACCOUNT_EXCHANGE_DESC_1"] = "現在のアカウントは連携されていません。切替後データが失われる可能性がありますが、切り替えしますか?", + ["ACCOUNT_EXCHANGE_DESC_2"] = "アカウント情報がございません。切替できません。", + ["BESURE_DELETE_TIPS_DESC"] = "本当にアカウントを削除しますか、削除するとすべての情報と内容がクリアされ、アカウントが再ログインすると初期のレベル1初心者状態になります。OKなら、「{0}」を入力してください", + ["BESURE_DELETE_ACCOUNT_DESC"] = "削除の確認", + ["LOADING_DESC"] = "読み込み中…", + ["CLICK_COPY_ACOUNT_DESC"] = "クリックするとユーザーIDがコピーされます", + ["APP"] = "バージョン番号:", + ["BLESS_DESC"] = "自動で祝福する!", + ["SKIP_AD_DESC"] = "すべての広告を削除する!", + ["ARENA_SETTLE_DESC"] = "闘技場決算中、少々お待ちください", + ["PAY_FAILED_DESC_1"] = "リチャージオーダーの例外、カスタマーサービスに連絡してください。", + ["MONTH_CARD_DESC"] = "30日間連続のデイリー報酬!", + ["SETTING_DESC_22"] = "Google Playストア接続エラー、後でもう一度試してください。", + ["SETTING_DESC_23"] = "注文は現在処理中です。後でもう一度やり直してください", + ["SETTING_DESC_25"] = "支払いがキャンセルされた", +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/ja/global.lua.meta b/lua/app/config/strings/ja/global.lua.meta new file mode 100644 index 00000000..15491ce8 --- /dev/null +++ b/lua/app/config/strings/ja/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6f66e786173319f4e987e38c0b67c2d2 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/hero.lua b/lua/app/config/strings/ja/hero.lua new file mode 100644 index 00000000..01c2c0ba --- /dev/null +++ b/lua/app/config/strings/ja/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/hero.lua.meta b/lua/app/config/strings/ja/hero.lua.meta new file mode 100644 index 00000000..f24a79a4 --- /dev/null +++ b/lua/app/config/strings/ja/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4e06f23381066784298829f04d0b2a1e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/item.lua b/lua/app/config/strings/ja/item.lua new file mode 100644 index 00000000..e388e9a7 --- /dev/null +++ b/lua/app/config/strings/ja/item.lua @@ -0,0 +1,91 @@ +local item = { + [1]={ + ["name"]="コイン", + ["desc"]="汎用通貨、多くの場所で使用可能" + }, + [2]={ + ["name"]="ダイヤ" + }, + [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]={ + + } +} +local config = { +data=item,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/item.lua.meta b/lua/app/config/strings/ja/item.lua.meta new file mode 100644 index 00000000..98d239ba --- /dev/null +++ b/lua/app/config/strings/ja/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b534c4044e24c0043ab45b61358a8f79 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/legacy.lua b/lua/app/config/strings/ja/legacy.lua new file mode 100644 index 00000000..99d9f42a --- /dev/null +++ b/lua/app/config/strings/ja/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + + }, + [40002]={ + + }, + [40003]={ + + }, + [40004]={ + + }, + [40005]={ + + }, + [40101]={ + + }, + [40102]={ + + }, + [40103]={ + + }, + [40104]={ + + }, + [40105]={ + + }, + [40201]={ + + }, + [40202]={ + + }, + [40203]={ + + }, + [40204]={ + + }, + [40205]={ + + }, + [40301]={ + + }, + [40302]={ + + }, + [40303]={ + + }, + [40304]={ + + }, + [40305]={ + + }, + [40401]={ + + }, + [40402]={ + + }, + [40403]={ + + }, + [40404]={ + + }, + [40405]={ + + }, + [40501]={ + + }, + [40502]={ + + }, + [40503]={ + + }, + [40504]={ + + }, + [40505]={ + + }, + [40601]={ + + }, + [40602]={ + + }, + [40603]={ + + }, + [40604]={ + + }, + [40605]={ + + }, + [40606]={ + + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/legacy.lua.meta b/lua/app/config/strings/ja/legacy.lua.meta new file mode 100644 index 00000000..cdf858b6 --- /dev/null +++ b/lua/app/config/strings/ja/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 915ccc99c28e0704a87e2d9b981ad669 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/mail.lua b/lua/app/config/strings/ja/mail.lua new file mode 100644 index 00000000..a4d974e0 --- /dev/null +++ b/lua/app/config/strings/ja/mail.lua @@ -0,0 +1,21 @@ +local mail = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/mail.lua.meta b/lua/app/config/strings/ja/mail.lua.meta new file mode 100644 index 00000000..16fab1c3 --- /dev/null +++ b/lua/app/config/strings/ja/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2eb05026750cb27439dedb683a139285 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/mall_act.lua b/lua/app/config/strings/ja/mall_act.lua new file mode 100644 index 00000000..960b5c9c --- /dev/null +++ b/lua/app/config/strings/ja/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + + }, + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [20001]={ + + }, + [30001]={ + + }, + [40001]={ + + }, + [60001]={ + + }, + [60002]={ + + }, + [70001]={ + + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/mall_act.lua.meta b/lua/app/config/strings/ja/mall_act.lua.meta new file mode 100644 index 00000000..f4cc5bab --- /dev/null +++ b/lua/app/config/strings/ja/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 11b949b551cf0004989eaa8021eaaf6e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/mall_daily.lua b/lua/app/config/strings/ja/mall_daily.lua new file mode 100644 index 00000000..3a3f154a --- /dev/null +++ b/lua/app/config/strings/ja/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/mall_daily.lua.meta b/lua/app/config/strings/ja/mall_daily.lua.meta new file mode 100644 index 00000000..dd8f4a77 --- /dev/null +++ b/lua/app/config/strings/ja/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2aacf0dfee5a54d439ac6fed92c20562 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/mall_treasure.lua b/lua/app/config/strings/ja/mall_treasure.lua new file mode 100644 index 00000000..b446b540 --- /dev/null +++ b/lua/app/config/strings/ja/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/mall_treasure.lua.meta b/lua/app/config/strings/ja/mall_treasure.lua.meta new file mode 100644 index 00000000..1b73b1fc --- /dev/null +++ b/lua/app/config/strings/ja/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4fa3e2601150e114387ffb019f59711b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/mastery.lua b/lua/app/config/strings/ja/mastery.lua new file mode 100644 index 00000000..84521b29 --- /dev/null +++ b/lua/app/config/strings/ja/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/mastery.lua.meta b/lua/app/config/strings/ja/mastery.lua.meta new file mode 100644 index 00000000..43d7c4d1 --- /dev/null +++ b/lua/app/config/strings/ja/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7f4210f4d58cc8e4780b33da42cd212f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/mine_research.lua b/lua/app/config/strings/ja/mine_research.lua new file mode 100644 index 00000000..f5198ea1 --- /dev/null +++ b/lua/app/config/strings/ja/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [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]={ + + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/mine_research.lua.meta b/lua/app/config/strings/ja/mine_research.lua.meta new file mode 100644 index 00000000..9b94a13c --- /dev/null +++ b/lua/app/config/strings/ja/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c58ccf5d7791e004989243c7504350ee +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/monster_base.lua b/lua/app/config/strings/ja/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/ja/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/monster_base.lua.meta b/lua/app/config/strings/ja/monster_base.lua.meta new file mode 100644 index 00000000..7c39e039 --- /dev/null +++ b/lua/app/config/strings/ja/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 17385b7c23e6df145b720e34c8feeee7 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/runes.lua b/lua/app/config/strings/ja/runes.lua new file mode 100644 index 00000000..9466cf77 --- /dev/null +++ b/lua/app/config/strings/ja/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + + }, + [50102]={ + + }, + [50103]={ + + }, + [50104]={ + + }, + [50201]={ + + }, + [50202]={ + + }, + [50203]={ + + }, + [50204]={ + + }, + [50301]={ + + }, + [50302]={ + + }, + [50303]={ + + }, + [50304]={ + + }, + [50401]={ + + }, + [50402]={ + + }, + [50403]={ + + }, + [50404]={ + + }, + [50501]={ + + }, + [50502]={ + + }, + [50503]={ + + }, + [50504]={ + + }, + [50601]={ + + }, + [50602]={ + + }, + [50603]={ + + }, + [50604]={ + + }, + [50701]={ + + }, + [50702]={ + + }, + [50703]={ + + }, + [50704]={ + + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/runes.lua.meta b/lua/app/config/strings/ja/runes.lua.meta new file mode 100644 index 00000000..78bab586 --- /dev/null +++ b/lua/app/config/strings/ja/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 82f6c19a68b4f124f8de364e3611eca4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/skill.lua b/lua/app/config/strings/ja/skill.lua new file mode 100644 index 00000000..f64fd907 --- /dev/null +++ b/lua/app/config/strings/ja/skill.lua @@ -0,0 +1,558 @@ +local skill = { + [11011]={ + + }, + [11012]={ + + }, + [11016]={ + + }, + [21011]={ + + }, + [21014]={ + + }, + [21015]={ + + }, + [31011]={ + + }, + [31012]={ + + }, + [31013]={ + + }, + [41011]={ + + }, + [41012]={ + + }, + [41013]={ + + }, + [11021]={ + + }, + [11022]={ + + }, + [11026]={ + + }, + [21021]={ + + }, + [21024]={ + + }, + [21025]={ + + }, + [31021]={ + + }, + [31022]={ + + }, + [31023]={ + + }, + [41021]={ + + }, + [41022]={ + + }, + [41023]={ + + }, + [11031]={ + + }, + [11032]={ + + }, + [11036]={ + + }, + [21031]={ + + }, + [21034]={ + + }, + [21035]={ + + }, + [31031]={ + + }, + [31032]={ + + }, + [31033]={ + + }, + [41031]={ + + }, + [41032]={ + + }, + [41033]={ + + }, + [11041]={ + + }, + [11042]={ + + }, + [11046]={ + + }, + [21041]={ + + }, + [21044]={ + + }, + [21045]={ + + }, + [31041]={ + + }, + [31042]={ + + }, + [31043]={ + + }, + [41041]={ + + }, + [41042]={ + + }, + [41043]={ + + }, + [11051]={ + + }, + [11052]={ + + }, + [11056]={ + + }, + [21051]={ + + }, + [21054]={ + + }, + [21055]={ + + }, + [31051]={ + + }, + [31052]={ + + }, + [31053]={ + + }, + [41051]={ + + }, + [41052]={ + + }, + [41053]={ + + }, + [11061]={ + + }, + [11062]={ + + }, + [11066]={ + + }, + [21061]={ + + }, + [21064]={ + + }, + [21065]={ + + }, + [31061]={ + + }, + [31062]={ + + }, + [31063]={ + + }, + [41061]={ + + }, + [41062]={ + + }, + [41063]={ + + }, + [11071]={ + + }, + [11072]={ + + }, + [11076]={ + + }, + [21071]={ + + }, + [21074]={ + + }, + [21075]={ + + }, + [31071]={ + + }, + [31072]={ + + }, + [31073]={ + + }, + [41071]={ + + }, + [41072]={ + + }, + [41073]={ + + }, + [11081]={ + + }, + [11082]={ + + }, + [11086]={ + + }, + [21081]={ + + }, + [21084]={ + + }, + [21085]={ + + }, + [31081]={ + + }, + [31082]={ + + }, + [31083]={ + + }, + [41081]={ + + }, + [41082]={ + + }, + [41083]={ + + }, + [11091]={ + + }, + [11092]={ + + }, + [11096]={ + + }, + [21091]={ + + }, + [21094]={ + + }, + [21095]={ + + }, + [31091]={ + + }, + [31092]={ + + }, + [31093]={ + + }, + [41091]={ + + }, + [41092]={ + + }, + [41093]={ + + }, + [400011]={ + + }, + [400021]={ + + }, + [400031]={ + + }, + [400041]={ + + }, + [400051]={ + + }, + [401011]={ + + }, + [401021]={ + + }, + [401031]={ + + }, + [401041]={ + + }, + [401051]={ + + }, + [402011]={ + + }, + [402021]={ + + }, + [402031]={ + + }, + [402041]={ + + }, + [402051]={ + + }, + [403011]={ + + }, + [403021]={ + + }, + [403031]={ + + }, + [403041]={ + + }, + [403051]={ + + }, + [404011]={ + + }, + [404021]={ + + }, + [404031]={ + + }, + [404041]={ + + }, + [404051]={ + + }, + [405011]={ + + }, + [405021]={ + + }, + [405031]={ + + }, + [405041]={ + + }, + [405051]={ + + }, + [406011]={ + + }, + [406021]={ + + }, + [406031]={ + + }, + [406041]={ + + }, + [406051]={ + + }, + [406061]={ + + }, + [501011]={ + + }, + [501021]={ + + }, + [501031]={ + + }, + [501041]={ + + }, + [502011]={ + + }, + [502021]={ + + }, + [502022]={ + + }, + [502031]={ + + }, + [502041]={ + + }, + [503011]={ + + }, + [503021]={ + + }, + [503031]={ + + }, + [503041]={ + + }, + [504011]={ + ["desc"]="20%の確率で、唱えるたびに武器スキルを1つ追加で解放する。" + }, + [504021]={ + + }, + [504031]={ + + }, + [504041]={ + + }, + [505011]={ + + }, + [505021]={ + + }, + [505031]={ + + }, + [505041]={ + + }, + [506011]={ + + }, + [506021]={ + + }, + [506031]={ + + }, + [506041]={ + + }, + [507011]={ + ["desc"]="クリティカルヒット率+10%" + }, + [507021]={ + + }, + [507031]={ + + }, + [507041]={ + + }, + [600011]={ + ["name"]="生命を取り戻すための攻撃" + }, + [600021]={ + + }, + [600031]={ + + }, + [600041]={ + + }, + [600051]={ + ["name"]="スキルでライフを回復させる" + }, + [600061]={ + ["name"]="生命を取り戻すための攻撃" + }, + [600071]={ + + }, + [600081]={ + + }, + [600091]={ + ["name"]="スキルでライフを回復させる" + }, + [600101]={ + ["name"]="生命を取り戻すための攻撃" + }, + [600111]={ + + } +} +local config = { +data=skill,count=184 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/skill.lua.meta b/lua/app/config/strings/ja/skill.lua.meta new file mode 100644 index 00000000..56feca04 --- /dev/null +++ b/lua/app/config/strings/ja/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9a02d79a5655f0942913aab74ac95723 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/task.lua b/lua/app/config/strings/ja/task.lua new file mode 100644 index 00000000..c9d38adf --- /dev/null +++ b/lua/app/config/strings/ja/task.lua @@ -0,0 +1,99 @@ +local task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + ["tutorial_desc"]="広告を見る" + }, + [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]={ + + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/task.lua.meta b/lua/app/config/strings/ja/task.lua.meta new file mode 100644 index 00000000..79860755 --- /dev/null +++ b/lua/app/config/strings/ja/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e705491f186811042b904209b146089d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/task_daily.lua b/lua/app/config/strings/ja/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/ja/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/task_daily.lua.meta b/lua/app/config/strings/ja/task_daily.lua.meta new file mode 100644 index 00000000..bba072e0 --- /dev/null +++ b/lua/app/config/strings/ja/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0c60dae9211c09945b36324743139b19 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/tutorial.lua b/lua/app/config/strings/ja/tutorial.lua new file mode 100644 index 00000000..3253b5b1 --- /dev/null +++ b/lua/app/config/strings/ja/tutorial.lua @@ -0,0 +1,72 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + ["value"]="いよいよ選考開始です!" + }, + ["TUTORIAL_TXT_2"]={ + + }, + ["TUTORIAL_TXT_3"]={ + + }, + ["TUTORIAL_TXT_4"]={ + + }, + ["TUTORIAL_TXT_5"]={ + + }, + ["TUTORIAL_TXT_6"]={ + + }, + ["TUTORIAL_TXT_7"]={ + + }, + ["TUTORIAL_TXT_8"]={ + + }, + ["TUTORIAL_TXT_9"]={ + + }, + ["TUTORIAL_TXT_10"]={ + + }, + ["TUTORIAL_TXT_11"]={ + + }, + ["TUTORIAL_TXT_12"]={ + + }, + ["TUTORIAL_TXT_13"]={ + + }, + ["TUTORIAL_TXT_14"]={ + + }, + ["TUTORIAL_TXT_15"]={ + + }, + ["TUTORIAL_TXT_16"]={ + + }, + ["TUTORIAL_TXT_17"]={ + + }, + ["TUTORIAL_TXT_18"]={ + + }, + ["TUTORIAL_TXT_19"]={ + ["value"]="お宝がたくさんあると言われているお城のクエストが開放されました。" + }, + ["TUTORIAL_TXT_20"]={ + ["value"]="松明を使って探索開始~。" + }, + ["TUTORIAL_TXT_21"]={ + ["value"]="指示に従い、下へ下へと探索を続けると、より多くの宝を手に入れることができます!" + }, + ["TUTORIAL_TXT_22"]={ + ["value"]="武器、防御、家宝の関係性について知りたいですか? ここをクリックしてください!" + } +} +local config = { +data=tutorial,count=22 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/tutorial.lua.meta b/lua/app/config/strings/ja/tutorial.lua.meta new file mode 100644 index 00000000..1f6564e9 --- /dev/null +++ b/lua/app/config/strings/ja/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ca369e188c1011849934c8edf56ffb11 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ja/tutorialtask.lua b/lua/app/config/strings/ja/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/ja/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ja/tutorialtask.lua.meta b/lua/app/config/strings/ja/tutorialtask.lua.meta new file mode 100644 index 00000000..72811f97 --- /dev/null +++ b/lua/app/config/strings/ja/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 73a8e5051a04cca40a9ec82d398c485a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko.meta b/lua/app/config/strings/ko.meta new file mode 100644 index 00000000..4eecef52 --- /dev/null +++ b/lua/app/config/strings/ko.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b77eb47c047485b4bbcc5d511d30aa01 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/ko/act_battle_pass_task.lua b/lua/app/config/strings/ko/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/ko/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/act_battle_pass_task.lua.meta b/lua/app/config/strings/ko/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..448da39c --- /dev/null +++ b/lua/app/config/strings/ko/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e631ec634b1409d47967c55226cde51e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/act_fund.lua b/lua/app/config/strings/ko/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/ko/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/act_fund.lua.meta b/lua/app/config/strings/ko/act_fund.lua.meta new file mode 100644 index 00000000..4fc6defa --- /dev/null +++ b/lua/app/config/strings/ko/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b50f9aa154ac2394583598bb0f9c04f7 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/act_sevenday_quest.lua b/lua/app/config/strings/ko/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/ko/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/act_sevenday_quest.lua.meta b/lua/app/config/strings/ko/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..24011894 --- /dev/null +++ b/lua/app/config/strings/ko/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 92ef117c40d72304e8c8140800212a19 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/arena.lua b/lua/app/config/strings/ko/arena.lua new file mode 100644 index 00000000..bab31985 --- /dev/null +++ b/lua/app/config/strings/ko/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + ["desc"]="견습 용사 III" + }, + [2]={ + ["desc"]="견습 용사 II" + }, + [3]={ + ["desc"]="견습 용사 I" + }, + [4]={ + ["desc"]="영광의 용사 III" + }, + [5]={ + ["desc"]="영광의 용사 II" + }, + [6]={ + ["desc"]="영광의 용사 I" + }, + [7]={ + ["desc"]="은빛 기사 III" + }, + [8]={ + ["desc"]="은빛 기사 II" + }, + [9]={ + ["desc"]="은빛 기사 I" + }, + [10]={ + ["desc"]="황금빛 기사III" + }, + [11]={ + ["desc"]="황금빛 기사II" + }, + [12]={ + ["desc"]="황금빛 기사I" + }, + [13]={ + ["desc"]="전장의 지휘관III" + }, + [14]={ + ["desc"]="전장의 지휘관II" + }, + [15]={ + ["desc"]="전장의 지휘관I" + }, + [16]={ + ["desc"]="영웅들의 왕III" + }, + [17]={ + ["desc"]="영웅들의 왕II" + }, + [18]={ + ["desc"]="영웅들의 왕I" + }, + [19]={ + ["desc"]="전설의 지배자III" + }, + [20]={ + ["desc"]="전설의 지배자II" + }, + [21]={ + ["desc"]="전설의 지배자I" + }, + [22]={ + ["desc"]="궁극 전쟁의 신III" + }, + [23]={ + ["desc"]="궁극 전쟁의 신II" + }, + [24]={ + ["desc"]="궁극 전쟁의 신I" + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/arena.lua.meta b/lua/app/config/strings/ko/arena.lua.meta new file mode 100644 index 00000000..1df3d880 --- /dev/null +++ b/lua/app/config/strings/ko/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fd4aa37f1a601a74e8d447e2ac64db5f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/attr.lua b/lua/app/config/strings/ko/attr.lua new file mode 100644 index 00000000..9ac9680b --- /dev/null +++ b/lua/app/config/strings/ko/attr.lua @@ -0,0 +1,105 @@ +local attr = { + [1]={ + ["name"]="HP" + }, + [2]={ + ["name"]="공격" + }, + [3]={ + ["name"]="치명타율" + }, + [4]={ + ["name"]="치명타 피해" + }, + [5]={ + ["name"]="대미지 감면" + }, + [6]={ + ["name"]="공격" + }, + [7]={ + ["name"]="공격" + }, + [8]={ + ["name"]="공격" + }, + [9]={ + ["name"]="공격" + }, + [10]={ + ["name"]="공격" + }, + [11]={ + ["name"]="공격" + }, + [12]={ + ["name"]="공격" + }, + [13]={ + ["name"]="공격" + }, + [14]={ + ["name"]="공격" + }, + [15]={ + ["name"]="HP" + }, + [16]={ + ["name"]="HP" + }, + [17]={ + ["name"]="HP" + }, + [18]={ + ["name"]="HP" + }, + [19]={ + ["name"]="HP" + }, + [20]={ + ["name"]="HP" + }, + [21]={ + ["name"]="HP" + }, + [22]={ + ["name"]="대미지" + }, + [23]={ + ["name"]="회피" + }, + [24]={ + ["name"]="골드 획득" + }, + [25]={ + ["name"]="스킬 대미지" + }, + [26]={ + ["name"]="기본 공격 대미지" + }, + [27]={ + ["name"]="방치 보상" + }, + [28]={ + ["name"]="횃불 회복 속도" + }, + [29]={ + ["name"]="횃불 보유 한도" + }, + [30]={ + ["name"]="지식 습득" + }, + [31]={ + ["name"]="연구 속도" + }, + [32]={ + ["name"]="넉업 대미지" + }, + [33]={ + ["name"]="넉업 횟수" + } +} +local config = { +data=attr,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/attr.lua.meta b/lua/app/config/strings/ko/attr.lua.meta new file mode 100644 index 00000000..378dc34d --- /dev/null +++ b/lua/app/config/strings/ko/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1797d40076e79fd45aa8e8b862f69418 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/collection.lua b/lua/app/config/strings/ko/collection.lua new file mode 100644 index 00000000..49d88f42 --- /dev/null +++ b/lua/app/config/strings/ko/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + ["name"]="새로운 여정" + }, + [2]={ + ["name"]="창과 검의 위력" + }, + [3]={ + ["name"]="마법봉 제조 마스터" + }, + [4]={ + ["name"]="정교하고 세밀하게" + }, + [5]={ + ["name"]="한줄기 찬빛" + }, + [6]={ + ["name"]="빛과 그림자" + }, + [7]={ + ["name"]="자연의 힘" + }, + [8]={ + ["name"]="격한 바람과 폭우" + }, + [9]={ + ["name"]="암살자의 신념" + }, + [10]={ + ["name"]="불과 얼음의 협주곡" + }, + [101]={ + ["name"]="수수한 옷차림" + }, + [102]={ + ["name"]="사냥 시작" + }, + [103]={ + ["name"]="정교한 라이프" + }, + [104]={ + ["name"]="전투를 위해 태어남" + }, + [105]={ + ["name"]="수호 기사" + }, + [106]={ + ["name"]="죽음도 두렵지 않아" + }, + [107]={ + ["name"]="영원한 빛" + }, + [108]={ + ["name"]="솟구치는 사악한 기운" + }, + [109]={ + ["name"]="악마의 속삭임" + }, + [110]={ + ["name"]="신성하고 거룩한" + }, + [201]={ + ["name"]="어둠 속을 걷는자" + }, + [202]={ + ["name"]="평민의 보물" + }, + [203]={ + ["name"]="격투의 달인" + }, + [204]={ + ["name"]="날카로운 칼날" + }, + [205]={ + ["name"]="절대 방어" + }, + [206]={ + ["name"]="천둥 우르릉" + }, + [207]={ + ["name"]="신의 무기" + }, + [208]={ + ["name"]="성광 속에서 반짝반짝" + }, + [209]={ + ["name"]="신의 유물" + }, + [210]={ + ["name"]="최고의 무기" + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/collection.lua.meta b/lua/app/config/strings/ko/collection.lua.meta new file mode 100644 index 00000000..a57383cb --- /dev/null +++ b/lua/app/config/strings/ko/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ad204438c16ea024c87a831bb576cd25 +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 new file mode 100644 index 00000000..d8f170c9 --- /dev/null +++ b/lua/app/config/strings/ko/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + ["name"]="쇠검" + }, + [10002]={ + ["name"]="강철검" + }, + [10003]={ + ["name"]="정교한 강철검" + }, + [10004]={ + ["name"]="문양이 새겨진 장검" + }, + [10005]={ + ["name"]="기사 장검" + }, + [10006]={ + ["name"]="폭풍대검" + }, + [10007]={ + ["name"]="광노의 검" + }, + [10008]={ + ["name"]="정의의 심판" + }, + [10009]={ + ["name"]="선혈의 자국" + }, + [10101]={ + ["name"]="단도" + }, + [10102]={ + ["name"]="강철 단도" + }, + [10103]={ + ["name"]="정교한 강철 단도" + }, + [10104]={ + ["name"]="문양이 새겨진 단검" + }, + [10105]={ + ["name"]="암살자의 단도" + }, + [10106]={ + ["name"]="맹독이 발라진 단도" + }, + [10107]={ + ["name"]="어둠의 날개" + }, + [10108]={ + ["name"]="독사의 이빨" + }, + [10109]={ + ["name"]="죽음의 지배자" + }, + [10201]={ + ["name"]="나무 창" + }, + [10202]={ + ["name"]="강철 창" + }, + [10203]={ + ["name"]="정교한 강철 장창" + }, + [10204]={ + ["name"]="문양이 새겨진 장창" + }, + [10205]={ + ["name"]="은빛의 장창" + }, + [10206]={ + ["name"]="늑대의 이빨을 닮은 장창" + }, + [10207]={ + ["name"]="사자의 용기가 담긴 장창" + }, + [10208]={ + ["name"]="극지의 얼음" + }, + [10209]={ + ["name"]="용의 화염" + }, + [10301]={ + ["name"]="나무 지팡이" + }, + [10302]={ + ["name"]="유리 마법봉" + }, + [10303]={ + ["name"]="보석 마법봉" + }, + [10304]={ + ["name"]="수정 마법봉" + }, + [10305]={ + ["name"]="요정 마법봉" + }, + [10306]={ + ["name"]="파랑새 마법봉" + }, + [10307]={ + ["name"]="하얀 뱀 지팡이" + }, + [10308]={ + ["name"]="달빛" + }, + [10309]={ + ["name"]="뜨거운 태양" + }, + [20001]={ + ["name"]="모시 옷" + }, + [20002]={ + ["name"]="가죽 옷" + }, + [20003]={ + ["name"]="병사 도포" + }, + [20004]={ + ["name"]="고급 철 갑옷" + }, + [20005]={ + ["name"]="수호 갑주" + }, + [20006]={ + ["name"]="성광 갑옷" + }, + [20007]={ + ["name"]="천계 전포" + }, + [20101]={ + ["name"]="수수한 옷" + }, + [20102]={ + ["name"]="두꺼운 가죽 옷" + }, + [20103]={ + ["name"]="정교한 도포" + }, + [20104]={ + ["name"]="경비병의 철 갑옷" + }, + [20105]={ + ["name"]="고급 구리 갑주" + }, + [20106]={ + ["name"]="타락한 갑옷" + }, + [20107]={ + ["name"]="황금 성복" + }, + [20201]={ + ["name"]="면 옷" + }, + [20202]={ + ["name"]="사냥꾼의 가죽 옷" + }, + [20203]={ + ["name"]="위장 도포" + }, + [20204]={ + ["name"]="정의의 갑옷" + }, + [20205]={ + ["name"]="적진 함락의 갑주" + }, + [20206]={ + ["name"]="악한 용의 갑옷" + }, + [20207]={ + ["name"]="악마의 옷" + }, + [20301]={ + ["name"]="실크 옷" + }, + [20302]={ + ["name"]="정교한 가죽 옷" + }, + [20303]={ + ["name"]="견갑 도포" + }, + [20304]={ + ["name"]="영예의 철 갑옷" + }, + [20305]={ + ["name"]="황금빛 갑주" + }, + [20306]={ + ["name"]="정복의 갑옷" + }, + [20307]={ + ["name"]="용 사냥꾼의 전설" + }, + [30001]={ + ["name"]="모시 머리띠" + }, + [30002]={ + ["name"]="철로 만든 헤드 링" + }, + [30003]={ + ["name"]="무늬가 새겨진 실버 링" + }, + [30004]={ + ["name"]="전사의 왕관" + }, + [30005]={ + ["name"]="행운의 왕관" + }, + [30006]={ + ["name"]="천둥의 왕관" + }, + [30007]={ + ["name"]="용 사냥꾼 황금 왕관" + }, + [30101]={ + ["name"]="거친 천으로 만든 머리띠" + }, + [30102]={ + ["name"]="구리 헤드 링" + }, + [30103]={ + ["name"]="깨진 보석 실버 링" + }, + [30104]={ + ["name"]="돌격의 왕관" + }, + [30105]={ + ["name"]="지혜의 왕관" + }, + [30106]={ + ["name"]="파멸의 왕관" + }, + [30107]={ + ["name"]="찬란한 왕관" + }, + [30201]={ + ["name"]="면으로 만든 머리띠" + }, + [30202]={ + ["name"]="청동 헤드 링" + }, + [30203]={ + ["name"]="무늬가 새겨진 골드 링" + }, + [30204]={ + ["name"]="기사의 왕관" + }, + [30205]={ + ["name"]="피흡 왕관" + }, + [30206]={ + ["name"]="싸움의 신 왕관" + }, + [30207]={ + ["name"]="사탄의 왕관" + }, + [30301]={ + ["name"]="실크 머리띠" + }, + [30302]={ + ["name"]="실버 헤드 링" + }, + [30303]={ + ["name"]="깨진 보석 골드 링" + }, + [30304]={ + ["name"]="히어로 왕관" + }, + [30305]={ + ["name"]="빛의 왕관" + }, + [30306]={ + ["name"]="빛을 잃은 왕관" + }, + [30307]={ + ["name"]="창조주의 왕관" + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/equip.lua.meta b/lua/app/config/strings/ko/equip.lua.meta new file mode 100644 index 00000000..fc4835dc --- /dev/null +++ b/lua/app/config/strings/ko/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: cd60024ecafccb444955905ee04df2bc +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/global.lua b/lua/app/config/strings/ko/global.lua new file mode 100644 index 00000000..b6246e6f --- /dev/null +++ b/lua/app/config/strings/ko/global.lua @@ -0,0 +1,406 @@ +local localization_global = +{ + ["TASK_DAILY_TITLE"] = "매일 미션", + ["COUNTDOWN"] = "{0}:{1}:{2}", + ["EVENT_TITLE"] = "행사", + ["ACT_SEVENDAY_TITLE"] = "오픈 페스티발", + ["ACT_SEVENDAY_BTN"] = "입력", + ["ACT_SEVENDAY_LEFTTIME"] = "남은 시간: {0}일", + ["ACT_SEVENDAY_TASK"] = "완성한 미션 갯수:", + ["ACT_SEVENDAY_DESC"] = "매일 새로운 미션이 오픈됩니다.", + ["BTN_CLAIM"] = "수령 가능", + ["BTN_DONE"] = "수령 완료", + ["BTN_GO"] = "가기", + ["BTN_FREE"] = "무료", + ["BTN_CONFIRM"] = "확인", + ["SUMMON_TIMES"] = "{0}회 소환", + ["SUMMON_RATE_TITLE"] = "종합 확률", + ["SUMMON_RATE_DESC1"] = "각 등급 획득 확률", + ["SUMMON_RATE_DESC2"] = "일정 횟수 소환 후, 소환 레벨이 증가합니다.", + ["IDLE_TITLE1"] = "방치 보상", + ["IDLE_TITLE2"] = "추가 보상", + ["IDLE_BTN"] = "추가 보상 획득", + ["IDLE_DESC"] = "{0}분 수집", + ["MAIL_TITLE"] = "이메일", + ["MAIL_COUNTDOWN"] = "{0} 시간 후 기간 만료", + ["BTN_READ"] = "읽기", + ["BTN_DELETE_ALL"] = "읽은 메일 삭제", + ["BTN_CLAIM_ALL"] = "모두 받기", + ["FIRST_CHARGE_REWARD_DESC"] = "첫 구매 보너스", + ["SHOP_DESC1"] = "상점", + ["SUMMON_DESC1"] = "소환", + ["SUMMON_DESC2"] = "{0}회 소환", + ["SUMMON_DESC3"] = "일정 횟수 소환 후, 소환 레벨이 증가합니다.", + ["DAILY_AND_WEEK"] = "데일리/주간", + ["TREASURE_DESC1"] = "보물", + ["FAMILY_HEIRLOOM"] = "가보", + ["ARMOR_DESC1"] = "방어 장비", + ["QLT_DESC_1"] = "일반", + ["QLT_DESC_2"] = "고급", + ["QLT_DESC_3"] = "희귀", + ["QLT_DESC_4"] = "에픽", + ["QLT_DESC_5"] = "전설", + ["QLT_DESC_6"] = "신화", + ["QLT_DESC_7"] = "궁극", + ["PROBABILITY_DESC1"] = "종합 확률", + ["PROBABILITY_DESC2"] = "다양한 등급 획득 확률", + ["LEVEL_DESC1"] = "레벨 {0}", + ["WEAPON_DESC1"] = "무기", + ["LV_POINT"] = "{0}급", + ["LOOK_AD_DESC1"] = "광고 재생", + ["LOOK_AD_DESC2"] = "광고 시청으로 무료 소환", + ["LOOK_AD_DESC3"] = "광고를 한 번 볼 때마다 소환 횟수 증가", + ["NEXT_SUMMON_NUM"] = "다음 소환: {0}", + ["MAX_SUMMON_NUM"] = "(최대 {0}회 소환 가능)", + ["CANCEL_1"] = "취소", + ["TIME_STR_DHM"] = "{0}일 {1}시 {2}분", + ["TIME_STR_M"] = "{0}분", + ["TIME_STR_MS"] = "{0}분 {1}초", + ["TIME_STR_S"] = "{0}초", + ["TIME_STR_DH"] = "{0}일 {1}시", + ["TIME_STR_HMS"] = "{0}시 {1}분 {2}초", + ["TIME_STR_HM"] = "{0}시 {1}분", + ["TIME_STR_D"] = "{0}일", + ["TIME_MS"] = "{0}:{1}", + ["TIME_HMS"] = "{0}:{1}:{2}", + ["REMAIN_TIME_DESC1"] = "남은 시간:{0}", + ["SUPER_DESC1"] = "초특급", + ["GIFT_DESC1"] = "패키지", + ["DUMGEON_1"] = "골드 퀘스트", + ["DUMGEON_2"] = "다이아몬드 퀘스트", + ["DUMGEON_3"] = "미스릴 퀘스트", + ["DUMGEON_4"] = "특성 퀘스트", + ["BLESSING_1"] = "골드", + ["BLESSING_2"] = "공격", + ["BLESSING_3"] = "스킬 대미지", + ["ACCELERATION"] = "전투 가속", + ["LOOK_AD"] = "광고", + ["DAILY_SHOP"] = "일일 상점", + ["WEEK_SHOP"] = "주간 상점", + ["FIRST_BUY_AWARD"] = "첫 구매 보너스", + ["FIRST_BUT_AWARD_2"] = "임의 아이템을 처음 구매할 때 획득합니다.", + ["EQUIP_TITLE "] = "장비 화면", + ["EQUIP_DESC_1"] = "소유한 효과", + ["EQUIP_DESC_2"] = "장비 효과", + ["EQUIP_DESC_3"] = "장비", + ["EQUIP_DESC_4"] = "강화", + ["EQUIP_DESC_5"] = "통화로 이동", + ["EQUIP_DESC_6"] = "모든 개선 사항", + ["ATTR_NAME_1"] = "HP", + ["ATTR_NAME_2"] = "HP 회복", + ["ATTR_NAME_3"] = "공격", + ["ATTR_NAME_4"] = "이동속도", + ["ATTR_NAME_5"] = "치명타율", + ["ATTR_NAME_6"] = "치명타 피해", + ["ATTR_NAME_7"] = "공격 범위", + ["ATTR_NAME_8"] = "대미지 감면", + ["ATTR_NAME_9"] = "우두머리에게 주는 피해가 증가합니다.", + ["ATTR_NAME_11"] = "공격", + ["ATTR_NAME_20"] = "HP", + ["CAN_NOT_DIGGING_DARK"] = "멀리 떨어진 안개 지역은 탐색할 수 없습니다.", + ["MUST_PUT_IN_GROUND"] = "반드시 이미 밝혀진 구역에 놓아야 합니다.", + ["ITEM_NOT_ENOUGH"] = "{0} 부족", + ["MAX_LV_DESC"] = "최고 레벨", + ["RESET_DESC"] = "리셋", + ["STRENGTHEN_DESC"] = "강화", + ["MASTERY_DESC_1"] = "마스터리 능력", + ["MASTERY_DESC_2"] = "마스터리 능력 도움말", + ["MASTERY_DESC_3"] = "처음부터 다시 스테이지 도전 시, 마스터리 포인트를 획득할 수 있으며 포인트를 소모하여 마스터리 능력을 업그레이드할 수 있습니다. ", + ["MASTERY_DESC_4"] = "하나의 마스터리 능력이 만렙으로 업그레이드된 후에만 다음 마스터리 능력을 언락할 수 있습니다.", + ["MASTERY_DESC_5"] = "마스터리를 초기화하시겠습니까? \n초기화 시, 모든 마스터리 포인트를 반환하며 모든 마스터리가 0 레벨로 리셋됩니다.", + ["HERO_TITLE_1"] = "장비", + ["HERO_TITLE_2"] = "가보", + ["HERO_TITLE_3"] = "마스터리", + ["HERO_TITLE_4"] = "룬", + ["EQUIP_DESC_7"] = "이미 착용하셨습니다.", + ["EQUIP_DESC_8"] = "해제", + ["EQUIP_DESC_9"] = "도감", + ["EQUIP_DESC_10"] = "룬 제작", + ["EQUIP_DESC_11"] = "잠금 해제된 룬: {0}/{1}", + ["EQUIP_DESC_12"] = "잠금 해제되지 않은 룬", + ["EQUIP_DESC_13"] = "수집 효과: {0}", + ["CONGRATULATE_GET_DESC"] = "획득 축하", + ["MINING_TITLE"] = "탐색", + ["Next"] = "다음", + ["MINING_TIPS_DESC1"] = "횃불 자동 보충", + ["MINING_TIPS_DESC2"] = "지역을 더 깊게 탐험할수록 좋은 보물을 찾을 확률이 높아집니다.", + ["MINING_TIPS_DESC3"] = "성광 촛불과 화염 폭탄을 사용하면 안개를 쉽게 제거할 수 있습니다.", + ["MINING_TIPS_DESC4"] = "노란색 라인 아래를 비추면 더 깊은 구역으로 들어갈 수 있습니다.", + ["RESEARCH_TITLE"] = "연구소", + ["RESEARCH_MAT"] = "연구 재료", + ["RESEARCHING_QUICK_FINISH"] = "곧 끝납니다!", + ["RESEARCHING_JUMP_TIME"] = "{0}분 건너뛰기", + ["RESEARCHING_DESC1"] = "연구 진행 중 - [{0}]", + ["MAX"] = "쵀대", + ["NEED_BEFORE_RESEARCH"] = "앞당겨 연구할 필요가 있습니다.", + ["RESEARCH"] = "연구", + ["DISCONNECT_RELOGIN"] = "네트워크 연결이 끊어졌습니다. 다시 로그인해 주세요.", + ["RECONNECT"] = "네트워크 연결이 끊어졌습니다. 다시 연결할까요?", + ["BTN_TEXT_OK"] = "확인", + ["RELOGIN"] = "재접속", + ["DUNGEON_GOLD"] = "골드 퀘스트", + ["DUNGEON_TREASURE"] = "다이아몬드 퀘스트", + ["DUNGEON_MITHRIL"] = "미스릴 퀘스트", + ["DUNGEON_CHARACTERISTIC"] = "특성 퀘스트", + ["TRAIN_DESC_1"] = "훈련", + ["TRAIN_DESC_2"] = "처음부터 다시", + ["TRAIN_DESC_3"] = "스피드 클리어", + ["TRAIN_DESC_4"] = "이번의 최고 기록: {0} 스테이지, 처음부터 다시하기 후 획득 가능:", + ["TRAIN_DESC_5"] = "현재 진도", + ["TRAIN_DESC_6"] = "최고 진도", + ["TRAIN_DESC_7"] = "훈련 속성", + ["TRAIN_DESC_8"] = "{0} 스테이지 클리어시 잠금 해제", + ["TRAIN_DESC_9"] = "처음부터 다시하기", + ["TRAIN_DESC_10"] = "{0} 스테이지까지 스피드 클리어", + ["TRAIN_DESC_11"] = "이번 도전 끝내기", + ["TRAIN_DESC_12"] = "이 스테이지에서 더 멀리 나아갈수록 처음부터 다시하기로 얻을 수 있는 골드와 마스터리 포인트가 더 많아집니다.", + ["TRAIN_DESC_13"] = "현재 최고 스테이지가 아니므로 보상이 줄어들 것입니다. 확실히 처음부터 다시하실 건가요?", + ["TRAIN_DESC_14"] = "처음부터 다시하기 시작", + ["TRAIN_DESC_15"] = "{0} 스테이지", + ["TRAIN_DESC_16"] = "스피드 클리어 업그레이드", + ["TRAIN_DESC_17"] = "레벨{0}", + ["TRAIN_DESC_18"] = "스피드 클리어를 한 번 할 때마다 즉시 {0}(+300) 스테이지 스피드 클리어. (스피드 클리어 레벨이 높을수록 스피드 클리어 스테이지가 많아지지만 현재 최고 난이도를 초과할 수 없습니다.)", + ["UPGRADE_DESC"] = "레벨업", + ["GET_REWARDS"] = "획득 보상", + ["ARENA"] = "대전 모드", + ["REFRESH_TIME"] = "리셋 시간:{0}", + ["DUNGEON_DESC1"] = "퀘스트 입장 시, 열쇠는 매일 자동으로 보충됩니다.", + ["CHAPTER_UNLOCK_DESC"] = "{0} 클리어 시 잠금 해제", + ["LEVEL_UNLOCK_DESC"] = "{0}레벨 도달 시 잠금 해제", + ["ENTER_DUNGEON"] = "입장", + ["TASK_COMPLETE_DESC"] = "메인 미션 {0} 완성 후, 잠금 해제", + ["DUNGEON_GOLD_HELP_CONTENT"] = "보물 상자를 열어젖히면 어떻게 될까요? 앗! 보물 상자가 입을 쩍 벌리고 당신을 물려고 하네요!", + ["DUNGEON_TREASURE_HELP_CONTENT"] = "용사는 보물에 크게 연연하지 않을 뿐만 아니라 쟁탈하고 빼앗는 것도 관심이 없습니다. 다만 제 발로 찾아온 경우라면 말이 다르죠.", + ["DUNGEON_MITHRIL_HELP_CONTENT"] = "미스릴을 발굴하는 것은 육체노동과 다름없습니다. 발굴한 후 마법에 사용할 수 있지만 잠든 마물을 깨우면 큰일 납니다!", + ["DUNGEON_CHARACTERISTIC_HELP_CONTENT"] = "수많은 전투를 거쳐 단련된 것은 강인한 육체뿐이 아니며 확고한 의지와 임기응변의 민첩함도 있습니다.", + ["ARENA_HELP_CONTENT"] = "1. 투기장에는 검, 단도, 창, 나무 막대기 등 네 가지 테마가 있습니다. 각 테마는 14일 동안 지속됩니다. 테마가 다르면 상대도 달라집니다. \n2. 테마 무기에 추가 공격 보너스를 받습니다. 이 테마 기간 동안 {0}을 사용하면 공격력이 20% 증가합니다. 다음 테마는 {1}입니다. \n3. 제한된 시간 안에 상대방과 대전하여 대미지를 입히고 점수를 획득하며 그 점수에 따라 랭크 순위를 매깁니다.\n4. 매주 일요일 00:00시에 티어를 한 번 정산하고 보상을 보내드립니다. 정산 후 당신의 티어는 최대 5개 티어까지 떨어집니다. \n5. 대전 모드에서 무기, 방어 장비, 가보가 소유한 속성이 적용됩니다. 무기 장비 속성과 스킬은 전투 시작 시 선택해야 합니다. \n6. 가보의 장비 효과는 적용되지 않습니다. 각 웨이브를 통과할 때마다 랜덤의 이미 소유한 가보 효과에서 플레이어가 선택하여 후속 전투 능력을 향상할 수 있지만 추가로 가보의 속성을 획득하지 않습니다.", + ["GET_SEVER_ERROR"] = "서버 연결에 실패했습니다. 다시 시도해 주세요.", + ["ENTER_DUNGEON_AD"] = "광고 재생", + ["DUNGEON_DIFFICULT"] = "난이도", + ["PASS_REWARD"] = "스테이지 클리어 장려", + ["ARENA_RULE_TITLE"] = "대전 모드 규칙", + ["ARENA_RULE_CONTENT"] = "1. 투기장에는 검, 단도, 창, 나무 막대기 등 네 가지 테마가 있습니다. 각 테마는 14일 동안 지속됩니다. 테마가 다르면 상대도 달라집니다. \n2. 테마 무기에 추가 공격 보너스를 받습니다. 이 테마 기간 동안 {0}을 사용하면 공격력이 20% 증가합니다. 다음 테마는 {1}입니다. \n3. 제한된 시간 안에 상대방과 대전하여 대미지를 입히고 점수를 획득하며 그 점수에 따라 랭크 순위를 매깁니다.\n4. 매주 일요일 00:00시에 티어를 한 번 정산하고 보상을 보내드립니다. 정산 후 당신의 티어는 최대 5개 티어까지 떨어집니다. \n5. 대전 모드에서 무기, 방어 장비, 가보가 소유한 속성이 적용됩니다. 무기 장비 속성과 스킬은 전투 시작 시 선택해야 합니다. \n6. 가보의 장비 효과는 적용되지 않습니다. 각 웨이브를 통과할 때마다 랜덤의 이미 소유한 가보 효과에서 플레이어가 선택하여 후속 전투 능력을 향상할 수 있지만 추가로 가보의 속성을 획득하지 않습니다.", + ["LOOK_SEASON_REWARD"] = "이번 텀 보상 보기", + ["ARENA_SUBJECT_DESC"] = "이번 대전 테마: {0}", + ["SWARD"] = "검", + ["WAND"] = "마법봉", + ["KNIFE"] = "단도", + ["SPEAR"] = "장창", + ["REWARD_PREVIEW"] = "보상 보기", + ["ARENA_ENTER_TITLE"] = "대전 모드.{0}", + ["ARENA_REFRESH_TIME_DESC"] = "{0} 후 다음 테마로 바뀝니다.", + ["CUR_RANK_LEVEL"] = "현재 티어", + ["SCORE_DESC"] = "{0} 포인트", + ["RANK_ORDER"] = "제{0}위", + ["HERO_RANKING_TITLE"] = "히어로 랭킹", + ["ARENA_BATTLE_REWARD_TITLE"] = "도전 보상", + ["ARENA_MAX_LEVEL"] = "최고의 경지!", + ["BEST_DESC"] = "최고", + ["RANKING_REWARD"] = "랭킹 보상", + ["RANK_LEVEL_REWARD"] = "랭크 보상", + ["RANKING_DESC1"] = "랭크", + ["RANKING_DESC2"] = "매 주 정산 보상", + ["CLEARING_REMAIN_DESC"] = "정산 까지 {0} 남았습니다.", + ["NO_ONE_IN_THIS_SEGMENT"] = "아직 이 티어에 오른 사람이 없습니다.", + ["NEED_SOMETHING"] = "필요한 것: {0}", + ["SELF_RANKING"] = "나의 순위", + ["RANKIN_LEVEL_DESC"] = "{0}(현재 티어)", + ["ARENA_RANK_DESC_1"] = "전투에 참여하셔야만 순위가 매겨집니다.", + ["SELF_RANK_ORDER"] = "나의 순위", + ["SEVEN_DAY_SIGNIN_TITLE"] = "7일 출석 체크 이벤트", + ["DAY_DESC1"] = "제{0}일", + ["SEVEN_DAY_DESC"] = "슈퍼 전설 의상, 전투력 폭발!", + ["NOT_IN_RANK"] = "순위권에 없음", + ["DIAMOND_GIFT_TITLE"] = "다이아 패키지", + ["LIMIT_GIFT"] = "한정 패키지", + ["DAILY_GIFT"] = "매일 패키지", + ["WEEK_GIFT"] = "매주의 보상", + ["MALL_GIFT"] = "패키지 상점", + ["WEAPON_SUMMON_TITLE"] = "무기를 소환해 주세요.", + ["ARMOR_SUMMON_TITLE"] = "방어 장비를 소환해 주세요.", + ["FAMILY_HEIRLOOM_SUMMON_TITLE"] = "가보를 소환해 주세요.", + ["CHAPTER_DESC_1"] = "스테이지", + ["CHAPTER_DESC_2"] = "스테이지 보상", + ["CHAPTER_DESC_3"] = "도전 목표", + ["CHAPTER_DESC_4"] = "도전 보상", + ["LIMIT_DESC"] = "구매 한도:{0}", + ["QLT_DESC"] = "{0} 등급", + ["ITEM_DESC"] = "아이템", + ["IDLE_DROP_DESC_1"] = "방치 보상", + ["IDLE_DROP_DESC_2"] = "골드 획득:{0}/m", + ["IDLE_DROP_DESC_3"] = "이미 {0} 분 수집하였습니다.", + ["GET_REWARDS_1"] = "보상 받기", + ["EXT_REWARDS"] = "추가 보상", + ["CAN_NOT_DIG_GROUND"] = "이미 밝혀진 구역에 놓을 수 없습니다!", + ["SEVEN_DAY_DESC_1"] = "신규 유저를 위한 7일 이벤트", + ["SEVEN_DAY_DESC_2"] = "종료 시간: {0}", + ["SEVEN_DAY_DESC_3"] = "완료된 미션 수: {0}/{1}", + ["SEVEN_DAY_DESC_4"] = "모두 받기", + ["DAILY_TASK_DESC_1"] = "매일 미션", + ["DAILY_TASK_DESC_2"] = "완성", + ["GAME_SETTING_DESC_1"] = "내 정보", + ["GAME_SETTING_DESC_2"] = "계정", + ["GAME_SETTING_DESC_3"] = "언어", + ["GAME_SETTING_DESC_4"] = "지원", + ["GAME_SETTING_DESC_5"] = "개인정보 보호", + ["GAME_SETTING_FACEBOOK"] = "Facebook", + ["GAME_SETTING_DISCORD"] = "Discord", + ["GAME_SETTING_DESC_6"] = "즉시 배터리 절약 모드로 전환", + ["GAME_SETTING_DESC_7"] = "플레이어 ID:{0}", + ["GAME_SETTING_DESC_8"] = "켜기", + ["GAME_SETTING_DESC_9"] = "닫기", + ["GAME_SETTING_DESC_10"] = "배경 음악", + ["GAME_SETTING_DESC_11"] = "환경음", + ["GAME_SETTING_DESC_12"] = "화면 흔들림", + ["GAME_SETTING_DESC_13"] = "알림", + ["GAME_SETTING_DESC_14"] = "배터리 절약 모드 사용", + ["TUTORIAL_MINE"] = "그럼 이런 지식들로 무엇을 할 수 있을 까요?", + ["HAS_RESEARCHING"] = "연구가 진행 중입니다.", + ["BATTLE_FAILED"] = "실패했습니다.", + ["BATTLE_FAIL_DESC_1"] = "장비를 소환하여 무장하세요!", + ["BATTLE_FAIL_DESC_2"] = "퀘스트에 도전하여 자원을 확보 하세요.", + ["BATTLE_FAIL_DESC_3"] = "안개 속을 탐색하며 지식을 연구해 보세요.", + ["BATTLE_FAIL_DESC_4"] = "처음부터 다시 스피드 클리어하여 마스터리를 훈련하세요.", + ["ACCOUNT_DESC_1"] = "계정 연동", + ["ACCOUNT_DESC_2"] = "게임 정보를 안전하게 보호하기 위하여 계정을 바인딩하세요!", + ["LOGIN_BY_GOOGLE"] = "구글 로그인", + ["LOGIN_BY_APPLE"] = "애플 로그인", + ["DELETE_ACCOUNT"] = "계정 삭제", + ["BLESSING_TITLE"] = "축복", + ["BLESSING_TITLE_1"] = "수확의 신이 내린 축복", + ["BLESSING_TITLE_2"] = "전투의 신이 내린 축복", + ["BLESSING_TITLE_3"] = "대장간의 신이 내린 축복", + ["BLESSING_DESC_1"] = "골드 획득 양이 다음과 같이 증가합니다.", + ["BLESSING_DESC_2"] = "공격력이 다음과 같이 증가합니다.", + ["BLESSING_DESC_3"] = "스킬 대미지가 다음과 같이 증가합니다.", + ["BLESSING_DESC_4"] = "자동으로 축복을 연장해주는 패키지도 있나요?", + ["GET"] = "받기", + ["ACT_SEVENDAY_DESC_1"] = "제{0}일에 잠금 해제", + ["BATTLE_SPEED_UP_DESC_1"] = "게임 가속", + ["BATTLE_SPEED_UP_DESC_2"] = "속도 x2", + ["BATTLE_SPEED_UP_DESC_3"] = "광고를 보면 다음 20분 동안 게임이 2배속으로 됩니다.", + ["BATTLE_SPEED_UP_DESC_4"] = "(활성화 후 자동 공격을 켜야 적용됨)", + ["BATTLE_SPEED_UP_DESC_5"] = "가속 기간 광고를 시청하시면 가속 시간을 리셋할 수 있지만 최대 20분을 초과하지 않습니다.", + ["BATTLE_SPEED_UP_DESC_6"] = "활성화하기", + ["BATTLE_FAIL"] = "전투 실패", + ["BATTLE_VICTORY"] = "전투 승리", + ["CLICK_CLOSE_DESC"] = "터치 시 닫힘", + ["FUNC_OPEN_LEVEL"] = "플레이어 레벨 {0}에 오픔", + ["FUNC_OPEN_STAGE"] = "스테이지 {0} 클리어 시 오픈", + ["FUNC_OPEN_TASK"] = "메인 미션 {0} 완성 후, 오픈", + ["TASK_DESC"] = "메인 미션", + ["TRAIN_DESC_19"] = "스피드 클리어 보상", + ["TRAIN_DESC_20"] = "골드 두 배", + ["RUNE_TITLE_1"] = "룬: 검", + ["RUNE_TITLE_2"] = "룬: 마법봉", + ["RUNE_TITLE_3"] = "룬: 단도", + ["RUNE_TITLE_4"] = "룬: 장창", + ["RUNE_TITLE_5"] = "룬: 옷", + ["RUNE_TITLE_6"] = "룬: 머리 장식", + ["RUNE_TITLE_7"] = "룬: 일반", + ["BATTLE_SPEED_UP_DESC_7"] = "자동 공격 2 배속이 적용되었습니다. 이제 20분 남았습니다.", + ["MASTERY_DESC_6"] = "마스터리 스킬 리셋", + ["MESSAGE_BOX_TITLE"] = "TIP", + ["RESEARCH_COMPLETE"] = "연구 완료!", + ["BOUNTY_DESC_1"] = "프리미엄 패스권", + ["BOUNTY_DESC_2"] = "이번 시즌에는 다음과 같은 할인 혜택이 주어집니다.", + ["BOUNTY_DESC_4"] = "프리미엄 패스권 전용 보상 잠금 해제", + ["BOUNTY_DESC_5"] = "프리미엄 패스권 전용 미션 잠금 해제", + ["BOUNTY_DESC_6"] = "S{0} 시즌 배틀 업적", + ["BOUNTY_DESC_7"] = "패스권 보상", + ["BOUNTY_DESC_8"] = "일반 패스권", + ["BOUNTY_DESC_9"] = "레벨이 꽉 찼습니다.", + ["BOUNTY_DESC_10"] = "활성화 완료", + ["BOUNTY_DESC_11"] = "매일 미션", + ["BOUNTY_DESC_12"] = "주간 미션", + ["BOUNTY_DESC_13"] = "프리미엄 패스권 구매 시 활성화할 수 있습니다.", + ["BOUNTY_DESC_14"] = "완성함", + ["BOUNTY_DESC_15"] = "완성한 미션", + ["AUTO_FIGHT"] = "자동 공격", + ["OPEN_AUTO_FIGHT"] = "자동 켜기", + ["BATTLE_NEXT_WAVE"] = "제 {0} 웨이브 진입", + ["BATTLE_WAVE"] = "제 {0} 웨이브", + ["BATTLE_LEFT"] = "나머지", + ["BATTLE_STAGE_FAILED_DESC"] = "도전 실패\n{0} 스테이지로 돌아갑니다.\n 아직 수련이 부족하네요.", + ["POWER"] = "전투력", + ["BATTLE_CHAPTER_PASS"] = "스테이지를 클리어하세요.", + ["BATTLE_CHAPTER_DESC"] = "제 {0} 스테이지", + ["BATTLE_LIMIT_DESC"] = "기간 한정 챌린지", + ["BATTLE_CHAPTER_STEP_DESC"] = "제{0}층\n{1} 스테이지", + ["BATTLE_PAUSE"] = "정지", + ["BATTLE_ATTR"] = "현재 속성", + ["BATTLE_RESUME"] = "계속 싸우기", + ["BATTLE_DUNGEON_EXIT"] = "퀘스트 나가기", + ["TRAIN_DESC_21"] = "1. 시간의 모래시계를 사용하면 처음부터 다시 할 수 있으며 골드와 마스터리 포인트를 획득합니다. 시간의 모래시계는 매일 0시 (UTC-0)에 리셋되며 수량은 5로 복원됩니다. \n2. 처음부터 다시 할 때, 머물러 있는 스테이지가 높을수록 받는 보상이 더 많습니다. 현재 레벨이 100 미만인 경우 처음부터 다시를 재생할 수 없습니다.\n3. 처음부터 다시 진행하면 1 스테이지로 돌아가며 스피드 클리어를 통해 빠르게 현재 최고 스테이지 진도까지 돌아올 수 있습니다. \n4. 시간을 되돌리는 것은 엄청난 체력과 정신력이 소모되므로 매번 처음부터 다시 하기를 진행하신 후, 15 분 휴식을 진행해야만 다음 번 다시 하기를 진행할 수 있습니다.", + ["TRAIN_DESC_22"] = "1. 시간의 흔적을 사용하면 스피드 클리어를 진행합니다. 시간과 공간의 차원을 넘나들며 빠르게 스테이지를 클리어하여 현재의 최고 스테이지 진도까지 도달합니다. 동시에 상응한 골드 보상을 얻을 수 있습니다. 시간의 흔적은 매일 0시 (UTC-0)에 리셋되며 수량은 4로 회복됩니다. \n2. 스피드 클리어는 통과한 스테이지 수량이 많을수록 더 많은 보상을 얻을 수 있습니다. \n3. 스피드 클리어로 도달할 수 있는 스테이지 수는 이미 클리어 한 스테이지 수와 스피드 클리어 레벨의 제한을 받습니다. 스피드 클리어 스톤을 소모하면 스피드 클리어 레벨을 업그레이드할 수 있습니다. 매번 스피드 클리어 레벨이 올라갈 때마다 스피드 클리어로 도달할 수 있는 최고 스테이지 수는 300 증가합니다.", + ["HELP_DESC"] = "도움말", + ["HISTORY_RECORD"] = "역대 최고 점수", + ["NEW_RECORD"] = "새로운 기록", + ["BATTLE_END"] = "전투의 끝", + ["CUR_RECORD"] = "현재 기록", + ["CLICK_CLOSE_DESC_2"] = "닫으려면 아무 영역이나 클릭하세요", + ["BATTLE_REVIVE_TITLE"] = "부활해야 하나요?", + ["BATTLE_REVIVE_AD"] = "무료로 부활", + ["BATTLE_REVIVE"] = "부활", + ["SELECT_LEGACY_DESC"] = "가보 선택", + ["SELECT_ONE_LEGACY"] = "가족 가보 선택", + ["CHANGE_OTHER"] = "그룹 변경", + ["VIEW_SELECTED_LEGACY"] = "선택한 가보 보기", + ["ARENA_CHANGE_FINISH_DESC"] = "도전 종료", + ["ARENA_SCORE"] = "점수", + ["BATTLE_AGAIN"] = "재도전", + ["RECHARGE_TITLE"] = "더블 다이아몬드의 충전 횟수 주간 초기화", + ["BATTLE_ERROR"] = "전투가 비정상입니다, 다시 시도하세요.", + ["ARENA_CALCULATE"] = "아레나가 정산중이니 잠시만 기다려 주세요.", + ["RENAME_DESC_1"] = "이름 변경", + ["RENAME_DESC_2"] = "닉네임은 최대 6글자까지 설정할 수 있습니다.", + ["RENAME_DESC_3"] = "이름 변경", + ["RENAME_DESC_4"] = "이름을 입력하세요", + ["SHIELDED_WORD_DESC"] = "텍스트에 사용할 수 없는 문자가 있습니다.", + ["NAME_ALREADY_USED_DESC"] = "이미 사용 중인 닉네임입니다.", + ["NEW_PLAYER_DESC"] = "뉴 플레이어", + ["LANGUAGE_DESC"] = "언어", + ["ARENA_FIGHT_FORBID"] = "아레나가 종료되어 전투를 시작할 수 없습니다!", + ["FUNDCHAPTER_TITLE"] = "스테이지 펀드", + ["FUNDCHAPTER_TITLE_DESC"] = "레벨 스테이지를 진행하여 보상을 획득하세요!", + ["ARENA_SEGMENT_TITLE"] = "히어로 랭킹 어워드", + ["ARENA_SEGMENT_TITLE_DESC"] = "이 젊은 전사는 훌륭한 패를 가지고 있으며 지난주 결과는 다음과 같습니다:", + ["RECEIVE_REWARD"] = "보상 받기", + ["REWARD_TITLE"] = "획득 보상", + ["MAX_SCORE"] = "최고 점수: {0}", + ["SAVE_POWER_DESC_2"] = "대전 모드에서 적을 물리치고 용감하게 나아가고 있습니다.", + ["SAVE_POWER_DESC_3"] = "슬라이드하여 배터리 절약 모드 종료", + ["SAVE_POWER_DESC_4"] = "(설정에서 끄거나 켤 수 있습니다.)", + ["FUND_PROGRESS"] = "레벨 진행 상황", + ["FUND_LOW_TX"] = "디럭스 보상", + ["FUND_HIGH_TX"] = "고급 장려", + ["NO_NETWORK"] = "네트워크에 연결되어 있지 않습니다. 네트워크에 연결하고 다시 시도해 주세요.", + ["NETWORK_ERROE_1"] = "서버 통신에 이상이 생겼습니다. 잠시 후 다시 시도해 주세요.", + ["REPEAT_PAY_ORDER"] = "주문이 완료되었습니다. 만약 문제가 있다면 게임을 다시 시작해 주세요.", + ["BATTLE_STAGE_FAILED_DESC_2"] = "도전 실패\n\n 아직 수련이 부족하네요.", + ["ACTIVITY_OVER_DESC"] = "행사 종료되었습니다", + ["BINDED_DESC"] = "바인딩됨", + ["SWITCH_ACCOUNT_DESC"] = "계정 교체", + ["BATTLE_MISS"] = "회피", + ["MAINTAIN"] = "서버 유지 관리", + ["FORBIDDEN"] = "계정 차단/로그인 금지", + ["OTHER_LOGIN"] = "계정이 다른 기기에 새로 로그인했습니다.", + ["NO_ADS"] = "새 광고는 준비 안 끝났습니다", + ["ACCOUNT_EXCHANGE_DESC_1"] = "현재 계정은 바인딩 되지 않았습니다. 전환하면 데이터가 손실될 수 있습니다. 정말 전환하시겠습니까?", + ["ACCOUNT_EXCHANGE_DESC_2"] = "해당 계정은 정보가 존재하지 않으므로 전환하실 수 없습니다.", + ["BESURE_DELETE_TIPS_DESC"] = "계정을 삭제하시겠습니까? 삭제 후 모든 정보 및 내용을 클리어할 것이고, 계정을 다시 로그인 시 초시 1급 초보 상태가 될 것입니다. 삭제하시면 '{0}' 입력하세요", + ["BESURE_DELETE_ACCOUNT_DESC"] = "삭제하기", + ["LOADING_DESC"] = "로딩 중…", + ["CLICK_COPY_ACOUNT_DESC"] = "사용자 ID를 복사하려면 클릭합니다.", + ["APP"] = "버전 번호:", + ["BLESS_DESC"] = "자동 축복!", + ["SKIP_AD_DESC"] = "모든 광고 제거!", + ["ARENA_SETTLE_DESC"] = "아레나가 정산중이니 잠시만 기다려 주세요.", + ["PAY_FAILED_DESC_1"] = "청구 주문 예외 사항은 고객 서비스에 문의하세요.", + ["MONTH_CARD_DESC"] = "30일 연속으로 매일 보상을 받으세요!", + ["SETTING_DESC_22"] = "Google Play 스토어 연결 오류, 잠시 후 다시 시도하세요.", + ["SETTING_DESC_23"] = "현재 주문이 처리 중입니다. 나중에 다시 시도하세요.", + ["SETTING_DESC_25"] = "결제가 취소되었습니다.", +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/ko/global.lua.meta b/lua/app/config/strings/ko/global.lua.meta new file mode 100644 index 00000000..6b7052af --- /dev/null +++ b/lua/app/config/strings/ko/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 513f7e21a148b7b4298082cf5fe7163e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/hero.lua b/lua/app/config/strings/ko/hero.lua new file mode 100644 index 00000000..65395219 --- /dev/null +++ b/lua/app/config/strings/ko/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + ["name"]="아서" + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/hero.lua.meta b/lua/app/config/strings/ko/hero.lua.meta new file mode 100644 index 00000000..0e33d31f --- /dev/null +++ b/lua/app/config/strings/ko/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 33b0ed4dc4072444caa3b38cadcbdf4d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/item.lua b/lua/app/config/strings/ko/item.lua new file mode 100644 index 00000000..aeb92679 --- /dev/null +++ b/lua/app/config/strings/ko/item.lua @@ -0,0 +1,112 @@ +local item = { + [1]={ + ["name"]="골드", + ["desc"]="통용 화폐. 많은 곳에서 사용됩니다." + }, + [2]={ + ["name"]="다이아몬드", + ["desc"]="주로 소환에 사용되는 희귀한 화폐입니다." + }, + [3]={ + + }, + [4]={ + ["name"]="골드 퀘스트 열쇠", + ["desc"]="골드 퀘스트에 도전하는 데 사용할 수 있습니다." + }, + [5]={ + ["name"]="다이아몬드 퀘스트 열쇠", + ["desc"]="다이아몬드 퀘스트에 도전하는 데 사용할 수 있습니다." + }, + [6]={ + ["name"]="미스릴 퀘스트 열쇠", + ["desc"]="미스릴 퀘스트에 도전하는데 사용할 수 있습니다." + }, + [7]={ + ["name"]="특성 퀘스트 열쇠", + ["desc"]="특성 퀘스트에 도전하는 데 사용할 수 있습니다." + }, + [8]={ + ["name"]="스피드 클리어 스톤", + ["desc"]="스피드 클리어 레벨을 업그레이드하는 데 사용할 수 있습니다." + }, + [9]={ + ["name"]="횃불", + ["desc"]="안개를 제거하는 데 사용할 수 있습니다." + }, + [10]={ + ["name"]="화염 폭탄", + ["desc"]="범위 내에서 안개를 제거하는 데 사용할 수 있습니다." + }, + [11]={ + ["name"]="성광 촛불", + ["desc"]="범위 내에서 안개를 제거하는 데 사용할 수 있습니다." + }, + [12]={ + ["name"]="지식", + ["desc"]="연구에 사용할 수 있습니다." + }, + [13]={ + ["name"]="마스터리 포인트", + ["desc"]="마스터리 숙련도 향상에 사용할 수 있습니다." + }, + [14]={ + ["name"]="미스릴", + ["desc"]="룬 잠금 해제 및 강화에 사용할 수 있습니다." + }, + [15]={ + ["name"]="시간의 모래시계", + ["desc"]="처음부터 다시에 사용할 수 있습니다." + }, + [16]={ + ["name"]="대전 모드 열쇠", + ["desc"]="대전 모드에 참가하는 데 사용할 수 있습니다." + }, + [17]={ + ["name"]="일회 뽑기 상자", + ["desc"]="오픈 시 랜덤의 무기/방어 장비/가보 중 하나를 한 개 획득합니다." + }, + [18]={ + ["name"]="10회 연속 뽑기 상자", + ["desc"]="오픈 시 10개의 랜덤 무기/방어 장비/가보를 획득합니다." + }, + [19]={ + ["name"]="배틀 업적 포인트", + ["desc"]="일정한 포인트를 모으면 배틀 업적 레벨을 높일 수 있습니다." + }, + [20]={ + ["name"]="패키지 박스" + }, + [21]={ + ["name"]="35회 연속 뽑기 상자", + ["desc"]="오픈 시 35 개의 랜덤 무기/방어 장비/가보를 획득합니다." + }, + [22]={ + ["name"]="105회 연속 뽑기 상자", + ["desc"]="오픈 시 105 개의 랜덤 무기/방어 장비/가보를 획득합니다." + }, + [23]={ + ["name"]="금빛 전설 보물 상자", + ["desc"]="오픈 시 기사 장검, 수호 갑주와 행운의 왕관을 획득할 수 있습니다." + }, + [24]={ + ["name"]="양피지 한 장" + }, + [25]={ + ["name"]="양피지 한 묶음" + }, + [26]={ + ["name"]="양피지 한 롤" + }, + [27]={ + ["name"]="양피지 책" + }, + [28]={ + ["name"]="시간의 흔적", + ["desc"]="스피드 클리어 사용 가능" + } +} +local config = { +data=item,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/item.lua.meta b/lua/app/config/strings/ko/item.lua.meta new file mode 100644 index 00000000..a15f0941 --- /dev/null +++ b/lua/app/config/strings/ko/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0656df1a6fabbc94a926f3696faaca02 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/legacy.lua b/lua/app/config/strings/ko/legacy.lua new file mode 100644 index 00000000..a90e4a6e --- /dev/null +++ b/lua/app/config/strings/ko/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + ["name"]="피뢰침" + }, + [40002]={ + ["name"]="집중의 향주머니" + }, + [40003]={ + ["name"]="도둑의 신발" + }, + [40004]={ + ["name"]="민첩의 장갑" + }, + [40005]={ + ["name"]="암살자의 단검" + }, + [40101]={ + ["name"]="가문의 부적" + }, + [40102]={ + ["name"]="무거운 철 갑옷" + }, + [40103]={ + ["name"]="힘의 장갑" + }, + [40104]={ + ["name"]="위장 망토" + }, + [40105]={ + ["name"]="호랑이 발톱" + }, + [40201]={ + ["name"]="검은 철봉" + }, + [40202]={ + ["name"]="격투의 링" + }, + [40203]={ + ["name"]="번개무늬 수정" + }, + [40204]={ + ["name"]="얼음 가면" + }, + [40205]={ + ["name"]="철갑 조끼" + }, + [40301]={ + ["name"]="마스터의 장검" + }, + [40302]={ + ["name"]="위태로운 가시" + }, + [40303]={ + ["name"]="마법 수정 방패" + }, + [40304]={ + ["name"]="가시 갑옷" + }, + [40305]={ + ["name"]="금빛 팔 보호구" + }, + [40401]={ + ["name"]="눈부신 왕관" + }, + [40402]={ + ["name"]="뼈를 베는 대검" + }, + [40403]={ + ["name"]="롱키누스의 창" + }, + [40404]={ + ["name"]="피에 굶주린 마검" + }, + [40405]={ + ["name"]="토르의 망치" + }, + [40501]={ + ["name"]="지혜의 열쇠" + }, + [40502]={ + ["name"]="어둠의 날개" + }, + [40503]={ + ["name"]="기사의 영광" + }, + [40504]={ + ["name"]="진실의 눈" + }, + [40505]={ + ["name"]="불사조의 눈물" + }, + [40601]={ + ["name"]="분열의 토템" + }, + [40602]={ + ["name"]="포세이돈의 삼지창" + }, + [40603]={ + ["name"]="태양신의 활" + }, + [40604]={ + ["name"]="보이지 않는 칼날" + }, + [40605]={ + ["name"]="영원의 창 궁니르" + }, + [40606]={ + ["name"]="종말의 심판" + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/legacy.lua.meta b/lua/app/config/strings/ko/legacy.lua.meta new file mode 100644 index 00000000..520b315d --- /dev/null +++ b/lua/app/config/strings/ko/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d61d9ef7cd6db6e40bc3477861cd6440 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/mail.lua b/lua/app/config/strings/ko/mail.lua new file mode 100644 index 00000000..748c9c2d --- /dev/null +++ b/lua/app/config/strings/ko/mail.lua @@ -0,0 +1,24 @@ +local mail = { + [1]={ + ["name"]="길 가던 할아버지가 던져 준 선물" + }, + [2]={ + ["name"]="왕의 일상 보급품" + }, + [3]={ + ["name"]="으랏차차!", + ["desc"]="낙관적 인 사람은 항상 예상치 못한 것에 놀란다." + }, + [4]={ + ["name"]="자비로운 자는 무적입니다.", + ["desc"]="마음이 착한 사람은 선행으로 보상을받을 것입니다." + }, + [5]={ + ["name"]="막힘없이 뻗어나가요!", + ["desc"]="좋은 에너지, 행운과 행운" + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/mail.lua.meta b/lua/app/config/strings/ko/mail.lua.meta new file mode 100644 index 00000000..cfd85f80 --- /dev/null +++ b/lua/app/config/strings/ko/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 167e5cbac3eaba8408bc039213182583 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/mall_act.lua b/lua/app/config/strings/ko/mall_act.lua new file mode 100644 index 00000000..8edf24bf --- /dev/null +++ b/lua/app/config/strings/ko/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + ["name"]="첫 충전 보상" + }, + [10001]={ + ["name"]="귀중품" + }, + [10002]={ + ["name"]="용감하게 앞으로 돌진" + }, + [10003]={ + ["name"]="지하 궁전의 계승자" + }, + [10004]={ + ["name"]="연금술사의 보관함" + }, + [10005]={ + ["name"]="거대한 용의 보물 창고" + }, + [10006]={ + ["name"]="광전사의 혈통" + }, + [10101]={ + ["name"]="탐색 빅 패키지" + }, + [10102]={ + ["name"]="반짝이는 열쇠고리" + }, + [10103]={ + ["name"]="천하평정" + }, + [10104]={ + ["name"]="신화 마법봉 세트" + }, + [10105]={ + ["name"]="신화 암살자 세트" + }, + [10106]={ + ["name"]="정의의 사자" + }, + [10201]={ + ["name"]="전설 장비 3종 세트" + }, + [10202]={ + ["name"]="신화 장비 3종 세트" + }, + [10301]={ + ["name"]="전설속의 가보" + }, + [10302]={ + ["name"]="신화속의 가보" + }, + [20001]={ + ["name"]="광고 제거 패키지" + }, + [30001]={ + ["name"]="자동 축복 패키지" + }, + [40001]={ + ["name"]="금빛 모험가 훈장" + }, + [60001]={ + ["name"]="스테이지 펀드- 일반" + }, + [60002]={ + ["name"]="스테이지 펀드-프리미엄" + }, + [70001]={ + ["name"]="배틀 업적 시즌 1" + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/mall_act.lua.meta b/lua/app/config/strings/ko/mall_act.lua.meta new file mode 100644 index 00000000..5ce25621 --- /dev/null +++ b/lua/app/config/strings/ko/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7f022d881240a8d4c910fe8cca900a47 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/mall_daily.lua b/lua/app/config/strings/ko/mall_daily.lua new file mode 100644 index 00000000..68c1a6a5 --- /dev/null +++ b/lua/app/config/strings/ko/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + ["name"]="무료 패키지" + }, + [1002]={ + ["name"]="작은 열쇠고리" + }, + [1003]={ + ["name"]="타임 박스" + }, + [1004]={ + ["name"]="열쇠고리" + }, + [1005]={ + ["name"]="탐색 주머니" + }, + [2001]={ + ["name"]="큰 열쇠고리" + }, + [2002]={ + ["name"]="시간의 보물 상자" + }, + [2003]={ + ["name"]="열쇠 빅 패키지" + }, + [2004]={ + ["name"]="탐색용 가방" + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/mall_daily.lua.meta b/lua/app/config/strings/ko/mall_daily.lua.meta new file mode 100644 index 00000000..bee1e0d4 --- /dev/null +++ b/lua/app/config/strings/ko/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8386062c4cf6e494f97420217212200b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/mall_treasure.lua b/lua/app/config/strings/ko/mall_treasure.lua new file mode 100644 index 00000000..dcd94f4c --- /dev/null +++ b/lua/app/config/strings/ko/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + ["name"]="한 줌의 보석" + }, + [2]={ + ["name"]="보석 한 주머니" + }, + [3]={ + ["name"]="보석 한 가방" + }, + [4]={ + ["name"]="보석 한 상자" + }, + [5]={ + ["name"]="보석 한 통" + }, + [6]={ + ["name"]="보석 한 차 가득" + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/mall_treasure.lua.meta b/lua/app/config/strings/ko/mall_treasure.lua.meta new file mode 100644 index 00000000..a4bc08c5 --- /dev/null +++ b/lua/app/config/strings/ko/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 732c1d7b5a48e9a41b1abb160b680765 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/mastery.lua b/lua/app/config/strings/ko/mastery.lua new file mode 100644 index 00000000..25ce17f7 --- /dev/null +++ b/lua/app/config/strings/ko/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + ["desc"]="일반 공격 회복" + }, + [2]={ + ["desc"]="골드 버프" + }, + [3]={ + ["desc"]="공격 버프" + }, + [4]={ + ["desc"]="HP 버프" + }, + [5]={ + ["desc"]="배치 버프" + }, + [6]={ + ["desc"]="기본 공격 대미지 버프" + }, + [7]={ + ["desc"]="골드 버프" + }, + [8]={ + ["desc"]="공격 버프" + }, + [9]={ + ["desc"]="HP 버프" + }, + [10]={ + ["desc"]="과량 치유" + }, + [11]={ + ["desc"]="배치 버프" + }, + [12]={ + ["desc"]="회피 버프" + }, + [13]={ + ["desc"]="골드 버프" + }, + [14]={ + ["desc"]="공격 버프" + }, + [15]={ + ["desc"]="HP 버프" + }, + [16]={ + ["desc"]="배치 버프" + }, + [17]={ + ["desc"]="기본 공격 대미지 버프" + }, + [18]={ + ["desc"]="골드 버프" + }, + [19]={ + ["desc"]="공격 버프" + }, + [20]={ + ["desc"]="HP 버프" + }, + [21]={ + ["desc"]="부상 회피" + }, + [22]={ + ["desc"]="배치 버프" + }, + [23]={ + ["desc"]="회피 버프" + }, + [24]={ + ["desc"]="골드 버프" + }, + [25]={ + ["desc"]="공격 버프" + }, + [26]={ + ["desc"]="HP 버프" + }, + [27]={ + ["desc"]="배치 버프" + }, + [28]={ + ["desc"]="기본 공격 대미지 버프" + }, + [29]={ + ["desc"]="골드 버프" + }, + [30]={ + ["desc"]="공격 버프" + }, + [31]={ + ["desc"]="HP 버프" + }, + [32]={ + ["desc"]="자동 공격 속도" + }, + [33]={ + ["desc"]="배치 버프" + }, + [34]={ + ["desc"]="회피 버프" + }, + [35]={ + ["desc"]="골드 버프" + }, + [36]={ + ["desc"]="공격 버프" + }, + [37]={ + ["desc"]="HP 버프" + }, + [38]={ + ["desc"]="배치 버프" + }, + [39]={ + ["desc"]="기본 공격 대미지 버프" + }, + [40]={ + ["desc"]="골드 버프" + }, + [41]={ + ["desc"]="공격 버프" + }, + [42]={ + ["desc"]="HP 버프" + }, + [43]={ + ["desc"]="스킬 회복" + }, + [44]={ + ["desc"]="배치 버프" + }, + [45]={ + ["desc"]="회피 버프" + }, + [46]={ + ["desc"]="골드 버프" + }, + [47]={ + ["desc"]="공격 버프" + }, + [48]={ + ["desc"]="HP 버프" + }, + [49]={ + ["desc"]="배치 버프" + }, + [50]={ + ["desc"]="기본 공격 대미지 버프" + }, + [51]={ + ["desc"]="골드 버프" + }, + [52]={ + ["desc"]="공격 버프" + }, + [53]={ + ["desc"]="HP 버프" + }, + [54]={ + ["desc"]="일반 공격 회복" + }, + [55]={ + ["desc"]="배치 버프" + }, + [56]={ + ["desc"]="회피 버프" + }, + [57]={ + ["desc"]="골드 버프" + }, + [58]={ + ["desc"]="공격 버프" + }, + [59]={ + ["desc"]="HP 버프" + }, + [60]={ + ["desc"]="배치 버프" + }, + [61]={ + ["desc"]="기본 공격 대미지 버프" + }, + [62]={ + ["desc"]="골드 버프" + }, + [63]={ + ["desc"]="공격 버프" + }, + [64]={ + ["desc"]="HP 버프" + }, + [65]={ + ["desc"]="과량 치유" + }, + [66]={ + ["desc"]="배치 버프" + }, + [67]={ + ["desc"]="회피 버프" + }, + [68]={ + ["desc"]="골드 버프" + }, + [69]={ + ["desc"]="공격 버프" + }, + [70]={ + ["desc"]="HP 버프" + }, + [71]={ + ["desc"]="배치 버프" + }, + [72]={ + ["desc"]="기본 공격 대미지 버프" + }, + [73]={ + ["desc"]="골드 버프" + }, + [74]={ + ["desc"]="공격 버프" + }, + [75]={ + ["desc"]="HP 버프" + }, + [76]={ + ["desc"]="부상 회피" + }, + [77]={ + ["desc"]="배치 버프" + }, + [78]={ + ["desc"]="회피 버프" + }, + [79]={ + ["desc"]="골드 버프" + }, + [80]={ + ["desc"]="공격 버프" + }, + [81]={ + ["desc"]="HP 버프" + }, + [82]={ + ["desc"]="배치 버프" + }, + [83]={ + ["desc"]="기본 공격 대미지 버프" + }, + [84]={ + ["desc"]="골드 버프" + }, + [85]={ + ["desc"]="공격 버프" + }, + [86]={ + ["desc"]="HP 버프" + }, + [87]={ + ["desc"]="스킬 회복" + }, + [88]={ + ["desc"]="배치 버프" + }, + [89]={ + ["desc"]="회피 버프" + }, + [90]={ + ["desc"]="골드 버프" + }, + [91]={ + ["desc"]="공격 버프" + }, + [92]={ + ["desc"]="HP 버프" + }, + [93]={ + ["desc"]="배치 버프" + }, + [94]={ + ["desc"]="기본 공격 대미지 버프" + }, + [95]={ + ["desc"]="골드 버프" + }, + [96]={ + ["desc"]="공격 버프" + }, + [97]={ + ["desc"]="HP 버프" + }, + [98]={ + ["desc"]="일반 공격 회복" + }, + [99]={ + ["desc"]="배치 버프" + }, + [100]={ + ["desc"]="회피 버프" + }, + [101]={ + ["desc"]="골드 버프" + }, + [102]={ + ["desc"]="공격 버프" + }, + [103]={ + ["desc"]="HP 버프" + }, + [104]={ + ["desc"]="배치 버프" + }, + [105]={ + ["desc"]="기본 공격 대미지 버프" + }, + [106]={ + ["desc"]="골드 버프" + }, + [107]={ + ["desc"]="공격 버프" + }, + [108]={ + ["desc"]="HP 버프" + }, + [109]={ + ["desc"]="과량 치유" + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/mastery.lua.meta b/lua/app/config/strings/ko/mastery.lua.meta new file mode 100644 index 00000000..62168ac7 --- /dev/null +++ b/lua/app/config/strings/ko/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2bfa93e56de73914a8aa9a814f9c3f9a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/mine_research.lua b/lua/app/config/strings/ko/mine_research.lua new file mode 100644 index 00000000..792b1e7b --- /dev/null +++ b/lua/app/config/strings/ko/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [1]={ + ["desc"]="지식을 위하여 노력하세요!" + }, + [2]={ + ["desc"]="마른 풀 횃불을 만드는 법을 배워 보세요." + }, + [3]={ + ["desc"]="밖이 춥네요, 옷 한 벌 더 껴입으세요." + }, + [4]={ + ["desc"]="횃불이 곧 꺼질 것 같아요. 얼른 마른 풀을 가득 주워 담아요!" + }, + [5]={ + ["desc"]="돌을 주워 몬스터를 공격할 준비를 하세요." + }, + [6]={ + ["desc"]="열심히 공부하여 어제보다 더 나은 오늘의 내가 되어 보아요." + }, + [7]={ + ["desc"]="지식, 더 많은 지식" + }, + [8]={ + ["desc"]="아직은 좀 춥네요. 옷 한 벌 더 껴입어야겠어요." + }, + [9]={ + ["desc"]="돌을 깎고 다듬어 작은 칼로 만들어 보세요." + }, + [10]={ + ["desc"]="마른 나뭇가지는 횃불로 쓰기에 더 좋답니다." + }, + [11]={ + ["desc"]="몬스터가 돌을 던지네요, 옷 한 벌 추가해 보세요." + }, + [12]={ + ["desc"]="나뭇가지가 거의 다 타버렸어요. 얼른 주우세요." + }, + [13]={ + ["desc"]="선조가 물려준 녹슨 철검을 꺼내세요." + }, + [14]={ + ["desc"]="머리를 질끈 묶으면 공부가 더 잘된다고 합니다." + }, + [15]={ + ["desc"]="이상한 지식이 추가되었습니다." + }, + [16]={ + ["desc"]="옷은 돌멩이를 막을 수 없으니 철 갑옷을 입어야 해요." + }, + [17]={ + ["desc"]="선조가 물려준 철검에서 빛이 반짝이고 있어요." + }, + [18]={ + ["desc"]="드디어 훌륭한 횃불을 만드는 방법을 배워냈습니다." + }, + [19]={ + ["desc"]="머리가 너무 아파요. 투구를 착용해 주세요." + }, + [20]={ + ["desc"]="횃불을 더 빨리 만들어야 해요. 이제 사용할 수 있는 횃불이 남아있지 않아요." + }, + [21]={ + ["desc"]="철 껍데기가 벗겨져 강철검으로 바뀌었어요." + }, + [22]={ + ["desc"]="공부하다가 졸리면 검으로 허벅지를 찌를... 수도 있겠죠?" + }, + [23]={ + ["desc"]="이상한 지식이 또 추가되었네요." + }, + [24]={ + ["desc"]="팔이 너무 아파서 팔 보호대를 착용해야할 것 같네요." + }, + [25]={ + ["desc"]="옷을 더 껴입어요. 멈추지 말고 더 더!" + }, + [26]={ + ["desc"]="칼을 갈아요, 멈추지 말고 계속!" + }, + [27]={ + ["desc"]="옷을 더 껴입어요. 멈추지 말고 더 더!" + }, + [28]={ + ["desc"]="칼을 갈아요, 멈추지 말고 계속!" + }, + [29]={ + ["desc"]="옷을 더 껴입어요. 멈추지 말고 더 더!" + }, + [30]={ + ["desc"]="칼을 갈아요, 멈추지 말고 계속!" + }, + [31]={ + ["desc"]="옷을 더 껴입어요. 멈추지 말고 더 더!" + }, + [32]={ + ["desc"]="칼을 갈아요, 멈추지 말고 계속!" + }, + [33]={ + ["desc"]="옷을 더 껴입어요. 멈추지 말고 더 더!" + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/mine_research.lua.meta b/lua/app/config/strings/ko/mine_research.lua.meta new file mode 100644 index 00000000..8a9211ec --- /dev/null +++ b/lua/app/config/strings/ko/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a0b671b2f12cfe04da3834296fcd83dd +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/monster_base.lua b/lua/app/config/strings/ko/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/ko/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/monster_base.lua.meta b/lua/app/config/strings/ko/monster_base.lua.meta new file mode 100644 index 00000000..3c557cdd --- /dev/null +++ b/lua/app/config/strings/ko/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2168af135599fbe41b4bfcfa452b83e9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/runes.lua b/lua/app/config/strings/ko/runes.lua new file mode 100644 index 00000000..95305bdf --- /dev/null +++ b/lua/app/config/strings/ko/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + ["name"]="잔상" + }, + [50102]={ + ["name"]="드높은 사기" + }, + [50103]={ + ["name"]="부상 투혼" + }, + [50104]={ + ["name"]="강력한 타격" + }, + [50201]={ + ["name"]="회수" + }, + [50202]={ + ["name"]="민첩" + }, + [50203]={ + ["name"]="제압" + }, + [50204]={ + ["name"]="비장의 기술" + }, + [50301]={ + ["name"]="강한 독" + }, + [50302]={ + ["name"]="깊게 퍼지는 독" + }, + [50303]={ + ["name"]="독 바르기" + }, + [50304]={ + ["name"]="약점" + }, + [50401]={ + ["name"]="노련한 창 기술" + }, + [50402]={ + ["name"]="띄워올리기" + }, + [50403]={ + ["name"]="본능" + }, + [50404]={ + ["name"]="용감한 일격" + }, + [50501]={ + ["name"]="경갑" + }, + [50502]={ + ["name"]="천 갑옷" + }, + [50503]={ + ["name"]="가죽 갑옷" + }, + [50504]={ + ["name"]="무거운 갑옷" + }, + [50601]={ + ["name"]="검의 의지" + }, + [50602]={ + ["name"]="마법봉" + }, + [50603]={ + ["name"]="독을 품은 칼" + }, + [50604]={ + ["name"]="창의 영혼" + }, + [50701]={ + ["name"]="격노" + }, + [50702]={ + ["name"]="날쌘 몸놀림" + }, + [50703]={ + ["name"]="기본기의 중요성" + }, + [50704]={ + ["name"]="열구름" + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/runes.lua.meta b/lua/app/config/strings/ko/runes.lua.meta new file mode 100644 index 00000000..f73d477a --- /dev/null +++ b/lua/app/config/strings/ko/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7353aa77ed7be284f883cf52484752f9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/skill.lua b/lua/app/config/strings/ko/skill.lua new file mode 100644 index 00000000..8e9f7e3f --- /dev/null +++ b/lua/app/config/strings/ko/skill.lua @@ -0,0 +1,742 @@ +local skill = { + [11011]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11012]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11016]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21011]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21014]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21015]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31011]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31012]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31013]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41011]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41012]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41013]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [11021]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11022]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11026]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21021]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21024]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21025]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31021]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31022]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31023]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41021]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41022]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41023]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [11031]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11032]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11036]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21031]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21034]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21035]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31031]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31032]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31033]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41031]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41032]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41033]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [11041]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11042]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11046]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21041]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21044]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21045]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31041]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31042]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31043]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41041]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41042]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41043]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [11051]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11052]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11056]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21051]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21054]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21055]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31051]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31052]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31053]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41051]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41052]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41053]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [11061]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11062]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11066]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21061]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21064]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21065]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31061]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31062]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31063]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41061]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41062]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41063]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [11071]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11072]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11076]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21071]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21074]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21075]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31071]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31072]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31073]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41071]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41072]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41073]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [11081]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11082]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11086]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21081]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21084]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21085]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31081]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31082]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31083]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41081]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41082]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41083]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [11091]={ + ["name"]="피로 물든 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11092]={ + ["name"]="그라운드 슬래시", + ["desc"]="기본 공격을 15번 할 때마다 앞 방향으로 1번의 그라운드 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [11096]={ + ["name"]="부술 듯한 강력한 일격", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 3개의 대검을 소환하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [21091]={ + ["name"]="비수", + ["desc"]="기본 공격을 8번 할 때마다 적을 향해 날아가는 3개의 비수를 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [21094]={ + ["name"]="독 안개", + ["desc"]="기본 공격을 15번 할 때마다 1 개의 독 안개를 퍼트리며 5 초간 지속됩니다. 독 안개 안에 있는 적은 매1초마다 {0}% 공격력에 해당하는 대미지를 입습니다." + }, + [21095]={ + ["name"]="천 개의 칼날이 번뜩이는 처치", + ["desc"]="기본 공격을 25번 할 때마다 6개의 비수를 소환하여 적을 압제하며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31091]={ + ["name"]="반월 슬래시", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1번의 슬래시 공격을 날리며 {0}%공격력에 해당하는 대미지를 입힙니다." + }, + [31092]={ + ["name"]="창의 춤", + ["desc"]="기본 공격을 15번 할 때마다 힘껏 무기를 휘두르며 주위의 적들에게 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [31093]={ + ["name"]="쏟아져내리는 창", + ["desc"]="기본 공격을 25번 할 때마다 하늘에서 8개의 장창을 소환하며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41091]={ + ["name"]="회오리 공격", + ["desc"]="기본 공격을 8번 할 때마다 앞 방향으로 1 갈래 회오리 공격을 일으키며 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41092]={ + ["name"]="꽁꽁 얼어붙어라", + ["desc"]="기본 공격을 15번 할 때마다 자신의 발 아래에 1 개의 얼어붙은 진법을 소환하며 5 초간 지속됩니다. 매0.5초마다 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [41093]={ + ["name"]="어둠속의 공진", + ["desc"]="기본 공격을 25 번 할 때마다 모든 적들의 마법 인장을 폭발시키며 매 층의 인장은 {0}% 공격력에 해당하는 대미지를 입힙니다." + }, + [400011]={ + ["name"]="피뢰침", + ["desc"]="무기 스킬이 3 번 발동될 때마다 쓰러진 적에게 2 갈래의 천둥을 내리꽂으며 각각 공격력의 {0}%에 해당하는 AOE 대미지를 입힙니다." + }, + [400021]={ + ["name"]="집중의 향주머니", + ["desc"]="경고 범위 내에서 공격력 +{0}%" + }, + [400031]={ + ["name"]="도둑의 신발", + ["desc"]="성공적으로 회피했을 때, 공격력이 5초 동안 {0}% 증가하며 쿨타임은 15초 입니다." + }, + [400041]={ + ["name"]="민첩의 장갑", + ["desc"]="경고 범위 내에서 넉업 대미지 +{0}%, 적이 바닥에 쓰러져 있는 시간 1초 연장" + }, + [400051]={ + ["name"]="암살자의 단검", + ["desc"]="경고 범위 내에서 기본 공격의 치명타율이 20% 증가합니다 치명타 데미지 +{0}%." + }, + [401011]={ + ["name"]="가문의 부적", + ["desc"]="기본 공격 5회마다 뒤에 있는 가장 가까운 적을 한 번 공격하며 공격력의 {0}%에 해당하는 대미지를 입힙니다." + }, + [401021]={ + ["name"]="무거운 철 갑옷", + ["desc"]="부상을 입었을 때 주위의 몹을 띄워 공격력의 {0}%에 해당하는 대미지를 입힙니다. 쿨타임은 15초 입니다." + }, + [401031]={ + ["name"]="힘의 장갑", + ["desc"]="적을 넉업할 때, 넉업 대미지 +{0}%, 넉업한 적의 수 +3" + }, + [401041]={ + ["name"]="위장 망토", + ["desc"]="캐릭터가 풀 피일 때, 공격력이 {0}% 증가합니다." + }, + [401051]={ + ["name"]="호랑이 발톱", + ["desc"]="경고 범위 내에서 넉업으로 입힌 대미지 +{0}%" + }, + [402011]={ + ["name"]="검은 철봉", + ["desc"]="바닥에 쓰러진 적을 공격할 때 추격하게 되며 매 번 추격할 때마다 공격력의 {0}%에 해당하는 대미지를 입힙니다." + }, + [402021]={ + ["name"]="격투의 링", + ["desc"]="HP가 30% 이하일 때 공격력이 {0}% 증가합니다." + }, + [402031]={ + ["name"]="번개무늬 수정", + ["desc"]="무기 스킬이 3 번 발동될 때마다 쓰러진 적에게 2 갈래의 천둥을 내리꽂으며 각각 공격력의 {0}%에 해당하는 AOE 대미지를 입힙니다." + }, + [402041]={ + ["name"]="얼음 가면", + ["desc"]="경고 범위 내에서 공격력 +{0}%" + }, + [402051]={ + ["name"]="철갑 조끼", + ["desc"]="성공적으로 회피했을 때, 공격력이 5초 동안 {0}% 증가하며 쿨타임은 15초 입니다." + }, + [403011]={ + ["name"]="마스터의 장검", + ["desc"]="경고 범위 내에서 넉업 대미지 +{0}%, 적이 바닥에 쓰러져 있는 시간 1초 연장" + }, + [403021]={ + ["name"]="위태로운 가시", + ["desc"]="경고 범위 내에서 기본 공격의 치명타율이 20% 증가합니다 치명타 데미지 +{0}%." + }, + [403031]={ + ["name"]="마법 수정 방패", + ["desc"]="기본 공격 5회마다 뒤에 있는 가장 가까운 적을 한 번 공격하며 공격력의 {0}%에 해당하는 대미지를 입힙니다." + }, + [403041]={ + ["name"]="가시 갑옷", + ["desc"]="부상을 입었을 때 주위의 몹을 띄워 공격력의 {0}%에 해당하는 대미지를 입힙니다. 쿨타임은 15초 입니다." + }, + [403051]={ + ["name"]="금빛 팔 보호구", + ["desc"]="적을 넉업할 때, 넉업 대미지 +{0}%, 넉업한 적의 수 +5" + }, + [404011]={ + ["name"]="눈부신 왕관", + ["desc"]="캐릭터가 풀 피일 때, 공격력이 {0}% 증가합니다." + }, + [404021]={ + ["name"]="뼈를 베는 대검", + ["desc"]="경고 범위 내에서 넉업으로 입힌 대미지 +{0}%" + }, + [404031]={ + ["name"]="롱키누스의 창", + ["desc"]="바닥에 쓰러진 적을 공격할 때 추격하게 되며 매 번 추격할 때마다 공격력의 {0}%에 해당하는 대미지를 입힙니다." + }, + [404041]={ + ["name"]="피에 굶주린 마검", + ["desc"]="HP가 30% 이하일 때 공격력이 {0}% 증가합니다." + }, + [404051]={ + ["name"]="토르의 망치", + ["desc"]="무기 스킬이 3 번 발동될 때마다 쓰러진 적에게 2 갈래의 천둥을 내리꽂으며 각각 공격력의 {0}%에 해당하는 AOE 대미지를 입힙니다." + }, + [405011]={ + ["name"]="지혜의 열쇠", + ["desc"]="경고 범위 내에서 공격력 +{0}%" + }, + [405021]={ + ["name"]="어둠의 날개", + ["desc"]="성공적으로 회피했을 때, 공격력이 5초 동안 {0}% 증가하며 쿨타임은 15초 입니다." + }, + [405031]={ + ["name"]="기사의 영광", + ["desc"]="경고 범위 내에서 넉업 대미지 +{0}%, 적이 바닥에 쓰러져 있는 시간 1초 연장" + }, + [405041]={ + ["name"]="진실의 눈", + ["desc"]="경고 범위 내에서 기본 공격의 치명타율이 20% 증가합니다 치명타 데미지 +{0}%." + }, + [405051]={ + ["name"]="불사조의 눈물", + ["desc"]="기본 공격 5회마다 뒤에 있는 가장 가까운 적을 한 번 공격하며 공격력의 {0}%에 해당하는 대미지를 입힙니다." + }, + [406011]={ + ["name"]="분열의 토템", + ["desc"]="부상을 입었을 때 주위의 몹을 띄워 공격력의 {0}%에 해당하는 대미지를 입힙니다. 쿨타임은 15초 입니다." + }, + [406021]={ + ["name"]="포세이돈의 삼지창", + ["desc"]="적을 넉업할 때, 넉업 대미지 +{0}%, 넉업한 적의 수 +10" + }, + [406031]={ + ["name"]="태양신의 활", + ["desc"]="캐릭터가 풀 피일 때, 공격력이 {0}% 증가합니다." + }, + [406041]={ + ["name"]="보이지 않는 칼날", + ["desc"]="경고 범위 내에서 넉업으로 입힌 대미지 +{0}%" + }, + [406051]={ + ["name"]="영원의 창 궁니르", + ["desc"]="바닥에 쓰러진 적을 공격할 때 추격하게 되며 매 번 추격할 때마다 공격력의 {0}%에 해당하는 대미지를 입힙니다." + }, + [406061]={ + ["name"]="종말의 심판", + ["desc"]="HP가 30% 이하일 때 공격력이 {0}% 증가합니다." + }, + [501011]={ + ["name"]="잔상", + ["desc"]="스킬이 발동될 때마다 20% 확률로 한 번 더 사용합니다." + }, + [501021]={ + ["name"]="드높은 사기", + ["desc"]="풀 피일 때 50% 확률로 스킬을 한번 더 발동합니다." + }, + [501031]={ + ["name"]="부상 투혼", + ["desc"]="부상 시, 스킬 대미지가 5초 동안 30% 증가하며 쿨타임은 5초 입니다." + }, + [501041]={ + ["name"]="강력한 타격", + ["desc"]="기본 공격으로 기절한 유닛을 공격하면 기본 공격의 대미지가 100% 증가합니다." + }, + [502011]={ + ["name"]="회수", + ["desc"]="매 번 폭발할 때마다 마법 인장의 20% 층 수가 유지됩니다." + }, + [502021]={ + ["name"]="민첩", + ["desc"]="회피 +10%" + }, + [502022]={ + ["name"]="민첩", + ["desc"]="회피에 성공할 때마다 모든 적에게 마법 인장 2 층이 부여됩니다." + }, + [502031]={ + ["name"]="제압", + ["desc"]="치명타 시, 기본 공격의 대상에게 추가로 마법 인장 1 층이 부여됩니다." + }, + [502041]={ + ["name"]="비장의 기술", + ["desc"]="적을 넉업할 때, 30%의 확률로 10 층의 마법 인장이 부여됩니다." + }, + [503011]={ + ["name"]="강한 독", + ["desc"]="독 대미지는 30% 확률로 100% 증가합니다." + }, + [503021]={ + ["name"]="깊게 퍼지는 독", + ["desc"]="독을 한 층 중첩할 때마다 독 대미지가 5% 증가합니다." + }, + [503031]={ + ["name"]="독 바르기", + ["desc"]="경고 범위 내에서 매 번 50% 확률로 기본 공격에 한 층의 독이 입혀집니다." + }, + [503041]={ + ["name"]="약점", + ["desc"]="중독된 적에게 스킬 적중 시, 대미지가 50% 증가합니다." + }, + [504011]={ + ["name"]="노련한 창 기술", + ["desc"]="시전할 때마다 20% 확률로 무기 스킬 1개 추가 발동" + }, + [504021]={ + ["name"]="띄워올리기", + ["desc"]="넉업했을 때, 20% 확률로 스킬 3을 한 번 발사합니다." + }, + [504031]={ + ["name"]="본능", + ["desc"]="입장 후 10초마다 스킬2를 한번 발동합니다." + }, + [504041]={ + ["name"]="용감한 일격", + ["desc"]="스킬은 30%의 확률로 두 배의 대미지를 입힙니다." + }, + [505011]={ + ["name"]="경갑", + ["desc"]="[검] 스킬 발동 시, 넉업 지속시간이 0.5초 증가하고 기본 공격 대미지가 20% 증가합니다. 3초간 지속되며 쿨타임은 3초 입니다." + }, + [505021]={ + ["name"]="천 갑옷", + ["desc"]="[마법봉] 스킬 발동 시, 마법 인장 2 층이 부여됩니다." + }, + [505031]={ + ["name"]="가죽 갑옷", + ["desc"]="[단도] 스킬 발동 시 20% 확률로 스킬1을 한 번 더 사용합니다." + }, + [505041]={ + ["name"]="무거운 갑옷", + ["desc"]="[장창] 스킬 발동 시, 20% 확률로 스킬2를 한 번 더 사용합니다." + }, + [506011]={ + ["name"]="검의 의지", + ["desc"]="[검] 양손검을 사용할 때 기본 공격의 치명타율이 100% 상승합니다." + }, + [506021]={ + ["name"]="마법봉", + ["desc"]="[마법봉] 마법봉을 사용할 때 마법 인장을 폭발시키는 대미지가 50% 증가합니다." + }, + [506031]={ + ["name"]="독을 품은 칼", + ["desc"]="[단도] 단검을 사용할 때 독 대미지의 지속 시간이 5초 증가합니다." + }, + [506041]={ + ["name"]="창의 영혼", + ["desc"]="[장창] 사용 시, 스킬 2 공격력 100% 증가" + }, + [507011]={ + ["name"]="격노", + ["desc"]="치명타율 +10%" + }, + [507021]={ + ["name"]="날쌘 몸놀림", + ["desc"]="회피율 +10%" + }, + [507031]={ + ["name"]="기본기의 중요성", + ["desc"]="기본 공격 대미지 +20%" + }, + [507041]={ + ["name"]="열구름", + ["desc"]="넉업 대미지 +30%" + }, + [600011]={ + ["name"]="공격으로 생명력 회복", + ["desc"]="10 회 공격 시, 최대 HP의 20% 회복" + }, + [600021]={ + ["name"]="과량 치유", + ["desc"]="회복된 피의 양이 넘치게 될 경우 보호막으로 전환되며, 최고로 최대 HP의 30%에 해당하는 보호막을 생성할 수 있습니다." + }, + [600031]={ + ["name"]="부상 회피", + ["desc"]="피해를 입은 후, 3초 동안 회피율이 50% 증가하며 쿨타임은 30초 입니다." + }, + [600041]={ + ["name"]="자동 공격 속도", + ["desc"]="자동 공격 시, 공격 빈도가 0.35초/회로 증가합니다." + }, + [600051]={ + ["name"]="스킬로 생명력 회복", + ["desc"]="스킬을 사용할 때 30%의 확률로 HP를 15% 회복합니다." + }, + [600061]={ + ["name"]="공격으로 생명력 회복", + ["desc"]="10회 공격 시, 최대 HP의 30% 회복" + }, + [600071]={ + ["name"]="과량 치유", + ["desc"]="회복된 피의 양이 넘치게 될 경우 보호막으로 전환되며, 최고로 최대 HP의 60%에 해당하는 보호막을 생성할 수 있습니다." + }, + [600081]={ + ["name"]="부상 회피", + ["desc"]="피해를 입은 후, 5초 동안 회피율이 50% 증가하며 쿨타임은 30초 입니다." + }, + [600091]={ + ["name"]="스킬로 생명력 회복", + ["desc"]="스킬을 사용할 때 30% 확률로 30% HP를 회복합니다." + }, + [600101]={ + ["name"]="공격으로 생명력 회복", + ["desc"]="10회 공격 시, 최대 HP의 40% 회복" + }, + [600111]={ + ["name"]="과량 치유", + ["desc"]="회복된 피의 양이 넘치게 될 경우 보호막으로 전환되며, 최고로 최대 HP의 90%에 해당하는 보호막을 생성할 수 있습니다." + } +} +local config = { +data=skill,count=184 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/skill.lua.meta b/lua/app/config/strings/ko/skill.lua.meta new file mode 100644 index 00000000..00289dab --- /dev/null +++ b/lua/app/config/strings/ko/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b1d40f2326197d8419ff27de7d34d957 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/task.lua b/lua/app/config/strings/ko/task.lua new file mode 100644 index 00000000..56a2a3fe --- /dev/null +++ b/lua/app/config/strings/ko/task.lua @@ -0,0 +1,130 @@ +local task = { + [1]={ + ["desc"]="적 {0}명 물리치기", + ["tutorial_desc"]="적군을 물리치세요." + }, + [2]={ + ["desc"]="{0} 스테이지 클리어", + ["tutorial_desc"]="스테이지를 클리어하세요." + }, + [3]={ + ["desc"]="{0} 번 소환하기", + ["tutorial_desc"]="소환" + }, + [4]={ + ["desc"]="광고 {0}회 시청하기", + ["tutorial_desc"]="광고 시청" + }, + [5]={ + ["desc"]="데일리 미션 완성하기", + ["tutorial_desc"]="데일리 미션 완성하기" + }, + [6]={ + ["desc"]="출석체크 누적 {0}일", + ["tutorial_desc"]="로그인한 총 일수" + }, + [7]={ + ["desc"]="무기 소환 {0}번 하기", + ["tutorial_desc"]="무기를 소환해 주세요." + }, + [8]={ + ["desc"]="방어 장비 소환 {0}번 하기", + ["tutorial_desc"]="방어 장비를 소환해 주세요." + }, + [9]={ + ["desc"]="가보 소환 {0}번 하기", + ["tutorial_desc"]="가보를 소환해 주세요." + }, + [10]={ + ["desc"]="다이아몬드 퀘스트 {0} 클리어", + ["tutorial_desc"]="다이아몬드 퀘스트를 클리어해 주세요." + }, + [11]={ + ["desc"]="골드 퀘스트 {0} 클리어", + ["tutorial_desc"]="골드 퀘스트를 클리어해 주세요." + }, + [12]={ + ["desc"]="미스릴 퀘스트 {0} 클리어", + ["tutorial_desc"]="미스릴 퀘스트를 완성해 주세요." + }, + [13]={ + ["desc"]="특성 퀘스트 {0} 클리어", + ["tutorial_desc"]="특성 퀘스트 클리어" + }, + [14]={ + ["desc"]="대전 모드 티어 {0} 도달하기", + ["tutorial_desc"]="대번 모드 티어" + }, + [15]={ + ["desc"]="횃불 {0} 회 사용하기", + ["tutorial_desc"]="횃불 사용하기" + }, + [16]={ + ["desc"]="화염 폭탄 {0} 회 사용하기", + ["tutorial_desc"]="화염 폭탄 사용하기" + }, + [17]={ + ["desc"]="성광 촛불 {0} 회 사용하기", + ["tutorial_desc"]="성광 촛불 사용하기" + }, + [18]={ + ["desc"]="연구 {0} 번 완료", + ["tutorial_desc"]="연구 번 완료" + }, + [19]={ + ["desc"]="{0} 개의 안개 구역 해제", + ["tutorial_desc"]="개의 안개 구역 해제" + }, + [20]={ + ["desc"]="탐색 {0} 미터 진행", + ["tutorial_desc"]="탐색을 진행한 거리" + }, + [21]={ + ["desc"]="축복 {0}번 받기", + ["tutorial_desc"]="축복 받기" + }, + [22]={ + ["desc"]="룬 {0} 개 획득", + ["tutorial_desc"]="룬 획득" + }, + [23]={ + ["desc"]="룬 {0} 번 강화하기", + ["tutorial_desc"]="룬 강화하기" + }, + [24]={ + ["desc"]="공격 {0} 회 훈련하기", + ["tutorial_desc"]="공격 훈련" + }, + [25]={ + ["desc"]="HP {0} 회 훈련하기", + ["tutorial_desc"]="HP 훈련" + }, + [26]={ + ["desc"]="스테이지 {0} 회 도전하기", + ["tutorial_desc"]="스테이지 도전하기" + }, + [27]={ + ["desc"]="다이아몬드 퀘스트 {0}회 클리어", + ["tutorial_desc"]="골드 퀘스트 완료 횟수" + }, + [28]={ + ["desc"]="골드 퀘스트 {0} 회 클리어", + ["tutorial_desc"]="다이아몬드 퀘스트 완료 횟수" + }, + [29]={ + ["desc"]="미스릴 퀘스트 {0} 회 클리어", + ["tutorial_desc"]="미스릴 퀘스트 완료 횟수" + }, + [30]={ + ["desc"]="특성 퀘스트 {0} 회 클리어", + ["tutorial_desc"]="특성 퀘스트 완료 횟수" + }, + [31]={ + ["desc"]="대전 모드 {0} 회 도전하기", + ["tutorial_desc"]="대전 모드 도전하기" + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/task.lua.meta b/lua/app/config/strings/ko/task.lua.meta new file mode 100644 index 00000000..213ab8e8 --- /dev/null +++ b/lua/app/config/strings/ko/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1c108f95089ada04f8f40166d6f15e24 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/task_daily.lua b/lua/app/config/strings/ko/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/ko/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/task_daily.lua.meta b/lua/app/config/strings/ko/task_daily.lua.meta new file mode 100644 index 00000000..630db4ba --- /dev/null +++ b/lua/app/config/strings/ko/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4df2acc58ceee884b912861f6ec4048b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/tutorial.lua b/lua/app/config/strings/ko/tutorial.lua new file mode 100644 index 00000000..fbbc5cb6 --- /dev/null +++ b/lua/app/config/strings/ko/tutorial.lua @@ -0,0 +1,72 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + ["value"]="이제 선택 과정을 시작할 시간입니다!" + }, + ["TUTORIAL_TXT_2"]={ + ["value"]="이제 당신의 퍼포먼스를 볼 차례입니다~" + }, + ["TUTORIAL_TXT_3"]={ + ["value"]="조금 전 전투는 조금 쉬웠죠? 하지만 다음부터는 약간 어려워집니다. 훈련으로 강해져 보세요!" + }, + ["TUTORIAL_TXT_4"]={ + ["value"]="길게 누르면 빠르게 훈련할 수 있습니다. 먼저 5 레벨로 업그레이드해 주세요." + }, + ["TUTORIAL_TXT_5"]={ + ["value"]="무기 기능이 잠금 해제되었습니다. 먼저 함께 무기를 소환해 볼까요?" + }, + ["TUTORIAL_TXT_6"]={ + ["value"]="많은 무기가 소환되었네요, 얼른 착용해 보세요." + }, + ["TUTORIAL_TXT_7"]={ + ["value"]="같은 종류의 무기는 강화에 활용할 수도 있고 속성도 증가시킬 수 있습니다." + }, + ["TUTORIAL_TXT_8"]={ + ["value"]="전체 강화는 모든 강화 가능한 무기들을 한꺼번에 강화시킵니다. 더 많은 고급 무기를 소유해도 속성을 향상시킬 수 있습니다." + }, + ["TUTORIAL_TXT_9"]={ + ["value"]="무기는 일정 횟수 공격 후 자동으로 발사되는 스킬을 소유하고 있습니다." + }, + ["TUTORIAL_TXT_10"]={ + ["value"]="방어 장비가 잠금 해제되었습니다. 함께 방어 장비를 소환하여 착용해 볼까요?" + }, + ["TUTORIAL_TXT_11"]={ + ["value"]="방어 장비는 옷과 머리 장식으로 나뉩니다. 옷은 HP를 높여주고 머리 장식은 공격력을 올려줍니다&생명을 늘린다." + }, + ["TUTORIAL_TXT_12"]={ + ["value"]="방어 장비는 무기와 같이 강화하여 속성을 향상시킬 수 있습니다." + }, + ["TUTORIAL_TXT_13"]={ + ["value"]="자동 전투, 가볍게 클리어!" + }, + ["TUTORIAL_TXT_14"]={ + ["value"]="가보 기능이 해제되었으니 우선 가보를 소환해 보세요!" + }, + ["TUTORIAL_TXT_15"]={ + ["value"]="가보는 희귀하고 신기한 아이템입니다. 어떻게 쓰는지 알아볼까요?" + }, + ["TUTORIAL_TXT_16"]={ + ["value"]="강화된 가보는 더 강력한 속성을 부여해 줍니다." + }, + ["TUTORIAL_TXT_17"]={ + ["value"]="도전을 이어가면 더 많은 가보와 장비 슬롯을 해제할 수 있습니다." + }, + ["TUTORIAL_TXT_18"]={ + ["value"]="이제 더 많은 마스터리 능력를 잠금 해제할 수 있으니 직접 확인해 보세요!" + }, + ["TUTORIAL_TXT_19"]={ + ["value"]="보물이 가득하다고 하는 성 퀘스트가 시작되었습니다." + }, + ["TUTORIAL_TXT_20"]={ + ["value"]="횃불을 사용하여 탐험을 시작하세요~" + }, + ["TUTORIAL_TXT_21"]={ + ["value"]="안내에 따라 더 많은 보물을 얻으려면 아래로 계속 탐험하세요!" + }, + ["TUTORIAL_TXT_22"]={ + ["value"]="무기, 방어구, 가보가 서로 어떤 관계가 있는지 알고 싶으신가요? 여기를 클릭하세요!" + } +} +local config = { +data=tutorial,count=22 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/tutorial.lua.meta b/lua/app/config/strings/ko/tutorial.lua.meta new file mode 100644 index 00000000..6897773d --- /dev/null +++ b/lua/app/config/strings/ko/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ddf36e0d16e6d2042b9e11e3bab80c30 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ko/tutorialtask.lua b/lua/app/config/strings/ko/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/ko/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ko/tutorialtask.lua.meta b/lua/app/config/strings/ko/tutorialtask.lua.meta new file mode 100644 index 00000000..6ee2cde0 --- /dev/null +++ b/lua/app/config/strings/ko/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 23f16169f611d3546b2d30246d3509c6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt.meta b/lua/app/config/strings/pt.meta new file mode 100644 index 00000000..f599604e --- /dev/null +++ b/lua/app/config/strings/pt.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 917778bbb0df66d4189a723c77b6a964 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/pt/act_battle_pass_task.lua b/lua/app/config/strings/pt/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/pt/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/act_battle_pass_task.lua.meta b/lua/app/config/strings/pt/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..518ccee4 --- /dev/null +++ b/lua/app/config/strings/pt/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 04d55aa566f6e06489e031b6cb00f4d3 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/act_fund.lua b/lua/app/config/strings/pt/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/pt/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/act_fund.lua.meta b/lua/app/config/strings/pt/act_fund.lua.meta new file mode 100644 index 00000000..60ef5e71 --- /dev/null +++ b/lua/app/config/strings/pt/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 45e55533dd9afd4449b7c1e4a8324e0a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/act_sevenday_quest.lua b/lua/app/config/strings/pt/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/pt/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/act_sevenday_quest.lua.meta b/lua/app/config/strings/pt/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..7c2e37a9 --- /dev/null +++ b/lua/app/config/strings/pt/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2ef0d4da99ad08649a309237c5a206bc +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/arena.lua b/lua/app/config/strings/pt/arena.lua new file mode 100644 index 00000000..f6b81b9f --- /dev/null +++ b/lua/app/config/strings/pt/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/arena.lua.meta b/lua/app/config/strings/pt/arena.lua.meta new file mode 100644 index 00000000..1bf564ff --- /dev/null +++ b/lua/app/config/strings/pt/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3a5749afce4c7e246a28423ebc8fef3a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/attr.lua b/lua/app/config/strings/pt/attr.lua new file mode 100644 index 00000000..cc681634 --- /dev/null +++ b/lua/app/config/strings/pt/attr.lua @@ -0,0 +1,141 @@ +local attr = { + [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=attr,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/attr.lua.meta b/lua/app/config/strings/pt/attr.lua.meta new file mode 100644 index 00000000..947fedbd --- /dev/null +++ b/lua/app/config/strings/pt/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 461de4e89fe7d5c4e8ba80d216826734 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/collection.lua b/lua/app/config/strings/pt/collection.lua new file mode 100644 index 00000000..06cecc89 --- /dev/null +++ b/lua/app/config/strings/pt/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/collection.lua.meta b/lua/app/config/strings/pt/collection.lua.meta new file mode 100644 index 00000000..39289a48 --- /dev/null +++ b/lua/app/config/strings/pt/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 06b78b64c9e3aaf4a9fa3ae0de495b81 +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 new file mode 100644 index 00000000..8d0d286d --- /dev/null +++ b/lua/app/config/strings/pt/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10007]={ + + }, + [10008]={ + + }, + [10009]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10107]={ + + }, + [10108]={ + + }, + [10109]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10203]={ + + }, + [10204]={ + + }, + [10205]={ + + }, + [10206]={ + + }, + [10207]={ + + }, + [10208]={ + + }, + [10209]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [10303]={ + + }, + [10304]={ + + }, + [10305]={ + + }, + [10306]={ + + }, + [10307]={ + + }, + [10308]={ + + }, + [10309]={ + + }, + [20001]={ + + }, + [20002]={ + + }, + [20003]={ + + }, + [20004]={ + + }, + [20005]={ + + }, + [20006]={ + + }, + [20007]={ + + }, + [20101]={ + + }, + [20102]={ + + }, + [20103]={ + + }, + [20104]={ + + }, + [20105]={ + + }, + [20106]={ + + }, + [20107]={ + + }, + [20201]={ + + }, + [20202]={ + + }, + [20203]={ + + }, + [20204]={ + + }, + [20205]={ + + }, + [20206]={ + + }, + [20207]={ + + }, + [20301]={ + + }, + [20302]={ + + }, + [20303]={ + + }, + [20304]={ + + }, + [20305]={ + + }, + [20306]={ + + }, + [20307]={ + + }, + [30001]={ + + }, + [30002]={ + + }, + [30003]={ + + }, + [30004]={ + + }, + [30005]={ + + }, + [30006]={ + + }, + [30007]={ + + }, + [30101]={ + + }, + [30102]={ + + }, + [30103]={ + + }, + [30104]={ + + }, + [30105]={ + + }, + [30106]={ + + }, + [30107]={ + + }, + [30201]={ + + }, + [30202]={ + + }, + [30203]={ + + }, + [30204]={ + + }, + [30205]={ + + }, + [30206]={ + + }, + [30207]={ + + }, + [30301]={ + + }, + [30302]={ + + }, + [30303]={ + + }, + [30304]={ + + }, + [30305]={ + + }, + [30306]={ + + }, + [30307]={ + + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/equip.lua.meta b/lua/app/config/strings/pt/equip.lua.meta new file mode 100644 index 00000000..b357b792 --- /dev/null +++ b/lua/app/config/strings/pt/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d89dbc5ae3a7e1a4eb4dc97cedea8e2c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/global.lua b/lua/app/config/strings/pt/global.lua new file mode 100644 index 00000000..8d7b7871 --- /dev/null +++ b/lua/app/config/strings/pt/global.lua @@ -0,0 +1,5 @@ +local localization_global = +{ +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/pt/global.lua.meta b/lua/app/config/strings/pt/global.lua.meta new file mode 100644 index 00000000..00b90065 --- /dev/null +++ b/lua/app/config/strings/pt/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2108f53c613ae4643a784a994ed96e25 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/hero.lua b/lua/app/config/strings/pt/hero.lua new file mode 100644 index 00000000..01c2c0ba --- /dev/null +++ b/lua/app/config/strings/pt/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/hero.lua.meta b/lua/app/config/strings/pt/hero.lua.meta new file mode 100644 index 00000000..0aca4e4e --- /dev/null +++ b/lua/app/config/strings/pt/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 424296e97a94aee4ebf20126fb4a11c0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/item.lua b/lua/app/config/strings/pt/item.lua new file mode 100644 index 00000000..f344bbc7 --- /dev/null +++ b/lua/app/config/strings/pt/item.lua @@ -0,0 +1,89 @@ +local item = { + [1]={ + ["name"]="Ouro", + ["desc"]="Moeda comum, usada em muitos lugares" + }, + [2]={ + ["name"]="Diamante", + ["desc"]="Moeda rara, pode ser usada para comprar a maioria dos itens" + }, + [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]={ + + } +} +local config = { +data=item,count=27 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/item.lua.meta b/lua/app/config/strings/pt/item.lua.meta new file mode 100644 index 00000000..a6fc66ff --- /dev/null +++ b/lua/app/config/strings/pt/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ca9d8c2f71a9c3a4d9e940995eea6be2 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/legacy.lua b/lua/app/config/strings/pt/legacy.lua new file mode 100644 index 00000000..99d9f42a --- /dev/null +++ b/lua/app/config/strings/pt/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + + }, + [40002]={ + + }, + [40003]={ + + }, + [40004]={ + + }, + [40005]={ + + }, + [40101]={ + + }, + [40102]={ + + }, + [40103]={ + + }, + [40104]={ + + }, + [40105]={ + + }, + [40201]={ + + }, + [40202]={ + + }, + [40203]={ + + }, + [40204]={ + + }, + [40205]={ + + }, + [40301]={ + + }, + [40302]={ + + }, + [40303]={ + + }, + [40304]={ + + }, + [40305]={ + + }, + [40401]={ + + }, + [40402]={ + + }, + [40403]={ + + }, + [40404]={ + + }, + [40405]={ + + }, + [40501]={ + + }, + [40502]={ + + }, + [40503]={ + + }, + [40504]={ + + }, + [40505]={ + + }, + [40601]={ + + }, + [40602]={ + + }, + [40603]={ + + }, + [40604]={ + + }, + [40605]={ + + }, + [40606]={ + + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/legacy.lua.meta b/lua/app/config/strings/pt/legacy.lua.meta new file mode 100644 index 00000000..b80dfc94 --- /dev/null +++ b/lua/app/config/strings/pt/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0c1087d75b1b92248b4e137a6c999a95 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/mail.lua b/lua/app/config/strings/pt/mail.lua new file mode 100644 index 00000000..a4d974e0 --- /dev/null +++ b/lua/app/config/strings/pt/mail.lua @@ -0,0 +1,21 @@ +local mail = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/mail.lua.meta b/lua/app/config/strings/pt/mail.lua.meta new file mode 100644 index 00000000..86dbdda9 --- /dev/null +++ b/lua/app/config/strings/pt/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 247ac184693c6304bbd451b8c3ee4b84 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/mall_act.lua b/lua/app/config/strings/pt/mall_act.lua new file mode 100644 index 00000000..960b5c9c --- /dev/null +++ b/lua/app/config/strings/pt/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + + }, + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [20001]={ + + }, + [30001]={ + + }, + [40001]={ + + }, + [60001]={ + + }, + [60002]={ + + }, + [70001]={ + + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/mall_act.lua.meta b/lua/app/config/strings/pt/mall_act.lua.meta new file mode 100644 index 00000000..b6b7d0bc --- /dev/null +++ b/lua/app/config/strings/pt/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 36d3f9ec102d3c74b915808f8fe5c186 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/mall_daily.lua b/lua/app/config/strings/pt/mall_daily.lua new file mode 100644 index 00000000..3a3f154a --- /dev/null +++ b/lua/app/config/strings/pt/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/mall_daily.lua.meta b/lua/app/config/strings/pt/mall_daily.lua.meta new file mode 100644 index 00000000..8962dcbb --- /dev/null +++ b/lua/app/config/strings/pt/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e53608ca29cd8da48a95f1a95c2097e9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/mall_treasure.lua b/lua/app/config/strings/pt/mall_treasure.lua new file mode 100644 index 00000000..b446b540 --- /dev/null +++ b/lua/app/config/strings/pt/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/mall_treasure.lua.meta b/lua/app/config/strings/pt/mall_treasure.lua.meta new file mode 100644 index 00000000..bdc838a0 --- /dev/null +++ b/lua/app/config/strings/pt/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 52ce67c4bd87c454580a22f11214db15 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/mastery.lua b/lua/app/config/strings/pt/mastery.lua new file mode 100644 index 00000000..84521b29 --- /dev/null +++ b/lua/app/config/strings/pt/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/mastery.lua.meta b/lua/app/config/strings/pt/mastery.lua.meta new file mode 100644 index 00000000..e6231a9f --- /dev/null +++ b/lua/app/config/strings/pt/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 238930128fec9fc47ad7fe5075de9c27 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/mine_research.lua b/lua/app/config/strings/pt/mine_research.lua new file mode 100644 index 00000000..f5198ea1 --- /dev/null +++ b/lua/app/config/strings/pt/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [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]={ + + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/mine_research.lua.meta b/lua/app/config/strings/pt/mine_research.lua.meta new file mode 100644 index 00000000..a35f2af7 --- /dev/null +++ b/lua/app/config/strings/pt/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a6c802f4ed038d9428ed018549fdcb9d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/monster_base.lua b/lua/app/config/strings/pt/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/pt/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/monster_base.lua.meta b/lua/app/config/strings/pt/monster_base.lua.meta new file mode 100644 index 00000000..2180aca7 --- /dev/null +++ b/lua/app/config/strings/pt/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b26d4dbe8e680454686eec5f3f7bf657 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/runes.lua b/lua/app/config/strings/pt/runes.lua new file mode 100644 index 00000000..9466cf77 --- /dev/null +++ b/lua/app/config/strings/pt/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + + }, + [50102]={ + + }, + [50103]={ + + }, + [50104]={ + + }, + [50201]={ + + }, + [50202]={ + + }, + [50203]={ + + }, + [50204]={ + + }, + [50301]={ + + }, + [50302]={ + + }, + [50303]={ + + }, + [50304]={ + + }, + [50401]={ + + }, + [50402]={ + + }, + [50403]={ + + }, + [50404]={ + + }, + [50501]={ + + }, + [50502]={ + + }, + [50503]={ + + }, + [50504]={ + + }, + [50601]={ + + }, + [50602]={ + + }, + [50603]={ + + }, + [50604]={ + + }, + [50701]={ + + }, + [50702]={ + + }, + [50703]={ + + }, + [50704]={ + + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/runes.lua.meta b/lua/app/config/strings/pt/runes.lua.meta new file mode 100644 index 00000000..ad947995 --- /dev/null +++ b/lua/app/config/strings/pt/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 61de6f11e3eb602429cf2fc6c2d9db86 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/skill.lua b/lua/app/config/strings/pt/skill.lua new file mode 100644 index 00000000..4b430b5b --- /dev/null +++ b/lua/app/config/strings/pt/skill.lua @@ -0,0 +1,267 @@ +local skill = { + [11011]={ + + }, + [11012]={ + + }, + [11013]={ + + }, + [21011]={ + + }, + [21014]={ + + }, + [21015]={ + + }, + [31011]={ + + }, + [31014]={ + + }, + [31015]={ + + }, + [41011]={ + + }, + [41014]={ + + }, + [41015]={ + + }, + [400011]={ + + }, + [400021]={ + + }, + [400031]={ + + }, + [400041]={ + + }, + [400051]={ + + }, + [401011]={ + + }, + [401021]={ + + }, + [401031]={ + + }, + [401041]={ + + }, + [401051]={ + + }, + [402011]={ + + }, + [402021]={ + + }, + [402031]={ + + }, + [402041]={ + + }, + [402051]={ + + }, + [403011]={ + + }, + [403021]={ + + }, + [403031]={ + + }, + [403041]={ + + }, + [403051]={ + + }, + [404011]={ + + }, + [404021]={ + + }, + [404031]={ + + }, + [404041]={ + + }, + [404051]={ + + }, + [405011]={ + + }, + [405021]={ + + }, + [405031]={ + + }, + [405041]={ + + }, + [405051]={ + + }, + [406011]={ + + }, + [406021]={ + + }, + [406031]={ + + }, + [406041]={ + + }, + [406051]={ + + }, + [406061]={ + + }, + [501011]={ + + }, + [501021]={ + + }, + [501031]={ + + }, + [501041]={ + + }, + [502011]={ + + }, + [502021]={ + + }, + [502022]={ + + }, + [502031]={ + + }, + [502041]={ + + }, + [503011]={ + + }, + [503021]={ + + }, + [503031]={ + + }, + [503041]={ + + }, + [504011]={ + + }, + [504021]={ + + }, + [504031]={ + + }, + [504041]={ + + }, + [505011]={ + + }, + [505021]={ + + }, + [505031]={ + + }, + [505041]={ + + }, + [506011]={ + + }, + [506021]={ + + }, + [506031]={ + + }, + [506041]={ + + }, + [507011]={ + + }, + [507021]={ + + }, + [507031]={ + + }, + [507041]={ + + }, + [600011]={ + + }, + [600021]={ + + }, + [600031]={ + + }, + [600041]={ + + }, + [600051]={ + + }, + [600061]={ + + }, + [600071]={ + + }, + [600081]={ + + }, + [600091]={ + + }, + [600101]={ + + } +} +local config = { +data=skill,count=87 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/skill.lua.meta b/lua/app/config/strings/pt/skill.lua.meta new file mode 100644 index 00000000..1dc9ac79 --- /dev/null +++ b/lua/app/config/strings/pt/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: cd9df843c481b2648b8dcc3c8c064dc1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/task.lua b/lua/app/config/strings/pt/task.lua new file mode 100644 index 00000000..2f9b2cad --- /dev/null +++ b/lua/app/config/strings/pt/task.lua @@ -0,0 +1,99 @@ +local task = { + [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]={ + + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/task.lua.meta b/lua/app/config/strings/pt/task.lua.meta new file mode 100644 index 00000000..15e68844 --- /dev/null +++ b/lua/app/config/strings/pt/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5251c31281ee88a43ae41b4bd53e0867 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/task_daily.lua b/lua/app/config/strings/pt/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/pt/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/task_daily.lua.meta b/lua/app/config/strings/pt/task_daily.lua.meta new file mode 100644 index 00000000..942ebbe8 --- /dev/null +++ b/lua/app/config/strings/pt/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e62207d15360f08439203c237ae164fe +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/tutorial.lua b/lua/app/config/strings/pt/tutorial.lua new file mode 100644 index 00000000..21efc841 --- /dev/null +++ b/lua/app/config/strings/pt/tutorial.lua @@ -0,0 +1,66 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + + }, + ["TUTORIAL_TXT_2"]={ + + }, + ["TUTORIAL_TXT_3"]={ + + }, + ["TUTORIAL_TXT_4"]={ + + }, + ["TUTORIAL_TXT_5"]={ + + }, + ["TUTORIAL_TXT_6"]={ + + }, + ["TUTORIAL_TXT_7"]={ + + }, + ["TUTORIAL_TXT_8"]={ + + }, + ["TUTORIAL_TXT_9"]={ + + }, + ["TUTORIAL_TXT_10"]={ + + }, + ["TUTORIAL_TXT_11"]={ + + }, + ["TUTORIAL_TXT_12"]={ + + }, + ["TUTORIAL_TXT_13"]={ + + }, + ["TUTORIAL_TXT_14"]={ + + }, + ["TUTORIAL_TXT_15"]={ + + }, + ["TUTORIAL_TXT_16"]={ + + }, + ["TUTORIAL_TXT_17"]={ + + }, + ["TUTORIAL_TXT_18"]={ + + }, + ["TUTORIAL_TXT_19"]={ + + }, + ["TUTORIAL_TXT_20"]={ + + } +} +local config = { +data=tutorial,count=20 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/tutorial.lua.meta b/lua/app/config/strings/pt/tutorial.lua.meta new file mode 100644 index 00000000..31e4909b --- /dev/null +++ b/lua/app/config/strings/pt/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c4e5ed2def35f6c4893d54394abfc654 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/pt/tutorialtask.lua b/lua/app/config/strings/pt/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/pt/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/pt/tutorialtask.lua.meta b/lua/app/config/strings/pt/tutorialtask.lua.meta new file mode 100644 index 00000000..ab6c3e4e --- /dev/null +++ b/lua/app/config/strings/pt/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4c67e72acbb373c45b1b294b289250f7 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ru.meta b/lua/app/config/strings/ru.meta new file mode 100644 index 00000000..b2c1cd4e --- /dev/null +++ b/lua/app/config/strings/ru.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 380b38f3b907d8a4bb83f3eb8190bbb8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/ru/act_fund.lua b/lua/app/config/strings/ru/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/ru/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/act_fund.lua.meta b/lua/app/config/strings/ru/act_fund.lua.meta new file mode 100644 index 00000000..75a9b587 --- /dev/null +++ b/lua/app/config/strings/ru/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6052ebb19cb8f5a479ce2f9bb1206397 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ru/global.lua b/lua/app/config/strings/ru/global.lua new file mode 100644 index 00000000..8d7b7871 --- /dev/null +++ b/lua/app/config/strings/ru/global.lua @@ -0,0 +1,5 @@ +local localization_global = +{ +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/ru/global.lua.meta b/lua/app/config/strings/ru/global.lua.meta new file mode 100644 index 00000000..b4246f27 --- /dev/null +++ b/lua/app/config/strings/ru/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dc92e32fbc083624f9e6169fdcba849f +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 new file mode 100644 index 00000000..d252911c --- /dev/null +++ b/lua/app/config/strings/ru/item.lua @@ -0,0 +1,87 @@ +local item = { + [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]={ + + } +} +local config = { +data=item,count=27 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/item.lua.meta b/lua/app/config/strings/ru/item.lua.meta new file mode 100644 index 00000000..a183411a --- /dev/null +++ b/lua/app/config/strings/ru/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3d51d8b721ca4764eaa2490dae3be466 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ru/mail.lua b/lua/app/config/strings/ru/mail.lua new file mode 100644 index 00000000..a4d974e0 --- /dev/null +++ b/lua/app/config/strings/ru/mail.lua @@ -0,0 +1,21 @@ +local mail = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/mail.lua.meta b/lua/app/config/strings/ru/mail.lua.meta new file mode 100644 index 00000000..1739fcbc --- /dev/null +++ b/lua/app/config/strings/ru/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7a73cd1e31a79e04e98dab79f470e1a6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ru/mall_act.lua b/lua/app/config/strings/ru/mall_act.lua new file mode 100644 index 00000000..960b5c9c --- /dev/null +++ b/lua/app/config/strings/ru/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + + }, + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [20001]={ + + }, + [30001]={ + + }, + [40001]={ + + }, + [60001]={ + + }, + [60002]={ + + }, + [70001]={ + + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/mall_act.lua.meta b/lua/app/config/strings/ru/mall_act.lua.meta new file mode 100644 index 00000000..31f71454 --- /dev/null +++ b/lua/app/config/strings/ru/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 140a7f11c3aceeb418035e8e4e7a82d4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ru/mall_daily.lua b/lua/app/config/strings/ru/mall_daily.lua new file mode 100644 index 00000000..3a3f154a --- /dev/null +++ b/lua/app/config/strings/ru/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/mall_daily.lua.meta b/lua/app/config/strings/ru/mall_daily.lua.meta new file mode 100644 index 00000000..a660a148 --- /dev/null +++ b/lua/app/config/strings/ru/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7af1fa353b3389f438c43b9a39cb7f9a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ru/mall_treasure.lua b/lua/app/config/strings/ru/mall_treasure.lua new file mode 100644 index 00000000..b446b540 --- /dev/null +++ b/lua/app/config/strings/ru/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/mall_treasure.lua.meta b/lua/app/config/strings/ru/mall_treasure.lua.meta new file mode 100644 index 00000000..492500f3 --- /dev/null +++ b/lua/app/config/strings/ru/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2b124588dacd0d245ad2d4cdc25bc1f4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/ru/monster_base.lua b/lua/app/config/strings/ru/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/ru/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/ru/monster_base.lua.meta b/lua/app/config/strings/ru/monster_base.lua.meta new file mode 100644 index 00000000..f141ff93 --- /dev/null +++ b/lua/app/config/strings/ru/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 12770d77032eac74eb27f7915dee5c7c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th.meta b/lua/app/config/strings/th.meta new file mode 100644 index 00000000..3a4ad308 --- /dev/null +++ b/lua/app/config/strings/th.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9d0b3c6ee522add44b0802d7fe4b37da +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/th/act_battle_pass_task.lua b/lua/app/config/strings/th/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/th/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/act_battle_pass_task.lua.meta b/lua/app/config/strings/th/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..8a048288 --- /dev/null +++ b/lua/app/config/strings/th/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 318209d65e30fa2489eb92954af6c2fa +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/act_fund.lua b/lua/app/config/strings/th/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/th/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/act_fund.lua.meta b/lua/app/config/strings/th/act_fund.lua.meta new file mode 100644 index 00000000..a4cfbfef --- /dev/null +++ b/lua/app/config/strings/th/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f26672b806cb2144585cb94f3e34246f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/act_sevenday_quest.lua b/lua/app/config/strings/th/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/th/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/act_sevenday_quest.lua.meta b/lua/app/config/strings/th/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..48c99433 --- /dev/null +++ b/lua/app/config/strings/th/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d9053b33f8456a84abc1ccb8792ea4ca +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/arena.lua b/lua/app/config/strings/th/arena.lua new file mode 100644 index 00000000..f6b81b9f --- /dev/null +++ b/lua/app/config/strings/th/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/arena.lua.meta b/lua/app/config/strings/th/arena.lua.meta new file mode 100644 index 00000000..03cc1853 --- /dev/null +++ b/lua/app/config/strings/th/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9eb50f6239513f0429bb5acae9f3be4f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/attr.lua b/lua/app/config/strings/th/attr.lua new file mode 100644 index 00000000..cc681634 --- /dev/null +++ b/lua/app/config/strings/th/attr.lua @@ -0,0 +1,141 @@ +local attr = { + [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=attr,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/attr.lua.meta b/lua/app/config/strings/th/attr.lua.meta new file mode 100644 index 00000000..c0cb8875 --- /dev/null +++ b/lua/app/config/strings/th/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d1f7be12a7b3d774583637495c419a17 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/collection.lua b/lua/app/config/strings/th/collection.lua new file mode 100644 index 00000000..06cecc89 --- /dev/null +++ b/lua/app/config/strings/th/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/collection.lua.meta b/lua/app/config/strings/th/collection.lua.meta new file mode 100644 index 00000000..6e7cc86f --- /dev/null +++ b/lua/app/config/strings/th/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fbc8cbe2fde4b024b8a6455e1f879457 +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 new file mode 100644 index 00000000..8d0d286d --- /dev/null +++ b/lua/app/config/strings/th/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10007]={ + + }, + [10008]={ + + }, + [10009]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10107]={ + + }, + [10108]={ + + }, + [10109]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10203]={ + + }, + [10204]={ + + }, + [10205]={ + + }, + [10206]={ + + }, + [10207]={ + + }, + [10208]={ + + }, + [10209]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [10303]={ + + }, + [10304]={ + + }, + [10305]={ + + }, + [10306]={ + + }, + [10307]={ + + }, + [10308]={ + + }, + [10309]={ + + }, + [20001]={ + + }, + [20002]={ + + }, + [20003]={ + + }, + [20004]={ + + }, + [20005]={ + + }, + [20006]={ + + }, + [20007]={ + + }, + [20101]={ + + }, + [20102]={ + + }, + [20103]={ + + }, + [20104]={ + + }, + [20105]={ + + }, + [20106]={ + + }, + [20107]={ + + }, + [20201]={ + + }, + [20202]={ + + }, + [20203]={ + + }, + [20204]={ + + }, + [20205]={ + + }, + [20206]={ + + }, + [20207]={ + + }, + [20301]={ + + }, + [20302]={ + + }, + [20303]={ + + }, + [20304]={ + + }, + [20305]={ + + }, + [20306]={ + + }, + [20307]={ + + }, + [30001]={ + + }, + [30002]={ + + }, + [30003]={ + + }, + [30004]={ + + }, + [30005]={ + + }, + [30006]={ + + }, + [30007]={ + + }, + [30101]={ + + }, + [30102]={ + + }, + [30103]={ + + }, + [30104]={ + + }, + [30105]={ + + }, + [30106]={ + + }, + [30107]={ + + }, + [30201]={ + + }, + [30202]={ + + }, + [30203]={ + + }, + [30204]={ + + }, + [30205]={ + + }, + [30206]={ + + }, + [30207]={ + + }, + [30301]={ + + }, + [30302]={ + + }, + [30303]={ + + }, + [30304]={ + + }, + [30305]={ + + }, + [30306]={ + + }, + [30307]={ + + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/equip.lua.meta b/lua/app/config/strings/th/equip.lua.meta new file mode 100644 index 00000000..191729df --- /dev/null +++ b/lua/app/config/strings/th/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5f0e455df1312d34abf91b71ce5a852c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/global.lua b/lua/app/config/strings/th/global.lua new file mode 100644 index 00000000..8d7b7871 --- /dev/null +++ b/lua/app/config/strings/th/global.lua @@ -0,0 +1,5 @@ +local localization_global = +{ +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/th/global.lua.meta b/lua/app/config/strings/th/global.lua.meta new file mode 100644 index 00000000..e2fcfbcf --- /dev/null +++ b/lua/app/config/strings/th/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bf5c805ec465eaa408e65e3b16c3b280 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/hero.lua b/lua/app/config/strings/th/hero.lua new file mode 100644 index 00000000..01c2c0ba --- /dev/null +++ b/lua/app/config/strings/th/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/hero.lua.meta b/lua/app/config/strings/th/hero.lua.meta new file mode 100644 index 00000000..f4a016d1 --- /dev/null +++ b/lua/app/config/strings/th/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bdecd13989c9f414f85258742fa9c534 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/item.lua b/lua/app/config/strings/th/item.lua new file mode 100644 index 00000000..d252911c --- /dev/null +++ b/lua/app/config/strings/th/item.lua @@ -0,0 +1,87 @@ +local item = { + [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]={ + + } +} +local config = { +data=item,count=27 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/item.lua.meta b/lua/app/config/strings/th/item.lua.meta new file mode 100644 index 00000000..cd1ce713 --- /dev/null +++ b/lua/app/config/strings/th/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e5fdf5d2e0cae864b87a8a6635657467 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/legacy.lua b/lua/app/config/strings/th/legacy.lua new file mode 100644 index 00000000..99d9f42a --- /dev/null +++ b/lua/app/config/strings/th/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + + }, + [40002]={ + + }, + [40003]={ + + }, + [40004]={ + + }, + [40005]={ + + }, + [40101]={ + + }, + [40102]={ + + }, + [40103]={ + + }, + [40104]={ + + }, + [40105]={ + + }, + [40201]={ + + }, + [40202]={ + + }, + [40203]={ + + }, + [40204]={ + + }, + [40205]={ + + }, + [40301]={ + + }, + [40302]={ + + }, + [40303]={ + + }, + [40304]={ + + }, + [40305]={ + + }, + [40401]={ + + }, + [40402]={ + + }, + [40403]={ + + }, + [40404]={ + + }, + [40405]={ + + }, + [40501]={ + + }, + [40502]={ + + }, + [40503]={ + + }, + [40504]={ + + }, + [40505]={ + + }, + [40601]={ + + }, + [40602]={ + + }, + [40603]={ + + }, + [40604]={ + + }, + [40605]={ + + }, + [40606]={ + + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/legacy.lua.meta b/lua/app/config/strings/th/legacy.lua.meta new file mode 100644 index 00000000..27230d72 --- /dev/null +++ b/lua/app/config/strings/th/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 07c30e2d6adcebf41a054b14f48d5bac +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/mail.lua b/lua/app/config/strings/th/mail.lua new file mode 100644 index 00000000..a4d974e0 --- /dev/null +++ b/lua/app/config/strings/th/mail.lua @@ -0,0 +1,21 @@ +local mail = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/mail.lua.meta b/lua/app/config/strings/th/mail.lua.meta new file mode 100644 index 00000000..c601c9c0 --- /dev/null +++ b/lua/app/config/strings/th/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7425db1ec23232147840260443c7b240 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/mall_act.lua b/lua/app/config/strings/th/mall_act.lua new file mode 100644 index 00000000..960b5c9c --- /dev/null +++ b/lua/app/config/strings/th/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + + }, + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [20001]={ + + }, + [30001]={ + + }, + [40001]={ + + }, + [60001]={ + + }, + [60002]={ + + }, + [70001]={ + + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/mall_act.lua.meta b/lua/app/config/strings/th/mall_act.lua.meta new file mode 100644 index 00000000..baf633a6 --- /dev/null +++ b/lua/app/config/strings/th/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d63ab11613d9e654191331290cf1170f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/mall_daily.lua b/lua/app/config/strings/th/mall_daily.lua new file mode 100644 index 00000000..3a3f154a --- /dev/null +++ b/lua/app/config/strings/th/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/mall_daily.lua.meta b/lua/app/config/strings/th/mall_daily.lua.meta new file mode 100644 index 00000000..28d515ee --- /dev/null +++ b/lua/app/config/strings/th/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 164789d62ae4dd942b0bb564fbca99ec +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/mall_treasure.lua b/lua/app/config/strings/th/mall_treasure.lua new file mode 100644 index 00000000..b446b540 --- /dev/null +++ b/lua/app/config/strings/th/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/mall_treasure.lua.meta b/lua/app/config/strings/th/mall_treasure.lua.meta new file mode 100644 index 00000000..53fe09b0 --- /dev/null +++ b/lua/app/config/strings/th/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c6d5d53856aa9dc468a3812cebe639ec +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/mastery.lua b/lua/app/config/strings/th/mastery.lua new file mode 100644 index 00000000..84521b29 --- /dev/null +++ b/lua/app/config/strings/th/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/mastery.lua.meta b/lua/app/config/strings/th/mastery.lua.meta new file mode 100644 index 00000000..4dfee8f1 --- /dev/null +++ b/lua/app/config/strings/th/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 48a5c2e497e58e1469093b0029cf69a2 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/mine_research.lua b/lua/app/config/strings/th/mine_research.lua new file mode 100644 index 00000000..f5198ea1 --- /dev/null +++ b/lua/app/config/strings/th/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [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]={ + + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/mine_research.lua.meta b/lua/app/config/strings/th/mine_research.lua.meta new file mode 100644 index 00000000..c81b6da3 --- /dev/null +++ b/lua/app/config/strings/th/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bc5f32a67f0134340ab2959e09c75315 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/monster_base.lua b/lua/app/config/strings/th/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/th/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/monster_base.lua.meta b/lua/app/config/strings/th/monster_base.lua.meta new file mode 100644 index 00000000..40a54744 --- /dev/null +++ b/lua/app/config/strings/th/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3fbd8cb7c870a9042bdc9231cf20511b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/runes.lua b/lua/app/config/strings/th/runes.lua new file mode 100644 index 00000000..9466cf77 --- /dev/null +++ b/lua/app/config/strings/th/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + + }, + [50102]={ + + }, + [50103]={ + + }, + [50104]={ + + }, + [50201]={ + + }, + [50202]={ + + }, + [50203]={ + + }, + [50204]={ + + }, + [50301]={ + + }, + [50302]={ + + }, + [50303]={ + + }, + [50304]={ + + }, + [50401]={ + + }, + [50402]={ + + }, + [50403]={ + + }, + [50404]={ + + }, + [50501]={ + + }, + [50502]={ + + }, + [50503]={ + + }, + [50504]={ + + }, + [50601]={ + + }, + [50602]={ + + }, + [50603]={ + + }, + [50604]={ + + }, + [50701]={ + + }, + [50702]={ + + }, + [50703]={ + + }, + [50704]={ + + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/runes.lua.meta b/lua/app/config/strings/th/runes.lua.meta new file mode 100644 index 00000000..ae219651 --- /dev/null +++ b/lua/app/config/strings/th/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c16a1251d7213c945a6609da9ce3f7d4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/skill.lua b/lua/app/config/strings/th/skill.lua new file mode 100644 index 00000000..4b430b5b --- /dev/null +++ b/lua/app/config/strings/th/skill.lua @@ -0,0 +1,267 @@ +local skill = { + [11011]={ + + }, + [11012]={ + + }, + [11013]={ + + }, + [21011]={ + + }, + [21014]={ + + }, + [21015]={ + + }, + [31011]={ + + }, + [31014]={ + + }, + [31015]={ + + }, + [41011]={ + + }, + [41014]={ + + }, + [41015]={ + + }, + [400011]={ + + }, + [400021]={ + + }, + [400031]={ + + }, + [400041]={ + + }, + [400051]={ + + }, + [401011]={ + + }, + [401021]={ + + }, + [401031]={ + + }, + [401041]={ + + }, + [401051]={ + + }, + [402011]={ + + }, + [402021]={ + + }, + [402031]={ + + }, + [402041]={ + + }, + [402051]={ + + }, + [403011]={ + + }, + [403021]={ + + }, + [403031]={ + + }, + [403041]={ + + }, + [403051]={ + + }, + [404011]={ + + }, + [404021]={ + + }, + [404031]={ + + }, + [404041]={ + + }, + [404051]={ + + }, + [405011]={ + + }, + [405021]={ + + }, + [405031]={ + + }, + [405041]={ + + }, + [405051]={ + + }, + [406011]={ + + }, + [406021]={ + + }, + [406031]={ + + }, + [406041]={ + + }, + [406051]={ + + }, + [406061]={ + + }, + [501011]={ + + }, + [501021]={ + + }, + [501031]={ + + }, + [501041]={ + + }, + [502011]={ + + }, + [502021]={ + + }, + [502022]={ + + }, + [502031]={ + + }, + [502041]={ + + }, + [503011]={ + + }, + [503021]={ + + }, + [503031]={ + + }, + [503041]={ + + }, + [504011]={ + + }, + [504021]={ + + }, + [504031]={ + + }, + [504041]={ + + }, + [505011]={ + + }, + [505021]={ + + }, + [505031]={ + + }, + [505041]={ + + }, + [506011]={ + + }, + [506021]={ + + }, + [506031]={ + + }, + [506041]={ + + }, + [507011]={ + + }, + [507021]={ + + }, + [507031]={ + + }, + [507041]={ + + }, + [600011]={ + + }, + [600021]={ + + }, + [600031]={ + + }, + [600041]={ + + }, + [600051]={ + + }, + [600061]={ + + }, + [600071]={ + + }, + [600081]={ + + }, + [600091]={ + + }, + [600101]={ + + } +} +local config = { +data=skill,count=87 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/skill.lua.meta b/lua/app/config/strings/th/skill.lua.meta new file mode 100644 index 00000000..45defd5b --- /dev/null +++ b/lua/app/config/strings/th/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3ed57751e56b8b94a91105bb3970c7a9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/task.lua b/lua/app/config/strings/th/task.lua new file mode 100644 index 00000000..2f9b2cad --- /dev/null +++ b/lua/app/config/strings/th/task.lua @@ -0,0 +1,99 @@ +local task = { + [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]={ + + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/task.lua.meta b/lua/app/config/strings/th/task.lua.meta new file mode 100644 index 00000000..d8e97804 --- /dev/null +++ b/lua/app/config/strings/th/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 192ec2f30783a7a4ba095c1ef0cdfe54 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/task_daily.lua b/lua/app/config/strings/th/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/th/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/task_daily.lua.meta b/lua/app/config/strings/th/task_daily.lua.meta new file mode 100644 index 00000000..9e049881 --- /dev/null +++ b/lua/app/config/strings/th/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1a2423ab617c83e4db2ab48a3ac3562a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/tutorial.lua b/lua/app/config/strings/th/tutorial.lua new file mode 100644 index 00000000..21efc841 --- /dev/null +++ b/lua/app/config/strings/th/tutorial.lua @@ -0,0 +1,66 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + + }, + ["TUTORIAL_TXT_2"]={ + + }, + ["TUTORIAL_TXT_3"]={ + + }, + ["TUTORIAL_TXT_4"]={ + + }, + ["TUTORIAL_TXT_5"]={ + + }, + ["TUTORIAL_TXT_6"]={ + + }, + ["TUTORIAL_TXT_7"]={ + + }, + ["TUTORIAL_TXT_8"]={ + + }, + ["TUTORIAL_TXT_9"]={ + + }, + ["TUTORIAL_TXT_10"]={ + + }, + ["TUTORIAL_TXT_11"]={ + + }, + ["TUTORIAL_TXT_12"]={ + + }, + ["TUTORIAL_TXT_13"]={ + + }, + ["TUTORIAL_TXT_14"]={ + + }, + ["TUTORIAL_TXT_15"]={ + + }, + ["TUTORIAL_TXT_16"]={ + + }, + ["TUTORIAL_TXT_17"]={ + + }, + ["TUTORIAL_TXT_18"]={ + + }, + ["TUTORIAL_TXT_19"]={ + + }, + ["TUTORIAL_TXT_20"]={ + + } +} +local config = { +data=tutorial,count=20 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/tutorial.lua.meta b/lua/app/config/strings/th/tutorial.lua.meta new file mode 100644 index 00000000..eff7a94f --- /dev/null +++ b/lua/app/config/strings/th/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 435c0e0eb4fc921438b6c0e63f70a048 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/th/tutorialtask.lua b/lua/app/config/strings/th/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/th/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/th/tutorialtask.lua.meta b/lua/app/config/strings/th/tutorialtask.lua.meta new file mode 100644 index 00000000..9f2546a6 --- /dev/null +++ b/lua/app/config/strings/th/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f210a741cb51ad14e8949ef618eba80b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi.meta b/lua/app/config/strings/vi.meta new file mode 100644 index 00000000..e4e56036 --- /dev/null +++ b/lua/app/config/strings/vi.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8c3d302bbaf913440918be52a0379297 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/vi/act_battle_pass_task.lua b/lua/app/config/strings/vi/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/vi/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/act_battle_pass_task.lua.meta b/lua/app/config/strings/vi/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..d5014107 --- /dev/null +++ b/lua/app/config/strings/vi/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 615c17c4dec30a04d8fc4c6237bca79f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/act_fund.lua b/lua/app/config/strings/vi/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/vi/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/act_fund.lua.meta b/lua/app/config/strings/vi/act_fund.lua.meta new file mode 100644 index 00000000..3e47448f --- /dev/null +++ b/lua/app/config/strings/vi/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8d8d4c41c0b60e44d95f974bbc234f51 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/act_sevenday_quest.lua b/lua/app/config/strings/vi/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/vi/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/act_sevenday_quest.lua.meta b/lua/app/config/strings/vi/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..af77e20e --- /dev/null +++ b/lua/app/config/strings/vi/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f097b1f35ac0bfe4593060fac9faf9d9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/arena.lua b/lua/app/config/strings/vi/arena.lua new file mode 100644 index 00000000..f6b81b9f --- /dev/null +++ b/lua/app/config/strings/vi/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/arena.lua.meta b/lua/app/config/strings/vi/arena.lua.meta new file mode 100644 index 00000000..980a4a04 --- /dev/null +++ b/lua/app/config/strings/vi/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bbd70ef286866cd41a6dc5b91ad34ac9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/attr.lua b/lua/app/config/strings/vi/attr.lua new file mode 100644 index 00000000..cc681634 --- /dev/null +++ b/lua/app/config/strings/vi/attr.lua @@ -0,0 +1,141 @@ +local attr = { + [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=attr,count=45 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/attr.lua.meta b/lua/app/config/strings/vi/attr.lua.meta new file mode 100644 index 00000000..8ee12c99 --- /dev/null +++ b/lua/app/config/strings/vi/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0a4e32958b5339749bb0fe06fa5a5529 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/collection.lua b/lua/app/config/strings/vi/collection.lua new file mode 100644 index 00000000..06cecc89 --- /dev/null +++ b/lua/app/config/strings/vi/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/collection.lua.meta b/lua/app/config/strings/vi/collection.lua.meta new file mode 100644 index 00000000..60818a47 --- /dev/null +++ b/lua/app/config/strings/vi/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4f03b79fe37e869489b4f7d144514676 +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 new file mode 100644 index 00000000..8d0d286d --- /dev/null +++ b/lua/app/config/strings/vi/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10007]={ + + }, + [10008]={ + + }, + [10009]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10107]={ + + }, + [10108]={ + + }, + [10109]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10203]={ + + }, + [10204]={ + + }, + [10205]={ + + }, + [10206]={ + + }, + [10207]={ + + }, + [10208]={ + + }, + [10209]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [10303]={ + + }, + [10304]={ + + }, + [10305]={ + + }, + [10306]={ + + }, + [10307]={ + + }, + [10308]={ + + }, + [10309]={ + + }, + [20001]={ + + }, + [20002]={ + + }, + [20003]={ + + }, + [20004]={ + + }, + [20005]={ + + }, + [20006]={ + + }, + [20007]={ + + }, + [20101]={ + + }, + [20102]={ + + }, + [20103]={ + + }, + [20104]={ + + }, + [20105]={ + + }, + [20106]={ + + }, + [20107]={ + + }, + [20201]={ + + }, + [20202]={ + + }, + [20203]={ + + }, + [20204]={ + + }, + [20205]={ + + }, + [20206]={ + + }, + [20207]={ + + }, + [20301]={ + + }, + [20302]={ + + }, + [20303]={ + + }, + [20304]={ + + }, + [20305]={ + + }, + [20306]={ + + }, + [20307]={ + + }, + [30001]={ + + }, + [30002]={ + + }, + [30003]={ + + }, + [30004]={ + + }, + [30005]={ + + }, + [30006]={ + + }, + [30007]={ + + }, + [30101]={ + + }, + [30102]={ + + }, + [30103]={ + + }, + [30104]={ + + }, + [30105]={ + + }, + [30106]={ + + }, + [30107]={ + + }, + [30201]={ + + }, + [30202]={ + + }, + [30203]={ + + }, + [30204]={ + + }, + [30205]={ + + }, + [30206]={ + + }, + [30207]={ + + }, + [30301]={ + + }, + [30302]={ + + }, + [30303]={ + + }, + [30304]={ + + }, + [30305]={ + + }, + [30306]={ + + }, + [30307]={ + + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/equip.lua.meta b/lua/app/config/strings/vi/equip.lua.meta new file mode 100644 index 00000000..4ff6dcc0 --- /dev/null +++ b/lua/app/config/strings/vi/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8b5e3601547ea3b4aae89eba82d3c489 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/global.lua b/lua/app/config/strings/vi/global.lua new file mode 100644 index 00000000..8d7b7871 --- /dev/null +++ b/lua/app/config/strings/vi/global.lua @@ -0,0 +1,5 @@ +local localization_global = +{ +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/vi/global.lua.meta b/lua/app/config/strings/vi/global.lua.meta new file mode 100644 index 00000000..87f40563 --- /dev/null +++ b/lua/app/config/strings/vi/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e5e6ade4d74ce4f498a233c6fddca93a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/hero.lua b/lua/app/config/strings/vi/hero.lua new file mode 100644 index 00000000..01c2c0ba --- /dev/null +++ b/lua/app/config/strings/vi/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/hero.lua.meta b/lua/app/config/strings/vi/hero.lua.meta new file mode 100644 index 00000000..7d435110 --- /dev/null +++ b/lua/app/config/strings/vi/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1ed0f958eb6ea184a9b14adec66ab3ee +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/item.lua b/lua/app/config/strings/vi/item.lua new file mode 100644 index 00000000..65e8f499 --- /dev/null +++ b/lua/app/config/strings/vi/item.lua @@ -0,0 +1,89 @@ +local item = { + [1]={ + ["name"]="Xu", + ["desc"]="Xu thông dụng, nhiều nơi đều dùng" + }, + [2]={ + ["name"]="Kim Cương", + ["desc"]="Xu hiếm, có thể mua hầu hết vật phẩm" + }, + [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]={ + + } +} +local config = { +data=item,count=27 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/item.lua.meta b/lua/app/config/strings/vi/item.lua.meta new file mode 100644 index 00000000..a0e779b5 --- /dev/null +++ b/lua/app/config/strings/vi/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 288534de92ff50648aa61e4a7dd3af31 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/legacy.lua b/lua/app/config/strings/vi/legacy.lua new file mode 100644 index 00000000..99d9f42a --- /dev/null +++ b/lua/app/config/strings/vi/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + + }, + [40002]={ + + }, + [40003]={ + + }, + [40004]={ + + }, + [40005]={ + + }, + [40101]={ + + }, + [40102]={ + + }, + [40103]={ + + }, + [40104]={ + + }, + [40105]={ + + }, + [40201]={ + + }, + [40202]={ + + }, + [40203]={ + + }, + [40204]={ + + }, + [40205]={ + + }, + [40301]={ + + }, + [40302]={ + + }, + [40303]={ + + }, + [40304]={ + + }, + [40305]={ + + }, + [40401]={ + + }, + [40402]={ + + }, + [40403]={ + + }, + [40404]={ + + }, + [40405]={ + + }, + [40501]={ + + }, + [40502]={ + + }, + [40503]={ + + }, + [40504]={ + + }, + [40505]={ + + }, + [40601]={ + + }, + [40602]={ + + }, + [40603]={ + + }, + [40604]={ + + }, + [40605]={ + + }, + [40606]={ + + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/legacy.lua.meta b/lua/app/config/strings/vi/legacy.lua.meta new file mode 100644 index 00000000..e53550e6 --- /dev/null +++ b/lua/app/config/strings/vi/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2ed7a9ed0df0de745b6cd857efb8ec47 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/mail.lua b/lua/app/config/strings/vi/mail.lua new file mode 100644 index 00000000..a4d974e0 --- /dev/null +++ b/lua/app/config/strings/vi/mail.lua @@ -0,0 +1,21 @@ +local mail = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/mail.lua.meta b/lua/app/config/strings/vi/mail.lua.meta new file mode 100644 index 00000000..5495a1c3 --- /dev/null +++ b/lua/app/config/strings/vi/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e0c7a462b20cbb243a16219a1bbafc28 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/mall_act.lua b/lua/app/config/strings/vi/mall_act.lua new file mode 100644 index 00000000..960b5c9c --- /dev/null +++ b/lua/app/config/strings/vi/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + + }, + [10001]={ + + }, + [10002]={ + + }, + [10003]={ + + }, + [10004]={ + + }, + [10005]={ + + }, + [10006]={ + + }, + [10101]={ + + }, + [10102]={ + + }, + [10103]={ + + }, + [10104]={ + + }, + [10105]={ + + }, + [10106]={ + + }, + [10201]={ + + }, + [10202]={ + + }, + [10301]={ + + }, + [10302]={ + + }, + [20001]={ + + }, + [30001]={ + + }, + [40001]={ + + }, + [60001]={ + + }, + [60002]={ + + }, + [70001]={ + + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/mall_act.lua.meta b/lua/app/config/strings/vi/mall_act.lua.meta new file mode 100644 index 00000000..1762ed54 --- /dev/null +++ b/lua/app/config/strings/vi/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0836448406a2d5a4db768fc33f2db0a1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/mall_daily.lua b/lua/app/config/strings/vi/mall_daily.lua new file mode 100644 index 00000000..3a3f154a --- /dev/null +++ b/lua/app/config/strings/vi/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/mall_daily.lua.meta b/lua/app/config/strings/vi/mall_daily.lua.meta new file mode 100644 index 00000000..16d2bc59 --- /dev/null +++ b/lua/app/config/strings/vi/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 136034076266b85448d27a68e92aa1e8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/mall_treasure.lua b/lua/app/config/strings/vi/mall_treasure.lua new file mode 100644 index 00000000..b446b540 --- /dev/null +++ b/lua/app/config/strings/vi/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/mall_treasure.lua.meta b/lua/app/config/strings/vi/mall_treasure.lua.meta new file mode 100644 index 00000000..0a23266a --- /dev/null +++ b/lua/app/config/strings/vi/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 611d468981f6cb54ea5c8c7cd4d624df +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/mastery.lua b/lua/app/config/strings/vi/mastery.lua new file mode 100644 index 00000000..84521b29 --- /dev/null +++ b/lua/app/config/strings/vi/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/mastery.lua.meta b/lua/app/config/strings/vi/mastery.lua.meta new file mode 100644 index 00000000..25f657a2 --- /dev/null +++ b/lua/app/config/strings/vi/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3b3df43228b707f468114a05ece33319 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/mine_research.lua b/lua/app/config/strings/vi/mine_research.lua new file mode 100644 index 00000000..f5198ea1 --- /dev/null +++ b/lua/app/config/strings/vi/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [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]={ + + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/mine_research.lua.meta b/lua/app/config/strings/vi/mine_research.lua.meta new file mode 100644 index 00000000..a8515c15 --- /dev/null +++ b/lua/app/config/strings/vi/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9684b49d78f8cdd40ac06235630f5001 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/monster_base.lua b/lua/app/config/strings/vi/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/vi/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/monster_base.lua.meta b/lua/app/config/strings/vi/monster_base.lua.meta new file mode 100644 index 00000000..3ffd3cf6 --- /dev/null +++ b/lua/app/config/strings/vi/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f605a6f4c3930044d81a9b274448782b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/runes.lua b/lua/app/config/strings/vi/runes.lua new file mode 100644 index 00000000..9466cf77 --- /dev/null +++ b/lua/app/config/strings/vi/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + + }, + [50102]={ + + }, + [50103]={ + + }, + [50104]={ + + }, + [50201]={ + + }, + [50202]={ + + }, + [50203]={ + + }, + [50204]={ + + }, + [50301]={ + + }, + [50302]={ + + }, + [50303]={ + + }, + [50304]={ + + }, + [50401]={ + + }, + [50402]={ + + }, + [50403]={ + + }, + [50404]={ + + }, + [50501]={ + + }, + [50502]={ + + }, + [50503]={ + + }, + [50504]={ + + }, + [50601]={ + + }, + [50602]={ + + }, + [50603]={ + + }, + [50604]={ + + }, + [50701]={ + + }, + [50702]={ + + }, + [50703]={ + + }, + [50704]={ + + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/runes.lua.meta b/lua/app/config/strings/vi/runes.lua.meta new file mode 100644 index 00000000..6f486335 --- /dev/null +++ b/lua/app/config/strings/vi/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e0e25932f12dc4f4ca2cdb3b314bdf10 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/skill.lua b/lua/app/config/strings/vi/skill.lua new file mode 100644 index 00000000..4b430b5b --- /dev/null +++ b/lua/app/config/strings/vi/skill.lua @@ -0,0 +1,267 @@ +local skill = { + [11011]={ + + }, + [11012]={ + + }, + [11013]={ + + }, + [21011]={ + + }, + [21014]={ + + }, + [21015]={ + + }, + [31011]={ + + }, + [31014]={ + + }, + [31015]={ + + }, + [41011]={ + + }, + [41014]={ + + }, + [41015]={ + + }, + [400011]={ + + }, + [400021]={ + + }, + [400031]={ + + }, + [400041]={ + + }, + [400051]={ + + }, + [401011]={ + + }, + [401021]={ + + }, + [401031]={ + + }, + [401041]={ + + }, + [401051]={ + + }, + [402011]={ + + }, + [402021]={ + + }, + [402031]={ + + }, + [402041]={ + + }, + [402051]={ + + }, + [403011]={ + + }, + [403021]={ + + }, + [403031]={ + + }, + [403041]={ + + }, + [403051]={ + + }, + [404011]={ + + }, + [404021]={ + + }, + [404031]={ + + }, + [404041]={ + + }, + [404051]={ + + }, + [405011]={ + + }, + [405021]={ + + }, + [405031]={ + + }, + [405041]={ + + }, + [405051]={ + + }, + [406011]={ + + }, + [406021]={ + + }, + [406031]={ + + }, + [406041]={ + + }, + [406051]={ + + }, + [406061]={ + + }, + [501011]={ + + }, + [501021]={ + + }, + [501031]={ + + }, + [501041]={ + + }, + [502011]={ + + }, + [502021]={ + + }, + [502022]={ + + }, + [502031]={ + + }, + [502041]={ + + }, + [503011]={ + + }, + [503021]={ + + }, + [503031]={ + + }, + [503041]={ + + }, + [504011]={ + + }, + [504021]={ + + }, + [504031]={ + + }, + [504041]={ + + }, + [505011]={ + + }, + [505021]={ + + }, + [505031]={ + + }, + [505041]={ + + }, + [506011]={ + + }, + [506021]={ + + }, + [506031]={ + + }, + [506041]={ + + }, + [507011]={ + + }, + [507021]={ + + }, + [507031]={ + + }, + [507041]={ + + }, + [600011]={ + + }, + [600021]={ + + }, + [600031]={ + + }, + [600041]={ + + }, + [600051]={ + + }, + [600061]={ + + }, + [600071]={ + + }, + [600081]={ + + }, + [600091]={ + + }, + [600101]={ + + } +} +local config = { +data=skill,count=87 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/skill.lua.meta b/lua/app/config/strings/vi/skill.lua.meta new file mode 100644 index 00000000..8f80cb5b --- /dev/null +++ b/lua/app/config/strings/vi/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: df14f4797c7143f47a885954eafdf3d0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/task.lua b/lua/app/config/strings/vi/task.lua new file mode 100644 index 00000000..2f9b2cad --- /dev/null +++ b/lua/app/config/strings/vi/task.lua @@ -0,0 +1,99 @@ +local task = { + [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]={ + + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/task.lua.meta b/lua/app/config/strings/vi/task.lua.meta new file mode 100644 index 00000000..424d9002 --- /dev/null +++ b/lua/app/config/strings/vi/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ae625d8a7c8f67440bce3bcf504ea30b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/task_daily.lua b/lua/app/config/strings/vi/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/vi/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/task_daily.lua.meta b/lua/app/config/strings/vi/task_daily.lua.meta new file mode 100644 index 00000000..f0605ee4 --- /dev/null +++ b/lua/app/config/strings/vi/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f20d70998b0951f48a3cc5f3346c79b6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/tutorial.lua b/lua/app/config/strings/vi/tutorial.lua new file mode 100644 index 00000000..21efc841 --- /dev/null +++ b/lua/app/config/strings/vi/tutorial.lua @@ -0,0 +1,66 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + + }, + ["TUTORIAL_TXT_2"]={ + + }, + ["TUTORIAL_TXT_3"]={ + + }, + ["TUTORIAL_TXT_4"]={ + + }, + ["TUTORIAL_TXT_5"]={ + + }, + ["TUTORIAL_TXT_6"]={ + + }, + ["TUTORIAL_TXT_7"]={ + + }, + ["TUTORIAL_TXT_8"]={ + + }, + ["TUTORIAL_TXT_9"]={ + + }, + ["TUTORIAL_TXT_10"]={ + + }, + ["TUTORIAL_TXT_11"]={ + + }, + ["TUTORIAL_TXT_12"]={ + + }, + ["TUTORIAL_TXT_13"]={ + + }, + ["TUTORIAL_TXT_14"]={ + + }, + ["TUTORIAL_TXT_15"]={ + + }, + ["TUTORIAL_TXT_16"]={ + + }, + ["TUTORIAL_TXT_17"]={ + + }, + ["TUTORIAL_TXT_18"]={ + + }, + ["TUTORIAL_TXT_19"]={ + + }, + ["TUTORIAL_TXT_20"]={ + + } +} +local config = { +data=tutorial,count=20 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/tutorial.lua.meta b/lua/app/config/strings/vi/tutorial.lua.meta new file mode 100644 index 00000000..b70d0c4d --- /dev/null +++ b/lua/app/config/strings/vi/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5104f547c5b45e54684850870c1dfc07 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/vi/tutorialtask.lua b/lua/app/config/strings/vi/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/vi/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/vi/tutorialtask.lua.meta b/lua/app/config/strings/vi/tutorialtask.lua.meta new file mode 100644 index 00000000..370da1c9 --- /dev/null +++ b/lua/app/config/strings/vi/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5de215dba2d12994eb07684deeeb3ae8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh.meta b/lua/app/config/strings/zh.meta new file mode 100644 index 00000000..01d69ba0 --- /dev/null +++ b/lua/app/config/strings/zh.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 25890a1584388034980a87973411bc9a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/config/strings/zh/act_battle_pass_task.lua b/lua/app/config/strings/zh/act_battle_pass_task.lua new file mode 100644 index 00000000..039082da --- /dev/null +++ b/lua/app/config/strings/zh/act_battle_pass_task.lua @@ -0,0 +1,27 @@ +local act_battle_pass_task = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + } +} +local config = { +data=act_battle_pass_task,count=7 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/act_battle_pass_task.lua.meta b/lua/app/config/strings/zh/act_battle_pass_task.lua.meta new file mode 100644 index 00000000..7543a842 --- /dev/null +++ b/lua/app/config/strings/zh/act_battle_pass_task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b9ddcebb94496a749a6b5e0b3bdef56c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/act_fund.lua b/lua/app/config/strings/zh/act_fund.lua new file mode 100644 index 00000000..561fb514 --- /dev/null +++ b/lua/app/config/strings/zh/act_fund.lua @@ -0,0 +1,12 @@ +local act_fund = { + [60001]={ + + }, + [60002]={ + + } +} +local config = { +data=act_fund,count=2 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/act_fund.lua.meta b/lua/app/config/strings/zh/act_fund.lua.meta new file mode 100644 index 00000000..5129683e --- /dev/null +++ b/lua/app/config/strings/zh/act_fund.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d80ddbe8bb2e36b42bb73957523b4ea0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/act_sevenday_quest.lua b/lua/app/config/strings/zh/act_sevenday_quest.lua new file mode 100644 index 00000000..2541d534 --- /dev/null +++ b/lua/app/config/strings/zh/act_sevenday_quest.lua @@ -0,0 +1,216 @@ +local act_sevenday_quest = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + } +} +local config = { +data=act_sevenday_quest,count=70 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/act_sevenday_quest.lua.meta b/lua/app/config/strings/zh/act_sevenday_quest.lua.meta new file mode 100644 index 00000000..692ab76c --- /dev/null +++ b/lua/app/config/strings/zh/act_sevenday_quest.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 383f4fefea2102945a6697686185aeb1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/arena.lua b/lua/app/config/strings/zh/arena.lua new file mode 100644 index 00000000..d106487f --- /dev/null +++ b/lua/app/config/strings/zh/arena.lua @@ -0,0 +1,78 @@ +local arena = { + [1]={ + ["desc"]="見習勇者III" + }, + [2]={ + ["desc"]="見習勇者II" + }, + [3]={ + ["desc"]="見習勇者I" + }, + [4]={ + ["desc"]="正式勇士III" + }, + [5]={ + ["desc"]="正式勇士II" + }, + [6]={ + ["desc"]="正式勇士I" + }, + [7]={ + ["desc"]="白銀騎士III" + }, + [8]={ + ["desc"]="白銀騎士II" + }, + [9]={ + ["desc"]="白銀騎士I" + }, + [10]={ + ["desc"]="黃金騎士III" + }, + [11]={ + ["desc"]="黃金騎士II" + }, + [12]={ + ["desc"]="黃金騎士I" + }, + [13]={ + ["desc"]="戰爭統帥III" + }, + [14]={ + ["desc"]="戰爭統帥II" + }, + [15]={ + ["desc"]="戰爭統帥I" + }, + [16]={ + ["desc"]="英雄之王III" + }, + [17]={ + ["desc"]="英雄之王II" + }, + [18]={ + ["desc"]="英雄之王I" + }, + [19]={ + ["desc"]="傳奇主宰III" + }, + [20]={ + ["desc"]="傳奇主宰II" + }, + [21]={ + ["desc"]="傳奇主宰I" + }, + [22]={ + ["desc"]="戰神III" + }, + [23]={ + ["desc"]="戰神II" + }, + [24]={ + ["desc"]="戰神I" + } +} +local config = { +data=arena,count=24 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/arena.lua.meta b/lua/app/config/strings/zh/arena.lua.meta new file mode 100644 index 00000000..d72fc5d7 --- /dev/null +++ b/lua/app/config/strings/zh/arena.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c90748c5fba2c6f459d2c03b274cfc63 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/attr.lua b/lua/app/config/strings/zh/attr.lua new file mode 100644 index 00000000..3fdc9dc3 --- /dev/null +++ b/lua/app/config/strings/zh/attr.lua @@ -0,0 +1,105 @@ +local attr = { + [1]={ + ["name"]="生命" + }, + [2]={ + ["name"]="攻擊" + }, + [3]={ + ["name"]="暴擊率" + }, + [4]={ + ["name"]="暴擊傷害" + }, + [5]={ + ["name"]="傷害減免" + }, + [6]={ + ["name"]="攻擊" + }, + [7]={ + ["name"]="攻擊" + }, + [8]={ + ["name"]="攻擊" + }, + [9]={ + ["name"]="攻擊" + }, + [10]={ + ["name"]="攻擊" + }, + [11]={ + ["name"]="攻擊" + }, + [12]={ + ["name"]="攻擊" + }, + [13]={ + ["name"]="攻擊" + }, + [14]={ + ["name"]="攻擊" + }, + [15]={ + ["name"]="生命" + }, + [16]={ + ["name"]="生命" + }, + [17]={ + ["name"]="生命" + }, + [18]={ + ["name"]="生命" + }, + [19]={ + ["name"]="生命" + }, + [20]={ + ["name"]="生命" + }, + [21]={ + ["name"]="生命" + }, + [22]={ + ["name"]="傷害" + }, + [23]={ + ["name"]="閃避" + }, + [24]={ + ["name"]="金幣獲取" + }, + [25]={ + ["name"]="技能傷害" + }, + [26]={ + ["name"]="普攻傷害" + }, + [27]={ + ["name"]="放置獎勵" + }, + [28]={ + ["name"]="火把回復速度" + }, + [29]={ + ["name"]="火把持有上限" + }, + [30]={ + ["name"]="知識獲取" + }, + [31]={ + ["name"]="研究速度" + }, + [32]={ + ["name"]="擊飛傷害" + }, + [33]={ + ["name"]="擊飛數量" + } +} +local config = { +data=attr,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/attr.lua.meta b/lua/app/config/strings/zh/attr.lua.meta new file mode 100644 index 00000000..bb5256b5 --- /dev/null +++ b/lua/app/config/strings/zh/attr.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9180adbd235fc1c44aa08ebfb2a421f9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/collection.lua b/lua/app/config/strings/zh/collection.lua new file mode 100644 index 00000000..48adc137 --- /dev/null +++ b/lua/app/config/strings/zh/collection.lua @@ -0,0 +1,96 @@ +local collection = { + [1]={ + ["name"]="新的征途" + }, + [2]={ + ["name"]="刀槍可入" + }, + [3]={ + ["name"]="製杖大師" + }, + [4]={ + ["name"]="精雕細琢" + }, + [5]={ + ["name"]="一點寒芒" + }, + [6]={ + ["name"]="光與陰影" + }, + [7]={ + ["name"]="自然之力" + }, + [8]={ + ["name"]="狂風驟雨" + }, + [9]={ + ["name"]="刺客信仰" + }, + [10]={ + ["name"]="冰火交響" + }, + [101]={ + ["name"]="粗布麻衣" + }, + [102]={ + ["name"]="狩獵開始" + }, + [103]={ + ["name"]="精緻生活" + }, + [104]={ + ["name"]="為戰而生" + }, + [105]={ + ["name"]="守護騎士" + }, + [106]={ + ["name"]="有死無生" + }, + [107]={ + ["name"]="光明永存" + }, + [108]={ + ["name"]="邪氣凜然" + }, + [109]={ + ["name"]="惡魔耳語" + }, + [110]={ + ["name"]="神聖之物" + }, + [201]={ + ["name"]="暗夜行者" + }, + [202]={ + ["name"]="平民珍寶" + }, + [203]={ + ["name"]="格鬥大師" + }, + [204]={ + ["name"]="利刃出鞘" + }, + [205]={ + ["name"]="絕對防禦" + }, + [206]={ + ["name"]="天雷滾滾" + }, + [207]={ + ["name"]="神兵利器" + }, + [208]={ + ["name"]="聖光照耀" + }, + [209]={ + ["name"]="神之遺物" + }, + [210]={ + ["name"]="至高神器" + } +} +local config = { +data=collection,count=30 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/collection.lua.meta b/lua/app/config/strings/zh/collection.lua.meta new file mode 100644 index 00000000..8a94b985 --- /dev/null +++ b/lua/app/config/strings/zh/collection.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d12bf76b9e900274fb328de04d5c5aed +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 new file mode 100644 index 00000000..07deb124 --- /dev/null +++ b/lua/app/config/strings/zh/equip.lua @@ -0,0 +1,282 @@ +local equip = { + [10001]={ + ["name"]="鐵劍" + }, + [10002]={ + ["name"]="鋼劍" + }, + [10003]={ + ["name"]="精鋼劍" + }, + [10004]={ + ["name"]="雕紋長劍" + }, + [10005]={ + ["name"]="騎士長劍" + }, + [10006]={ + ["name"]="暴風大劍" + }, + [10007]={ + ["name"]="狂怒之劍" + }, + [10008]={ + ["name"]="正義裁決" + }, + [10009]={ + ["name"]="鮮血之痕" + }, + [10101]={ + ["name"]="短刀" + }, + [10102]={ + ["name"]="鋼短刀" + }, + [10103]={ + ["name"]="精鋼短刀" + }, + [10104]={ + ["name"]="雕紋短刀" + }, + [10105]={ + ["name"]="刺客短刀" + }, + [10106]={ + ["name"]="劇毒短刀" + }, + [10107]={ + ["name"]="暗影之刃" + }, + [10108]={ + ["name"]="毒蛇之咬" + }, + [10109]={ + ["name"]="死亡主宰" + }, + [10201]={ + ["name"]="木槍" + }, + [10202]={ + ["name"]="鋼槍" + }, + [10203]={ + ["name"]="精鋼長槍" + }, + [10204]={ + ["name"]="雕紋長槍" + }, + [10205]={ + ["name"]="白銀長槍" + }, + [10206]={ + ["name"]="狼牙長槍" + }, + [10207]={ + ["name"]="獅心之槍" + }, + [10208]={ + ["name"]="極冰" + }, + [10209]={ + ["name"]="龍炎" + }, + [10301]={ + ["name"]="木杖" + }, + [10302]={ + ["name"]="玻璃法杖" + }, + [10303]={ + ["name"]="寶石法杖" + }, + [10304]={ + ["name"]="水晶法杖" + }, + [10305]={ + ["name"]="妖精法杖" + }, + [10306]={ + ["name"]="青鳥法杖" + }, + [10307]={ + ["name"]="白蛇之杖" + }, + [10308]={ + ["name"]="月光" + }, + [10309]={ + ["name"]="烈日" + }, + [20001]={ + ["name"]="蓖麻衣" + }, + [20002]={ + ["name"]="皮衣" + }, + [20003]={ + ["name"]="士兵袍服" + }, + [20004]={ + ["name"]="精鐵甲" + }, + [20005]={ + ["name"]="守護盔甲" + }, + [20006]={ + ["name"]="聖光鎧甲" + }, + [20007]={ + ["name"]="天啟戰衣" + }, + [20101]={ + ["name"]="粗布衣" + }, + [20102]={ + ["name"]="厚皮衣" + }, + [20103]={ + ["name"]="精緻袍服" + }, + [20104]={ + ["name"]="衛兵鐵甲" + }, + [20105]={ + ["name"]="精銅盔甲" + }, + [20106]={ + ["name"]="墮落鎧甲" + }, + [20107]={ + ["name"]="黃金聖衣" + }, + [20201]={ + ["name"]="棉布衣" + }, + [20202]={ + ["name"]="獵人皮衣" + }, + [20203]={ + ["name"]="迷彩袍服" + }, + [20204]={ + ["name"]="正義鐵甲" + }, + [20205]={ + ["name"]="陷陣盔甲" + }, + [20206]={ + ["name"]="邪龍鎧甲" + }, + [20207]={ + ["name"]="路西法之衣" + }, + [20301]={ + ["name"]="絲綢衣" + }, + [20302]={ + ["name"]="精緻皮衣" + }, + [20303]={ + ["name"]="肩甲袍服" + }, + [20304]={ + ["name"]="榮耀鐵甲" + }, + [20305]={ + ["name"]="黃金盔甲" + }, + [20306]={ + ["name"]="征服鎧甲" + }, + [20307]={ + ["name"]="屠龍傳說" + }, + [30001]={ + ["name"]="蓖麻頭帶" + }, + [30002]={ + ["name"]="粗鐵細頭環" + }, + [30003]={ + ["name"]="雕紋銀環" + }, + [30004]={ + ["name"]="戰士頭冠" + }, + [30005]={ + ["name"]="強運之冠" + }, + [30006]={ + ["name"]="風雷之冕" + }, + [30007]={ + ["name"]="屠龍金冕" + }, + [30101]={ + ["name"]="粗布頭帶" + }, + [30102]={ + ["name"]="黃銅細頭環" + }, + [30103]={ + ["name"]="碎寶石銀環" + }, + [30104]={ + ["name"]="衝鋒頭冠" + }, + [30105]={ + ["name"]="智慧之冠" + }, + [30106]={ + ["name"]="滅運之冕" + }, + [30107]={ + ["name"]="光輝聖冕" + }, + [30201]={ + ["name"]="棉布頭帶" + }, + [30202]={ + ["name"]="青銅細頭環" + }, + [30203]={ + ["name"]="雕紋金環" + }, + [30204]={ + ["name"]="騎士頭冠" + }, + [30205]={ + ["name"]="渴血之冠" + }, + [30206]={ + ["name"]="戰神之冕" + }, + [30207]={ + ["name"]="撒旦邪冕" + }, + [30301]={ + ["name"]="絲綢頭帶" + }, + [30302]={ + ["name"]="白銀細頭環" + }, + [30303]={ + ["name"]="碎寶石金環" + }, + [30304]={ + ["name"]="英雄頭冠" + }, + [30305]={ + ["name"]="光明之冠" + }, + [30306]={ + ["name"]="無光之冕" + }, + [30307]={ + ["name"]="創世神冕" + } +} +local config = { +data=equip,count=92 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/equip.lua.meta b/lua/app/config/strings/zh/equip.lua.meta new file mode 100644 index 00000000..29f863b0 --- /dev/null +++ b/lua/app/config/strings/zh/equip.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d7d289123c74cfa48a1c0f44a5a1afab +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/global.lua b/lua/app/config/strings/zh/global.lua new file mode 100644 index 00000000..91fee261 --- /dev/null +++ b/lua/app/config/strings/zh/global.lua @@ -0,0 +1,406 @@ +local localization_global = +{ + ["TASK_DAILY_TITLE"] = "每日任務", + ["COUNTDOWN"] = "{0}:{1}:{2}", + ["EVENT_TITLE"] = "活動", + ["ACT_SEVENDAY_TITLE"] = "慶典開演", + ["ACT_SEVENDAY_BTN"] = "參演", + ["ACT_SEVENDAY_LEFTTIME"] = "剩餘時間:{0}天", + ["ACT_SEVENDAY_TASK"] = "任務完成數:", + ["ACT_SEVENDAY_DESC"] = "每日將開啟新的任務。", + ["BTN_CLAIM"] = "領取", + ["BTN_DONE"] = "已領取", + ["BTN_GO"] = "前往", + ["BTN_FREE"] = "免費", + ["BTN_CONFIRM"] = "確定", + ["SUMMON_TIMES"] = "召喚{0}次", + ["SUMMON_RATE_TITLE"] = "綜合機率", + ["SUMMON_RATE_DESC1"] = "各品質獲得機率", + ["SUMMON_RATE_DESC2"] = "召喚一定數量後,召喚等級增加。", + ["IDLE_TITLE1"] = "放置獎勵", + ["IDLE_TITLE2"] = "額外獎勵", + ["IDLE_BTN"] = "獲得額外獎勵", + ["IDLE_DESC"] = "收集{0}分鐘", + ["MAIL_TITLE"] = "郵箱", + ["MAIL_COUNTDOWN"] = "{0}小時到期", + ["BTN_READ"] = "讀取", + ["BTN_DELETE_ALL"] = "刪除已讀郵件", + ["BTN_CLAIM_ALL"] = "全部領取", + ["FIRST_CHARGE_REWARD_DESC"] = "首次購買獎勵", + ["SHOP_DESC1"] = "商店", + ["SUMMON_DESC1"] = "召喚", + ["SUMMON_DESC2"] = "召喚{0}次", + ["SUMMON_DESC3"] = "召喚一定數量後,召喚等級增加。", + ["DAILY_AND_WEEK"] = "每日/每週", + ["TREASURE_DESC1"] = "財寶", + ["FAMILY_HEIRLOOM"] = "傳家寶", + ["ARMOR_DESC1"] = "防具", + ["QLT_DESC_1"] = "普通", + ["QLT_DESC_2"] = "高級", + ["QLT_DESC_3"] = "稀有", + ["QLT_DESC_4"] = "史詩", + ["QLT_DESC_5"] = "傳說", + ["QLT_DESC_6"] = "神話", + ["QLT_DESC_7"] = "超越", + ["PROBABILITY_DESC1"] = "綜合機率", + ["PROBABILITY_DESC2"] = "各種級別獲得機率", + ["LEVEL_DESC1"] = "LEVEL{0}", + ["WEAPON_DESC1"] = "武器", + ["LV_POINT"] = "{0}級", + ["LOOK_AD_DESC1"] = "觀看廣告", + ["LOOK_AD_DESC2"] = "觀看廣告免費召喚", + ["LOOK_AD_DESC3"] = "每觀看一次廣告都可以增加召喚次數", + ["NEXT_SUMMON_NUM"] = "下一次召喚:{0}", + ["MAX_SUMMON_NUM"] = "(最多召喚{0}次)", + ["CANCEL_1"] = "取消", + ["TIME_STR_DHM"] = "{0}天{1}時{2}分", + ["TIME_STR_M"] = "{0}分", + ["TIME_STR_MS"] = "{0}分{1}秒", + ["TIME_STR_S"] = "{0}秒", + ["TIME_STR_DH"] = "{0}天{1}時", + ["TIME_STR_HMS"] = "{0}時{1}分{2}秒", + ["TIME_STR_HM"] = "{0}時{1}分", + ["TIME_STR_D"] = "{0}天", + ["TIME_MS"] = "{0}:{1}", + ["TIME_HMS"] = "{0}:{1}:{2}", + ["REMAIN_TIME_DESC1"] = "剩餘時間:{0}", + ["SUPER_DESC1"] = "超值", + ["GIFT_DESC1"] = "禮包", + ["DUMGEON_1"] = "金幣副本", + ["DUMGEON_2"] = "鑽石副本", + ["DUMGEON_3"] = "秘銀副本", + ["DUMGEON_4"] = "特性副本", + ["BLESSING_1"] = "金幣", + ["BLESSING_2"] = "攻擊", + ["BLESSING_3"] = "技能傷害", + ["ACCELERATION"] = "戰鬥加速", + ["LOOK_AD"] = "廣告", + ["DAILY_SHOP"] = "每日商店", + ["WEEK_SHOP"] = "每週商店", + ["FIRST_BUY_AWARD"] = "首次購買獎勵", + ["FIRST_BUT_AWARD_2"] = "首次購買任意商品時獲得", + ["EQUIP_TITLE "] = "裝備界面", + ["EQUIP_DESC_1"] = "擁有效果", + ["EQUIP_DESC_2"] = "裝備效果", + ["EQUIP_DESC_3"] = "裝備", + ["EQUIP_DESC_4"] = "強化", + ["EQUIP_DESC_5"] = "前往召喚", + ["EQUIP_DESC_6"] = "全部強化", + ["ATTR_NAME_1"] = "生命", + ["ATTR_NAME_2"] = "生命恢復", + ["ATTR_NAME_3"] = "攻擊", + ["ATTR_NAME_4"] = "移動速度", + ["ATTR_NAME_5"] = "暴擊率", + ["ATTR_NAME_6"] = "暴擊傷害", + ["ATTR_NAME_7"] = "攻擊範圍", + ["ATTR_NAME_8"] = "傷害減免", + ["ATTR_NAME_9"] = "對boss傷害提升", + ["ATTR_NAME_11"] = "攻擊", + ["ATTR_NAME_20"] = "生命", + ["CAN_NOT_DIGGING_DARK"] = "無法探索遠處的霧區", + ["MUST_PUT_IN_GROUND"] = "必須放在已照亮的區域", + ["ITEM_NOT_ENOUGH"] = "{0}不足", + ["MAX_LV_DESC"] = "最高等級", + ["RESET_DESC"] = "重置", + ["STRENGTHEN_DESC"] = "強化", + ["MASTERY_DESC_1"] = "精通能力", + ["MASTERY_DESC_2"] = "精通能力幫助", + ["MASTERY_DESC_3"] = "回溯關卡時,可以獲得精通點數,使用精通點數可以升級精通能力。", + ["MASTERY_DESC_4"] = "一個精通能力升到滿級後才能解鎖下一個精通能力。", + ["MASTERY_DESC_5"] = "是否重置精通? \n重置將歸還全部精通點數,所有精通重置為0級。", + ["HERO_TITLE_1"] = "裝備", + ["HERO_TITLE_2"] = "傳家寶", + ["HERO_TITLE_3"] = "精通", + ["HERO_TITLE_4"] = "符文", + ["EQUIP_DESC_7"] = "已裝備", + ["EQUIP_DESC_8"] = "卸下", + ["EQUIP_DESC_9"] = "圖鑑", + ["EQUIP_DESC_10"] = "打造符文", + ["EQUIP_DESC_11"] = "已解鎖符文:{0}/{1}", + ["EQUIP_DESC_12"] = "未解鎖符文", + ["EQUIP_DESC_13"] = "收集效果:{0}", + ["CONGRATULATE_GET_DESC"] = "恭喜獲得", + ["MINING_TITLE"] = "探索", + ["Next"] = "下一個", + ["MINING_TIPS_DESC1"] = "火把將自動補給", + ["MINING_TIPS_DESC2"] = "探索越深入的區域越容易發現好的寶藏", + ["MINING_TIPS_DESC3"] = "使用聖光蠟燭和炎彈可以輕鬆驅散迷霧", + ["MINING_TIPS_DESC4"] = "照亮黃線以下可以進入更深的區域", + ["RESEARCH_TITLE"] = "研究所", + ["RESEARCH_MAT"] = "研究材料", + ["RESEARCHING_QUICK_FINISH"] = "馬上結束!", + ["RESEARCHING_JUMP_TIME"] = "跳過{0}分鐘", + ["RESEARCHING_DESC1"] = "正在進行研究——【{0}】", + ["MAX"] = "MAX", + ["NEED_BEFORE_RESEARCH"] = "需要進行提前研究", + ["RESEARCH"] = "研究", + ["DISCONNECT_RELOGIN"] = "網路連線已斷開, 請重新登入", + ["RECONNECT"] = "網路連線已斷開,是否重連", + ["BTN_TEXT_OK"] = "確定", + ["RELOGIN"] = "重新登入", + ["DUNGEON_GOLD"] = "金幣副本", + ["DUNGEON_TREASURE"] = "鑽石副本", + ["DUNGEON_MITHRIL"] = "秘銀副本", + ["DUNGEON_CHARACTERISTIC"] = "特性副本", + ["TRAIN_DESC_1"] = "訓練", + ["TRAIN_DESC_2"] = "回溯", + ["TRAIN_DESC_3"] = "速通", + ["TRAIN_DESC_4"] = "本次最佳:{0}關,回溯後可獲得:", + ["TRAIN_DESC_5"] = "當前進度", + ["TRAIN_DESC_6"] = "最高進度", + ["TRAIN_DESC_7"] = "訓練屬性", + ["TRAIN_DESC_8"] = "通關{0}關解鎖", + ["TRAIN_DESC_9"] = "前往回溯", + ["TRAIN_DESC_10"] = "速通至{0}關", + ["TRAIN_DESC_11"] = "結束本次挑戰", + ["TRAIN_DESC_12"] = "本次關卡推進越遠,回溯獲得金幣、精通點數越多。", + ["TRAIN_DESC_13"] = "當前不是最高關卡,獎勵會減少,是否確定回溯?", + ["TRAIN_DESC_14"] = "開始回溯", + ["TRAIN_DESC_15"] = "{0}關", + ["TRAIN_DESC_16"] = "速通升級", + ["TRAIN_DESC_17"] = "等級{0}", + ["TRAIN_DESC_18"] = "每次速通將立即跳過{0}(+300)關。(速通等級越高,速通關卡數越多;但速通無法超過當前最高關卡)", + ["UPGRADE_DESC"] = "升級", + ["GET_REWARDS"] = "獲得獎勵", + ["ARENA"] = "競技場", + ["REFRESH_TIME"] = "更新時間:{0}", + ["DUNGEON_DESC1"] = "副本入場鑰匙會每天自動補給", + ["CHAPTER_UNLOCK_DESC"] = "通關{0}解鎖", + ["LEVEL_UNLOCK_DESC"] = "等級達到{0}解鎖", + ["ENTER_DUNGEON"] = "入場", + ["TASK_COMPLETE_DESC"] = "完成主線任務{0}解鎖", + ["DUNGEON_GOLD_HELP_CONTENT"] = "猜猜撬開了寶箱會發生什麼?呀!寶箱張開嘴巴咬人啦!", + ["DUNGEON_TREASURE_HELP_CONTENT"] = "勇者視財寶為身外之物,不屑於爭奪,不過,送上門的不算~", + ["DUNGEON_MITHRIL_HELP_CONTENT"] = "秘銀的挖掘是勞力工作,挖掘可以用魔法,但被驚醒的魔物就是大麻煩啦!", + ["DUNGEON_CHARACTERISTIC_HELP_CONTENT"] = "無數次的戰鬥磨練帶來的,除了體格的強壯,還有意志的堅定和隨機應變的機靈。", + ["ARENA_HELP_CONTENT"] = "1.競技場總共有4個主題,分別爲:劍、短刀、長槍、法杖。主題不同,對應的對手也不同。\n2.用主題武器可獲得額外攻擊加成,本期使用{0},攻擊力額外提升20%。下一期主題使用{1}。\n3.限定時間內和對手戰鬥,造成傷害得分,根據得分進入段位。\n4.每週日0點(UTC-0)將結算1次段位並給獎勵,結算後你的段位將下降最多5個段位。\n5.競技場中的武器、防具和傳家寶的擁有屬性將生效。武器裝備屬性和技能將在戰鬥開始時進行選擇。\n6.傳家寶的裝備效果不會生效,每波通過後將隨機出已有的傳家寶效果供你選擇,提高後續作戰能力,但不會額外獲得傳家寶屬性。", + ["GET_SEVER_ERROR"] = "伺服器請求失敗,正在重試", + ["ENTER_DUNGEON_AD"] = "廣告入場", + ["DUNGEON_DIFFICULT"] = "難度", + ["PASS_REWARD"] = "通關獎勵", + ["ARENA_RULE_TITLE"] = "競技場規則", + ["ARENA_RULE_CONTENT"] = "1.競技場總共有4個主題,分別爲:劍、短刀、長槍、法杖。主題不同,對應的對手也不同。\n2.用主題武器可獲得額外攻擊加成,本期使用{0},攻擊力額外提升20%。下一期主題使用{1}。\n3.限定時間內和對手戰鬥,造成傷害得分,根據得分進入段位。\n4.每週日0點(UTC-0)將結算1次段位並給獎勵,結算後你的段位將下降最多5個段位。\n5.競技場中的武器、防具和傳家寶的擁有屬性將生效。武器裝備屬性和技能將在戰鬥開始時進行選擇。\n6.傳家寶的裝備效果不會生效,每波通過後將隨機出已有的傳家寶效果供你選擇,提高後續作戰能力,但不會額外獲得傳家寶屬性。", + ["LOOK_SEASON_REWARD"] = "查看本期獎勵", + ["ARENA_SUBJECT_DESC"] = "本期比拼主題:{0}", + ["SWARD"] = "劍", + ["WAND"] = "法杖", + ["KNIFE"] = "短刀", + ["SPEAR"] = "長槍", + ["REWARD_PREVIEW"] = "獎勵預覽", + ["ARENA_ENTER_TITLE"] = "競技場.{0}", + ["ARENA_REFRESH_TIME_DESC"] = "{0}後輪換至下個主題", + ["CUR_RANK_LEVEL"] = "當前段位", + ["SCORE_DESC"] = "{0}分", + ["RANK_ORDER"] = "第{0}名", + ["HERO_RANKING_TITLE"] = "英雄榜", + ["ARENA_BATTLE_REWARD_TITLE"] = "挑戰獎勵", + ["ARENA_MAX_LEVEL"] = "巔峰!", + ["BEST_DESC"] = "最佳", + ["RANKING_REWARD"] = "排名獎勵", + ["RANK_LEVEL_REWARD"] = "段位獎勵", + ["RANKING_DESC1"] = "排名", + ["RANKING_DESC2"] = "每週結算獎勵", + ["CLEARING_REMAIN_DESC"] = "距離結算剩餘:{0}", + ["NO_ONE_IN_THIS_SEGMENT"] = "暫無人進入此段位", + ["NEED_SOMETHING"] = "需要:{0}", + ["SELF_RANKING"] = "我的排名", + ["RANKIN_LEVEL_DESC"] = "{0} (所在段位)", + ["ARENA_RANK_DESC_1"] = "參與戰鬥後才有排名", + ["SELF_RANK_ORDER"] = "我的排名", + ["SEVEN_DAY_SIGNIN_TITLE"] = "7天簽到活動", + ["DAY_DESC1"] = "第{0}天", + ["SEVEN_DAY_DESC"] = "超強金裝,戰力狂飆!", + ["NOT_IN_RANK"] = "未上榜", + ["DIAMOND_GIFT_TITLE"] = "鑽石禮包", + ["LIMIT_GIFT"] = "限時禮包", + ["DAILY_GIFT"] = "每日禮包", + ["WEEK_GIFT"] = "每周禮包", + ["MALL_GIFT"] = "禮包商店", + ["WEAPON_SUMMON_TITLE"] = "武器召喚", + ["ARMOR_SUMMON_TITLE"] = "防具召喚", + ["FAMILY_HEIRLOOM_SUMMON_TITLE"] = "傳家寶召喚", + ["CHAPTER_DESC_1"] = "關卡", + ["CHAPTER_DESC_2"] = "關卡獎勵", + ["CHAPTER_DESC_3"] = "挑戰目標", + ["CHAPTER_DESC_4"] = "挑戰獎勵", + ["LIMIT_DESC"] = "限購:{0}", + ["QLT_DESC"] = "{0}品質", + ["ITEM_DESC"] = "道具", + ["IDLE_DROP_DESC_1"] = "放置獎勵", + ["IDLE_DROP_DESC_2"] = "金幣獲取:{0}/m", + ["IDLE_DROP_DESC_3"] = "已蒐集{0}分鐘", + ["GET_REWARDS_1"] = "領取獎勵", + ["EXT_REWARDS"] = "額外獎勵", + ["CAN_NOT_DIG_GROUND"] = "不可放置於已照亮的區域!", + ["SEVEN_DAY_DESC_1"] = "新人七天樂", + ["SEVEN_DAY_DESC_2"] = "結束時間:{0}", + ["SEVEN_DAY_DESC_3"] = "已完成任務數:{0}/{1}", + ["SEVEN_DAY_DESC_4"] = "全部領取", + ["DAILY_TASK_DESC_1"] = "每日任務", + ["DAILY_TASK_DESC_2"] = "完成", + ["GAME_SETTING_DESC_1"] = "我的資訊", + ["GAME_SETTING_DESC_2"] = "帳號", + ["GAME_SETTING_DESC_3"] = "語言", + ["GAME_SETTING_DESC_4"] = "支援", + ["GAME_SETTING_DESC_5"] = "隱私", + ["GAME_SETTING_FACEBOOK"] = "Facebook", + ["GAME_SETTING_DISCORD"] = "Discord", + ["GAME_SETTING_DESC_6"] = "立即進入省電模式", + ["GAME_SETTING_DESC_7"] = "PlayerID:{0}", + ["GAME_SETTING_DESC_8"] = "開", + ["GAME_SETTING_DESC_9"] = "關", + ["GAME_SETTING_DESC_10"] = "背景音樂", + ["GAME_SETTING_DESC_11"] = "環境音效", + ["GAME_SETTING_DESC_12"] = "畫面抖動", + ["GAME_SETTING_DESC_13"] = "通知", + ["GAME_SETTING_DESC_14"] = "使用省電模式", + ["TUTORIAL_MINE"] = "那麼這些知識能做什麼呢?", + ["HAS_RESEARCHING"] = "研究正在進行", + ["BATTLE_FAILED"] = "失敗了", + ["BATTLE_FAIL_DESC_1"] = "召喚裝備,武裝自己", + ["BATTLE_FAIL_DESC_2"] = "挑戰副本,奪取資源", + ["BATTLE_FAIL_DESC_3"] = "探索迷霧,研究新知", + ["BATTLE_FAIL_DESC_4"] = "回溯速通,訓練精通", + ["ACCOUNT_DESC_1"] = "綁定帳號", + ["ACCOUNT_DESC_2"] = "綁定帳號,安全保護遊戲資料!", + ["LOGIN_BY_GOOGLE"] = "透過Google登入", + ["LOGIN_BY_APPLE"] = "透過Apple登入", + ["DELETE_ACCOUNT"] = "刪除帳號", + ["BLESSING_TITLE"] = "祝福", + ["BLESSING_TITLE_1"] = "豐收之神的祝福", + ["BLESSING_TITLE_2"] = "戰神的祝福", + ["BLESSING_TITLE_3"] = "鍛造之神的祝福", + ["BLESSING_DESC_1"] = "金幣獲得量增加到", + ["BLESSING_DESC_2"] = "攻擊力增加到", + ["BLESSING_DESC_3"] = "技能傷害增加到", + ["BLESSING_DESC_4"] = "還有自動延長祝福的禮包?", + ["GET"] = "獲得", + ["ACT_SEVENDAY_DESC_1"] = "第{0}天解鎖", + ["BATTLE_SPEED_UP_DESC_1"] = "加速遊戲", + ["BATTLE_SPEED_UP_DESC_2"] = "速度X2", + ["BATTLE_SPEED_UP_DESC_3"] = "觀看廣告,接下來20分鐘遊戲2倍速", + ["BATTLE_SPEED_UP_DESC_4"] = "(開啟後,打開自動攻擊即可生效)", + ["BATTLE_SPEED_UP_DESC_5"] = "加速期間觀看廣告會刷新加速時間,但最高不超過20分鐘", + ["BATTLE_SPEED_UP_DESC_6"] = "啟動", + ["BATTLE_FAIL"] = "戰鬥失敗", + ["BATTLE_VICTORY"] = "戰鬥勝利", + ["CLICK_CLOSE_DESC"] = "點擊關閉", + ["FUNC_OPEN_LEVEL"] = "玩家等級{0}開啟", + ["FUNC_OPEN_STAGE"] = "通關章節{0}開啟", + ["FUNC_OPEN_TASK"] = "完成主線任務{0}開啟", + ["TASK_DESC"] = "主線任務", + ["TRAIN_DESC_19"] = "速通獎勵", + ["TRAIN_DESC_20"] = "金幣翻倍", + ["RUNE_TITLE_1"] = "符文:劍", + ["RUNE_TITLE_2"] = "符文:法杖", + ["RUNE_TITLE_3"] = "符文:短刀", + ["RUNE_TITLE_4"] = "符文:長槍", + ["RUNE_TITLE_5"] = "符文:衣服", + ["RUNE_TITLE_6"] = "符文:頭飾", + ["RUNE_TITLE_7"] = "符文:通用", + ["BATTLE_SPEED_UP_DESC_7"] = "自動攻擊2倍速已生效,剩餘20分鐘", + ["MASTERY_DESC_6"] = "重置精通能力", + ["MESSAGE_BOX_TITLE"] = "提示", + ["RESEARCH_COMPLETE"] = "研究完成!", + ["BOUNTY_DESC_1"] = "高級通行證", + ["BOUNTY_DESC_2"] = "本賽季期間可獲得如下優惠。", + ["BOUNTY_DESC_4"] = "解鎖高級通行證專用獎勵", + ["BOUNTY_DESC_5"] = "解鎖高級通行證專用任務", + ["BOUNTY_DESC_6"] = "S{0}賽季戰令", + ["BOUNTY_DESC_7"] = "通行證獎勵", + ["BOUNTY_DESC_8"] = "普通通行證", + ["BOUNTY_DESC_9"] = "已滿級", + ["BOUNTY_DESC_10"] = "已激活", + ["BOUNTY_DESC_11"] = "每日任務", + ["BOUNTY_DESC_12"] = "每週任務", + ["BOUNTY_DESC_13"] = "購買高級通行證時啟用", + ["BOUNTY_DESC_14"] = "已完成", + ["BOUNTY_DESC_15"] = "完成任務", + ["AUTO_FIGHT"] = "自動攻擊", + ["OPEN_AUTO_FIGHT"] = "開啟自動", + ["BATTLE_NEXT_WAVE"] = "進入第{0}波", + ["BATTLE_WAVE"] = "第{0}波", + ["BATTLE_LEFT"] = "剩餘", + ["BATTLE_STAGE_FAILED_DESC"] = "挑戰失敗\n退回{0}關\n回去好好修練再來吧", + ["POWER"] = "戰力", + ["BATTLE_CHAPTER_PASS"] = "通過關卡", + ["BATTLE_CHAPTER_DESC"] = "第{0}關", + ["BATTLE_LIMIT_DESC"] = "限時挑戰", + ["BATTLE_CHAPTER_STEP_DESC"] = "第{0}層\n第{1}關", + ["BATTLE_PAUSE"] = "暫停", + ["BATTLE_ATTR"] = "當前屬性", + ["BATTLE_RESUME"] = "繼續戰鬥", + ["BATTLE_DUNGEON_EXIT"] = "退出副本", + ["TRAIN_DESC_21"] = "1.花費時光沙漏可以進行回溯,獲得金幣和精通點數。時光沙漏每天0點(UTC-0)會刷新並回複數量至5。\n2.回溯時所處的關卡數越高,回溯獲得的獎勵就越多。當前低於100關時,將不能進行回溯。\n3.回溯後將回到第一關,通過速通可以快速回到當前最高關卡進度。 \n4.時光回溯消耗大量體力和精神力,因此每次回溯後需要休息15分鐘纔可進行下次回溯。", + ["TRAIN_DESC_22"] = "1.使用時光粉塵可以進行速通,跨越時間和空間次元,快速通關至當前最高關卡進度,並獲得對應的金幣獎勵。時光粉塵每天0點(UTC-0)會刷新並回復數量至4。 \n2.速通通過的關卡數越多,獲得的獎勵就越多。 \n3.速通可到達的關卡數受已通關的關卡數和速通等級限制,使用速通石可升級速通等級。每次速通等級提升,可使速通到達的最高關卡數增加300。", + ["HELP_DESC"] = "幫助", + ["HISTORY_RECORD"] = "歷史最高", + ["NEW_RECORD"] = "新紀錄", + ["BATTLE_END"] = "戰鬥結束", + ["CUR_RECORD"] = "當前記錄", + ["CLICK_CLOSE_DESC_2"] = "點擊任意區域關閉", + ["BATTLE_REVIVE_TITLE"] = "是否要復活?", + ["BATTLE_REVIVE_AD"] = "免費復活", + ["BATTLE_REVIVE"] = "復活", + ["SELECT_LEGACY_DESC"] = "已選擇的傳家寶", + ["SELECT_ONE_LEGACY"] = "選擇一項傳家寶", + ["CHANGE_OTHER"] = "換一批", + ["VIEW_SELECTED_LEGACY"] = "查看已選擇傳家寶", + ["ARENA_CHANGE_FINISH_DESC"] = "挑戰結束", + ["ARENA_SCORE"] = "得分", + ["BATTLE_AGAIN"] = "重新挑戰", + ["RECHARGE_TITLE"] = "每週重置雙倍鑽石充值次數", + ["BATTLE_ERROR"] = "戰鬥異常,請重試。", + ["ARENA_CALCULATE"] = "競技場結算中,請稍後", + ["RENAME_DESC_1"] = "更改名稱", + ["RENAME_DESC_2"] = "名字最多6個字", + ["RENAME_DESC_3"] = "更改名稱", + ["RENAME_DESC_4"] = "請輸入名稱", + ["SHIELDED_WORD_DESC"] = "文字中有不可用字符", + ["NAME_ALREADY_USED_DESC"] = "名稱已被佔用", + ["NEW_PLAYER_DESC"] = "新玩家", + ["LANGUAGE_DESC"] = "語言", + ["ARENA_FIGHT_FORBID"] = "競技場即將結束, 無法開啓戰鬥!", + ["FUNDCHAPTER_TITLE"] = "關卡基金", + ["FUNDCHAPTER_TITLE_DESC"] = "提升關卡進度獲得獎勵!", + ["ARENA_SEGMENT_TITLE"] = "英雄榜獎勵", + ["ARENA_SEGMENT_TITLE_DESC"] = "少俠身手不凡,上週成績爲:", + ["RECEIVE_REWARD"] = "收下獎勵", + ["REWARD_TITLE"] = "獲得獎勵", + ["MAX_SCORE"] = "最高得分:{0}", + ["SAVE_POWER_DESC_2"] = "正在競技場中過關斬將", + ["SAVE_POWER_DESC_3"] = "划動即可退出省電模式", + ["SAVE_POWER_DESC_4"] = "(可在設定中關閉/開啟)", + ["FUND_PROGRESS"] = "關卡進度", + ["FUND_LOW_TX"] = "豪華獎勵", + ["FUND_HIGH_TX"] = "高級獎勵", + ["NO_NETWORK"] = "無網絡連接,請連接網絡後重試", + ["NETWORK_ERROE_1"] = "服務器通信異常,請稍後重試", + ["REPEAT_PAY_ORDER"] = "訂單已到帳,如有問題,請重啟遊戲。", + ["BATTLE_STAGE_FAILED_DESC_2"] = "挑戰失敗\n\n回去好好修練再來吧", + ["ACTIVITY_OVER_DESC"] = "活動已結束", + ["BINDED_DESC"] = "已綁定", + ["SWITCH_ACCOUNT_DESC"] = "切換帳號", + ["BATTLE_MISS"] = "閃避", + ["MAINTAIN"] = "服務器維護", + ["FORBIDDEN"] = "封號/禁止登錄", + ["OTHER_LOGIN"] = "賬號在其他設備登錄", + ["NO_ADS"] = "新廣告還沒有準備好", + ["ACCOUNT_EXCHANGE_DESC_1"] = "當前賬號未綁定,切換賬號後可能導致當前賬號信息丟失,是否切換?", + ["ACCOUNT_EXCHANGE_DESC_2"] = "該賬號沒有賬號信息,無法切換", + ["BESURE_DELETE_TIPS_DESC"] = "是否要刪除賬號,刪除後將清除所有信息和內容。如果確定請輸入“{0}”", + ["BESURE_DELETE_ACCOUNT_DESC"] = "確認刪除", + ["LOADING_DESC"] = "加載中.......", + ["CLICK_COPY_ACOUNT_DESC"] = "點擊複製用戶ID", + ["APP"] = "版本號:", + ["BLESS_DESC"] = "自動祝福!", + ["SKIP_AD_DESC"] = "去除所有廣告!", + ["ARENA_SETTLE_DESC"] = "競技場結算中,請稍後", + ["PAY_FAILED_DESC_1"] = "訂單異常,請聯繫客服處理", + ["MONTH_CARD_DESC"] = "連續30日每日發放獎勵!", + ["SETTING_DESC_22"] = "Google Play Store連接異常,請稍後再試", + ["SETTING_DESC_23"] = "當前有訂單正在處理中,請稍後再試", + ["SETTING_DESC_25"] = "支付取消", +} + +return localization_global \ No newline at end of file diff --git a/lua/app/config/strings/zh/global.lua.meta b/lua/app/config/strings/zh/global.lua.meta new file mode 100644 index 00000000..e8e44d43 --- /dev/null +++ b/lua/app/config/strings/zh/global.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c4aa58877b2529d44ac6658b58ee4787 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/hero.lua b/lua/app/config/strings/zh/hero.lua new file mode 100644 index 00000000..1f145027 --- /dev/null +++ b/lua/app/config/strings/zh/hero.lua @@ -0,0 +1,9 @@ +local hero = { + [60001]={ + ["name"]="亞瑟" + } +} +local config = { +data=hero,count=1 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/hero.lua.meta b/lua/app/config/strings/zh/hero.lua.meta new file mode 100644 index 00000000..764dfa90 --- /dev/null +++ b/lua/app/config/strings/zh/hero.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2ba712c5d4ef395469fc8c9530d45849 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/item.lua b/lua/app/config/strings/zh/item.lua new file mode 100644 index 00000000..3683bfc7 --- /dev/null +++ b/lua/app/config/strings/zh/item.lua @@ -0,0 +1,112 @@ +local item = { + [1]={ + ["name"]="金幣", + ["desc"]="通用貨幣,很多地方都會使用" + }, + [2]={ + ["name"]="鑽石", + ["desc"]="稀有貨幣,主要用於召喚。" + }, + [3]={ + + }, + [4]={ + ["name"]="金幣副本鑰匙", + ["desc"]="可用於挑戰金幣副本" + }, + [5]={ + ["name"]="鑽石副本鑰匙", + ["desc"]="可用於挑戰鑽石副本" + }, + [6]={ + ["name"]="秘銀副本鑰匙", + ["desc"]="可用於挑戰秘銀副本" + }, + [7]={ + ["name"]="特性副本鑰匙", + ["desc"]="可用於挑戰特性副本" + }, + [8]={ + ["name"]="速通石", + ["desc"]="可用於升級速通等級" + }, + [9]={ + ["name"]="火把", + ["desc"]="可用於驅散迷霧" + }, + [10]={ + ["name"]="炎彈", + ["desc"]="可用於驅散範圍內的迷霧" + }, + [11]={ + ["name"]="聖光蠟燭", + ["desc"]="可用於驅散範圍內的迷霧" + }, + [12]={ + ["name"]="知識", + ["desc"]="可用於進行研究" + }, + [13]={ + ["name"]="精通點數", + ["desc"]="可用於精通屬性的提升" + }, + [14]={ + ["name"]="秘銀", + ["desc"]="可用於符文的解鎖和強化" + }, + [15]={ + ["name"]="時光沙漏", + ["desc"]="可用於回溯" + }, + [16]={ + ["name"]="競技場鑰匙", + ["desc"]="可用於參與競技場" + }, + [17]={ + ["name"]="單抽箱子", + ["desc"]="打開可獲得隨機一件武器/防具/傳家寶" + }, + [18]={ + ["name"]="十連箱子", + ["desc"]="打開可獲得隨機十件武器/防具/傳家寶" + }, + [19]={ + ["name"]="戰令積分", + ["desc"]="收集一定積分可以提升戰令等級" + }, + [20]={ + ["name"]="包裹" + }, + [21]={ + ["name"]="三十五連箱子", + ["desc"]="打開可獲得隨機三十五件武器/防具/傳家寶" + }, + [22]={ + ["name"]="一百零五連箱子", + ["desc"]="打開可獲得隨機一百零五件武器/防具/傳家寶" + }, + [23]={ + ["name"]="金色傳說寶箱", + ["desc"]="打開可獲得騎士長劍、守護盔甲和強運頭冠" + }, + [24]={ + ["name"]="一張羊皮紙" + }, + [25]={ + ["name"]="一沓羊皮紙" + }, + [26]={ + ["name"]="一卷羊皮紙" + }, + [27]={ + ["name"]="羊皮書" + }, + [28]={ + ["name"]="時光粉塵", + ["desc"]="可用於速通" + } +} +local config = { +data=item,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/item.lua.meta b/lua/app/config/strings/zh/item.lua.meta new file mode 100644 index 00000000..93c5dc45 --- /dev/null +++ b/lua/app/config/strings/zh/item.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 731bdd0abe340bf48aaa815ecb22c1c7 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/legacy.lua b/lua/app/config/strings/zh/legacy.lua new file mode 100644 index 00000000..40b350c8 --- /dev/null +++ b/lua/app/config/strings/zh/legacy.lua @@ -0,0 +1,114 @@ +local legacy = { + [40001]={ + ["name"]="避雷針" + }, + [40002]={ + ["name"]="凝神香囊" + }, + [40003]={ + ["name"]="盜賊短靴" + }, + [40004]={ + ["name"]="靈巧手套" + }, + [40005]={ + ["name"]="刺客匕首" + }, + [40101]={ + ["name"]="家傳護符" + }, + [40102]={ + ["name"]="負重鐵甲" + }, + [40103]={ + ["name"]="力量手套" + }, + [40104]={ + ["name"]="偽裝披風" + }, + [40105]={ + ["name"]="虎爪" + }, + [40201]={ + ["name"]="黑鐵錐" + }, + [40202]={ + ["name"]="格鬥戒指" + }, + [40203]={ + ["name"]="雷紋水晶" + }, + [40204]={ + ["name"]="冰石面具" + }, + [40205]={ + ["name"]="鎖子甲" + }, + [40301]={ + ["name"]="大師長劍" + }, + [40302]={ + ["name"]="撕裂尖刺" + }, + [40303]={ + ["name"]="魔法水晶盾" + }, + [40304]={ + ["name"]="荊棘之甲" + }, + [40305]={ + ["name"]="黃金臂甲" + }, + [40401]={ + ["name"]="輝煌王冠" + }, + [40402]={ + ["name"]="斬骨巨刀" + }, + [40403]={ + ["name"]="朗基努斯之槍" + }, + [40404]={ + ["name"]="嗜血魔劍" + }, + [40405]={ + ["name"]="雷神之鎚" + }, + [40501]={ + ["name"]="智慧之匙" + }, + [40502]={ + ["name"]="夜神之翼" + }, + [40503]={ + ["name"]="騎士榮耀" + }, + [40504]={ + ["name"]="真實之眼" + }, + [40505]={ + ["name"]="菲尼克斯之淚" + }, + [40601]={ + ["name"]="裂地圖騰" + }, + [40602]={ + ["name"]="海神三叉戟" + }, + [40603]={ + ["name"]="太陽神弓" + }, + [40604]={ + ["name"]="無形之刃" + }, + [40605]={ + ["name"]="永恆之槍岡格尼爾" + }, + [40606]={ + ["name"]="末日審判" + } +} +local config = { +data=legacy,count=36 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/legacy.lua.meta b/lua/app/config/strings/zh/legacy.lua.meta new file mode 100644 index 00000000..bc832b3c --- /dev/null +++ b/lua/app/config/strings/zh/legacy.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: afe1ac490c0ee5f44b248fbb8e12aef6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/mail.lua b/lua/app/config/strings/zh/mail.lua new file mode 100644 index 00000000..1619da6f --- /dev/null +++ b/lua/app/config/strings/zh/mail.lua @@ -0,0 +1,24 @@ +local mail = { + [1]={ + ["name"]="路邊老爺爺的饋贈" + }, + [2]={ + ["name"]="國王的日常補給" + }, + [3]={ + ["name"]="哼哼哈嘿", + ["desc"]="樂觀的人總在不經意間獲得意外之喜" + }, + [4]={ + ["name"]="仁者無敵", + ["desc"]="心地善良的人,會善有善報的" + }, + [5]={ + ["name"]="風生水起", + ["desc"]="精力充沛,運勢良好,財運連連" + } +} +local config = { +data=mail,count=5 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/mail.lua.meta b/lua/app/config/strings/zh/mail.lua.meta new file mode 100644 index 00000000..acede1ac --- /dev/null +++ b/lua/app/config/strings/zh/mail.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5239096638e4b644c8b9bd1db77c3379 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/mall_act.lua b/lua/app/config/strings/zh/mall_act.lua new file mode 100644 index 00000000..875d31f6 --- /dev/null +++ b/lua/app/config/strings/zh/mall_act.lua @@ -0,0 +1,75 @@ +local mall_act = { + [10000]={ + ["name"]="首儲獎勵" + }, + [10001]={ + ["name"]="貴重物品" + }, + [10002]={ + ["name"]="勇者向前衝" + }, + [10003]={ + ["name"]="地宮繼承者" + }, + [10004]={ + ["name"]="煉金術士的儲物箱" + }, + [10005]={ + ["name"]="巨龍寶藏" + }, + [10006]={ + ["name"]="狂戰士血統" + }, + [10101]={ + ["name"]="探索大禮包" + }, + [10102]={ + ["name"]="閃亮鑰匙串" + }, + [10103]={ + ["name"]="問鼎天下" + }, + [10104]={ + ["name"]="神話法杖套裝" + }, + [10105]={ + ["name"]="神話刺客套裝" + }, + [10106]={ + ["name"]="正義的使者" + }, + [10201]={ + ["name"]="傳說裝備三件套" + }, + [10202]={ + ["name"]="神話裝備三件套" + }, + [10301]={ + ["name"]="傳說中的傳家寶" + }, + [10302]={ + ["name"]="神話中的傳家寶" + }, + [20001]={ + ["name"]="免廣告禮包" + }, + [30001]={ + ["name"]="自動祝福禮包" + }, + [40001]={ + ["name"]="黃金冒險家勳章" + }, + [60001]={ + ["name"]="關卡基金-低檔" + }, + [60002]={ + ["name"]="關卡基金-高檔" + }, + [70001]={ + ["name"]="戰令1賽季" + } +} +local config = { +data=mall_act,count=23 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/mall_act.lua.meta b/lua/app/config/strings/zh/mall_act.lua.meta new file mode 100644 index 00000000..b5fd16fb --- /dev/null +++ b/lua/app/config/strings/zh/mall_act.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 33af9d46e8969fd4f9000a2387c445c9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/mall_daily.lua b/lua/app/config/strings/zh/mall_daily.lua new file mode 100644 index 00000000..d3a3ce4f --- /dev/null +++ b/lua/app/config/strings/zh/mall_daily.lua @@ -0,0 +1,33 @@ +local mall_daily = { + [1001]={ + ["name"]="免費禮包" + }, + [1002]={ + ["name"]="小鑰匙串" + }, + [1003]={ + ["name"]="時光盒" + }, + [1004]={ + ["name"]="鑰匙串" + }, + [1005]={ + ["name"]="探索袋" + }, + [2001]={ + ["name"]="大鑰匙串" + }, + [2002]={ + ["name"]="時光寶盒" + }, + [2003]={ + ["name"]="鑰匙大禮包" + }, + [2004]={ + ["name"]="探索行囊" + } +} +local config = { +data=mall_daily,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/mall_daily.lua.meta b/lua/app/config/strings/zh/mall_daily.lua.meta new file mode 100644 index 00000000..5187fb02 --- /dev/null +++ b/lua/app/config/strings/zh/mall_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8451259b2df32bf488bbd4d3995c81ca +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/mall_treasure.lua b/lua/app/config/strings/zh/mall_treasure.lua new file mode 100644 index 00000000..437cfcac --- /dev/null +++ b/lua/app/config/strings/zh/mall_treasure.lua @@ -0,0 +1,24 @@ +local mall_treasure = { + [1]={ + ["name"]="一把寶石" + }, + [2]={ + ["name"]="一袋寶石" + }, + [3]={ + ["name"]="一包寶石" + }, + [4]={ + ["name"]="一箱寶石" + }, + [5]={ + ["name"]="一桶寶石" + }, + [6]={ + ["name"]="一車寶石" + } +} +local config = { +data=mall_treasure,count=6 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/mall_treasure.lua.meta b/lua/app/config/strings/zh/mall_treasure.lua.meta new file mode 100644 index 00000000..ae851efb --- /dev/null +++ b/lua/app/config/strings/zh/mall_treasure.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 85cbf6a356935b644b178a137495655e +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/mastery.lua b/lua/app/config/strings/zh/mastery.lua new file mode 100644 index 00000000..e5f4c40c --- /dev/null +++ b/lua/app/config/strings/zh/mastery.lua @@ -0,0 +1,333 @@ +local mastery = { + [1]={ + ["desc"]="普攻回復" + }, + [2]={ + ["desc"]="金幣加成" + }, + [3]={ + ["desc"]="攻擊加成" + }, + [4]={ + ["desc"]="生命加成" + }, + [5]={ + ["desc"]="放置加成" + }, + [6]={ + ["desc"]="普攻傷害加成" + }, + [7]={ + ["desc"]="金幣加成" + }, + [8]={ + ["desc"]="攻擊加成" + }, + [9]={ + ["desc"]="生命加成" + }, + [10]={ + ["desc"]="超量治療" + }, + [11]={ + ["desc"]="放置加成" + }, + [12]={ + ["desc"]="閃避加成" + }, + [13]={ + ["desc"]="金幣加成" + }, + [14]={ + ["desc"]="攻擊加成" + }, + [15]={ + ["desc"]="生命加成" + }, + [16]={ + ["desc"]="放置加成" + }, + [17]={ + ["desc"]="普攻傷害加成" + }, + [18]={ + ["desc"]="金幣加成" + }, + [19]={ + ["desc"]="攻擊加成" + }, + [20]={ + ["desc"]="生命加成" + }, + [21]={ + ["desc"]="受傷閃避" + }, + [22]={ + ["desc"]="放置加成" + }, + [23]={ + ["desc"]="閃避加成" + }, + [24]={ + ["desc"]="金幣加成" + }, + [25]={ + ["desc"]="攻擊加成" + }, + [26]={ + ["desc"]="生命加成" + }, + [27]={ + ["desc"]="放置加成" + }, + [28]={ + ["desc"]="普攻傷害加成" + }, + [29]={ + ["desc"]="金幣加成" + }, + [30]={ + ["desc"]="攻擊加成" + }, + [31]={ + ["desc"]="生命加成" + }, + [32]={ + ["desc"]="自動攻速" + }, + [33]={ + ["desc"]="放置加成" + }, + [34]={ + ["desc"]="閃避加成" + }, + [35]={ + ["desc"]="金幣加成" + }, + [36]={ + ["desc"]="攻擊加成" + }, + [37]={ + ["desc"]="生命加成" + }, + [38]={ + ["desc"]="放置加成" + }, + [39]={ + ["desc"]="普攻傷害加成" + }, + [40]={ + ["desc"]="金幣加成" + }, + [41]={ + ["desc"]="攻擊加成" + }, + [42]={ + ["desc"]="生命加成" + }, + [43]={ + ["desc"]="技能回復" + }, + [44]={ + ["desc"]="放置加成" + }, + [45]={ + ["desc"]="閃避加成" + }, + [46]={ + ["desc"]="金幣加成" + }, + [47]={ + ["desc"]="攻擊加成" + }, + [48]={ + ["desc"]="生命加成" + }, + [49]={ + ["desc"]="放置加成" + }, + [50]={ + ["desc"]="普攻傷害加成" + }, + [51]={ + ["desc"]="金幣加成" + }, + [52]={ + ["desc"]="攻擊加成" + }, + [53]={ + ["desc"]="生命加成" + }, + [54]={ + ["desc"]="普攻回復" + }, + [55]={ + ["desc"]="放置加成" + }, + [56]={ + ["desc"]="閃避加成" + }, + [57]={ + ["desc"]="金幣加成" + }, + [58]={ + ["desc"]="攻擊加成" + }, + [59]={ + ["desc"]="生命加成" + }, + [60]={ + ["desc"]="放置加成" + }, + [61]={ + ["desc"]="普攻傷害加成" + }, + [62]={ + ["desc"]="金幣加成" + }, + [63]={ + ["desc"]="攻擊加成" + }, + [64]={ + ["desc"]="生命加成" + }, + [65]={ + ["desc"]="超量治療" + }, + [66]={ + ["desc"]="放置加成" + }, + [67]={ + ["desc"]="閃避加成" + }, + [68]={ + ["desc"]="金幣加成" + }, + [69]={ + ["desc"]="攻擊加成" + }, + [70]={ + ["desc"]="生命加成" + }, + [71]={ + ["desc"]="放置加成" + }, + [72]={ + ["desc"]="普攻傷害加成" + }, + [73]={ + ["desc"]="金幣加成" + }, + [74]={ + ["desc"]="攻擊加成" + }, + [75]={ + ["desc"]="生命加成" + }, + [76]={ + ["desc"]="受傷閃避" + }, + [77]={ + ["desc"]="放置加成" + }, + [78]={ + ["desc"]="閃避加成" + }, + [79]={ + ["desc"]="金幣加成" + }, + [80]={ + ["desc"]="攻擊加成" + }, + [81]={ + ["desc"]="生命加成" + }, + [82]={ + ["desc"]="放置加成" + }, + [83]={ + ["desc"]="普攻傷害加成" + }, + [84]={ + ["desc"]="金幣加成" + }, + [85]={ + ["desc"]="攻擊加成" + }, + [86]={ + ["desc"]="生命加成" + }, + [87]={ + ["desc"]="技能回復" + }, + [88]={ + ["desc"]="放置加成" + }, + [89]={ + ["desc"]="閃避加成" + }, + [90]={ + ["desc"]="金幣加成" + }, + [91]={ + ["desc"]="攻擊加成" + }, + [92]={ + ["desc"]="生命加成" + }, + [93]={ + ["desc"]="放置加成" + }, + [94]={ + ["desc"]="普攻傷害加成" + }, + [95]={ + ["desc"]="金幣加成" + }, + [96]={ + ["desc"]="攻擊加成" + }, + [97]={ + ["desc"]="生命加成" + }, + [98]={ + ["desc"]="普攻回復" + }, + [99]={ + ["desc"]="放置加成" + }, + [100]={ + ["desc"]="閃避加成" + }, + [101]={ + ["desc"]="金幣加成" + }, + [102]={ + ["desc"]="攻擊加成" + }, + [103]={ + ["desc"]="生命加成" + }, + [104]={ + ["desc"]="放置加成" + }, + [105]={ + ["desc"]="普攻傷害加成" + }, + [106]={ + ["desc"]="金幣加成" + }, + [107]={ + ["desc"]="攻擊加成" + }, + [108]={ + ["desc"]="生命加成" + }, + [109]={ + ["desc"]="超量治療" + } +} +local config = { +data=mastery,count=109 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/mastery.lua.meta b/lua/app/config/strings/zh/mastery.lua.meta new file mode 100644 index 00000000..c33b4691 --- /dev/null +++ b/lua/app/config/strings/zh/mastery.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 16c76c06d1a825e4aa0143875446a267 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/mine_research.lua b/lua/app/config/strings/zh/mine_research.lua new file mode 100644 index 00000000..e73ffa7e --- /dev/null +++ b/lua/app/config/strings/zh/mine_research.lua @@ -0,0 +1,105 @@ +local mine_research = { + [1]={ + ["desc"]="為了知識衝!" + }, + [2]={ + ["desc"]="學習製作枯草火把" + }, + [3]={ + ["desc"]="天氣冷多穿件衣服" + }, + [4]={ + ["desc"]="火把要用完了瘋狂撿草" + }, + [5]={ + ["desc"]="撿起石頭準備砸怪物" + }, + [6]={ + ["desc"]="好好學習天天向上" + }, + [7]={ + ["desc"]="知識,更多的知識" + }, + [8]={ + ["desc"]="還是有點冷再多穿件衣服" + }, + [9]={ + ["desc"]="把石頭打磨成小刀" + }, + [10]={ + ["desc"]="枯樹枝是更好的火把" + }, + [11]={ + ["desc"]="有怪物丟石頭再多穿件衣服" + }, + [12]={ + ["desc"]="樹枝燒完了趕快撿" + }, + [13]={ + ["desc"]="掏出祖傳的生鏽鐵劍" + }, + [14]={ + ["desc"]="頭髮吊起來學得更快" + }, + [15]={ + ["desc"]="奇怪的知識增加了" + }, + [16]={ + ["desc"]="衣服擋不住石頭要穿鐵甲" + }, + [17]={ + ["desc"]="祖傳的鐵劍發光了" + }, + [18]={ + ["desc"]="終於學會了製作優秀的火把" + }, + [19]={ + ["desc"]="腦袋好疼戴個頭盔" + }, + [20]={ + ["desc"]="火把要做快點不然就沒有火把用了" + }, + [21]={ + ["desc"]="鐵皮脫落變成了鋼劍" + }, + [22]={ + ["desc"]="書讀累了就用劍刺大腿" + }, + [23]={ + ["desc"]="奇怪的知識又增加了" + }, + [24]={ + ["desc"]="手臂好疼戴個護臂" + }, + [25]={ + ["desc"]="穿衣服,不停地穿衣服" + }, + [26]={ + ["desc"]="磨劍,不停地磨劍" + }, + [27]={ + ["desc"]="穿衣服,不停地穿衣服" + }, + [28]={ + ["desc"]="磨劍,不停地磨劍" + }, + [29]={ + ["desc"]="穿衣服,不停地穿衣服" + }, + [30]={ + ["desc"]="磨劍,不停地磨劍" + }, + [31]={ + ["desc"]="穿衣服,不停地穿衣服" + }, + [32]={ + ["desc"]="磨劍,不停地磨劍" + }, + [33]={ + ["desc"]="穿衣服,不停地穿衣服" + } +} +local config = { +data=mine_research,count=33 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/mine_research.lua.meta b/lua/app/config/strings/zh/mine_research.lua.meta new file mode 100644 index 00000000..0f8801bf --- /dev/null +++ b/lua/app/config/strings/zh/mine_research.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e9a6be2bd0a78f947b570492b38335ac +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/monster_base.lua b/lua/app/config/strings/zh/monster_base.lua new file mode 100644 index 00000000..9fc4c0b2 --- /dev/null +++ b/lua/app/config/strings/zh/monster_base.lua @@ -0,0 +1,126 @@ +local monster_base = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [1001]={ + + }, + [1002]={ + + }, + [1003]={ + + }, + [1004]={ + + }, + [1005]={ + + }, + [1006]={ + + }, + [1007]={ + + }, + [1008]={ + + }, + [1009]={ + + }, + [1010]={ + + }, + [2001]={ + + }, + [2002]={ + + }, + [2003]={ + + }, + [2004]={ + + }, + [2005]={ + + }, + [2006]={ + + }, + [2007]={ + + }, + [2008]={ + + }, + [2009]={ + + }, + [2010]={ + + }, + [3001]={ + + }, + [3002]={ + + }, + [3003]={ + + }, + [3004]={ + + }, + [3005]={ + + }, + [3006]={ + + }, + [3007]={ + + }, + [3008]={ + + }, + [3009]={ + + }, + [3010]={ + + } +} +local config = { +data=monster_base,count=40 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/monster_base.lua.meta b/lua/app/config/strings/zh/monster_base.lua.meta new file mode 100644 index 00000000..51f3b0cf --- /dev/null +++ b/lua/app/config/strings/zh/monster_base.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 8354be419b3bf3c42acb523d2d10d8b4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/runes.lua b/lua/app/config/strings/zh/runes.lua new file mode 100644 index 00000000..ea9a849b --- /dev/null +++ b/lua/app/config/strings/zh/runes.lua @@ -0,0 +1,90 @@ +local runes = { + [50101]={ + ["name"]="殘影" + }, + [50102]={ + ["name"]="昂揚" + }, + [50103]={ + ["name"]="狂戰" + }, + [50104]={ + ["name"]="重擊" + }, + [50201]={ + ["name"]="回收" + }, + [50202]={ + ["name"]="靈巧" + }, + [50203]={ + ["name"]="壓制" + }, + [50204]={ + ["name"]="秘技" + }, + [50301]={ + ["name"]="烈毒" + }, + [50302]={ + ["name"]="入髓" + }, + [50303]={ + ["name"]="塗毒" + }, + [50304]={ + ["name"]="弱點" + }, + [50401]={ + ["name"]="槍花" + }, + [50402]={ + ["name"]="上挑" + }, + [50403]={ + ["name"]="本能" + }, + [50404]={ + ["name"]="悍勇" + }, + [50501]={ + ["name"]="輕甲" + }, + [50502]={ + ["name"]="布甲" + }, + [50503]={ + ["name"]="皮甲" + }, + [50504]={ + ["name"]="重甲" + }, + [50601]={ + ["name"]="劍意" + }, + [50602]={ + ["name"]="魔杖" + }, + [50603]={ + ["name"]="刃心" + }, + [50604]={ + ["name"]="槍魂" + }, + [50701]={ + ["name"]="暴怒" + }, + [50702]={ + ["name"]="靈風" + }, + [50703]={ + ["name"]="無華" + }, + [50704]={ + ["name"]="行雲" + } +} +local config = { +data=runes,count=28 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/runes.lua.meta b/lua/app/config/strings/zh/runes.lua.meta new file mode 100644 index 00000000..5708c3dc --- /dev/null +++ b/lua/app/config/strings/zh/runes.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b495ba1d3218b40469d6eb6d397b8887 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/skill.lua b/lua/app/config/strings/zh/skill.lua new file mode 100644 index 00000000..68edc376 --- /dev/null +++ b/lua/app/config/strings/zh/skill.lua @@ -0,0 +1,742 @@ +local skill = { + [11011]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11012]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11016]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21011]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21014]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21015]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31011]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31012]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31013]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41011]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41012]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41013]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [11021]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11022]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11026]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21021]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21024]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21025]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31021]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31022]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31023]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41021]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41022]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41023]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [11031]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11032]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11036]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21031]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21034]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21035]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31031]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31032]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31033]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41031]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41032]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41033]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [11041]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11042]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11046]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21041]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21044]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21045]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31041]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31042]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31043]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41041]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41042]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41043]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [11051]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11052]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11056]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21051]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21054]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21055]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31051]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31052]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31053]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41051]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41052]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41053]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [11061]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11062]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11066]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21061]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21064]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21065]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31061]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31062]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31063]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41061]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41062]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41063]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [11071]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11072]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11076]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21071]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21074]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21075]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31071]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31072]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31073]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41071]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41072]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41073]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [11081]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11082]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11086]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21081]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21084]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21085]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31081]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31082]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31083]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41081]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41082]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41083]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [11091]={ + ["name"]="血斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [11092]={ + ["name"]="裂地斬", + ["desc"]="每15次普攻後,向前打出1道裂地斬,造成相當於{0}%攻擊力的傷害" + }, + [11096]={ + ["name"]="崩山擊", + ["desc"]="每25次普攻後,召喚3把巨劍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [21091]={ + ["name"]="飛刃", + ["desc"]="每8次普攻後,召喚3把飛刃刺向敵人,造成相當於{0}%攻擊力的傷害" + }, + [21094]={ + ["name"]="毒霧", + ["desc"]="每15次普攻後,釋放1圈毒霧,持續5秒,毒霧內敵人每1秒受到相當於{0}%攻擊力的傷害,並施加中毒" + }, + [21095]={ + ["name"]="千刃殺", + ["desc"]="每25次普攻後,召喚6把飛刃絞殺敵人,造成相當於{0}%攻擊力的傷害" + }, + [31091]={ + ["name"]="半月斬", + ["desc"]="每8次普攻後,向前揮出1道斬擊,造成相當於{0}%攻擊力的傷害" + }, + [31092]={ + ["name"]="槍舞", + ["desc"]="每15次普攻後,用力揮動武器,對周圍敵人造成相當於{0}%攻擊力的傷害" + }, + [31093]={ + ["name"]="槍雨", + ["desc"]="每25次普攻後,召喚8桿長槍從天而降,造成相當於{0}%攻擊力的傷害" + }, + [41091]={ + ["name"]="旋風", + ["desc"]="每8次普攻後,向前發出1道旋風,造成相當於{0}%攻擊力的傷害,並施加3層法術印記" + }, + [41092]={ + ["name"]="極寒領域", + ["desc"]="每15次普攻後,在自己腳下召喚1個冰霜法陣,持續5秒,每0.5秒造成相當於{0}%攻擊力的傷害,並施加1層法術印記" + }, + [41093]={ + ["name"]="暗黑共振", + ["desc"]="每25次普攻後,引爆所有敵人的法術印記,每層印記造成相當於{0}%攻擊力的傷害" + }, + [400011]={ + ["name"]="避雷針", + ["desc"]="每觸發3次武器技能,對倒地的敵人劈下2道雷霆,每道造成攻擊{0}%的範圍傷害" + }, + [400021]={ + ["name"]="凝神香囊", + ["desc"]="在警示範圍內,攻擊+{0}%" + }, + [400031]={ + ["name"]="盜賊短靴", + ["desc"]="成功閃避時,攻擊提升{0}%,持續5秒,冷卻15秒" + }, + [400041]={ + ["name"]="靈巧手套", + ["desc"]="警示範圍內,擊飛傷害+{0}%,並且倒地時間延長1秒" + }, + [400051]={ + ["name"]="刺客匕首", + ["desc"]="警示範圍內,普攻爆擊率提升20%,暴擊傷害+{0}%" + }, + [401011]={ + ["name"]="家傳護符", + ["desc"]="每5次普攻,發出1道攻擊身後最近的敵人,造成攻擊*{0}%的傷害" + }, + [401021]={ + ["name"]="負重鐵甲", + ["desc"]="受傷時,擊飛身邊小怪並造成攻擊*{0}%的傷害,冷卻時間15秒" + }, + [401031]={ + ["name"]="力量手套", + ["desc"]="擊飛敵人時,擊飛傷害+{0}%,擊飛敵人數量+3" + }, + [401041]={ + ["name"]="偽裝披風", + ["desc"]="英雄滿血時,攻擊提升{0}%" + }, + [401051]={ + ["name"]="虎爪", + ["desc"]="在警示範圍內,擊飛造成的傷害+{0}%" + }, + [402011]={ + ["name"]="黑鐵錐", + ["desc"]="攻擊倒地的敵人時進行追擊,每次追擊造成攻擊*{0}%傷害" + }, + [402021]={ + ["name"]="格鬥戒指", + ["desc"]="血量低於30%時,攻擊提升{0}%" + }, + [402031]={ + ["name"]="雷紋水晶", + ["desc"]="每觸發3次武器技能,對倒地的敵人劈下2道雷霆,每道造成攻擊*{0}%的範圍傷害" + }, + [402041]={ + ["name"]="冰石面具", + ["desc"]="在警示範圍內,攻擊+{0}%" + }, + [402051]={ + ["name"]="鎖子甲", + ["desc"]="成功閃避時,攻擊提升{0}%,持續5秒,冷卻15秒" + }, + [403011]={ + ["name"]="大師長劍", + ["desc"]="警示範圍內,擊飛傷害+{0}%,並且倒地時間延長1秒" + }, + [403021]={ + ["name"]="撕裂尖刺", + ["desc"]="警示範圍內,普攻爆擊率提升20%,暴擊傷害+{0}%" + }, + [403031]={ + ["name"]="魔法水晶盾", + ["desc"]="每5次普攻,發出1道攻擊身後最近的敵人,造成攻擊*{0}%的傷害" + }, + [403041]={ + ["name"]="荊棘之甲", + ["desc"]="受傷時,擊飛身邊小怪並造成攻擊*{0}%的傷害,冷卻時間15秒" + }, + [403051]={ + ["name"]="黃金臂甲", + ["desc"]="擊飛敵人時,擊飛傷害+{0}%,擊飛敵人數量+5" + }, + [404011]={ + ["name"]="輝煌王冠", + ["desc"]="英雄滿血時,攻擊提升{0}%" + }, + [404021]={ + ["name"]="斬骨巨刀", + ["desc"]="在警示範圍內,擊飛造成的傷害+{0}%" + }, + [404031]={ + ["name"]="朗基努斯之槍", + ["desc"]="攻擊倒地的敵人時進行追擊,每次追擊造成攻擊*{0}%傷害" + }, + [404041]={ + ["name"]="嗜血魔劍", + ["desc"]="血量低於30%時,攻擊提升{0}%" + }, + [404051]={ + ["name"]="雷神之鎚", + ["desc"]="每觸發3次武器技能,對倒地的敵人劈下2道雷霆,每道造成攻擊*{0}%的範圍傷害" + }, + [405011]={ + ["name"]="智慧之匙", + ["desc"]="在警示範圍內,攻擊+{0}%" + }, + [405021]={ + ["name"]="夜神之翼", + ["desc"]="成功閃避時,攻擊提升{0}%,持續5秒,冷卻15秒" + }, + [405031]={ + ["name"]="騎士榮耀", + ["desc"]="警示範圍內,擊飛傷害+{0}%,並且倒地時間延長1秒" + }, + [405041]={ + ["name"]="真實之眼", + ["desc"]="警示範圍內,普攻爆擊率提升20%,暴擊傷害+{0}%" + }, + [405051]={ + ["name"]="菲尼克斯之淚", + ["desc"]="每5次普攻,發出1道攻擊身後最近的敵人,造成攻擊*{0}%的傷害" + }, + [406011]={ + ["name"]="裂地圖騰", + ["desc"]="受傷時,擊飛身邊小怪並造成攻擊*{0}%的傷害,冷卻時間15秒" + }, + [406021]={ + ["name"]="海神三叉戟", + ["desc"]="擊飛敵人時,擊飛傷害+{0}%,擊飛敵人數量+10" + }, + [406031]={ + ["name"]="太陽神弓", + ["desc"]="英雄滿血時,攻擊提升{0}%" + }, + [406041]={ + ["name"]="無形之刃", + ["desc"]="在警示範圍內,擊飛造成的傷害+{0}%" + }, + [406051]={ + ["name"]="永恆之槍岡格尼爾", + ["desc"]="攻擊倒地的敵人時進行追擊,每次追擊造成攻擊*{0}%傷害" + }, + [406061]={ + ["name"]="末日審判", + ["desc"]="血量低於30%時,攻擊提升{0}%" + }, + [501011]={ + ["name"]="殘影", + ["desc"]="每次觸發技能,有20%機率再釋放1次" + }, + [501021]={ + ["name"]="昂揚", + ["desc"]="滿血時,技能有50%機率額外觸發1次" + }, + [501031]={ + ["name"]="狂戰", + ["desc"]="受傷時,技能傷害增加30%,持續5秒,冷卻5秒" + }, + [501041]={ + ["name"]="重擊", + ["desc"]="普攻攻擊暈眩狀態的單位,普攻傷害提升100%" + }, + [502011]={ + ["name"]="回收", + ["desc"]="每次引爆必定保留20%法術印記層數" + }, + [502021]={ + ["name"]="靈巧", + ["desc"]="閃避+10%" + }, + [502022]={ + ["name"]="靈巧", + ["desc"]="每次閃避成功,對所有敵人加2層法術印記" + }, + [502031]={ + ["name"]="壓制", + ["desc"]="爆擊時,普攻對象額外上1層法術印記" + }, + [502041]={ + ["name"]="秘技", + ["desc"]="擊飛敵人時,有30%機率附加10層法術印記" + }, + [503011]={ + ["name"]="烈毒", + ["desc"]="毒傷有30%機率傷害提升100%" + }, + [503021]={ + ["name"]="入髓", + ["desc"]="每疊1層毒,毒傷提高5%" + }, + [503031]={ + ["name"]="塗毒", + ["desc"]="警示範圍內,每次普攻有50%機率上一層毒" + }, + [503041]={ + ["name"]="弱點", + ["desc"]="技能命中帶毒的敵人,傷害提高50%" + }, + [504011]={ + ["name"]="槍花", + ["desc"]="每次施放武器技能時,有20%機率再釋放1次" + }, + [504021]={ + ["name"]="上挑", + ["desc"]="擊飛時,有20%機率釋放一次技能3" + }, + [504031]={ + ["name"]="本能", + ["desc"]="入場後每10秒釋放1次技能2" + }, + [504041]={ + ["name"]="悍勇", + ["desc"]="技能有30%機率造成2倍傷害" + }, + [505011]={ + ["name"]="輕甲", + ["desc"]="觸發【劍】技能時,擊飛時間提升0.5秒,普攻傷害+20%,持續3秒,冷卻3秒" + }, + [505021]={ + ["name"]="布甲", + ["desc"]="觸發【法杖】技能時,附加2層法術印記" + }, + [505031]={ + ["name"]="皮甲", + ["desc"]="觸發【短刀】技能時,有20%機率額外釋放1次技能1" + }, + [505041]={ + ["name"]="重甲", + ["desc"]="觸發【長槍】技能時,有20%機率額外釋放1次技能2" + }, + [506011]={ + ["name"]="劍意", + ["desc"]="【劍】用雙手劍時,普攻爆擊率提升100%" + }, + [506021]={ + ["name"]="魔杖", + ["desc"]="【法杖】用法杖時,引爆法術印記的傷害提升50%" + }, + [506031]={ + ["name"]="刃心", + ["desc"]="【短刀】用短刀時,毒傷持續時間提升5秒" + }, + [506041]={ + ["name"]="槍魂", + ["desc"]="使用【長槍】時,技能2傷害增加100%" + }, + [507011]={ + ["name"]="暴怒", + ["desc"]="暴擊率+10%" + }, + [507021]={ + ["name"]="靈風", + ["desc"]="閃避率+10%" + }, + [507031]={ + ["name"]="無華", + ["desc"]="普攻傷害+20%" + }, + [507041]={ + ["name"]="行雲", + ["desc"]="擊飛傷害+30%" + }, + [600011]={ + ["name"]="攻擊回血", + ["desc"]="攻擊10次回復20%上限的生命" + }, + [600021]={ + ["name"]="超量治療", + ["desc"]="回復血量溢出時,會轉化為護盾,最多能形成30%血量上限的護盾值" + }, + [600031]={ + ["name"]="受傷閃避", + ["desc"]="受傷後提升50%的閃避率,持續3秒,冷卻30秒" + }, + [600041]={ + ["name"]="自動攻速", + ["desc"]="自動攻擊時,攻擊頻率提升到0.35秒/次" + }, + [600051]={ + ["name"]="技能回血", + ["desc"]="使用技能時有30%機率回復15%生命" + }, + [600061]={ + ["name"]="攻擊回血", + ["desc"]="攻擊10次回復30%上限的生命" + }, + [600071]={ + ["name"]="超量治療", + ["desc"]="回復血量溢出時,會轉化為護盾,最多能形成60%血量上限的護盾值" + }, + [600081]={ + ["name"]="受傷閃避", + ["desc"]="受傷後提升50%的閃避率,持續5秒,冷卻30秒" + }, + [600091]={ + ["name"]="技能回血", + ["desc"]="使用技能時有30%機率回復30%生命" + }, + [600101]={ + ["name"]="攻擊回血", + ["desc"]="攻擊10次回復40%上限的生命" + }, + [600111]={ + ["name"]="超量治療", + ["desc"]="回復血量溢出時,會轉化為護盾,最多能形成90%血量上限的護盾值" + } +} +local config = { +data=skill,count=184 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/skill.lua.meta b/lua/app/config/strings/zh/skill.lua.meta new file mode 100644 index 00000000..e023d0b7 --- /dev/null +++ b/lua/app/config/strings/zh/skill.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 9d7eb49d864580043b4043922f9b716a +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/task.lua b/lua/app/config/strings/zh/task.lua new file mode 100644 index 00000000..1a338859 --- /dev/null +++ b/lua/app/config/strings/zh/task.lua @@ -0,0 +1,130 @@ +local task = { + [1]={ + ["desc"]="擊潰{0}名敵人", + ["tutorial_desc"]="擊潰敵人" + }, + [2]={ + ["desc"]="通過第{0}關", + ["tutorial_desc"]="通過關卡" + }, + [3]={ + ["desc"]="進行{0}次召喚", + ["tutorial_desc"]="召喚" + }, + [4]={ + ["desc"]="收看{0}次廣告", + ["tutorial_desc"]="觀看廣告" + }, + [5]={ + ["desc"]="完成每日任務", + ["tutorial_desc"]="完成每日任務" + }, + [6]={ + ["desc"]="累積簽到{0}天", + ["tutorial_desc"]="累計簽到天數" + }, + [7]={ + ["desc"]="進行{0}次武器召喚", + ["tutorial_desc"]="武器召喚" + }, + [8]={ + ["desc"]="進行{0}次防具召喚", + ["tutorial_desc"]="防具召喚" + }, + [9]={ + ["desc"]="進行{0}次傳家寶召喚", + ["tutorial_desc"]="傳家寶召喚" + }, + [10]={ + ["desc"]="完成鑽石副本難度{0}", + ["tutorial_desc"]="完成鑽石副本難度" + }, + [11]={ + ["desc"]="完成金幣副本難度{0}", + ["tutorial_desc"]="完成金幣副本難度" + }, + [12]={ + ["desc"]="完成祕銀副本難度{0}", + ["tutorial_desc"]="完成祕銀副本難度" + }, + [13]={ + ["desc"]="完成特性副本難度{0}", + ["tutorial_desc"]="完成特性副本難度" + }, + [14]={ + ["desc"]="競技場段位達到{0}", + ["tutorial_desc"]="競技場段位" + }, + [15]={ + ["desc"]="使用{0}次火把", + ["tutorial_desc"]="使用火把次數" + }, + [16]={ + ["desc"]="使用{0}次炎彈", + ["tutorial_desc"]="使用炎彈次數" + }, + [17]={ + ["desc"]="使用{0}次聖光蠟燭", + ["tutorial_desc"]="使用聖光蠟燭次數" + }, + [18]={ + ["desc"]="完成{0}次研究", + ["tutorial_desc"]="完成研究次數" + }, + [19]={ + ["desc"]="驅散{0}片迷霧區域", + ["tutorial_desc"]="驅散迷霧次數" + }, + [20]={ + ["desc"]="探索前進{0}米", + ["tutorial_desc"]="探索前進距離" + }, + [21]={ + ["desc"]="領取{0}次祝福", + ["tutorial_desc"]="領取祝福次數" + }, + [22]={ + ["desc"]="獲得{0}個符文", + ["tutorial_desc"]="獲得符文個數" + }, + [23]={ + ["desc"]="強化{0}次符文", + ["tutorial_desc"]="強化符文" + }, + [24]={ + ["desc"]="訓練{0}次攻擊", + ["tutorial_desc"]="訓練攻擊" + }, + [25]={ + ["desc"]="訓練{0}次生命", + ["tutorial_desc"]="訓練生命" + }, + [26]={ + ["desc"]="挑戰{0}次關卡", + ["tutorial_desc"]="挑戰關卡次數" + }, + [27]={ + ["desc"]="完成{0}次鑽石副本", + ["tutorial_desc"]="完成鑽石副本次數" + }, + [28]={ + ["desc"]="完成{0}次金幣副本", + ["tutorial_desc"]="完成金幣副本次數" + }, + [29]={ + ["desc"]="完成{0}次秘銀副本", + ["tutorial_desc"]="完成祕銀副本次數" + }, + [30]={ + ["desc"]="完成{0}次特性副本", + ["tutorial_desc"]="完成特性副本次數" + }, + [31]={ + ["desc"]="挑戰{0}次競技場", + ["tutorial_desc"]="挑戰競技場次數" + } +} +local config = { +data=task,count=31 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/task.lua.meta b/lua/app/config/strings/zh/task.lua.meta new file mode 100644 index 00000000..2e9e3835 --- /dev/null +++ b/lua/app/config/strings/zh/task.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c5aa9c81739fab5438e9f43a246e2823 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/task_daily.lua b/lua/app/config/strings/zh/task_daily.lua new file mode 100644 index 00000000..65485269 --- /dev/null +++ b/lua/app/config/strings/zh/task_daily.lua @@ -0,0 +1,42 @@ +local task_daily = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/task_daily.lua.meta b/lua/app/config/strings/zh/task_daily.lua.meta new file mode 100644 index 00000000..4672a4da --- /dev/null +++ b/lua/app/config/strings/zh/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 65b5de8531cef9d468649bc53a24c1c4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/tutorial.lua b/lua/app/config/strings/zh/tutorial.lua new file mode 100644 index 00000000..38c39aab --- /dev/null +++ b/lua/app/config/strings/zh/tutorial.lua @@ -0,0 +1,72 @@ +local tutorial = { + ["TUTORIAL_TXT_1"]={ + ["value"]="來啦~選拔賽等你好久了,現在可以開始了吧!" + }, + ["TUTORIAL_TXT_2"]={ + ["value"]="現在輪到你表現了~" + }, + ["TUTORIAL_TXT_3"]={ + ["value"]="剛才的戰鬥難度較低,接下來有點難,先訓練一下自己!" + }, + ["TUTORIAL_TXT_4"]={ + ["value"]="長按可以快速訓練,先提升到5級。" + }, + ["TUTORIAL_TXT_5"]={ + ["value"]="武器功能已解鎖,讓我們先去召喚武器。" + }, + ["TUTORIAL_TXT_6"]={ + ["value"]="召喚了好多武器,快裝備上去。" + }, + ["TUTORIAL_TXT_7"]={ + ["value"]="獲取的相同武器可以用於強化,提升屬性。" + }, + ["TUTORIAL_TXT_8"]={ + ["value"]="全部強化可以強化所有可強化的武器,擁有更多高等級武器同樣能帶來屬性提升。" + }, + ["TUTORIAL_TXT_9"]={ + ["value"]="武器擁有技能,攻擊特定次數後自動釋放技能。" + }, + ["TUTORIAL_TXT_10"]={ + ["value"]="防具已解鎖,讓我們去召喚防具並裝備上去。" + }, + ["TUTORIAL_TXT_11"]={ + ["value"]="防具分為衣服和頭飾,衣服增加生命,頭飾增加攻擊&生命。" + }, + ["TUTORIAL_TXT_12"]={ + ["value"]="防具跟武器相同,可強化提升屬性。" + }, + ["TUTORIAL_TXT_13"]={ + ["value"]="自動戰鬥,輕鬆闖關!" + }, + ["TUTORIAL_TXT_14"]={ + ["value"]="傳家寶功能已解鎖,先去召喚傳家寶吧!" + }, + ["TUTORIAL_TXT_15"]={ + ["value"]="傳家寶是一些稀奇古怪的東西,看看怎麼使用~" + }, + ["TUTORIAL_TXT_16"]={ + ["value"]="強化過的傳家寶也能提供屬性成長。" + }, + ["TUTORIAL_TXT_17"]={ + ["value"]="繼續通關,可以解鎖更多的傳家寶裝備欄。" + }, + ["TUTORIAL_TXT_18"]={ + ["value"]="我們可以精通更多能力了,去看看吧!" + }, + ["TUTORIAL_TXT_19"]={ + ["value"]="城堡探索開啓了,據說有很多財寶。" + }, + ["TUTORIAL_TXT_20"]={ + ["value"]="用火把開始探索吧~" + }, + ["TUTORIAL_TXT_21"]={ + ["value"]="根據說明,一直向下探索可以獲得更多財寶!" + }, + ["TUTORIAL_TXT_22"]={ + ["value"]="想知道武器,防具和傳家寶的關係嗎?點擊這裏!" + } +} +local config = { +data=tutorial,count=22 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/tutorial.lua.meta b/lua/app/config/strings/zh/tutorial.lua.meta new file mode 100644 index 00000000..778fce8d --- /dev/null +++ b/lua/app/config/strings/zh/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 31bfad30411ffe64395bbed71b4565db +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/strings/zh/tutorialtask.lua b/lua/app/config/strings/zh/tutorialtask.lua new file mode 100644 index 00000000..05225717 --- /dev/null +++ b/lua/app/config/strings/zh/tutorialtask.lua @@ -0,0 +1,3006 @@ +local tutorialtask = { + [1]={ + + }, + [2]={ + + }, + [3]={ + + }, + [4]={ + + }, + [5]={ + + }, + [6]={ + + }, + [7]={ + + }, + [8]={ + + }, + [9]={ + + }, + [10]={ + + }, + [11]={ + + }, + [12]={ + + }, + [13]={ + + }, + [14]={ + + }, + [15]={ + + }, + [16]={ + + }, + [17]={ + + }, + [18]={ + + }, + [19]={ + + }, + [20]={ + + }, + [21]={ + + }, + [22]={ + + }, + [23]={ + + }, + [24]={ + + }, + [25]={ + + }, + [26]={ + + }, + [27]={ + + }, + [28]={ + + }, + [29]={ + + }, + [30]={ + + }, + [31]={ + + }, + [32]={ + + }, + [33]={ + + }, + [34]={ + + }, + [35]={ + + }, + [36]={ + + }, + [37]={ + + }, + [38]={ + + }, + [39]={ + + }, + [40]={ + + }, + [41]={ + + }, + [42]={ + + }, + [43]={ + + }, + [44]={ + + }, + [45]={ + + }, + [46]={ + + }, + [47]={ + + }, + [48]={ + + }, + [49]={ + + }, + [50]={ + + }, + [51]={ + + }, + [52]={ + + }, + [53]={ + + }, + [54]={ + + }, + [55]={ + + }, + [56]={ + + }, + [57]={ + + }, + [58]={ + + }, + [59]={ + + }, + [60]={ + + }, + [61]={ + + }, + [62]={ + + }, + [63]={ + + }, + [64]={ + + }, + [65]={ + + }, + [66]={ + + }, + [67]={ + + }, + [68]={ + + }, + [69]={ + + }, + [70]={ + + }, + [71]={ + + }, + [72]={ + + }, + [73]={ + + }, + [74]={ + + }, + [75]={ + + }, + [76]={ + + }, + [77]={ + + }, + [78]={ + + }, + [79]={ + + }, + [80]={ + + }, + [81]={ + + }, + [82]={ + + }, + [83]={ + + }, + [84]={ + + }, + [85]={ + + }, + [86]={ + + }, + [87]={ + + }, + [88]={ + + }, + [89]={ + + }, + [90]={ + + }, + [91]={ + + }, + [92]={ + + }, + [93]={ + + }, + [94]={ + + }, + [95]={ + + }, + [96]={ + + }, + [97]={ + + }, + [98]={ + + }, + [99]={ + + }, + [100]={ + + }, + [101]={ + + }, + [102]={ + + }, + [103]={ + + }, + [104]={ + + }, + [105]={ + + }, + [106]={ + + }, + [107]={ + + }, + [108]={ + + }, + [109]={ + + }, + [110]={ + + }, + [111]={ + + }, + [112]={ + + }, + [113]={ + + }, + [114]={ + + }, + [115]={ + + }, + [116]={ + + }, + [117]={ + + }, + [118]={ + + }, + [119]={ + + }, + [120]={ + + }, + [121]={ + + }, + [122]={ + + }, + [123]={ + + }, + [124]={ + + }, + [125]={ + + }, + [126]={ + + }, + [127]={ + + }, + [128]={ + + }, + [129]={ + + }, + [130]={ + + }, + [131]={ + + }, + [132]={ + + }, + [133]={ + + }, + [134]={ + + }, + [135]={ + + }, + [136]={ + + }, + [137]={ + + }, + [138]={ + + }, + [139]={ + + }, + [140]={ + + }, + [141]={ + + }, + [142]={ + + }, + [143]={ + + }, + [144]={ + + }, + [145]={ + + }, + [146]={ + + }, + [147]={ + + }, + [148]={ + + }, + [149]={ + + }, + [150]={ + + }, + [151]={ + + }, + [152]={ + + }, + [153]={ + + }, + [154]={ + + }, + [155]={ + + }, + [156]={ + + }, + [157]={ + + }, + [158]={ + + }, + [159]={ + + }, + [160]={ + + }, + [161]={ + + }, + [162]={ + + }, + [163]={ + + }, + [164]={ + + }, + [165]={ + + }, + [166]={ + + }, + [167]={ + + }, + [168]={ + + }, + [169]={ + + }, + [170]={ + + }, + [171]={ + + }, + [172]={ + + }, + [173]={ + + }, + [174]={ + + }, + [175]={ + + }, + [176]={ + + }, + [177]={ + + }, + [178]={ + + }, + [179]={ + + }, + [180]={ + + }, + [181]={ + + }, + [182]={ + + }, + [183]={ + + }, + [184]={ + + }, + [185]={ + + }, + [186]={ + + }, + [187]={ + + }, + [188]={ + + }, + [189]={ + + }, + [190]={ + + }, + [191]={ + + }, + [192]={ + + }, + [193]={ + + }, + [194]={ + + }, + [195]={ + + }, + [196]={ + + }, + [197]={ + + }, + [198]={ + + }, + [199]={ + + }, + [200]={ + + }, + [201]={ + + }, + [202]={ + + }, + [203]={ + + }, + [204]={ + + }, + [205]={ + + }, + [206]={ + + }, + [207]={ + + }, + [208]={ + + }, + [209]={ + + }, + [210]={ + + }, + [211]={ + + }, + [212]={ + + }, + [213]={ + + }, + [214]={ + + }, + [215]={ + + }, + [216]={ + + }, + [217]={ + + }, + [218]={ + + }, + [219]={ + + }, + [220]={ + + }, + [221]={ + + }, + [222]={ + + }, + [223]={ + + }, + [224]={ + + }, + [225]={ + + }, + [226]={ + + }, + [227]={ + + }, + [228]={ + + }, + [229]={ + + }, + [230]={ + + }, + [231]={ + + }, + [232]={ + + }, + [233]={ + + }, + [234]={ + + }, + [235]={ + + }, + [236]={ + + }, + [237]={ + + }, + [238]={ + + }, + [239]={ + + }, + [240]={ + + }, + [241]={ + + }, + [242]={ + + }, + [243]={ + + }, + [244]={ + + }, + [245]={ + + }, + [246]={ + + }, + [247]={ + + }, + [248]={ + + }, + [249]={ + + }, + [250]={ + + }, + [251]={ + + }, + [252]={ + + }, + [253]={ + + }, + [254]={ + + }, + [255]={ + + }, + [256]={ + + }, + [257]={ + + }, + [258]={ + + }, + [259]={ + + }, + [260]={ + + }, + [261]={ + + }, + [262]={ + + }, + [263]={ + + }, + [264]={ + + }, + [265]={ + + }, + [266]={ + + }, + [267]={ + + }, + [268]={ + + }, + [269]={ + + }, + [270]={ + + }, + [271]={ + + }, + [272]={ + + }, + [273]={ + + }, + [274]={ + + }, + [275]={ + + }, + [276]={ + + }, + [277]={ + + }, + [278]={ + + }, + [279]={ + + }, + [280]={ + + }, + [281]={ + + }, + [282]={ + + }, + [283]={ + + }, + [284]={ + + }, + [285]={ + + }, + [286]={ + + }, + [287]={ + + }, + [288]={ + + }, + [289]={ + + }, + [290]={ + + }, + [291]={ + + }, + [292]={ + + }, + [293]={ + + }, + [294]={ + + }, + [295]={ + + }, + [296]={ + + }, + [297]={ + + }, + [298]={ + + }, + [299]={ + + }, + [300]={ + + }, + [301]={ + + }, + [302]={ + + }, + [303]={ + + }, + [304]={ + + }, + [305]={ + + }, + [306]={ + + }, + [307]={ + + }, + [308]={ + + }, + [309]={ + + }, + [310]={ + + }, + [311]={ + + }, + [312]={ + + }, + [313]={ + + }, + [314]={ + + }, + [315]={ + + }, + [316]={ + + }, + [317]={ + + }, + [318]={ + + }, + [319]={ + + }, + [320]={ + + }, + [321]={ + + }, + [322]={ + + }, + [323]={ + + }, + [324]={ + + }, + [325]={ + + }, + [326]={ + + }, + [327]={ + + }, + [328]={ + + }, + [329]={ + + }, + [330]={ + + }, + [331]={ + + }, + [332]={ + + }, + [333]={ + + }, + [334]={ + + }, + [335]={ + + }, + [336]={ + + }, + [337]={ + + }, + [338]={ + + }, + [339]={ + + }, + [340]={ + + }, + [341]={ + + }, + [342]={ + + }, + [343]={ + + }, + [344]={ + + }, + [345]={ + + }, + [346]={ + + }, + [347]={ + + }, + [348]={ + + }, + [349]={ + + }, + [350]={ + + }, + [351]={ + + }, + [352]={ + + }, + [353]={ + + }, + [354]={ + + }, + [355]={ + + }, + [356]={ + + }, + [357]={ + + }, + [358]={ + + }, + [359]={ + + }, + [360]={ + + }, + [361]={ + + }, + [362]={ + + }, + [363]={ + + }, + [364]={ + + }, + [365]={ + + }, + [366]={ + + }, + [367]={ + + }, + [368]={ + + }, + [369]={ + + }, + [370]={ + + }, + [371]={ + + }, + [372]={ + + }, + [373]={ + + }, + [374]={ + + }, + [375]={ + + }, + [376]={ + + }, + [377]={ + + }, + [378]={ + + }, + [379]={ + + }, + [380]={ + + }, + [381]={ + + }, + [382]={ + + }, + [383]={ + + }, + [384]={ + + }, + [385]={ + + }, + [386]={ + + }, + [387]={ + + }, + [388]={ + + }, + [389]={ + + }, + [390]={ + + }, + [391]={ + + }, + [392]={ + + }, + [393]={ + + }, + [394]={ + + }, + [395]={ + + }, + [396]={ + + }, + [397]={ + + }, + [398]={ + + }, + [399]={ + + }, + [400]={ + + }, + [401]={ + + }, + [402]={ + + }, + [403]={ + + }, + [404]={ + + }, + [405]={ + + }, + [406]={ + + }, + [407]={ + + }, + [408]={ + + }, + [409]={ + + }, + [410]={ + + }, + [411]={ + + }, + [412]={ + + }, + [413]={ + + }, + [414]={ + + }, + [415]={ + + }, + [416]={ + + }, + [417]={ + + }, + [418]={ + + }, + [419]={ + + }, + [420]={ + + }, + [421]={ + + }, + [422]={ + + }, + [423]={ + + }, + [424]={ + + }, + [425]={ + + }, + [426]={ + + }, + [427]={ + + }, + [428]={ + + }, + [429]={ + + }, + [430]={ + + }, + [431]={ + + }, + [432]={ + + }, + [433]={ + + }, + [434]={ + + }, + [435]={ + + }, + [436]={ + + }, + [437]={ + + }, + [438]={ + + }, + [439]={ + + }, + [440]={ + + }, + [441]={ + + }, + [442]={ + + }, + [443]={ + + }, + [444]={ + + }, + [445]={ + + }, + [446]={ + + }, + [447]={ + + }, + [448]={ + + }, + [449]={ + + }, + [450]={ + + }, + [451]={ + + }, + [452]={ + + }, + [453]={ + + }, + [454]={ + + }, + [455]={ + + }, + [456]={ + + }, + [457]={ + + }, + [458]={ + + }, + [459]={ + + }, + [460]={ + + }, + [461]={ + + }, + [462]={ + + }, + [463]={ + + }, + [464]={ + + }, + [465]={ + + }, + [466]={ + + }, + [467]={ + + }, + [468]={ + + }, + [469]={ + + }, + [470]={ + + }, + [471]={ + + }, + [472]={ + + }, + [473]={ + + }, + [474]={ + + }, + [475]={ + + }, + [476]={ + + }, + [477]={ + + }, + [478]={ + + }, + [479]={ + + }, + [480]={ + + }, + [481]={ + + }, + [482]={ + + }, + [483]={ + + }, + [484]={ + + }, + [485]={ + + }, + [486]={ + + }, + [487]={ + + }, + [488]={ + + }, + [489]={ + + }, + [490]={ + + }, + [491]={ + + }, + [492]={ + + }, + [493]={ + + }, + [494]={ + + }, + [495]={ + + }, + [496]={ + + }, + [497]={ + + }, + [498]={ + + }, + [499]={ + + }, + [500]={ + + }, + [501]={ + + }, + [502]={ + + }, + [503]={ + + }, + [504]={ + + }, + [505]={ + + }, + [506]={ + + }, + [507]={ + + }, + [508]={ + + }, + [509]={ + + }, + [510]={ + + }, + [511]={ + + }, + [512]={ + + }, + [513]={ + + }, + [514]={ + + }, + [515]={ + + }, + [516]={ + + }, + [517]={ + + }, + [518]={ + + }, + [519]={ + + }, + [520]={ + + }, + [521]={ + + }, + [522]={ + + }, + [523]={ + + }, + [524]={ + + }, + [525]={ + + }, + [526]={ + + }, + [527]={ + + }, + [528]={ + + }, + [529]={ + + }, + [530]={ + + }, + [531]={ + + }, + [532]={ + + }, + [533]={ + + }, + [534]={ + + }, + [535]={ + + }, + [536]={ + + }, + [537]={ + + }, + [538]={ + + }, + [539]={ + + }, + [540]={ + + }, + [541]={ + + }, + [542]={ + + }, + [543]={ + + }, + [544]={ + + }, + [545]={ + + }, + [546]={ + + }, + [547]={ + + }, + [548]={ + + }, + [549]={ + + }, + [550]={ + + }, + [551]={ + + }, + [552]={ + + }, + [553]={ + + }, + [554]={ + + }, + [555]={ + + }, + [556]={ + + }, + [557]={ + + }, + [558]={ + + }, + [559]={ + + }, + [560]={ + + }, + [561]={ + + }, + [562]={ + + }, + [563]={ + + }, + [564]={ + + }, + [565]={ + + }, + [566]={ + + }, + [567]={ + + }, + [568]={ + + }, + [569]={ + + }, + [570]={ + + }, + [571]={ + + }, + [572]={ + + }, + [573]={ + + }, + [574]={ + + }, + [575]={ + + }, + [576]={ + + }, + [577]={ + + }, + [578]={ + + }, + [579]={ + + }, + [580]={ + + }, + [581]={ + + }, + [582]={ + + }, + [583]={ + + }, + [584]={ + + }, + [585]={ + + }, + [586]={ + + }, + [587]={ + + }, + [588]={ + + }, + [589]={ + + }, + [590]={ + + }, + [591]={ + + }, + [592]={ + + }, + [593]={ + + }, + [594]={ + + }, + [595]={ + + }, + [596]={ + + }, + [597]={ + + }, + [598]={ + + }, + [599]={ + + }, + [600]={ + + }, + [601]={ + + }, + [602]={ + + }, + [603]={ + + }, + [604]={ + + }, + [605]={ + + }, + [606]={ + + }, + [607]={ + + }, + [608]={ + + }, + [609]={ + + }, + [610]={ + + }, + [611]={ + + }, + [612]={ + + }, + [613]={ + + }, + [614]={ + + }, + [615]={ + + }, + [616]={ + + }, + [617]={ + + }, + [618]={ + + }, + [619]={ + + }, + [620]={ + + }, + [621]={ + + }, + [622]={ + + }, + [623]={ + + }, + [624]={ + + }, + [625]={ + + }, + [626]={ + + }, + [627]={ + + }, + [628]={ + + }, + [629]={ + + }, + [630]={ + + }, + [631]={ + + }, + [632]={ + + }, + [633]={ + + }, + [634]={ + + }, + [635]={ + + }, + [636]={ + + }, + [637]={ + + }, + [638]={ + + }, + [639]={ + + }, + [640]={ + + }, + [641]={ + + }, + [642]={ + + }, + [643]={ + + }, + [644]={ + + }, + [645]={ + + }, + [646]={ + + }, + [647]={ + + }, + [648]={ + + }, + [649]={ + + }, + [650]={ + + }, + [651]={ + + }, + [652]={ + + }, + [653]={ + + }, + [654]={ + + }, + [655]={ + + }, + [656]={ + + }, + [657]={ + + }, + [658]={ + + }, + [659]={ + + }, + [660]={ + + }, + [661]={ + + }, + [662]={ + + }, + [663]={ + + }, + [664]={ + + }, + [665]={ + + }, + [666]={ + + }, + [667]={ + + }, + [668]={ + + }, + [669]={ + + }, + [670]={ + + }, + [671]={ + + }, + [672]={ + + }, + [673]={ + + }, + [674]={ + + }, + [675]={ + + }, + [676]={ + + }, + [677]={ + + }, + [678]={ + + }, + [679]={ + + }, + [680]={ + + }, + [681]={ + + }, + [682]={ + + }, + [683]={ + + }, + [684]={ + + }, + [685]={ + + }, + [686]={ + + }, + [687]={ + + }, + [688]={ + + }, + [689]={ + + }, + [690]={ + + }, + [691]={ + + }, + [692]={ + + }, + [693]={ + + }, + [694]={ + + }, + [695]={ + + }, + [696]={ + + }, + [697]={ + + }, + [698]={ + + }, + [699]={ + + }, + [700]={ + + }, + [701]={ + + }, + [702]={ + + }, + [703]={ + + }, + [704]={ + + }, + [705]={ + + }, + [706]={ + + }, + [707]={ + + }, + [708]={ + + }, + [709]={ + + }, + [710]={ + + }, + [711]={ + + }, + [712]={ + + }, + [713]={ + + }, + [714]={ + + }, + [715]={ + + }, + [716]={ + + }, + [717]={ + + }, + [718]={ + + }, + [719]={ + + }, + [720]={ + + }, + [721]={ + + }, + [722]={ + + }, + [723]={ + + }, + [724]={ + + }, + [725]={ + + }, + [726]={ + + }, + [727]={ + + }, + [728]={ + + }, + [729]={ + + }, + [730]={ + + }, + [731]={ + + }, + [732]={ + + }, + [733]={ + + }, + [734]={ + + }, + [735]={ + + }, + [736]={ + + }, + [737]={ + + }, + [738]={ + + }, + [739]={ + + }, + [740]={ + + }, + [741]={ + + }, + [742]={ + + }, + [743]={ + + }, + [744]={ + + }, + [745]={ + + }, + [746]={ + + }, + [747]={ + + }, + [748]={ + + }, + [749]={ + + }, + [750]={ + + }, + [751]={ + + }, + [752]={ + + }, + [753]={ + + }, + [754]={ + + }, + [755]={ + + }, + [756]={ + + }, + [757]={ + + }, + [758]={ + + }, + [759]={ + + }, + [760]={ + + }, + [761]={ + + }, + [762]={ + + }, + [763]={ + + }, + [764]={ + + }, + [765]={ + + }, + [766]={ + + }, + [767]={ + + }, + [768]={ + + }, + [769]={ + + }, + [770]={ + + }, + [771]={ + + }, + [772]={ + + }, + [773]={ + + }, + [774]={ + + }, + [775]={ + + }, + [776]={ + + }, + [777]={ + + }, + [778]={ + + }, + [779]={ + + }, + [780]={ + + }, + [781]={ + + }, + [782]={ + + }, + [783]={ + + }, + [784]={ + + }, + [785]={ + + }, + [786]={ + + }, + [787]={ + + }, + [788]={ + + }, + [789]={ + + }, + [790]={ + + }, + [791]={ + + }, + [792]={ + + }, + [793]={ + + }, + [794]={ + + }, + [795]={ + + }, + [796]={ + + }, + [797]={ + + }, + [798]={ + + }, + [799]={ + + }, + [800]={ + + }, + [801]={ + + }, + [802]={ + + }, + [803]={ + + }, + [804]={ + + }, + [805]={ + + }, + [806]={ + + }, + [807]={ + + }, + [808]={ + + }, + [809]={ + + }, + [810]={ + + }, + [811]={ + + }, + [812]={ + + }, + [813]={ + + }, + [814]={ + + }, + [815]={ + + }, + [816]={ + + }, + [817]={ + + }, + [818]={ + + }, + [819]={ + + }, + [820]={ + + }, + [821]={ + + }, + [822]={ + + }, + [823]={ + + }, + [824]={ + + }, + [825]={ + + }, + [826]={ + + }, + [827]={ + + }, + [828]={ + + }, + [829]={ + + }, + [830]={ + + }, + [831]={ + + }, + [832]={ + + }, + [833]={ + + }, + [834]={ + + }, + [835]={ + + }, + [836]={ + + }, + [837]={ + + }, + [838]={ + + }, + [839]={ + + }, + [840]={ + + }, + [841]={ + + }, + [842]={ + + }, + [843]={ + + }, + [844]={ + + }, + [845]={ + + }, + [846]={ + + }, + [847]={ + + }, + [848]={ + + }, + [849]={ + + }, + [850]={ + + }, + [851]={ + + }, + [852]={ + + }, + [853]={ + + }, + [854]={ + + }, + [855]={ + + }, + [856]={ + + }, + [857]={ + + }, + [858]={ + + }, + [859]={ + + }, + [860]={ + + }, + [861]={ + + }, + [862]={ + + }, + [863]={ + + }, + [864]={ + + }, + [865]={ + + }, + [866]={ + + }, + [867]={ + + }, + [868]={ + + }, + [869]={ + + }, + [870]={ + + }, + [871]={ + + }, + [872]={ + + }, + [873]={ + + }, + [874]={ + + }, + [875]={ + + }, + [876]={ + + }, + [877]={ + + }, + [878]={ + + }, + [879]={ + + }, + [880]={ + + }, + [881]={ + + }, + [882]={ + + }, + [883]={ + + }, + [884]={ + + }, + [885]={ + + }, + [886]={ + + }, + [887]={ + + }, + [888]={ + + }, + [889]={ + + }, + [890]={ + + }, + [891]={ + + }, + [892]={ + + }, + [893]={ + + }, + [894]={ + + }, + [895]={ + + }, + [896]={ + + }, + [897]={ + + }, + [898]={ + + }, + [899]={ + + }, + [900]={ + + }, + [901]={ + + }, + [902]={ + + }, + [903]={ + + }, + [904]={ + + }, + [905]={ + + }, + [906]={ + + }, + [907]={ + + }, + [908]={ + + }, + [909]={ + + }, + [910]={ + + }, + [911]={ + + }, + [912]={ + + }, + [913]={ + + }, + [914]={ + + }, + [915]={ + + }, + [916]={ + + }, + [917]={ + + }, + [918]={ + + }, + [919]={ + + }, + [920]={ + + }, + [921]={ + + }, + [922]={ + + }, + [923]={ + + }, + [924]={ + + }, + [925]={ + + }, + [926]={ + + }, + [927]={ + + }, + [928]={ + + }, + [929]={ + + }, + [930]={ + + }, + [931]={ + + }, + [932]={ + + }, + [933]={ + + }, + [934]={ + + }, + [935]={ + + }, + [936]={ + + }, + [937]={ + + }, + [938]={ + + }, + [939]={ + + }, + [940]={ + + }, + [941]={ + + }, + [942]={ + + }, + [943]={ + + }, + [944]={ + + }, + [945]={ + + }, + [946]={ + + }, + [947]={ + + }, + [948]={ + + }, + [949]={ + + }, + [950]={ + + }, + [951]={ + + }, + [952]={ + + }, + [953]={ + + }, + [954]={ + + }, + [955]={ + + }, + [956]={ + + }, + [957]={ + + }, + [958]={ + + }, + [959]={ + + }, + [960]={ + + }, + [961]={ + + }, + [962]={ + + }, + [963]={ + + }, + [964]={ + + }, + [965]={ + + }, + [966]={ + + }, + [967]={ + + }, + [968]={ + + }, + [969]={ + + }, + [970]={ + + }, + [971]={ + + }, + [972]={ + + }, + [973]={ + + }, + [974]={ + + }, + [975]={ + + }, + [976]={ + + }, + [977]={ + + }, + [978]={ + + }, + [979]={ + + }, + [980]={ + + }, + [981]={ + + }, + [982]={ + + }, + [983]={ + + }, + [984]={ + + }, + [985]={ + + }, + [986]={ + + }, + [987]={ + + }, + [988]={ + + }, + [989]={ + + }, + [990]={ + + }, + [991]={ + + }, + [992]={ + + }, + [993]={ + + }, + [994]={ + + }, + [995]={ + + }, + [996]={ + + }, + [997]={ + + }, + [998]={ + + }, + [999]={ + + }, + [1000]={ + + } +} +local config = { +data=tutorialtask,count=1000 +} +return config \ No newline at end of file diff --git a/lua/app/config/strings/zh/tutorialtask.lua.meta b/lua/app/config/strings/zh/tutorialtask.lua.meta new file mode 100644 index 00000000..caf36694 --- /dev/null +++ b/lua/app/config/strings/zh/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 349df7b129c73854084710631c321a5f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/struct.lua b/lua/app/config/struct.lua new file mode 100644 index 00000000..c6a8b7a0 --- /dev/null +++ b/lua/app/config/struct.lua @@ -0,0 +1,48 @@ +local struct = { + ["effect"]={ + ["parameter1"]="type:string", + ["parameter2"]="num:int", + ["parameter3"]="time:int", + ["parameter4"]="ratio:int" + }, + ["attr"]={ + ["parameter1"]="type:string", + ["parameter2"]="bignum:bignum" + }, + ["reward"]={ + ["parameter1"]="type:int", + ["parameter2"]="id:int", + ["parameter3"]="count:bignum" + }, + ["drop"]={ + ["parameter1"]="type:int", + ["parameter2"]="id:int", + ["parameter3"]="num:int", + ["parameter4"]="weight:int" + }, + ["battle_box"]={ + ["parameter1"]="id:int", + ["parameter2"]="num:int" + }, + ["summon"]={ + ["parameter1"]="id:int", + ["parameter2"]="weight:int" + }, + ["battle_effect"]={ + ["parameter1"]="target:int", + ["parameter2"]="type:string", + ["parameter3"]="num:int" + }, + ["jewelrysummon"]={ + ["parameter1"]="id:int", + ["parameter2"]="num:int" + }, + ["bignum"]={ + ["parameter1"]="value:int", + ["parameter2"]="unit:int" + } +} +local config = { +data=struct,count=9 +} +return config \ No newline at end of file diff --git a/lua/app/config/struct.lua.meta b/lua/app/config/struct.lua.meta new file mode 100644 index 00000000..153b9589 --- /dev/null +++ b/lua/app/config/struct.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 124dd6991e1185f40ab21c1779c8af11 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/summon.lua b/lua/app/config/summon.lua new file mode 100644 index 00000000..998390af --- /dev/null +++ b/lua/app/config/summon.lua @@ -0,0 +1,459 @@ +local summon = { + [1]={ + ["level"]={ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + }, + ["exp"]={ + 35, + 70, + 105, + 210, + 420, + 1260, + 4000, + 10000, + 20000 + }, + ["ad_summon_times"]=10, + ["ad_summon_times_up"]=1, + ["ad_summon_times_max"]=35, + ["rate_white"]={ + 1000000, + 750000, + 640000, + 510000, + 298750, + 0, + 0, + 0, + 0, + 0 + }, + ["rate_green"]={ + 0, + 250000, + 300000, + 350000, + 400000, + 517300, + 274599, + 149195, + 23380, + 16700 + }, + ["rate_blue"]={ + 0, + 0, + 60000, + 120000, + 240000, + 360000, + 480000, + 480000, + 480000, + 360000 + }, + ["rate_purple"]={ + 0, + 0, + 0, + 20000, + 60000, + 120000, + 240000, + 360000, + 480000, + 600000 + }, + ["rate_orange"]={ + 0, + 0, + 0, + 0, + 1250, + 2500, + 5000, + 10000, + 15000, + 20000 + }, + ["rate_spgreen"]={ + 0, + 0, + 0, + 0, + 0, + 200, + 400, + 800, + 1600, + 3200 + }, + ["rate_red"]={ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 5, + 20, + 100 + }, + ["summon_bg"]="recharge_bg_4", + ["summon_eff"]="recharge_dec_2", + ["first_summon"]={ + 10201, + 10301, + 10001, + 10301, + 10301, + 10101, + 10101, + 10001, + 10101, + 10201, + 10201, + 10001, + 10201, + 10001, + 10301, + 10001, + 10101, + 10301, + 10001, + 10001, + 10201, + 10201, + 10201, + 10301, + 10301, + 10101, + 10301, + 10101, + 10301, + 10201, + 10301, + 10201, + 10001, + 10201, + 10301 + } + }, + [2]={ + ["level"]={ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + }, + ["exp"]={ + 35, + 70, + 105, + 210, + 420, + 1260, + 4000, + 10000, + 20000 + }, + ["ad_summon_times"]=10, + ["ad_summon_times_up"]=1, + ["ad_summon_times_max"]=35, + ["rate_white"]={ + 1000000, + 750000, + 640000, + 510000, + 298750, + 0, + 0, + 0, + 0, + 0 + }, + ["rate_green"]={ + 0, + 250000, + 300000, + 350000, + 400000, + 517300, + 274599, + 149195, + 23380, + 16700 + }, + ["rate_blue"]={ + 0, + 0, + 60000, + 120000, + 240000, + 360000, + 480000, + 480000, + 480000, + 360000 + }, + ["rate_purple"]={ + 0, + 0, + 0, + 20000, + 60000, + 120000, + 240000, + 360000, + 480000, + 600000 + }, + ["rate_orange"]={ + 0, + 0, + 0, + 0, + 1250, + 2500, + 5000, + 10000, + 15000, + 20000 + }, + ["rate_spgreen"]={ + 0, + 0, + 0, + 0, + 0, + 200, + 400, + 800, + 1600, + 3200 + }, + ["rate_red"]={ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 5, + 20, + 100 + }, + ["summon_bg"]="recharge_bg_5", + ["summon_eff"]="recharge_dec_3", + ["first_summon"]={ + 30301, + 30201, + 20001, + 20201, + 30301, + 20201, + 20301, + 30101, + 30301, + 20201, + 30201, + 30101, + 20301, + 20201, + 20101, + 30201, + 20101, + 20301, + 30301, + 30001, + 20001, + 20001, + 30301, + 20301, + 20301, + 20301, + 20101, + 30001, + 30001, + 30101, + 30001, + 20101, + 30001, + 30101, + 30201 + } + }, + [3]={ + ["level"]={ + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9, + 10 + }, + ["exp"]={ + 35, + 70, + 105, + 210, + 420, + 1260, + 4000, + 10000, + 20000 + }, + ["ad_summon_times"]=10, + ["ad_summon_times_up"]=1, + ["ad_summon_times_max"]=35, + ["rate_white"]={ + 1000000, + 750000, + 640000, + 510000, + 298750, + 0, + 0, + 0, + 0, + 0 + }, + ["rate_green"]={ + 0, + 250000, + 300000, + 350000, + 400000, + 517300, + 274599, + 149195, + 23380, + 16700 + }, + ["rate_blue"]={ + 0, + 0, + 60000, + 120000, + 240000, + 360000, + 480000, + 480000, + 480000, + 360000 + }, + ["rate_purple"]={ + 0, + 0, + 0, + 20000, + 60000, + 120000, + 240000, + 360000, + 480000, + 600000 + }, + ["rate_orange"]={ + 0, + 0, + 0, + 0, + 1250, + 2500, + 5000, + 10000, + 15000, + 20000 + }, + ["rate_spgreen"]={ + 0, + 0, + 0, + 0, + 0, + 200, + 400, + 800, + 1600, + 3200 + }, + ["rate_red"]={ + 0, + 0, + 0, + 0, + 0, + 0, + 1, + 5, + 20, + 100 + }, + ["summon_bg"]="recharge_bg_6", + ["summon_eff"]="recharge_dec_4", + ["first_summon"]={ + 40002, + 40002, + 40002, + 40005, + 40004, + 40004, + 40005, + 40004, + 40005, + 40001, + 40003, + 40001, + 40001, + 40003, + 40001, + 40004, + 40003, + 40001, + 40005, + 40001, + 40001, + 40002, + 40004, + 40005, + 40003, + 40002, + 40005, + 40001, + 40004, + 40002, + 40005, + 40004, + 40003, + 40003, + 40005 + } + } +} +local config = { +data=summon,count=3 +} +return config \ No newline at end of file diff --git a/lua/app/config/summon.lua.meta b/lua/app/config/summon.lua.meta new file mode 100644 index 00000000..c4e53c5e --- /dev/null +++ b/lua/app/config/summon.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: fe7a2e1ee8bc57b449f1694a89258ec6 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/task_daily.lua b/lua/app/config/task_daily.lua new file mode 100644 index 00000000..d0ac9069 --- /dev/null +++ b/lua/app/config/task_daily.lua @@ -0,0 +1,155 @@ +local task_daily = { + [1]={ + ["type"]=1, + ["number"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [2]={ + ["type"]=26, + ["number"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [3]={ + ["type"]=3, + ["number"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [4]={ + ["type"]=4, + ["number"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [5]={ + ["type"]=27, + ["number"]=1, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [6]={ + ["type"]=28, + ["number"]=1, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [7]={ + ["type"]=5, + ["number"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1000, + ["unit"]=0 + } + } + }, + [8]={ + ["type"]=1, + ["number"]=500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["rew_type"]=1 + }, + [9]={ + ["type"]=26, + ["number"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["rew_type"]=1 + }, + [10]={ + ["type"]=3, + ["number"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["rew_type"]=1 + }, + [11]={ + ["type"]=27, + ["number"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["rew_type"]=1 + }, + [12]={ + ["type"]=28, + ["number"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + }, + ["rew_type"]=1 + } +} +local config = { +data=task_daily,count=12 +} +return config \ No newline at end of file diff --git a/lua/app/config/task_daily.lua.meta b/lua/app/config/task_daily.lua.meta new file mode 100644 index 00000000..741b0bff --- /dev/null +++ b/lua/app/config/task_daily.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 80dc06e2b2b78d64fb47af201a3d3c47 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/train.lua b/lua/app/config/train.lua new file mode 100644 index 00000000..7be8f88e --- /dev/null +++ b/lua/app/config/train.lua @@ -0,0 +1,3673 @@ +local train = { + [1]={ + ["lv_stage"]=0, + ["cost_atk"]={ + ["value"]=0, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=1, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=0, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [2]={ + ["lv_stage"]=100, + ["cost_atk"]={ + ["value"]=100, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=1, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=100, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [3]={ + ["lv_stage"]=200, + ["cost_atk"]={ + ["value"]=200, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=1, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=200, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [4]={ + ["lv_stage"]=500, + ["cost_atk"]={ + ["value"]=500, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=1, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=500, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=1, + ["unit"]=0 + } + }, + [5]={ + ["lv_stage"]=1000, + ["cost_atk"]={ + ["value"]=1000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=5, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=1000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [6]={ + ["lv_stage"]=1500, + ["cost_atk"]={ + ["value"]=3500, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=5, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=3500, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=5, + ["unit"]=0 + } + }, + [7]={ + ["lv_stage"]=2000, + ["cost_atk"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=12, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=6000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [8]={ + ["lv_stage"]=2500, + ["cost_atk"]={ + ["value"]=12000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=12, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=12000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=12, + ["unit"]=0 + } + }, + [9]={ + ["lv_stage"]=3000, + ["cost_atk"]={ + ["value"]=18000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=60, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=18000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [10]={ + ["lv_stage"]=3500, + ["cost_atk"]={ + ["value"]=48000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=60, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=48000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=60, + ["unit"]=0 + } + }, + [11]={ + ["lv_stage"]=4000, + ["cost_atk"]={ + ["value"]=78000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=196, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=78000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [12]={ + ["lv_stage"]=4500, + ["cost_atk"]={ + ["value"]=176000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=196, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=176000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=196, + ["unit"]=0 + } + }, + [13]={ + ["lv_stage"]=5000, + ["cost_atk"]={ + ["value"]=274000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=892, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=274000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [14]={ + ["lv_stage"]=5500, + ["cost_atk"]={ + ["value"]=720000, + ["unit"]=0 + }, + ["cost_atk_difference"]={ + ["value"]=892, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=720000, + ["unit"]=0 + }, + ["cost_hp_difference"]={ + ["value"]=892, + ["unit"]=0 + } + }, + [15]={ + ["lv_stage"]=6000, + ["cost_atk"]={ + ["value"]=1166, + ["unit"]=1 + }, + ["cost_atk_difference"]={ + ["value"]=5748, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=1166, + ["unit"]=1 + }, + ["cost_hp_difference"]={ + ["value"]=5748, + ["unit"]=0 + } + }, + [16]={ + ["lv_stage"]=6500, + ["cost_atk"]={ + ["value"]=4040, + ["unit"]=1 + }, + ["cost_atk_difference"]={ + ["value"]=5748, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=4040, + ["unit"]=1 + }, + ["cost_hp_difference"]={ + ["value"]=5748, + ["unit"]=0 + } + }, + [17]={ + ["lv_stage"]=7000, + ["cost_atk"]={ + ["value"]=6914, + ["unit"]=1 + }, + ["cost_atk_difference"]={ + ["value"]=36172, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=6914, + ["unit"]=1 + }, + ["cost_hp_difference"]={ + ["value"]=36172, + ["unit"]=0 + } + }, + [18]={ + ["lv_stage"]=7500, + ["cost_atk"]={ + ["value"]=25000, + ["unit"]=1 + }, + ["cost_atk_difference"]={ + ["value"]=36172, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=25000, + ["unit"]=1 + }, + ["cost_hp_difference"]={ + ["value"]=36172, + ["unit"]=0 + } + }, + [19]={ + ["lv_stage"]=8000, + ["cost_atk"]={ + ["value"]=43086, + ["unit"]=1 + }, + ["cost_atk_difference"]={ + ["value"]=153828, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=43086, + ["unit"]=1 + }, + ["cost_hp_difference"]={ + ["value"]=153828, + ["unit"]=0 + } + }, + [20]={ + ["lv_stage"]=8500, + ["cost_atk"]={ + ["value"]=120000, + ["unit"]=1 + }, + ["cost_atk_difference"]={ + ["value"]=153828, + ["unit"]=0 + }, + ["cost_hp"]={ + ["value"]=120000, + ["unit"]=1 + }, + ["cost_hp_difference"]={ + ["value"]=153828, + ["unit"]=0 + } + }, + [21]={ + ["lv_stage"]=9000, + ["cost_atk"]={ + ["value"]=196914, + ["unit"]=1 + }, + ["cost_atk_difference"]={ + ["value"]=1306, + ["unit"]=1 + }, + ["cost_hp"]={ + ["value"]=196914, + ["unit"]=1 + }, + ["cost_hp_difference"]={ + ["value"]=1306, + ["unit"]=1 + } + }, + [22]={ + ["lv_stage"]=9500, + ["cost_atk"]={ + ["value"]=850000, + ["unit"]=1 + }, + ["cost_atk_difference"]={ + ["value"]=1306, + ["unit"]=1 + }, + ["cost_hp"]={ + ["value"]=850000, + ["unit"]=1 + }, + ["cost_hp_difference"]={ + ["value"]=1306, + ["unit"]=1 + } + }, + [23]={ + ["lv_stage"]=10000, + ["cost_atk"]={ + ["value"]=1503, + ["unit"]=2 + }, + ["cost_atk_difference"]={ + ["value"]=2194, + ["unit"]=1 + }, + ["cost_hp"]={ + ["value"]=1503, + ["unit"]=2 + }, + ["cost_hp_difference"]={ + ["value"]=2194, + ["unit"]=1 + } + }, + [24]={ + ["lv_stage"]=11000, + ["cost_atk"]={ + ["value"]=3697, + ["unit"]=2 + }, + ["cost_atk_difference"]={ + ["value"]=11406, + ["unit"]=1 + }, + ["cost_hp"]={ + ["value"]=3697, + ["unit"]=2 + }, + ["cost_hp_difference"]={ + ["value"]=11406, + ["unit"]=1 + } + }, + [25]={ + ["lv_stage"]=12000, + ["cost_atk"]={ + ["value"]=15103, + ["unit"]=2 + }, + ["cost_atk_difference"]={ + ["value"]=17794, + ["unit"]=1 + }, + ["cost_hp"]={ + ["value"]=15103, + ["unit"]=2 + }, + ["cost_hp_difference"]={ + ["value"]=17794, + ["unit"]=1 + } + }, + [26]={ + ["lv_stage"]=13000, + ["cost_atk"]={ + ["value"]=32897, + ["unit"]=2 + }, + ["cost_atk_difference"]={ + ["value"]=80206, + ["unit"]=1 + }, + ["cost_hp"]={ + ["value"]=32897, + ["unit"]=2 + }, + ["cost_hp_difference"]={ + ["value"]=80206, + ["unit"]=1 + } + }, + [27]={ + ["lv_stage"]=14000, + ["cost_atk"]={ + ["value"]=113103, + ["unit"]=2 + }, + ["cost_atk_difference"]={ + ["value"]=153794, + ["unit"]=1 + }, + ["cost_hp"]={ + ["value"]=113103, + ["unit"]=2 + }, + ["cost_hp_difference"]={ + ["value"]=153794, + ["unit"]=1 + } + }, + [28]={ + ["lv_stage"]=15000, + ["cost_atk"]={ + ["value"]=266897, + ["unit"]=2 + }, + ["cost_atk_difference"]={ + ["value"]=1066, + ["unit"]=2 + }, + ["cost_hp"]={ + ["value"]=266897, + ["unit"]=2 + }, + ["cost_hp_difference"]={ + ["value"]=1066, + ["unit"]=2 + } + }, + [29]={ + ["lv_stage"]=16000, + ["cost_atk"]={ + ["value"]=1333, + ["unit"]=3 + }, + ["cost_atk_difference"]={ + ["value"]=2934, + ["unit"]=2 + }, + ["cost_hp"]={ + ["value"]=1333, + ["unit"]=3 + }, + ["cost_hp_difference"]={ + ["value"]=2934, + ["unit"]=2 + } + }, + [30]={ + ["lv_stage"]=17000, + ["cost_atk"]={ + ["value"]=4267, + ["unit"]=3 + }, + ["cost_atk_difference"]={ + ["value"]=11666, + ["unit"]=2 + }, + ["cost_hp"]={ + ["value"]=4267, + ["unit"]=3 + }, + ["cost_hp_difference"]={ + ["value"]=11666, + ["unit"]=2 + } + }, + [31]={ + ["lv_stage"]=18000, + ["cost_atk"]={ + ["value"]=15933, + ["unit"]=3 + }, + ["cost_atk_difference"]={ + ["value"]=40134, + ["unit"]=2 + }, + ["cost_hp"]={ + ["value"]=15933, + ["unit"]=3 + }, + ["cost_hp_difference"]={ + ["value"]=40134, + ["unit"]=2 + } + }, + [32]={ + ["lv_stage"]=19000, + ["cost_atk"]={ + ["value"]=56067, + ["unit"]=3 + }, + ["cost_atk_difference"]={ + ["value"]=227866, + ["unit"]=2 + }, + ["cost_hp"]={ + ["value"]=56067, + ["unit"]=3 + }, + ["cost_hp_difference"]={ + ["value"]=227866, + ["unit"]=2 + } + }, + [33]={ + ["lv_stage"]=20000, + ["cost_atk"]={ + ["value"]=283933, + ["unit"]=3 + }, + ["cost_atk_difference"]={ + ["value"]=832134, + ["unit"]=2 + }, + ["cost_hp"]={ + ["value"]=283933, + ["unit"]=3 + }, + ["cost_hp_difference"]={ + ["value"]=832134, + ["unit"]=2 + } + }, + [34]={ + ["lv_stage"]=21000, + ["cost_atk"]={ + ["value"]=1116, + ["unit"]=4 + }, + ["cost_atk_difference"]={ + ["value"]=3528, + ["unit"]=3 + }, + ["cost_hp"]={ + ["value"]=1116, + ["unit"]=4 + }, + ["cost_hp_difference"]={ + ["value"]=3528, + ["unit"]=3 + } + }, + [35]={ + ["lv_stage"]=22000, + ["cost_atk"]={ + ["value"]=4644, + ["unit"]=4 + }, + ["cost_atk_difference"]={ + ["value"]=17112, + ["unit"]=3 + }, + ["cost_hp"]={ + ["value"]=4644, + ["unit"]=4 + }, + ["cost_hp_difference"]={ + ["value"]=17112, + ["unit"]=3 + } + }, + [36]={ + ["lv_stage"]=23000, + ["cost_atk"]={ + ["value"]=21756, + ["unit"]=4 + }, + ["cost_atk_difference"]={ + ["value"]=66488, + ["unit"]=3 + }, + ["cost_hp"]={ + ["value"]=21756, + ["unit"]=4 + }, + ["cost_hp_difference"]={ + ["value"]=66488, + ["unit"]=3 + } + }, + [37]={ + ["lv_stage"]=24000, + ["cost_atk"]={ + ["value"]=88244, + ["unit"]=4 + }, + ["cost_atk_difference"]={ + ["value"]=283512, + ["unit"]=3 + }, + ["cost_hp"]={ + ["value"]=88244, + ["unit"]=4 + }, + ["cost_hp_difference"]={ + ["value"]=283512, + ["unit"]=3 + } + }, + [38]={ + ["lv_stage"]=25000, + ["cost_atk"]={ + ["value"]=371756, + ["unit"]=4 + }, + ["cost_atk_difference"]={ + ["value"]=1342, + ["unit"]=4 + }, + ["cost_hp"]={ + ["value"]=371756, + ["unit"]=4 + }, + ["cost_hp_difference"]={ + ["value"]=1342, + ["unit"]=4 + } + }, + [39]={ + ["lv_stage"]=26000, + ["cost_atk"]={ + ["value"]=1714, + ["unit"]=5 + }, + ["cost_atk_difference"]={ + ["value"]=8076, + ["unit"]=4 + }, + ["cost_hp"]={ + ["value"]=1714, + ["unit"]=5 + }, + ["cost_hp_difference"]={ + ["value"]=8076, + ["unit"]=4 + } + }, + [40]={ + ["lv_stage"]=27000, + ["cost_atk"]={ + ["value"]=9790, + ["unit"]=5 + }, + ["cost_atk_difference"]={ + ["value"]=41902, + ["unit"]=4 + }, + ["cost_hp"]={ + ["value"]=9790, + ["unit"]=5 + }, + ["cost_hp_difference"]={ + ["value"]=41902, + ["unit"]=4 + } + }, + [41]={ + ["lv_stage"]=28000, + ["cost_atk"]={ + ["value"]=51692, + ["unit"]=5 + }, + ["cost_atk_difference"]={ + ["value"]=217288, + ["unit"]=4 + }, + ["cost_hp"]={ + ["value"]=51692, + ["unit"]=5 + }, + ["cost_hp_difference"]={ + ["value"]=217288, + ["unit"]=4 + } + }, + [42]={ + ["lv_stage"]=29000, + ["cost_atk"]={ + ["value"]=268980, + ["unit"]=5 + }, + ["cost_atk_difference"]={ + ["value"]=965074, + ["unit"]=4 + }, + ["cost_hp"]={ + ["value"]=268980, + ["unit"]=5 + }, + ["cost_hp_difference"]={ + ["value"]=965074, + ["unit"]=4 + } + }, + [43]={ + ["lv_stage"]=30000, + ["cost_atk"]={ + ["value"]=1234, + ["unit"]=6 + }, + ["cost_atk_difference"]={ + ["value"]=5754, + ["unit"]=5 + }, + ["cost_hp"]={ + ["value"]=1234, + ["unit"]=6 + }, + ["cost_hp_difference"]={ + ["value"]=5754, + ["unit"]=5 + } + }, + [44]={ + ["lv_stage"]=31000, + ["cost_atk"]={ + ["value"]=6988, + ["unit"]=6 + }, + ["cost_atk_difference"]={ + ["value"]=34078, + ["unit"]=5 + }, + ["cost_hp"]={ + ["value"]=6988, + ["unit"]=6 + }, + ["cost_hp_difference"]={ + ["value"]=34078, + ["unit"]=5 + } + }, + [45]={ + ["lv_stage"]=32000, + ["cost_atk"]={ + ["value"]=41067, + ["unit"]=6 + }, + ["cost_atk_difference"]={ + ["value"]=178217, + ["unit"]=5 + }, + ["cost_hp"]={ + ["value"]=41067, + ["unit"]=6 + }, + ["cost_hp_difference"]={ + ["value"]=178217, + ["unit"]=5 + } + }, + [46]={ + ["lv_stage"]=33000, + ["cost_atk"]={ + ["value"]=219284, + ["unit"]=6 + }, + ["cost_atk_difference"]={ + ["value"]=957984, + ["unit"]=5 + }, + ["cost_hp"]={ + ["value"]=219284, + ["unit"]=6 + }, + ["cost_hp_difference"]={ + ["value"]=957984, + ["unit"]=5 + } + }, + [47]={ + ["lv_stage"]=34000, + ["cost_atk"]={ + ["value"]=1177, + ["unit"]=7 + }, + ["cost_atk_difference"]={ + ["value"]=5384, + ["unit"]=6 + }, + ["cost_hp"]={ + ["value"]=1177, + ["unit"]=7 + }, + ["cost_hp_difference"]={ + ["value"]=5384, + ["unit"]=6 + } + }, + [48]={ + ["lv_stage"]=35000, + ["cost_atk"]={ + ["value"]=6561, + ["unit"]=7 + }, + ["cost_atk_difference"]={ + ["value"]=47669, + ["unit"]=6 + }, + ["cost_hp"]={ + ["value"]=6561, + ["unit"]=7 + }, + ["cost_hp_difference"]={ + ["value"]=47669, + ["unit"]=6 + } + }, + [49]={ + ["lv_stage"]=36000, + ["cost_atk"]={ + ["value"]=54230, + ["unit"]=7 + }, + ["cost_atk_difference"]={ + ["value"]=365236, + ["unit"]=6 + }, + ["cost_hp"]={ + ["value"]=54230, + ["unit"]=7 + }, + ["cost_hp_difference"]={ + ["value"]=365236, + ["unit"]=6 + } + }, + [50]={ + ["lv_stage"]=37000, + ["cost_atk"]={ + ["value"]=419466, + ["unit"]=7 + }, + ["cost_atk_difference"]={ + ["value"]=2580, + ["unit"]=7 + }, + ["cost_hp"]={ + ["value"]=419466, + ["unit"]=7 + }, + ["cost_hp_difference"]={ + ["value"]=2580, + ["unit"]=7 + } + }, + [51]={ + ["lv_stage"]=38000, + ["cost_atk"]={ + ["value"]=2999, + ["unit"]=8 + }, + ["cost_atk_difference"]={ + ["value"]=19776, + ["unit"]=7 + }, + ["cost_hp"]={ + ["value"]=2999, + ["unit"]=8 + }, + ["cost_hp_difference"]={ + ["value"]=19776, + ["unit"]=7 + } + }, + [52]={ + ["lv_stage"]=39000, + ["cost_atk"]={ + ["value"]=22775, + ["unit"]=8 + }, + ["cost_atk_difference"]={ + ["value"]=149714, + ["unit"]=7 + }, + ["cost_hp"]={ + ["value"]=22775, + ["unit"]=8 + }, + ["cost_hp_difference"]={ + ["value"]=149714, + ["unit"]=7 + } + }, + [53]={ + ["lv_stage"]=40000, + ["cost_atk"]={ + ["value"]=172489, + ["unit"]=8 + }, + ["cost_atk_difference"]={ + ["value"]=1211, + ["unit"]=8 + }, + ["cost_hp"]={ + ["value"]=172489, + ["unit"]=8 + }, + ["cost_hp_difference"]={ + ["value"]=1211, + ["unit"]=8 + } + }, + [54]={ + ["lv_stage"]=41000, + ["cost_atk"]={ + ["value"]=1383, + ["unit"]=9 + }, + ["cost_atk_difference"]={ + ["value"]=7925, + ["unit"]=8 + }, + ["cost_hp"]={ + ["value"]=1383, + ["unit"]=9 + }, + ["cost_hp_difference"]={ + ["value"]=7925, + ["unit"]=8 + } + }, + [55]={ + ["lv_stage"]=42000, + ["cost_atk"]={ + ["value"]=9308, + ["unit"]=9 + }, + ["cost_atk_difference"]={ + ["value"]=60589, + ["unit"]=8 + }, + ["cost_hp"]={ + ["value"]=9308, + ["unit"]=9 + }, + ["cost_hp_difference"]={ + ["value"]=60589, + ["unit"]=8 + } + }, + [56]={ + ["lv_stage"]=43000, + ["cost_atk"]={ + ["value"]=69897, + ["unit"]=9 + }, + ["cost_atk_difference"]={ + ["value"]=451978, + ["unit"]=8 + }, + ["cost_hp"]={ + ["value"]=69897, + ["unit"]=9 + }, + ["cost_hp_difference"]={ + ["value"]=451978, + ["unit"]=8 + } + }, + [57]={ + ["lv_stage"]=44000, + ["cost_atk"]={ + ["value"]=521875, + ["unit"]=9 + }, + ["cost_atk_difference"]={ + ["value"]=3475, + ["unit"]=9 + }, + ["cost_hp"]={ + ["value"]=521875, + ["unit"]=9 + }, + ["cost_hp_difference"]={ + ["value"]=3475, + ["unit"]=9 + } + }, + [58]={ + ["lv_stage"]=45000, + ["cost_atk"]={ + ["value"]=3997, + ["unit"]=10 + }, + ["cost_atk_difference"]={ + ["value"]=50369, + ["unit"]=9 + }, + ["cost_hp"]={ + ["value"]=3997, + ["unit"]=10 + }, + ["cost_hp_difference"]={ + ["value"]=50369, + ["unit"]=9 + } + }, + [59]={ + ["lv_stage"]=46000, + ["cost_atk"]={ + ["value"]=54366, + ["unit"]=10 + }, + ["cost_atk_difference"]={ + ["value"]=617298, + ["unit"]=9 + }, + ["cost_hp"]={ + ["value"]=54366, + ["unit"]=10 + }, + ["cost_hp_difference"]={ + ["value"]=617298, + ["unit"]=9 + } + }, + [60]={ + ["lv_stage"]=47000, + ["cost_atk"]={ + ["value"]=671663, + ["unit"]=10 + }, + ["cost_atk_difference"]={ + ["value"]=7115, + ["unit"]=10 + }, + ["cost_hp"]={ + ["value"]=671663, + ["unit"]=10 + }, + ["cost_hp_difference"]={ + ["value"]=7115, + ["unit"]=10 + } + }, + [61]={ + ["lv_stage"]=48000, + ["cost_atk"]={ + ["value"]=7786, + ["unit"]=11 + }, + ["cost_atk_difference"]={ + ["value"]=91194, + ["unit"]=10 + }, + ["cost_hp"]={ + ["value"]=7786, + ["unit"]=11 + }, + ["cost_hp_difference"]={ + ["value"]=91194, + ["unit"]=10 + } + }, + [62]={ + ["lv_stage"]=49000, + ["cost_atk"]={ + ["value"]=98981, + ["unit"]=11 + }, + ["cost_atk_difference"]={ + ["value"]=1084, + ["unit"]=11 + }, + ["cost_hp"]={ + ["value"]=98981, + ["unit"]=11 + }, + ["cost_hp_difference"]={ + ["value"]=1084, + ["unit"]=11 + } + }, + [63]={ + ["lv_stage"]=50000, + ["cost_atk"]={ + ["value"]=1183, + ["unit"]=12 + }, + ["cost_atk_difference"]={ + ["value"]=14097, + ["unit"]=11 + }, + ["cost_hp"]={ + ["value"]=1183, + ["unit"]=12 + }, + ["cost_hp_difference"]={ + ["value"]=14097, + ["unit"]=11 + } + }, + [64]={ + ["lv_stage"]=51000, + ["cost_atk"]={ + ["value"]=15281, + ["unit"]=12 + }, + ["cost_atk_difference"]={ + ["value"]=158911, + ["unit"]=11 + }, + ["cost_hp"]={ + ["value"]=15281, + ["unit"]=12 + }, + ["cost_hp_difference"]={ + ["value"]=158911, + ["unit"]=11 + } + }, + [65]={ + ["lv_stage"]=52000, + ["cost_atk"]={ + ["value"]=174192, + ["unit"]=12 + }, + ["cost_atk_difference"]={ + ["value"]=1956, + ["unit"]=12 + }, + ["cost_hp"]={ + ["value"]=174192, + ["unit"]=12 + }, + ["cost_hp_difference"]={ + ["value"]=1956, + ["unit"]=12 + } + }, + [66]={ + ["lv_stage"]=53000, + ["cost_atk"]={ + ["value"]=2130, + ["unit"]=13 + }, + ["cost_atk_difference"]={ + ["value"]=24261, + ["unit"]=12 + }, + ["cost_hp"]={ + ["value"]=2130, + ["unit"]=13 + }, + ["cost_hp_difference"]={ + ["value"]=24261, + ["unit"]=12 + } + }, + [67]={ + ["lv_stage"]=54000, + ["cost_atk"]={ + ["value"]=26391, + ["unit"]=13 + }, + ["cost_atk_difference"]={ + ["value"]=282635, + ["unit"]=12 + }, + ["cost_hp"]={ + ["value"]=26391, + ["unit"]=13 + }, + ["cost_hp_difference"]={ + ["value"]=282635, + ["unit"]=12 + } + }, + [68]={ + ["lv_stage"]=55000, + ["cost_atk"]={ + ["value"]=309027, + ["unit"]=13 + }, + ["cost_atk_difference"]={ + ["value"]=3684, + ["unit"]=13 + }, + ["cost_hp"]={ + ["value"]=309027, + ["unit"]=13 + }, + ["cost_hp_difference"]={ + ["value"]=3684, + ["unit"]=13 + } + }, + [69]={ + ["lv_stage"]=56000, + ["cost_atk"]={ + ["value"]=3993, + ["unit"]=14 + }, + ["cost_atk_difference"]={ + ["value"]=42034, + ["unit"]=13 + }, + ["cost_hp"]={ + ["value"]=3993, + ["unit"]=14 + }, + ["cost_hp_difference"]={ + ["value"]=42034, + ["unit"]=13 + } + }, + [70]={ + ["lv_stage"]=57000, + ["cost_atk"]={ + ["value"]=46027, + ["unit"]=14 + }, + ["cost_atk_difference"]={ + ["value"]=1330, + ["unit"]=14 + }, + ["cost_hp"]={ + ["value"]=46027, + ["unit"]=14 + }, + ["cost_hp_difference"]={ + ["value"]=1330, + ["unit"]=14 + } + }, + [71]={ + ["lv_stage"]=58000, + ["cost_atk"]={ + ["value"]=1376, + ["unit"]=15 + }, + ["cost_atk_difference"]={ + ["value"]=36975, + ["unit"]=14 + }, + ["cost_hp"]={ + ["value"]=1376, + ["unit"]=15 + }, + ["cost_hp_difference"]={ + ["value"]=36975, + ["unit"]=14 + } + }, + [72]={ + ["lv_stage"]=59000, + ["cost_atk"]={ + ["value"]=38350, + ["unit"]=15 + }, + ["cost_atk_difference"]={ + ["value"]=1014, + ["unit"]=15 + }, + ["cost_hp"]={ + ["value"]=38350, + ["unit"]=15 + }, + ["cost_hp_difference"]={ + ["value"]=1014, + ["unit"]=15 + } + }, + [73]={ + ["lv_stage"]=60000, + ["cost_atk"]={ + ["value"]=1052, + ["unit"]=16 + }, + ["cost_atk_difference"]={ + ["value"]=27105, + ["unit"]=15 + }, + ["cost_hp"]={ + ["value"]=1052, + ["unit"]=16 + }, + ["cost_hp_difference"]={ + ["value"]=27105, + ["unit"]=15 + } + }, + [74]={ + ["lv_stage"]=61000, + ["cost_atk"]={ + ["value"]=28157, + ["unit"]=16 + }, + ["cost_atk_difference"]={ + ["value"]=770845, + ["unit"]=15 + }, + ["cost_hp"]={ + ["value"]=28157, + ["unit"]=16 + }, + ["cost_hp_difference"]={ + ["value"]=770845, + ["unit"]=15 + } + }, + [75]={ + ["lv_stage"]=62000, + ["cost_atk"]={ + ["value"]=799002, + ["unit"]=16 + }, + ["cost_atk_difference"]={ + ["value"]=21829, + ["unit"]=16 + }, + ["cost_hp"]={ + ["value"]=799002, + ["unit"]=16 + }, + ["cost_hp_difference"]={ + ["value"]=21829, + ["unit"]=16 + } + }, + [76]={ + ["lv_stage"]=63000, + ["cost_atk"]={ + ["value"]=22628, + ["unit"]=17 + }, + ["cost_atk_difference"]={ + ["value"]=590620, + ["unit"]=16 + }, + ["cost_hp"]={ + ["value"]=22628, + ["unit"]=17 + }, + ["cost_hp_difference"]={ + ["value"]=590620, + ["unit"]=16 + } + }, + [77]={ + ["lv_stage"]=64000, + ["cost_atk"]={ + ["value"]=613248, + ["unit"]=17 + }, + ["cost_atk_difference"]={ + ["value"]=16609, + ["unit"]=17 + }, + ["cost_hp"]={ + ["value"]=613248, + ["unit"]=17 + }, + ["cost_hp_difference"]={ + ["value"]=16609, + ["unit"]=17 + } + }, + [78]={ + ["lv_stage"]=65000, + ["cost_atk"]={ + ["value"]=17222, + ["unit"]=18 + }, + ["cost_atk_difference"]={ + ["value"]=434138, + ["unit"]=17 + }, + ["cost_hp"]={ + ["value"]=17222, + ["unit"]=18 + }, + ["cost_hp_difference"]={ + ["value"]=434138, + ["unit"]=17 + } + }, + [79]={ + ["lv_stage"]=66000, + ["cost_atk"]={ + ["value"]=451360, + ["unit"]=18 + }, + ["cost_atk_difference"]={ + ["value"]=33783, + ["unit"]=18 + }, + ["cost_hp"]={ + ["value"]=451360, + ["unit"]=18 + }, + ["cost_hp_difference"]={ + ["value"]=33783, + ["unit"]=18 + } + }, + [80]={ + ["lv_stage"]=67000, + ["cost_atk"]={ + ["value"]=34234, + ["unit"]=19 + }, + ["cost_atk_difference"]={ + ["value"]=2487, + ["unit"]=19 + }, + ["cost_hp"]={ + ["value"]=34234, + ["unit"]=19 + }, + ["cost_hp_difference"]={ + ["value"]=2487, + ["unit"]=19 + } + }, + [81]={ + ["lv_stage"]=68000, + ["cost_atk"]={ + ["value"]=2521, + ["unit"]=20 + }, + ["cost_atk_difference"]={ + ["value"]=169211, + ["unit"]=19 + }, + ["cost_hp"]={ + ["value"]=2521, + ["unit"]=20 + }, + ["cost_hp_difference"]={ + ["value"]=169211, + ["unit"]=19 + } + }, + [82]={ + ["lv_stage"]=69000, + ["cost_atk"]={ + ["value"]=171732, + ["unit"]=20 + }, + ["cost_atk_difference"]={ + ["value"]=12370, + ["unit"]=20 + }, + ["cost_hp"]={ + ["value"]=171732, + ["unit"]=20 + }, + ["cost_hp_difference"]={ + ["value"]=12370, + ["unit"]=20 + } + }, + [83]={ + ["lv_stage"]=70000, + ["cost_atk"]={ + ["value"]=12542, + ["unit"]=21 + }, + ["cost_atk_difference"]={ + ["value"]=847051, + ["unit"]=20 + }, + ["cost_hp"]={ + ["value"]=12542, + ["unit"]=21 + }, + ["cost_hp_difference"]={ + ["value"]=847051, + ["unit"]=20 + } + }, + [84]={ + ["lv_stage"]=71000, + ["cost_atk"]={ + ["value"]=859593, + ["unit"]=21 + }, + ["cost_atk_difference"]={ + ["value"]=62154, + ["unit"]=21 + }, + ["cost_hp"]={ + ["value"]=859593, + ["unit"]=21 + }, + ["cost_hp_difference"]={ + ["value"]=62154, + ["unit"]=21 + } + }, + [85]={ + ["lv_stage"]=72000, + ["cost_atk"]={ + ["value"]=63013, + ["unit"]=22 + }, + ["cost_atk_difference"]={ + ["value"]=4476, + ["unit"]=22 + }, + ["cost_hp"]={ + ["value"]=63013, + ["unit"]=22 + }, + ["cost_hp_difference"]={ + ["value"]=4476, + ["unit"]=22 + } + }, + [86]={ + ["lv_stage"]=73000, + ["cost_atk"]={ + ["value"]=4539, + ["unit"]=23 + }, + ["cost_atk_difference"]={ + ["value"]=310897, + ["unit"]=22 + }, + ["cost_hp"]={ + ["value"]=4539, + ["unit"]=23 + }, + ["cost_hp_difference"]={ + ["value"]=310897, + ["unit"]=22 + } + }, + [87]={ + ["lv_stage"]=74000, + ["cost_atk"]={ + ["value"]=315436, + ["unit"]=23 + }, + ["cost_atk_difference"]={ + ["value"]=22102, + ["unit"]=23 + }, + ["cost_hp"]={ + ["value"]=315436, + ["unit"]=23 + }, + ["cost_hp_difference"]={ + ["value"]=22102, + ["unit"]=23 + } + }, + [88]={ + ["lv_stage"]=75000, + ["cost_atk"]={ + ["value"]=22417, + ["unit"]=24 + }, + ["cost_atk_difference"]={ + ["value"]=1643, + ["unit"]=24 + }, + ["cost_hp"]={ + ["value"]=22417, + ["unit"]=24 + }, + ["cost_hp_difference"]={ + ["value"]=1643, + ["unit"]=24 + } + }, + [89]={ + ["lv_stage"]=76000, + ["cost_atk"]={ + ["value"]=1665, + ["unit"]=25 + }, + ["cost_atk_difference"]={ + ["value"]=98722, + ["unit"]=24 + }, + ["cost_hp"]={ + ["value"]=1665, + ["unit"]=25 + }, + ["cost_hp_difference"]={ + ["value"]=98722, + ["unit"]=24 + } + }, + [90]={ + ["lv_stage"]=77000, + ["cost_atk"]={ + ["value"]=100387, + ["unit"]=25 + }, + ["cost_atk_difference"]={ + ["value"]=4884, + ["unit"]=25 + }, + ["cost_hp"]={ + ["value"]=100387, + ["unit"]=25 + }, + ["cost_hp_difference"]={ + ["value"]=4884, + ["unit"]=25 + } + }, + [91]={ + ["lv_stage"]=78000, + ["cost_atk"]={ + ["value"]=4984, + ["unit"]=26 + }, + ["cost_atk_difference"]={ + ["value"]=244253, + ["unit"]=25 + }, + ["cost_hp"]={ + ["value"]=4984, + ["unit"]=26 + }, + ["cost_hp_difference"]={ + ["value"]=244253, + ["unit"]=25 + } + }, + [92]={ + ["lv_stage"]=79000, + ["cost_atk"]={ + ["value"]=249237, + ["unit"]=26 + }, + ["cost_atk_difference"]={ + ["value"]=12213, + ["unit"]=26 + }, + ["cost_hp"]={ + ["value"]=249237, + ["unit"]=26 + }, + ["cost_hp_difference"]={ + ["value"]=12213, + ["unit"]=26 + } + }, + [93]={ + ["lv_stage"]=80000, + ["cost_atk"]={ + ["value"]=12462, + ["unit"]=27 + }, + ["cost_atk_difference"]={ + ["value"]=610630, + ["unit"]=26 + }, + ["cost_hp"]={ + ["value"]=12462, + ["unit"]=27 + }, + ["cost_hp_difference"]={ + ["value"]=610630, + ["unit"]=26 + } + }, + [94]={ + ["lv_stage"]=81000, + ["cost_atk"]={ + ["value"]=623091, + ["unit"]=27 + }, + ["cost_atk_difference"]={ + ["value"]=30531, + ["unit"]=27 + }, + ["cost_hp"]={ + ["value"]=623091, + ["unit"]=27 + }, + ["cost_hp_difference"]={ + ["value"]=30531, + ["unit"]=27 + } + }, + [95]={ + ["lv_stage"]=82000, + ["cost_atk"]={ + ["value"]=31155, + ["unit"]=28 + }, + ["cost_atk_difference"]={ + ["value"]=1527, + ["unit"]=28 + }, + ["cost_hp"]={ + ["value"]=31155, + ["unit"]=28 + }, + ["cost_hp_difference"]={ + ["value"]=1527, + ["unit"]=28 + } + }, + [96]={ + ["lv_stage"]=83000, + ["cost_atk"]={ + ["value"]=1558, + ["unit"]=29 + }, + ["cost_atk_difference"]={ + ["value"]=76329, + ["unit"]=28 + }, + ["cost_hp"]={ + ["value"]=1558, + ["unit"]=29 + }, + ["cost_hp_difference"]={ + ["value"]=76329, + ["unit"]=28 + } + }, + [97]={ + ["lv_stage"]=84000, + ["cost_atk"]={ + ["value"]=77886, + ["unit"]=29 + }, + ["cost_atk_difference"]={ + ["value"]=3816, + ["unit"]=29 + }, + ["cost_hp"]={ + ["value"]=77886, + ["unit"]=29 + }, + ["cost_hp_difference"]={ + ["value"]=3816, + ["unit"]=29 + } + }, + [98]={ + ["lv_stage"]=85000, + ["cost_atk"]={ + ["value"]=3894, + ["unit"]=30 + }, + ["cost_atk_difference"]={ + ["value"]=190822, + ["unit"]=29 + }, + ["cost_hp"]={ + ["value"]=3894, + ["unit"]=30 + }, + ["cost_hp_difference"]={ + ["value"]=190822, + ["unit"]=29 + } + }, + [99]={ + ["lv_stage"]=86000, + ["cost_atk"]={ + ["value"]=194716, + ["unit"]=30 + }, + ["cost_atk_difference"]={ + ["value"]=9541, + ["unit"]=30 + }, + ["cost_hp"]={ + ["value"]=194716, + ["unit"]=30 + }, + ["cost_hp_difference"]={ + ["value"]=9541, + ["unit"]=30 + } + }, + [100]={ + ["lv_stage"]=87000, + ["cost_atk"]={ + ["value"]=9736, + ["unit"]=31 + }, + ["cost_atk_difference"]={ + ["value"]=477054, + ["unit"]=30 + }, + ["cost_hp"]={ + ["value"]=9736, + ["unit"]=31 + }, + ["cost_hp_difference"]={ + ["value"]=477054, + ["unit"]=30 + } + }, + [101]={ + ["lv_stage"]=88000, + ["cost_atk"]={ + ["value"]=486790, + ["unit"]=31 + }, + ["cost_atk_difference"]={ + ["value"]=23853, + ["unit"]=31 + }, + ["cost_hp"]={ + ["value"]=486790, + ["unit"]=31 + }, + ["cost_hp_difference"]={ + ["value"]=23853, + ["unit"]=31 + } + }, + [102]={ + ["lv_stage"]=89000, + ["cost_atk"]={ + ["value"]=24340, + ["unit"]=32 + }, + ["cost_atk_difference"]={ + ["value"]=1193, + ["unit"]=32 + }, + ["cost_hp"]={ + ["value"]=24340, + ["unit"]=32 + }, + ["cost_hp_difference"]={ + ["value"]=1193, + ["unit"]=32 + } + }, + [103]={ + ["lv_stage"]=90000, + ["cost_atk"]={ + ["value"]=1217, + ["unit"]=33 + }, + ["cost_atk_difference"]={ + ["value"]=59632, + ["unit"]=32 + }, + ["cost_hp"]={ + ["value"]=1217, + ["unit"]=33 + }, + ["cost_hp_difference"]={ + ["value"]=59632, + ["unit"]=32 + } + }, + [104]={ + ["lv_stage"]=91000, + ["cost_atk"]={ + ["value"]=60849, + ["unit"]=33 + }, + ["cost_atk_difference"]={ + ["value"]=2982, + ["unit"]=33 + }, + ["cost_hp"]={ + ["value"]=60849, + ["unit"]=33 + }, + ["cost_hp_difference"]={ + ["value"]=2982, + ["unit"]=33 + } + }, + [105]={ + ["lv_stage"]=92000, + ["cost_atk"]={ + ["value"]=3042, + ["unit"]=34 + }, + ["cost_atk_difference"]={ + ["value"]=149079, + ["unit"]=33 + }, + ["cost_hp"]={ + ["value"]=3042, + ["unit"]=34 + }, + ["cost_hp_difference"]={ + ["value"]=149079, + ["unit"]=33 + } + }, + [106]={ + ["lv_stage"]=93000, + ["cost_atk"]={ + ["value"]=152122, + ["unit"]=34 + }, + ["cost_atk_difference"]={ + ["value"]=7454, + ["unit"]=34 + }, + ["cost_hp"]={ + ["value"]=152122, + ["unit"]=34 + }, + ["cost_hp_difference"]={ + ["value"]=7454, + ["unit"]=34 + } + }, + [107]={ + ["lv_stage"]=94000, + ["cost_atk"]={ + ["value"]=7606, + ["unit"]=35 + }, + ["cost_atk_difference"]={ + ["value"]=372699, + ["unit"]=34 + }, + ["cost_hp"]={ + ["value"]=7606, + ["unit"]=35 + }, + ["cost_hp_difference"]={ + ["value"]=372699, + ["unit"]=34 + } + }, + [108]={ + ["lv_stage"]=95000, + ["cost_atk"]={ + ["value"]=380305, + ["unit"]=35 + }, + ["cost_atk_difference"]={ + ["value"]=18635, + ["unit"]=35 + }, + ["cost_hp"]={ + ["value"]=380305, + ["unit"]=35 + }, + ["cost_hp_difference"]={ + ["value"]=18635, + ["unit"]=35 + } + }, + [109]={ + ["lv_stage"]=96000, + ["cost_atk"]={ + ["value"]=19015, + ["unit"]=36 + }, + ["cost_atk_difference"]={ + ["value"]=931747, + ["unit"]=35 + }, + ["cost_hp"]={ + ["value"]=19015, + ["unit"]=36 + }, + ["cost_hp_difference"]={ + ["value"]=931747, + ["unit"]=35 + } + }, + [110]={ + ["lv_stage"]=97000, + ["cost_atk"]={ + ["value"]=950762, + ["unit"]=36 + }, + ["cost_atk_difference"]={ + ["value"]=46587, + ["unit"]=36 + }, + ["cost_hp"]={ + ["value"]=950762, + ["unit"]=36 + }, + ["cost_hp_difference"]={ + ["value"]=46587, + ["unit"]=36 + } + }, + [111]={ + ["lv_stage"]=98000, + ["cost_atk"]={ + ["value"]=47538, + ["unit"]=37 + }, + ["cost_atk_difference"]={ + ["value"]=2329, + ["unit"]=37 + }, + ["cost_hp"]={ + ["value"]=47538, + ["unit"]=37 + }, + ["cost_hp_difference"]={ + ["value"]=2329, + ["unit"]=37 + } + }, + [112]={ + ["lv_stage"]=99000, + ["cost_atk"]={ + ["value"]=2377, + ["unit"]=38 + }, + ["cost_atk_difference"]={ + ["value"]=116468, + ["unit"]=37 + }, + ["cost_hp"]={ + ["value"]=2377, + ["unit"]=38 + }, + ["cost_hp_difference"]={ + ["value"]=116468, + ["unit"]=37 + } + }, + [113]={ + ["lv_stage"]=100000, + ["cost_atk"]={ + ["value"]=118845, + ["unit"]=38 + }, + ["cost_atk_difference"]={ + ["value"]=937083, + ["unit"]=37 + }, + ["cost_hp"]={ + ["value"]=118845, + ["unit"]=38 + }, + ["cost_hp_difference"]={ + ["value"]=937083, + ["unit"]=37 + } + }, + [114]={ + ["lv_stage"]=105000, + ["cost_atk"]={ + ["value"]=4804, + ["unit"]=39 + }, + ["cost_atk_difference"]={ + ["value"]=195002, + ["unit"]=38 + }, + ["cost_hp"]={ + ["value"]=4804, + ["unit"]=39 + }, + ["cost_hp_difference"]={ + ["value"]=195002, + ["unit"]=38 + } + }, + [115]={ + ["lv_stage"]=110000, + ["cost_atk"]={ + ["value"]=979817, + ["unit"]=39 + }, + ["cost_atk_difference"]={ + ["value"]=38993, + ["unit"]=39 + }, + ["cost_hp"]={ + ["value"]=979817, + ["unit"]=39 + }, + ["cost_hp_difference"]={ + ["value"]=38993, + ["unit"]=39 + } + }, + [116]={ + ["lv_stage"]=115000, + ["cost_atk"]={ + ["value"]=195944, + ["unit"]=40 + }, + ["cost_atk_difference"]={ + ["value"]=7799, + ["unit"]=40 + }, + ["cost_hp"]={ + ["value"]=195944, + ["unit"]=40 + }, + ["cost_hp_difference"]={ + ["value"]=7799, + ["unit"]=40 + } + }, + [117]={ + ["lv_stage"]=120000, + ["cost_atk"]={ + ["value"]=39189, + ["unit"]=41 + }, + ["cost_atk_difference"]={ + ["value"]=1560, + ["unit"]=41 + }, + ["cost_hp"]={ + ["value"]=39189, + ["unit"]=41 + }, + ["cost_hp_difference"]={ + ["value"]=1560, + ["unit"]=41 + } + }, + [118]={ + ["lv_stage"]=125000, + ["cost_atk"]={ + ["value"]=7838, + ["unit"]=42 + }, + ["cost_atk_difference"]={ + ["value"]=311944, + ["unit"]=41 + }, + ["cost_hp"]={ + ["value"]=7838, + ["unit"]=42 + }, + ["cost_hp_difference"]={ + ["value"]=311944, + ["unit"]=41 + } + }, + [119]={ + ["lv_stage"]=130000, + ["cost_atk"]={ + ["value"]=1568, + ["unit"]=43 + }, + ["cost_atk_difference"]={ + ["value"]=62389, + ["unit"]=42 + }, + ["cost_hp"]={ + ["value"]=1568, + ["unit"]=43 + }, + ["cost_hp_difference"]={ + ["value"]=62389, + ["unit"]=42 + } + }, + [120]={ + ["lv_stage"]=135000, + ["cost_atk"]={ + ["value"]=313511, + ["unit"]=43 + }, + ["cost_atk_difference"]={ + ["value"]=12478, + ["unit"]=43 + }, + ["cost_hp"]={ + ["value"]=313511, + ["unit"]=43 + }, + ["cost_hp_difference"]={ + ["value"]=12478, + ["unit"]=43 + } + }, + [121]={ + ["lv_stage"]=140000, + ["cost_atk"]={ + ["value"]=62702, + ["unit"]=44 + }, + ["cost_atk_difference"]={ + ["value"]=2496, + ["unit"]=44 + }, + ["cost_hp"]={ + ["value"]=62702, + ["unit"]=44 + }, + ["cost_hp_difference"]={ + ["value"]=2496, + ["unit"]=44 + } + }, + [122]={ + ["lv_stage"]=145000, + ["cost_atk"]={ + ["value"]=12540, + ["unit"]=45 + }, + ["cost_atk_difference"]={ + ["value"]=499110, + ["unit"]=44 + }, + ["cost_hp"]={ + ["value"]=12540, + ["unit"]=45 + }, + ["cost_hp_difference"]={ + ["value"]=499110, + ["unit"]=44 + } + }, + [123]={ + ["lv_stage"]=150000, + ["cost_atk"]={ + ["value"]=2508, + ["unit"]=46 + }, + ["cost_atk_difference"]={ + ["value"]=99822, + ["unit"]=45 + }, + ["cost_hp"]={ + ["value"]=2508, + ["unit"]=46 + }, + ["cost_hp_difference"]={ + ["value"]=99822, + ["unit"]=45 + } + }, + [124]={ + ["lv_stage"]=155000, + ["cost_atk"]={ + ["value"]=501618, + ["unit"]=46 + }, + ["cost_atk_difference"]={ + ["value"]=19964, + ["unit"]=46 + }, + ["cost_hp"]={ + ["value"]=501618, + ["unit"]=46 + }, + ["cost_hp_difference"]={ + ["value"]=19964, + ["unit"]=46 + } + }, + [125]={ + ["lv_stage"]=160000, + ["cost_atk"]={ + ["value"]=100324, + ["unit"]=47 + }, + ["cost_atk_difference"]={ + ["value"]=3993, + ["unit"]=47 + }, + ["cost_hp"]={ + ["value"]=100324, + ["unit"]=47 + }, + ["cost_hp_difference"]={ + ["value"]=3993, + ["unit"]=47 + } + }, + [126]={ + ["lv_stage"]=165000, + ["cost_atk"]={ + ["value"]=20065, + ["unit"]=48 + }, + ["cost_atk_difference"]={ + ["value"]=798575, + ["unit"]=47 + }, + ["cost_hp"]={ + ["value"]=20065, + ["unit"]=48 + }, + ["cost_hp_difference"]={ + ["value"]=798575, + ["unit"]=47 + } + }, + [127]={ + ["lv_stage"]=170000, + ["cost_atk"]={ + ["value"]=4013, + ["unit"]=49 + }, + ["cost_atk_difference"]={ + ["value"]=159715, + ["unit"]=48 + }, + ["cost_hp"]={ + ["value"]=4013, + ["unit"]=49 + }, + ["cost_hp_difference"]={ + ["value"]=159715, + ["unit"]=48 + } + }, + [128]={ + ["lv_stage"]=175000, + ["cost_atk"]={ + ["value"]=802588, + ["unit"]=49 + }, + ["cost_atk_difference"]={ + ["value"]=31943, + ["unit"]=49 + }, + ["cost_hp"]={ + ["value"]=802588, + ["unit"]=49 + }, + ["cost_hp_difference"]={ + ["value"]=31943, + ["unit"]=49 + } + }, + [129]={ + ["lv_stage"]=180000, + ["cost_atk"]={ + ["value"]=160518, + ["unit"]=50 + }, + ["cost_atk_difference"]={ + ["value"]=6389, + ["unit"]=50 + }, + ["cost_hp"]={ + ["value"]=160518, + ["unit"]=50 + }, + ["cost_hp_difference"]={ + ["value"]=6389, + ["unit"]=50 + } + }, + [130]={ + ["lv_stage"]=185000, + ["cost_atk"]={ + ["value"]=32104, + ["unit"]=51 + }, + ["cost_atk_difference"]={ + ["value"]=1278, + ["unit"]=51 + }, + ["cost_hp"]={ + ["value"]=32104, + ["unit"]=51 + }, + ["cost_hp_difference"]={ + ["value"]=1278, + ["unit"]=51 + } + }, + [131]={ + ["lv_stage"]=190000, + ["cost_atk"]={ + ["value"]=6421, + ["unit"]=52 + }, + ["cost_atk_difference"]={ + ["value"]=255544, + ["unit"]=51 + }, + ["cost_hp"]={ + ["value"]=6421, + ["unit"]=52 + }, + ["cost_hp_difference"]={ + ["value"]=255544, + ["unit"]=51 + } + }, + [132]={ + ["lv_stage"]=195000, + ["cost_atk"]={ + ["value"]=1284, + ["unit"]=53 + }, + ["cost_atk_difference"]={ + ["value"]=51109, + ["unit"]=52 + }, + ["cost_hp"]={ + ["value"]=1284, + ["unit"]=53 + }, + ["cost_hp_difference"]={ + ["value"]=51109, + ["unit"]=52 + } + }, + [133]={ + ["lv_stage"]=200000, + ["cost_atk"]={ + ["value"]=256828, + ["unit"]=53 + }, + ["cost_atk_difference"]={ + ["value"]=10222, + ["unit"]=53 + }, + ["cost_hp"]={ + ["value"]=256828, + ["unit"]=53 + }, + ["cost_hp_difference"]={ + ["value"]=10222, + ["unit"]=53 + } + }, + [134]={ + ["lv_stage"]=205000, + ["cost_atk"]={ + ["value"]=51366, + ["unit"]=54 + }, + ["cost_atk_difference"]={ + ["value"]=2044, + ["unit"]=54 + }, + ["cost_hp"]={ + ["value"]=51366, + ["unit"]=54 + }, + ["cost_hp_difference"]={ + ["value"]=2044, + ["unit"]=54 + } + }, + [135]={ + ["lv_stage"]=210000, + ["cost_atk"]={ + ["value"]=10273, + ["unit"]=55 + }, + ["cost_atk_difference"]={ + ["value"]=408871, + ["unit"]=54 + }, + ["cost_hp"]={ + ["value"]=10273, + ["unit"]=55 + }, + ["cost_hp_difference"]={ + ["value"]=408871, + ["unit"]=54 + } + }, + [136]={ + ["lv_stage"]=215000, + ["cost_atk"]={ + ["value"]=2055, + ["unit"]=56 + }, + ["cost_atk_difference"]={ + ["value"]=81774, + ["unit"]=55 + }, + ["cost_hp"]={ + ["value"]=2055, + ["unit"]=56 + }, + ["cost_hp_difference"]={ + ["value"]=81774, + ["unit"]=55 + } + }, + [137]={ + ["lv_stage"]=220000, + ["cost_atk"]={ + ["value"]=410925, + ["unit"]=56 + }, + ["cost_atk_difference"]={ + ["value"]=16355, + ["unit"]=56 + }, + ["cost_hp"]={ + ["value"]=410925, + ["unit"]=56 + }, + ["cost_hp_difference"]={ + ["value"]=16355, + ["unit"]=56 + } + }, + [138]={ + ["lv_stage"]=225000, + ["cost_atk"]={ + ["value"]=82185, + ["unit"]=57 + }, + ["cost_atk_difference"]={ + ["value"]=3271, + ["unit"]=57 + }, + ["cost_hp"]={ + ["value"]=82185, + ["unit"]=57 + }, + ["cost_hp_difference"]={ + ["value"]=3271, + ["unit"]=57 + } + }, + [139]={ + ["lv_stage"]=230000, + ["cost_atk"]={ + ["value"]=16437, + ["unit"]=58 + }, + ["cost_atk_difference"]={ + ["value"]=654193, + ["unit"]=57 + }, + ["cost_hp"]={ + ["value"]=16437, + ["unit"]=58 + }, + ["cost_hp_difference"]={ + ["value"]=654193, + ["unit"]=57 + } + }, + [140]={ + ["lv_stage"]=235000, + ["cost_atk"]={ + ["value"]=3287, + ["unit"]=59 + }, + ["cost_atk_difference"]={ + ["value"]=130839, + ["unit"]=58 + }, + ["cost_hp"]={ + ["value"]=3287, + ["unit"]=59 + }, + ["cost_hp_difference"]={ + ["value"]=130839, + ["unit"]=58 + } + }, + [141]={ + ["lv_stage"]=240000, + ["cost_atk"]={ + ["value"]=657480, + ["unit"]=59 + }, + ["cost_atk_difference"]={ + ["value"]=26168, + ["unit"]=59 + }, + ["cost_hp"]={ + ["value"]=657480, + ["unit"]=59 + }, + ["cost_hp_difference"]={ + ["value"]=26168, + ["unit"]=59 + } + }, + [142]={ + ["lv_stage"]=245000, + ["cost_atk"]={ + ["value"]=131496, + ["unit"]=60 + }, + ["cost_atk_difference"]={ + ["value"]=5234, + ["unit"]=60 + }, + ["cost_hp"]={ + ["value"]=131496, + ["unit"]=60 + }, + ["cost_hp_difference"]={ + ["value"]=5234, + ["unit"]=60 + } + }, + [143]={ + ["lv_stage"]=250000, + ["cost_atk"]={ + ["value"]=26299, + ["unit"]=61 + }, + ["cost_atk_difference"]={ + ["value"]=1047, + ["unit"]=61 + }, + ["cost_hp"]={ + ["value"]=26299, + ["unit"]=61 + }, + ["cost_hp_difference"]={ + ["value"]=1047, + ["unit"]=61 + } + }, + [144]={ + ["lv_stage"]=255000, + ["cost_atk"]={ + ["value"]=5260, + ["unit"]=62 + }, + ["cost_atk_difference"]={ + ["value"]=209342, + ["unit"]=61 + }, + ["cost_hp"]={ + ["value"]=5260, + ["unit"]=62 + }, + ["cost_hp_difference"]={ + ["value"]=209342, + ["unit"]=61 + } + }, + [145]={ + ["lv_stage"]=260000, + ["cost_atk"]={ + ["value"]=1052, + ["unit"]=63 + }, + ["cost_atk_difference"]={ + ["value"]=41868, + ["unit"]=62 + }, + ["cost_hp"]={ + ["value"]=1052, + ["unit"]=63 + }, + ["cost_hp_difference"]={ + ["value"]=41868, + ["unit"]=62 + } + }, + [146]={ + ["lv_stage"]=265000, + ["cost_atk"]={ + ["value"]=210394, + ["unit"]=63 + }, + ["cost_atk_difference"]={ + ["value"]=8374, + ["unit"]=63 + }, + ["cost_hp"]={ + ["value"]=210394, + ["unit"]=63 + }, + ["cost_hp_difference"]={ + ["value"]=8374, + ["unit"]=63 + } + }, + [147]={ + ["lv_stage"]=270000, + ["cost_atk"]={ + ["value"]=42079, + ["unit"]=64 + }, + ["cost_atk_difference"]={ + ["value"]=1675, + ["unit"]=64 + }, + ["cost_hp"]={ + ["value"]=42079, + ["unit"]=64 + }, + ["cost_hp_difference"]={ + ["value"]=1675, + ["unit"]=64 + } + }, + [148]={ + ["lv_stage"]=275000, + ["cost_atk"]={ + ["value"]=8416, + ["unit"]=65 + }, + ["cost_atk_difference"]={ + ["value"]=334947, + ["unit"]=64 + }, + ["cost_hp"]={ + ["value"]=8416, + ["unit"]=65 + }, + ["cost_hp_difference"]={ + ["value"]=334947, + ["unit"]=64 + } + }, + [149]={ + ["lv_stage"]=280000, + ["cost_atk"]={ + ["value"]=1683, + ["unit"]=66 + }, + ["cost_atk_difference"]={ + ["value"]=66989, + ["unit"]=65 + }, + ["cost_hp"]={ + ["value"]=1683, + ["unit"]=66 + }, + ["cost_hp_difference"]={ + ["value"]=66989, + ["unit"]=65 + } + }, + [150]={ + ["lv_stage"]=285000, + ["cost_atk"]={ + ["value"]=336630, + ["unit"]=66 + }, + ["cost_atk_difference"]={ + ["value"]=13398, + ["unit"]=66 + }, + ["cost_hp"]={ + ["value"]=336630, + ["unit"]=66 + }, + ["cost_hp_difference"]={ + ["value"]=13398, + ["unit"]=66 + } + }, + [151]={ + ["lv_stage"]=290000, + ["cost_atk"]={ + ["value"]=67326, + ["unit"]=67 + }, + ["cost_atk_difference"]={ + ["value"]=2680, + ["unit"]=67 + }, + ["cost_hp"]={ + ["value"]=67326, + ["unit"]=67 + }, + ["cost_hp_difference"]={ + ["value"]=2680, + ["unit"]=67 + } + }, + [152]={ + ["lv_stage"]=295000, + ["cost_atk"]={ + ["value"]=13465, + ["unit"]=68 + }, + ["cost_atk_difference"]={ + ["value"]=535915, + ["unit"]=67 + }, + ["cost_hp"]={ + ["value"]=13465, + ["unit"]=68 + }, + ["cost_hp_difference"]={ + ["value"]=535915, + ["unit"]=67 + } + }, + [153]={ + ["lv_stage"]=300000, + ["cost_atk"]={ + ["value"]=2693, + ["unit"]=69 + }, + ["cost_atk_difference"]={ + ["value"]=107183, + ["unit"]=68 + }, + ["cost_hp"]={ + ["value"]=2693, + ["unit"]=69 + }, + ["cost_hp_difference"]={ + ["value"]=107183, + ["unit"]=68 + } + }, + [154]={ + ["lv_stage"]=305000, + ["cost_atk"]={ + ["value"]=538608, + ["unit"]=69 + }, + ["cost_atk_difference"]={ + ["value"]=21437, + ["unit"]=69 + }, + ["cost_hp"]={ + ["value"]=538608, + ["unit"]=69 + }, + ["cost_hp_difference"]={ + ["value"]=21437, + ["unit"]=69 + } + }, + [155]={ + ["lv_stage"]=310000, + ["cost_atk"]={ + ["value"]=107722, + ["unit"]=70 + }, + ["cost_atk_difference"]={ + ["value"]=4287, + ["unit"]=70 + }, + ["cost_hp"]={ + ["value"]=107722, + ["unit"]=70 + }, + ["cost_hp_difference"]={ + ["value"]=4287, + ["unit"]=70 + } + }, + [156]={ + ["lv_stage"]=315000, + ["cost_atk"]={ + ["value"]=21544, + ["unit"]=71 + }, + ["cost_atk_difference"]={ + ["value"]=857464, + ["unit"]=70 + }, + ["cost_hp"]={ + ["value"]=21544, + ["unit"]=71 + }, + ["cost_hp_difference"]={ + ["value"]=857464, + ["unit"]=70 + } + }, + [157]={ + ["lv_stage"]=320000, + ["cost_atk"]={ + ["value"]=4309, + ["unit"]=72 + }, + ["cost_atk_difference"]={ + ["value"]=171493, + ["unit"]=71 + }, + ["cost_hp"]={ + ["value"]=4309, + ["unit"]=72 + }, + ["cost_hp_difference"]={ + ["value"]=171493, + ["unit"]=71 + } + }, + [158]={ + ["lv_stage"]=325000, + ["cost_atk"]={ + ["value"]=861773, + ["unit"]=72 + }, + ["cost_atk_difference"]={ + ["value"]=34299, + ["unit"]=72 + }, + ["cost_hp"]={ + ["value"]=861773, + ["unit"]=72 + }, + ["cost_hp_difference"]={ + ["value"]=34299, + ["unit"]=72 + } + }, + [159]={ + ["lv_stage"]=330000, + ["cost_atk"]={ + ["value"]=172355, + ["unit"]=73 + }, + ["cost_atk_difference"]={ + ["value"]=6860, + ["unit"]=73 + }, + ["cost_hp"]={ + ["value"]=172355, + ["unit"]=73 + }, + ["cost_hp_difference"]={ + ["value"]=6860, + ["unit"]=73 + } + }, + [160]={ + ["lv_stage"]=335000, + ["cost_atk"]={ + ["value"]=34471, + ["unit"]=74 + }, + ["cost_atk_difference"]={ + ["value"]=1372, + ["unit"]=74 + }, + ["cost_hp"]={ + ["value"]=34471, + ["unit"]=74 + }, + ["cost_hp_difference"]={ + ["value"]=1372, + ["unit"]=74 + } + }, + [161]={ + ["lv_stage"]=340000, + ["cost_atk"]={ + ["value"]=6894, + ["unit"]=75 + }, + ["cost_atk_difference"]={ + ["value"]=274388, + ["unit"]=74 + }, + ["cost_hp"]={ + ["value"]=6894, + ["unit"]=75 + }, + ["cost_hp_difference"]={ + ["value"]=274388, + ["unit"]=74 + } + }, + [162]={ + ["lv_stage"]=345000, + ["cost_atk"]={ + ["value"]=1379, + ["unit"]=76 + }, + ["cost_atk_difference"]={ + ["value"]=54878, + ["unit"]=75 + }, + ["cost_hp"]={ + ["value"]=1379, + ["unit"]=76 + }, + ["cost_hp_difference"]={ + ["value"]=54878, + ["unit"]=75 + } + }, + [163]={ + ["lv_stage"]=350000, + ["cost_atk"]={ + ["value"]=275767, + ["unit"]=76 + }, + ["cost_atk_difference"]={ + ["value"]=10976, + ["unit"]=76 + }, + ["cost_hp"]={ + ["value"]=275767, + ["unit"]=76 + }, + ["cost_hp_difference"]={ + ["value"]=10976, + ["unit"]=76 + } + }, + [164]={ + ["lv_stage"]=355000, + ["cost_atk"]={ + ["value"]=55153, + ["unit"]=77 + }, + ["cost_atk_difference"]={ + ["value"]=2195, + ["unit"]=77 + }, + ["cost_hp"]={ + ["value"]=55153, + ["unit"]=77 + }, + ["cost_hp_difference"]={ + ["value"]=2195, + ["unit"]=77 + } + }, + [165]={ + ["lv_stage"]=360000, + ["cost_atk"]={ + ["value"]=11031, + ["unit"]=78 + }, + ["cost_atk_difference"]={ + ["value"]=439022, + ["unit"]=77 + }, + ["cost_hp"]={ + ["value"]=11031, + ["unit"]=78 + }, + ["cost_hp_difference"]={ + ["value"]=439022, + ["unit"]=77 + } + }, + [166]={ + ["lv_stage"]=365000, + ["cost_atk"]={ + ["value"]=2206, + ["unit"]=79 + }, + ["cost_atk_difference"]={ + ["value"]=87804, + ["unit"]=78 + }, + ["cost_hp"]={ + ["value"]=2206, + ["unit"]=79 + }, + ["cost_hp_difference"]={ + ["value"]=87804, + ["unit"]=78 + } + }, + [167]={ + ["lv_stage"]=370000, + ["cost_atk"]={ + ["value"]=441228, + ["unit"]=79 + }, + ["cost_atk_difference"]={ + ["value"]=17561, + ["unit"]=79 + }, + ["cost_hp"]={ + ["value"]=441228, + ["unit"]=79 + }, + ["cost_hp_difference"]={ + ["value"]=17561, + ["unit"]=79 + } + }, + [168]={ + ["lv_stage"]=375000, + ["cost_atk"]={ + ["value"]=88246, + ["unit"]=80 + }, + ["cost_atk_difference"]={ + ["value"]=3512, + ["unit"]=80 + }, + ["cost_hp"]={ + ["value"]=88246, + ["unit"]=80 + }, + ["cost_hp_difference"]={ + ["value"]=3512, + ["unit"]=80 + } + }, + [169]={ + ["lv_stage"]=380000, + ["cost_atk"]={ + ["value"]=17649, + ["unit"]=81 + }, + ["cost_atk_difference"]={ + ["value"]=702434, + ["unit"]=80 + }, + ["cost_hp"]={ + ["value"]=17649, + ["unit"]=81 + }, + ["cost_hp_difference"]={ + ["value"]=702434, + ["unit"]=80 + } + }, + [170]={ + ["lv_stage"]=385000, + ["cost_atk"]={ + ["value"]=3530, + ["unit"]=82 + }, + ["cost_atk_difference"]={ + ["value"]=140487, + ["unit"]=81 + }, + ["cost_hp"]={ + ["value"]=3530, + ["unit"]=82 + }, + ["cost_hp_difference"]={ + ["value"]=140487, + ["unit"]=81 + } + }, + [171]={ + ["lv_stage"]=390000, + ["cost_atk"]={ + ["value"]=705964, + ["unit"]=82 + }, + ["cost_atk_difference"]={ + ["value"]=28097, + ["unit"]=82 + }, + ["cost_hp"]={ + ["value"]=705964, + ["unit"]=82 + }, + ["cost_hp_difference"]={ + ["value"]=28097, + ["unit"]=82 + } + }, + [172]={ + ["lv_stage"]=395000, + ["cost_atk"]={ + ["value"]=141193, + ["unit"]=83 + }, + ["cost_atk_difference"]={ + ["value"]=5619, + ["unit"]=83 + }, + ["cost_hp"]={ + ["value"]=141193, + ["unit"]=83 + }, + ["cost_hp_difference"]={ + ["value"]=5619, + ["unit"]=83 + } + }, + [173]={ + ["lv_stage"]=400000, + ["cost_atk"]={ + ["value"]=28239, + ["unit"]=84 + }, + ["cost_atk_difference"]={ + ["value"]=1124, + ["unit"]=84 + }, + ["cost_hp"]={ + ["value"]=28239, + ["unit"]=84 + }, + ["cost_hp_difference"]={ + ["value"]=1124, + ["unit"]=84 + } + }, + [174]={ + ["lv_stage"]=405000, + ["cost_atk"]={ + ["value"]=5648, + ["unit"]=85 + }, + ["cost_atk_difference"]={ + ["value"]=224779, + ["unit"]=84 + }, + ["cost_hp"]={ + ["value"]=5648, + ["unit"]=85 + }, + ["cost_hp_difference"]={ + ["value"]=224779, + ["unit"]=84 + } + }, + [175]={ + ["lv_stage"]=410000, + ["cost_atk"]={ + ["value"]=1130, + ["unit"]=86 + }, + ["cost_atk_difference"]={ + ["value"]=44956, + ["unit"]=85 + }, + ["cost_hp"]={ + ["value"]=1130, + ["unit"]=86 + }, + ["cost_hp_difference"]={ + ["value"]=44956, + ["unit"]=85 + } + }, + [176]={ + ["lv_stage"]=415000, + ["cost_atk"]={ + ["value"]=225909, + ["unit"]=86 + }, + ["cost_atk_difference"]={ + ["value"]=8991, + ["unit"]=86 + }, + ["cost_hp"]={ + ["value"]=225909, + ["unit"]=86 + }, + ["cost_hp_difference"]={ + ["value"]=8991, + ["unit"]=86 + } + }, + [177]={ + ["lv_stage"]=420000, + ["cost_atk"]={ + ["value"]=45182, + ["unit"]=87 + }, + ["cost_atk_difference"]={ + ["value"]=1798, + ["unit"]=87 + }, + ["cost_hp"]={ + ["value"]=45182, + ["unit"]=87 + }, + ["cost_hp_difference"]={ + ["value"]=1798, + ["unit"]=87 + } + }, + [178]={ + ["lv_stage"]=425000, + ["cost_atk"]={ + ["value"]=9036, + ["unit"]=88 + }, + ["cost_atk_difference"]={ + ["value"]=359646, + ["unit"]=87 + }, + ["cost_hp"]={ + ["value"]=9036, + ["unit"]=88 + }, + ["cost_hp_difference"]={ + ["value"]=359646, + ["unit"]=87 + } + }, + [179]={ + ["lv_stage"]=430000, + ["cost_atk"]={ + ["value"]=1807, + ["unit"]=89 + }, + ["cost_atk_difference"]={ + ["value"]=71929, + ["unit"]=88 + }, + ["cost_hp"]={ + ["value"]=1807, + ["unit"]=89 + }, + ["cost_hp_difference"]={ + ["value"]=71929, + ["unit"]=88 + } + }, + [180]={ + ["lv_stage"]=435000, + ["cost_atk"]={ + ["value"]=361454, + ["unit"]=89 + }, + ["cost_atk_difference"]={ + ["value"]=14386, + ["unit"]=89 + }, + ["cost_hp"]={ + ["value"]=361454, + ["unit"]=89 + }, + ["cost_hp_difference"]={ + ["value"]=14386, + ["unit"]=89 + } + }, + [181]={ + ["lv_stage"]=440000, + ["cost_atk"]={ + ["value"]=72291, + ["unit"]=90 + }, + ["cost_atk_difference"]={ + ["value"]=2877, + ["unit"]=90 + }, + ["cost_hp"]={ + ["value"]=72291, + ["unit"]=90 + }, + ["cost_hp_difference"]={ + ["value"]=2877, + ["unit"]=90 + } + }, + [182]={ + ["lv_stage"]=445000, + ["cost_atk"]={ + ["value"]=14458, + ["unit"]=91 + }, + ["cost_atk_difference"]={ + ["value"]=575434, + ["unit"]=90 + }, + ["cost_hp"]={ + ["value"]=14458, + ["unit"]=91 + }, + ["cost_hp_difference"]={ + ["value"]=575434, + ["unit"]=90 + } + }, + [183]={ + ["lv_stage"]=450000, + ["cost_atk"]={ + ["value"]=2892, + ["unit"]=92 + }, + ["cost_atk_difference"]={ + ["value"]=115087, + ["unit"]=91 + }, + ["cost_hp"]={ + ["value"]=2892, + ["unit"]=92 + }, + ["cost_hp_difference"]={ + ["value"]=115087, + ["unit"]=91 + } + }, + [184]={ + ["lv_stage"]=455000, + ["cost_atk"]={ + ["value"]=578326, + ["unit"]=92 + }, + ["cost_atk_difference"]={ + ["value"]=23017, + ["unit"]=92 + }, + ["cost_hp"]={ + ["value"]=578326, + ["unit"]=92 + }, + ["cost_hp_difference"]={ + ["value"]=23017, + ["unit"]=92 + } + }, + [185]={ + ["lv_stage"]=460000, + ["cost_atk"]={ + ["value"]=115665, + ["unit"]=93 + }, + ["cost_atk_difference"]={ + ["value"]=4603, + ["unit"]=93 + }, + ["cost_hp"]={ + ["value"]=115665, + ["unit"]=93 + }, + ["cost_hp_difference"]={ + ["value"]=4603, + ["unit"]=93 + } + }, + [186]={ + ["lv_stage"]=465000, + ["cost_atk"]={ + ["value"]=23133, + ["unit"]=94 + }, + ["cost_atk_difference"]={ + ["value"]=920695, + ["unit"]=93 + }, + ["cost_hp"]={ + ["value"]=23133, + ["unit"]=94 + }, + ["cost_hp_difference"]={ + ["value"]=920695, + ["unit"]=93 + } + }, + [187]={ + ["lv_stage"]=470000, + ["cost_atk"]={ + ["value"]=4627, + ["unit"]=95 + }, + ["cost_atk_difference"]={ + ["value"]=184139, + ["unit"]=94 + }, + ["cost_hp"]={ + ["value"]=4627, + ["unit"]=95 + }, + ["cost_hp_difference"]={ + ["value"]=184139, + ["unit"]=94 + } + }, + [188]={ + ["lv_stage"]=475000, + ["cost_atk"]={ + ["value"]=925321, + ["unit"]=95 + }, + ["cost_atk_difference"]={ + ["value"]=36828, + ["unit"]=95 + }, + ["cost_hp"]={ + ["value"]=925321, + ["unit"]=95 + }, + ["cost_hp_difference"]={ + ["value"]=36828, + ["unit"]=95 + } + }, + [189]={ + ["lv_stage"]=480000, + ["cost_atk"]={ + ["value"]=185064, + ["unit"]=96 + }, + ["cost_atk_difference"]={ + ["value"]=7366, + ["unit"]=96 + }, + ["cost_hp"]={ + ["value"]=185064, + ["unit"]=96 + }, + ["cost_hp_difference"]={ + ["value"]=7366, + ["unit"]=96 + } + }, + [190]={ + ["lv_stage"]=485000, + ["cost_atk"]={ + ["value"]=37013, + ["unit"]=97 + }, + ["cost_atk_difference"]={ + ["value"]=1473, + ["unit"]=97 + }, + ["cost_hp"]={ + ["value"]=37013, + ["unit"]=97 + }, + ["cost_hp_difference"]={ + ["value"]=1473, + ["unit"]=97 + } + }, + [191]={ + ["lv_stage"]=490000, + ["cost_atk"]={ + ["value"]=7403, + ["unit"]=98 + }, + ["cost_atk_difference"]={ + ["value"]=294622, + ["unit"]=97 + }, + ["cost_hp"]={ + ["value"]=7403, + ["unit"]=98 + }, + ["cost_hp_difference"]={ + ["value"]=294622, + ["unit"]=97 + } + }, + [192]={ + ["lv_stage"]=495000, + ["cost_atk"]={ + ["value"]=1481, + ["unit"]=99 + }, + ["cost_atk_difference"]={ + ["value"]=58924, + ["unit"]=98 + }, + ["cost_hp"]={ + ["value"]=1481, + ["unit"]=99 + }, + ["cost_hp_difference"]={ + ["value"]=58924, + ["unit"]=98 + } + }, + [193]={ + ["lv_stage"]=500000, + ["cost_atk"]={ + ["value"]=296103, + ["unit"]=99 + }, + ["cost_atk_difference"]={ + ["value"]=592206, + ["unit"]=97 + }, + ["cost_hp"]={ + ["value"]=296103, + ["unit"]=99 + }, + ["cost_hp_difference"]={ + ["value"]=592206, + ["unit"]=97 + } + } +} +local config = { +data=train,count=193 +} +return config \ No newline at end of file diff --git a/lua/app/config/train.lua.meta b/lua/app/config/train.lua.meta new file mode 100644 index 00000000..69118172 --- /dev/null +++ b/lua/app/config/train.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d1db9a55d0015d94fbbe014991f5d664 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/tutorial.lua b/lua/app/config/tutorial.lua new file mode 100644 index 00000000..6865c34e --- /dev/null +++ b/lua/app/config/tutorial.lua @@ -0,0 +1,1728 @@ +local tutorial = { + [10000]={ + ["next_id"]=10010, + ["stop_id"]=10000, + ["stop_fight"]=1, + ["type"]=1, + ["txt"]="TUTORIAL_TXT_1", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["show_mask"]=3 + }, + [10010]={ + ["next_id"]=10020, + ["stop_id"]=10000, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_2", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 250 + }, + ["target_name"]="main_ui(Clone)/battle_node/battle_ui_comp(Clone)/right_btn", + ["arrow_direction"]=4, + ["arrow_offset"]={ + 90, + 0 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [10020]={ + ["next_id"]=0, + ["stop_id"]=0, + ["type"]=2, + ["target_name"]="main_ui(Clone)/battle_node/battle_ui_comp(Clone)/right_btn", + ["arrow_direction"]=4, + ["arrow_offset"]={ + 90, + 0 + } + }, + [20000]={ + ["next_id"]=20010, + ["stop_id"]=20000, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_3", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 50 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_3", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [20010]={ + ["next_id"]=20020, + ["stop_id"]=20000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/train_main_comp/sub_bg/cultivation_bg_1/up_bg/up_btn", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -100, + 0 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [20020]={ + ["next_id"]=20030, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=3, + ["finish"]=4, + ["finish_parameter"]=5, + ["txt"]="TUTORIAL_TXT_4", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 265 + }, + ["target_name"]="main_ui(Clone)/sub_ui_node/train_main_comp/sub_bg/cultivation_bg_1/up_bg/up_btn", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -100, + 0 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [20030]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_3", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30000]={ + ["next_id"]=30011, + ["stop_id"]=30000, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_5", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_5", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30011]={ + ["next_id"]=30010, + ["stop_id"]=30000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/shop_main_comp/btn_bottom/btn_summon", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [30010]={ + ["next_id"]=30020, + ["stop_id"]=30000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/shop_main_comp/page_node/summon_comp/summon_box_list/Viewport/Content/scroll_cell_1/btn_node/btn_summon_2", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [30020]={ + ["next_id"]=30030, + ["stop_id"]=30031, + ["stop_fight"]=1, + ["type"]=4, + ["finish"]=1, + ["finish_parameter"]=1 + }, + [30030]={ + ["next_id"]=30040, + ["stop_id"]=30031, + ["stop_fight"]=1, + ["type"]=5, + ["finish"]=2, + ["finish_parameter"]=1 + }, + [30031]={ + ["next_id"]=30050, + ["stop_id"]=30031, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_6", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30040]={ + ["next_id"]=30050, + ["stop_id"]=30031, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_6", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30050]={ + ["next_id"]=30060, + ["stop_id"]=30031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30060]={ + ["next_id"]=30070, + ["stop_id"]=30031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/hero_comp/equip_cell_1", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + } + }, + [30070]={ + ["next_id"]=30080, + ["stop_id"]=30031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/scroll_rect/Viewport/Content/scroll_cell_3", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [30080]={ + ["next_id"]=30090, + ["stop_id"]=30031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/equip_btn", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + } + }, + [30081]={ + ["next_id"]=30082, + ["stop_id"]=30081, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30082]={ + ["next_id"]=30083, + ["stop_id"]=30081, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30083]={ + ["next_id"]=30090, + ["stop_id"]=30081, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/hero_comp/equip_cell_1", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + } + }, + [30090]={ + ["next_id"]=30100, + ["stop_id"]=30081, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_7", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 150 + }, + ["target_name"]="hero_equip_ui(Clone)/bg/up_btn", + ["arrow_direction"]=4, + ["arrow_offset"]={ + 90, + 0 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [30091]={ + ["next_id"]=30092, + ["stop_id"]=30091, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30092]={ + ["next_id"]=30093, + ["stop_id"]=30091, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [30093]={ + ["next_id"]=30100, + ["stop_id"]=30091, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/hero_comp/equip_cell_1", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + } + }, + [30100]={ + ["next_id"]=30110, + ["stop_id"]=30091, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_8", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 200 + }, + ["target_name"]="hero_equip_ui(Clone)/bg/all_up_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [30110]={ + ["next_id"]=30120, + ["stop_id"]=30150, + ["stop_fight"]=1, + ["type"]=4, + ["finish"]=1, + ["finish_parameter"]=4 + }, + [30120]={ + ["next_id"]=30130, + ["stop_id"]=30150, + ["stop_fight"]=1, + ["type"]=5, + ["finish"]=2, + ["finish_parameter"]=4 + }, + [30130]={ + ["next_id"]=30140, + ["stop_id"]=30150, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/close_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + } + }, + [30140]={ + ["next_id"]=30150, + ["stop_id"]=30150, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + } + }, + [30150]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=1, + ["txt"]="TUTORIAL_TXT_9", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 200 + }, + ["target_name"]="main_ui(Clone)/battle_node/battle_ui_comp(Clone)/skill_bg/skill_2", + ["show_mask"]=1, + ["square_size"]={ + 120, + 20 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [40000]={ + ["next_id"]=40001, + ["stop_id"]=40000, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_10", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_5", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [40001]={ + ["next_id"]=40010, + ["stop_id"]=40000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/shop_main_comp/btn_bottom/btn_summon", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [40010]={ + ["next_id"]=40020, + ["stop_id"]=40000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/shop_main_comp/page_node/summon_comp/summon_box_list/Viewport/Content/scroll_cell_2/btn_node/btn_summon_2", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [40020]={ + ["next_id"]=40030, + ["stop_id"]=40031, + ["stop_fight"]=1, + ["type"]=4, + ["finish"]=1, + ["finish_parameter"]=2 + }, + [40030]={ + ["next_id"]=40040, + ["stop_id"]=40031, + ["stop_fight"]=1, + ["type"]=5, + ["finish"]=2, + ["finish_parameter"]=2 + }, + [40031]={ + ["next_id"]=40050, + ["stop_id"]=40031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [40040]={ + ["next_id"]=40050, + ["stop_id"]=40031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [40050]={ + ["next_id"]=40060, + ["stop_id"]=40031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [40060]={ + ["next_id"]=40070, + ["stop_id"]=40031, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_11", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 50 + }, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/hero_comp/equip_cell_2", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [40070]={ + ["next_id"]=40080, + ["stop_id"]=40031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/scroll_rect/Viewport/Content/scroll_cell_4", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [40080]={ + ["next_id"]=40090, + ["stop_id"]=40031, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/equip_btn", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + } + }, + [40081]={ + ["next_id"]=40082, + ["stop_id"]=40081, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [40082]={ + ["next_id"]=40083, + ["stop_id"]=40081, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [40083]={ + ["next_id"]=40090, + ["stop_id"]=40081, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/hero_comp/equip_cell_2", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [40090]={ + ["next_id"]=40100, + ["stop_id"]=40081, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_12", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 250 + }, + ["target_name"]="hero_equip_ui(Clone)/bg/all_up_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [40100]={ + ["next_id"]=40110, + ["stop_id"]=40121, + ["stop_fight"]=1, + ["type"]=4, + ["finish"]=1, + ["finish_parameter"]=4 + }, + [40110]={ + ["next_id"]=40120, + ["stop_id"]=40121, + ["stop_fight"]=1, + ["type"]=5, + ["finish"]=2, + ["finish_parameter"]=4 + }, + [40120]={ + ["next_id"]=40130, + ["stop_id"]=40121, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/close_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + } + }, + [40121]={ + ["next_id"]=40130, + ["stop_id"]=40121, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [40130]={ + ["next_id"]=40140, + ["stop_id"]=40121, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/hero_comp/equip_cell_3", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + } + }, + [40140]={ + ["next_id"]=40150, + ["stop_id"]=40121, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/scroll_rect/Viewport/Content/scroll_cell_4", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + } + }, + [40150]={ + ["next_id"]=40160, + ["stop_id"]=40121, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/equip_btn", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + } + }, + [40160]={ + ["next_id"]=40170, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/all_up_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + } + }, + [40170]={ + ["next_id"]=40180, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=4, + ["finish"]=1, + ["finish_parameter"]=4 + }, + [40180]={ + ["next_id"]=40190, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=5, + ["finish"]=2, + ["finish_parameter"]=4 + }, + [40190]={ + ["next_id"]=40200, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="hero_equip_ui(Clone)/bg/close_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + } + }, + [40200]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + } + }, + [50000]={ + ["next_id"]=50010, + ["stop_id"]=50000, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_14", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_5", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [50010]={ + ["next_id"]=50020, + ["stop_id"]=50000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/shop_main_comp/btn_bottom/btn_summon", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [50020]={ + ["next_id"]=50030, + ["stop_id"]=50000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/shop_main_comp/page_node/summon_comp/summon_box_list/Viewport/Content/scroll_cell_3/btn_node/btn_summon_2", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [50030]={ + ["next_id"]=50040, + ["stop_id"]=50051, + ["stop_fight"]=1, + ["type"]=4, + ["finish"]=1, + ["finish_parameter"]=1 + }, + [50040]={ + ["next_id"]=50050, + ["stop_id"]=50051, + ["stop_fight"]=1, + ["type"]=5, + ["finish"]=2, + ["finish_parameter"]=1 + }, + [50050]={ + ["next_id"]=50060, + ["stop_id"]=50051, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_15", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [50051]={ + ["next_id"]=50060, + ["stop_id"]=50051, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [50060]={ + ["next_id"]=50070, + ["stop_id"]=50051, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_2", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [50070]={ + ["next_id"]=50080, + ["stop_id"]=50051, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/legacy_comp/scroll_rect/Viewport/Content/scroll_cell_5", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [50080]={ + ["next_id"]=50090, + ["stop_id"]=50051, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="legacy_up_tips(Clone)/bg/btn_1", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + } + }, + [50081]={ + ["next_id"]=50082, + ["stop_id"]=50081, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [50082]={ + ["next_id"]=50070, + ["stop_id"]=50081, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_2", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [50090]={ + ["next_id"]=50100, + ["stop_id"]=50091, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_16", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 200 + }, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/legacy_comp/all_up_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [50091]={ + ["next_id"]=50092, + ["stop_id"]=50091, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [50092]={ + ["next_id"]=50090, + ["stop_id"]=50091, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_2", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [50100]={ + ["next_id"]=50110, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=4, + ["finish"]=1, + ["finish_parameter"]=4 + }, + [50110]={ + ["next_id"]=50120, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=5, + ["finish"]=2, + ["finish_parameter"]=4 + }, + [50120]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_17", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 200 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [60000]={ + ["next_id"]=60010, + ["stop_id"]=60000, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_18", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_1", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [60010]={ + ["next_id"]=60020, + ["stop_id"]=60000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/page_btn_3", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [60020]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/hero_main_comp/sub_bg/mastery_comp/up_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [70000]={ + ["next_id"]=70010, + ["stop_id"]=70000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_2", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [70010]={ + ["next_id"]=70020, + ["stop_id"]=70000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/dungeon_main_comp/bg/dungeon_list/Viewport/Content/scroll_cell_1/normal_root/btn_enter", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + } + }, + [70020]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="dungeon_detail_ui(Clone)/bg/btn_enter", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + } + }, + [80000]={ + ["next_id"]=80010, + ["stop_id"]=80000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_2", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [80010]={ + ["next_id"]=80020, + ["stop_id"]=80000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/dungeon_main_comp/bg/dungeon_list/Viewport/Content/scroll_cell_2/normal_root/btn_enter", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + } + }, + [80020]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="dungeon_detail_ui(Clone)/bg/btn_enter", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + } + }, + [90000]={ + ["next_id"]=90010, + ["stop_id"]=90000, + ["stop_fight"]=1, + ["type"]=3, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_2", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [90010]={ + ["next_id"]=90020, + ["stop_id"]=90000, + ["stop_fight"]=1, + ["type"]=4, + ["finish"]=5 + }, + [90020]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/dungeon_main_comp/bg/dungeon_list/Viewport/Content/scroll_cell_4/normal_root/btn_enter", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + } + }, + [100000]={ + ["next_id"]=100010, + ["stop_id"]=100000, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_19", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 0 + }, + ["target_name"]="main_ui(Clone)/bottom_node/bottom_btn_cell_4", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [100010]={ + ["next_id"]=100020, + ["stop_id"]=100000, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="main_ui(Clone)/sub_ui_node/mining_main_comp/enter_root/enter_cell_mining/btn_enter", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [100020]={ + ["next_id"]=100030, + ["stop_id"]=100000, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_20", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 200 + }, + ["target_name"]="mining_ui(Clone)/mining_bg/bg_cost_2", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 40, + 10 + }, + ["square_offset"]={ + 0, + 0 + } + }, + [100030]={ + ["next_id"]=100040, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/middle_bg/grid_layout/CELL_1_1/btn_cast", + ["arrow_direction"]=4, + ["arrow_offset"]={ + 90, + 0 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + } + }, + [100040]={ + ["next_id"]=100050, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/middle_bg/grid_layout/CELL_2_1/btn_cast", + ["arrow_direction"]=4, + ["arrow_offset"]={ + 90, + 0 + } + }, + [100050]={ + ["next_id"]=100060, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/middle_bg/grid_layout/CELL_3_1/btn_cast", + ["arrow_direction"]=4, + ["arrow_offset"]={ + 90, + 0 + } + }, + [100060]={ + ["next_id"]=100070, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/middle_bg/grid_layout/CELL_4_1/btn_cast", + ["arrow_direction"]=4, + ["arrow_offset"]={ + 90, + 0 + } + }, + [100070]={ + ["next_id"]=100080, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/mining_bg/bg_cost_3", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + } + }, + [100080]={ + ["next_id"]=100090, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/middle_bg/grid_layout/CELL_5_1/btn_cast", + ["arrow_direction"]=4, + ["arrow_offset"]={ + 90, + 0 + } + }, + [100090]={ + ["next_id"]=100100, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/mining_bg/bg_cost_1", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["show_mask"]=1, + ["square_size"]={ + 10, + 10 + } + }, + [100100]={ + ["next_id"]=100110, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/middle_bg/grid_layout/CELL_6_6/btn_cast", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + } + }, + [100110]={ + ["next_id"]=100120, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="mining_ui(Clone)/mining_bg/btn_tips", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + }, + ["circle_r"]=50, + ["circle_offset"]={ + 0, + 0 + } + }, + [100120]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=1, + ["txt"]="TUTORIAL_TXT_21", + ["show_mask"]=3 + }, + [110000]={ + ["next_id"]=0, + ["stop_id"]=0, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_13", + ["txt_direction"]=2, + ["txt_offset"]={ + 0, + 200 + }, + ["target_name"]="main_ui(Clone)/battle_node/battle_ui_comp(Clone)/auto_btn", + ["arrow_direction"]=2, + ["arrow_offset"]={ + 0, + 50 + }, + ["show_mask"]=2, + ["circle_r"]=100, + ["circle_offset"]={ + 0, + 0 + } + }, + [120000]={ + + }, + [130000]={ + ["next_id"]=130010, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=3, + ["txt"]="TUTORIAL_TXT_22", + ["target_name"]="main_ui(Clone)/right_node/side_bar_bg/handbook_cell", + ["arrow_direction"]=3, + ["arrow_offset"]={ + -90, + 0 + }, + ["show_mask"]=2, + ["circle_r"]=50, + ["circle_offset"]={ + 0, + 0 + } + }, + [130010]={ + ["next_id"]=0, + ["stop_id"]=0, + ["stop_fight"]=1, + ["type"]=2, + ["target_name"]="collection_main_ui(Clone)/bg/scroll_view/viewport/content/scroll_cell_1/up_btn", + ["arrow_direction"]=1, + ["arrow_offset"]={ + 0, + -50 + } + } +} +local config = { +data=tutorial,count=105 +} +return config \ No newline at end of file diff --git a/lua/app/config/tutorial.lua.meta b/lua/app/config/tutorial.lua.meta new file mode 100644 index 00000000..5c614877 --- /dev/null +++ b/lua/app/config/tutorial.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 239f6e681e1fe7741bf1cd1912e5d660 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/tutorial_start.lua b/lua/app/config/tutorial_start.lua new file mode 100644 index 00000000..3f24d6c7 --- /dev/null +++ b/lua/app/config/tutorial_start.lua @@ -0,0 +1,57 @@ +local tutorial_start = { + [1]={ + ["start_id"]=10000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [2]={ + ["start_id"]=20000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [3]={ + ["start_id"]=30000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [4]={ + ["start_id"]=40000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [5]={ + ["start_id"]=50000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [6]={ + ["start_id"]=60000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [7]={ + ["start_id"]=70000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [8]={ + ["start_id"]=80000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [9]={ + ["start_id"]=90000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [10]={ + ["start_id"]=100000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [11]={ + ["start_id"]=110000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + }, + [12]={ + ["start_id"]=120000 + }, + [13]={ + ["start_id"]=130000, + ["uires_path"]="assets/prefabs/ui/main_city/main_ui.prefab" + } +} +local config = { +data=tutorial_start,count=13 +} +return config \ No newline at end of file diff --git a/lua/app/config/tutorial_start.lua.meta b/lua/app/config/tutorial_start.lua.meta new file mode 100644 index 00000000..f5e27a83 --- /dev/null +++ b/lua/app/config/tutorial_start.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6f28a4b8e8f1c094591a33f0d2e8922f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/config/tutorialtask.lua b/lua/app/config/tutorialtask.lua new file mode 100644 index 00000000..be6af7cd --- /dev/null +++ b/lua/app/config/tutorialtask.lua @@ -0,0 +1,13254 @@ +local tutorialtask = { + [1]={ + ["next"]=2, + ["type"]=2, + ["parameter"]=1, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["must_tutorial"]=1 + }, + [2]={ + ["next"]=3, + ["type"]=24, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["tutorial_id"]=2 + }, + [3]={ + ["next"]=4, + ["type"]=2, + ["parameter"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [4]={ + ["next"]=5, + ["type"]=25, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [5]={ + ["next"]=6, + ["type"]=1, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [6]={ + ["next"]=7, + ["type"]=24, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [7]={ + ["next"]=8, + ["type"]=2, + ["parameter"]=4, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [8]={ + ["next"]=9, + ["type"]=25, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [9]={ + ["next"]=10, + ["type"]=2, + ["parameter"]=7, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + ["must_tutorial"]=1 + }, + [10]={ + ["next"]=11, + ["type"]=7, + ["parameter"]=35, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["tutorial_id"]=3 + }, + [11]={ + ["next"]=12, + ["type"]=2, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=13, + ["count"]={ + ["value"]=2, + ["unit"]=0 + } + }, + ["must_tutorial"]=1 + }, + [12]={ + ["next"]=13, + ["type"]=24, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["tutorial_id"]=6 + }, + [13]={ + ["next"]=14, + ["type"]=25, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [14]={ + ["next"]=15, + ["type"]=2, + ["parameter"]=15, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["must_tutorial"]=1 + }, + [15]={ + ["next"]=16, + ["type"]=24, + ["parameter"]=40, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + }, + ["tutorial_id"]=11 + }, + [16]={ + ["next"]=17, + ["type"]=1, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [17]={ + ["next"]=18, + ["type"]=25, + ["parameter"]=40, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + ["must_tutorial"]=1 + }, + [18]={ + ["next"]=19, + ["type"]=8, + ["parameter"]=35, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + }, + ["tutorial_id"]=4 + }, + [19]={ + ["next"]=20, + ["type"]=2, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [20]={ + ["next"]=21, + ["type"]=24, + ["parameter"]=60, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [21]={ + ["next"]=22, + ["type"]=1, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [22]={ + ["next"]=23, + ["type"]=25, + ["parameter"]=60, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [23]={ + ["next"]=24, + ["type"]=2, + ["parameter"]=25, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [24]={ + ["next"]=25, + ["type"]=1, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [25]={ + ["next"]=26, + ["type"]=7, + ["parameter"]=45, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [26]={ + ["next"]=27, + ["type"]=8, + ["parameter"]=45, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [27]={ + ["next"]=28, + ["type"]=2, + ["parameter"]=30, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [28]={ + ["next"]=29, + ["type"]=24, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [29]={ + ["next"]=30, + ["type"]=1, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [30]={ + ["next"]=31, + ["type"]=25, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [31]={ + ["next"]=32, + ["type"]=2, + ["parameter"]=35, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [32]={ + ["next"]=33, + ["type"]=7, + ["parameter"]=70, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [33]={ + ["next"]=34, + ["type"]=8, + ["parameter"]=70, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [34]={ + ["next"]=35, + ["type"]=2, + ["parameter"]=40, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [35]={ + ["next"]=36, + ["type"]=1, + ["parameter"]=30, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["must_tutorial"]=1 + }, + [36]={ + ["next"]=37, + ["type"]=10, + ["parameter"]=1, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["tutorial_id"]=8, + ["must_tutorial"]=1 + }, + [37]={ + ["next"]=38, + ["type"]=11, + ["parameter"]=1, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["tutorial_id"]=7 + }, + [38]={ + ["next"]=39, + ["type"]=24, + ["parameter"]=120, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [39]={ + ["next"]=40, + ["type"]=25, + ["parameter"]=120, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [40]={ + ["next"]=41, + ["type"]=2, + ["parameter"]=45, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=1500, + ["unit"]=0 + } + }, + ["must_tutorial"]=1 + }, + [41]={ + ["next"]=42, + ["type"]=9, + ["parameter"]=35, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + }, + ["tutorial_id"]=5 + }, + [42]={ + ["next"]=43, + ["type"]=24, + ["parameter"]=160, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [43]={ + ["next"]=44, + ["type"]=25, + ["parameter"]=160, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [44]={ + ["next"]=45, + ["type"]=1, + ["parameter"]=40, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [45]={ + ["next"]=46, + ["type"]=2, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [46]={ + ["next"]=47, + ["type"]=1, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [47]={ + ["next"]=48, + ["type"]=24, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [48]={ + ["next"]=49, + ["type"]=25, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [49]={ + ["next"]=50, + ["type"]=2, + ["parameter"]=60, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [50]={ + ["next"]=51, + ["type"]=7, + ["parameter"]=105, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [51]={ + ["next"]=52, + ["type"]=8, + ["parameter"]=105, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [52]={ + ["next"]=53, + ["type"]=9, + ["parameter"]=105, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [53]={ + ["next"]=54, + ["type"]=1, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [54]={ + ["next"]=55, + ["type"]=24, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [55]={ + ["next"]=56, + ["type"]=25, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [56]={ + ["next"]=57, + ["type"]=2, + ["parameter"]=70, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [57]={ + ["next"]=58, + ["type"]=10, + ["parameter"]=3, + ["reward"]={ + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + [58]={ + ["next"]=59, + ["type"]=11, + ["parameter"]=3, + ["reward"]={ + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + [59]={ + ["next"]=60, + ["type"]=1, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [60]={ + ["next"]=61, + ["type"]=24, + ["parameter"]=400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [61]={ + ["next"]=62, + ["type"]=25, + ["parameter"]=400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [62]={ + ["next"]=63, + ["type"]=2, + ["parameter"]=80, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [63]={ + ["next"]=64, + ["type"]=7, + ["parameter"]=140, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [64]={ + ["next"]=65, + ["type"]=8, + ["parameter"]=140, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [65]={ + ["next"]=66, + ["type"]=9, + ["parameter"]=140, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [66]={ + ["next"]=67, + ["type"]=24, + ["parameter"]=500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [67]={ + ["next"]=68, + ["type"]=25, + ["parameter"]=500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [68]={ + ["next"]=69, + ["type"]=2, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [69]={ + ["next"]=70, + ["type"]=10, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=4, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + [70]={ + ["next"]=71, + ["type"]=11, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=5, + ["count"]={ + ["value"]=1, + ["unit"]=0 + } + } + }, + [71]={ + ["next"]=72, + ["type"]=1, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [72]={ + ["next"]=73, + ["type"]=24, + ["parameter"]=600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [73]={ + ["next"]=74, + ["type"]=25, + ["parameter"]=600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [74]={ + ["next"]=75, + ["type"]=2, + ["parameter"]=120, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [75]={ + ["next"]=76, + ["type"]=7, + ["parameter"]=210, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [76]={ + ["next"]=77, + ["type"]=8, + ["parameter"]=210, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [77]={ + ["next"]=78, + ["type"]=1, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [78]={ + ["next"]=79, + ["type"]=24, + ["parameter"]=700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [79]={ + ["next"]=80, + ["type"]=25, + ["parameter"]=700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [80]={ + ["next"]=81, + ["type"]=2, + ["parameter"]=150, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [81]={ + ["next"]=82, + ["type"]=14, + ["parameter"]=1, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [82]={ + ["next"]=83, + ["type"]=9, + ["parameter"]=210, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [83]={ + ["next"]=84, + ["type"]=1, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [84]={ + ["next"]=85, + ["type"]=10, + ["parameter"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [85]={ + ["next"]=86, + ["type"]=11, + ["parameter"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [86]={ + ["next"]=87, + ["type"]=14, + ["parameter"]=1, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [87]={ + ["next"]=88, + ["type"]=24, + ["parameter"]=800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [88]={ + ["next"]=89, + ["type"]=25, + ["parameter"]=800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [89]={ + ["next"]=90, + ["type"]=2, + ["parameter"]=180, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [90]={ + ["next"]=91, + ["type"]=15, + ["parameter"]=30, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [91]={ + ["next"]=92, + ["type"]=18, + ["parameter"]=1, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [92]={ + ["next"]=93, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [93]={ + ["next"]=94, + ["type"]=24, + ["parameter"]=900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [94]={ + ["next"]=95, + ["type"]=25, + ["parameter"]=900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [95]={ + ["next"]=96, + ["type"]=15, + ["parameter"]=60, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [96]={ + ["next"]=97, + ["type"]=2, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [97]={ + ["next"]=98, + ["type"]=7, + ["parameter"]=250, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [98]={ + ["next"]=99, + ["type"]=8, + ["parameter"]=250, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [99]={ + ["next"]=100, + ["type"]=9, + ["parameter"]=250, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=250, + ["unit"]=0 + } + } + }, + [100]={ + ["next"]=101, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [101]={ + ["next"]=102, + ["type"]=24, + ["parameter"]=1000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [102]={ + ["next"]=103, + ["type"]=25, + ["parameter"]=1000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [103]={ + ["next"]=104, + ["type"]=15, + ["parameter"]=90, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [104]={ + ["next"]=105, + ["type"]=18, + ["parameter"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [105]={ + ["next"]=106, + ["type"]=2, + ["parameter"]=220, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [106]={ + ["next"]=107, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [107]={ + ["next"]=108, + ["type"]=14, + ["parameter"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [108]={ + ["next"]=109, + ["type"]=15, + ["parameter"]=120, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [109]={ + ["next"]=110, + ["type"]=2, + ["parameter"]=260, + ["reward"]={ + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=100, + ["unit"]=0 + } + } + }, + [110]={ + ["next"]=111, + ["type"]=24, + ["parameter"]=1100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [111]={ + ["next"]=112, + ["type"]=25, + ["parameter"]=1100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [112]={ + ["next"]=113, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [113]={ + ["next"]=114, + ["type"]=12, + ["parameter"]=2, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [114]={ + ["next"]=115, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [115]={ + ["next"]=116, + ["type"]=2, + ["parameter"]=280, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [116]={ + ["next"]=117, + ["type"]=24, + ["parameter"]=1200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [117]={ + ["next"]=118, + ["type"]=25, + ["parameter"]=1200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [118]={ + ["next"]=119, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [119]={ + ["next"]=120, + ["type"]=7, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [120]={ + ["next"]=121, + ["type"]=8, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [121]={ + ["next"]=122, + ["type"]=2, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [122]={ + ["next"]=123, + ["type"]=24, + ["parameter"]=1300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [123]={ + ["next"]=124, + ["type"]=25, + ["parameter"]=1300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [124]={ + ["next"]=125, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [125]={ + ["next"]=126, + ["type"]=11, + ["parameter"]=7, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [126]={ + ["next"]=127, + ["type"]=10, + ["parameter"]=7, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [127]={ + ["next"]=128, + ["type"]=2, + ["parameter"]=320, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [128]={ + ["next"]=129, + ["type"]=24, + ["parameter"]=1400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [129]={ + ["next"]=130, + ["type"]=25, + ["parameter"]=1400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [130]={ + ["next"]=131, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [131]={ + ["next"]=132, + ["type"]=9, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [132]={ + ["next"]=133, + ["type"]=15, + ["parameter"]=180, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [133]={ + ["next"]=134, + ["type"]=2, + ["parameter"]=340, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [134]={ + ["next"]=135, + ["type"]=24, + ["parameter"]=1500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [135]={ + ["next"]=136, + ["type"]=25, + ["parameter"]=1500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [136]={ + ["next"]=137, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [137]={ + ["next"]=138, + ["type"]=12, + ["parameter"]=4, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [138]={ + ["next"]=139, + ["type"]=14, + ["parameter"]=3, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [139]={ + ["next"]=140, + ["type"]=2, + ["parameter"]=360, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [140]={ + ["next"]=141, + ["type"]=24, + ["parameter"]=1600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [141]={ + ["next"]=142, + ["type"]=25, + ["parameter"]=1600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [142]={ + ["next"]=143, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [143]={ + ["next"]=144, + ["type"]=7, + ["parameter"]=400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [144]={ + ["next"]=145, + ["type"]=8, + ["parameter"]=400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [145]={ + ["next"]=146, + ["type"]=2, + ["parameter"]=380, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [146]={ + ["next"]=147, + ["type"]=24, + ["parameter"]=1800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [147]={ + ["next"]=148, + ["type"]=25, + ["parameter"]=1800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [148]={ + ["next"]=149, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [149]={ + ["next"]=150, + ["type"]=11, + ["parameter"]=8, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [150]={ + ["next"]=151, + ["type"]=10, + ["parameter"]=8, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [151]={ + ["next"]=152, + ["type"]=2, + ["parameter"]=400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [152]={ + ["next"]=153, + ["type"]=24, + ["parameter"]=2000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [153]={ + ["next"]=154, + ["type"]=25, + ["parameter"]=2000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [154]={ + ["next"]=155, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [155]={ + ["next"]=156, + ["type"]=9, + ["parameter"]=400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [156]={ + ["next"]=157, + ["type"]=15, + ["parameter"]=240, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [157]={ + ["next"]=158, + ["type"]=2, + ["parameter"]=420, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [158]={ + ["next"]=159, + ["type"]=24, + ["parameter"]=2200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [159]={ + ["next"]=160, + ["type"]=25, + ["parameter"]=2200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [160]={ + ["next"]=161, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [161]={ + ["next"]=162, + ["type"]=12, + ["parameter"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [162]={ + ["next"]=163, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [163]={ + ["next"]=164, + ["type"]=2, + ["parameter"]=440, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [164]={ + ["next"]=165, + ["type"]=24, + ["parameter"]=2400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [165]={ + ["next"]=166, + ["type"]=25, + ["parameter"]=2400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [166]={ + ["next"]=167, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [167]={ + ["next"]=168, + ["type"]=7, + ["parameter"]=500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [168]={ + ["next"]=169, + ["type"]=8, + ["parameter"]=500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [169]={ + ["next"]=170, + ["type"]=2, + ["parameter"]=460, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [170]={ + ["next"]=171, + ["type"]=24, + ["parameter"]=2600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [171]={ + ["next"]=172, + ["type"]=25, + ["parameter"]=2600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [172]={ + ["next"]=173, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [173]={ + ["next"]=174, + ["type"]=11, + ["parameter"]=9, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [174]={ + ["next"]=175, + ["type"]=10, + ["parameter"]=9, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [175]={ + ["next"]=176, + ["type"]=2, + ["parameter"]=480, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [176]={ + ["next"]=177, + ["type"]=24, + ["parameter"]=2800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [177]={ + ["next"]=178, + ["type"]=25, + ["parameter"]=2800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [178]={ + ["next"]=179, + ["type"]=1, + ["parameter"]=100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [179]={ + ["next"]=180, + ["type"]=9, + ["parameter"]=500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [180]={ + ["next"]=181, + ["type"]=15, + ["parameter"]=360, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [181]={ + ["next"]=182, + ["type"]=2, + ["parameter"]=500, + ["reward"]={ + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=200, + ["unit"]=0 + } + } + }, + [182]={ + ["next"]=183, + ["type"]=24, + ["parameter"]=3000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [183]={ + ["next"]=184, + ["type"]=25, + ["parameter"]=3000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [184]={ + ["next"]=185, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [185]={ + ["next"]=186, + ["type"]=12, + ["parameter"]=8, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [186]={ + ["next"]=187, + ["type"]=14, + ["parameter"]=4, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [187]={ + ["next"]=188, + ["type"]=2, + ["parameter"]=520, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [188]={ + ["next"]=189, + ["type"]=24, + ["parameter"]=3200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [189]={ + ["next"]=190, + ["type"]=25, + ["parameter"]=3200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [190]={ + ["next"]=191, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [191]={ + ["next"]=192, + ["type"]=7, + ["parameter"]=600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [192]={ + ["next"]=193, + ["type"]=8, + ["parameter"]=600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [193]={ + ["next"]=194, + ["type"]=2, + ["parameter"]=540, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [194]={ + ["next"]=195, + ["type"]=24, + ["parameter"]=3400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [195]={ + ["next"]=196, + ["type"]=25, + ["parameter"]=3400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [196]={ + ["next"]=197, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [197]={ + ["next"]=198, + ["type"]=11, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [198]={ + ["next"]=199, + ["type"]=10, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [199]={ + ["next"]=200, + ["type"]=2, + ["parameter"]=560, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [200]={ + ["next"]=201, + ["type"]=24, + ["parameter"]=3600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [201]={ + ["next"]=202, + ["type"]=25, + ["parameter"]=3600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [202]={ + ["next"]=203, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [203]={ + ["next"]=204, + ["type"]=9, + ["parameter"]=600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [204]={ + ["next"]=205, + ["type"]=15, + ["parameter"]=480, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [205]={ + ["next"]=206, + ["type"]=2, + ["parameter"]=580, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [206]={ + ["next"]=207, + ["type"]=24, + ["parameter"]=3800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [207]={ + ["next"]=208, + ["type"]=25, + ["parameter"]=3800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [208]={ + ["next"]=209, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [209]={ + ["next"]=210, + ["type"]=12, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [210]={ + ["next"]=211, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [211]={ + ["next"]=212, + ["type"]=2, + ["parameter"]=600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [212]={ + ["next"]=213, + ["type"]=24, + ["parameter"]=4000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [213]={ + ["next"]=214, + ["type"]=25, + ["parameter"]=4000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [214]={ + ["next"]=215, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [215]={ + ["next"]=216, + ["type"]=7, + ["parameter"]=800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [216]={ + ["next"]=217, + ["type"]=8, + ["parameter"]=800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [217]={ + ["next"]=218, + ["type"]=2, + ["parameter"]=620, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [218]={ + ["next"]=219, + ["type"]=24, + ["parameter"]=4200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [219]={ + ["next"]=220, + ["type"]=25, + ["parameter"]=4200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [220]={ + ["next"]=221, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [221]={ + ["next"]=222, + ["type"]=11, + ["parameter"]=11, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [222]={ + ["next"]=223, + ["type"]=10, + ["parameter"]=11, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [223]={ + ["next"]=224, + ["type"]=2, + ["parameter"]=640, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [224]={ + ["next"]=225, + ["type"]=24, + ["parameter"]=4400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [225]={ + ["next"]=226, + ["type"]=25, + ["parameter"]=4400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [226]={ + ["next"]=227, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [227]={ + ["next"]=228, + ["type"]=9, + ["parameter"]=800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [228]={ + ["next"]=229, + ["type"]=15, + ["parameter"]=720, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [229]={ + ["next"]=230, + ["type"]=2, + ["parameter"]=660, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [230]={ + ["next"]=231, + ["type"]=24, + ["parameter"]=4600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [231]={ + ["next"]=232, + ["type"]=25, + ["parameter"]=4600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [232]={ + ["next"]=233, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [233]={ + ["next"]=234, + ["type"]=12, + ["parameter"]=11, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [234]={ + ["next"]=235, + ["type"]=14, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [235]={ + ["next"]=236, + ["type"]=2, + ["parameter"]=680, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [236]={ + ["next"]=237, + ["type"]=24, + ["parameter"]=4800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [237]={ + ["next"]=238, + ["type"]=25, + ["parameter"]=4800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [238]={ + ["next"]=239, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [239]={ + ["next"]=240, + ["type"]=7, + ["parameter"]=1000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [240]={ + ["next"]=241, + ["type"]=8, + ["parameter"]=1000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [241]={ + ["next"]=242, + ["type"]=2, + ["parameter"]=700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [242]={ + ["next"]=243, + ["type"]=24, + ["parameter"]=5000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [243]={ + ["next"]=244, + ["type"]=25, + ["parameter"]=5000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [244]={ + ["next"]=245, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [245]={ + ["next"]=246, + ["type"]=11, + ["parameter"]=12, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [246]={ + ["next"]=247, + ["type"]=10, + ["parameter"]=12, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [247]={ + ["next"]=248, + ["type"]=2, + ["parameter"]=720, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [248]={ + ["next"]=249, + ["type"]=24, + ["parameter"]=5200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [249]={ + ["next"]=250, + ["type"]=25, + ["parameter"]=5200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [250]={ + ["next"]=251, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [251]={ + ["next"]=252, + ["type"]=9, + ["parameter"]=1000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [252]={ + ["next"]=253, + ["type"]=15, + ["parameter"]=960, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [253]={ + ["next"]=254, + ["type"]=2, + ["parameter"]=740, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [254]={ + ["next"]=255, + ["type"]=24, + ["parameter"]=5400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [255]={ + ["next"]=256, + ["type"]=25, + ["parameter"]=5400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [256]={ + ["next"]=257, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [257]={ + ["next"]=258, + ["type"]=12, + ["parameter"]=12, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [258]={ + ["next"]=259, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [259]={ + ["next"]=260, + ["type"]=2, + ["parameter"]=760, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [260]={ + ["next"]=261, + ["type"]=24, + ["parameter"]=5600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [261]={ + ["next"]=262, + ["type"]=25, + ["parameter"]=5600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [262]={ + ["next"]=263, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [263]={ + ["next"]=264, + ["type"]=7, + ["parameter"]=1500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [264]={ + ["next"]=265, + ["type"]=8, + ["parameter"]=1500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [265]={ + ["next"]=266, + ["type"]=2, + ["parameter"]=780, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [266]={ + ["next"]=267, + ["type"]=24, + ["parameter"]=5800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [267]={ + ["next"]=268, + ["type"]=25, + ["parameter"]=5800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [268]={ + ["next"]=269, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [269]={ + ["next"]=270, + ["type"]=11, + ["parameter"]=13, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [270]={ + ["next"]=271, + ["type"]=10, + ["parameter"]=13, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [271]={ + ["next"]=272, + ["type"]=2, + ["parameter"]=800, + ["reward"]={ + ["type"]=1, + ["id"]=8, + ["count"]={ + ["value"]=300, + ["unit"]=0 + } + } + }, + [272]={ + ["next"]=273, + ["type"]=24, + ["parameter"]=6000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [273]={ + ["next"]=274, + ["type"]=25, + ["parameter"]=6000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [274]={ + ["next"]=275, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [275]={ + ["next"]=276, + ["type"]=9, + ["parameter"]=1500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [276]={ + ["next"]=277, + ["type"]=15, + ["parameter"]=1200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [277]={ + ["next"]=278, + ["type"]=2, + ["parameter"]=820, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [278]={ + ["next"]=279, + ["type"]=24, + ["parameter"]=6200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [279]={ + ["next"]=280, + ["type"]=25, + ["parameter"]=6200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [280]={ + ["next"]=281, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [281]={ + ["next"]=282, + ["type"]=12, + ["parameter"]=13, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [282]={ + ["next"]=283, + ["type"]=14, + ["parameter"]=6, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [283]={ + ["next"]=284, + ["type"]=2, + ["parameter"]=840, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [284]={ + ["next"]=285, + ["type"]=24, + ["parameter"]=6400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [285]={ + ["next"]=286, + ["type"]=25, + ["parameter"]=6400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [286]={ + ["next"]=287, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [287]={ + ["next"]=288, + ["type"]=7, + ["parameter"]=2000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [288]={ + ["next"]=289, + ["type"]=8, + ["parameter"]=2000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [289]={ + ["next"]=290, + ["type"]=2, + ["parameter"]=860, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [290]={ + ["next"]=291, + ["type"]=24, + ["parameter"]=6600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [291]={ + ["next"]=292, + ["type"]=25, + ["parameter"]=6600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [292]={ + ["next"]=293, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [293]={ + ["next"]=294, + ["type"]=11, + ["parameter"]=14, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [294]={ + ["next"]=295, + ["type"]=10, + ["parameter"]=14, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [295]={ + ["next"]=296, + ["type"]=2, + ["parameter"]=880, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [296]={ + ["next"]=297, + ["type"]=24, + ["parameter"]=6800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [297]={ + ["next"]=298, + ["type"]=25, + ["parameter"]=6800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [298]={ + ["next"]=299, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [299]={ + ["next"]=300, + ["type"]=9, + ["parameter"]=2000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [300]={ + ["next"]=301, + ["type"]=15, + ["parameter"]=1440, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [301]={ + ["next"]=302, + ["type"]=2, + ["parameter"]=900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [302]={ + ["next"]=303, + ["type"]=24, + ["parameter"]=7000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [303]={ + ["next"]=304, + ["type"]=25, + ["parameter"]=7000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [304]={ + ["next"]=305, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [305]={ + ["next"]=306, + ["type"]=12, + ["parameter"]=14, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [306]={ + ["next"]=307, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [307]={ + ["next"]=308, + ["type"]=2, + ["parameter"]=920, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [308]={ + ["next"]=309, + ["type"]=24, + ["parameter"]=7200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [309]={ + ["next"]=310, + ["type"]=25, + ["parameter"]=7200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [310]={ + ["next"]=311, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [311]={ + ["next"]=312, + ["type"]=7, + ["parameter"]=2500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [312]={ + ["next"]=313, + ["type"]=8, + ["parameter"]=2500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [313]={ + ["next"]=314, + ["type"]=2, + ["parameter"]=940, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [314]={ + ["next"]=315, + ["type"]=24, + ["parameter"]=7400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [315]={ + ["next"]=316, + ["type"]=25, + ["parameter"]=7400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [316]={ + ["next"]=317, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [317]={ + ["next"]=318, + ["type"]=11, + ["parameter"]=15, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [318]={ + ["next"]=319, + ["type"]=10, + ["parameter"]=15, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [319]={ + ["next"]=320, + ["type"]=2, + ["parameter"]=960, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [320]={ + ["next"]=321, + ["type"]=24, + ["parameter"]=7600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [321]={ + ["next"]=322, + ["type"]=25, + ["parameter"]=7600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [322]={ + ["next"]=323, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [323]={ + ["next"]=324, + ["type"]=9, + ["parameter"]=2500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [324]={ + ["next"]=325, + ["type"]=15, + ["parameter"]=1680, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [325]={ + ["next"]=326, + ["type"]=2, + ["parameter"]=980, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [326]={ + ["next"]=327, + ["type"]=24, + ["parameter"]=7800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [327]={ + ["next"]=328, + ["type"]=25, + ["parameter"]=7800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [328]={ + ["next"]=329, + ["type"]=1, + ["parameter"]=200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [329]={ + ["next"]=330, + ["type"]=12, + ["parameter"]=15, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [330]={ + ["next"]=331, + ["type"]=14, + ["parameter"]=7, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [331]={ + ["next"]=332, + ["type"]=2, + ["parameter"]=1000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [332]={ + ["next"]=333, + ["type"]=24, + ["parameter"]=8000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [333]={ + ["next"]=334, + ["type"]=25, + ["parameter"]=8000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [334]={ + ["next"]=335, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [335]={ + ["next"]=336, + ["type"]=7, + ["parameter"]=3000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [336]={ + ["next"]=337, + ["type"]=8, + ["parameter"]=3000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [337]={ + ["next"]=338, + ["type"]=2, + ["parameter"]=1050, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [338]={ + ["next"]=339, + ["type"]=24, + ["parameter"]=8200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [339]={ + ["next"]=340, + ["type"]=25, + ["parameter"]=8200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [340]={ + ["next"]=341, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [341]={ + ["next"]=342, + ["type"]=11, + ["parameter"]=16, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [342]={ + ["next"]=343, + ["type"]=10, + ["parameter"]=16, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [343]={ + ["next"]=344, + ["type"]=2, + ["parameter"]=1100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [344]={ + ["next"]=345, + ["type"]=24, + ["parameter"]=8400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [345]={ + ["next"]=346, + ["type"]=25, + ["parameter"]=8400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [346]={ + ["next"]=347, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [347]={ + ["next"]=348, + ["type"]=9, + ["parameter"]=3000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [348]={ + ["next"]=349, + ["type"]=15, + ["parameter"]=2160, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [349]={ + ["next"]=350, + ["type"]=2, + ["parameter"]=1150, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [350]={ + ["next"]=351, + ["type"]=24, + ["parameter"]=8600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [351]={ + ["next"]=352, + ["type"]=25, + ["parameter"]=8600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [352]={ + ["next"]=353, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [353]={ + ["next"]=354, + ["type"]=12, + ["parameter"]=16, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [354]={ + ["next"]=355, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [355]={ + ["next"]=356, + ["type"]=2, + ["parameter"]=1200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [356]={ + ["next"]=357, + ["type"]=24, + ["parameter"]=8800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [357]={ + ["next"]=358, + ["type"]=25, + ["parameter"]=8800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [358]={ + ["next"]=359, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [359]={ + ["next"]=360, + ["type"]=7, + ["parameter"]=3500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [360]={ + ["next"]=361, + ["type"]=8, + ["parameter"]=3500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [361]={ + ["next"]=362, + ["type"]=2, + ["parameter"]=1250, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [362]={ + ["next"]=363, + ["type"]=24, + ["parameter"]=9000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [363]={ + ["next"]=364, + ["type"]=25, + ["parameter"]=9000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [364]={ + ["next"]=365, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [365]={ + ["next"]=366, + ["type"]=11, + ["parameter"]=18, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [366]={ + ["next"]=367, + ["type"]=10, + ["parameter"]=18, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [367]={ + ["next"]=368, + ["type"]=2, + ["parameter"]=1300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [368]={ + ["next"]=369, + ["type"]=24, + ["parameter"]=9200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [369]={ + ["next"]=370, + ["type"]=25, + ["parameter"]=9200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [370]={ + ["next"]=371, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [371]={ + ["next"]=372, + ["type"]=9, + ["parameter"]=3500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [372]={ + ["next"]=373, + ["type"]=15, + ["parameter"]=2750, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [373]={ + ["next"]=374, + ["type"]=2, + ["parameter"]=1350, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [374]={ + ["next"]=375, + ["type"]=24, + ["parameter"]=9400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [375]={ + ["next"]=376, + ["type"]=25, + ["parameter"]=9400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [376]={ + ["next"]=377, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [377]={ + ["next"]=378, + ["type"]=12, + ["parameter"]=18, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [378]={ + ["next"]=379, + ["type"]=14, + ["parameter"]=8, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [379]={ + ["next"]=380, + ["type"]=2, + ["parameter"]=1400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [380]={ + ["next"]=381, + ["type"]=24, + ["parameter"]=9600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [381]={ + ["next"]=382, + ["type"]=25, + ["parameter"]=9600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [382]={ + ["next"]=383, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [383]={ + ["next"]=384, + ["type"]=7, + ["parameter"]=4000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [384]={ + ["next"]=385, + ["type"]=8, + ["parameter"]=4000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [385]={ + ["next"]=386, + ["type"]=2, + ["parameter"]=1450, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [386]={ + ["next"]=387, + ["type"]=24, + ["parameter"]=9800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [387]={ + ["next"]=388, + ["type"]=25, + ["parameter"]=9800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [388]={ + ["next"]=389, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [389]={ + ["next"]=390, + ["type"]=11, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [390]={ + ["next"]=391, + ["type"]=10, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [391]={ + ["next"]=392, + ["type"]=2, + ["parameter"]=1500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [392]={ + ["next"]=393, + ["type"]=24, + ["parameter"]=10000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [393]={ + ["next"]=394, + ["type"]=25, + ["parameter"]=10000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [394]={ + ["next"]=395, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [395]={ + ["next"]=396, + ["type"]=9, + ["parameter"]=4000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [396]={ + ["next"]=397, + ["type"]=15, + ["parameter"]=3500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [397]={ + ["next"]=398, + ["type"]=2, + ["parameter"]=1550, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [398]={ + ["next"]=399, + ["type"]=24, + ["parameter"]=10500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [399]={ + ["next"]=400, + ["type"]=25, + ["parameter"]=10500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [400]={ + ["next"]=401, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [401]={ + ["next"]=402, + ["type"]=12, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [402]={ + ["next"]=403, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [403]={ + ["next"]=404, + ["type"]=2, + ["parameter"]=1600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [404]={ + ["next"]=405, + ["type"]=24, + ["parameter"]=11000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [405]={ + ["next"]=406, + ["type"]=25, + ["parameter"]=11000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [406]={ + ["next"]=407, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [407]={ + ["next"]=408, + ["type"]=7, + ["parameter"]=5000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [408]={ + ["next"]=409, + ["type"]=8, + ["parameter"]=5000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [409]={ + ["next"]=410, + ["type"]=2, + ["parameter"]=1650, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [410]={ + ["next"]=411, + ["type"]=24, + ["parameter"]=11500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [411]={ + ["next"]=412, + ["type"]=25, + ["parameter"]=11500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [412]={ + ["next"]=413, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [413]={ + ["next"]=414, + ["type"]=11, + ["parameter"]=22, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [414]={ + ["next"]=415, + ["type"]=10, + ["parameter"]=22, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [415]={ + ["next"]=416, + ["type"]=2, + ["parameter"]=1700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [416]={ + ["next"]=417, + ["type"]=24, + ["parameter"]=12000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [417]={ + ["next"]=418, + ["type"]=25, + ["parameter"]=12000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [418]={ + ["next"]=419, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [419]={ + ["next"]=420, + ["type"]=9, + ["parameter"]=5000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [420]={ + ["next"]=421, + ["type"]=15, + ["parameter"]=4700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [421]={ + ["next"]=422, + ["type"]=2, + ["parameter"]=1750, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [422]={ + ["next"]=423, + ["type"]=24, + ["parameter"]=12500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [423]={ + ["next"]=424, + ["type"]=25, + ["parameter"]=12500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [424]={ + ["next"]=425, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [425]={ + ["next"]=426, + ["type"]=12, + ["parameter"]=22, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [426]={ + ["next"]=427, + ["type"]=14, + ["parameter"]=9, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [427]={ + ["next"]=428, + ["type"]=2, + ["parameter"]=1800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [428]={ + ["next"]=429, + ["type"]=24, + ["parameter"]=13000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [429]={ + ["next"]=430, + ["type"]=25, + ["parameter"]=13000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [430]={ + ["next"]=431, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [431]={ + ["next"]=432, + ["type"]=7, + ["parameter"]=6000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [432]={ + ["next"]=433, + ["type"]=8, + ["parameter"]=6000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [433]={ + ["next"]=434, + ["type"]=2, + ["parameter"]=1850, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [434]={ + ["next"]=435, + ["type"]=24, + ["parameter"]=13500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [435]={ + ["next"]=436, + ["type"]=25, + ["parameter"]=13500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [436]={ + ["next"]=437, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [437]={ + ["next"]=438, + ["type"]=11, + ["parameter"]=24, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [438]={ + ["next"]=439, + ["type"]=10, + ["parameter"]=24, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [439]={ + ["next"]=440, + ["type"]=2, + ["parameter"]=1900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [440]={ + ["next"]=441, + ["type"]=24, + ["parameter"]=14000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [441]={ + ["next"]=442, + ["type"]=25, + ["parameter"]=14000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [442]={ + ["next"]=443, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [443]={ + ["next"]=444, + ["type"]=9, + ["parameter"]=6000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [444]={ + ["next"]=445, + ["type"]=15, + ["parameter"]=5900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [445]={ + ["next"]=446, + ["type"]=2, + ["parameter"]=1950, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [446]={ + ["next"]=447, + ["type"]=24, + ["parameter"]=14500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [447]={ + ["next"]=448, + ["type"]=25, + ["parameter"]=14500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [448]={ + ["next"]=449, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [449]={ + ["next"]=450, + ["type"]=12, + ["parameter"]=24, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [450]={ + ["next"]=451, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [451]={ + ["next"]=452, + ["type"]=2, + ["parameter"]=2000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [452]={ + ["next"]=453, + ["type"]=24, + ["parameter"]=15000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [453]={ + ["next"]=454, + ["type"]=25, + ["parameter"]=15000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [454]={ + ["next"]=455, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [455]={ + ["next"]=456, + ["type"]=7, + ["parameter"]=7000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [456]={ + ["next"]=457, + ["type"]=8, + ["parameter"]=7000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [457]={ + ["next"]=458, + ["type"]=2, + ["parameter"]=2100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [458]={ + ["next"]=459, + ["type"]=24, + ["parameter"]=15500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [459]={ + ["next"]=460, + ["type"]=25, + ["parameter"]=15500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [460]={ + ["next"]=461, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [461]={ + ["next"]=462, + ["type"]=11, + ["parameter"]=26, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [462]={ + ["next"]=463, + ["type"]=10, + ["parameter"]=26, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [463]={ + ["next"]=464, + ["type"]=2, + ["parameter"]=2200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [464]={ + ["next"]=465, + ["type"]=24, + ["parameter"]=16000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [465]={ + ["next"]=466, + ["type"]=25, + ["parameter"]=16000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [466]={ + ["next"]=467, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [467]={ + ["next"]=468, + ["type"]=9, + ["parameter"]=7000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [468]={ + ["next"]=469, + ["type"]=15, + ["parameter"]=8300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [469]={ + ["next"]=470, + ["type"]=2, + ["parameter"]=2300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [470]={ + ["next"]=471, + ["type"]=24, + ["parameter"]=16500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [471]={ + ["next"]=472, + ["type"]=25, + ["parameter"]=16500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [472]={ + ["next"]=473, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [473]={ + ["next"]=474, + ["type"]=12, + ["parameter"]=26, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [474]={ + ["next"]=475, + ["type"]=14, + ["parameter"]=10, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [475]={ + ["next"]=476, + ["type"]=2, + ["parameter"]=2400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [476]={ + ["next"]=477, + ["type"]=24, + ["parameter"]=17000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [477]={ + ["next"]=478, + ["type"]=25, + ["parameter"]=17000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [478]={ + ["next"]=479, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [479]={ + ["next"]=480, + ["type"]=7, + ["parameter"]=8000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [480]={ + ["next"]=481, + ["type"]=8, + ["parameter"]=8000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [481]={ + ["next"]=482, + ["type"]=2, + ["parameter"]=2500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [482]={ + ["next"]=483, + ["type"]=24, + ["parameter"]=17500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [483]={ + ["next"]=484, + ["type"]=25, + ["parameter"]=17500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [484]={ + ["next"]=485, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [485]={ + ["next"]=486, + ["type"]=11, + ["parameter"]=28, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [486]={ + ["next"]=487, + ["type"]=10, + ["parameter"]=28, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [487]={ + ["next"]=488, + ["type"]=2, + ["parameter"]=2600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [488]={ + ["next"]=489, + ["type"]=24, + ["parameter"]=18000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [489]={ + ["next"]=490, + ["type"]=25, + ["parameter"]=18000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [490]={ + ["next"]=491, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [491]={ + ["next"]=492, + ["type"]=9, + ["parameter"]=8000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [492]={ + ["next"]=493, + ["type"]=15, + ["parameter"]=10700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [493]={ + ["next"]=494, + ["type"]=2, + ["parameter"]=2700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [494]={ + ["next"]=495, + ["type"]=24, + ["parameter"]=18500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [495]={ + ["next"]=496, + ["type"]=25, + ["parameter"]=18500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [496]={ + ["next"]=497, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [497]={ + ["next"]=498, + ["type"]=12, + ["parameter"]=28, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [498]={ + ["next"]=499, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [499]={ + ["next"]=500, + ["type"]=2, + ["parameter"]=2800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [500]={ + ["next"]=501, + ["type"]=24, + ["parameter"]=19000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [501]={ + ["next"]=502, + ["type"]=25, + ["parameter"]=19000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [502]={ + ["next"]=503, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [503]={ + ["next"]=504, + ["type"]=7, + ["parameter"]=9000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [504]={ + ["next"]=505, + ["type"]=8, + ["parameter"]=9000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [505]={ + ["next"]=506, + ["type"]=2, + ["parameter"]=2900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [506]={ + ["next"]=507, + ["type"]=24, + ["parameter"]=19500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [507]={ + ["next"]=508, + ["type"]=25, + ["parameter"]=19500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [508]={ + ["next"]=509, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [509]={ + ["next"]=510, + ["type"]=11, + ["parameter"]=30, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [510]={ + ["next"]=511, + ["type"]=10, + ["parameter"]=30, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [511]={ + ["next"]=512, + ["type"]=2, + ["parameter"]=3000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [512]={ + ["next"]=513, + ["type"]=24, + ["parameter"]=20000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [513]={ + ["next"]=514, + ["type"]=25, + ["parameter"]=20000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [514]={ + ["next"]=515, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [515]={ + ["next"]=516, + ["type"]=9, + ["parameter"]=9000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [516]={ + ["next"]=517, + ["type"]=15, + ["parameter"]=13700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [517]={ + ["next"]=518, + ["type"]=2, + ["parameter"]=3100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [518]={ + ["next"]=519, + ["type"]=24, + ["parameter"]=20500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [519]={ + ["next"]=520, + ["type"]=25, + ["parameter"]=20500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [520]={ + ["next"]=521, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [521]={ + ["next"]=522, + ["type"]=12, + ["parameter"]=30, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [522]={ + ["next"]=523, + ["type"]=14, + ["parameter"]=11, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [523]={ + ["next"]=524, + ["type"]=2, + ["parameter"]=3200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [524]={ + ["next"]=525, + ["type"]=24, + ["parameter"]=21000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [525]={ + ["next"]=526, + ["type"]=25, + ["parameter"]=21000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [526]={ + ["next"]=527, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [527]={ + ["next"]=528, + ["type"]=7, + ["parameter"]=10000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [528]={ + ["next"]=529, + ["type"]=8, + ["parameter"]=10000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [529]={ + ["next"]=530, + ["type"]=2, + ["parameter"]=3300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [530]={ + ["next"]=531, + ["type"]=24, + ["parameter"]=21500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [531]={ + ["next"]=532, + ["type"]=25, + ["parameter"]=21500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [532]={ + ["next"]=533, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [533]={ + ["next"]=534, + ["type"]=11, + ["parameter"]=32, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [534]={ + ["next"]=535, + ["type"]=10, + ["parameter"]=32, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [535]={ + ["next"]=536, + ["type"]=2, + ["parameter"]=3400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [536]={ + ["next"]=537, + ["type"]=24, + ["parameter"]=22000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [537]={ + ["next"]=538, + ["type"]=25, + ["parameter"]=22000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [538]={ + ["next"]=539, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [539]={ + ["next"]=540, + ["type"]=9, + ["parameter"]=10000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [540]={ + ["next"]=541, + ["type"]=15, + ["parameter"]=16700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [541]={ + ["next"]=542, + ["type"]=2, + ["parameter"]=3500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [542]={ + ["next"]=543, + ["type"]=24, + ["parameter"]=22500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [543]={ + ["next"]=544, + ["type"]=25, + ["parameter"]=22500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [544]={ + ["next"]=545, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [545]={ + ["next"]=546, + ["type"]=12, + ["parameter"]=32, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [546]={ + ["next"]=547, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [547]={ + ["next"]=548, + ["type"]=2, + ["parameter"]=3600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [548]={ + ["next"]=549, + ["type"]=24, + ["parameter"]=23000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [549]={ + ["next"]=550, + ["type"]=25, + ["parameter"]=23000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [550]={ + ["next"]=551, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [551]={ + ["next"]=552, + ["type"]=7, + ["parameter"]=15000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [552]={ + ["next"]=553, + ["type"]=8, + ["parameter"]=15000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [553]={ + ["next"]=554, + ["type"]=2, + ["parameter"]=3700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [554]={ + ["next"]=555, + ["type"]=24, + ["parameter"]=23500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [555]={ + ["next"]=556, + ["type"]=25, + ["parameter"]=23500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [556]={ + ["next"]=557, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [557]={ + ["next"]=558, + ["type"]=11, + ["parameter"]=34, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [558]={ + ["next"]=559, + ["type"]=10, + ["parameter"]=34, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [559]={ + ["next"]=560, + ["type"]=2, + ["parameter"]=3800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [560]={ + ["next"]=561, + ["type"]=24, + ["parameter"]=24000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [561]={ + ["next"]=562, + ["type"]=25, + ["parameter"]=24000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [562]={ + ["next"]=563, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [563]={ + ["next"]=564, + ["type"]=9, + ["parameter"]=15000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [564]={ + ["next"]=565, + ["type"]=15, + ["parameter"]=19700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [565]={ + ["next"]=566, + ["type"]=2, + ["parameter"]=3900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [566]={ + ["next"]=567, + ["type"]=24, + ["parameter"]=24500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [567]={ + ["next"]=568, + ["type"]=25, + ["parameter"]=24500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [568]={ + ["next"]=569, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [569]={ + ["next"]=570, + ["type"]=12, + ["parameter"]=34, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [570]={ + ["next"]=571, + ["type"]=14, + ["parameter"]=12, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [571]={ + ["next"]=572, + ["type"]=2, + ["parameter"]=4000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [572]={ + ["next"]=573, + ["type"]=24, + ["parameter"]=25000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [573]={ + ["next"]=574, + ["type"]=25, + ["parameter"]=25000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [574]={ + ["next"]=575, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [575]={ + ["next"]=576, + ["type"]=7, + ["parameter"]=20000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [576]={ + ["next"]=577, + ["type"]=8, + ["parameter"]=20000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [577]={ + ["next"]=578, + ["type"]=2, + ["parameter"]=4100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [578]={ + ["next"]=579, + ["type"]=24, + ["parameter"]=25500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [579]={ + ["next"]=580, + ["type"]=25, + ["parameter"]=25500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [580]={ + ["next"]=581, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [581]={ + ["next"]=582, + ["type"]=11, + ["parameter"]=36, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [582]={ + ["next"]=583, + ["type"]=10, + ["parameter"]=36, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [583]={ + ["next"]=584, + ["type"]=2, + ["parameter"]=4200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [584]={ + ["next"]=585, + ["type"]=24, + ["parameter"]=26000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [585]={ + ["next"]=586, + ["type"]=25, + ["parameter"]=26000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [586]={ + ["next"]=587, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [587]={ + ["next"]=588, + ["type"]=9, + ["parameter"]=20000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [588]={ + ["next"]=589, + ["type"]=15, + ["parameter"]=22700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [589]={ + ["next"]=590, + ["type"]=2, + ["parameter"]=4300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [590]={ + ["next"]=591, + ["type"]=24, + ["parameter"]=26500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [591]={ + ["next"]=592, + ["type"]=25, + ["parameter"]=26500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [592]={ + ["next"]=593, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [593]={ + ["next"]=594, + ["type"]=12, + ["parameter"]=36, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [594]={ + ["next"]=595, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [595]={ + ["next"]=596, + ["type"]=2, + ["parameter"]=4400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [596]={ + ["next"]=597, + ["type"]=24, + ["parameter"]=27000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [597]={ + ["next"]=598, + ["type"]=25, + ["parameter"]=27000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [598]={ + ["next"]=599, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [599]={ + ["next"]=600, + ["type"]=7, + ["parameter"]=25000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [600]={ + ["next"]=601, + ["type"]=8, + ["parameter"]=25000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [601]={ + ["next"]=602, + ["type"]=2, + ["parameter"]=4500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [602]={ + ["next"]=603, + ["type"]=24, + ["parameter"]=27500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [603]={ + ["next"]=604, + ["type"]=25, + ["parameter"]=27500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [604]={ + ["next"]=605, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [605]={ + ["next"]=606, + ["type"]=11, + ["parameter"]=38, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [606]={ + ["next"]=607, + ["type"]=10, + ["parameter"]=38, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [607]={ + ["next"]=608, + ["type"]=2, + ["parameter"]=4600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [608]={ + ["next"]=609, + ["type"]=24, + ["parameter"]=28000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [609]={ + ["next"]=610, + ["type"]=25, + ["parameter"]=28000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [610]={ + ["next"]=611, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [611]={ + ["next"]=612, + ["type"]=9, + ["parameter"]=25000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [612]={ + ["next"]=613, + ["type"]=15, + ["parameter"]=25700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [613]={ + ["next"]=614, + ["type"]=2, + ["parameter"]=4700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [614]={ + ["next"]=615, + ["type"]=24, + ["parameter"]=28500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [615]={ + ["next"]=616, + ["type"]=25, + ["parameter"]=28500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [616]={ + ["next"]=617, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [617]={ + ["next"]=618, + ["type"]=12, + ["parameter"]=38, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [618]={ + ["next"]=619, + ["type"]=14, + ["parameter"]=13, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [619]={ + ["next"]=620, + ["type"]=2, + ["parameter"]=4800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [620]={ + ["next"]=621, + ["type"]=24, + ["parameter"]=29000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [621]={ + ["next"]=622, + ["type"]=25, + ["parameter"]=29000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [622]={ + ["next"]=623, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [623]={ + ["next"]=624, + ["type"]=7, + ["parameter"]=30000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [624]={ + ["next"]=625, + ["type"]=8, + ["parameter"]=30000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [625]={ + ["next"]=626, + ["type"]=2, + ["parameter"]=4900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [626]={ + ["next"]=627, + ["type"]=24, + ["parameter"]=29500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [627]={ + ["next"]=628, + ["type"]=25, + ["parameter"]=29500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [628]={ + ["next"]=629, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [629]={ + ["next"]=630, + ["type"]=11, + ["parameter"]=40, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [630]={ + ["next"]=631, + ["type"]=10, + ["parameter"]=40, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [631]={ + ["next"]=632, + ["type"]=2, + ["parameter"]=5000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [632]={ + ["next"]=633, + ["type"]=24, + ["parameter"]=30000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [633]={ + ["next"]=634, + ["type"]=25, + ["parameter"]=30000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [634]={ + ["next"]=635, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [635]={ + ["next"]=636, + ["type"]=9, + ["parameter"]=30000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [636]={ + ["next"]=637, + ["type"]=15, + ["parameter"]=28700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [637]={ + ["next"]=638, + ["type"]=2, + ["parameter"]=5100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [638]={ + ["next"]=639, + ["type"]=24, + ["parameter"]=30500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [639]={ + ["next"]=640, + ["type"]=25, + ["parameter"]=30500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [640]={ + ["next"]=641, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [641]={ + ["next"]=642, + ["type"]=12, + ["parameter"]=40, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [642]={ + ["next"]=643, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [643]={ + ["next"]=644, + ["type"]=2, + ["parameter"]=5200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [644]={ + ["next"]=645, + ["type"]=24, + ["parameter"]=31000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [645]={ + ["next"]=646, + ["type"]=25, + ["parameter"]=31000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [646]={ + ["next"]=647, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [647]={ + ["next"]=648, + ["type"]=7, + ["parameter"]=35000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [648]={ + ["next"]=649, + ["type"]=8, + ["parameter"]=35000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [649]={ + ["next"]=650, + ["type"]=2, + ["parameter"]=5300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [650]={ + ["next"]=651, + ["type"]=24, + ["parameter"]=31500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [651]={ + ["next"]=652, + ["type"]=25, + ["parameter"]=31500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [652]={ + ["next"]=653, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [653]={ + ["next"]=654, + ["type"]=11, + ["parameter"]=42, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [654]={ + ["next"]=655, + ["type"]=10, + ["parameter"]=42, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [655]={ + ["next"]=656, + ["type"]=2, + ["parameter"]=5400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [656]={ + ["next"]=657, + ["type"]=24, + ["parameter"]=32000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [657]={ + ["next"]=658, + ["type"]=25, + ["parameter"]=32000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [658]={ + ["next"]=659, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [659]={ + ["next"]=660, + ["type"]=9, + ["parameter"]=35000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [660]={ + ["next"]=661, + ["type"]=15, + ["parameter"]=31700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [661]={ + ["next"]=662, + ["type"]=2, + ["parameter"]=5500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [662]={ + ["next"]=663, + ["type"]=24, + ["parameter"]=32500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [663]={ + ["next"]=664, + ["type"]=25, + ["parameter"]=32500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [664]={ + ["next"]=665, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [665]={ + ["next"]=666, + ["type"]=12, + ["parameter"]=42, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [666]={ + ["next"]=667, + ["type"]=14, + ["parameter"]=14, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [667]={ + ["next"]=668, + ["type"]=2, + ["parameter"]=5600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [668]={ + ["next"]=669, + ["type"]=24, + ["parameter"]=33000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [669]={ + ["next"]=670, + ["type"]=25, + ["parameter"]=33000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [670]={ + ["next"]=671, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [671]={ + ["next"]=672, + ["type"]=7, + ["parameter"]=40000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [672]={ + ["next"]=673, + ["type"]=8, + ["parameter"]=40000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [673]={ + ["next"]=674, + ["type"]=2, + ["parameter"]=5700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [674]={ + ["next"]=675, + ["type"]=24, + ["parameter"]=33500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [675]={ + ["next"]=676, + ["type"]=25, + ["parameter"]=33500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [676]={ + ["next"]=677, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [677]={ + ["next"]=678, + ["type"]=11, + ["parameter"]=44, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [678]={ + ["next"]=679, + ["type"]=10, + ["parameter"]=44, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [679]={ + ["next"]=680, + ["type"]=2, + ["parameter"]=5800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [680]={ + ["next"]=681, + ["type"]=24, + ["parameter"]=34000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [681]={ + ["next"]=682, + ["type"]=25, + ["parameter"]=34000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [682]={ + ["next"]=683, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [683]={ + ["next"]=684, + ["type"]=9, + ["parameter"]=40000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [684]={ + ["next"]=685, + ["type"]=15, + ["parameter"]=34700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [685]={ + ["next"]=686, + ["type"]=2, + ["parameter"]=5900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [686]={ + ["next"]=687, + ["type"]=24, + ["parameter"]=34500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [687]={ + ["next"]=688, + ["type"]=25, + ["parameter"]=34500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [688]={ + ["next"]=689, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [689]={ + ["next"]=690, + ["type"]=12, + ["parameter"]=44, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [690]={ + ["next"]=691, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [691]={ + ["next"]=692, + ["type"]=2, + ["parameter"]=6000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [692]={ + ["next"]=693, + ["type"]=24, + ["parameter"]=35000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [693]={ + ["next"]=694, + ["type"]=25, + ["parameter"]=35000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [694]={ + ["next"]=695, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [695]={ + ["next"]=696, + ["type"]=7, + ["parameter"]=45000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [696]={ + ["next"]=697, + ["type"]=8, + ["parameter"]=45000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [697]={ + ["next"]=698, + ["type"]=2, + ["parameter"]=6100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [698]={ + ["next"]=699, + ["type"]=24, + ["parameter"]=35500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [699]={ + ["next"]=700, + ["type"]=25, + ["parameter"]=35500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [700]={ + ["next"]=701, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [701]={ + ["next"]=702, + ["type"]=11, + ["parameter"]=46, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [702]={ + ["next"]=703, + ["type"]=10, + ["parameter"]=46, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [703]={ + ["next"]=704, + ["type"]=2, + ["parameter"]=6200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [704]={ + ["next"]=705, + ["type"]=24, + ["parameter"]=36000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [705]={ + ["next"]=706, + ["type"]=25, + ["parameter"]=36000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [706]={ + ["next"]=707, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [707]={ + ["next"]=708, + ["type"]=9, + ["parameter"]=45000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [708]={ + ["next"]=709, + ["type"]=15, + ["parameter"]=37700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [709]={ + ["next"]=710, + ["type"]=2, + ["parameter"]=6300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [710]={ + ["next"]=711, + ["type"]=24, + ["parameter"]=36500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [711]={ + ["next"]=712, + ["type"]=25, + ["parameter"]=36500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [712]={ + ["next"]=713, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [713]={ + ["next"]=714, + ["type"]=12, + ["parameter"]=46, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [714]={ + ["next"]=715, + ["type"]=14, + ["parameter"]=15, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [715]={ + ["next"]=716, + ["type"]=2, + ["parameter"]=6400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [716]={ + ["next"]=717, + ["type"]=24, + ["parameter"]=37000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [717]={ + ["next"]=718, + ["type"]=25, + ["parameter"]=37000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [718]={ + ["next"]=719, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [719]={ + ["next"]=720, + ["type"]=7, + ["parameter"]=50000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [720]={ + ["next"]=721, + ["type"]=8, + ["parameter"]=50000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [721]={ + ["next"]=722, + ["type"]=2, + ["parameter"]=6500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [722]={ + ["next"]=723, + ["type"]=24, + ["parameter"]=37500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [723]={ + ["next"]=724, + ["type"]=25, + ["parameter"]=37500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [724]={ + ["next"]=725, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [725]={ + ["next"]=726, + ["type"]=11, + ["parameter"]=48, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [726]={ + ["next"]=727, + ["type"]=10, + ["parameter"]=48, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [727]={ + ["next"]=728, + ["type"]=2, + ["parameter"]=6600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [728]={ + ["next"]=729, + ["type"]=24, + ["parameter"]=38000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [729]={ + ["next"]=730, + ["type"]=25, + ["parameter"]=38000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [730]={ + ["next"]=731, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [731]={ + ["next"]=732, + ["type"]=9, + ["parameter"]=50000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [732]={ + ["next"]=733, + ["type"]=15, + ["parameter"]=40700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [733]={ + ["next"]=734, + ["type"]=2, + ["parameter"]=6700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [734]={ + ["next"]=735, + ["type"]=24, + ["parameter"]=38500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [735]={ + ["next"]=736, + ["type"]=25, + ["parameter"]=38500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [736]={ + ["next"]=737, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [737]={ + ["next"]=738, + ["type"]=12, + ["parameter"]=48, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [738]={ + ["next"]=739, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [739]={ + ["next"]=740, + ["type"]=2, + ["parameter"]=6800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [740]={ + ["next"]=741, + ["type"]=24, + ["parameter"]=39000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [741]={ + ["next"]=742, + ["type"]=25, + ["parameter"]=39000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [742]={ + ["next"]=743, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [743]={ + ["next"]=744, + ["type"]=7, + ["parameter"]=55000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [744]={ + ["next"]=745, + ["type"]=8, + ["parameter"]=55000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [745]={ + ["next"]=746, + ["type"]=2, + ["parameter"]=6900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [746]={ + ["next"]=747, + ["type"]=24, + ["parameter"]=39500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [747]={ + ["next"]=748, + ["type"]=25, + ["parameter"]=39500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [748]={ + ["next"]=749, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [749]={ + ["next"]=750, + ["type"]=11, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [750]={ + ["next"]=751, + ["type"]=10, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [751]={ + ["next"]=752, + ["type"]=2, + ["parameter"]=7000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [752]={ + ["next"]=753, + ["type"]=24, + ["parameter"]=40000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [753]={ + ["next"]=754, + ["type"]=25, + ["parameter"]=40000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [754]={ + ["next"]=755, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [755]={ + ["next"]=756, + ["type"]=9, + ["parameter"]=55000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [756]={ + ["next"]=757, + ["type"]=15, + ["parameter"]=43700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [757]={ + ["next"]=758, + ["type"]=2, + ["parameter"]=7100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [758]={ + ["next"]=759, + ["type"]=24, + ["parameter"]=40500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [759]={ + ["next"]=760, + ["type"]=25, + ["parameter"]=40500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [760]={ + ["next"]=761, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [761]={ + ["next"]=762, + ["type"]=12, + ["parameter"]=50, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [762]={ + ["next"]=763, + ["type"]=14, + ["parameter"]=16, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [763]={ + ["next"]=764, + ["type"]=2, + ["parameter"]=7200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [764]={ + ["next"]=765, + ["type"]=24, + ["parameter"]=41000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [765]={ + ["next"]=766, + ["type"]=25, + ["parameter"]=41000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [766]={ + ["next"]=767, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [767]={ + ["next"]=768, + ["type"]=7, + ["parameter"]=60000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [768]={ + ["next"]=769, + ["type"]=8, + ["parameter"]=60000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [769]={ + ["next"]=770, + ["type"]=2, + ["parameter"]=7300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [770]={ + ["next"]=771, + ["type"]=24, + ["parameter"]=41500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [771]={ + ["next"]=772, + ["type"]=25, + ["parameter"]=41500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [772]={ + ["next"]=773, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [773]={ + ["next"]=774, + ["type"]=11, + ["parameter"]=52, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [774]={ + ["next"]=775, + ["type"]=10, + ["parameter"]=52, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [775]={ + ["next"]=776, + ["type"]=2, + ["parameter"]=7400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [776]={ + ["next"]=777, + ["type"]=24, + ["parameter"]=42000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [777]={ + ["next"]=778, + ["type"]=25, + ["parameter"]=42000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [778]={ + ["next"]=779, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [779]={ + ["next"]=780, + ["type"]=9, + ["parameter"]=60000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [780]={ + ["next"]=781, + ["type"]=15, + ["parameter"]=46700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [781]={ + ["next"]=782, + ["type"]=2, + ["parameter"]=7500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [782]={ + ["next"]=783, + ["type"]=24, + ["parameter"]=42500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [783]={ + ["next"]=784, + ["type"]=25, + ["parameter"]=42500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [784]={ + ["next"]=785, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [785]={ + ["next"]=786, + ["type"]=12, + ["parameter"]=52, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [786]={ + ["next"]=787, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [787]={ + ["next"]=788, + ["type"]=2, + ["parameter"]=7600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [788]={ + ["next"]=789, + ["type"]=24, + ["parameter"]=43000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [789]={ + ["next"]=790, + ["type"]=25, + ["parameter"]=43000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [790]={ + ["next"]=791, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [791]={ + ["next"]=792, + ["type"]=7, + ["parameter"]=65000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [792]={ + ["next"]=793, + ["type"]=8, + ["parameter"]=65000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [793]={ + ["next"]=794, + ["type"]=2, + ["parameter"]=7700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [794]={ + ["next"]=795, + ["type"]=24, + ["parameter"]=43500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [795]={ + ["next"]=796, + ["type"]=25, + ["parameter"]=43500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [796]={ + ["next"]=797, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [797]={ + ["next"]=798, + ["type"]=11, + ["parameter"]=54, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [798]={ + ["next"]=799, + ["type"]=10, + ["parameter"]=54, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [799]={ + ["next"]=800, + ["type"]=2, + ["parameter"]=7800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [800]={ + ["next"]=801, + ["type"]=24, + ["parameter"]=44000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [801]={ + ["next"]=802, + ["type"]=25, + ["parameter"]=44000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [802]={ + ["next"]=803, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [803]={ + ["next"]=804, + ["type"]=9, + ["parameter"]=65000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [804]={ + ["next"]=805, + ["type"]=15, + ["parameter"]=49700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [805]={ + ["next"]=806, + ["type"]=2, + ["parameter"]=7900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [806]={ + ["next"]=807, + ["type"]=24, + ["parameter"]=44500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [807]={ + ["next"]=808, + ["type"]=25, + ["parameter"]=44500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [808]={ + ["next"]=809, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [809]={ + ["next"]=810, + ["type"]=12, + ["parameter"]=54, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [810]={ + ["next"]=811, + ["type"]=14, + ["parameter"]=17, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [811]={ + ["next"]=812, + ["type"]=2, + ["parameter"]=8000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [812]={ + ["next"]=813, + ["type"]=24, + ["parameter"]=45000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [813]={ + ["next"]=814, + ["type"]=25, + ["parameter"]=45000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [814]={ + ["next"]=815, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [815]={ + ["next"]=816, + ["type"]=7, + ["parameter"]=70000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [816]={ + ["next"]=817, + ["type"]=8, + ["parameter"]=70000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [817]={ + ["next"]=818, + ["type"]=2, + ["parameter"]=8100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [818]={ + ["next"]=819, + ["type"]=24, + ["parameter"]=45500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [819]={ + ["next"]=820, + ["type"]=25, + ["parameter"]=45500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [820]={ + ["next"]=821, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [821]={ + ["next"]=822, + ["type"]=11, + ["parameter"]=56, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [822]={ + ["next"]=823, + ["type"]=10, + ["parameter"]=56, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [823]={ + ["next"]=824, + ["type"]=2, + ["parameter"]=8200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [824]={ + ["next"]=825, + ["type"]=24, + ["parameter"]=46000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [825]={ + ["next"]=826, + ["type"]=25, + ["parameter"]=46000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [826]={ + ["next"]=827, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [827]={ + ["next"]=828, + ["type"]=9, + ["parameter"]=70000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [828]={ + ["next"]=829, + ["type"]=15, + ["parameter"]=52700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [829]={ + ["next"]=830, + ["type"]=2, + ["parameter"]=8300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [830]={ + ["next"]=831, + ["type"]=24, + ["parameter"]=46500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [831]={ + ["next"]=832, + ["type"]=25, + ["parameter"]=46500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [832]={ + ["next"]=833, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [833]={ + ["next"]=834, + ["type"]=12, + ["parameter"]=56, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [834]={ + ["next"]=835, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [835]={ + ["next"]=836, + ["type"]=2, + ["parameter"]=8400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [836]={ + ["next"]=837, + ["type"]=24, + ["parameter"]=47000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [837]={ + ["next"]=838, + ["type"]=25, + ["parameter"]=47000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [838]={ + ["next"]=839, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [839]={ + ["next"]=840, + ["type"]=7, + ["parameter"]=75000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [840]={ + ["next"]=841, + ["type"]=8, + ["parameter"]=75000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [841]={ + ["next"]=842, + ["type"]=2, + ["parameter"]=8500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [842]={ + ["next"]=843, + ["type"]=24, + ["parameter"]=47500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [843]={ + ["next"]=844, + ["type"]=25, + ["parameter"]=47500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [844]={ + ["next"]=845, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [845]={ + ["next"]=846, + ["type"]=11, + ["parameter"]=58, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [846]={ + ["next"]=847, + ["type"]=10, + ["parameter"]=58, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [847]={ + ["next"]=848, + ["type"]=2, + ["parameter"]=8600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [848]={ + ["next"]=849, + ["type"]=24, + ["parameter"]=48000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [849]={ + ["next"]=850, + ["type"]=25, + ["parameter"]=48000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [850]={ + ["next"]=851, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [851]={ + ["next"]=852, + ["type"]=9, + ["parameter"]=75000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [852]={ + ["next"]=853, + ["type"]=15, + ["parameter"]=55700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [853]={ + ["next"]=854, + ["type"]=2, + ["parameter"]=8700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [854]={ + ["next"]=855, + ["type"]=24, + ["parameter"]=48500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [855]={ + ["next"]=856, + ["type"]=25, + ["parameter"]=48500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [856]={ + ["next"]=857, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [857]={ + ["next"]=858, + ["type"]=12, + ["parameter"]=58, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [858]={ + ["next"]=859, + ["type"]=14, + ["parameter"]=18, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [859]={ + ["next"]=860, + ["type"]=2, + ["parameter"]=8800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [860]={ + ["next"]=861, + ["type"]=24, + ["parameter"]=49000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [861]={ + ["next"]=862, + ["type"]=25, + ["parameter"]=49000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [862]={ + ["next"]=863, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [863]={ + ["next"]=864, + ["type"]=7, + ["parameter"]=80000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [864]={ + ["next"]=865, + ["type"]=8, + ["parameter"]=80000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [865]={ + ["next"]=866, + ["type"]=2, + ["parameter"]=8900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [866]={ + ["next"]=867, + ["type"]=24, + ["parameter"]=49500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [867]={ + ["next"]=868, + ["type"]=25, + ["parameter"]=49500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [868]={ + ["next"]=869, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [869]={ + ["next"]=870, + ["type"]=11, + ["parameter"]=60, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [870]={ + ["next"]=871, + ["type"]=10, + ["parameter"]=60, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [871]={ + ["next"]=872, + ["type"]=2, + ["parameter"]=9000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [872]={ + ["next"]=873, + ["type"]=24, + ["parameter"]=50000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [873]={ + ["next"]=874, + ["type"]=25, + ["parameter"]=50000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [874]={ + ["next"]=875, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [875]={ + ["next"]=876, + ["type"]=9, + ["parameter"]=80000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [876]={ + ["next"]=877, + ["type"]=15, + ["parameter"]=58700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [877]={ + ["next"]=878, + ["type"]=2, + ["parameter"]=9100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [878]={ + ["next"]=879, + ["type"]=24, + ["parameter"]=50500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [879]={ + ["next"]=880, + ["type"]=25, + ["parameter"]=50500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [880]={ + ["next"]=881, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [881]={ + ["next"]=882, + ["type"]=12, + ["parameter"]=60, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [882]={ + ["next"]=883, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [883]={ + ["next"]=884, + ["type"]=2, + ["parameter"]=9200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [884]={ + ["next"]=885, + ["type"]=24, + ["parameter"]=51000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [885]={ + ["next"]=886, + ["type"]=25, + ["parameter"]=51000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [886]={ + ["next"]=887, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [887]={ + ["next"]=888, + ["type"]=7, + ["parameter"]=85000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [888]={ + ["next"]=889, + ["type"]=8, + ["parameter"]=85000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [889]={ + ["next"]=890, + ["type"]=2, + ["parameter"]=9300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [890]={ + ["next"]=891, + ["type"]=24, + ["parameter"]=51500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [891]={ + ["next"]=892, + ["type"]=25, + ["parameter"]=51500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [892]={ + ["next"]=893, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [893]={ + ["next"]=894, + ["type"]=11, + ["parameter"]=62, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [894]={ + ["next"]=895, + ["type"]=10, + ["parameter"]=62, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [895]={ + ["next"]=896, + ["type"]=2, + ["parameter"]=9400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [896]={ + ["next"]=897, + ["type"]=24, + ["parameter"]=52000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [897]={ + ["next"]=898, + ["type"]=25, + ["parameter"]=52000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [898]={ + ["next"]=899, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [899]={ + ["next"]=900, + ["type"]=9, + ["parameter"]=85000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [900]={ + ["next"]=901, + ["type"]=15, + ["parameter"]=61700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [901]={ + ["next"]=902, + ["type"]=2, + ["parameter"]=9500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [902]={ + ["next"]=903, + ["type"]=24, + ["parameter"]=52500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [903]={ + ["next"]=904, + ["type"]=25, + ["parameter"]=52500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [904]={ + ["next"]=905, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [905]={ + ["next"]=906, + ["type"]=12, + ["parameter"]=62, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [906]={ + ["next"]=907, + ["type"]=14, + ["parameter"]=19, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [907]={ + ["next"]=908, + ["type"]=2, + ["parameter"]=9600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [908]={ + ["next"]=909, + ["type"]=24, + ["parameter"]=53000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [909]={ + ["next"]=910, + ["type"]=25, + ["parameter"]=53000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [910]={ + ["next"]=911, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [911]={ + ["next"]=912, + ["type"]=7, + ["parameter"]=90000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [912]={ + ["next"]=913, + ["type"]=8, + ["parameter"]=90000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [913]={ + ["next"]=914, + ["type"]=2, + ["parameter"]=9700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [914]={ + ["next"]=915, + ["type"]=24, + ["parameter"]=53500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [915]={ + ["next"]=916, + ["type"]=25, + ["parameter"]=53500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [916]={ + ["next"]=917, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [917]={ + ["next"]=918, + ["type"]=11, + ["parameter"]=64, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [918]={ + ["next"]=919, + ["type"]=10, + ["parameter"]=64, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [919]={ + ["next"]=920, + ["type"]=2, + ["parameter"]=9800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [920]={ + ["next"]=921, + ["type"]=24, + ["parameter"]=54000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [921]={ + ["next"]=922, + ["type"]=25, + ["parameter"]=54000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [922]={ + ["next"]=923, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [923]={ + ["next"]=924, + ["type"]=9, + ["parameter"]=90000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [924]={ + ["next"]=925, + ["type"]=15, + ["parameter"]=64700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [925]={ + ["next"]=926, + ["type"]=2, + ["parameter"]=9900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [926]={ + ["next"]=927, + ["type"]=24, + ["parameter"]=54500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [927]={ + ["next"]=928, + ["type"]=25, + ["parameter"]=54500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [928]={ + ["next"]=929, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [929]={ + ["next"]=930, + ["type"]=12, + ["parameter"]=64, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [930]={ + ["next"]=931, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [931]={ + ["next"]=932, + ["type"]=2, + ["parameter"]=10000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [932]={ + ["next"]=933, + ["type"]=24, + ["parameter"]=55000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [933]={ + ["next"]=934, + ["type"]=25, + ["parameter"]=55000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [934]={ + ["next"]=935, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [935]={ + ["next"]=936, + ["type"]=7, + ["parameter"]=95000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [936]={ + ["next"]=937, + ["type"]=8, + ["parameter"]=95000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [937]={ + ["next"]=938, + ["type"]=2, + ["parameter"]=10100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [938]={ + ["next"]=939, + ["type"]=24, + ["parameter"]=55500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [939]={ + ["next"]=940, + ["type"]=25, + ["parameter"]=55500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [940]={ + ["next"]=941, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [941]={ + ["next"]=942, + ["type"]=11, + ["parameter"]=66, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [942]={ + ["next"]=943, + ["type"]=10, + ["parameter"]=66, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [943]={ + ["next"]=944, + ["type"]=2, + ["parameter"]=10200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [944]={ + ["next"]=945, + ["type"]=24, + ["parameter"]=56000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [945]={ + ["next"]=946, + ["type"]=25, + ["parameter"]=56000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [946]={ + ["next"]=947, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [947]={ + ["next"]=948, + ["type"]=9, + ["parameter"]=95000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [948]={ + ["next"]=949, + ["type"]=15, + ["parameter"]=67700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [949]={ + ["next"]=950, + ["type"]=2, + ["parameter"]=10300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [950]={ + ["next"]=951, + ["type"]=24, + ["parameter"]=56500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [951]={ + ["next"]=952, + ["type"]=25, + ["parameter"]=56500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [952]={ + ["next"]=953, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [953]={ + ["next"]=954, + ["type"]=12, + ["parameter"]=66, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [954]={ + ["next"]=955, + ["type"]=14, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [955]={ + ["next"]=956, + ["type"]=2, + ["parameter"]=10400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [956]={ + ["next"]=957, + ["type"]=24, + ["parameter"]=57000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [957]={ + ["next"]=958, + ["type"]=25, + ["parameter"]=57000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [958]={ + ["next"]=959, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [959]={ + ["next"]=960, + ["type"]=7, + ["parameter"]=100000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [960]={ + ["next"]=961, + ["type"]=8, + ["parameter"]=100000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [961]={ + ["next"]=962, + ["type"]=2, + ["parameter"]=10500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [962]={ + ["next"]=963, + ["type"]=24, + ["parameter"]=57500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [963]={ + ["next"]=964, + ["type"]=25, + ["parameter"]=57500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [964]={ + ["next"]=965, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [965]={ + ["next"]=966, + ["type"]=11, + ["parameter"]=68, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [966]={ + ["next"]=967, + ["type"]=10, + ["parameter"]=68, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [967]={ + ["next"]=968, + ["type"]=2, + ["parameter"]=10600, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [968]={ + ["next"]=969, + ["type"]=24, + ["parameter"]=58000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [969]={ + ["next"]=970, + ["type"]=25, + ["parameter"]=58000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [970]={ + ["next"]=971, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [971]={ + ["next"]=972, + ["type"]=9, + ["parameter"]=100000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [972]={ + ["next"]=973, + ["type"]=15, + ["parameter"]=70700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [973]={ + ["next"]=974, + ["type"]=2, + ["parameter"]=10700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [974]={ + ["next"]=975, + ["type"]=24, + ["parameter"]=58500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [975]={ + ["next"]=976, + ["type"]=25, + ["parameter"]=58500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [976]={ + ["next"]=977, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [977]={ + ["next"]=978, + ["type"]=12, + ["parameter"]=68, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [978]={ + ["next"]=979, + ["type"]=4, + ["parameter"]=5, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [979]={ + ["next"]=980, + ["type"]=2, + ["parameter"]=10800, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [980]={ + ["next"]=981, + ["type"]=24, + ["parameter"]=59000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [981]={ + ["next"]=982, + ["type"]=25, + ["parameter"]=59000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [982]={ + ["next"]=983, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [983]={ + ["next"]=984, + ["type"]=7, + ["parameter"]=105000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [984]={ + ["next"]=985, + ["type"]=8, + ["parameter"]=105000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [985]={ + ["next"]=986, + ["type"]=2, + ["parameter"]=10900, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [986]={ + ["next"]=987, + ["type"]=24, + ["parameter"]=59500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [987]={ + ["next"]=988, + ["type"]=25, + ["parameter"]=59500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [988]={ + ["next"]=989, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [989]={ + ["next"]=990, + ["type"]=11, + ["parameter"]=70, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [990]={ + ["next"]=991, + ["type"]=10, + ["parameter"]=70, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [991]={ + ["next"]=992, + ["type"]=2, + ["parameter"]=11000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [992]={ + ["next"]=993, + ["type"]=24, + ["parameter"]=60000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [993]={ + ["next"]=994, + ["type"]=25, + ["parameter"]=60000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [994]={ + ["next"]=995, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [995]={ + ["next"]=996, + ["type"]=9, + ["parameter"]=105000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [996]={ + ["next"]=997, + ["type"]=15, + ["parameter"]=73700, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [997]={ + ["next"]=998, + ["type"]=2, + ["parameter"]=11100, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [998]={ + ["next"]=999, + ["type"]=24, + ["parameter"]=60500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [999]={ + ["next"]=1000, + ["type"]=25, + ["parameter"]=60500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1000]={ + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1001]={ + ["next"]=1002, + ["type"]=12, + ["parameter"]=70, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1002]={ + ["next"]=1003, + ["type"]=14, + ["parameter"]=20, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1003]={ + ["next"]=1004, + ["type"]=2, + ["parameter"]=11200, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1004]={ + ["next"]=1005, + ["type"]=24, + ["parameter"]=61000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1005]={ + ["next"]=1006, + ["type"]=25, + ["parameter"]=61000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1006]={ + ["next"]=1007, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1007]={ + ["next"]=1008, + ["type"]=7, + ["parameter"]=110000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1008]={ + ["next"]=1009, + ["type"]=8, + ["parameter"]=110000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1009]={ + ["next"]=1010, + ["type"]=2, + ["parameter"]=11300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1010]={ + ["next"]=1011, + ["type"]=24, + ["parameter"]=61500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1011]={ + ["next"]=1012, + ["type"]=25, + ["parameter"]=61500, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1012]={ + ["next"]=1013, + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1013]={ + ["next"]=1014, + ["type"]=11, + ["parameter"]=72, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1014]={ + ["next"]=1015, + ["type"]=10, + ["parameter"]=72, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1015]={ + ["next"]=1016, + ["type"]=2, + ["parameter"]=11400, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1016]={ + ["next"]=1017, + ["type"]=24, + ["parameter"]=62000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1017]={ + ["next"]=1018, + ["type"]=25, + ["parameter"]=62000, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + }, + [1018]={ + ["type"]=1, + ["parameter"]=300, + ["reward"]={ + ["type"]=1, + ["id"]=2, + ["count"]={ + ["value"]=500, + ["unit"]=0 + } + } + } +} +local config = { +data=tutorialtask,count=1018 +} +return config \ No newline at end of file diff --git a/lua/app/config/tutorialtask.lua.meta b/lua/app/config/tutorialtask.lua.meta new file mode 100644 index 00000000..3306b49d --- /dev/null +++ b/lua/app/config/tutorialtask.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e0c9e863b5786e448812813a3e32e0cf +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/first.meta b/lua/app/first.meta new file mode 100644 index 00000000..e0634370 --- /dev/null +++ b/lua/app/first.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ec675ea19191344395fede5db9be5d8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/first/first.lua b/lua/app/first/first.lua new file mode 100644 index 00000000..380497c1 --- /dev/null +++ b/lua/app/first/first.lua @@ -0,0 +1,612 @@ +local First = {} + +local json = require "rapidjson" +local firstText = require "app/first/first_text" + +local FIRST_ROOT_PREFAB_PATH = "assets/first/ui/first_root.prefab" +local FIRST_UI_PREFAB_PATH = "assets/first/ui/first.prefab" + +local BFLaunchMgr = CS.BF.BFMain.Instance.GameLaunchMgr +local BFPlatform = CS.BF.BFPlatform +local BFSDKManager = CS.BF.BFMain.Instance.SDKMgr +local PlayerPrefs = CS.UnityEngine.PlayerPrefs +local TYPE_BF_TOUCH_EVENT = typeof(CS.BF.UITouchEvent) +local TYPE_TEXT = typeof(CS.UnityEngine.UI.Text) + +local VISIBLE_SCALE = { x = 1, y = 1, z = 1} +local NOT_VISIBLE_SCALE = { x = 0, y = 0, z = 0} + +local EVENT_UP_INSIDE = 3 + +local REQUEST_ADDR_TIME_OUT = 3 -- 请求版本信息的超时时间 +local REQUEST_ADDR_MAX_RETRY_TIMES = 2 -- 最大重试次数 + +local REQUEST_ADDR_ERROR_TYPE = { + VALUE_INVALID = "VALUE_INVALID", + REQUEST_FAIL = "REQUEST_FAIL", + TIME_OUT = "TIME_OUT" +} + +local LANGUAGES = { + ["en"] = true, + ["cn"] = true, + ["zh"] = true, + -- ["id"] = true, -- 印尼 + -- ["vi"] = true, -- 越南 + -- ["fr"] = true, -- 法语 + -- ["de"] = true, -- 德语 + -- ["pt"] = true, -- 葡萄牙 + -- ["ja"] = true, -- 日本 + -- ["ko"] = true, -- 韩国 +} + +function First:init() + self:initLanguage() + self:initLaunchRequester() +end + +function First:initLanguage() + self.language = PlayerPrefs.GetString("SELECTED_LANGUAGE", "") + print("first init language " .. self.language) + if not LANGUAGES[self.language] then + self.language = self:getSystemLanguage() + if self.language == nil then + self.language = BFPlatform.GetCurrentLanguageInfo():GetFallbackLanguage() + end + PlayerPrefs.SetString("SELECTED_LANGUAGE", self.language) + end + + self.stringMap = firstText.data + self.strNoNetwork = self.stringMap["STR_NO_NETWORK_CONNECTION"][self.language] + self.strOK = self.stringMap["STR_OK"][self.language] + self.strGoto = self.stringMap["STR_GOTO"][self.language] + self.strCancel = self.stringMap["STR_CANCEL"][self.language] + self.strDownloading = self.stringMap["STR_DOWNLOADING_RES"][self.language] + self.strRepair = self.stringMap["STR_REPAIR_RES"][self.language] + + -- 对话框提示文字 + self.dialogStr = { + [1] = self.stringMap["DIALOG_STR_1"][self.language], + [2] = self.stringMap["DIALOG_STR_2"][self.language], + [3] = self.stringMap["DIALOG_STR_3"][self.language], + [4] = self.stringMap["DIALOG_STR_4"][self.language], + [5] = self.stringMap["DIALOG_STR_5"][self.language], + [6] = self.stringMap["DIALOG_STR_6"][self.language], + [100] = self.stringMap["DIALOG_STR_100"][self.language], + } + + -- 进度条提示文字 + self.sliderStr = { + [1] = self.stringMap["SLIDER_STR_1"][self.language], + [2] = self.stringMap["SLIDER_STR_2"][self.language], + [3] = self.stringMap["SLIDER_STR_3"][self.language], + [4] = self.stringMap["SLIDER_STR_4"][self.language], + [5] = self.stringMap["SLIDER_STR_5"][self.language], + [6] = self.stringMap["SLIDER_STR_6"][self.language], + } +end + +function First:getSystemLanguage() + local sdkLanguage = BFSDKManager:GetLanguage() + print("first get sdk language " .. sdkLanguage) + local languageInfo = self:splitString(sdkLanguage, "_") + if not languageInfo or #languageInfo ~= 2 then + print("first return system language nil") + return nil + end + local language = languageInfo[1] + local country = languageInfo[2] + if language and language == "zh" then + if country and country == "CN" then + language = "cn" + end + end + if not LANGUAGES[language] then + language = nil + end + if language then + print("first return system language " .. language) + else + print("first return system language nil") + end + return language +end + +function First:splitString(input, delimiter) + input = tostring(input) + delimiter = tostring(delimiter) + if (delimiter=='') then return false end + local pos, arr = 0, {} + for st, sp in function() return string.find(input, delimiter, pos, true) end do + table.insert(arr, string.sub(input, pos, st - 1)) + pos = sp + 1 + end + table.insert(arr, string.sub(input, pos)) + return arr +end + +function First:initLaunchRequester() + local lr = BFLaunchMgr.LaunchRequester + + -- 当前多语言 + lr:SetLanguageName(self.language) + + -- 第一次请求版本号 + lr:SetFirstRequestAction(function(version, identifier, onGetVersion) + self:requestAddress(onGetVersion) + end) + + -- 对话框 + lr:SetShowDialogAction(function(eCode, okCallback) + local str = self.dialogStr[eCode] or "" + self:showDialog(str, okCallback) + end) + + -- 多选对话框 + lr:SetShowDialogComplexAction(function(eCode, okCallback, cancelCallback) + local str = self.dialogStr[eCode] or "" + if eCode == 1 or eCode == 6 then -- 前往商店的时候设置一下确认按钮的文本 + self:showDialogComplex(str, okCallback, cancelCallback, self.strGoto) + else + self:showDialogComplex(str, okCallback, cancelCallback) + end + end) + + -- 隐藏对话框 + lr:SetHideDialogAction(function() + self:hideDialog() + end) + + -- 进度条 + lr:SetUpdateSliderAction(function(sliderCode, progress) + local str = self.sliderStr[sliderCode] + self:showSlider() + self:setSliderText(str) + self:setSliderPercentText("") + end) + + -- 隐藏进度条 + lr:SetHideSliderAction(function() + self:hideSlider() + end) + + -- 预检查完成 + lr:SetPreCheckEndCallback(function() + self:onPreCheckEnd() + end) + + -- 获取到总进度 + lr:SetGetTotalLengthCallback(function(totalSize) + self.downloadTotalSize = totalSize + local mb = totalSize / 1048576 + if mb < 0.01 then + mb = 0.01 + end + self.downloadTotalSizeStr = string.format("%sMB", (mb - mb % 0.01)) + + local str + local isRepair = BFLaunchMgr.LaunchRequester.isAutoRepair + if isRepair then + str = string.format(self.strRepair, 0, self.downloadTotalSizeStr) + else + str = string.format(self.strDownloading, 0, self.downloadTotalSizeStr) + end + + self:showSlider() + self:setSliderText(str) + self:setSliderPercentText("") + end) + + -- 下载更新 + lr:SetDownloadingCallback(function(size) + local mb = size / 1048576 + if mb < 0.01 then + mb = 0.01 + end + local sizeStr = string.format("%sMB", (mb - mb % 0.01)) + + local str + local isRepair = BFLaunchMgr.LaunchRequester.isAutoRepair + if isRepair then + str = string.format(self.strRepair, sizeStr, self.downloadTotalSizeStr) + else + str = string.format(self.strDownloading, sizeStr, self.downloadTotalSizeStr) + end + + local progress = size / (self.downloadTotalSize or 1) + self:showSlider() + self:setSliderText(str) + self:setSliderPercentText(math.floor(progress * 100) .. "%") + end) + + -- 启动成功 + lr:AddLaunchSuccCallback(function() + CS.UnityEngine.Object.Destroy(self.firstUI) + CS.UnityEngine.Object.Destroy(self.firstRoot) + self.firstUI = nil + self.firstRoot = nil + end) +end + +function First:showUI() + local firstAb = BFLaunchMgr:GetFirstAB() + self.firstAb = firstAb + local firstRootAsset = self.firstAb:LoadAsset(FIRST_ROOT_PREFAB_PATH, typeof(CS.UnityEngine.GameObject)) + self.firstRoot = CS.UnityEngine.Object.Instantiate(firstRootAsset) + self.canvasTrans = self.firstRoot.transform:Find("canvas") + + if BFLaunchMgr.LaunchRequester.launchSucceed then + self:showFirstUI() + else + self:showLogo() + end +end + +function First:loadFirstUI() + if not self.firstUI then + local firstUIAsset = self.firstAb:LoadAsset(FIRST_UI_PREFAB_PATH, typeof(CS.UnityEngine.GameObject)) + self.firstUI = CS.UnityEngine.Object.Instantiate(firstUIAsset) + self.firstUI.transform:SetParent(self.canvasTrans, false) + + self.progressText = self.firstUI.transform:Find("progress_text") + self.sliderPercentText = self.progressText:GetComponent(TYPE_TEXT) + self.sliderText = self.firstUI.transform:Find("slider_text"):GetComponent(TYPE_TEXT) + + local logoEn = self.firstUI.transform:Find("logo_en") + local logoZH = self.firstUI.transform:Find("logo_zh") + local logoCn = self.firstUI.transform:Find("logo_cn") + if self.language == "zh" then + logoZH.localScale = VISIBLE_SCALE + logoEn.localScale = NOT_VISIBLE_SCALE + logoCn.localScale = NOT_VISIBLE_SCALE + elseif self.language == "cn" then + logoCn.localScale = VISIBLE_SCALE + logoEn.localScale = NOT_VISIBLE_SCALE + logoZH.localScale = NOT_VISIBLE_SCALE + else + logoEn.localScale = VISIBLE_SCALE + logoZH.localScale = NOT_VISIBLE_SCALE + logoCn.localScale = NOT_VISIBLE_SCALE + end + + self.dialogTrans = self.firstUI.transform:Find("message_box") + + self.confirmBtnTrans = self.firstUI.transform:Find("message_box/title_bg_img/ok_btn") + local confirmBtn = self.confirmBtnTrans:GetComponent(TYPE_BF_TOUCH_EVENT) + confirmBtn:AddTouchEventListener(function(eventType, x, y) + if eventType == EVENT_UP_INSIDE and self.confirmCallback then + self.confirmCallback() + self:hideDialog() + end + end) + + self.confirmText = self.firstUI.transform:Find("message_box/title_bg_img/ok_btn/text"):GetComponent(TYPE_TEXT) + self.confirmText.text = self.strOK + + self.cancelBtnTrans = self.firstUI.transform:Find("message_box/title_bg_img/cancel_btn") + local cancelBtn = self.cancelBtnTrans:GetComponent(TYPE_BF_TOUCH_EVENT) + cancelBtn:AddTouchEventListener(function(eventType, x, y) + if eventType == EVENT_UP_INSIDE and self.cancelCallback then + self.cancelCallback() + self:hideDialog() + end + end) + + local cancelText = self.firstUI.transform:Find("message_box/title_bg_img/cancel_btn/text"):GetComponent(TYPE_TEXT) + cancelText.text = self.strCancel + + self.contentText = self.firstUI.transform:Find("message_box/title_bg_img/content_tx"):GetComponent(TYPE_TEXT) + + local versionText = self.firstUI.transform:Find("version"):GetComponent(TYPE_TEXT) + local appVersionText = self.stringMap["STR_APP_VERSION"][self.language] + if appVersionText == nil then + appVersionText = "App: " + end + local version = BFLaunchMgr:GetCurrentVersion() + versionText.text = appVersionText .. version + end +end + +---- 请求地址信息 +function First:requestAddress(callback, times, totalTimes) + local responded = false + if (self.hasReceiveAddrSuccess == nil) then + self.hasReceiveAddrSuccess = false + end + if (self.showAddrErrorBox == nil) then + self.showAddrErrorBox = false + end + if times == nil then -- 本次循环的连接次数,每次连接会进行一定次数的自动重连 + times = 0 + end + if totalTimes == nil then -- 用于标记唯一ID + totalTimes = 0 + end + times = times + 1 + totalTimes = totalTimes + 1 + + local connectStartTimes = os.clock() + + local loginCenterUrl = BFPlatform.GetLoginCenterURL() + local version = BFLaunchMgr:GetCurrentVersion() + print("requestAddress -- loginCenterUrl:" .. loginCenterUrl .. " version:" .. version .. " times:" .. times .. " totalTimes:" .. totalTimes) + + local args = { + project_id = "b5", + version = BFLaunchMgr:GetCurrentVersion(), + device_id = CS.UnityEngine.SystemInfo.deviceUniqueIdentifier, + bundle_id = CS.UnityEngine.Application.identifier, + env = "release",-- 暂时写死 + } + local platform = "Editor" + if CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.Android then + platform = "Android" + elseif CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer then + platform = "iOS" + end + loginCenterUrl = loginCenterUrl .. "?platform=" .. CS.System.Uri.EscapeDataString(platform) + -- lua这边直接构建好参数 + for k, v in pairs(args) do + loginCenterUrl = loginCenterUrl .. "&" .. k .. "=" .. CS.System.Uri.EscapeDataString(v) + end + local guid = CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetNewPlayerGuid() + loginCenterUrl = loginCenterUrl .. "&random=" .. CS.System.Uri.EscapeDataString(guid) + CS.BF.BFMain.Instance.SDKMgr.BFLoginSDKMgr:GetWithURL(loginCenterUrl, function (req, rsp) + if rsp and rsp.IsSuccess == true then + if rsp.Data then -- 有数据就算成功 + local serverResult = json.decode(rsp.Data) + if serverResult then + CS.BF.BFMain.IsShenhe = (serverResult.env == "audit" and CS.UnityEngine.Application.platform == CS.UnityEngine.RuntimePlatform.IPhonePlayer) + responded = true + -- 如果已经成功过了 不作处理 + if self.hasReceiveAddrSuccess then + return + end + self.hasReceiveAddrSuccess = true + self.requestAddressRsp = rsp.Data + if not self.showAddrErrorBox then + self:setShenHeLanguageAndReqATT() + -- 上报版本请求成功 + local args = { + client_version = version, + client_version_url = loginCenterUrl, + client_connect_time = (os.clock() - connectStartTimes)*1000, + client_retry_times = totalTimes - 1 + } + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostThinkingAnalyticsEvent("client_request_version_success", json.encode(args)) + -- 走后续步骤 + if callback then + callback(rsp.Data) + end + end + else + self:tryShowRequestAddrErrorBox(connectStartTimes, callback, REQUEST_ADDR_ERROR_TYPE.REQUEST_FAIL, times, totalTimes) + end + else + self:tryShowRequestAddrErrorBox(connectStartTimes, callback, REQUEST_ADDR_ERROR_TYPE.REQUEST_FAIL, times, totalTimes) + end + else + self:tryShowRequestAddrErrorBox(connectStartTimes, callback, REQUEST_ADDR_ERROR_TYPE.REQUEST_FAIL, times, totalTimes) + end + end) + + CS.BF.BFMain.Instance.TaskMgr:EasyTimer(REQUEST_ADDR_TIME_OUT, function() + if not responded and not self.hasReceiveAddrSuccess and not self.showAddrErrorBox then + self:tryShowRequestAddrErrorBox(connectStartTimes, callback, REQUEST_ADDR_ERROR_TYPE.TIME_OUT, times, totalTimes) + end + end) +end + +-- 请求地址失败的处理 +function First:tryShowRequestAddrErrorBox(connectStartTimes, callback, reqAddrErrorType, times, totalTimes) + if self.recordReqAddrFailTimes == nil then + self.recordReqAddrFailTimes = {} + end + local hasRecord = self.recordReqAddrFailTimes[totalTimes] ~= nil + print("tryShowRequestAddrErrorBox errorType:" .. reqAddrErrorType .. " hasRecord:" .. tostring(hasRecord) .. " times:" .. times .. " totalTimes:" .. totalTimes) + + if times > REQUEST_ADDR_MAX_RETRY_TIMES then + -- 尝试弹出错误框 + if not self.showAddrErrorBox then + self.showAddrErrorBox = true + self:showDialog(self.dialogStr[100], function() + self.showAddrErrorBox = false + if self.hasReceiveAddrSuccess then -- 延迟成功了 不需要重新request + self:setShenHeLanguageAndReqATT() + -- 上报版本请求成功 + local args = { + client_version = BFLaunchMgr:GetCurrentVersion(), + client_version_url = BFPlatform.GetLoginCenterURL(), + client_connect_time = (os.clock() - connectStartTimes)*1000, + client_retry_times = totalTimes - 1 + } + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostThinkingAnalyticsEvent("client_request_version_success", json.encode(args)) + + if callback then + callback(self.requestAddressRsp) + end + else + CS.BF.BFMain.Instance.TaskMgr:EasyTimer(0, function() + self:requestAddress(callback, 0, totalTimes) -- 重新开始 + end) + end + end) + end + else -- 静默重试 + -- 重试 + if not hasRecord then + CS.BF.BFMain.Instance.TaskMgr:EasyTimer(0, function() + self:requestAddress(callback, times, totalTimes) -- 重新开始 + end) + end + end + -- 失败上报 + if not hasRecord then + self.recordReqAddrFailTimes[totalTimes] = 1 + local args = { + client_version = BFLaunchMgr:GetCurrentVersion(), + client_version_url = BFPlatform.GetLoginCenterURL(), + client_connect_time = (os.clock() - connectStartTimes)*1000, + client_error_type = reqAddrErrorType, + client_retry_times = totalTimes - 1 + } + CS.BF.BFMain.Instance.SDKMgr.BFThirdReportSDKMgr:PostThinkingAnalyticsEvent("client_request_version_failed", json.encode(args)) + end +end + +-- 审核包特殊处理,语言设置,并且如果是ios则请求ATT +function First:setShenHeLanguageAndReqATT() +end + +function First:showFirstUI() + self:loadFirstUI() + self:hideSlider() + self:hideDialog() +end + +-- 隐藏确认框 +function First:hideDialog() + if self.dialogTrans then + self.dialogTrans.gameObject:SetActive(false) + end +end + +-- 隐藏slider +function First:hideSlider() + if self.dialogTrans then + self.progressText.gameObject:SetActive(false) + end +end + +-- 显示slider +function First:showSlider() + self.progressText.gameObject:SetActive(true) +end + +-- 设置slider文本 +function First:setSliderText(str) + self.sliderText.text = str +end + +-- 设置slider的文本 +function First:setSliderPercentText(value) + self.sliderPercentText.text = value +end + +-- 显示对话框, ok +function First:showDialog(contentStr, callback) + self.dialogTrans.gameObject:SetActive(true) + self.contentText.text = contentStr + self.confirmText.text = self.strOK + self.confirmCallback = callback + self.cancelBtnTrans.gameObject:SetActive(false) + self.confirmBtnTrans.localPosition = { + x = 0, + y = -161, + z = 0 + } +end + +-- 显示对话框, ok cancel +function First:showDialogComplex(contentStr, okCallback, cancelCallback, confirmStr) + self.dialogTrans.gameObject:SetActive(true) + self.contentText.text = contentStr + self.confirmText.text = confirmStr or self.strOK + self.confirmCallback = okCallback + self.cancelCallback = cancelCallback + self.cancelBtnTrans.gameObject:SetActive(true) + self.confirmBtnTrans.localPosition = { + x = 138, + y = -161, + z = 0 + } +end + +-- 显示项目logo +function First:showLogo() + self.logoEnd = true + if self.preCheckEnd then + self:onLogoEnd() + end +end + +-- logo播放完毕 +function First:onLogoEnd() + self:loadFirstUI() + self:hideSlider() + self:hideDialog() + self:showSlider() + BFLaunchMgr.LaunchRequester:PreCheckNextProcess() +end + +-- 预检查完成 +function First:onPreCheckEnd() + self.preCheckEnd = true + if self.logoEnd then + self:onLogoEnd() + end +end + + +function First:compareVersionThan(version1, version2, include) + if not version1 or not version2 then + return false + end + + local versionStrs = self:split(version1, ".") + local versionNum1 = tonumber(versionStrs[1]) + local versionNum2 = tonumber(versionStrs[2]) + local versionNum3 = tonumber(versionStrs[3]) + + local versionStrs2 = self:split(version2, ".") + local versionNum21 = tonumber(versionStrs2[1]) + local versionNum22 = tonumber(versionStrs2[2]) + local versionNum23 = tonumber(versionStrs2[3]) + + if not versionNum1 or not versionNum2 or not versionNum3 or not versionNum21 or not versionNum22 or not versionNum23 then + return false + end + + if versionNum1 > versionNum21 then + return true, true + elseif versionNum1 < versionNum21 then + return false + end + + if versionNum2 > versionNum22 then + return true, true + elseif versionNum2 < versionNum22 then + return false + end + + if versionNum3 > versionNum23 then + return true + elseif versionNum3 < versionNum23 then + return false + end + + if include then + return true + end + + return false +end + +function First:split(input, delimiter) + input = tostring(input) + delimiter = tostring(delimiter) + if (delimiter=='') then return false end + local pos,arr = 0, {} + for st,sp in function() return string.find(input, delimiter, pos, true) end do + table.insert(arr, string.sub(input, pos, st - 1)) + pos = sp + 1 + end + table.insert(arr, string.sub(input, pos)) + return arr +end + + +First:init() +First:showUI() + +return First \ No newline at end of file diff --git a/lua/app/first/first.lua.meta b/lua/app/first/first.lua.meta new file mode 100644 index 00000000..59b9d156 --- /dev/null +++ b/lua/app/first/first.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d4251631cebee3e49b2c34716497c15b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/first/first_text.lua b/lua/app/first/first_text.lua new file mode 100644 index 00000000..c1601fb5 --- /dev/null +++ b/lua/app/first/first_text.lua @@ -0,0 +1,366 @@ +local firstText = { + ["STR_NO_NETWORK_CONNECTION"]={ + ["cn"]="当前网络不可用,请检查网络", + ["en"]="Network unavailable. Please check your network connection.", + ["zh"]="當前網路不可用,請檢查網路", + ["fr"]="Réseau indisponible. Veuillez vérifier votre connexion réseau.", + ["de"]="Netzwerk nicht verfügbar. Bitte überprüfe deine Netzwerkverbindung.", + ["it"]="Rete non disponibile. Controlla la tua connessione di rete.", + ["ms"]="Rangkaian tidak tersedia. Sila periksa sambungan rangkaian anda.", + ["pt"]="Rede indisponível. Confira a conexão.", + ["es"]="Sin conexión. Comprueba tu conexión a internet.", + ["ru"]="Нет соединения. Проверьте подключение к сети.", + ["th"]="เครือข่ายไม่พร้อมให้บริการ โปรดตรวจสอบการเชื่อมต่อเครือข่ายของคุณ", + ["tr"]="Ağ mevcut değil. Lütfen ağ bağlantını kontrol et.", + ["id"]="Jaringan tidak tersedia. Silakan periksa hubungan jaringanmu.", + ["vi"]="Mạng hiện tại không khả dụng, vui lòng kiểm tra mạng", + ["ja"]="ネットワークに接続できません。ご利用のネットワーク状況を確認してください。", + ["ko"]="현재 네트워크 연결 불가하니, 네트워크 체크하세요", + }, + ["STR_OK"]={ + ["cn"]="确定", + ["en"]="Confirm", + ["zh"]="確定", + ["fr"]="Confirmer", + ["de"]="Bestätigen", + ["it"]="Conferma", + ["ms"]="Sahkan", + ["pt"]="Confirmar", + ["es"]="Confirmar", + ["ru"]="Подтвердить", + ["th"]="ยืนยัน", + ["tr"]="Onayla", + ["id"]="Yakin", + ["vi"]="OK", + ["ja"]="確認", + ["ko"]="확인", + }, + ["STR_CANCEL"]={ + ["cn"]="取消", + ["en"]="Cancel", + ["zh"]="取消", + ["fr"]="Annuler", + ["de"]="Abbrechen", + ["it"]="Annulla", + ["ms"]="Batal", + ["pt"]="Cancelar", + ["es"]="Cancelar", + ["ru"]="Отмена", + ["th"]="ยกเลิก", + ["tr"]="İptal", + ["id"]="Batal", + ["vi"]="Huỷ", + ["ja"]="キャンセル", + ["ko"]="취소", + }, + ["STR_APP_VERSION"]={ + ["cn"]="版本号:", + ["en"]="App:", + ["zh"]="版本號:", + ["fr"]="App:", + ["de"]="App:", + ["it"]="App:", + ["ms"]="App:", + ["pt"]="App:", + ["es"]="App:", + ["ru"]="App:", + ["th"]="App:", + ["tr"]="App:", + ["id"]="App:", + ["vi"]="App:", + ["ja"]="App:", + ["ko"]="App:", + }, + ["STR_DOWNLOADING_RES"]={ + ["cn"]="正在下载更新 %s/%s", + ["en"]="Downloading the updates %s/%s", + ["zh"]="正在下載更新 %s/%s", + ["fr"]="Téléchargement des mises à jour %s/%s", + ["de"]="Updates %s/%s werden heruntergeladen", + ["it"]="Scaricamento degli aggiornamenti %s/%s", + ["ms"]="Memuat turun kemas kini %s/%s", + ["pt"]="Baixando atualizações %s/%s", + ["es"]="Descargando actualizaciones %s/%s", + ["ru"]="Загрузка обновлений %s/%s", + ["th"]="กำลังดาวน์โหลดอัปเดต %s/%s", + ["tr"]="Güncellemeler indiriliyor %s/%s", + ["id"]="Mengunduh pembaruan %s/%s", + ["vi"]="Đang tải xuống bản cập nhật %s/%s", + ["ja"]="アップデート%s/%sをダウンロード中", + ["ko"]="현재 %s/%s 다운로드 및 업데이트 중", + }, + ["STR_REPAIR_RES"]={ + ["cn"]="正在修复资源 %s/%s", + ["en"]="Repairing resources %s/%s", + ["zh"]="正在修復資源 %s/%s", + ["fr"]="Réparation des ressources %s/%s", + ["de"]="Ressourcen %s/%s werden repariert", + ["it"]="Riparazione risorse %s/%s", + ["ms"]="Membaiki sumber %s/%s", + ["pt"]="Reparando recursos %s/%s", + ["es"]="Reparando recursos %s/%s", + ["ru"]="Восстановление ресурсов %s/%s", + ["th"]="กำลังซ่อมแซมทรัพยากร %s/%s", + ["tr"]="Kaynaklar onarılıyor %s/%s", + ["id"]="Memperbaiki sumber daya %s/%s", + ["vi"]="Đang sửa chữa tài nguyên %s/%s", + ["ja"]="修復リソース%s/%sをダウンロード中", + ["ko"]="현재 %s/%s 자원 복원 중", + }, + ["STR_GOTO"] = { + ["cn"]="前往", + ["en"]="Go", + ["zh"]="前往", + ["fr"]="Aller", + ["de"]="Losgehen", + ["it"]="Go", + ["ms"]="Go", + ["pt"]="Ir", + ["es"]="Go", + ["ru"]="Go", + ["th"]="Go", + ["tr"]="Go", + ["id"]="Pergi", + ["vi"]="Đến", + ["ja"]="向かう", + ["ko"]="바로가기", + }, + ["DIALOG_STR_1"]={ + ["cn"]="请前往商店下载最新版本", + ["en"]="Please download the latest version at app store.", + ["zh"]="請前往商店下載最新版本", + ["fr"]="Veuillez télécharger la dernière version depuis la boutique d'applications.", + ["de"]="Bitte lade die aktuellste Version im App Store herunter.", + ["it"]="Scarica la versione più recente sull'app store.", + ["ms"]="Sila muat turun versi terkini di app store.", + ["pt"]="Baixe a versão mais recente na loja de aplicativos.", + ["es"]="Descarga la última versión de la aplicación en App Store.", + ["ru"]="Загрузите последнюю версию игры из магазина приложений.", + ["th"]="โปรดดาวน์โหลดเวอร์ชันล่าสุดได้ที่ร้านขายแอป", + ["tr"]="Lütfen uygulama mağazasından son sürümü indir.", + ["id"]="Silakan unduh versi terbaru di toko aplikasi.", + ["vi"]="Vui lòng vào cửa hàng để tải phiên bản mới nhất", + ["ja"]="Appストアで最新版をダウンロードしてください", + ["ko"]="스토어에 가서 최신 버전을 다운로드하세요", + }, + ["DIALOG_STR_2"]={ + ["cn"]="请求服务器失败", + ["en"]="Failed to connect to the server.", + ["zh"]="請求伺服器失敗", + ["fr"]="Impossible de se connecter au serveur.", + ["de"]="Verbindung zum Server fehlgeschlagen.", + ["it"]="Errore di connessione al server.", + ["ms"]="Gagal menyambung ke pelayan.", + ["pt"]="Falha ao se conectar ao servidor.", + ["es"]="Error al establecer conexión con el servidor.", + ["ru"]="Не удалось установить соединение с сервером.", + ["th"]="เชื่อมต่อกับเซิร์ฟเวอร์ไม่สำเร็จ", + ["tr"]="Sunucuya bağlanılamadı.", + ["id"]="Gagal terhubung ke server.", + ["vi"]="Máy chủ yêu cầu không thành công", + ["ja"]="サーバーへのリクエストが失敗しました", + ["ko"]="서버 요청에 실패하였습니다", + }, + ["DIALOG_STR_3"]={ + ["cn"]="下载配置文件出错", + ["en"]="Error in downloading configuration files.", + ["zh"]="下載配置檔出錯", + ["fr"]="Erreur lors du téléchargement des fichiers de configuration.", + ["de"]="Fehler beim Herunterladen der Konfigurationsdateien.", + ["it"]="Errore nello scaricamento dei file di configurazione.", + ["ms"]="Ralat semasa memuat turun fail konfigurasi.", + ["pt"]="Erro ao baixar os arquivos de configuração.", + ["es"]="Error al descargar archivos de configuración.", + ["ru"]="При загрузке конфигурационных файлов произошла ошибка.", + ["th"]="เกิดข้อผิดพลาดในการดาวน์โหลดไฟล์การกำหนดค่า", + ["tr"]="Yapılandırma dosyaları indirilemedi.", + ["id"]="Ada kesalahan saat mengunduh file konfigurasi.", + ["vi"]="Lỗi khi tải xuống tệp cấu hình", + ["ja"]="設定ファイルのダウンロードにエラーが生じました", + ["ko"]="환경 설정 파일 다운로드 시 오류가 생겼습니다", + }, + ["DIALOG_STR_4"]={ + ["cn"]="剩余内存空间不足", + ["en"]="Insufficient storage.", + ["zh"]="剩餘記憶體空間不足", + ["fr"]="Stockage insuffisant.", + ["de"]="Nicht genügend Speicherplatz.", + ["it"]="Spazio insufficiente.", + ["ms"]="Penyimpanan tidak mencukupi.", + ["pt"]="Armazenamento insuficiente.", + ["es"]="Espacio insuficiente.", + ["ru"]="Недостаточно памяти.", + ["th"]="ที่เก็บข้อมูลไม่พอ", + ["tr"]="Alan yetersiz.", + ["id"]="Ruang penyimpanan tidak cukup.", + ["vi"]="Không đủ dung lượng bộ nhớ", + ["ja"]="メモリ容量が不足しています", + ["ko"]="잉여 저장공간 부족", + }, + ["DIALOG_STR_5"]={ + ["cn"]="更新失败,请确保网络环境正常后重试。", + ["en"]="Update failed. Please ensure a normal network and try again.", + ["zh"]="更新失敗,請確保網路環境正常後重試。", + ["fr"]="Échec de la mise à jour. Veuillez réessayer avec un réseau stable.", + ["de"]="Update fehlgeschlagen. Überprüfe deine Netzwerkverbindung und versuche es erneut.", + ["it"]="Aggiornamento non riuscito. Assicurati che la tua connessione sia stabile e riprova.", + ["ms"]="Kemas kini gagal. Sila pastikan rangkaian normal dan cuba lagi.", + ["pt"]="Falha de atualização. Confira se a rede está normal e tente de novo.", + ["es"]="Error de descarga. Comprueba tu conexión e inténtalo de nuevo.", + ["ru"]="Не удалось обновить игру. Убедитесь, что подключение к сети стабильно, и попробуйте еще раз.", + ["th"]="อัปเดตไม่สำเร็จ โปรดตรวจสอบให้แน่ใจว่าเครือข่ายทำงานเป็นปกติ จากนั้นลองอีกครั้ง", + ["tr"]="Güncelleme başarısız. Lütfen ağın normal olduğundan emin ol ve tekrar dene.", + ["id"]="Gagal memperbarui. Silakan pastikan jaringan normal dan coba lagi.", + ["vi"]="Cập nhật không thành công. Hãy đảm bảo rằng môi trường mạng bình thường và thử lại.", + ["ja"]="アップデートに失敗しました。ネットワーク環境を確認した後、再試行してください。", + ["ko"]="업데이트 실패하였습니다, 정상적인 네트워크 환경하에 다시 시도하세요", + }, + ["DIALOG_STR_6"]={ + ["cn"]="目前游戏已有最新版本,请您在网络状况好的时候前往商店下载最新游戏。", + ["en"]="The game now has an updated version. Please download the latest game in the store when you have a proper network connection.", + ["zh"]="目前遊戲已有最新版本,請您在網絡狀況好的時候前往商店下載最新遊戲。", + ["fr"]="Maintenant le jeu a une dernière version, veuillez vous rendre au magasin pour télécharger la dernière version lorsque l'état du réseau est bon.", + ["de"]="Jetzt hat das Spiel eine neueste Version. Bitte gehe in den App-Laden, um die neueste Version herunterzuladen, wenn der Netzwerkstatus gut ist.", + ["it"]="The game now has an updated version. Please download the latest game in the store when you have a proper network connection.", + ["ms"]="The game now has an updated version. Please download the latest game in the store when you have a proper network connection.", + ["pt"]="O jogo foi atualizado. Por favor, baixe a versão mais recente quando sua conexão à internet permitir.", + ["es"]="The game now has an updated version. Please download the latest game in the store when you have a proper network connection.", + ["ru"]="The game now has an updated version. Please download the latest game in the store when you have a proper network connection.", + ["th"]="The game now has an updated version. Please download the latest game in the store when you have a proper network connection.", + ["tr"]="The game now has an updated version. Please download the latest game in the store when you have a proper network connection.", + ["id"]="Versi terbaru game tersedia. Silakan kunjungi Mall untuk mengunduh game terbaru.", + ["vi"]="Hiện tại game đã có phiên bản mới nhất, khi mạng mạnh hãy vào cửa hàng ứng dụng để tải bản mới nhất về.", + ["ja"]="最新バージョンのアップデートが完了しました。ストアへ移動し、最新バージョンをダウンロードしてください。", + ["ko"]="현재 게임에 최신 버전이 존재합니다. 네트워크 상태가 양호할 때 스토어로 이동하여 최신 버전 게임을 다운로드해 주세요.", + }, + ["DIALOG_STR_100"]={ + ["cn"]="当前网络异常,请重试", + ["en"]="Network error. Please try again later.", + ["zh"]="當前網路異常,請重試", + ["fr"]="Erreur de réseau. Veuillez réessayer ultérieurement.", + ["de"]="Netzwerkfehler. Bitte versuche es später erneut.", + ["it"]="Errore di rete. Riprova più tardi.", + ["ms"]="Ralat rangkaian. Sila cuba sebentar lagi.", + ["pt"]="Erro de conexão. Tente de novo mais tarde.", + ["es"]="Error de conexión. Inténtalo de nuevo.", + ["ru"]="Ошибка сети. Попробуйте еще раз позже.", + ["th"]="เครือข่ายเกิดข้อผิดพลาด โปรดลองอีกครั้งภายหลัง", + ["tr"]="Ağ hatası. Lütfen daha sonra tekrar dene.", + ["id"]="Jaringan salah. Silakan coba lagi nanti.", + ["vi"]="Mạng hiện tại không bình thường, vui lòng thử lại", + ["ja"]="ネットワーク障害です。再試行してください。", + ["ko"]="현재 네트워크 이상이 생겼으니, 다시 시도하세요", + }, + ["SLIDER_STR_1"]={ + ["cn"]="正在请求服务器...", + ["en"]="Connecting to the server...", + ["zh"]="正在請求伺服器...", + ["fr"]="Connexion au serveur...", + ["de"]="Verbindung zum Server wird hergestellt ...", + ["it"]="Connessione al server...", + ["ms"]="Menyambung ke pelayan...", + ["pt"]="Conectando-se ao servidor...", + ["es"]="Estableciendo conexión con el servidor...", + ["ru"]="Соединение с сервером...", + ["th"]="กำลังเชื่อมต่อกับเซิร์ฟเวอร์...", + ["tr"]="Sunucuya bağlanılıyor...", + ["id"]="Sedang menghubungkan ke server...", + ["vi"]="Đang yêu cầu máy chủ ...", + ["ja"]="サーバーに接続中…", + ["ko"]="서버 요청 중...", + }, + ["SLIDER_STR_2"]={ + ["cn"]="正在检查资源更新...", + ["en"]="Checking new resources...", + ["zh"]="正在檢查資源更新...", + ["fr"]="Vérification des nouvelles ressources...", + ["de"]="Ressourcen werden überprüft ...", + ["it"]="Controllo nuove risorse...", + ["ms"]="Memeriksa sumber baharu...", + ["pt"]="Conferindo novos recursos...", + ["es"]="Comprobando recursos...", + ["ru"]="Проверка ресурсов...", + ["th"]="กำลังตรวจสอบทรัพยากรใหม่...", + ["tr"]="Yeni kaynaklar kontrol ediliyor...", + ["id"]="Memeriksa sumber daya baru...", + ["vi"]="Đang kiểm tra các bản cập nhật tài nguyên ...", + ["ja"]="更新ファイルの確認中…", + ["ko"]="자원 업데이트 체크 중...", + }, + ["SLIDER_STR_3"]={ + ["cn"]="正在下载更新资源...", + ["en"]="Downloading the updates...", + ["zh"]="正在下載更新資源...", + ["fr"]="Téléchargement des mises à jour...", + ["de"]="Updates werden heruntergeladen ...", + ["it"]="Scaricamento degli aggiornamenti...", + ["ms"]="Memuat turun kemas kini...", + ["pt"]="Baixando atualizações...", + ["es"]="Descargando actualizaciones...", + ["ru"]="Загрузка обновлений...", + ["th"]="กำลังดาวน์โหลดอัปเดต...", + ["tr"]="Güncellemeler indiriliyor...", + ["id"]="Mengunduh pembaruan...", + ["vi"]="Đang tải xuống tài nguyên cập nhật ...", + ["ja"]="更新ファイルのダウンロード中…", + ["ko"]="자원 다운로드 및 업데이트 중...", + }, + ["SLIDER_STR_4"]={ + ["cn"]="正在修复资源...", + ["en"]="Repairing resources...", + ["zh"]="正在修復資源...", + ["fr"]="Réparation des ressources...", + ["de"]="Ressourcen werden repariert ...", + ["it"]="Riparazione risorse...", + ["ms"]="Membaiki sumber...", + ["pt"]="Reparando recursos...", + ["es"]="Reparando recursos...", + ["ru"]="Восстановление ресурсов...", + ["th"]="กำลังซ่อมแซมทรัพยากร...", + ["tr"]="Kaynaklar onarılıyor...", + ["id"]="Memperbaiki sumber daya...", + ["vi"]="Đang sửa chữa tài nguyên ...", + ["ja"]="リソースの修復中…", + ["ko"]="자원 복원 중...", + }, + ["SLIDER_STR_5"]={ + ["cn"]="正在整理资源...", + ["en"]="Collating resources...", + ["zh"]="正在整理資源...", + ["fr"]="Collecte des ressources...", + ["de"]="Ressourcen werden zugeordnet ...", + ["it"]="Raggruppamento risorse...", + ["ms"]="Mengumpul sumber...", + ["pt"]="Agrupando recursos...", + ["es"]="Recopilando recursos...", + ["ru"]="Сортировка ресурсов...", + ["th"]="กำลังนำทรัพยากรมารวมกัน...", + ["tr"]="Kaynaklar derleniyor...", + ["id"]="Mengumpulkan sumber daya...", + ["vi"]="Tổ chức tài nguyên ...", + ["ja"]="リソースの解析中…", + ["ko"]="자원 정리 중...", + }, + ["SLIDER_STR_6"]={ + ["cn"]="正在检查版本信息", + ["en"]="Checking version info...", + ["zh"]="正在檢查版本資訊", + ["fr"]="Vérification des informations de version...", + ["de"]="Versionsinfo wird abgerufen ...", + ["it"]="Controllo informazioni versione...", + ["ms"]="Memeriksa maklumat versi...", + ["pt"]="Conferindo informações de versão...", + ["es"]="Comprobando edición...", + ["ru"]="Проверка информации о версии...", + ["th"]="กำลังตรวจสอบข้อมูลเวอร์ชัน...", + ["tr"]="Sürüm bilgileri kontrol ediliyor...", + ["id"]="Memeriksa informasi versi...", + ["vi"]="Đang kiểm tra thông tin phiên bản ...", + ["ja"]="バージョン情報を確認しています", + ["ko"]="버전 정보 체크 중...", + } +} +local config = { + data=firstText,count=17 +} +return config \ No newline at end of file diff --git a/lua/app/first/first_text.lua.meta b/lua/app/first/first_text.lua.meta new file mode 100644 index 00000000..828406fb --- /dev/null +++ b/lua/app/first/first_text.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 7f735b88e321c9d4dbf2c70826bf7946 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/first/protoc.lua b/lua/app/first/protoc.lua new file mode 100644 index 00000000..7bcbca5d --- /dev/null +++ b/lua/app/first/protoc.lua @@ -0,0 +1,1112 @@ +local string = string +local tonumber = tonumber +local setmetatable = setmetatable +local error = error +local ipairs = ipairs +local io = io +local table = table +local math = math +local assert = assert +local tostring = tostring +local type = type +local insert_tab = table.insert + +local function meta(name, t) + t = t or {} + t.__name = name + t.__index = t + return t +end + +local function default(t, k, def) + local v = t[k] + if not v then + v = def or {} + t[k] = v + end + return v +end + +local Lexer = meta "Lexer" do + + local escape = { + a = "\a", b = "\b", f = "\f", n = "\n", + r = "\r", t = "\t", v = "\v" + } + + local function tohex(x) return string.byte(tonumber(x, 16)) end + local function todec(x) return string.byte(tonumber(x, 10)) end + local function toesc(x) return escape[x] or x end + + function Lexer.new(name, src) + local self = { + name = name, + src = src, + pos = 1 + } + return setmetatable(self, Lexer) + end + + function Lexer:__call(patt, pos) + return self.src:match(patt, pos or self.pos) + end + + function Lexer:test(patt) + self:whitespace() + local pos = self('^'..patt..'%s*()') + if not pos then return false end + self.pos = pos + return true + end + + function Lexer:expected(patt, name) + if not self:test(patt) then + return self:error((name or "'"..patt.."'").." expected") + end + return self + end + + function Lexer:pos2loc(pos) + local linenr = 1 + pos = pos or self.pos + for start, stop in self.src:gmatch "()[^\n]*()\n?" do + if start <= pos and pos <= stop then + return linenr, pos - start + 1 + end + linenr = linenr + 1 + end + end + + function Lexer:error(fmt, ...) + local ln, co = self:pos2loc() + return error(("%s:%d:%d: "..fmt):format(self.name, ln, co, ...)) + end + + function Lexer:opterror(opt, msg) + if not opt then return self:error(msg) end + return nil + end + + function Lexer:whitespace() + local pos, c = self "^%s*()(%/?)" + self.pos = pos + if c == '' then return self end + return self:comment() + end + + function Lexer:comment() + local pos = self "^%/%/[^\n]*\n?()" + if not pos then + if self "^%/%*" then + pos = self "^%/%*.-%*%/()" + if not pos then + self:error "unfinished comment" + end + end + end + if not pos then return self end + self.pos = pos + return self:whitespace() + end + + function Lexer:line_end(opt) + self:whitespace() + local pos = self '^[%s;]*%s*()' + if not pos then + return self:opterror(opt, "';' expected") + end + self.pos = pos + return pos + end + + function Lexer:eof() + self:whitespace() + return self.pos > #self.src + end + + function Lexer:keyword(kw, opt) + self:whitespace() + local ident, pos = self "^([%a_][%w_]*)%s*()" + if not ident or ident ~= kw then + return self:opterror(opt, "''"..kw..'" expected') + end + self.pos = pos + return kw + end + + function Lexer:ident(name, opt) + self:whitespace() + local b, ident, pos = self "^()([%a_][%w_]*)%s*()" + if not ident then + return self:opterror(opt, (name or 'name')..' expected') + end + self.pos = pos + return ident, b + end + + function Lexer:full_ident(name, opt) + self:whitespace() + local b, ident, pos = self "^()([%a_][%w_.]*)%s*()" + if not ident or ident:match "%.%.+" then + return self:opterror(opt, (name or 'name')..' expected') + end + self.pos = pos + return ident, b + end + + function Lexer:integer(opt) + self:whitespace() + local ns, oct, hex, s, pos = + self "^([+-]?)(0?)([xX]?)([0-9a-fA-F]+)%s*()" + local n + if oct == '0' and hex == '' then + n = tonumber(s, 8) + elseif oct == '' and hex == '' then + n = tonumber(s, 10) + elseif oct == '0' and hex ~= '' then + n = tonumber(s, 16) + end + if not n then + return self:opterror(opt, 'integer expected') + end + self.pos = pos + return ns == '-' and -n or n + end + + function Lexer:number(opt) + self:whitespace() + if self:test "nan%f[%A]" then + return 0.0/0.0 + elseif self:test "inf%f[%A]" then + return 1.0/0.0 + end + local ns, d1, s, d2, s2, pos = self "^([+-]?)(%.?)([0-9]+)(%.?)([0-9]*)()" + if not ns then + return self:opterror(opt, 'floating-point number expected') + end + local es, pos2 = self("(^[eE][+-]?[0-9]+)%s*()", pos) + if d1 == "." and d2 == "." then + return self:error "malformed floating-point number" + end + self.pos = pos2 or pos + local n = tonumber(d1..s..d2..s2..(es or "")) + return ns == '-' and -n or n + end + + function Lexer:quote(opt) + self:whitespace() + local q, start = self '^(["\'])()' + if not start then + return self:opterror(opt, 'string expected') + end + self.pos = start + local patt = '()(\\?'..q..')%s*()' + while true do + local stop, s, pos = self(patt) + if not stop then + self.pos = start-1 + return self:error "unfinished string" + end + self.pos = pos + if s == q then + return self.src:sub(start, stop-1) + :gsub("\\x(%x+)", tohex) + :gsub("\\(%d+)", todec) + :gsub("\\(.)", toesc) + end + end + end + + function Lexer:structure(opt) + self:whitespace() + if not self:test "{" then + return self:opterror(opt, 'opening curly brace expected') + end + local t = {} + while not self:test "}" do + local ident = self:full_ident "field name" -- TODO: full_ident? + self:test ":" + local value = self:constant() + self:test "," + self:line_end "opt" + t[ident] = value + end + return t + end + + function Lexer:array(opt) + self:whitespace() + if not self:test "%[" then + return self:opterror(opt, 'opening square bracket expected') + end + local t = {} + while not self:test "]" do + local value = self:constant() + self:test "," + t[#t + 1] = value + end + return t + end + + function Lexer:constant(opt) + local c = self:full_ident('constant', 'opt') or + self:number('opt') or + self:quote('opt') or + self:structure('opt') or + self:array('opt') + if not c and not opt then + return self:error "constant expected" + end + return c + end + + function Lexer:option_name() + local ident + if self:test "%(" then + ident = self:full_ident "option name" + self:expected "%)" + else + ident = self:ident "option name" + end + while self:test "%." do + ident = ident .. "." .. self:ident() + end + return ident + end + + function Lexer:type_name() + if self:test "%." then + local id, pos = self:full_ident "type name" + return "."..id, pos + else + return self:full_ident "type name" + end + end + +end + +local Parser = meta "Parser" do + Parser.typemap = {} + Parser.loaded = {} + Parser.paths = { "", "." } + + function Parser.new() + local self = {} + self.typemap = {} + self.loaded = {} + self.paths = { "", "." } + return setmetatable(self, Parser) + end + + function Parser:error(msg) + return self.lex:error(msg) + end + + function Parser:addpath(path) + insert_tab(self.paths, path) + end + + function Parser:parsefile(name) + local info = self.loaded[name] + if info then return info end + local errors = {} + for _, path in ipairs(self.paths) do + local fn = path ~= "" and path.."/"..name or name + local fh, err = io.open(fn) + if fh then + local content = fh:read "*a" + info = self:parse(content, name) + fh:close() + return info + end + insert_tab(errors, err or fn..": ".."unknown error") + end + if self.import_fallback then + info = self.import_fallback(name) + end + if not info then + error("module load error: "..name.."\n\t"..table.concat(errors, "\n\t")) + end + return info + end + + -- parser + + local labels = { optional = 1; required = 2; repeated = 3 } + + local key_types = { + int32 = 5; int64 = 3; uint32 = 13; + uint64 = 4; sint32 = 17; sint64 = 18; + fixed32 = 7; fixed64 = 6; sfixed32 = 15; + sfixed64 = 16; bool = 8; string = 9; + } + + local com_types = { + group = 10; message = 11; enum = 14; + } + + local types = { + double = 1; float = 2; int32 = 5; + int64 = 3; uint32 = 13; uint64 = 4; + sint32 = 17; sint64 = 18; fixed32 = 7; + fixed64 = 6; sfixed32 = 15; sfixed64 = 16; + bool = 8; string = 9; bytes = 12; + group = 10; message = 11; enum = 14; + } + + local function register_type(self, lex, tname, typ) + if not tname:match "%."then + tname = self.prefix..tname + end + if self.typemap[tname] then + return lex:error("type %s already defined", tname) + end + self.typemap[tname] = typ + end + + local function type_info(lex, tname) + local tenum = types[tname] + if com_types[tname] then + return lex:error("invalid type name: "..tname) + elseif tenum then + tname = nil + end + return tenum, tname + end + + local function map_info(lex) + local keyt = lex:ident "key type" + if not key_types[keyt] then + return lex:error("invalid key type: "..keyt) + end + local valt = lex:expected "," :type_name() + local name = lex:expected ">" :ident() + local ident = name:gsub("^%a", string.upper) + :gsub("_(%a)", string.upper).."Entry" + local kt, ktn = type_info(lex, keyt) + local vt, vtn = type_info(lex, valt) + return name, types.message, ident, { + name = ident, + field = { + { + name = "key", + number = 1; + label = labels.optional, + type = kt, + type_name = ktn + }, + { + name = "value", + number = 2; + label = labels.optional, + type = vt, + type_name = vtn + }, + }, + options = { map_entry = true } + } + end + + local function inline_option(lex, info) + if lex:test "%[" then + info = info or {} + while true do + local name = lex:option_name() + local value = lex:expected '=' :constant() + info[name] = value + if lex:test "%]" then + return info + end + lex:expected ',' + end + end + end + + local function field(self, lex, ident) + local name, typ, type_name, map_entry + if ident == "map" and lex:test "%<" then + name, typ, type_name, map_entry = map_info(lex) + self.locmap[map_entry.field[1]] = lex.pos + self.locmap[map_entry.field[2]] = lex.pos + register_type(self, lex, type_name, types.message) + else + typ, type_name = type_info(lex, ident) + name = lex:ident() + end + local info = { + name = name, + number = lex:expected "=":integer(), + label = ident == "map" and labels.repeated or labels.optional, + type = typ, + type_name = type_name + } + local options = inline_option(lex) + if options then + info.default_value, options.default = tostring(options.default), nil + info.json_name, options.json_name = options.json_name, nil + if options.packed and options.packed == "false" then + options.packed = false + end + end + info.options = options + if info.number <= 0 then + lex:error("invalid tag number: "..info.number) + end + return info, map_entry + end + + local function label_field(self, lex, ident) + local label = labels[ident] + local info, map_entry + if not label then + if self.syntax == "proto2" and ident ~= "map" then + return lex:error("proto2 disallow missing label") + end + return field(self, lex, ident) + end + if label == labels.optional and self.syntax == "proto3" then + return lex:error("proto3 disallow 'optional' label") + end + info, map_entry = field(self, lex, lex:type_name()) + info.label = label + return info, map_entry + end + + local toplevel = {} do + + function toplevel:package(lex, info) + local package = lex:full_ident 'package name' + lex:line_end() + info.package = package + self.prefix = "."..package.."." + return self + end + + function toplevel:import(lex, info) + local mode = lex:ident('"weak" or "public"', 'opt') or "public" + if mode ~= 'weak' and mode ~= 'public' then + return lex:error '"weak or "public" expected' + end + local name = lex:quote() + lex:line_end() + local result = self:parsefile(name) + if self.on_import then + self.on_import(result) + end + local dep = default(info, 'dependency') + local index = #dep + dep[index+1] = name + if mode == "public" then + local it = default(info, 'public_dependency') + insert_tab(it, index) + else + local it = default(info, 'weak_dependency') + insert_tab(it, index) + end + end + + local msg_body = {} do + + function msg_body:message(lex, info) + local nested_type = default(info, 'nested_type') + insert_tab(nested_type, toplevel.message(self, lex)) + return self + end + + function msg_body:enum(lex, info) + local nested_type = default(info, 'enum_type') + insert_tab(nested_type, toplevel.enum(self, lex)) + return self + end + + function msg_body:extend(lex, info) + local extension = default(info, 'extension') + local nested_type = default(info, 'nested_type') + local ft, mt = toplevel.extend(self, lex, {}) + for _, v in ipairs(ft) do + insert_tab(extension, v) + end + for _, v in ipairs(mt) do + insert_tab(nested_type, v) + end + return self + end + + function msg_body:extensions(lex, info) + local rt = default(info, 'extension_range') + repeat + local start = lex:integer "field number range" + local stop = math.floor(2^29) + lex:keyword 'to' + if not lex:keyword('max', 'opt') then + stop = lex:integer "field number range end or 'max'" + end + insert_tab(rt, { start = start, ['end'] = stop }) + until not lex:test ',' + lex:line_end() + return self + end + + function msg_body:reserved(lex, info) + lex:whitespace() + if not lex '^%d' then + local rt = default(info, 'reserved_name') + repeat + insert_tab(rt, (lex:quote())) + until not lex:test ',' + else + local rt = default(info, 'reserved_range') + local first = true + repeat + local start = lex:integer(first and 'field name or number range' + or 'field number range') + if lex:keyword('to', 'opt') then + local stop = lex:integer 'field number range end' + insert_tab(rt, { start = start, ['end'] = stop }) + else + insert_tab(rt, { start = start, ['end'] = start }) + end + first = false + until not lex:test ',' + end + lex:line_end() + return self + end + + function msg_body:oneof(lex, info) + local fs = default(info, "field") + local ts = default(info, "nested_type") + local ot = default(info, "oneof_decl") + local index = #ot + 1 + local oneof = { name = lex:ident() } + lex:expected "{" + while not lex:test "}" do + local ident = lex:type_name() + if ident == "option" then + toplevel.option(self, lex, oneof) + else + local f, t = field(self, lex, ident, "no_label") + self.locmap[f] = lex.pos + if t then insert_tab(ts, t) end + f.oneof_index = index - 1 + insert_tab(fs, f) + end + lex:line_end 'opt' + end + ot[index] = oneof + end + + function msg_body:option(lex, info) + toplevel.option(self, lex, default(info, 'options')) + end + + end + + function toplevel:message(lex, info) + local name = lex:ident 'message name' + local typ = { name = name } + register_type(self, lex, name, types.message) + local prefix = self.prefix + self.prefix = prefix..name.."." + lex:expected "{" + while not lex:test "}" do + local ident, pos = lex:type_name() + local body_parser = msg_body[ident] + if body_parser then + body_parser(self, lex, typ) + else + local fs = default(typ, 'field') + local f, t = label_field(self, lex, ident) + self.locmap[f] = pos + insert_tab(fs, f) + if t then + local ts = default(typ, 'nested_type') + insert_tab(ts, t) + end + end + lex:line_end 'opt' + end + lex:line_end 'opt' + if info then + info = default(info, 'message_type') + insert_tab(info, typ) + end + self.prefix = prefix + return typ + end + + function toplevel:enum(lex, info) + local name = lex:ident 'enum name' + local enum = { name = name } + register_type(self, lex, name, types.enum) + lex:expected "{" + while not lex:test "}" do + local ident = lex:ident 'enum constant name' + if ident == 'option' then + toplevel.option(self, lex, default(enum, 'options')) + else + local values = default(enum, 'value') + local number = lex:expected '=' :integer() + lex:line_end() + insert_tab(values, { + name = ident, + number = number, + options = inline_option(lex) + }) + end + lex:line_end 'opt' + end + lex:line_end 'opt' + if info then + info = default(info, 'enum_type') + insert_tab(info, enum) + end + return enum + end + + function toplevel:option(lex, info) + local ident = lex:option_name() + lex:expected "=" + local value = lex:constant() + lex:line_end() + local options = info and default(info, 'options') or {} + options[ident] = value + return options, self + end + + function toplevel:extend(lex, info) + local name = lex:type_name() + local ft = info and default(info, 'extension') or {} + local mt = info and default(info, 'message_type') or {} + lex:expected "{" + while not lex:test "}" do + local ident, pos = lex:type_name() + local f, t = label_field(self, lex, ident) + self.locmap[f] = pos + f.extendee = name + insert_tab(ft, f) + insert_tab(mt, t) + lex:line_end 'opt' + end + return ft, mt + end + + local svr_body = {} do + + function svr_body:rpc(lex, info) + local name, pos = lex:ident "rpc name" + local rpc = { name = name } + self.locmap[rpc] = pos + local _, tn + lex:expected "%(" + rpc.client_streaming = lex:keyword("stream", "opt") + _, tn = type_info(lex, lex:type_name()) + if not tn then return lex:error "rpc input type must by message" end + rpc.input_type = tn + lex:expected "%)" :expected "returns" :expected "%(" + rpc.server_streaming = lex:keyword("stream", "opt") + _, tn = type_info(lex, lex:type_name()) + if not tn then return lex:error "rpc output type must by message" end + rpc.output_type = tn + lex:expected "%)" + if lex:test "{" then + while not lex:test "}" do + lex:line_end "opt" + lex:keyword "option" + toplevel.option(self, lex, default(rpc, 'options')) + end + end + lex:line_end "opt" + local t = default(info, "method") + insert_tab(t, rpc) + end + + function svr_body:option(lex, info) + toplevel.option(self, lex, default(info, 'options')) -- TODO: should be deeper in the info? + end + + function svr_body.stream(_, lex) + lex:error "stream not implement yet" + end + + end + + function toplevel:service(lex, info) + local name = lex:ident 'service name' + local svr = { name = name } + lex:expected "{" + while not lex:test "}" do + local ident = lex:type_name() + local body_parser = svr_body[ident] + if body_parser then + body_parser(self, lex, svr) + else + return lex:error "expected 'rpc' or 'option' in service body" + end + lex:line_end 'opt' + end + lex:line_end 'opt' + if info then + info = default(info, 'service') + insert_tab(info, svr) + end + return svr + end + + end + + local function make_context(self, lex) + local ctx = { + syntax = "proto2"; + locmap = {}; + prefix = "."; + lex = lex; + parser = self; + } + ctx.loaded = self.loaded + ctx.typemap = self.typemap + ctx.paths = self.paths + + function ctx.import_fallback(import_name) + if self.unknown_import == true then + return true + elseif type(self.unknown_import) == 'string' then + return import_name:match(self.unknown_import) and true or nil + elseif self.unknown_import then + return self:unknown_import(import_name) + end + end + + function ctx.type_fallback(type_name) + if self.unknown_type == true then + return true + elseif type(self.unknown_type) == 'string' then + return type_name:match(self.unknown_type) and true + elseif self.unknown_type then + return self:unknown_type(type_name) + end + end + + function ctx.on_import(info) + if self.on_import then + return self.on_import(info) + end + end + + return setmetatable(ctx, Parser) + end + + function Parser:parse(src, name) + local loaded = self.loaded[name] + if loaded then + if loaded == true then + error("loop loaded: "..name) + end + return loaded + end + + name = name or "" + self.loaded[name] = true + local lex = Lexer.new(name, src) + local ctx = make_context(self, lex) + local info = { name = lex.name, syntax = ctx.syntax } + + local syntax = lex:keyword('syntax', 'opt') + if syntax then + info.syntax = lex:expected '=' :quote() + ctx.syntax = info.syntax + lex:line_end() + end + + while not lex:eof() do + local ident = lex:ident() + local top_parser = toplevel[ident] + if top_parser then + top_parser(ctx, lex, info) + else + lex:error("unknown keyword '"..ident.."'") + end + lex:line_end "opt" + end + self.loaded[name] = name ~= "" and info or nil + return ctx:resolve(lex, info) + end + + -- resolver + + local function empty() end + + local function iter(t, k) + local v = t[k] + if v then return ipairs(v) end + return empty + end + + local function check_dup(self, lex, typ, map, k, v) + local old = map[v[k]] + if old then + local ln, co = lex:pos2loc(self.locmap[old]) + lex:error("%s '%s' exists, previous at %d:%d", + typ, v[k], ln, co) + end + map[v[k]] = v + end + + local function check_type(self, lex, tname) + if tname:match "^%." then + local t = self.typemap[tname] + if not t then + return lex:error("unknown type '%s'", tname) + end + return t, tname + end + local prefix = self.prefix + for i = #prefix+1, 1, -1 do + local op = prefix[i] + prefix[i] = tname + local tn = table.concat(prefix, ".", 1, i) + prefix[i] = op + local t = self.typemap[tn] + if t then return t, tn end + end + local tn, t + if self.type_fallback then + tn, t = self.type_fallback(tname) + end + if tn then + t = types[t or "message"] + if tn == true then tn = "."..tname end + return t, tn + end + return lex:error("unknown type '%s'", tname) + end + + local function check_field(self, lex, info) + if info.extendee then + local t, tn = check_type(self, lex, info.extendee) + if t ~= types.message then + lex:error("message type expected in extension") + end + info.extendee = tn + end + if info.type_name then + local t, tn = check_type(self, lex, info.type_name) + info.type = t + info.type_name = tn + end + end + + local function check_enum(self, lex, info) + local names, numbers = {}, {} + for _, v in iter(info, 'value') do + lex.pos = self.locmap[v] + check_dup(self, lex, 'enum name', names, 'name', v) + if not (info.options + and info.options.options + and info.options.options.allow_alias) then + check_dup(self, lex, 'enum number', numbers, 'number', v) + end + end + end + + local function check_message(self, lex, info) + insert_tab(self.prefix, info.name) + local names, numbers = {}, {} + for _, v in iter(info, 'field') do + lex.pos = assert(self.locmap[v]) + check_dup(self, lex, 'field name', names, 'name', v) + check_dup(self, lex, 'field number', numbers, 'number', v) + check_field(self, lex, v) + end + for _, v in iter(info, 'nested_type') do + check_message(self, lex, v) + end + for _, v in iter(info, 'extension') do + lex.pos = assert(self.locmap[v]) + check_field(self, lex, v) + end + self.prefix[#self.prefix] = nil + end + + local function check_service(self, lex, info) + local names = {} + for _, v in iter(info, 'method') do + lex.pos = self.locmap[v] + check_dup(self, lex, 'rpc name', names, 'name', v) + local t, tn = check_type(self, lex, v.input_type) + v.input_type = tn + if t ~= types.message then + lex:error "message type expected in parameter" + end + t, tn = check_type(self, lex, v.output_type) + v.output_type = tn + if t ~= types.message then + lex:error "message type expected in return" + end + end + end + + function Parser:resolve(lex, info) + self.prefix = { "", info.package } + for _, v in iter(info, 'message_type') do + check_message(self, lex, v) + end + for _, v in iter(info, 'enum_type') do + check_enum(self, lex, v) + end + for _, v in iter(info, 'service') do + check_service(self, lex, v) + end + for _, v in iter(info, 'extension') do + lex.pos = assert(self.locmap[v]) + check_field(self, lex, v) + end + self.prefix = nil + return info + end + +end + +local has_pb, pb = pcall(require, "pb") do + if has_pb then + local descriptor_pb = + "\10\249#\10\16descriptor.proto\18\15google.protobuf\"G\10\17FileDescript".. + "orSet\0182\10\4file\24\1 \3(\0112$.google.protobuf.FileDescriptorProto\"".. + "\219\3\10\19FileDescriptorProto\18\12\10\4name\24\1 \1(\9\18\15\10\7pack".. + "age\24\2 \1(\9\18\18\10\10dependency\24\3 \3(\9\18\25\10\17public_depend".. + "ency\24\10 \3(\5\18\23\10\15weak_dependency\24\11 \3(\5\0186\10\12messag".. + "e_type\24\4 \3(\0112 .google.protobuf.DescriptorProto\0187\10\9enum_type".. + "\24\5 \3(\0112$.google.protobuf.EnumDescriptorProto\0188\10\7service\24".. + "\6 \3(\0112'.google.protobuf.ServiceDescriptorProto\0188\10\9extension".. + "\24\7 \3(\0112%.google.protobuf.FieldDescriptorProto\18-\10\7options\24".. + "\8 \1(\0112\28.google.protobuf.FileOptions\0189\10\16source_code_info\24".. + "\9 \1(\0112\31.google.protobuf.SourceCodeInfo\18\14\10\6syntax\24\12 \1(".. + "\9\"\228\3\10\15DescriptorProto\18\12\10\4name\24\1 \1(\9\0184\10\5field".. + "\24\2 \3(\0112%.google.protobuf.FieldDescriptorProto\0188\10\9extension".. + "\24\6 \3(\0112%.google.protobuf.FieldDescriptorProto\0185\10\11nested_ty".. + "pe\24\3 \3(\0112 .google.protobuf.DescriptorProto\0187\10\9enum_type\24".. + "\4 \3(\0112$.google.protobuf.EnumDescriptorProto\18H\10\15extension_rang".. + "e\24\5 \3(\0112/.google.protobuf.DescriptorProto.ExtensionRange\0189\10".. + "\10oneof_decl\24\8 \3(\0112%.google.protobuf.OneofDescriptorProto\0180".. + "\10\7options\24\7 \1(\0112\31.google.protobuf.MessageOptions\26,\10\14Ex".. + "tensionRange\18\13\10\5start\24\1 \1(\5\18\11\10\3end\24\2 \1(\5\"\169\5".. + "\10\20FieldDescriptorProto\18\12\10\4name\24\1 \1(\9\18\14\10\6number\24".. + "\3 \1(\5\18:\10\5label\24\4 \1(\0142+.google.protobuf.FieldDescriptorPro".. + "to.Label\0188\10\4type\24\5 \1(\0142*.google.protobuf.FieldDescriptorPro".. + "to.Type\18\17\10\9type_name\24\6 \1(\9\18\16\10\8extendee\24\2 \1(\9\18".. + "\21\10\13default_value\24\7 \1(\9\18\19\10\11oneof_index\24\9 \1(\5\18.".. + "\10\7options\24\8 \1(\0112\29.google.protobuf.FieldOptions\"\182\2\10\4T".. + "ype\18\15\10\11TYPE_DOUBLE\16\1\18\14\10\10TYPE_FLOAT\16\2\18\14\10\10TY".. + "PE_INT64\16\3\18\15\10\11TYPE_UINT64\16\4\18\14\10\10TYPE_INT32\16\5\18".. + "\16\10\12TYPE_FIXED64\16\6\18\16\10\12TYPE_FIXED32\16\7\18\13\10\9TYPE_B".. + "OOL\16\8\18\15\10\11TYPE_STRING\16\9\18\14\10\10TYPE_GROUP\16\10\18\16".. + "\10\12TYPE_MESSAGE\16\11\18\14\10\10TYPE_BYTES\16\12\18\15\10\11TYPE_UIN".. + "T32\16\13\18\13\10\9TYPE_ENUM\16\14\18\17\10\13TYPE_SFIXED32\16\15\18\17".. + "\10\13TYPE_SFIXED64\16\16\18\15\10\11TYPE_SINT32\16\17\18\15\10\11TYPE_S".. + "INT64\16\18\"C\10\5Label\18\18\10\14LABEL_OPTIONAL\16\1\18\18\10\14LABEL".. + "_REQUIRED\16\2\18\18\10\14LABEL_REPEATED\16\3\"$\10\20OneofDescriptorPro".. + "to\18\12\10\4name\24\1 \1(\9\"\140\1\10\19EnumDescriptorProto\18\12\10\4".. + "name\24\1 \1(\9\0188\10\5value\24\2 \3(\0112).google.protobuf.EnumValueD".. + "escriptorProto\18-\10\7options\24\3 \1(\0112\28.google.protobuf.EnumOpti".. + "ons\"l\10\24EnumValueDescriptorProto\18\12\10\4name\24\1 \1(\9\18\14\10".. + "\6number\24\2 \1(\5\0182\10\7options\24\3 \1(\0112!.google.protobuf.Enum".. + "ValueOptions\"\144\1\10\22ServiceDescriptorProto\18\12\10\4name\24\1 \1(".. + "\9\0186\10\6method\24\2 \3(\0112&.google.protobuf.MethodDescriptorProto".. + "\0180\10\7options\24\3 \1(\0112\31.google.protobuf.ServiceOptions\"\193".. + "\1\10\21MethodDescriptorProto\18\12\10\4name\24\1 \1(\9\18\18\10\10input".. + "_type\24\2 \1(\9\18\19\10\11output_type\24\3 \1(\9\18/\10\7options\24\4 ".. + "\1(\0112\30.google.protobuf.MethodOptions\18\31\10\16client_streaming\24".. + "\5 \1(\8:\5false\18\31\10\16server_streaming\24\6 \1(\8:\5false\"\231\4".. + "\10\11FileOptions\18\20\10\12java_package\24\1 \1(\9\18\28\10\20java_out".. + "er_classname\24\8 \1(\9\18\"\10\19java_multiple_files\24\10 \1(\8:\5fals".. + "e\18,\10\29java_generate_equals_and_hash\24\20 \1(\8:\5false\18%\10\22ja".. + "va_string_check_utf8\24\27 \1(\8:\5false\18F\10\12optimize_for\24\9 \1(".. + "\0142).google.protobuf.FileOptions.OptimizeMode:\5SPEED\18\18\10\10go_pa".. + "ckage\24\11 \1(\9\18\"\10\19cc_generic_services\24\16 \1(\8:\5false\18$".. + "\10\21java_generic_services\24\17 \1(\8:\5false\18\"\10\19py_generic_ser".. + "vices\24\18 \1(\8:\5false\18\25\10\10deprecated\24\23 \1(\8:\5false\18".. + "\31\10\16cc_enable_arenas\24\31 \1(\8:\5false\18\25\10\17objc_class_pref".. + "ix\24$ \1(\9\18C\10\20uninterpreted_option\24\231\7 \3(\0112$.google.pro".. + "tobuf.UninterpretedOption\":\10\12OptimizeMode\18\9\10\5SPEED\16\1\18\13".. + "\10\9CODE_SIZE\16\2\18\16\10\12LITE_RUNTIME\16\3*\9\8\232\7\16\128\128".. + "\128\128\2\"\230\1\10\14MessageOptions\18&\10\23message_set_wire_format".. + "\24\1 \1(\8:\5false\18.\10\31no_standard_descriptor_accessor\24\2 \1(\8:".. + "\5false\18\25\10\10deprecated\24\3 \1(\8:\5false\18\17\10\9map_entry\24".. + "\7 \1(\8\18C\10\20uninterpreted_option\24\231\7 \3(\0112$.google.protobu".. + "f.UninterpretedOption*\9\8\232\7\16\128\128\128\128\2\"\160\2\10\12Field".. + "Options\18:\10\5ctype\24\1 \1(\0142#.google.protobuf.FieldOptions.CType:".. + "\6STRING\18\14\10\6packed\24\2 \1(\8\18\19\10\4lazy\24\5 \1(\8:\5false".. + "\18\25\10\10deprecated\24\3 \1(\8:\5false\18\19\10\4weak\24\10 \1(\8:\5f".. + "alse\18C\10\20uninterpreted_option\24\231\7 \3(\0112$.google.protobuf.Un".. + "interpretedOption\"/\10\5CType\18\10\10\6STRING\16\0\18\8\10\4CORD\16\1".. + "\18\16\10\12STRING_PIECE\16\2*\9\8\232\7\16\128\128\128\128\2\"\141\1\10".. + "\11EnumOptions\18\19\10\11allow_alias\24\2 \1(\8\18\25\10\10deprecated".. + "\24\3 \1(\8:\5false\18C\10\20uninterpreted_option\24\231\7 \3(\0112$.goo".. + "gle.protobuf.UninterpretedOption*\9\8\232\7\16\128\128\128\128\2\"}\10".. + "\16EnumValueOptions\18\25\10\10deprecated\24\1 \1(\8:\5false\18C\10\20un".. + "interpreted_option\24\231\7 \3(\0112$.google.protobuf.UninterpretedOptio".. + "n*\9\8\232\7\16\128\128\128\128\2\"{\10\14ServiceOptions\18\25\10\10depr".. + "ecated\24! \1(\8:\5false\18C\10\20uninterpreted_option\24\231\7 \3(\0112".. + "$.google.protobuf.UninterpretedOption*\9\8\232\7\16\128\128\128\128\2\"z".. + "\10\13MethodOptions\18\25\10\10deprecated\24! \1(\8:\5false\18C\10\20uni".. + "nterpreted_option\24\231\7 \3(\0112$.google.protobuf.UninterpretedOption".. + "*\9\8\232\7\16\128\128\128\128\2\"\158\2\10\19UninterpretedOption\18;\10".. + "\4name\24\2 \3(\0112-.google.protobuf.UninterpretedOption.NamePart\18\24".. + "\10\16identifier_value\24\3 \1(\9\18\26\10\18positive_int_value\24\4 \1(".. + "\4\18\26\10\18negative_int_value\24\5 \1(\3\18\20\10\12double_value\24\6".. + "\32\1(\1\18\20\10\12string_value\24\7 \1(\12\18\23\10\15aggregate_value".. + "\24\8 \1(\9\0263\10\8NamePart\18\17\10\9name_part\24\1 \2(\9\18\20\10\12".. + "is_extension\24\2 \2(\8\"\213\1\10\14SourceCodeInfo\18:\10\8location\24".. + "\1 \3(\0112(.google.protobuf.SourceCodeInfo.Location\26\134\1\10\8Locati".. + "on\18\16\10\4path\24\1 \3(\5B\2\16\1\18\16\10\4span\24\2 \3(\5B\2\16\1".. + "\18\24\10\16leading_comments\24\3 \1(\9\18\25\10\17trailing_comments\24".. + "\4 \1(\9\18!\10\25leading_detached_comments\24\6 \3(\9B)\10\19com.google".. + ".protobufB\16DescriptorProtosH\1" + + function Parser.reload() + assert(pb.load(descriptor_pb), "load descriptor msg failed") + end + + local function do_compile(self, f, ...) + if self.include_imports then + local old = self.on_import + local infos = {} + function self.on_import(info) + insert_tab(infos, info) + end + local r = f(...) + insert_tab(infos, r) + self.on_import = old + return { file = infos } + end + return { file = { f(...) } } + end + + function Parser:compile(s, name) + local set = do_compile(self, self.parse, self, s, name) + return pb.encode('.google.protobuf.FileDescriptorSet', set) + end + + function Parser:compilefile(fn) + local set = do_compile(self, self.parsefile, self, fn) + return pb.encode('.google.protobuf.FileDescriptorSet', set) + end + + function Parser:load(s, name) + local ret, pos = pb.load(self:compile(s, name)) + if ret then return ret, pos end + error("load failed at offset "..pos) + end + + function Parser:loadfile(fn) + local ret, pos = pb.load(self:compilefile(fn)) + if ret then return ret, pos end + error("load failed at offset "..pos) + end + + Parser.reload() + + end +end + +return Parser \ No newline at end of file diff --git a/lua/app/first/protoc.lua.meta b/lua/app/first/protoc.lua.meta new file mode 100644 index 00000000..feccc76e --- /dev/null +++ b/lua/app/first/protoc.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 90fb9fe36b5edf441b85fd31a7c81f4a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/game.lua b/lua/app/game.lua new file mode 100644 index 00000000..5d716651 --- /dev/null +++ b/lua/app/game.lua @@ -0,0 +1,468 @@ +local Game = { + frameCount = 1, + loadedList = {}, + pauseStatus = false, + hasFocus = true +} + +EDITOR_MODE = CS.BF.GameConst.EDITOR_MODE +DEBUG = CS.BF.GameConst.DEBUG +USE_AB = CS.BF.GameConst.USE_AB +IS_PUBLISH = CS.BF.BFPlatform.IsPublishChannel() +NOT_PUBLISH = not IS_PUBLISH + +if EDITOR_MODE and CS.BF.BFMain.Instance.LuaMgr.DevExist then + -- 调试等一些特殊代码可以写到lua_debug.lua文件里面,lua_debug已添加忽略,有需要的可以在根目录创建,和main.lua同级 + local devLuaPath = CS.UnityEngine.Application.dataPath .. "/Developer/lua/lua_debug.lua" + if CS.System.IO.File.Exists(devLuaPath) then + require("lua_debug") + end +end + +local Input = CS.UnityEngine.Input +local KeyCode = CS.UnityEngine.KeyCode + +function Game:recordloadedList() + self.loadedList = {} + for name, v in pairs(package.loaded) do + self.loadedList[name] = 1 + end +end + +function Game:initBase() + self:recordloadedList() + require "app/bf/common/functions" + require "app/bf/init" + require "app/global/global_unity_func" + CS.BF.BFMain.Instance.LuaMgr:GetGlobalLuaFunc() + BF.exports.Logger = require "app/common/logger" + BF.exports.LocalData = require "app/common/local_data" + BF.exports.BIReport = require "app/common/bi_report" + BF.exports.SchedulerManager = require "app/common/scheduler_manager" + BF.exports.ResourceManager = require "app/common/resource_manager" + BF.exports.AudioManager = require "app/common/audio_manager" + BF.exports.RenderManager = require "app/common/render_manager" + AudioManager:init() + + Logger.log("initBase") +end + +function Game:initOther() + require "app/bf/unity/unity" + + BF.exports.json = require "rapidjson" + + BF.exports.GConst = require "app/global/global_const" + BF.exports.GFunc = require "app/global/global_func" + + BF.exports.LuaComponent = require "app/bf/component/lua_component" + BF.exports.BaseCell = require "app/ui/common/cell/base_cell" + BF.exports.VersionCompatible = require "app/common/version_compatible" + BF.exports.Platform = require "app/common/platform" + BF.exports.ConfigManager = require "app/common/config_manager" + BF.exports.EventManager = require "app/common/event_manager" + BF.exports.CameraManager = require "app/common/camera_manager" + BF.exports.SceneManager = require "app/scene/scene_manager" + BF.exports.BaseScene = require "app/scene/base_scene" + BF.exports.UIManager = require "app/ui/ui_manager" + BF.exports.BaseUI = require "app/ui/base_ui" + BF.exports.BaseSubUI = require "app/ui/base_sub_ui" + BF.exports.UIPrefabManager = require "app/common/uiprefab_manager" + BF.exports.TextureManager = require "app/common/texture_manager" + BF.exports.ModelManager = require "app/common/model_manager" + BF.exports.EffectManager = require "app/common/effect_manager" + BF.exports.SpineManager = require "app/common/spine_manager" + BF.exports.WebRequestManager = require "app/common/webrequest_manager" + BF.exports.NetManager = require "app/net/net_manager" + BF.exports.I18N = require "app/common/i18n_manager" + BF.exports.CellManager = require "app/common/cell_manager" + BF.exports.Time = require "app/common/time" + BF.exports.BaseData = require "app/userdata/base_data" + BF.exports.BaseObject = require "app/bf/unity/base_object" + BF.exports.ServerPushManager = require "app/common/server_push_manager" + BF.exports.SafeAreaManager = require "app/common/safe_area_manager" + BF.exports.BaseModule = require "app/module/base_module" + BF.exports.ModuleManager = require "app/common/module_manager" + BF.exports.DataManager = require "app/common/data_manager" + BF.exports.DOTweenManager = require "app/common/dotween_manager" + BF.exports.FSMManager = require "app/common/state_machine_manager" + BF.exports.ProtoMsgType = require "app/proto/proto_msg_type" + BF.exports.SDKManager = require "app/common/sdk_manager" + BF.exports.DeviceHelper = require "app/common/device_helper" + BF.exports.PayManager = require "app/common/pay_manager" + BF.exports.BigNumOpt = require "app/tools/big_num_opt" + + CameraManager:init() + WebRequestManager:init() + NetManager:init() + I18N:init() + DataManager:init() + DOTweenManager:init() + ModuleManager:init() + + -- 例如EmmyLua等IDE或者插件无法识别BF.exports.xx的全局变量赋值语法,这里专门处理一下 + self:specialForIdea() +end + +function Game:specialForIdea() + if EDITOR_MODE then + -- xlua专用的全局变量 + CS = CS + typeof = typeof + + json = json or require "rapidjson" + + Logger = Logger or require "app/common/logger" + LocalData = LocalData or require "app/common/local_data" + BIReport = BIReport or require "app/common/bi_report" + SchedulerManager = SchedulerManager or require "app/common/scheduler_manager" + ResourceManager = ResourceManager or require "app/common/resource_manager" + AudioManager = AudioManager or require "app/common/audio_manager" + RenderManager = RenderManager or require "app/common/render_manager" + + GConst = GConst or require "app/global/global_const" + GFunc = GFunc or require "app/global/global_func" + + LuaComponent = LuaComponent or require "app/bf/component/lua_component" + BaseCell = BaseCell or require "app/ui/common/cell/base_cell" + VersionCompatible = VersionCompatible or require "app/common/version_compatible" + Platform = Platform or require "app/common/platform" + ConfigManager = ConfigManager or require "app/common/config_manager" + EventManager = EventManager or require "app/common/event_manager" + CameraManager = CameraManager or require "app/common/camera_manager" + SceneManager = SceneManager or require "app/scene/scene_manager" + BaseScene = BaseScene or require "app/scene/base_scene" + UIManager = UIManager or require "app/ui/ui_manager" + BaseUI = BaseUI or require "app/ui/base_ui" + BaseSubUI = BaseSubUI or require "app/ui/base_sub_ui" + UIPrefabManager = UIPrefabManager or require "app/common/uiprefab_manager" + TextureManager = TextureManager or require "app/common/texture_manager" + ModelManager = ModelManager or require "app/common/model_manager" + EffectManager = EffectManager or require "app/common/effect_manager" + SpineManager = SpineManager or require "app/common/spine_manager" + WebRequestManager = WebRequestManager or require "app/common/webrequest_manager" + NetManager = NetManager or require "app/net/net_manager" + I18N = I18N or require "app/common/i18n_manager" + CellManager = CellManager or require "app/common/cell_manager" + Time = Time or require "app/common/time" + BaseData = BaseData or require "app/userdata/base_data" + BaseObject = BaseObject or require "app/bf/unity/base_object" + ServerPushManager = ServerPushManager or require "app/module/login/server_push_manager" + SafeAreaManager = SafeAreaManager or require "app/common/safe_area_manager" + BaseModule = BaseModule or require "app/module/base_module" + ModuleManager = ModuleManager or require "app/common/module_manager" + DataManager = DataManager or require "app/common/data_manager" + DOTweenManager = DOTweenManager or require "app/common/dotween_manager" + FSMManager = FSMManager or require "app/common/state_machine_manager" + ProtoMsgType = ProtoMsgType or require "app/proto/proto_msg_type" + SDKManager = SDKManager or require "app/common/sdk_manager" + DeviceHelper = DeviceHelper or require "app/common/device_helper" + PayManager = PayManager or require "app/common/pay_manager" + BigNumOpt = BigNumOpt or require "app/tools/big_num_opt" + end +end + +function Game:disableGlobalVariable() + if self.g_meta_table then + setmetatable(_G, self.g_meta_table) + elseif BF and BF.disableGlobal then + BF.disableGlobal() + else + setmetatable(_G, { + __newindex = function(_, name, value) + error(string.format("USE \" BF.exports.%s = value \" INSTEAD OF SET GLOBAL VARIABLE", name), 0) + end + }) + end +end + +function Game:enableGlobalVariable() + self.g_meta_table = getmetatable(_G) + setmetatable(_G, nil) +end + +function Game:start() + local time = os.clock() + + RenderManager:initRender(function() + Logger.log("===========start game================") + self:initOther() + + -- 先初始化UIManager + UIManager:init(function() + Logger.log("init game use time " .. (os.clock() - time)) + SDKManager:init() + -- 然后等字体加载完成后再显示界面 + I18N:onFontLoaded(function() + SceneManager:enterMainScene() + end) + end) + end) +end + +function Game:showLoginUI() + UIManager:hideRollToast(true) + ModuleManager.LoginManager:showLoginUI() +end + +-- 测试地址的连接情况 +function Game:httpRequestHostAndReport(ipOrHost) + local startTime = CS.UnityEngine.Time.time + local httpRequest = CS.BestHTTP.HTTPRequest(CS.System.Uri(ipOrHost), CS.BestHTTP.HTTPMethods.Get, function(req, httpResponse) + if httpResponse and httpResponse.IsSuccess == true then + BIReport:postPingServer(ipOrHost, math.floor((CS.UnityEngine.Time.time - startTime)*1000), "Success") + else + BIReport:postPingServer(ipOrHost, math.floor((CS.UnityEngine.Time.time - startTime)*1000), "Failed") + end + end) + httpRequest:Send() +end + +function Game:handleInputKey() + if not self.hasFocus then + return + end + if self.pauseStatus then + return + end + if Input.GetKeyDown(KeyCode.Escape) then + if UIManager then + UIManager:onPressAndroidBackspace() + end + end + if Input.anyKey then -- 待确认 + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.GET_ANY_KEY_DOWN) + end +end + +function Game:clear() + SchedulerManager:clear() + EventManager:clear() + AudioManager:clear() + ResourceManager:clear() +end + +function Game:onDestroy() +end + +function Game:update() + self.frameCount = self.frameCount + 1 + if SchedulerManager then + SchedulerManager:update() + end + if FSMManager then + FSMManager:tick() + end + self:handleInputKey() +end + +function Game:onApplicationFocus(hasFocus) + if hasFocus == self.hasFocus then + return + end + self.hasFocus = hasFocus +end + +function Game:onApplicationPause(pauseStatus) + if pauseStatus == self.pauseStatus then + return + end + self.pauseStatus = pauseStatus +end + +function Game:onApplicationQuit() + -- 上报游戏退出 + if BIReport then + BIReport:postGameExit() + end +end + +function Game:onLogMessageReceived(logString, stackTrace) + -- 同一帧内的多个crash只处理第一个 + if self.currCrashFrame == self.frameCount then + return + end + self.currCrashFrame = self.frameCount + if self.lastLogString == logString and self.lastStackTrace == stackTrace then + return + end + self.lastLogString = logString + self.lastStackTrace = stackTrace + if BIReport then + BIReport:postLuaCrash(logString, stackTrace) + end +end + +function Game:garbageCollect(callback) + ResourceManager:unloadAllDelayAssets() + CS.BF.BFMain.Instance.LuaMgr:LuaEnvFullGC(30000) + collectgarbage("collect") + local asyncOperation = CS.UnityEngine.Resources.UnloadUnusedAssets() + local function onUnloadComplete(opration) + asyncOperation:completed("-", onUnloadComplete) + if callback then + callback() + end + end + asyncOperation:completed("+", onUnloadComplete) +end + +function Game:destroyAll() + self:destroyLua() + self:destroyRes() + self:destroyAB() +end + +function Game:destroyLua() + for name, v in pairs(package.loaded) do + if not self.loadedList[name] then + package.loaded[name] = nil + end + end + package.loaded["app/game"] = nil + package.loaded["app/first/first"] = nil + package.loaded["app/first/first_text"] = nil + CS.BF.BFMain.Instance.LuaMgr:ClearCache() + CS.BF.BFMain.Instance.LuaMgr:Clear() +end + +function Game:destroyRes() + UIManager:destroyUIRoot() + ResourceManager:unloadAllDelayAssets() + ResourceManager:clear() +end + +-- 清理没有被ResourceManager卸载的ab +function Game:destroyAB() + local bundles = CS.UnityEngine.AssetBundle.GetAllLoadedAssetBundles() + if bundles then + local len = bundles.Length + for i = 0, len - 1 do + local bundle = bundles[i] + if bundle then + Logger.log("[game]destroyAB :%s", bundle.name) + if "first/first.ab" ~= bundle.name then + bundle:Unload(false) + end + end + end + end +end + +if NOT_PUBLISH then + Game._releaseOnLogMessageReceived = Game.onLogMessageReceived + function Game:onLogMessageReceived(logString, stackTrace) + self:_releaseOnLogMessageReceived(logString, stackTrace) + if UIManager then + local params = { + desc = logString .. stackTrace + } + ModuleManager.TipsManager:showHelpTips(params) + end + end + + Game._releaseHandleInputKey = Game.handleInputKey + function Game:handleInputKey() + self:_releaseHandleInputKey() + if Input.GetKeyDown(KeyCode.T) then + -- 如果当前正处于输入状态,则不显示响应gm快捷键 + local comps = CS.UnityEngine.GameObject.FindObjectsOfType(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + for i = 0, comps.Length - 1 do + if comps[i].isFocused then + return + end + end + if UIManager and UIManager:getTopUIObj() and UIManager:getTopUIObj():getUIIndex() ~= UIManager.UI_PATH.GM_TOO_UI then + if ModuleManager.DevToolManager then + ModuleManager.DevToolManager:showOrHideDevListUI() + end + end + end + if Input.GetKeyDown(KeyCode.Backspace) and Input.GetKey(KeyCode.RightControl) then + Logger.logHighlight("on press backspace") + if UIManager then + UIManager:onPressAndroidBackspace() + end + end + if Input.GetKeyDown(KeyCode.J) and Input.GetKey(KeyCode.RightControl) then + local desktopDir = CS.System.Environment.GetFolderPath(CS.System.Environment.SpecialFolder.DesktopDirectory) + local path = CS.System.IO.Path.Combine(desktopDir, "bf_screenshot.png") + CS.UnityEngine.ScreenCapture.CaptureScreenshot(path, 1) + Logger.logHighlight("截图保存地址:%s", path) + end + + -- if Input.GetKeyDown(KeyCode.P) then + -- ModuleManager.ChapterManager:showBattleFailUI(nil, true) + -- end + -- if Input.GetKeyDown(KeyCode.G) then + -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.DUNGEON_GOLD, {id = 1, level = 1}, function() + -- UIManager:closeAllUI() + -- ModuleManager.MaincityManager:showMainCityUI() + -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.STAGE) + -- end) + -- end + -- if Input.GetKeyDown(KeyCode.H) then + -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.DUNGEON_GEM, {id = 2, level = 1}, function() + -- UIManager:closeAllUI() + -- ModuleManager.MaincityManager:showMainCityUI() + -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.STAGE) + -- end) + -- end + -- if Input.GetKeyDown(KeyCode.J) then + -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.DUNGEON_MITHRIL, {id = 3, level = 1}, function() + -- UIManager:closeAllUI() + -- ModuleManager.MaincityManager:showMainCityUI() + -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.STAGE) + -- end) + -- end + -- if Input.GetKeyDown(KeyCode.K) then + -- -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.DUNGEON_ARENA, {id = 4, level = 23}, function() + -- -- UIManager:closeAllUI() + -- -- ModuleManager.MaincityManager:showMainCityUI() + -- -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.STAGE) + -- -- end) + + -- local resultParams = { + -- level = 24, + -- score = 600000, + -- lastRank = 1, + -- newRank = 2, + -- rewards = { + -- [1] = { + -- type = 2, + -- equip = { + -- level = 0, + -- id = 10201, + -- count = 1 + -- } + -- }, + -- } + -- } + -- ModuleManager.ArenaManager:showBattleResultUI(resultParams) + -- end + -- if Input.GetKeyDown(KeyCode.K) then + -- DataManager.ArenaData:refreshSelectLegacy() + -- ModuleManager.ArenaManager:showBattleSelectLegacyUI() + -- end + + -- if EDITOR_MODE then + -- if Input.GetKeyDown(KeyCode.N) and Input.GetKey(KeyCode.RightControl) then + -- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.TRAIN_PASS_UP, {toId = 50}) -- 表现事件 + -- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = 0}) + -- end + -- if Input.GetKeyDown(KeyCode.M) and Input.GetKey(KeyCode.RightControl) then + -- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.TRAIN_REBORN) -- 表现事件 + -- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = 0}) + -- end + -- end + end + + Game._releaseOnApplicationFocus = Game.onApplicationFocus + function Game:onApplicationFocus(hasFocus) + if hasFocus ~= self.hasFocus and hasFocus == true then -- 说明从后台返回到游戏里 + end + self:_releaseOnApplicationFocus(hasFocus) + end +end + +return Game diff --git a/lua/app/game.lua.meta b/lua/app/game.lua.meta new file mode 100644 index 00000000..8e15697d --- /dev/null +++ b/lua/app/game.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b086a12d58ee6d2478e07f23066ecbe7 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/global.meta b/lua/app/global.meta new file mode 100644 index 00000000..8c82cef3 --- /dev/null +++ b/lua/app/global.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d01b4ad86dc65914d8cd5f54798794e6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/global/global_const.lua b/lua/app/global/global_const.lua new file mode 100644 index 00000000..dcf222ca --- /dev/null +++ b/lua/app/global/global_const.lua @@ -0,0 +1,694 @@ +local GConst = {} + +local CONST_PATHS = { + ServerDataConst = "app/module/server/server_data_const", + ItemConst = "app/module/item/item_const", + EquipConst = "app/module/equip/equip_const", + BattleConst = "app/module/battle/battle_const", + SevenDayConst = "app/module/activity/seven_day_const", + StageConst = "app/module/stage/stage_const", + MailConst = "app/module/mail/mail_const", + ActivityConst = "app/module/activity/activity_const", + TaskConst = "app/module/task/task_const", + HeroConst = "app/module/hero/hero_const", + MainCityConst = "app/module/maincity/maincity_const", + GameSettingConst = "app/module/game_setting/game_setting_const", + ActEquinoxConst = "app/module/activity/act_equinox_const", + ActCandyConst = "app/module/activity/act_candy_const", + TipsConst = "app/module/tips/tips_const", + TurntableSuperConst = "app/userdata/activity/act_turntable_super_const", + JewelryConst = "app/module/jewelry/jewelry_const", + BlackFridayConst = "app/module/activity/act_black_friday_const", + NewYearConst = "app/module/activity/act_newyear_const", + DragonConst = "app/module/activity/act_dragon_const", + ActNewYearDiaryBookConst = "app/module/activity/act_newyeardiary_book_const", + ActNewYearSpecialConst = "app/module/activity/act_newyear_special_const", + ActValentineDiaryBookConst = "app/module/activity/act_valentine_diary_book_const", + ChapterConst = "app/module/chapter/chapter_const", + MailConst = "app/module/mail/mail_const", + TutorialConst = "app/module/tutorial/tutorial_const", +} + +if EDITOR_MODE then + GConst.ItemConst = require("app/module/item/item_const") +end + +local CONST_METATABLE = { + __index = function(t, k) + local path = CONST_PATHS[k] + if path == nil then + Logger.logError("%s path is not configure in global_const.lua", k) + return + end + local v = require(path) + rawset(t, k, v) + return v + end +} +setmetatable(GConst, CONST_METATABLE) + +GConst.ANDROID_STORE_URL = "https://play.google.com/store/apps/details?id=com.cobby.lonelysurvivor" +GConst.IOS_STORE_URL = "https://itunes.apple.com/app/1637393009" +GConst.SKIP_VERSION = CS.BF.GameConst.SKIP_VERSION +GConst.DESIGN_RESOLUTION_WIDTH = CS.BF.GameConst.DESIGN_RESOLUTION_WIDTH +GConst.DESIGN_RESOLUTION_HEIGHT = CS.BF.GameConst.DESIGN_RESOLUTION_HEIGHT + +GConst.BIG_TEXTURE_WIDTH = CS.BF.GameConst.BIG_TEXTURE_WIDTH +GConst.BIG_TEXTURE_HEIGHT = CS.BF.GameConst.BIG_TEXTURE_HEIGHT + +local width = CS.UnityEngine.Screen.width +local height = CS.UnityEngine.Screen.height +if width / height <= GConst.DESIGN_RESOLUTION_WIDTH / GConst.DESIGN_RESOLUTION_HEIGHT then + height = height * (GConst.DESIGN_RESOLUTION_WIDTH / width) + width = GConst.DESIGN_RESOLUTION_WIDTH +else + width = width * (GConst.DESIGN_RESOLUTION_HEIGHT / height) + height = GConst.DESIGN_RESOLUTION_HEIGHT +end +GConst.UI_SCREEN_WIDTH = width +GConst.UI_SCREEN_HEIGHT = height + +GConst.WAIT_NET_RSP_TIME = 5 -- 与服务器交互的等待回复时间 +GConst.INVALID = -1 +GConst.DEPTH_BUFFER = 24 + +GConst.EMPTY_STRING = "" +GConst.EMPTY_TABLE = {} +setmetatable(GConst.EMPTY_TABLE, { + __newindex = function(_, name, value) + Logger.logError("can't set GConst.EMPTY_TABLE value") + end +}) + +-- c# 组件 +GConst.TYPEOF_UNITY_CLASS = { + OBJECT = typeof(CS.UnityEngine.Object), + GAME_OBJECT = typeof(CS.UnityEngine.GameObject), + CAMERA = typeof(CS.UnityEngine.Camera), + CANVAS = typeof(CS.UnityEngine.Canvas), + CANVAS_GROUP = typeof(CS.UnityEngine.CanvasGroup), + GRAPHIC_RAYCASTER = typeof(CS.UnityEngine.UI.GraphicRaycaster), + TRANSFORM = typeof(CS.UnityEngine.Transform), + RECTTRANSFORM = typeof(CS.UnityEngine.RectTransform), + UI_MASKABLE_GRAPHIC = typeof(CS.UnityEngine.UI.MaskableGraphic), + UI_IMAGE = typeof(CS.UnityEngine.UI.Image), + UI_RAW_IMAGE = typeof(CS.UnityEngine.UI.RawImage), + UI_BUTTON = typeof(CS.UnityEngine.UI.Button), + UI_TEXT = typeof(CS.UnityEngine.UI.Text), + UI_TEXT_MESH_PRO = typeof(CS.TMPro.TextMeshProUGUI), + UI_TEXT_MESH = typeof(CS.TMPro.TextMeshPro), + UI_SLIDER = typeof(CS.UnityEngine.UI.Slider), + UI_INPUT_FIELD = typeof(CS.UnityEngine.UI.InputField), + UI_DROP_DOWN = typeof(CS.UnityEngine.UI.Dropdown), + UI_SCROLL_RECT = typeof(CS.UnityEngine.UI.ScrollRect), + UI_TEXTMESHPRO_DROP_DOWN = typeof(CS.TMPro.TMP_Dropdown), + UI_TOGGLE = typeof(CS.UnityEngine.UI.Toggle), + UI_TMP_INPUT_FIELD = typeof(CS.TMPro.TMP_InputField), + UI_LAYOUT_ELEMENT = typeof(CS.UnityEngine.UI.LayoutElement), + U2D_SPRITE_ATLAS = typeof(CS.UnityEngine.U2D.SpriteAtlas), + SKINNED_MESH_RENDERER = typeof(CS.UnityEngine.SkinnedMeshRenderer), + MESH_RENDERER = typeof(CS.UnityEngine.MeshRenderer), + ANIMATOR = typeof(CS.UnityEngine.Animator), + ANIMATION = typeof(CS.UnityEngine.Animation), + TEXTURE_2D = typeof(CS.UnityEngine.Texture2D), + FONT = typeof(CS.UnityEngine.Font), + TMP_FONT_ASSET = typeof(CS.TMPro.TMP_FontAsset), + SPRITE_RENDERER = typeof(CS.UnityEngine.SpriteRenderer), + LIGHT = typeof(CS.UnityEngine.Light), + RIGIDBODY = typeof(CS.UnityEngine.Rigidbody), + SPHERE_COLLIDER = typeof(CS.UnityEngine.SphereCollider), + + TEXT_ASSET = typeof(CS.UnityEngine.TextAsset), + LINE_RENDERER = typeof(CS.UnityEngine.LineRenderer), + -- spine组件 + SKELETON_GRAPHIC = typeof(CS.Spine.Unity.SkeletonGraphic), + SKELETON_ANIMATION = typeof(CS.Spine.Unity.SkeletonAnimation), + SKELETON_DATA_ASSET = typeof(CS.Spine.Unity.SkeletonDataAsset), + BONE_FOLLOWER = typeof(CS.Spine.Unity.BoneFollower), + -- 自定义组件 + MONKEY_POST = typeof(CS.MonkeyPost), + CLOUD_CONTROL = typeof(CS.CloudControl), + BF_UI_HELPER = typeof(CS.BF.UIHelper), + BF_BASE_SORTING_ORDER_HELPER = typeof(CS.BF.BaseSortingOrderHelper), + BF_PREFAB_HELPER = typeof(CS.BF.PrefabHelper), + BF_ATLAS = typeof(CS.BF.Atlas), + BF_SIMPLE_ATLAS = typeof(CS.BF.SimpleAtlas), + BF_UI_TOUCH_EVENT = typeof(CS.BF.UITouchEvent), + BF_UI_DRAG_EVENT = typeof(CS.BF.UIDragEvent), + BF_NODE_HELPER = typeof(CS.BF.NodeHelper), + BF_CHARACTER_HELPER = typeof(CS.BF.CharacterHelper), + BF_WEAPON_HELPER = typeof(CS.BF.WeaponHelper), + BF_CHARACTER_SPINE_HELPER = typeof(CS.BF.CharacterSpineHelper), + BF_SLIDER = typeof(CS.BF.BFSlider), + BF_EFFECT_HELPER = typeof(CS.BF.EffectHelper), + BF_SCROLL_RECT = typeof(CS.BF.BFScrollRectBase), + BF_UI_COORDINATE_HELPER = typeof(CS.BF.UICoordinateHelper), + BF_SKILL_SECTOR_MESH = typeof(CS.BF.SkillSectorMesh), + BF_TUTORIAL_CLICKAREA = typeof(CS.BF.TutorialClickArea), + BF_CAMERA_HELPER = typeof(CS.BF.CameraHelper), + BF_HORIZONTAL_OR_VERTICAL_LAYOUT = typeof(CS.BF.BFHorizontalOrVerticalLayout), + BF_SCROLL_RECT_CENTER = typeof(CS.BF.ScrollRectCenterController), + BF_SCROLL_RECT_CENTER_CORE = typeof(CS.BF.ScrollRectCenter), + BF_GRAPHIC_FLIP = typeof(CS.BF.BFGraphicFlip), + BF_SCROLL_RECT_BASE_OLD = typeof(CS.BF.ScrollRectBaseOld), + BF_BATTLE_CONTROL_HERO = typeof(CS.BF.BattleControlHero), + BF_BATTLE_CONTROL_MONSTER = typeof(CS.BF.BattleControlMonster), + BF_BATTLE_CONTROL_WARNING = typeof(CS.BF.BattleControlWarning), + BF_UI_ERASER_TEXTURE = typeof(CS.BF.UIEraserTexture), + BF_UNITY_SLIDER = typeof(CS.BF.BFUnitySlider), +} + +-- lua 组件 +GConst.TYPEOF_LUA_CLASS = { + LUA_COMPONENT = "app/bf/component/lua_component", + SCROLL_RECT_BASE = "app/ui/common/scrollrect/scrollrect_base", + SCROLL_RECT_CENTER = "app/ui/common/scrollrect/scrollrect_center", + SCROLL_RECT_OLD = "app/ui/common/scrollrect/scrollrect_old", + BASE_CELL = "app/ui/common/cell/base_cell", + + -- 引导 + TUTORIAL_UI = "app/ui/tutorial/tutorial_ui", + + -- 资源条 + CURRENCY_BAR = "app/ui/currency_bar/currency_bar", + CURRENCY_BAR_CELL = "app/ui/currency_bar/cell/currency_cell", + -- POP_SKIP_BAR = "app/ui/pop_skip_bar/pop_skip_bar", + + -- cell + ITEM_CELL = "app/ui/common/cell/item_cell", + EQUIP_CELL = "app/ui/common/cell/equip_cell", + REWARD_CELL = "app/ui/common/cell/reward_cell", + SKILL_CELL = "app/ui/common/cell/skill_cell", + AVATAR_CELL = "app/ui/common/cell/role_head_cell", + -- JEWELRY_CELL = "app/ui/common/cell/jewelry_cell", + -- REFINE_CELL = "app/ui/common/cell/refine_cell", + -- -- talent + -- TALENT_S_CELL = "app/ui/common/cell/talent_s_cell", + -- TALENT_B_CELL = "app/ui/common/cell/talent_b_cell", + + -- 英雄头像 + HERO_BOOK_CELL = "app/ui/hero/cell/hero_book_cell", + LINE_CELL = "app/ui/common/cell/line_cell", + MASTERY_CELL = "app/ui/common/cell/mastery_cell", +} + +GConst.ATLAS_PATH = { + COMMON = "assets/arts/atlas/ui/common.asset", + MAIN = "assets/arts/atlas/ui/main.asset", + BATTLE = "assets/arts/atlas/ui/battle.asset", + ICON_SKILL = "assets/arts/atlas/icon/skill.asset", + ICON_ITEM = "assets/arts/atlas/icon/item.asset", + ICON_EQUIP = "assets/arts/atlas/icon/equip.asset", + ICON_RUNE = "assets/arts/atlas/icon/rune.asset", + ICON_LEGACY = "assets/arts/atlas/icon/legacy.asset", + ICON_AVATAR = "assets/arts/atlas/icon/avatar.asset", + UI_HERO = "assets/arts/atlas/ui/hero.asset", + UI_RECHARGE = "assets/arts/atlas/ui/recharge.asset", + UI_SETTING = "assets/arts/atlas/ui/setting.asset", + UI_LOGIN = "assets/arts/atlas/ui/login.asset", + UI_ACTIVITY = "assets/arts/atlas/ui/activity.asset", + UI_DUNGEON = "assets/arts/atlas/ui/dungeon.asset", + UI_ARENA = "assets/arts/atlas/ui/arena.asset", + UI_MINE = "assets/arts/atlas/ui/mine.asset", + UI_SIGN = "assets/arts/atlas/ui/sign.asset", + UI_MAIL = "assets/arts/atlas/ui/mail.asset", +} + +GConst.SPINE_ASSET_PATH = { + P0001 = "assets/arts/spines/characters/p0001/p0001_skeletondata.asset", + P0002 = "assets/arts/spines/characters/p0002/p0002_skeletondata.asset", + P0003 = "assets/arts/spines/characters/p0003/p0003_skeletondata.asset", + P0004 = "assets/arts/spines/characters/p0004/p0004_skeletondata.asset", +} + +GConst.TOUCH_EVENT = { + DOWN = 1, + DRAG = 2, + UP_INSIDE = 3, + UP_OUTSIDE = 4, + DRAG_CANCEL_UP = 5, + CANCEL = 6, + DRAGUP = 7, -- CellDrag组件专用触摸事件 + DRAGDOWN = 8, -- CellDrag组件专用触摸事件 + DRAGLEFT = 9, -- CellDrag组件专用触摸事件 + DRAGRIGHT = 10, -- CellDrag组件专用触摸事件 +} + +GConst.TOUCH_TYPE = { + UNKNOWN = 0, + DEFAULT = 1, + CLICK = 2, + DRAG_CANEL_UP = 5, + CANCEL = 6, +} + +GConst.GAME_OBJECT_TYPE = { + DEFAULT = 0, + UI_OBJECT = 1, + EFFECT_OBJECT = 2, + MODEL_OBJECT = 3, + CHARACTER_OBJECT = 4, + TIMELINE_OBJECT = 5, + SPINE_UI_OBJECT = 6, + SPINE_MESH_OBJECT = 7, + MESSAGEBOX_RECONNECT = 8 +} + +GConst.OBJECT_CUSTOM_DATA = { + BATTLE_RECYCLE_TIME = 1 +} + +GConst.CLICK_SOUND = { + NONE = 0, + NORMAL = 1 +} + +GConst.CURRENCY_TYPE = { + HORIZONTAL = 1, + VERTICAL = 2, +} + +GConst.DOTWEEN_IDS = { + DEFAULT = 0, + TOAST = 1, + BATTLE = 2, -- 此id和c# BattleConst的id一致,需要同步修改 + WAIT_NET = 4, + TUTORIAL = 5, + TASK_TOAST = 6, + BATTLE_UI = 7 +} + +GConst.MESSAGE_BOX_TYPE = { + MB_OK = 1, + MB_OK_CANCEL = 2, +} + +GConst.QUALITY_TYPE = +{ + [1] = "#D1D1D1", + [2] = "#A3FF94", + [3] = "#4DFFF5", + [4] = "#FA79FF", + [5] = "#FFEE79", + [6] = "#FFAC40", + [7] = "#FF5050", +} + +GConst.QUALITY_COLOR = { + [1] = CS.UnityEngine.Color.white, + [2] = CS.UnityEngine.Color(0.17647, 0.917647, 0.490196, 1.0), + [3] = CS.UnityEngine.Color(0.2745098, 0.8509803, 1.0, 1.0), + [4] = CS.UnityEngine.Color(0.7686274, 0.3686274, 1.0, 1.0), + [5] = CS.UnityEngine.Color(1.0, 0.662745, 0.2, 1.0), + [6] = CS.UnityEngine.Color(0, 0.9843137, 1.0, 1.0), + [7] = CS.UnityEngine.Color(0.9568627, 0.1921568, 0.3725490, 1.0), +} + +GConst.COLOR = { + WHITE = CS.UnityEngine.Color.white, + BLUE = CS.UnityEngine.Color(0.2745098, 0.8509803, 1.0, 1.0), + PURPLE = CS.UnityEngine.Color(0.7686274, 0.3686274, 1.0, 1.0), + ORANGE = CS.UnityEngine.Color(1.0, 0.662745, 0.2, 1.0), + YELLOW = CS.UnityEngine.Color(1.0, 0.9333333, 0.1764705, 1.0), + YELLOW_TITLE = CS.UnityEngine.Color(1, 0.9294118, 0.7529412, 1.0), + YELLOW_2 = CS.UnityEngine.Color(1, 0.9333333, 0.6117647, 1.0), + GREEN = CS.UnityEngine.Color(0.17647, 0.917647, 0.490196, 1.0), + RED = CS.UnityEngine.Color(0.9568627, 0.1921568, 0.3725490, 1.0), + BROWN = CS.UnityEngine.Color(0.5529411, 0.4509803, 0.3960784, 1.0), + BROWN_2 = CS.UnityEngine.Color(0.6627451, 0.3764706, 0.1411765, 1.0), + BROWN_3 = CS.UnityEngine.Color(0.7333333, 0.6627451, 0.5607843, 1.0), + GREY = CS.UnityEngine.Color(0.4901961, 0.4901961, 0.4901961, 1.0), +} + +GConst.COMPONENT_GREY_COLOR = CS.UnityEngine.Color(1, 0, 1, 1) + +GConst.COLOR_CODE = { + YELLOW = "#FFEE79", + GREY = "#D1D1D1", + ORANGE = "#FFAC40", + PURPLE = "#FA79FF", + BLUE = "#4DFFF5", + GREEN = "#A3FF94", + RED = "#FF5050", + WHITE = "#FFFFFF", +} + +GConst.UI_EFFECT_ORDER = { + LEVEL0 = 0, + LEVEL1 = 20, + LEVEL2 = 40, + LEVEL3 = 60, + LEVEL4 = 80, + LEVEL5 = 100 +} + +GConst.LANGUAGE = { + ENGLISH = "en", -- 英文 + CHINESE = "cn", -- 简中 + FRENCH = "fr", -- 法语 + ITALIAN = "it", -- 意语 + GERMAN = "de", -- 德语 + SPANISH = "es", -- 西语 + DUTCH = "nl", -- 荷兰语 + RUSSIAN = "ru", -- 俄语 + KOREAN = "ko", -- 韩语 + JAPANESE = "ja", -- 日语 + HUNGARY = "hu", -- 匈牙利 + PORTUGUESE = "pt", -- 葡萄牙语 + ARABIC = "ar", -- 阿拉伯语 + CHINESE_TC = "zh", -- 繁中 + TURKISH = "tr", -- 土耳其语 + THAILAND = "th", -- 泰语 + MALAYSIA = "ms", -- 马来语 + VIETNAMESE = "vi", -- 越南 + INDONESIA = "id", -- 印度尼西亚 +} + +GConst.EVENT_PRIORITY = { + LV1 = 1, + LV2 = 2, + LV3 = 3, + LV4 = 4, + LV5 = 5, +} + +GConst.QUALITY = { + "GRAY", + "GREEN", + "BLUE", + "PURPLE", + "ORANGE", + "CYAN", + "RED", +} + +GConst.HERO_FRAME = { + DEFAULT = "frame_1", + GRAY = "frame_1", + GREEN = "frame_2", + BLUE = "frame_3", + PURPLE = "frame_4", + ORANGE = "frame_5", + CYAN = "frame_6", + RED = "frame_7", +} + +GConst.QLT_LABLE = { + DEFAULT = "equip_quality_1", + GRAY = "equip_quality_1", + GREEN = "equip_quality_2", + BLUE = "equip_quality_3", + PURPLE = "equip_quality_4", + ORANGE = "equip_quality_5", + CYAN = "frame_6", + RED = "equip_quality_7", +} + +GConst.ENTITY_TYPE = { + ITEM_ENTITY = 1, + EQUIP_ENTITY = 2, + JEWELRY_ENTITY = 3, +} + +GConst.ATTR_TYPE = { + -- 血量 + hp = 1, + -- 生命恢复 + -- recover = 2, + -- 攻击 + atk = 2, + -- 速度 + -- spd = 4, + -- 暴击 + crit = 3, + -- 暴击伤害 + crit_time = 4, + -- 技能范围增加(百分比) + -- atk_range = 7, + -- 伤害减免,在伤害计算的最后按百分比减少 + dmg_dec_all = 5, + -- 对boss的伤害提升 + -- hurt_boss_time = 9, + -- 攻击力百分比 + atkp_1 = 6, + atkp_2 = 7, + atkp_3 = 8, + atkp_4 = 9, + atkp_5 = 10, + atkp_6 = 11, + atkp_7 = 12, + atkp_8 = 13, + atkp_9 = 14, + -- 生命百分比 + hpp_1 = 15, + hpp_2 = 16, + hpp_3 = 17, + hpp_4 = 18, + hpp_5 = 19, + hpp_6 = 20, + hpp_7 = 21, + -- 移动速度百分比 + -- spdp = 25, + -- 增加自身的伤害 + dmg_addition = 22, + -- 中毒伤害提高(比例) + -- hurt_poisonP = 27, + -- 对中毒单位伤害提高(比例) + -- dmg_addition_poicon = 28, + -- 闪避几率(受伤时有几率不掉血) + miss = 23, + -- 金币获取(百分比) + gold_gain = 24, + -- 技能伤害(百分比) + dmg_addition_skill = 25, + -- 普攻伤害(百分比) + dmg_addition_normal = 26, + -- 放置奖励(百分比) + idle_income = 27, + -- 矿镐回复速度(百分比) + pickaxe_recover_spd = 28, + -- 矿镐持有上限(固定值) + pickaxe_own_limit = 29, + -- 研究用矿石获取(百分比) + mineral_gain = 30, + -- 研究速度(百分比) + research_spd = 31, + -- 所有战斗中的攻击力百分比加成 + -- atkp_0 = 38, + -- 击飞伤害 + airborne_damage = 32, + -- 击飞数量 + airborne_num = 33, + -- 所有技能的伤害提升 + -- skill_all_damage = 41, + -- 武器技能1的伤害提升 + -- skill_1_damage = 42, + -- -- 武器技能2的伤害提升 + -- skill_2_damage = 43, + -- -- 武器技能3的伤害提升 + -- skill_3_damage = 44, + -- -- 普攻伤害提升 + -- attack_damage = 45, +} + +GConst.GAMEOBJECT_LAYER = { + DEFAULT = CS.BF.Utils.NameToLayer("Default"), + UI = CS.BF.Utils.NameToLayer("UI"), + UIMODEL = CS.BF.Utils.NameToLayer("UIModel") +} + +GConst.REWARD_TYPE = { + REWARD_NONE = 0, + ITEM = 1, + EQUIP = 2, + HERO = 3, + LEGACY = 4, + RUNES = 5, +} + +-- 空手算短刀 +GConst.EMPTY_WEAPON_PART = 2 +GConst.WEAPON_TO_HERO_MODEL_ID = { + [0] = "p0002", + [1] = "p0001", + [2] = "p0002", + [3] = "p0003", + [4] = "p0004" +} + +GConst.INT_TO_STRING = { + [0] = "0", + [1] = "1", + [2] = "2", + [3] = "3", + [4] = "4", + [5] = "5", + [6] = "6", + [7] = "7", + [8] = "8", + [9] = "9", + [10] = "10", + [11] = "11", + [12] = "12", + [13] = "13", + [14] = "14", + [15] = "15", + [16] = "16", + [17] = "17", + [18] = "18", + [19] = "19", + [20] = "20", + [21] = "21", + [22] = "22", + [23] = "23", + [24] = "24", + [25] = "25", + [26] = "26", + [27] = "27", + [28] = "28", + [29] = "29", + [30] = "30", + [31] = "31", + [32] = "32", + [33] = "33", + [34] = "34", + [35] = "35", + [36] = "36", + [37] = "37", + [38] = "38", + [39] = "39", + [40] = "40", + [41] = "41", + [42] = "42", + [43] = "43", + [44] = "44", + [45] = "45", + [46] = "46", + [47] = "47", + [48] = "48", + [49] = "49", + [50] = "50", + [51] = "51", + [52] = "52", + [53] = "53", + [54] = "54", + [55] = "55", + [56] = "56", + [57] = "57", + [58] = "58", + [59] = "59", + [60] = "60", + [61] = "61", + [62] = "62", + [63] = "63", + [64] = "64", + [65] = "65", + [66] = "66", + [67] = "67", + [68] = "68", + [69] = "69", + [70] = "70", + [71] = "71", + [72] = "72", + [73] = "73", + [74] = "74", + [75] = "75", + [76] = "76", + [77] = "77", + [78] = "78", + [79] = "79", + [80] = "80", + [81] = "81", + [82] = "82", + [83] = "83", + [84] = "84", + [85] = "85", + [86] = "86", + [87] = "87", + [88] = "88", + [89] = "89", + [90] = "90", + [91] = "91", + [92] = "92", + [93] = "93", + [94] = "94", + [95] = "95", + [96] = "96", + [97] = "97", + [98] = "98", + [99] = "99", + [100] = "100", +} + +if CS.BF.Utils.GetDataSecretKey then + GConst.SECRET_KEY = CS.BF.Utils.GetDataSecretKey() +else + GConst.SECRET_KEY = "" +end + +GConst.MAIN_CITY_PAGE = { + COMMERCE = 5, +} + +GConst.SUMMON_TYPE = +{ + SUMMON_AD = 1, + SUMMON_1 = 2, + SUMMON_2 = 3, +} + +GConst.GIFT_TYPE = +{ + TRIGGER = 1, -- 触发礼包 + KILL_AD = 2, -- 永久免广告 + AUTO_BLESS = 3, -- 自动续祝福 + MONTH_CARD = 4, -- 月卡 + LIMIT_ACTIVITY_GIFT = 5, -- 活动限时礼包 + FIRST_RECHARGE = 6, -- 首充 +} + +GConst.CFG_ID = { + DAILY_FREE_CFG_ID = 1001, --mall_daily中的免费礼包id + DAILY_AD_CFG_ID = -1, --mall_daily中的广告礼包id 暂时没有 + FIRST_RECHARGE_GIFT_ID = 10000,--mall_act中的首充奖励id + MONTHLY_CFG_ID = 40001, --mall_act中的id月卡 +} + +-- 传家宝最大数量 +GConst.LEGACY_NUM = 6 +-- 符文最大数量 +GConst.RUNE_NUM = 7 + +-- 挖矿相关 +GConst.GRID_TYPE = { + GROUND = 1, -- 和配置的type统一 + SOIL = 2, + ROCK = 3, + OTHER = 4, +} + +GConst.OperateMode = { + Digging = 1, + PutItem = 2 +} + +GConst.RANKING_ICON = { + [1] = "common_rank_1", + [2] = "common_rank_2", + [3] = "common_rank_3", +} + +GConst.ERROR_STR = { + SUCCESS = "SUCCESS", + ARENA_LAST_UNSTTLE = "ARENA_LAST_UNSTTLE", +} + +GConst.DUNGEON_TYPE = { + UNKNOWN = 0, + GOLD = 1, -- 金币副本 + DIAMOND = 2, -- 钻石副本 + RUNE = 3, -- 符文副本 + SPECIAL = 4, -- 特性副本 +} + +return GConst \ No newline at end of file diff --git a/lua/app/global/global_const.lua.meta b/lua/app/global/global_const.lua.meta new file mode 100644 index 00000000..761464e5 --- /dev/null +++ b/lua/app/global/global_const.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8ce81e5dd343eb744a43bd685cada112 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/global/global_func.lua b/lua/app/global/global_func.lua new file mode 100644 index 00000000..e11cb425 --- /dev/null +++ b/lua/app/global/global_func.lua @@ -0,0 +1,1886 @@ +local GFunc = {} + +local EMPTY_TABLE = {} +local HASH_SEED = 31 +local UINT_RANGE = 4294967296 +local byte = string.byte +local DESIGN_RESOLUTION_WIDTH = CS.BF.GameConst.DESIGN_RESOLUTION_WIDTH +local DESIGN_RESOLUTION_HEIGHT = CS.BF.GameConst.DESIGN_RESOLUTION_HEIGHT +local UnityTime = CS.UnityEngine.Time + +--获取unicode 字符串长度 和utf-8长度 +function GFunc.getTextLen(str) + local byteLen = #str + local strLen = 0 + local i = 1 + local curByte + local byteCount = 1 + while i <= byteLen do + curByte = byte(str, i) + byteCount = 1 + if curByte > 0 and curByte <= 127 then + byteCount = 1 + elseif curByte >= 192 and curByte < 223 then + byteCount = 2 + elseif curByte >= 224 and curByte < 239 then + byteCount = 3 + elseif curByte >= 240 and curByte <= 247 then + byteCount = 4 + end + i = i + byteCount + strLen = strLen + 1 + end + return strLen, i - 1 +end + +function GFunc.getTextLen2(str) + local byteLen = #str + local strLen = 0 + local i = 1 + local curByte + local byteCount = 1 + while i <= byteLen do + curByte = byte(str, i) + byteCount = 1 + if curByte > 0 and curByte <= 127 then + byteCount = 1 + strLen = strLen + 1 + elseif curByte >= 192 and curByte < 223 then + -- 中文算2个字节 + byteCount = 2 + strLen = strLen + 1 + elseif curByte >= 224 and curByte < 239 then + byteCount = 3 + strLen = strLen + 2 + elseif curByte >= 240 and curByte <= 247 then + byteCount = 4 + strLen = strLen + 1 + end + i = i + byteCount + end + return strLen, i - 1 +end + +-- 判断字符串是不是全部都是空格,32是半角空格,227是全角空格 +function GFunc.getIsAllSpaceStr(str) + local result = true + local byteLen = #str + local i = 1 + local curByte + local byteCount = 1 + while i <= byteLen do + curByte = byte(str, i) + byteCount = 1 + if curByte > 0 and curByte <= 127 then + byteCount = 1 + if curByte ~= 32 then + result = false + break + end + elseif curByte >= 192 and curByte < 223 then + byteCount = 2 + result = false + break + elseif curByte >= 224 and curByte < 239 then + byteCount = 3 + if curByte ~= 227 then + result = false + break + end + elseif curByte >= 240 and curByte <= 247 then + byteCount = 4 + result = false + break + else + result = false + break + end + i = i + byteCount + end + return result +end + +function GFunc.num2Str(count, dec) + if count >= 99999999999 then -- 前端限制最大显示99999M + if dec then + return "99999.99M" + else + return "99999M" + end + elseif count >= 10000000 then + if dec then + count = math.floor((count*10^dec)/1000000)/(10^dec) + return count .. "M" + else + count = count // 1000000 + return count .. "M" + end + elseif count >= 100000 then + if dec then + count = math.floor((count*10^dec)/1000)/(10^dec) + return count .. "K" + else + count = count // 1000 + return count .. "K" + end + + else + return GFunc.parseDedundantNumber(count) + end +end + +-- 超过千位就缩写,目前只有公会奖励用到 1K-5K +function GFunc.num2Str2(count, dec) + if count >= 99999999999 then -- 前端限制最大显示99999M + if dec then + return "99999.99M" + else + return "99999M" + end + elseif count >= 1000000 then + if dec then + count = math.floor((count*10^dec)/1000000)/(10^dec) + return count .. "M" + else + count = count // 1000000 + return count .. "M" + end + elseif count >= 1000 then + if dec then + count = math.floor((count*10^dec)/1000)/(10^dec) + return count .. "K" + else + count = count // 1000 + return count .. "K" + end + + else + return GFunc.parseDedundantNumber(count) + end +end + +-- 与num2Str类似 但是上限扩大3位至99999B +function GFunc.num2Str3(count, dec) + if count >= 99999999999999 then -- 前端限制最大显示99999B + if dec then + return "99999.99B" + else + return "99999B" + end + elseif count >= 10000000000 then + if dec then + count = math.floor((count*10^dec)/1000000000)/(10^dec) + return count .. "B" + else + count = count // 1000000000 + return count .. "B" + end + elseif count >= 10000000 then + if dec then + count = math.floor((count*10^dec)/1000000)/(10^dec) + return count .. "M" + else + count = count // 1000000 + return count .. "M" + end + elseif count >= 100000 then + if dec then + count = math.floor((count*10^dec)/1000)/(10^dec) + return count .. "K" + else + count = count // 1000 + return count .. "K" + end + + else + return GFunc.parseDedundantNumber(count) + end +end + +function GFunc.killDOTween(id, complete) + if complete == nil then + return CS.BF.Utils.KillDOTween(id) + else + return CS.BF.Utils.KillDOTween(id, complete) + end +end + +function GFunc.setDOTweenTimeScale(id, timeScale) + CS.BF.Utils.SetDOTweenTimeScale(id, timeScale) +end + +function GFunc.nameToLayer(name) + return CS.BF.Utils.NameToLayer(name) +end + +-- BKDRHash +function GFunc.hash(str) + local h = 0 + for i = 1, #str do + h = h * HASH_SEED + byte(str, i) + end + return h%UINT_RANGE +end + +function GFunc.getScreenSize() + return CS.UnityEngine.Screen.width, CS.UnityEngine.Screen.height +end + +function GFunc.parseDedundantNumber(num) + if num % 1 == 0 then + return math.ceil(num) + else + return num + end +end + +function GFunc.openUrl(web) + CS.UnityEngine.Application.OpenURL(web) +end + +function GFunc.getShader(shaderName) + return CS.UnityEngine.Shader.Find(shaderName) +end + +function GFunc.subStringGetByteCount(str, index) + local curByte = byte(str, index) + local byteCount = 1 + if curByte == nil then + byteCount = 0 + elseif curByte > 240 then + byteCount = 4 + elseif curByte > 225 then + byteCount = 3 + elseif curByte > 192 then + byteCount = 2 + end + return byteCount +end + +function GFunc.subStringByCharCount(str, needCount) + local index = 1 + local lastIndex = 1 + local num = 0 + while num < needCount and lastIndex ~= 0 do + lastIndex = GFunc.subStringGetByteCount(str, index) + index = index + lastIndex + num = num + 1 + end + return string.sub(str,1, index - 1) +end + +function GFunc.setLayer(gameObject, layerName) + local trans = gameObject.transform:GetComponentsInChildren(typeof(CS.UnityEngine.Transform)) + local layer = GFunc.nameToLayer(layerName) + + if trans then + local len = trans.Length + for i = 0, len - 1 do + trans[i].gameObject.layer = layer + end + end +end + +-- 根据当前屏幕分辨率 计算偏差值 +function GFunc.calculateFitSizeY() + local width, height = GFunc.getScreenSize() + local dif = 0 + if width / height < DESIGN_RESOLUTION_WIDTH / DESIGN_RESOLUTION_HEIGHT then + dif = height / (width / DESIGN_RESOLUTION_WIDTH) - DESIGN_RESOLUTION_HEIGHT + end + return dif +end + +-- 获得Expand模式下UI分辨率 +function GFunc.getUIExpandScreenSize() + local width, height = GFunc.getScreenSize() + if width / height <= DESIGN_RESOLUTION_WIDTH / DESIGN_RESOLUTION_HEIGHT then + height = height * (DESIGN_RESOLUTION_WIDTH / width) + width = DESIGN_RESOLUTION_WIDTH + else + width = width * (DESIGN_RESOLUTION_HEIGHT / height) + height = DESIGN_RESOLUTION_HEIGHT + end + return width, height +end + +function GFunc.checkNameValid(str, min, max) + local result = nil + + if str == nil or str == "" then + --输入不能为空 + return false + else + result = string.match(str, "/u{0020}") or string.match(str, "/u{3000}") or string.match(str, "/u{00A0}") + end + + if result then + --非法字符 + return false + end + + local k, length = GFunc.getTextLen(str) + if length < min then + return false + elseif length > max then + return false + end + + return true +end + +function GFunc.showMessageBox(params) + local MessageBox = require "app/ui/common/message_box" + MessageBox:showMessageBox(params) +end + +function GFunc.showCheatingBox(params) + local CheatMessageBox = require "app/ui/common/cheat_message_box" + CheatMessageBox:showCheatMessageBox(params) +end + +function GFunc.hideCheatingBox() + local CheatMessageBox = require "app/ui/common/cheat_message_box" + CheatMessageBox:hideCheatMessageBox() +end + +function GFunc.showToast(tab) + ModuleManager.ToastManager:showToast(tab) +end + +function GFunc.UiRectTransformScreenPointToLocalPointInRectangle(go, x, y) + local uiCamera = UIManager:getUICameraComponent() + local anchoredPosition = CS.BF.Utils.RectTransformScreenPointToLocalPointInRectangle(go:getTransform(), + x, y, uiCamera) + return anchoredPosition +end + +function GFunc.UiRectangleContainsScreenPoint(go, x, y) + local uiCamera = UIManager:getUICameraComponent() + return CS.BF.Utils.RectangleContainsScreenPoint(go:getTransform(), x, y, uiCamera) +end + +function GFunc.getPerByW(ratio) + if ratio < 0 then + return math.ceil(ratio*0.01) + else + return math.floor(ratio*0.01) + end +end + +function GFunc.getPerByW2(ratio) + if ratio < 0 then + return math.ceil(ratio*0.0001) + else + return math.floor(ratio*0.0001) + end +end + +function GFunc.getPerByW3(ratio) + return ratio*0.0001 +end + +-- function GFunc.getRoundingNumByW(num) +-- if num <= 0 then +-- return 0 +-- end +-- if num < 10000 then +-- return GFunc.getRoundingNumByW(num*100) // 100 +-- end +-- local remainder = num%10000 +-- if remainder < 5000 then +-- return num - remainder +-- elseif remainder > 5000 then +-- return num - remainder + 10000 +-- else +-- local integer = (num - remainder)*0.0001 +-- if integer%2 == 0 then +-- return num - remainder +-- else +-- return num - remainder + 10000 +-- end +-- end +-- end + +function GFunc.getFinalAttr(key, value) + if key == GConst.ATTR_TYPE.crit or + key == GConst.ATTR_TYPE.crit_time or + -- key == GConst.ATTR_TYPE.atk_range or + key == GConst.ATTR_TYPE.atkp_1 or + key == GConst.ATTR_TYPE.atkp_2 or + key == GConst.ATTR_TYPE.atkp_3 or + key == GConst.ATTR_TYPE.atkp_4 or + key == GConst.ATTR_TYPE.atkp_5 or + key == GConst.ATTR_TYPE.atkp_6 or + key == GConst.ATTR_TYPE.hpp_1 or + key == GConst.ATTR_TYPE.hpp_2 or + key == GConst.ATTR_TYPE.hpp_3 or + key == GConst.ATTR_TYPE.hpp_4 or + key == GConst.ATTR_TYPE.hpp_5 or + key == GConst.ATTR_TYPE.hpp_6 or + key == GConst.ATTR_TYPE.hpp_7 or + key == GConst.ATTR_TYPE.atkp_7 or + key == GConst.ATTR_TYPE.atkp_8 or + key == GConst.ATTR_TYPE.atkp_9 or + -- key == GConst.ATTR_TYPE.spdp or + key == GConst.ATTR_TYPE.gold_gain or + key == GConst.ATTR_TYPE.dmg_addition_skill or + key == GConst.ATTR_TYPE.dmg_addition_normal or + key == GConst.ATTR_TYPE.pickaxe_recover_spd or + key == GConst.ATTR_TYPE.mineral_gain or + key == GConst.ATTR_TYPE.research_spd or + key == GConst.ATTR_TYPE.dmg_addition or + key == GConst.ATTR_TYPE.dmg_addition_poicon or + -- key == GConst.ATTR_TYPE.atkp_0 or + key == GConst.ATTR_TYPE.airborne_damage or + -- key == GConst.ATTR_TYPE.skill_all_damage or + -- key == GConst.ATTR_TYPE.skill_1_damage or + -- key == GConst.ATTR_TYPE.skill_2_damage or + -- key == GConst.ATTR_TYPE.skill_3_damage or + -- key == GConst.ATTR_TYPE.attack_damage or + key == GConst.ATTR_TYPE.miss or + key == GConst.ATTR_TYPE.dmg_dec_all or + key == GConst.ATTR_TYPE.idle_income + then + return BigNumOpt.bigNumDiv(value, {value = 100, unit = 0}) + else + return BigNumOpt.bigNumDiv(value, {value = 10000, unit = 0}) + end +end + +function GFunc.getPerStr(key, str) + if key == GConst.ATTR_TYPE.crit or + key == GConst.ATTR_TYPE.crit_time or + -- key == GConst.ATTR_TYPE.atk_range or + key == GConst.ATTR_TYPE.atkp_1 or + key == GConst.ATTR_TYPE.atkp_2 or + key == GConst.ATTR_TYPE.atkp_3 or + key == GConst.ATTR_TYPE.atkp_4 or + key == GConst.ATTR_TYPE.atkp_5 or + key == GConst.ATTR_TYPE.atkp_6 or + key == GConst.ATTR_TYPE.atkp_7 or + key == GConst.ATTR_TYPE.atkp_8 or + key == GConst.ATTR_TYPE.atkp_9 or + key == GConst.ATTR_TYPE.hpp_1 or + key == GConst.ATTR_TYPE.hpp_2 or + key == GConst.ATTR_TYPE.hpp_3 or + key == GConst.ATTR_TYPE.hpp_4 or + key == GConst.ATTR_TYPE.hpp_5 or + key == GConst.ATTR_TYPE.hpp_6 or + key == GConst.ATTR_TYPE.hpp_7 or + -- key == GConst.ATTR_TYPE.spdp or + key == GConst.ATTR_TYPE.gold_gain or + key == GConst.ATTR_TYPE.dmg_addition_skill or + key == GConst.ATTR_TYPE.dmg_addition_normal or + key == GConst.ATTR_TYPE.pickaxe_recover_spd or + key == GConst.ATTR_TYPE.mineral_gain or + key == GConst.ATTR_TYPE.research_spd or + key == GConst.ATTR_TYPE.dmg_addition or + key == GConst.ATTR_TYPE.dmg_addition_poicon or + -- key == GConst.ATTR_TYPE.atkp_0 or + key == GConst.ATTR_TYPE.airborne_damage or + -- key == GConst.ATTR_TYPE.skill_all_damage or + -- key == GConst.ATTR_TYPE.skill_1_damage or + -- key == GConst.ATTR_TYPE.skill_2_damage or + -- key == GConst.ATTR_TYPE.skill_3_damage or + -- key == GConst.ATTR_TYPE.attack_damage or + key == GConst.ATTR_TYPE.miss or + key == GConst.ATTR_TYPE.dmg_dec_all or + key == GConst.ATTR_TYPE.idle_income + then + str = str .. "%" + end + return str +end + +function GFunc.getFinalPerStr(typeId, bigNum) + return GFunc.getPerStr(typeId, BigNumOpt.bigNum2Str(GFunc.getFinalAttr(typeId, bigNum))) +end + +function GFunc.getAttrName(key) + return I18N:getText("attr", key, "name") +end + +function GFunc.getAttrNameAndValue(attrStruct, colorCode) + local finalStr = BigNumOpt.bigNumCfgAttr2FinalValueStr(attrStruct) + if colorCode then + finalStr = string.format("%s", colorCode, finalStr) + end + local str = GFunc.getAttrName(GConst.ATTR_TYPE[attrStruct.type]) .. "+" .. finalStr + return str +end + +function GFunc.getAttrNameAndValue2(attrType, attrBigNum, colorCode) + local finalStr = BigNumOpt.bigNumCfgAttr2FinalValueStr2(GConst.ATTR_TYPE[attrType], attrBigNum) + if colorCode then + finalStr = string.format("%s", colorCode, finalStr) + end + local str = GFunc.getAttrName(GConst.ATTR_TYPE[attrType]) .. "+" .. finalStr + return str +end + +function GFunc.getTimeStrWithMS(time) + local m = math.floor(time/60) + local s = time%60 + return I18N:getGlobalText(I18N.GlobalConst.TIME_MS, string.format("%02d", m), string.format("%02d", s)) +end + +function GFunc.getTimeStrWithMS2(time) + local m = math.floor(time/60) + local s = time%60 + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_MS, string.format("%02d", m), string.format("%02d", s)) +end + +function GFunc.getTimeStrWithHMS(time) + local h = math.floor(time/3600) + local m = math.floor((time%3600)/60) + local s = time%60 + return I18N:getGlobalText(I18N.GlobalConst.TIME_HMS, string.format("%02d", h), string.format("%02d", m), string.format("%02d", s)) +end + +function GFunc.getTimeStrWithM2(time) + local m = time // 60 + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_M, m) +end + + +function GFunc.getTimeStrWithHMS2(time) + local h = math.floor(time/3600) + local m = math.floor((time%3600)/60) + local s = time%60 + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_HMS, h, m, s) +end + +function GFunc.getTimeStrWithDH2(time) + local d = math.floor(time/86400) + local h = math.floor((time%86400)/3600) + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_DH, d, h) +end + +function GFunc.getTimeStrWithD2(time) + local d = math.floor(time/86400) + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_D, d) +end + +function GFunc.getTimeStrWithHM(time) + local h = math.floor(time/3600) + local m = math.floor((time%3600)/60) + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_HM, string.format("%02d", h), string.format("%02d", m)) +end + + +function GFunc.getTimeStrWithHM2(time) + local h = math.floor(time/3600) + local m = math.floor((time%3600)/60) + return I18N:getGlobalText(I18N.GlobalConst.TIME_STR_HM, h, m) +end + +function GFunc.getTimeStr(time) + if time > 86400 then + return GFunc.getTimeStrWithDH2(time) + else + return GFunc.getTimeStrWithHMS2(time) + end +end + +function GFunc.getTimeStr2(time) + if time > 86400 then + return GFunc.getTimeStrWithD2(time) + else + return GFunc.getTimeStrWithHM2(time) + end +end + +function GFunc.getTimeStr3(time) + if time >= 3600 then + return GFunc.getTimeStrWithHM(time) + else + return GFunc.getTimeStrWithMS2(time) + end +end + +function GFunc.getAdaptScale(basePixel) + basePixel = basePixel or 0 + local DESIGN_WIDTH = 720 + local DESIGN_HEIGHT = 1280 + local safeHeight = SafeAreaManager:getNotchScreenHeight() + local winSizeWidth, winSizeHeight = GFunc.getScreenSize() + local maxScale = math.max(DESIGN_WIDTH/winSizeWidth, DESIGN_HEIGHT/winSizeHeight) + local height = maxScale*winSizeHeight - basePixel - safeHeight + local scale = height/(DESIGN_HEIGHT - basePixel) + return scale +end + +function GFunc.getConstIntValue(key) + local ConstCfg = ConfigManager:getConfig("const") + return math.floor(ConstCfg[key].value) +end + +function GFunc.getConstValue(key) + local ConstCfg = ConfigManager:getConfig("const") + return ConstCfg[key] and ConstCfg[key].value or 0 +end + +function GFunc.getTargetAnchoredPosition(targetGo, parent) + local rectTransform = targetGo:getComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM) + local rect = rectTransform.rect + local localToWorldMatrix = rectTransform.localToWorldMatrix + local tarCornerMid = localToWorldMatrix:MultiplyPoint3x4(BF.Vector3((rect.xMax + rect.x) / 2, (rect.yMax + rect.y) / 2, 0)) + local screenPos = UIManager:getUICameraComponent():WorldToScreenPoint(tarCornerMid) + local anchoredPosition = CS.BF.Utils.RectTransformScreenPointToLocalPointInRectangle(parent:getTransform(), screenPos.x, screenPos.y, UIManager:getUICameraComponent()) + return anchoredPosition +end + +function GFunc.getFormatPrice(rechargeId) + local cfg = ConfigManager:getConfig("recharge")[rechargeId] + if cfg == nil then + return GConst.EMPTY_STRING + end + -- 优先读取通过sdk获取的商品价格 + local price = SDKManager:getProductPrice(cfg.payId) + if price and price ~= "" then + return price + end + -- sdk里查不到就读表 + return cfg.price_str +end + +function GFunc.setGrey(component, isGrey) + if isGrey then + component.color = GConst.COMPONENT_GREY_COLOR + else + component.color = GConst.COLOR.WHITE + end +end + +function GFunc.checkBit(value, nbit) + if not value then + return false + end + local ret = value >> (nbit - 1) + if ret %2 == 1 then + return true + else + return false + end +end + +function GFunc.showItemNotEnough(itemId) + local gemTextInfo = I18N:getConfig("item")[itemId] + if gemTextInfo then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.ITEM_NOT_ENOUGH, gemTextInfo.name)) + end +end + +function GFunc.showJewelryNotEnough(itemId) + local gemTextInfo = I18N:getConfig("jewelry")[itemId] + if gemTextInfo then + GFunc.showToast(I18N:getGlobalText(I18N.GlobalConst.ITEM_NOT_ENOUGH, gemTextInfo.name)) + end +end + +function GFunc.checkCost(id, num, showToast, giftType) + if num.value <= 0 then + BIReport:postDataException(id, num.value, giftType) + return false + end + local bigNum = DataManager.BagData.ItemData:getItemBigNumById(id) + if BigNumOpt.bigNumCompare(bigNum, num) < 0 then + if showToast then + GFunc.showItemNotEnough(id) + end + return false + else + return true + end +end + +function GFunc.checkCostNum(id, num, giftType) + if num <= 0 then + BIReport:postDataException(id, num, giftType) + return false + end + return true +end + +---- 获得奖励的统一接口 +function GFunc.addRewards(rewards, itemGetType) + if rewards == nil then + return + end + + if EDITOR_MODE then + if not itemGetType then + local params = { + content = "GFunc addRewards has no itemGetType", + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + Logger.log("GFunc addRewards has no itemGetType") + end + end + + -- 用元表来判断此奖励是否领过了,避免重复领取 + if getmetatable(rewards) then + return + end + setmetatable(rewards, EMPTY_TABLE) + + -- 合并奖励 + local newRewards = {} + GFunc.mergeRewards2(rewards, newRewards) + + local runeList = {} + -- 根据类型type来添加奖励 + for k, v in ipairs(newRewards) do + if v.type == GConst.REWARD_TYPE.ITEM then + DataManager.BagData.ItemData:addItem(v.item, itemGetType) + elseif v.type == GConst.REWARD_TYPE.EQUIP then + DataManager.BagData.EquipData:addEquipCountById(v.equip.id, v.equip.count, itemGetType) + elseif v.type == GConst.REWARD_TYPE.LEGACY then + DataManager.BagData.LegacyData:addLegacyCountById(v.legacy.id, v.legacy.count, itemGetType) + elseif v.type == GConst.REWARD_TYPE.RUNES then + DataManager.BagData.RuneData:addRune(v.rune, itemGetType) + table.insert(runeList, v.rune) + end + end + + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_RUNE_GOT, {runeList = runeList}) +end + +function GFunc.addCosts(costs, itemGetType) + if costs == nil then + return + end + -- 用元表来判断此消耗是否领过了,避免重复扣除 + if getmetatable(costs) then + return + end + setmetatable(costs, EMPTY_TABLE) + for _, unitCost in ipairs(costs) do + if unitCost.type == GConst.REWARD_TYPE.ITEM then + DataManager.BagData.ItemData:addItemCost(unitCost.item, itemGetType) + end + end +end + +-- 奖励排序 结构为后端结构 +-- function GFunc.sortRewards(rewards) +-- rewards = rewards or {} +-- local maxType = 10 +-- for i,v in ipairs(rewards) do +-- if v.type == GConst.REWARD_TYPE.ITEM then +-- rewards[i].sort = (maxType - v.type) * 1000000000 + (1000000000 - v.item.cfg_id) +-- elseif v.type == GConst.REWARD_TYPE.EQUIP then +-- local cfg = ConfigManager:getConfig("equip")[v.equip.id] +-- rewards[i].sort = (maxType - v.type) * 1000000000 + cfg.qlt*100000000 + v.equip.id +-- elseif v.type == GConst.REWARD_TYPE.JEWELRY then +-- rewards[i].sort = (maxType - v.type) * 1000000000 + (1000000000 - v.jewelry.cfg_id) +-- end +-- end +-- table.sort(rewards, function (a, b) +-- return a.sort > b.sort +-- end) +-- end + +---- 奖励展示接口 +function GFunc.showRewardBox(rewards, extParams, callback) + rewards = rewards or {} + local params = extParams or {} + local newRewards = {} + if not params.noMerge then + GFunc.mergeRewards2(rewards, newRewards) + else + newRewards = rewards + end + params.rewards = newRewards + params.callback = callback + ModuleManager.TipsManager:showRewardsBox(params) +end + +function GFunc.mergeRewards2(rewards, newRewards) + local items = {} + for i,v in ipairs(rewards) do + if v.type == GConst.REWARD_TYPE.ITEM then + if not items[v.item.id] then + items[v.item.id] = BigNumOpt.num2BigNum(0) + end + items[v.item.id] = BigNumOpt.bigNumAdd(items[v.item.id], v.item.count) + elseif v.type == GConst.REWARD_TYPE.EQUIP then + table.insert(newRewards, v) + elseif v.type == GConst.REWARD_TYPE.LEGACY then + table.insert(newRewards, v) + elseif v.type == GConst.REWARD_TYPE.RUNES then + table.insert(newRewards, v) + end + end + for k,v in pairs(items) do + table.insert(newRewards, {type = GConst.REWARD_TYPE.ITEM, item = {id = k, count = v}}) + end +end + +-- reward 结构为 type id num 配置中结构 +function GFunc.mergeRewards(rewards) + local items = {} + local newRewards = {} + for i,v in ipairs(rewards) do + if v.type == GConst.REWARD_TYPE.ITEM then + items[v.id] = (items[v.id] or 0) + v.num + elseif v.type == GConst.REWARD_TYPE.EQUIP then + table.insert(newRewards, v) + elseif v.type == GConst.REWARD_TYPE.LEGACY then + table.insert(newRewards, v) + end + end + for k,v in pairs(items) do + table.insert(newRewards, {type = GConst.REWARD_TYPE.ITEM, id = k, num = v}) + end + + return newRewards +end + +function GFunc.getRandomIndex(weightArr) + if #weightArr <= 0 then + return + end + local maxWeight = 0 + for i, v in ipairs(weightArr) do + maxWeight = maxWeight + v + end + local randomWeight = math.random(1, maxWeight) + local idx + for i, v in ipairs(weightArr) do + if randomWeight <= v then + idx = i + break + else + randomWeight = randomWeight - v + end + end + return idx +end + +-- function GFunc.getRewardsStr(rewards) +-- if rewards == nil then +-- return +-- end + +-- local itemStr = "" +-- for k, v in ipairs(rewards) do +-- if v.type == GConst.REWARD_TYPE.ITEM then +-- itemStr = itemStr .. v.type .. "." .. v.item.cfg_id .. "." .. v.item.count +-- elseif v.type == GConst.REWARD_TYPE.EQUIP then +-- itemStr = itemStr .. v.type .. "." .. v.equip.id .. "." .. v.equip.eid +-- elseif v.type == GConst.REWARD_TYPE.JEWELRY then +-- itemStr = itemStr .. v.type .. "." .. v.jewelry.cfg_id .. "." .. v.jewelry.count +-- end +-- if k ~= #rewards then +-- itemStr = itemStr.. "|" +-- end +-- end +-- return itemStr +-- end + +function GFunc.copyStr(str) + CS.UnityEngine.GUIUtility.systemCopyBuffer = str +end + +function GFunc.getShakeSeq(obj, onlyKill, originScale, notForcerefresh) + originScale = originScale or 1 + if obj.shakeSeq then + if notForcerefresh then + return obj.shakeSeq + end + obj.shakeSeq:Kill() + obj.shakeSeq = nil + end + obj:setLocalScale(originScale, originScale, originScale) + if onlyKill then + return + end + obj.shakeSeq = obj:createBindTweenSequence() + -- obj.shakeSeq:AppendCallback(obj:setLocalEulerAngles(0, 0, 15)) + -- obj.shakeSeq:Append(obj:getTransform():DOLocalRotate(BF.Vector3(0, 0, -15), 0.2)) + -- obj.shakeSeq:Append(obj:getTransform():DOLocalRotate(BF.Vector3(0, 0, 15), 0.2)) + obj.shakeSeq:AppendInterval(2) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 1.12, 0.1)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 0.9, 0.11)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 1.1, 0.15)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 0.9, 0.2)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 1.05, 0.25)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 0.9, 0.3)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 1, 0.3)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale, 0.3)) + obj.shakeSeq:SetLoops(-1) + return obj.shakeSeq +end + +function GFunc.getShakeSeq2(obj, onlyKill, originScale, notForcerefresh) + originScale = originScale or 1 + if obj.shakeSeq then + if not notForcerefresh then + return obj.shakeSeq + end + obj.shakeSeq:Kill() + obj.shakeSeq = nil + end + obj:setLocalScale(originScale, originScale, originScale) + if onlyKill then + return + end + obj.shakeSeq = obj:createBindTweenSequence() + -- obj.shakeSeq:AppendCallback(obj:setLocalEulerAngles(0, 0, 15)) + -- obj.shakeSeq:Append(obj:getTransform():DOLocalRotate(BF.Vector3(0, 0, -15), 0.2)) + -- obj.shakeSeq:Append(obj:getTransform():DOLocalRotate(BF.Vector3(0, 0, 15), 0.2)) + obj.shakeSeq:AppendInterval(1) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 1.12, 0.1)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 0.9, 0.11)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 1.1, 0.15)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 0.9, 0.2)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 1.05, 0.25)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 0.9, 0.3)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale * 1, 0.3)) + obj.shakeSeq:Append(obj:getTransform():DOScale(originScale, 0.3)) + obj.shakeSeq:SetLoops(-1) + return obj.shakeSeq +end + +---@param obj UIPrefabObject +function GFunc.getShakeSeqRotate(obj, onlyKill, notForcerefresh) + if obj.shakeSeq then + if notForcerefresh then + return obj.shakeSeq + end + obj.shakeSeq:Kill() + obj.shakeSeq = nil + obj:setLocalEulerAngles(0,0,0) + end + if onlyKill then + return + end + ---@type UnityEngine.Transform + local objTrans = obj:getTransform() + obj.shakeSeq = obj:createBindTweenSequence() + obj.shakeSeq:AppendInterval(2) + local angle = 12 + obj.shakeSeq:Append(objTrans:DORotate({x=0,y=0,z=angle},0.2)) + obj.shakeSeq:Append(objTrans:DORotate({x=0,y=0,z=-angle},0.1)) + obj.shakeSeq:Append(objTrans:DORotate({x=0,y=0,z=angle},0.1)) + obj.shakeSeq:Append(objTrans:DORotate({x=0,y=0,z=-angle},0.07)) + obj.shakeSeq:Append(objTrans:DORotate({x=0,y=0,z=angle},0.07)) + obj.shakeSeq:Append(objTrans:DORotate({x=0,y=0,z=-angle},0.05)) + + obj.shakeSeq:SetLoops(-1) + return obj.shakeSeq +end + +function GFunc.getScaleQueueAni(root, rewardList, listCell, callBack) + if root.aniSeq then + root.aniSeq:Kill() + root.aniSeq = nil + end + root.aniSeq = root:createBindTweenSequence() + ---@type DG.Tweening.Sequence + local seq = root.aniSeq + local groupCell = {} + local index = 1 + + table.foreach(listCell, function(k, cell) + if groupCell[index] and #groupCell[index] >= 5 then + index = index + 1 + end + + if not groupCell[index] then + groupCell[index] = {} + end + + table.insert(groupCell[index], cell) + end) + + ---@type UnityEngine.Transform + local rewardListTrans = rewardList:getTransform() + -- ani + table.foreach(groupCell, function(row, cells) + table.foreach(cells, function(k, cell) + ---@type SummonRewardCell + local summonRewardCell = cell + local rewardType, id = summonRewardCell:getReward() + summonRewardCell:showMask() + local isNew = summonRewardCell:getIsFirstGet() + local rewardQlt = GFunc.getQuality(rewardType, id) + if rewardQlt and rewardQlt >= 4 and isNew then -- 紫色以上 + seq:AppendInterval(0.4) + seq:AppendCallback(function() summonRewardCell:showReward() end) + --seq:Append(rewardListTrans:DOShakePosition(0.4, 14, 18, 90,true)) -- 轻幅度震动 + seq:Append(rewardListTrans:DOShakePosition(1, 20, 18, 90,true)) -- 大力震动 + else + seq:AppendCallback(function() + summonRewardCell:showReward() + end) + end + + end) + seq:AppendInterval(0.1) + end) + seq:AppendCallback(function() + if callBack then + callBack() + end + end) + + return seq +end + +---@param obj UIPrefabObject +function GFunc.miningTipsMovePosY(obj, delay,callBack) + if obj.seq then + obj.seq:Kill() + obj.seq = nil + end + + obj.seq = obj:createBindTweenSequence() + ---@type UnityEngine.Transform + local trans = obj:getTransform() + local localPosY = trans.localPosition.y + + ---@type DG.Tweening.Sequence + local seq = obj.seq + seq:AppendInterval(delay) + seq:Append(trans:DOLocalMoveY(localPosY + 200, 1.2)) + seq:AppendCallback(function() + obj:setActive(false) + if callBack then + callBack() + end + end) + +end + +function GFunc.dataEncrypt(data) + if not VersionCompatible:supportDataEncryptVersion() then + return data + end + local numStr = CS.Security.XXTEA.Encrypt(tostring(data), GConst.SECRET_KEY) + return numStr +end + +function GFunc.dataDecrypt(data) + if not VersionCompatible:supportDataEncryptVersion() then + return data + end + local numStr = CS.Security.XXTEA.Decrypt(data, GConst.SECRET_KEY) + return tonumber(numStr) +end + +function GFunc.getTickCount() + if not VersionCompatible:supportDataEncryptVersion() then + return 0 + end + return math.floor(UnityTime.realtimeSinceStartup) +end + +function GFunc.IsGotServerTime() + if not VersionCompatible:supportDataEncryptVersion() then + return true + end + if not CS.BF.BFMain.IsGotServerTime then + return false + end + return true +end + +---得到展示奖励的图集名称,图片资源id +function GFunc.getFrameRes(type, id) + if type == GConst.REWARD_TYPE.REWARD_NONE then + return + end + + local qlt = 1 + local atlasPath = "" + if type == GConst.REWARD_TYPE.ITEM then + local ItemCfg = ConfigManager:getConfig("item") + + local config = ItemCfg[id] + if not config then + return + end + qlt = config.qlt + atlasPath = GConst.ATLAS_PATH.ICON_EQUIP + end + + if type == GConst.REWARD_TYPE.EQUIP then + local equipCfg = ConfigManager:getConfig("equip") + + local config = equipCfg[id] + if not config then + return + end + qlt = config.qlt + atlasPath = GConst.ATLAS_PATH.ICON_EQUIP + end + + if type == GConst.REWARD_TYPE.RUNES then + local runeCfg = ConfigManager:getConfig("runes") + local config = runeCfg[id] + if not config then + return + end + qlt = config.qlt + atlasPath = GConst.ATLAS_PATH.ICON_RUNE + end + + return atlasPath, GConst.HERO_FRAME[ GConst.QUALITY[qlt] ] or "frame_1", qlt +end + +---得到展示奖励的图集名称,图片资源id +function GFunc.getQuality(type, id) + if type == GConst.REWARD_TYPE.REWARD_NONE then + return + end + + local qlt = 1 + + if type == GConst.REWARD_TYPE.ITEM then + local ItemCfg = ConfigManager:getConfig("item") + + local config = ItemCfg[id] + if not config then + return + end + qlt = config.qlt + end + + if type == GConst.REWARD_TYPE.EQUIP then + local equipCfg = ConfigManager:getConfig("equip") + + local config = equipCfg[id] + if not config then + return + end + qlt = config.qlt + end + + if type == GConst.REWARD_TYPE.LEGACY then + local equipCfg = ConfigManager:getConfig("legacy") + + local config = equipCfg[id] + if not config then + return + end + qlt = config.qlt + end + + if type == GConst.REWARD_TYPE.RUNES then + local runeCfg = ConfigManager:getConfig("runes") + local config = runeCfg[id] + if not config then + return + end + qlt = config.qlt + end + + return qlt +end + +---得到展示奖励的图集名称,图片资源id +function GFunc.getRewardIconRes(type, id) + if type == GConst.REWARD_TYPE.REWARD_NONE then + return + end + + if type == GConst.REWARD_TYPE.ITEM then + return GFunc.getIconRes(id) + end + + if type == GConst.REWARD_TYPE.EQUIP then + return GFunc.getEquipIconRes(id) + end + + if type == GConst.REWARD_TYPE.RUNES then + return GFunc.getRuneIconRes(id) + end + + if type == GConst.REWARD_TYPE.LEGACY then + return GFunc.getLegacyIconRes(id) + end +end + +function GFunc.getIconRes(itemId) + local ItemCfg = ConfigManager:getConfig("item") + local config = ItemCfg[itemId] + if not config then + return + end + return GConst.ATLAS_PATH.ICON_ITEM, tostring(config.icon) +end + +function GFunc.getEquipIconRes(equipId) + local EquipCfg = ConfigManager:getConfig("equip") + local config = EquipCfg[equipId] + if not config then + return + end + return GConst.ATLAS_PATH.ICON_EQUIP, tostring(config.icon) +end + +function GFunc.getRuneIconRes(runeId) + local runeCfg = ConfigManager:getConfig("runes") + local config = runeCfg[runeId] + if not config then + return + end + return GConst.ATLAS_PATH.ICON_RUNE, tostring(config.icon) +end + +function GFunc.getLegacyIconRes(legacyId) + local legacyCfg = ConfigManager:getConfig("legacy") + local config = legacyCfg[legacyId] + if not config then + return + end + return GConst.ATLAS_PATH.ICON_LEGACY, tostring(config.icon) +end + +---得到展示奖励的图集名称,图片资源id +function GFunc.getRewardName(type, id) + if type == GConst.REWARD_TYPE.REWARD_NONE then + return + end + + if type == GConst.REWARD_TYPE.ITEM then + return I18N:getText("item", id, "name") + end + + if type == GConst.REWARD_TYPE.EQUIP then + return I18N:getText("equip", id, "desc") + end + + if type == GConst.REWARD_TYPE.RUNES then + return I18N:getText("rune", id, "desc") + end +end + + +function GFunc.performDurationDelay(obj, delay, callback) + if obj.sequence then + obj.sequence:Kill() + obj.sequence = nil + end + local sequence = obj:createBindTweenSequence() + delay = delay or 0 + delay = math.max(0, delay) + obj.sequence = sequence + + sequence:AppendInterval(delay or 0) + sequence:OnComplete(callback) + + return sequence +end + +function GFunc.compareVersionThan(version1, version2, include) + if not version1 or not version2 then + return false + end + + local versionStrs = string.split(version1, ".") + local versionNum1 = tonumber(versionStrs[1]) + local versionNum2 = tonumber(versionStrs[2]) + local versionNum3 = tonumber(versionStrs[3]) + + local versionStrs2 = string.split(version2, ".") + local versionNum21 = tonumber(versionStrs2[1]) + local versionNum22 = tonumber(versionStrs2[2]) + local versionNum23 = tonumber(versionStrs2[3]) + + if not versionNum1 or not versionNum2 or not versionNum3 or not versionNum21 or not versionNum22 or not versionNum23 then + return false + end + + if versionNum1 > versionNum21 then + return true, true + elseif versionNum1 < versionNum21 then + return false + end + + if versionNum2 > versionNum22 then + return true, true + elseif versionNum2 < versionNum22 then + return false + end + + if versionNum3 > versionNum23 then + return true + elseif versionNum3 < versionNum23 then + return false + end + + if include then + return true + end + + return false +end + +function GFunc.getFormatCfgRewards(rewards, onlyOne) + local cfgRewards = GFunc.getArray() + for _, reward in ipairs(rewards) do + local cfgReward = { + type = reward.type, + id = reward.id, + count = { + value = reward.count.value, + unit = reward.count.unit, + }, + } + if onlyOne then + return cfgReward + else + table.insert(cfgRewards, reward) + end + end + + return cfgRewards +end + +function GFunc.getUpdateDataMap(fnName, dataName, dataMap, costs, rewards, fnArgs) + local params = { + fnName = fnName, + dataType = dataName, + data = dataMap, + costs = costs or GFunc.getArray(), + rewards = rewards or GFunc.getArray(), + fnArgs = fnArgs + } + return params +end + +function GFunc.isShenhe() + return CS.BF.BFMain.IsShenhe +end + +function GFunc.getArray() + local array = {} + setmetatable(array, {__jsontype = "array"}) + return array +end + +function GFunc.showProbability() + local language = I18N:getCurLanguage() + if language == "ko" or language == "ja" then + return true + end + return false +end + +function GFunc.getTable(struct) + local t = {} + if struct then + for k, v in pairs(struct) do + if type(v) == "table" then + t[k] = GFunc.getTable(v) + else + t[k] = v + end + end + end + + return t +end + +function GFunc.formatTimeStep(timestep) + if timestep and timestep > 10000000000 then + timestep = timestep // 1000 + end + return timestep +end + +function GFunc.randomPos(idx, pos) + local posX, posY + if idx == 1 then + posX = math.random(-50, 0) + posY = math.random(0, 50) + elseif idx == 2 then + posX = math.random(0, 50) + posY = math.random(0, 50) + elseif idx == 3 then + posX = math.random(-50, 0) + posY = math.random(-50, 0) + elseif idx == 4 then + posX = math.random(0, 50) + posY = math.random(-50, 0) + else + posX = math.random(-50, 50) + posY = math.random(-50, 50) + end + return posX + pos.x, posY + pos.y +end + +function GFunc.imgFly(flyImg, beginPos, endPos, callback) + if flyImg.aniSeq then + flyImg.aniSeq:Kill() + end + local scale = 0.5 + flyImg:setAnchoredPosition(beginPos.x, beginPos.y) + flyImg:setVisible(true, 0.1) + + local maxDis = 2000 + local dis = BF.Vector2Distance(beginPos, endPos) + local time = dis/maxDis + local aniSeq = flyImg:createBindTweenSequence() + -- aniSeq:Append(flyImg:getTransform():DOScale(BF.Vector3(scale + 0.2, scale + 0.2, scale + 0.2), 0.1):SetEase(CS.DG.Tweening.Ease.InCubic)) + aniSeq:Append(flyImg:getTransform():DOScale(BF.Vector3(scale, scale, scale), 0.04):SetEase(CS.DG.Tweening.Ease.InCubic)) + -- aniSeq:AppendInterval(0.3) + aniSeq:Append(flyImg:getTransform():DOAnchorPos(endPos, time):SetEase(CS.DG.Tweening.Ease.InCubic)) + aniSeq:Join(flyImg:getTransform():DOScale(BF.Vector3(0.1, 0.1, 0.1), time):SetEase(CS.DG.Tweening.Ease.InCubic)) + aniSeq:AppendCallback(function() + flyImg:setVisible(false) + if callback then + callback() + end + end) + flyImg.aniSeq = aniSeq +end + +function GFunc.doScaleFlyImg(img, callback) + if img.aniSeq then + img.aniSeq:Kill() + img:setLocalScale(1, 1, 1) + end + local transform = img:getTransform() + local localScale = transform.localScale + local scale = localScale.x + + local aniSeq = img:createBindTweenSequence() + aniSeq:Append(img:getTransform():DOScale(BF.Vector3(scale + 0.1, scale + 0.1, scale + 0.1), 0.08):SetEase(CS.DG.Tweening.Ease.InCubic)) + aniSeq:Append(img:getTransform():DOScale(BF.Vector3(scale - 0.08, scale - 0.08, scale - 0.08), 0.08):SetEase(CS.DG.Tweening.Ease.InCubic)) + aniSeq:Append(img:getTransform():DOScale(BF.Vector3(scale, scale, scale), 0.08):SetEase(CS.DG.Tweening.Ease.InCubic)) + aniSeq:AppendCallback(function() + if callback then + callback() + end + end) + img.aniSeq = aniSeq +end + +function GFunc.doScaleQuickZoom(img,callback) + if img.aniSeq then + img.aniSeq:Kill() + end + ---@type UnityEngine.Transform + local transform = img:getTransform() + local localScale = transform.localScale + local scale = 1 + ---@type DG.Tweening.Sequence + local aniSeq = img:createBindTweenSequence() + aniSeq:Append(transform:DOScale(1.4, 0.1)) + aniSeq:Append(transform:DOScale(1, 0.06)) + aniSeq:AppendCallback(function() + if callback then + callback() + end + end) + img.aniSeq = aniSeq +end + +-- colorType 1 白色, 2 黑色 +function GFunc.setAdsSprite(img, isGrey, colorType) + if not img then + return + end + + colorType = colorType or 1 + local skip = DataManager.MallActData:skipAd() + local icon = "" + if colorType == 1 then + icon = skip and "common_ad_4" or "common_ad_3" + end + + if colorType == 2 then + icon = skip and "common_ad_2" or "common_ad_1" + end + + if isGrey then + icon = skip and "common_ad_6" or "common_ad_5" + end + img:setSprite(GConst.ATLAS_PATH.COMMON, icon) + --img:setSprite(GConst.ATLAS_PATH.COMMON, icon, function () + -- img:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE):SetNativeSize() + --end) +end + +function GFunc.getAdSprite() + local skip = DataManager.MallActData:skipAd() + return skip and "common_ad_4" or "common_ad_3" +end + +function GFunc.centerImgAndTx(imgObj, txObj, spacing, offset) + spacing = spacing or 0 + offset = offset or 0 + local imgW = imgObj:getSizeDelta().x + local txW = txObj:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredWidth + txObj:setSizeDeltaX(txW) + local w = (imgW + txW + spacing) / 2 + imgObj:setAnchoredPositionX(imgW / 2 - w + offset) + txObj:setAnchoredPositionX(w - txW / 2 + offset) +end + +function GFunc.centerTxAndTx(txObj1, txObj2, spacing) + spacing = spacing or 0 + 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 w = (txW2 + txW + spacing) / 2 + txObj1:setAnchoredPositionX(txW / 2 - w) + 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 + txObj:setSizeDeltaX(txW) + imgObj:setSizeDeltaX(txW + spacing * 2) +end + +function GFunc.formatAdImg(adImg) + if DataManager.MonthlyData:skipAd() then + adImg:setSprite(GConst.ATLAS_PATH.COMMON, "common_ad_1") + else + adImg:setSprite(GConst.ATLAS_PATH.COMMON, "common_ad") + end +end + +function GFunc.organizeCfg(cfgId, cfg) + local result = {} + result.cfgId = cfgId + result.cfg = cfg + return result +end + +function GFunc.gemEnough(needNum,showToast) -- 钻石是否足够 + return GFunc.checkCost(GConst.ItemConst.ITEM_ID_GEM, needNum, showToast) --判断不提示,点击才提示 +end + +function GFunc.getCostContentWithColor(key) + local cost = GFunc.getConstIntValue(key) + local content = ""..cost.."" + local bigNum = { + unit = 0, + value = cost + } + if GFunc.gemEnough(bigNum, false) then + content = tostring(cost) + end + return content +end + +---@param txtObj UIPrefabObject 文本对象 +---@param icon UIPrefabObject 图片对象 +---@param bgImg UIPrefabObject 背景图片 +---设置图片和文本居中, 文本需要左右居中对齐 +function GFunc.setMiddlePosX(txtObj, icon, bgImg) + local txtRectWidth = txtObj:getTransform().rect.width + local iconRectWidth = icon:getTransform().rect.width + local bgImgRectWidth = bgImg:getTransform().rect.width + local halfBgWidth = bgImgRectWidth * 0.5 + -- 文本的宽度 + local meshPro = txtObj:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + local width = meshPro.preferredWidth + local txtMinWidth = math.max(width, txtRectWidth) + + -- 以bg中心点为锚点时 + -- 文本距离边界的距离 + local txtPadding = halfBgWidth - txtMinWidth + txtPadding = txtPadding > 0 and txtPadding or 0 + -- 图片距离边界距离 + local iconPadding = halfBgWidth - iconRectWidth + iconPadding = iconPadding > 0 and iconPadding or 0 + + local maxPadding = math.max(txtPadding, iconPadding) + local minPadding = math.min(txtPadding, iconPadding) + local offset = (maxPadding - minPadding) * 0.5 + + if txtPadding > iconPadding then + txtObj:setAnchoredPositionX(txtMinWidth * 0.5 + offset) + icon:setAnchoredPositionX(-iconRectWidth * 0.5 + offset) + else + txtObj:setAnchoredPositionX(txtMinWidth * 0.5 - offset) + icon:setAnchoredPositionX(-iconRectWidth * 0.5 - offset) + end +end + +---计算最小值 +function GFunc.getCalcMinVal(arr) + local min = arr[1] + for i, v in ipairs(arr) do + if min > v then + min = v + end + end + return min +end +---计算最大值 +function GFunc.getCalcMaxVal(arr) + local max = arr[1] or 0 + for i, v in ipairs(arr) do + if max < v then + max = v + end + end + return max +end + +function GFunc.getRewardTableByRewardList(rewardList) + local newRewards = {} + for _, reward in ipairs(rewardList) do + table.insert(newRewards, reward) + end + + return newRewards +end + +function GFunc.getRewardTableByReward(reward) + return GFunc.getRewardTable(reward.type, reward.id, reward.count) +end + +function GFunc.getRewardTable(type, id, count) + if type == GConst.REWARD_TYPE.EQUIP then + return GFunc.getServerEquipRewardTable(id, count) + end + return { + type = type, + id = id, + count = { + unit = count.unit, + value = count.value, + } + } +end + +function GFunc.formatRewardsToServerStruct(rewardList) + local rewards = {} + for _, reward in ipairs(rewardList) do + local serverReward = GFunc.getServerRewardTable(reward.type, reward.id, reward.count) + table.insert(rewards, serverReward) + end + return rewards +end + +function GFunc.getServerRewardTable(type, id, count) + if type == GConst.REWARD_TYPE.ITEM then + return GFunc.getServerItemRewardTable(id, count) + elseif type == GConst.REWARD_TYPE.RUNES then + return GFunc.getServerRuneRewardTable(id, BigNumOpt.bigNum2Num(count)) + elseif type == GConst.REWARD_TYPE.EQUIP then + return GFunc.getServerEquipRewardTable(id, count) + end +end + +function GFunc.getServerItemRewardTable(id, count) + local reward = { + type = GConst.REWARD_TYPE.ITEM, + item = { + id = id, + count = { + unit = count.unit, + value = count.value, + } + }, + } + BigNumOpt.adjustRealBigNum(reward.item.count) + return reward +end + +function GFunc.getServerRuneRewardTable(id, level) + return { + type = GConst.REWARD_TYPE.RUNES, + rune = { + id = id, + level = level, + }, + } +end + +function GFunc.getServerEquipRewardTable(id, level, count) + local reward = { + type = GConst.REWARD_TYPE.EQUIP, + equip = { + id = id, + level = level, + count = count + }, + } + return reward +end + +function GFunc.checkTableValueSame(standardTable, compareTable, debug) + if type(standardTable) ~= "table" or type(compareTable) ~= "table" then + if debug and standardTable ~= compareTable then + Logger.logHighlight(standardTable) + end + return standardTable == compareTable + end + + for k, v in pairs(standardTable) do + local v2 = compareTable[k] + if v2 == nil then + if debug then + Logger.logHighlight(k) + end + return false + end + + if not GFunc.checkTableValueSame(v, v2, debug) then + return false + end + end + + return true +end + +function GFunc.getRealItemAddChange(itemId, bigNum) + local hadBigNum = DataManager.BagData.ItemData:getItemBigNumById(itemId) + local addBigNum = BigNumOpt.bigNumAdd(hadBigNum, bigNum) + return BigNumOpt.bigNumSub(addBigNum, hadBigNum) +end + +function GFunc.getRealItemSubChange(itemId, bigNum) + local hadBigNum = DataManager.BagData.ItemData:getItemBigNumById(itemId) + local subBigNum = BigNumOpt.bigNumSub(hadBigNum, bigNum) + return BigNumOpt.bigNumSub(hadBigNum, subBigNum) +end + +-- 获取挖矿研究得到的属性加成 +function GFunc.getMainHeroAttributeVal(key) + local mainEntity = DataManager.HeroData:getMainHeroEntity() + local allAttr = mainEntity:getAllAttr() + local result = allAttr[key] + return result +end + +function GFunc.checkAttrWhitServerAttr() + if not DataManager.serverAttr or (not DataManager.serverAttr.attr_set) then + return + end + + table.foreach(DataManager.serverAttr.attr_set, function(id, val) + local playerAttr = GFunc.getMainHeroAttributeVal(id) + if not playerAttr then + Logger.logHighlight("玩家没有属性:"..id) + return + end + + --playerAttr = BigNumOpt.bigNumDivNum(playerAttr, 10000) + if BigNumOpt.bigNumCompare(playerAttr, val) ~= 0 then + Logger.logError("属性不一致!ID:"..id.." PlayerVal:"..BigNumOpt.bigNum2Str(playerAttr).." ServerVal:"..BigNumOpt.bigNum2Str(val)) + else + Logger.logHighlight("属性一致:ID"..id.." val: "..BigNumOpt.bigNum2Str(val)) + end + end) +end + +function GFunc.showCurrencyFlyAction(rewards, pos) + local flyPos = {} + if not pos then + pos = {x = 0, y = 0} + else + local sPoint = UIManager:getUICameraComponent():WorldToScreenPoint(pos) + pos = CS.BF.Utils.RectTransformScreenPointToLocalPointInRectangle(UIManager:getMainCanvasTransform(), sPoint.x, sPoint.y, UIManager:getUICameraComponent()) + end + for i, reward in ipairs(rewards) do + if reward.type == GConst.REWARD_TYPE.ITEM then + local allPos = {} + for i = 1, 4 do + local posX, posY = GFunc.randomPos(i, pos) + allPos[i] = {x = posX, y = posY} + end + flyPos[reward.item.id] = allPos + end + end + + UIManager:showCurrencyAction(flyPos) +end + +function GFunc.getItemRewardNum(reward) + local type = ConfigManager:getConfig("item")[reward.id].type + if type == 6 then + return BigNumOpt.bigNum2Num(reward.count) + end + return BigNumOpt.bigNum2Str(reward.count) +end + +function GFunc.getSkillEffectStr(id, lv) + local str = I18N:getText("skill", id, "desc") + local cfg = ConfigManager:getConfig("skill")[id] + local baseNum = cfg.string_num_base + local growNum = cfg.string_num_grow + local tab = {} + for i,v in ipairs(baseNum) do + table.insert(tab, baseNum[i] + (lv - 1)*growNum[i]) + end + local idx = 0 + str = string.gsub(str, '{%d+}', function (s) + idx = idx + 1 + return tostring(tab[idx]) + end) + + return str +end + +--[[ + 设置tabLe只速 出现改写会抛出Lua error + 用法locaL readOnlyCfg = GFunc.readOnlyTab(cfg) return readOnlyCfg + 增加了防重置设置read_onLy的机制 + Lua5.3支持 1) table库支持调用元方法,所以table.remove table.insert也会抛出错误, + 2)不用定义_ipairs 5.3 ipairs迭代器支持访问元方法__index,pairs迭代器next不支持故需要元方法_pairs + 低版本Lua此网数不能完全按照预期工作 +]] + +function GFunc.readOnlyTab(inputTable) + local travelled_tables = {} + local function _read_only(tbl) + if not travelled_tables[tbl] then + local tbl_mt = getmetatable(tbl) + if not tbl_mt then + tbl_mt = {} + setmetatable(tbl, tbl_mt) + end + local proxy = tbl_mt._read_only__proxy + if not proxy then + proxy = {} + tbl_mt.__read_only_proxy = proxy + local proxy_mt = { + __index = tbl, + __newindex = function (t, k, v) error( "error write to a read-only table with key = " .. tostring(k)) end, + __pairs = function (t) return pairs(tbl) end, + -- __ipairs = function (t) return ipairs(tbl) end, 5.3版本不需要此方法 + _len = function (t) return #tbl end, + __read_only_proxy = proxy + } + setmetatable(proxy, proxy_mt) + end + travelled_tables[tbl] = proxy + for k, v in pairs(tbl) do + if type(v) == "table" then + tbl[k] = _read_only(v) + end + end + end + return travelled_tables[tbl] + end + return _read_only(inputTable) +end + +function GFunc.getItemNumStr(itemID) + local bigNum = DataManager.BagData.ItemData:getItemBigNumById(itemID) + local itemCfg = ConfigManager:getConfig("item")[itemID] + if itemCfg.type == 6 then + return BigNumOpt.bigNum2Num(bigNum) + end + return BigNumOpt.bigNum2Str(bigNum) +end + +return GFunc \ No newline at end of file diff --git a/lua/app/global/global_func.lua.meta b/lua/app/global/global_func.lua.meta new file mode 100644 index 00000000..824ae08d --- /dev/null +++ b/lua/app/global/global_func.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 152a56a2b31c6ee43905d075b965c727 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/global/global_unity_func.lua b/lua/app/global/global_unity_func.lua new file mode 100644 index 00000000..763e29b3 --- /dev/null +++ b/lua/app/global/global_unity_func.lua @@ -0,0 +1,23 @@ +BF.exports.luaUpdate = function() + Game:update() +end + +BF.exports.luaOnDestroy = function() + Game:onDestroy() +end + +BF.exports.luaOnLogMessageReceived = function(logString, stackTrace) + Game:onLogMessageReceived(logString, stackTrace) +end + +BF.exports.luaOnApplicationFocus = function(hasFocus) + Game:onApplicationFocus(hasFocus) +end + +BF.exports.luaOnApplicationPause = function(pauseStatus) + Game:onApplicationPause(pauseStatus) +end + +BF.exports.luaOnApplicationQuit = function() + Game:onApplicationQuit() +end \ No newline at end of file diff --git a/lua/app/global/global_unity_func.lua.meta b/lua/app/global/global_unity_func.lua.meta new file mode 100644 index 00000000..1706447b --- /dev/null +++ b/lua/app/global/global_unity_func.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9aef2a4c255b79a46a70f870da551cbe +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/global/render_const.lua b/lua/app/global/render_const.lua new file mode 100644 index 00000000..478756df --- /dev/null +++ b/lua/app/global/render_const.lua @@ -0,0 +1,10 @@ +local RenderConst = {} + +local RENDER_SETTINGS_DEFAULT = 1 +local RENDER_SETTINGS_BATTLE = 2 +local RENDER_SETTINGS_ROLE = 3 +RenderConst.RENDER_SETTINGS_DEFAULT = RENDER_SETTINGS_DEFAULT +RenderConst.RENDER_SETTINGS_BATTLE = RENDER_SETTINGS_BATTLE +RenderConst.RENDER_SETTINGS_ROLE = RENDER_SETTINGS_ROLE + +return RenderConst \ No newline at end of file diff --git a/lua/app/global/render_const.lua.meta b/lua/app/global/render_const.lua.meta new file mode 100644 index 00000000..d6f7b784 --- /dev/null +++ b/lua/app/global/render_const.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 05cea4840fcca924cb814395e365aaea +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/hotfix.meta b/lua/app/hotfix.meta new file mode 100644 index 00000000..89951c0c --- /dev/null +++ b/lua/app/hotfix.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8ce008580c0441b4a97905a63baa53da +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/hotfix/core.meta b/lua/app/hotfix/core.meta new file mode 100644 index 00000000..c5d7759b --- /dev/null +++ b/lua/app/hotfix/core.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8e8e76cdf0530934e9b65e1ffd5e9d51 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/hotfix/core/hotfixcore.lua b/lua/app/hotfix/core/hotfixcore.lua new file mode 100644 index 00000000..9d90a011 --- /dev/null +++ b/lua/app/hotfix/core/hotfixcore.lua @@ -0,0 +1,49 @@ +if BF then + BF.exports.HotfixCore = {} +else + HotfixCore = {} +end + +local util = require "app/hotfix/util" + +HotfixCore.public = xlua.hotfix + +HotfixCore.public_ex = util.hotfix_ex + +HotfixCore.private = function (class, funcName, fixFunc) + xlua.private_accessible(class) + xlua.hotfix(class, funcName, fixFunc) +end + +HotfixCore.private_ex = function (class, funcName, fixFunc) + xlua.private_accessible(class) + util.hotfix_ex(class, funcName, fixFunc) +end + +HotfixCore.ienumerator = function (class, funcName, callback) + xlua.hotfix(class, funcName, function () + return util.cs_generator(callback) + end) +end + +HotfixCore.ienumerator_private = function (class, funcName, callback) + xlua.private_accessible(class) + xlua.hotfix(class, funcName, function () + return util.cs_generator(callback) + end) +end + +-------------------------------------------------------- + +HotfixCore.execute = function (luaTemplate, class, funcCfg) + for hotfixType, array in pairs(funcCfg) do + local hotfixFunc = HotfixCore[hotfixType] + if hotfixFunc then + for _, funcName in ipairs(array) do + if luaTemplate[funcName] then + hotfixFunc(class, funcName, luaTemplate[funcName]) + end + end + end + end +end \ No newline at end of file diff --git a/lua/app/hotfix/core/hotfixcore.lua.meta b/lua/app/hotfix/core/hotfixcore.lua.meta new file mode 100644 index 00000000..cd7a1ec2 --- /dev/null +++ b/lua/app/hotfix/core/hotfixcore.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 05e704c99b38e6249a0a6b7bc8d520ab +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/hotfix/hotfixmain.lua b/lua/app/hotfix/hotfixmain.lua new file mode 100644 index 00000000..58471c92 --- /dev/null +++ b/lua/app/hotfix/hotfixmain.lua @@ -0,0 +1,13 @@ +--core +require "app/hotfix/core/hotfixcore" + +local HotfixMain = {} + +function HotfixMain:init() + local whitelist = require "app/hotfix/whitelist" + for i, path in ipairs(whitelist) do + pcall(require (path)) + end +end + +HotfixMain:init() diff --git a/lua/app/hotfix/hotfixmain.lua.meta b/lua/app/hotfix/hotfixmain.lua.meta new file mode 100644 index 00000000..b317f360 --- /dev/null +++ b/lua/app/hotfix/hotfixmain.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dff268abb19ca534f904700ce918fb54 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/hotfix/item.meta b/lua/app/hotfix/item.meta new file mode 100644 index 00000000..6142a052 --- /dev/null +++ b/lua/app/hotfix/item.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 73b68596d96527b47802291fb3091231 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/hotfix/item/hotfix_timelinemanager.lua b/lua/app/hotfix/item/hotfix_timelinemanager.lua new file mode 100644 index 00000000..b6b87c10 --- /dev/null +++ b/lua/app/hotfix/item/hotfix_timelinemanager.lua @@ -0,0 +1,51 @@ +--格式:one csharp class, one lua table +--更多操作:https://github.com/Tencent/xLua/blob/master/Assets/XLua/Doc/faq.md +--https://github.com/Tencent/xLua/blob/master/Assets/XLua/Doc/hotfix.md +local Hotfix_EffectHelper = {} + +-------------------配置-------------------- +-- 热更csharp类 +local CSClass = CS.BF.EffectHelper + +-- 配置对应类型的函数,cs/lua两端的函数名保持一致 +-- 重载函数需在热更lua函数中做参数判断 +-- 配置中'_ex'指可以在热更函数中再次调用csharp对应的函数 +local FuncCfg = +{ + -- public = { + + -- }, + public_ex = { + "Play", + }, + -- private = { + + -- }, + -- private_ex = { + + -- }, + -- ienumerator = { + + -- }, + -- ienumerator_private = { + + -- } +} + +---------------------------------------------- + +------------------具体实现---------------------- +function Hotfix_EffectHelper:Play(gameobject) + Logger.log("lua2csharp hotfix %s", gameobject.name) + self:Play(gameobject) --self指的是对应的c#实例 +end + +---------------------------------------------------- + +----------------------执行--------------------------- +function Hotfix_EffectHelper:__execute() + HotfixCore.execute(self, CSClass, FuncCfg) +end + +Hotfix_EffectHelper:__execute() +---------------------------------------------------- diff --git a/lua/app/hotfix/item/hotfix_timelinemanager.lua.meta b/lua/app/hotfix/item/hotfix_timelinemanager.lua.meta new file mode 100644 index 00000000..3329d149 --- /dev/null +++ b/lua/app/hotfix/item/hotfix_timelinemanager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4af70e16afa360c4bb648bb4a1804f37 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/hotfix/util.lua b/lua/app/hotfix/util.lua new file mode 100644 index 00000000..31d1e2cb --- /dev/null +++ b/lua/app/hotfix/util.lua @@ -0,0 +1,178 @@ +-- Tencent is pleased to support the open source community by making xLua available. +-- Copyright (C) 2016 THL A29 Limited, a Tencent company. All rights reserved. +-- Licensed under the MIT License (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at +-- http://opensource.org/licenses/MIT +-- Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. + +local unpack = unpack or table.unpack + +local function async_to_sync(async_func, callback_pos) + return function(...) + local _co = coroutine.running() or error ('this function must be run in coroutine') + local rets + local waiting = false + local function cb_func(...) + if waiting then + assert(coroutine.resume(_co, ...)) + else + rets = {...} + end + end + local params = {...} + table.insert(params, callback_pos or (#params + 1), cb_func) + async_func(unpack(params)) + if rets == nil then + waiting = true + rets = {coroutine.yield()} + end + + return unpack(rets) + end +end + +local function coroutine_call(func) + return function(...) + local co = coroutine.create(func) + assert(coroutine.resume(co, ...)) + end +end + +local move_end = {} + +local generator_mt = { + __index = { + MoveNext = function(self) + self.Current = self.co() + if self.Current == move_end then + self.Current = nil + return false + else + return true + end + end; + Reset = function(self) + self.co = coroutine.wrap(self.w_func) + end + } +} + +local function cs_generator(func, ...) + local params = {...} + local generator = setmetatable({ + w_func = function() + func(unpack(params)) + return move_end + end + }, generator_mt) + generator:Reset() + return generator +end + +local function loadpackage(...) + for _, loader in ipairs(package.searchers) do + local func = loader(...) + if type(func) == 'function' then + return func + end + end +end + +local function auto_id_map() + local hotfix_id_map = require 'hotfix_id_map' + local org_hotfix = xlua.hotfix + xlua.hotfix = function(cs, field, func) + local map_info_of_type = hotfix_id_map[typeof(cs):ToString()] + if map_info_of_type then + if func == nil then func = false end + local tbl = (type(field) == 'table') and field or {[field] = func} + for k, v in pairs(tbl) do + local map_info_of_methods = map_info_of_type[k] + local f = type(v) == 'function' and v or nil + for _, id in ipairs(map_info_of_methods or {}) do + CS.XLua.HotfixDelegateBridge.Set(id, f) + end + --CS.XLua.HotfixDelegateBridge.Set( + end + xlua.private_accessible(cs) + else + return org_hotfix(cs, field, func) + end + end +end + +--和xlua.hotfix的区别是:这个可以调用原来的函数 +local function hotfix_ex(cs, field, func) + assert(type(field) == 'string' and type(func) == 'function', 'invalid argument: #2 string needed, #3 function needed!') + local function func_after(...) + xlua.hotfix(cs, field, nil) + local ret = {func(...)} + xlua.hotfix(cs, field, func_after) + return unpack(ret) + end + xlua.hotfix(cs, field, func_after) +end + +local function bind(func, obj) + return function(...) + return func(obj, ...) + end +end + +--为了兼容luajit,lua53版本直接用|操作符即可 +local enum_or_op = debug.getmetatable(CS.System.Reflection.BindingFlags.Public).__bor +local enum_or_op_ex = function(first, ...) + for _, e in ipairs({...}) do + first = enum_or_op(first, e) + end + return first +end + +-- description: 直接用C#函数创建delegate +local function createdelegate(delegate_cls, obj, impl_cls, method_name, parameter_type_list) + local flag = enum_or_op_ex(CS.System.Reflection.BindingFlags.Public, CS.System.Reflection.BindingFlags.NonPublic, + CS.System.Reflection.BindingFlags.Instance, CS.System.Reflection.BindingFlags.Static) + local m = parameter_type_list and typeof(impl_cls):GetMethod(method_name, flag, nil, parameter_type_list, nil) + or typeof(impl_cls):GetMethod(method_name, flag) + return CS.System.Delegate.CreateDelegate(typeof(delegate_cls), obj, m) +end + +local function state(csobj, state) + local csobj_mt = getmetatable(csobj) + for k, v in pairs(csobj_mt) do rawset(state, k, v) end + local csobj_index, csobj_newindex = state.__index, state.__newindex + state.__index = function(obj, k) + return rawget(state, k) or csobj_index(obj, k) + end + state.__newindex = function(obj, k, v) + if rawget(state, k) ~= nil then + rawset(state, k, v) + else + csobj_newindex(obj, k, v) + end + end + debug.setmetatable(csobj, state) + return state +end + +local function print_func_ref_by_csharp() + local registry = debug.getregistry() + for k, v in pairs(registry) do + if type(k) == 'number' and type(v) == 'function' and registry[v] == k then + local info = debug.getinfo(v) + print(string.format('%s:%d', info.short_src, info.linedefined)) + end + end +end + +return { + async_to_sync = async_to_sync, + coroutine_call = coroutine_call, + cs_generator = cs_generator, + loadpackage = loadpackage, + auto_id_map = auto_id_map, + hotfix_ex = hotfix_ex, + bind = bind, + createdelegate = createdelegate, + state = state, + print_func_ref_by_csharp = print_func_ref_by_csharp, +} diff --git a/lua/app/hotfix/util.lua.meta b/lua/app/hotfix/util.lua.meta new file mode 100644 index 00000000..108d33b4 --- /dev/null +++ b/lua/app/hotfix/util.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 62049d52c9840944180d12af0d68b0fb +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/hotfix/whitelist.lua b/lua/app/hotfix/whitelist.lua new file mode 100644 index 00000000..ba00ac84 --- /dev/null +++ b/lua/app/hotfix/whitelist.lua @@ -0,0 +1,9 @@ +--[[ +whitelist里面的才会被热更 +一个c#类对应一个lua +]] +local WhiteList = +{ +} + +return WhiteList \ No newline at end of file diff --git a/lua/app/hotfix/whitelist.lua.meta b/lua/app/hotfix/whitelist.lua.meta new file mode 100644 index 00000000..82493e7e --- /dev/null +++ b/lua/app/hotfix/whitelist.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 229362f669ac664468fb98072e17c5c3 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module.meta b/lua/app/module.meta new file mode 100644 index 00000000..a4200f95 --- /dev/null +++ b/lua/app/module.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23877fe1f244749478e3805c963875be +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/activity.meta b/lua/app/module/activity.meta new file mode 100644 index 00000000..12f844fe --- /dev/null +++ b/lua/app/module/activity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4b3679aa9ba1c9f469709a41dd3c9db0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/adventure.meta b/lua/app/module/adventure.meta new file mode 100644 index 00000000..16442e38 --- /dev/null +++ b/lua/app/module/adventure.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3b293e842f788104e8b98d4ba2b6e2c9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/arena_manager.meta b/lua/app/module/arena_manager.meta new file mode 100644 index 00000000..b0f1f17b --- /dev/null +++ b/lua/app/module/arena_manager.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9cbf2d1e989d90542a4222c9e717bb92 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/base_module.lua b/lua/app/module/base_module.lua new file mode 100644 index 00000000..1b5923b2 --- /dev/null +++ b/lua/app/module/base_module.lua @@ -0,0 +1,101 @@ +---@class BaseModule +local BaseModule = class("BaseModule") + +function BaseModule:scheduleGlobal(func, inter) + local sid = SchedulerManager:scheduleGlobal(func, inter) + if self._schedulerIds == nil then + self._schedulerIds = {} + end + table.insert(self._schedulerIds, sid) + return sid +end + +function BaseModule:resumeScheduleGlobal(sid) + SchedulerManager:resume(sid) +end + +function BaseModule:pauseScheduleGlobal(sid) + SchedulerManager:pause(sid) +end + +function BaseModule:performWithDelayGlobal(func, delay) + local sid = SchedulerManager:performWithDelayGlobal(func, delay) + if self._schedulerIds == nil then + self._schedulerIds = {} + end + table.insert(self._schedulerIds, sid) + return sid +end + +function BaseModule:unscheduleGlobal(sid) + if self._schedulerIds == nil then + return + end + for k, v in ipairs(self._schedulerIds) do + if v == sid then + table.remove(self._schedulerIds, k) + break + end + end + SchedulerManager:unscheduleGlobal(sid) +end + +function BaseModule:addEventListener(key, func, priority) + local tag = EventManager:addEventListener(key, func, priority) + self._baseEventListeners = self._baseEventListeners or {} + self._baseEventListeners[key] = tag +end + +function BaseModule:removeEventListener(key) + if self._baseEventListeners and self._baseEventListeners[key] then + EventManager:removeEventListener(key, self._baseEventListeners[key]) + self._baseEventListeners[key] = nil + end +end + +function BaseModule:unscheduleAll() + if self._schedulerIds == nil then + return + end + + for i = 1, #self._schedulerIds do + SchedulerManager:unscheduleGlobal(table.remove(self._schedulerIds)) + end +end + +function BaseModule:removeAllEventListeners() + if self._baseEventListeners == nil then + return + end + for key, tag in pairs(self._baseEventListeners) do + EventManager:removeEventListener(key, tag) + self._baseEventListeners[key] = nil + end +end + +-- 阻塞式,等待服务器回复以后再回调callback +function BaseModule:sendMessage(msgName, params, responseData, callback, getType, lockGame) + if lockGame == nil then + lockGame = true + end + NetManager:send(self, msgName, params, responseData, callback, lockGame, nil, getType) +end + +-- 阻塞式,等待所有指令完成以后再发送此消息,并且锁界面,等待服务器回复以后再回调callback +function BaseModule:sendMessageTillBeforeOver(msgName, params, responseData, callback, getType) + NetManager:sendTillBeforeOver(self, msgName, params, responseData, callback, true, nil, getType) +end + +-- 各个模块的manager按各自需求来重写clear即可 +function BaseModule:clear() +end + +function BaseModule:_clear() + self:unscheduleAll() + self._schedulerIds = nil + self:removeAllEventListeners() + self._baseEventListeners = nil + self:clear() +end + +return BaseModule \ No newline at end of file diff --git a/lua/app/module/base_module.lua.meta b/lua/app/module/base_module.lua.meta new file mode 100644 index 00000000..f84f1b9e --- /dev/null +++ b/lua/app/module/base_module.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f3ca40931eecbe94795187ac94fd128f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/module/battle.meta b/lua/app/module/battle.meta new file mode 100644 index 00000000..bf29ec6e --- /dev/null +++ b/lua/app/module/battle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 39f3d3811733b474dac68a4785a4a1af +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/blessing.meta b/lua/app/module/blessing.meta new file mode 100644 index 00000000..aebf1c69 --- /dev/null +++ b/lua/app/module/blessing.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e55326236c838c6409240fc113249261 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/bounty.meta b/lua/app/module/bounty.meta new file mode 100644 index 00000000..407faa51 --- /dev/null +++ b/lua/app/module/bounty.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 65d2bb50a42d31042be24d9005ee29dc +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/chapter.meta b/lua/app/module/chapter.meta new file mode 100644 index 00000000..a5bab279 --- /dev/null +++ b/lua/app/module/chapter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 64dcf18397b2afe4884cf57c3f456661 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/character_fsm.meta b/lua/app/module/character_fsm.meta new file mode 100644 index 00000000..0131a8d8 --- /dev/null +++ b/lua/app/module/character_fsm.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 084f1975b72f3214db77cf55a0269da9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/collection.meta b/lua/app/module/collection.meta new file mode 100644 index 00000000..ac34da09 --- /dev/null +++ b/lua/app/module/collection.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e9109457b732f2946ac3d78aeb1633ec +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/commerce.meta b/lua/app/module/commerce.meta new file mode 100644 index 00000000..18834e31 --- /dev/null +++ b/lua/app/module/commerce.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 164ac0b8b564cfd4d9e76e0bc0bc6f8e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/daily_gift.meta b/lua/app/module/daily_gift.meta new file mode 100644 index 00000000..a000ae58 --- /dev/null +++ b/lua/app/module/daily_gift.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0154b82c640abfb449624dd011e49e8d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/dungeon.meta b/lua/app/module/dungeon.meta new file mode 100644 index 00000000..807d02cb --- /dev/null +++ b/lua/app/module/dungeon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d52e7f500dcac3a4b93856ac65ac28e7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/equip.meta b/lua/app/module/equip.meta new file mode 100644 index 00000000..aa64df45 --- /dev/null +++ b/lua/app/module/equip.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 61e52f2b86dadd14f83059c5e25de608 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/game_setting.meta b/lua/app/module/game_setting.meta new file mode 100644 index 00000000..f2c47696 --- /dev/null +++ b/lua/app/module/game_setting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 627799b9e2dbc5e4c96262532da41cdb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/gm.meta b/lua/app/module/gm.meta new file mode 100644 index 00000000..3faf9da9 --- /dev/null +++ b/lua/app/module/gm.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 13a0386efae892641814160f72d900da +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/gm/dev_tool_manager.lua b/lua/app/module/gm/dev_tool_manager.lua new file mode 100644 index 00000000..4dce73a2 --- /dev/null +++ b/lua/app/module/gm/dev_tool_manager.lua @@ -0,0 +1,91 @@ +local DevToolManager = class("DevToolManager", BaseModule) + +function DevToolManager:showDevListUI() + if Platform:getIsPublishChannel() then + return + end + local params = { + aniType = UIManager.ANI_TYPE.NONE, + } + UIManager:showUI("app/ui/gm/dev_tool_list_ui", params) +end + +function DevToolManager:showOrHideDevListUI() + if Platform:getIsPublishChannel() then + return + end + -- local uiObj = UIManager:getUIByIndex("app/ui/gm/dev_tool_list_ui") + -- if uiObj then + -- uiObj:closeUI() + -- else + -- local params = { + -- aniType = UIManager.ANI_TYPE.NONE, + -- } + -- UIManager:showUI("app/ui/gm/dev_tool_list_ui", params) + -- end + local uiObj = UIManager:getUIByIndex(UIManager.UI_PATH.GM_TOO_UI) + if uiObj then + uiObj:closeUI() + else + UIManager:showUI(UIManager.UI_PATH.GM_TOO_UI) + end +end + +function DevToolManager:showOrHideFloatingIcon() + if Platform:getIsPublishChannel() then + return + end + local showFloatingIcon = LocalData:getGMShowFloatingIcon() + if self.floatingIconObject then + if showFloatingIcon then + self.floatingIconObject:getLuaComponent("app/ui/gm/component/gm_floating_icon"):show() + else + self.floatingIconObject:getLuaComponent("app/ui/gm/component/gm_floating_icon"):hide() + end + elseif showFloatingIcon then + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/gm/gm_floating_window.prefab", UIManager:getMainCanvas(), function(uiObj) + if self.floatingIconObject then + uiObj:destroy() + return + end + uiObj:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).overrideSorting = true + uiObj:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).sortingOrder = 32767 + self.floatingIconObject = uiObj + self.floatingIconObject:addLuaComponent("app/ui/gm/component/gm_floating_icon") + end) + end +end + +function DevToolManager:showLightSetting() + if Platform:getIsPublishChannel() then + return + end + local params = { + aniType = UIManager.ANI_TYPE.NONE, + } + UIManager:showUI("app/ui/gm/light_setting_ui", params) +end + +function DevToolManager:cacheDemoFightInfo(atkInfo, defInfo, useDemoFightCfg) + self.demoFightAtkInfo = atkInfo + self.demoFightDefInfo = defInfo + self.useDemoFightCfg = useDemoFightCfg +end + +function DevToolManager:getCacheDemoFightInfo() + return self.demoFightAtkInfo, self.demoFightDefInfo, self.useDemoFightCfg +end + +function DevToolManager:dealGM(paramsList) + self:sendMessage(ProtoMsgType.FromMsgEnum.GMReq, paramsList, {}, self.onDealGMFinish) +end + +function DevToolManager:onDealGMFinish(parmas, code, result) + if code and code ~= 0 then + return + end + + ModuleManager.LoginManager:goToLoginScene() +end + +return DevToolManager \ No newline at end of file diff --git a/lua/app/module/gm/dev_tool_manager.lua.meta b/lua/app/module/gm/dev_tool_manager.lua.meta new file mode 100644 index 00000000..8f78fc91 --- /dev/null +++ b/lua/app/module/gm/dev_tool_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3330dc50511496049b94b77638e6e9c8 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/gm/gm_const.lua b/lua/app/module/gm/gm_const.lua new file mode 100644 index 00000000..d7b587be --- /dev/null +++ b/lua/app/module/gm/gm_const.lua @@ -0,0 +1,127 @@ +local GMConst = {} +--des 是命令描述 type 是命令字符串 +GMConst.GM_INFO = { + { + title = "添加道具", + desc = [[添加道具 type:add_item +arg1:物品id +arg2:物品数量 +Example: add_item 1 100]], + type = "add_item" + }, + { + title = "全道具", + desc = [[全道具 type:all_items +arg1:物品数量 +Example: all_items]], + type = "all_items" + }, + { + title = "删除道具", + desc = [[删除道具 type:del_item +arg1:物品id +arg2:物品数量 +Example: del_item]], + type = "del_item" + }, + { + title = "清除道具", + desc = [[清除道具 type:clear_item +Example: clear_item]], + type = "clear_item" + }, + { + title = "通关", + desc = [[通关 type:pass_chapter +Example: pass_chapter 100]], + type = "pass_chapter" + }, +-- { +-- title = "添加装备", +-- desc = [[添加装备 type:addEquip +-- arg1:equipId arg2:数量 +-- Example: addEquip 10103 2]], +-- type = "addEquip" +-- }, +-- { +-- title = "设置等级", +-- desc = [[清号 type:setLv +-- arg1:数量 +-- Example: setLv 100]], +-- type = "setLv" +-- }, + { + title = "全装备", + desc = [[全装备 type:all_equips +Example: all_equips]], + type = "all_equips" + }, + { + title = "全传家宝", + desc = [[全传家宝 type:all_legacies +Example: all_legacies]], + type = "all_legacies" + }, + { + title = "全符文", + desc = [[全符文 type:all_runes +Example: all_runes]], + type = "all_runes" + }, + { + title = "每日重置", + desc = [[每日重置 type:reset_by_day +Example: reset_by_day]], + type = "reset_by_day" + }, + { + title = "设置时间", + desc = [[设置时间 type:time +Example: time 2023-3-9 18:10:59]], + type = "time" + }, + { + title = "重置时间差", + desc = [[重置时间差 type:time_diff +Example: time_diff 0]], + type = "time_diff" + }, + { + title = "调整时间差", + desc = [[调整时间差 type:add_time_diff +Example: add_time_diff 1000]], + type = "add_time_diff" + }, + { + title = "设置引导任务状态", + desc = [[通关 type:task_tutor +Example: task_tutor id progress 0]], + type = "task_tutor" + }, + { + title = "设置任务进度", + desc = [[通关 type:trig_event +Example: trig_event task_type progress]], + type = "trig_event" + }, + { + title = "礼包购买", + desc = [[通关 type:add_gift 1.mall_act 2.mall_daily 3.mall_treasure +Example: add_gift 1 30001]], + type = "add_gift" + }, + { + title = "新增邮件", + desc = [[通关 type:add_mail id +Example: add_mail 1]], + type = "add_mail" + }, + { + title = "新增自定义邮件", + desc = [[通关 type:add_cumail title body attachment +Example: add_cumail title body attachment]], + type = "add_cumail" + }, +} + +return GMConst \ No newline at end of file diff --git a/lua/app/module/gm/gm_const.lua.meta b/lua/app/module/gm/gm_const.lua.meta new file mode 100644 index 00000000..eeb88ab8 --- /dev/null +++ b/lua/app/module/gm/gm_const.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 64db0952f7832b545b8183d3b1f87ed0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/grow_fund.meta b/lua/app/module/grow_fund.meta new file mode 100644 index 00000000..d6d75082 --- /dev/null +++ b/lua/app/module/grow_fund.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 81bb98ddb57cb2644aabb194838201cb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/hang_up.meta b/lua/app/module/hang_up.meta new file mode 100644 index 00000000..9a7652bd --- /dev/null +++ b/lua/app/module/hang_up.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 06aa6e749a066d643bf326424e10354e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/hero.meta b/lua/app/module/hero.meta new file mode 100644 index 00000000..310c2985 --- /dev/null +++ b/lua/app/module/hero.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d3d00f0d53c67a749b9fe827834630c8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/idle.meta b/lua/app/module/idle.meta new file mode 100644 index 00000000..b62cdb22 --- /dev/null +++ b/lua/app/module/idle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9f64ad5b6d7cea64594c05c88efae67e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/item.meta b/lua/app/module/item.meta new file mode 100644 index 00000000..f07090e5 --- /dev/null +++ b/lua/app/module/item.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d07cbe285fa564347a216d1635c2a66e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/jewelry.meta b/lua/app/module/jewelry.meta new file mode 100644 index 00000000..34ae7124 --- /dev/null +++ b/lua/app/module/jewelry.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e671c325ff6015247aacf3a0e504fb45 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/loading.meta b/lua/app/module/loading.meta new file mode 100644 index 00000000..1c1f4bfc --- /dev/null +++ b/lua/app/module/loading.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 91d3c570201b81941bd796574e37198b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/loading/loading_manager.lua b/lua/app/module/loading/loading_manager.lua new file mode 100644 index 00000000..920ef869 --- /dev/null +++ b/lua/app/module/loading/loading_manager.lua @@ -0,0 +1,51 @@ +local LoadingManager = class("LoadingManager", BaseModule) + +function LoadingManager:showLoading(loadingType, loadingCanvas, callback) + if self.loadingType then + return + end + self.loadingType = loadingType + + if loadingType == UIManager.LOADING_TYPE.CLOUD then + self:showCloudLoading(loadingCanvas, callback) + else + self:showBlackLoading(callback) + end +end + +function LoadingManager:closeLoading(loadingType, callback) + if self.loadingType == nil then + return + end + self.loadingType = nil + if loadingType == UIManager.LOADING_TYPE.CLOUD then + self:hideCloudLoading(callback) + else + UIManager:getBlackLoadingImg():setActive(false) + callback() + end +end + +function LoadingManager:showBlackLoading(callback) + UIManager:getBlackLoadingImg():setActive(true) + callback() +end + +function LoadingManager:showCloudLoading(loadingCanvas, callback) + if self.cloudLadingUI == nil then + self.cloudLadingUI = require("app/ui/loading/loading_cloud_ui"):create() + self.cloudLadingUI:init(loadingCanvas, callback) + else + self.cloudLadingUI:showLoading(callback) + end +end + +function LoadingManager:hideCloudLoading(callback) + if self.cloudLadingUI then + self.cloudLadingUI:hideLoading(callback) + else + callback() + end +end + +return LoadingManager \ No newline at end of file diff --git a/lua/app/module/loading/loading_manager.lua.meta b/lua/app/module/loading/loading_manager.lua.meta new file mode 100644 index 00000000..4737f4af --- /dev/null +++ b/lua/app/module/loading/loading_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 62ade203a2e5f8f41b86b1d0ff4d8dca +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/login.meta b/lua/app/module/login.meta new file mode 100644 index 00000000..a6a4ad47 --- /dev/null +++ b/lua/app/module/login.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f94eaa17b42e7d840b638f48bc1ca6c5 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/login/login_manager.lua b/lua/app/module/login/login_manager.lua new file mode 100644 index 00000000..8594237a --- /dev/null +++ b/lua/app/module/login/login_manager.lua @@ -0,0 +1,381 @@ +---@class LoginManager : BaseModule +local LoginManager = class("LoginManager", BaseModule) + +LoginManager.TRY_LOGIN_TIME = 5 +LoginManager.SERVER_LIST = {} +LoginManager.selectIndex = 0 + +function LoginManager:showLoginUI() + if not Platform:getIsPublishChannel() then + self:showTestLoginUI() + return + end + UIManager:showUI("app/module/login/login_ui") +end + +function LoginManager:showTestLoginUI() + UIManager:showUI("app/module/login/test_login_ui") +end + +---- 登录界面资源加载完毕后调用 +function LoginManager:loginGame() + BIReport:postAdjustSimpleTrackEvent("modt3z", {}) + ModuleManager.MaincityManager:firstEnterMainCity() +end + +function LoginManager:initSocket() + local isConnected = NetManager:isConnected(NetManager.MAIN_SOCKET_NAME) + if EDITOR_MODE then + Logger.logError("LoginMgr:initSocket:%s", isConnected) + end + if not isConnected then + NetManager:init( + function() + self:connectByChannel( + function() + if EDITOR_MODE then + Logger.logError("主链接链接成功") + end + self:_login() + end + ) + end + ) + end +end + +function LoginManager:connectByChannel(callback, socketName) + socketName = socketName or NetManager.MAIN_SOCKET_NAME + local domain + local port + if socketName == NetManager.MAIN_SOCKET_NAME then + local gate = LocalData:getString(LocalData.KEYS.GATE) + local arr = string.split(gate, ":") + domain = arr[1] + port = arr[2] + else + domain = NetManager:getChatDomain() + port = NetManager:getChatPort() + end + NetManager:connect(domain, port, function() + if callback then + callback() + end + end, socketName) +end + +function LoginManager:goToLoginScene() + ModuleManager.BattleManager:clearOnExitScene() + NetManager:closeAndClear() + UIManager:backToLoginWithoutLogout() + DataManager:clear() +end + +function LoginManager:getClientInfo() + local clientInfo = {} + local bundleId = Platform:getIdentifier() + local version = Platform:getClientVersion() + local device = DeviceHelper:getDeviceModel() + local deviceId = DeviceHelper:getDeviceId() + local deviceOS = DeviceHelper:getOSVersion() + local platform = Platform:getPlatform() + local accountType = SDKManager.LOGIN_TYPE[LocalData:getInt(LocalData.KEYS.SDK_LOGIN_TYPE, SDKManager.BF_LOGIN_TYPE.GUEST)] + local ip = LocalData:getLastLoginIp() + local networkType = DeviceHelper:getNetworkType() + local language = I18N:getLanguageAndArea() + local timezone = SDKManager:getTimeZone() + clientInfo.bundle_id = bundleId + clientInfo.version = version + clientInfo.device = device + clientInfo.device_id = deviceId + clientInfo.os_version = deviceOS + clientInfo.platform = platform + clientInfo.account_type = accountType + clientInfo.ip = ip + clientInfo.network_type = networkType + clientInfo.language = language + clientInfo.timezone = timezone + return clientInfo +end + +function LoginManager:_login() + LocalData:saveSendQueue({}) + + local skipGuide = nil + if EDITOR_MODE then + -- skipGuide = LocalData:getSkipTutorial() + end + local clientInfo = self:getClientInfo() + if EDITOR_MODE then + print("LoginReq===============================xxxx1") + for k, v in pairs(clientInfo) do + print(k, " = ", v) + end + print("LoginReq===============================xxxx2") + end + local args = { + client_info = clientInfo, + skip_guide = skipGuide, + } + self:sendMessage( + ProtoMsgType.FromMsgEnum.LoginReq, + args, + {}, + self.loginFinish + ) +end + +function LoginManager:loginFinish(data) + if data.status == 0 then + UIManager:clearUIPrefabCache() -- 先清理下缓存 + ConfigManager:preLoadConfig() + ServerPushManager:initWhenLogin() + DataManager:initWithServerData(data) + + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.LOGIN_REQ_SUCCESS) + ModuleManager.MailManager:getMailList(true) + DataManager:setLoginSuccess(true) + BIReport:postGameLoginFinish() + + local info = LocalData:getLastLoginInfo() + BIReport:postAccountLoginFinish(info.type) + else + local info = LocalData:getLastLoginInfo() + BIReport:postAccountLoginFailed(info.type, data.err_code) + end +end + +function LoginManager:saveAuthArgs(name) + local args = LocalData:getLastLoginInfo() + if name then + args.type = NetManager.LOGIN_TYPE.ANONYMOUS + args.id = name + args.token = nil + LocalData:setLastLoginName(name) + LocalData:setLastLoginInfo(args.type, args.id, args.token) + end + + args.client_info = self:getClientInfo() + local sendQueue = LocalData:getSendQueue() + args.sync = + { + pip = GFunc.getArray() + } + + if sendQueue and sendQueue[1] then + local ProtoMsgDispatch = require "app/proto/proto_msg_dispatch" + local pb = require "pb" + for _, info in ipairs(sendQueue) do + local curParams = info.params + local needAd = true + if info.msgName == ProtoMsgType.FromMsgEnum.PipedReq then + local msgName = ProtoMsgDispatch:getReqMsgNameByMsgId(curParams.msg_id) + if msgName then + local fullMsgName = ProtoMsgDispatch:getMsgFullNameByMsgName(msgName) + if fullMsgName then + if curParams.data and type(curParams.data) == "table" then + local ok, pbData = pcall(function() + return pb.encode(fullMsgName, curParams.data) + end) + if not ok then + needAd = false + else + curParams.data = pbData + end + end + end + end + end + if needAd then + table.insert(args.sync.pip, curParams) + end + end + end + + NetManager:saveAuthArgs(args) +end + +function LoginManager:resetServerListStartTime() + self.accountLoginSuccess = false + self.connectStartTimes = os.clock() + self.retryTimes = 0 +end + +function LoginManager:addServerListCallback(callback) + self.loginCallback = callback +end + +function LoginManager:removeAllLoginData() + self.loginCallback = nil + self.versionInfoStr = nil + self.versionInfo = nil + -- self.connectStartTimes = nil + self.retryTimes = 0 +end + +function LoginManager:showServerNotOpenMessage() + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.SERVER_MAINTAINED), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + okFunc = function() + self:checkServerOpen() + end, + } + GFunc.showMessageBox(params) +end + +function LoginManager:getIsNeedHotUpdate() + local serverVersion = self.versionInfo.version + local clientVersion = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion() + if serverVersion == nil or serverVersion == "" or clientVersion == nil or clientVersion == "" then + return true + end + return serverVersion ~= clientVersion +end + +function LoginManager:showNewVersionFoundMessage() + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.NEW_VERSION_FOUND), + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + okFunc = function() + local storeUrl = self.versionInfo.store_url + if storeUrl == nil or storeUrl == "" then + CS.UnityEngine.Application.Quit() + else + CS.UnityEngine.Application.OpenURL(storeUrl) + end + end, + } + GFunc.showMessageBox(params) +end + +function LoginManager:getIsclientLessThanMinVersion() + local minVersion = self.versionInfo.min_version + local clientVersion = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion() + if minVersion == nil or minVersion == "" or clientVersion == nil or clientVersion == "" then + return true + end + if minVersion == clientVersion then + return false + end + + local update, bigVersion = GFunc.compareVersionThan(minVersion, clientVersion, false) + + return bigVersion or false +end + +function LoginManager:checkServerOpen() + local serverOpenTime = tonumber(self.versionInfo.open_time or 0) + local clientTime = os.time()*1000 + if clientTime < serverOpenTime then -- 未开服 + self:showServerNotOpenMessage() + return + end + + if EDITOR_MODE or GConst.SKIP_VERSION then + CS.BF.BFMain.Instance.GameLaunchMgr.LaunchRequester:SetVersionInfo(self.versionInfoStr) + if self.loginCallback and self.versionInfo then + self.loginCallback(self.versionInfo.game_urls) + end + else + -- 需要更新整包 + if self:getIsclientLessThanMinVersion() then + self:showNewVersionFoundMessage() + elseif self:getIsNeedHotUpdate() then -- 需要热更新 + Game:destroyAll() + CS.BF.BFMain.Instance.GameLaunchMgr:LaunchForRelogin(self.versionInfoStr) + else + CS.BF.BFMain.Instance.GameLaunchMgr.LaunchRequester:SetVersionInfo(self.versionInfoStr) + if self.loginCallback then + self.loginCallback(self.versionInfo.game_urls) + end + end + end +end + +function LoginManager:getServerList(callback) + if self.accountLoginSuccess then + if self.authSid then + self:unscheduleGlobal(self.authSid) + self.authSid = nil + end + return + end + self.loginCenterUrl = CS.BF.BFPlatform.GetLoginCenterURL() + self.retryTimes = self.retryTimes + 1 + + SDKManager:getServerList(function(isSuccess, data) + if self.accountLoginSuccess then + if self.authSid then + self:unscheduleGlobal(self.authSid) + self.authSid = nil + end + return + end + if isSuccess and data and data ~= "" then + self.versionInfoStr = data + local jsonData = json.decode(data or "") + if not jsonData.game_urls[1] then -- 保证服务器列表中必须有一个服务器 + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.GET_SEVER_ERROR), + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + noShowClose = true, + okFunc = function() + self:getServerList() + end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + top = true, + } + GFunc.showMessageBox(params) + return + end + + UIManager:hideToast() + -- BIReport:postRequestVersionSuccess(self.loginCenterUrl, (os.clock() - self.connectStartTimes)*1000, self.retryTimes - 1) + self.accountLoginSuccess = true + if self.authSid then + self:unscheduleGlobal(self.authSid) + self.authSid = nil + end + + self.versionInfo = jsonData + Logger.printTable(jsonData) + self:checkServerOpen() + else + -- BIReport:postRequestVersionFailed(self.loginCenterUrl, (os.clock() - self.connectStartTimes)*1000, self.retryTimes - 1) + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.GET_SEVER_ERROR), + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + noShowClose = true, + okFunc = function() + self:getServerList() + end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + top = true, + } + GFunc.showMessageBox(params) + end + end) + + if self.authSid then + self:unscheduleGlobal(self.authSid) + end + self.authSid = self:performWithDelayGlobal(function() + -- BIReport:postRequestVersionFailed(self.loginCenterUrl, (os.clock() - self.connectStartTimes)*1000, self.retryTimes - 1) + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.GET_SEVER_ERROR), + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + noShowClose = true, + okFunc = function() + self:getServerList() + end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + top = true, + } + GFunc.showMessageBox(params) + end, 5) +end + +return LoginManager \ No newline at end of file diff --git a/lua/app/module/login/login_manager.lua.meta b/lua/app/module/login/login_manager.lua.meta new file mode 100644 index 00000000..568840c3 --- /dev/null +++ b/lua/app/module/login/login_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 49d8556a5fc6a974cb049aafcfceff60 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/login/login_ui.lua b/lua/app/module/login/login_ui.lua new file mode 100644 index 00000000..8d4346e8 --- /dev/null +++ b/lua/app/module/login/login_ui.lua @@ -0,0 +1,131 @@ +local LoginUI = class("LoginUI", BaseUI) + +function LoginUI:ctor() + self.progress = 0 + self.retryTimes = 0 + self.connectStartTimes = 0 +end + +function LoginUI:getPrefabPath() + return "assets/prefabs/ui/login/login_ui.prefab" +end + +function LoginUI:onClose() + ModuleManager.LoginManager:removeAllLoginData() +end + +function LoginUI:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + + self.versionTx = uiMap["login_ui.version"] + + local version = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion() + self.versionTx:setText(I18N:getGlobalText(I18N.GlobalConst.APP) .. version) + + uiMap["login_ui.logo"]:setLanguageSprite(GConst.ATLAS_PATH.UI_LOGIN, "login") + self.progressTx = uiMap["login_ui.progress_tx"] + self.progressTx:setText("") + uiMap["login_ui.loading_text"]:setText(I18N:getGlobalText(I18N.GlobalConst.LOADING_DESC)) + uiMap["login_ui.copy_account_tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.CLICK_COPY_ACOUNT_DESC)) + + self:initListener() + + ModuleManager.LoginManager:resetServerListStartTime() + ModuleManager.LoginManager:addServerListCallback(function(serverList) + if EDITOR_MODE then + Logger.logHighlight("------------serverList------------") + Logger.printTable(serverList) + end + + self:refreshServerList(serverList) + ModuleManager.LoginManager:saveAuthArgs() + ModuleManager.LoginManager:initSocket() + + local info = LocalData:getLastLoginInfo() + BIReport:postAccountLoginClick(info.type) + end) + ModuleManager.LoginManager:getServerList() + + -- first 可以卸载了, 此项目只会启动时检查一次热更,之后不会再次检查 + CS.BF.BFMain.Instance.LuaMgr:OnGameInitSucc() + LocalData:save() + + local accountId = LocalData:getAccountInfo().id or GConst.EMPTY_STRING + local copyTx = uiMap["login_ui.copy_account_tx"] + copyTx:setVisible(accountId ~= GConst.EMPTY_STRING) + copyTx:addClickListener(function() + GFunc.copyStr(accountId) + end) +end + +function LoginUI:initListener() + self:addEventListener(EventManager.CUSTOM_EVENT.LOGIN_REQ_SUCCESS, function() + self:preloadAndEnterMaincity() + end) +end + +function LoginUI:preloadAndEnterMaincity() + local WhiteResManager = require "app/common/white_res_manager" + if WhiteResManager:isLoaded() then + ModuleManager.LoginManager:loginGame() + return + end + WhiteResManager:gamePreLoad(function(progress) + self.progress = math.floor(progress * 100) + self:updateProgress() + end, function() + self.progress = 100 + self:updateProgress() + end) +end + + +function LoginUI:updateProgress() + if not self.slideSId then + local curSlideValue = 0 + self.progressTx:setText("0%") + + -- 进度条表现处理一下,看起来更平滑一些,最快的话0.5秒跑完 + self.dt = 0 + self.slideSId = self:scheduleGlobal(function(dt) + self.dt = self.dt + dt + if curSlideValue < self.progress then + curSlideValue = math.floor(self.dt*200) + if curSlideValue > self.progress then + curSlideValue = self.progress + end + self.progressTx:setText(curSlideValue .. "%") + + -- 为了显示好看,加一个范围 + local vfxPercent = curSlideValue + if vfxPercent < 2 then + vfxPercent = 2 + elseif vfxPercent > 98 then + vfxPercent = 98 + end + elseif curSlideValue >= 100 then + self:unscheduleGlobal(self.slideSId) + self.slideSId = nil + ModuleManager.LoginManager:loginGame() + end + end, 0) + end +end + +function LoginUI:refreshServerList(serverList) + self.serverList = serverList or {} + if not ModuleManager.LoginManager.selectIndex or ModuleManager.LoginManager.selectIndex <= 0 then + ModuleManager.LoginManager.selectIndex = 1 + else + ModuleManager.LoginManager.selectIndex = ModuleManager.LoginManager.selectIndex + 1 + end + if ModuleManager.LoginManager.selectIndex > #self.serverList then + ModuleManager.LoginManager.selectIndex = 1 + end + + local defaultUrl = self.serverList[ModuleManager.LoginManager.selectIndex].url + Logger.logHighlight(defaultUrl) + LocalData:setString(LocalData.KEYS.GATE, defaultUrl) +end + +return LoginUI \ No newline at end of file diff --git a/lua/app/module/login/login_ui.lua.meta b/lua/app/module/login/login_ui.lua.meta new file mode 100644 index 00000000..71424128 --- /dev/null +++ b/lua/app/module/login/login_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4af3b85b80b0c9e488c05736978730ba +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/login/test_login_ui.lua b/lua/app/module/login/test_login_ui.lua new file mode 100644 index 00000000..65c4bbed --- /dev/null +++ b/lua/app/module/login/test_login_ui.lua @@ -0,0 +1,165 @@ +local TestLoginUI = class("TestLoginUI", BaseUI) + +function TestLoginUI:ctor() + self.progress = 0 + self.retryTimes = 0 + self.connectStartTimes = 0 +end + +function TestLoginUI:getPrefabPath() + return "assets/prefabs/ui/login/test_login_ui.prefab" +end + +function TestLoginUI:onClose() + ModuleManager.LoginManager:removeAllLoginData() + if self.dropList then + self.dropList.onValueChanged:RemoveAllListeners() + end +end + +function TestLoginUI:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + + self.versionTx = uiMap["test_login_ui.version"] + local version = CS.BF.BFMain.Instance.GameLaunchMgr:GetCurrentVersion() + self.versionTx:setText(I18N:getGlobalText(I18N.GlobalConst.APP) .. version) + + uiMap["test_login_ui.logo"]:setLanguageSprite(GConst.ATLAS_PATH.UI_LOGIN, "login") + self.progressTx = uiMap["test_login_ui.progress_tx"] + self.progressTx:setText("") + self.inputField = uiMap["test_login_ui.login_node.input_field"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.inputField.text = LocalData:getLastLoginName() + + uiMap["test_login_ui.loading_text"]:setText(I18N:getGlobalText(I18N.GlobalConst.LOADING_DESC)) + uiMap["test_login_ui.copy_account_tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.CLICK_COPY_ACOUNT_DESC)) + uiMap["test_login_ui.login_node.login_btn.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.TURNTABLE_BUTTON)) + uiMap["test_login_ui.login_node.login_btn"]:addClickListener(function() + self:loginGame() + end) + + self.dropList = uiMap["test_login_ui.login_node.dropdown"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_DROP_DOWN) + self.dropList:ClearOptions() + self.dropList.onValueChanged:AddListener(function(index) + if self.serverList[index + 1] then + self.selectUrl = self.serverList[index + 1].url + LocalData:setString(LocalData.KEYS.GATE, self.selectUrl) + LocalData:setString(LocalData.KEYS.LAST_LOGIN_URL, self.selectUrl) + end + end) + + self:addEventListener(EventManager.CUSTOM_EVENT.LOGIN_REQ_SUCCESS, function() + self:preloadAndEnterMaincity() + end) + + local accountId = LocalData:getAccountInfo().id or GConst.EMPTY_STRING + local copyTx = uiMap["test_login_ui.copy_account_tx"] + copyTx:setVisible(accountId ~= GConst.EMPTY_STRING) + copyTx:addClickListener(function() + GFunc.copyStr(accountId) + end) + + ModuleManager.LoginManager:resetServerListStartTime() + ModuleManager.LoginManager:addServerListCallback(function(serverList) + self:refreshServerList(serverList) + end) + ModuleManager.LoginManager:getServerList() +end + +function TestLoginUI:loginGame() + local uiMap = self.root:genAllChildren() + local name = uiMap["test_login_ui.login_node.input_field"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD).text + if name == "" then + name = nil + end + ModuleManager.LoginManager:saveAuthArgs(name) + ModuleManager.LoginManager:initSocket() + + local info = LocalData:getLastLoginInfo() + BIReport:postAccountLoginClick(info.type) + + -- first 可以卸载了, 此项目只会启动时检查一次热更,之后不会再次检查 + CS.BF.BFMain.Instance.LuaMgr:OnGameInitSucc() + LocalData:save() +end + +function TestLoginUI:preloadAndEnterMaincity() + local WhiteResManager = require "app/common/white_res_manager" + if WhiteResManager:isLoaded() then + ModuleManager.LoginManager:loginGame() + return + end + WhiteResManager:gamePreLoad(function(progress) + self.progress = math.floor(progress * 100) + self:updateProgress() + end, function() + self.progress = 100 + self:updateProgress() + end) +end + +function TestLoginUI:updateProgress() + if not self.slideSId then + local curSlideValue = 0 + self.progressTx:setText("0%") + + -- 进度条表现处理一下,看起来更平滑一些,最快的话0.5秒跑完 + self.dt = 0 + self.slideSId = self:scheduleGlobal(function(dt) + self.dt = self.dt + dt + if curSlideValue < self.progress then + curSlideValue = math.floor(self.dt*200) + if curSlideValue > self.progress then + curSlideValue = self.progress + end + self.progressTx:setText(curSlideValue .. "%") + + -- 为了显示好看,加一个范围 + local vfxPercent = curSlideValue + if vfxPercent < 2 then + vfxPercent = 2 + elseif vfxPercent > 98 then + vfxPercent = 98 + end + elseif curSlideValue >= 100 then + self:unscheduleGlobal(self.slideSId) + self.slideSId = nil + ModuleManager.LoginManager:loginGame() + end + end, 0) + end +end + + +function TestLoginUI:refreshServerList(serverList) + self.dropList:ClearOptions() + + self.serverList = serverList or {} + local optionList = {} + local lastUrl = LocalData:getString(LocalData.KEYS.LAST_LOGIN_URL, "") + local index = 1 + + local defaultUrl + for _, info in ipairs(self.serverList) do + local data = CS.UnityEngine.UI.Dropdown.OptionData(info.name) + table.insert(optionList, data) + if not defaultUrl then + defaultUrl = info.url + end + + if lastUrl == info.url then + index = #optionList + self.selectUrl = lastUrl + end + end + + if self.selectUrl == nil or self.selectUrl == "" then + self.selectUrl = defaultUrl + end + LocalData:setString(LocalData.KEYS.GATE, self.selectUrl) + LocalData:setString(LocalData.KEYS.LAST_LOGIN_URL, self.selectUrl) + + self.dropList:AddOptions(optionList) + self.dropList:SetValueWithoutNotify(index - 1) +end + +return TestLoginUI \ No newline at end of file diff --git a/lua/app/module/login/test_login_ui.lua.meta b/lua/app/module/login/test_login_ui.lua.meta new file mode 100644 index 00000000..6ba5abb7 --- /dev/null +++ b/lua/app/module/login/test_login_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4840856aef586324a852e87112be34c0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/mail.meta b/lua/app/module/mail.meta new file mode 100644 index 00000000..4d5d2f35 --- /dev/null +++ b/lua/app/module/mail.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7ddf660679f89a44bb6c7df1ade4e763 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/maincity.meta b/lua/app/module/maincity.meta new file mode 100644 index 00000000..f30ef5f2 --- /dev/null +++ b/lua/app/module/maincity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3034b1c7458eca8409b5e8c9d7d6804b +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/mall.meta b/lua/app/module/mall.meta new file mode 100644 index 00000000..fcf40448 --- /dev/null +++ b/lua/app/module/mall.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1352dd1cd25bd2c4db3b3c76c8565122 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/mastery.meta b/lua/app/module/mastery.meta new file mode 100644 index 00000000..2b0f8855 --- /dev/null +++ b/lua/app/module/mastery.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fe2ff1bab3dc2494884c455761f41149 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/mining.meta b/lua/app/module/mining.meta new file mode 100644 index 00000000..4494da02 --- /dev/null +++ b/lua/app/module/mining.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 40d69f97441a752428590e0c1b5955de +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/player.meta b/lua/app/module/player.meta new file mode 100644 index 00000000..6c9cfd94 --- /dev/null +++ b/lua/app/module/player.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f1c7fc94c9b65ed4ea3f5da51bca6d92 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/server.meta b/lua/app/module/server.meta new file mode 100644 index 00000000..d74c392d --- /dev/null +++ b/lua/app/module/server.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 8d1b2e3e302a7014f9303731095873f3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/signin.meta b/lua/app/module/signin.meta new file mode 100644 index 00000000..c9716c66 --- /dev/null +++ b/lua/app/module/signin.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0ef1450429a7f2444b8962ad1e3df20f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/stage.meta b/lua/app/module/stage.meta new file mode 100644 index 00000000..5d17ed91 --- /dev/null +++ b/lua/app/module/stage.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f793c6c9ce5332a49a0f876b8f5492fa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/storage.meta b/lua/app/module/storage.meta new file mode 100644 index 00000000..b38f446e --- /dev/null +++ b/lua/app/module/storage.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0db7cba0f52688c4491b94ebad1f5338 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/summon.meta b/lua/app/module/summon.meta new file mode 100644 index 00000000..e3213e52 --- /dev/null +++ b/lua/app/module/summon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 2349851ad96deb742bfe7ee435867642 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/task.meta b/lua/app/module/task.meta new file mode 100644 index 00000000..ee12ad5b --- /dev/null +++ b/lua/app/module/task.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 5ad8bdfaf67253b4eaa28cf4f95a730e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/task/task_const.lua b/lua/app/module/task/task_const.lua new file mode 100644 index 00000000..b2e3734e --- /dev/null +++ b/lua/app/module/task/task_const.lua @@ -0,0 +1,37 @@ +local TaskConst = {} + +TaskConst.TASK_TYPE = { + X_KILL_MONSTER = 1, + PASS_CHAPTER = 2, + X_SUMMON = 3, + X_WATCH_AD = 4, + COMPLETED_DALY_TASK = 5, + X_LOGIN_DAY = 6, + X_WEAPON_SUMMON = 7, + X_PROTECTIVE_SUMMON = 8, + X_LEGACY_SUMMON = 9, + COMPLETED_JEWELRY_BATTLE = 10, + COMPLETED_GOLD_BATTLE = 11, + COMPLETED_MITHRIL_BATTLE = 12, + COMPLETED_CHARACTERISTIC_BATTLE = 13, + ARENA_TIER_ON = 14, + X_HOE_USE = 15, + X_BORING_CROWN_USE = 16, + X_BOOM_USE = 17, + X_RESEARCH_USE = 18, + X_MINE_GRID = 19, + X_MINE_DISTANCE = 20, + X_BLESSING_GOT = 21, + X_RUNE_GOT = 22, + X_RUNE_LV_UP = 23, + X_TRAIN_ATK = 24, + X_TRAIN_HP = 25, + X_STAGE_CHALLENGE = 26, + X_JEWELRY_BATTLE = 27, + X_GOLD_BATTLE = 28, + X_MITHRIL_BATTLE = 29, + X_CHARACTERISTIC_BATTLE = 30, + X_ARENA_CHALLENGE = 31, +} + +return TaskConst \ No newline at end of file diff --git a/lua/app/module/task/task_const.lua.meta b/lua/app/module/task/task_const.lua.meta new file mode 100644 index 00000000..6108d827 --- /dev/null +++ b/lua/app/module/task/task_const.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 048588c8a7ff3ef4faf72c26ebf083ea +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/module/task/task_manager.lua b/lua/app/module/task/task_manager.lua new file mode 100644 index 00000000..6d1d1b4d --- /dev/null +++ b/lua/app/module/task/task_manager.lua @@ -0,0 +1,378 @@ +local TaskManager = class("TaskManager", BaseModule) + +function TaskManager:registerTask(moduleName, taskType, callback) + if not self.registerTaskInfo then + self.registerTaskInfo = {} + end + + if not self.registerTaskInfo[taskType] then + self.registerTaskInfo[taskType] = {} + end + + self.registerTaskInfo[taskType][moduleName] = callback +end + +function TaskManager:unRegisterTask(moduleName, taskType) + if not self.registerTaskInfo then + return + end + + if not self.registerTaskInfo[taskType] then + return + end + + self.registerTaskInfo[taskType][moduleName] = nil +end + +function TaskManager:unRegisterAllModuleTask(name) + if not self.registerTaskInfo then + return + end + for taskType, callbacks in pairs(self.registerTaskInfo) do + for moduleName, callback in pairs(callbacks) do + if moduleName == name then + callbacks[moduleName] = nil + break + end + end + end +end + +function TaskManager:clear() + self.registerTaskInfo = nil +end + +function TaskManager:addTaskProgress(type, params1) + if not self.registerTaskInfo then + return + end + + local func = TaskManager.TYPE_DEAL_FUNC[type] + if func then + func(self, params1) + end +end + +function TaskManager:dispatchTask(type, count) + if not self.registerTaskInfo then + return + end + if not self.registerTaskInfo[type] then + return + end + + for module, callback in pairs(self.registerTaskInfo[type]) do + if callback then + callback(count) + end + end +end + +------------------------------------------------------ 处理任务 ------------------------------------------------------ +function TaskManager:xKillMonster(params) + local num = params.num + if not num then + return + end + + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_KILL_MONSTER, num) +end + +function TaskManager:passChapter() + local id = DataManager.ChapterData:getHistoryChapterId() + self:dispatchTask(GConst.TaskConst.TASK_TYPE.PASS_CHAPTER, id) +end + +function TaskManager:xSummon(params) + local num = params.num + local cfgId = params.cfgId + if not num then + return + end + + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_SUMMON, num) + if cfgId == ModuleManager.SummonManager.WEAPON_SUMMON then + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_WEAPON_SUMMON, num) + elseif cfgId == ModuleManager.SummonManager.PROTECTIVE_SUMMON then + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_PROTECTIVE_SUMMON, num) + elseif cfgId == ModuleManager.SummonManager.LEGACY_SUMMON then + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_LEGACY_SUMMON, num) + end +end + +function TaskManager:xWatchAd(params) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_WATCH_AD, 1) +end + +function TaskManager:completeDailyTask() + self:dispatchTask(GConst.TaskConst.TASK_TYPE.COMPLETED_DALY_TASK, 1) +end + +function TaskManager:xLoginDay() + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_LOGIN_DAY, 1) +end + +function TaskManager:arenaTierOn(params) + local segement = params.segement + self:dispatchTask(GConst.TaskConst.TASK_TYPE.ARENA_TIER_ON, segement) +end + +function TaskManager:xHoeUse(params) + local num = params.num + if not num then + return + end + + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_HOE_USE, num) +end + +function TaskManager:xboringCrownUse(params) + local num = params.num + if not num then + return + end + + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_BORING_CROWN_USE, num) +end + +function TaskManager:xBoomUse(params) + local num = params.num + if not num then + return + end + + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_BOOM_USE, num) +end + +function TaskManager:xResearchUse(params) + local count = DataManager.ResearchData:getResearchCount() + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_RESEARCH_USE, 1) +end + +function TaskManager:xMineGrid(params) + local num = params.num + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_MINE_GRID, num) +end + +function TaskManager:xMineDistance(params) + local distance = DataManager.MiningData:getDepth() + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_MINE_DISTANCE, distance) +end + +function TaskManager:xBlessingGot(params) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_BLESSING_GOT, 1) +end + +function TaskManager:xRuneGot(params) + local runeList = params.runeList + if not runeList then + return + end + + local count = #runeList + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_RUNE_GOT, count) +end + +function TaskManager:xRuneLvUp(params) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_RUNE_LV_UP, 1) +end + +function TaskManager:xTrainAtk(params) + local num = params.count + if not num then + return + end + + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_TRAIN_ATK, num) +end + +function TaskManager:xTrainHp(params) + local num = params.count + if not num then + return + end + + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_TRAIN_HP, num) +end + +function TaskManager:xStageChallenge(params) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_STAGE_CHALLENGE, 1) +end + +function TaskManager:onDungenBattle(params) + local id = params.id + local maxLevel = DataManager.DungeonData:getPassedMaxLevel(id) + if id == 1 then + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_GOLD_BATTLE, 1) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.COMPLETED_GOLD_BATTLE, maxLevel) + elseif id == 2 then + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_JEWELRY_BATTLE, 1) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.COMPLETED_JEWELRY_BATTLE, maxLevel) + elseif id == 3 then + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_MITHRIL_BATTLE, 1) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.COMPLETED_MITHRIL_BATTLE, maxLevel) + elseif id == 4 then + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_CHARACTERISTIC_BATTLE, 1) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.COMPLETED_CHARACTERISTIC_BATTLE, maxLevel) + end +end + +function TaskManager:xArenaChallenge(params) + self:dispatchTask(GConst.TaskConst.TASK_TYPE.X_ARENA_CHALLENGE, 1) +end + +---- 没有特殊说明,方法均返回任务增量 +TaskManager.TYPE_DEAL_FUNC = { + [GConst.TaskConst.TASK_TYPE.X_KILL_MONSTER] = TaskManager.xKillMonster, + [GConst.TaskConst.TASK_TYPE.PASS_CHAPTER] = TaskManager.passChapter, + [GConst.TaskConst.TASK_TYPE.X_SUMMON] = TaskManager.xSummon, + [GConst.TaskConst.TASK_TYPE.X_WATCH_AD] = TaskManager.xWatchAd, + [GConst.TaskConst.TASK_TYPE.COMPLETED_DALY_TASK] = TaskManager.completeDailyTask, + [GConst.TaskConst.TASK_TYPE.X_LOGIN_DAY] = TaskManager.xLoginDay, + [GConst.TaskConst.TASK_TYPE.X_WEAPON_SUMMON] = TaskManager.xSummon, + [GConst.TaskConst.TASK_TYPE.X_PROTECTIVE_SUMMON] = TaskManager.xSummon, + [GConst.TaskConst.TASK_TYPE.X_LEGACY_SUMMON] = TaskManager.xSummon, + [GConst.TaskConst.TASK_TYPE.COMPLETED_JEWELRY_BATTLE] = TaskManager.onDungenBattle, + [GConst.TaskConst.TASK_TYPE.COMPLETED_GOLD_BATTLE] = TaskManager.onDungenBattle, + [GConst.TaskConst.TASK_TYPE.COMPLETED_MITHRIL_BATTLE] = TaskManager.onDungenBattle, + [GConst.TaskConst.TASK_TYPE.COMPLETED_CHARACTERISTIC_BATTLE] = TaskManager.onDungenBattle, + [GConst.TaskConst.TASK_TYPE.ARENA_TIER_ON] = TaskManager.arenaTierOn, + [GConst.TaskConst.TASK_TYPE.X_HOE_USE] = TaskManager.xHoeUse, + [GConst.TaskConst.TASK_TYPE.X_BORING_CROWN_USE] = TaskManager.xboringCrownUse, + [GConst.TaskConst.TASK_TYPE.X_BOOM_USE] = TaskManager.xBoomUse, + [GConst.TaskConst.TASK_TYPE.X_RESEARCH_USE] = TaskManager.xResearchUse, + [GConst.TaskConst.TASK_TYPE.X_MINE_GRID] = TaskManager.xMineGrid, + [GConst.TaskConst.TASK_TYPE.X_MINE_DISTANCE] = TaskManager.xMineDistance, + [GConst.TaskConst.TASK_TYPE.X_BLESSING_GOT] = TaskManager.xBlessingGot, + [GConst.TaskConst.TASK_TYPE.X_RUNE_GOT] = TaskManager.xRuneGot, + [GConst.TaskConst.TASK_TYPE.X_RUNE_LV_UP] = TaskManager.xRuneLvUp, + [GConst.TaskConst.TASK_TYPE.X_TRAIN_ATK] = TaskManager.xTrainAtk, + [GConst.TaskConst.TASK_TYPE.X_TRAIN_HP] = TaskManager.xTrainHp, + [GConst.TaskConst.TASK_TYPE.X_STAGE_CHALLENGE] = TaskManager.xStageChallenge, + [GConst.TaskConst.TASK_TYPE.X_JEWELRY_BATTLE] = TaskManager.onDungenBattle, + [GConst.TaskConst.TASK_TYPE.X_GOLD_BATTLE] = TaskManager.onDungenBattle, + [GConst.TaskConst.TASK_TYPE.X_MITHRIL_BATTLE] = TaskManager.onDungenBattle, + [GConst.TaskConst.TASK_TYPE.X_CHARACTERISTIC_BATTLE] = TaskManager.onDungenBattle, + [GConst.TaskConst.TASK_TYPE.X_ARENA_CHALLENGE] = TaskManager.xArenaChallenge, +} + +function TaskManager:taskGoto(taskType) + if TaskManager.gotoFunc[taskType] then + TaskManager.gotoFunc[taskType](self) + end +end + +function TaskManager:gotoMainUI() + ModuleManager.MaincityManager:showMainCityUI() +end + +function TaskManager:gotoSummonUI() + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.SHOP, storeIdx = 1}) +end + +function TaskManager:gotoSectUI() + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.SECT}) +end + +function TaskManager:gotoDungenUI() + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.DUNGEON}) +end + +function TaskManager:gotoTarinUI() + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = GConst.MainCityConst.BOTTOM_PAGE.TRAIN}) +end + +TaskManager.gotoFunc = { + [GConst.TaskConst.TASK_TYPE.X_KILL_MONSTER] = TaskManager.gotoMainUI, + [GConst.TaskConst.TASK_TYPE.PASS_CHAPTER] = TaskManager.gotoMainUI, + [GConst.TaskConst.TASK_TYPE.X_SUMMON] = TaskManager.gotoSummonUI, + [GConst.TaskConst.TASK_TYPE.X_WATCH_AD] = TaskManager.gotoSummonUI, + [GConst.TaskConst.TASK_TYPE.X_WEAPON_SUMMON] = TaskManager.gotoSummonUI, + [GConst.TaskConst.TASK_TYPE.X_PROTECTIVE_SUMMON] = TaskManager.gotoSummonUI, + [GConst.TaskConst.TASK_TYPE.X_LEGACY_SUMMON] = TaskManager.gotoSummonUI, + [GConst.TaskConst.TASK_TYPE.COMPLETED_JEWELRY_BATTLE] = TaskManager.gotoDungenUI, + [GConst.TaskConst.TASK_TYPE.COMPLETED_GOLD_BATTLE] = TaskManager.gotoDungenUI, + [GConst.TaskConst.TASK_TYPE.COMPLETED_MITHRIL_BATTLE] = TaskManager.gotoDungenUI, + [GConst.TaskConst.TASK_TYPE.COMPLETED_CHARACTERISTIC_BATTLE] = TaskManager.gotoDungenUI, + [GConst.TaskConst.TASK_TYPE.ARENA_TIER_ON] = TaskManager.gotoDungenUI, + [GConst.TaskConst.TASK_TYPE.X_HOE_USE] = TaskManager.gotoSectUI, + [GConst.TaskConst.TASK_TYPE.X_BORING_CROWN_USE] = TaskManager.gotoSectUI, + [GConst.TaskConst.TASK_TYPE.X_BOOM_USE] = TaskManager.gotoSectUI, + [GConst.TaskConst.TASK_TYPE.X_RESEARCH_USE] = TaskManager.gotoSectUI, + [GConst.TaskConst.TASK_TYPE.X_MINE_GRID] = TaskManager.gotoSectUI, + -- [GConst.TaskConst.TASK_TYPE.X_MINE_DISTANCE] = TaskManager.gotoMainUI, + -- [GConst.TaskConst.TASK_TYPE.X_BLESSING_GOT] = TaskManager.gotoMainUI, + -- [GConst.TaskConst.TASK_TYPE.X_RUNE_GOT] = TaskManager.gotoMainUI, + -- [GConst.TaskConst.TASK_TYPE.X_RUNE_LV_UP] = TaskManager.gotoMainUI, + [GConst.TaskConst.TASK_TYPE.X_TRAIN_ATK] = TaskManager.gotoTarinUI, + [GConst.TaskConst.TASK_TYPE.X_TRAIN_HP] = TaskManager.gotoTarinUI, + -- [GConst.TaskConst.TASK_TYPE.X_STAGE_CHALLENGE] = TaskManager.gotoMainUI, + -- [GConst.TaskConst.TASK_TYPE.X_JEWELRY_BATTLE] = TaskManager.gotoMainUI, + -- [GConst.TaskConst.TASK_TYPE.X_GOLD_BATTLE] = TaskManager.gotoMainUI, + -- [GConst.TaskConst.TASK_TYPE.X_MITHRIL_BATTLE] = TaskManager.gotoMainUI, + -- [GConst.TaskConst.TASK_TYPE.X_CHARACTERISTIC_BATTLE] = TaskManager.gotoMainUI, + -- [GConst.TaskConst.TASK_TYPE.X_ARENA_CHALLENGE] = TaskManager.gotoMainUI, +} + +function TaskManager:getTaskDesc(type, count, totalCount) + local cfg = I18N:getConfig("task")[type] + if not cfg then + return GConst.EMPTY_STRING + end + + local str = GConst.EMPTY_STRING + if type == GConst.TaskConst.TASK_TYPE.PASS_CHAPTER or + type == GConst.TaskConst.TASK_TYPE.COMPLETED_JEWELRY_BATTLE or + type == GConst.TaskConst.TASK_TYPE.COMPLETED_GOLD_BATTLE or + type == GConst.TaskConst.TASK_TYPE.COMPLETED_MITHRIL_BATTLE or + type == GConst.TaskConst.TASK_TYPE.COMPLETED_CHARACTERISTIC_BATTLE + then + str = totalCount + else + str = "(" .. count .. "/" .. totalCount .. ")" + end + return I18N:getText("task", type, "desc", str) +end + +function TaskManager:getTaskTutorialDesc(type, count, totalCount) + local cfg = I18N:getConfig("task")[type] + if not cfg then + return GConst.EMPTY_STRING + end + + local endStr = GConst.EMPTY_STRING + if type == GConst.TaskConst.TASK_TYPE.PASS_CHAPTER or + type == GConst.TaskConst.TASK_TYPE.COMPLETED_JEWELRY_BATTLE or + type == GConst.TaskConst.TASK_TYPE.COMPLETED_GOLD_BATTLE or + type == GConst.TaskConst.TASK_TYPE.COMPLETED_MITHRIL_BATTLE or + type == GConst.TaskConst.TASK_TYPE.COMPLETED_CHARACTERISTIC_BATTLE + then + endStr = totalCount + else + if count then + endStr = "(" .. count .. "/" .. totalCount .. ")" + else + endStr = "(" .. totalCount .. ")" + end + end + + local str = I18N:getText("task", type, "tutorial_desc") .. endStr + return str +end + + +function TaskManager:dealTaskType(taskType, callback, onlyGet) + if taskType == GConst.TaskConst.TASK_TYPE.X_KILL_MONSTER then + if onlyGet then + return taskType + else + ModuleManager.ChapterManager:calculateFightImmediately(callback) + end + else + if callback and not onlyGet then + callback() + end + end +end + +return TaskManager \ No newline at end of file diff --git a/lua/app/module/task/task_manager.lua.meta b/lua/app/module/task/task_manager.lua.meta new file mode 100644 index 00000000..5880bc45 --- /dev/null +++ b/lua/app/module/task/task_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 3de63e8f7d97bd3468ef3a6df0468504 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/module/tips.meta b/lua/app/module/tips.meta new file mode 100644 index 00000000..d512ced7 --- /dev/null +++ b/lua/app/module/tips.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: af6b3802c01b360448128b35d1af9cd0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/tips/tips_const.lua b/lua/app/module/tips/tips_const.lua new file mode 100644 index 00000000..949c0d1e --- /dev/null +++ b/lua/app/module/tips/tips_const.lua @@ -0,0 +1,21 @@ +local TipsConst = {} + +TipsConst.SUMMON_PROBABILITY_TYPE = { + SUMMON = 1, + SUMMON_HALLOWEEN = 2, + SUMMON_NEW_WISH = 3, + SUMMON_BLACK_FRIDAY = 4, +} + +TipsConst.REWARD_BOX_TYPE = { + NORMAL = 1, + ACT_HALLOWEEN = 2, + ACT_ICEBRAWL = 3, +} + +TipsConst.HELP_TIPS_TYPE = { + NORMAL = 1, + HALLOWEEN = 2, +} + +return TipsConst \ No newline at end of file diff --git a/lua/app/module/tips/tips_const.lua.meta b/lua/app/module/tips/tips_const.lua.meta new file mode 100644 index 00000000..4d35dda0 --- /dev/null +++ b/lua/app/module/tips/tips_const.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ccd6541b6e6b134419ba5dcc242c6c05 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/module/tips/tips_manager.lua b/lua/app/module/tips/tips_manager.lua new file mode 100644 index 00000000..adce7e17 --- /dev/null +++ b/lua/app/module/tips/tips_manager.lua @@ -0,0 +1,201 @@ +---@class TipsManager : BaseModule +local TipsManager = class("TipsManager", BaseModule) + +TipsManager.ALIGN_TYPE = { + ADAPTIVE = 0, + CENTER = 1, + TOP_LEFT = 2, + TOP_CENTER = 3, + TOP_RIGHT = 4, + BOTTOM_LEFT = 5, + BOTTOM_CENTER = 6, + BOTTOM_RIGHT = 7, + LEFT_TOP = 8, + LEFT_CENTER =9, + LEFT_BOTTOM = 10, + RIGHT_TOP = 11, + RIGHT_CENTER = 12, + RIGHT_BOTTOM = 13 +} + +function TipsManager:showHelpTips(params) + params = params or {} + UIManager:showUI("app/ui/tips/help_tips", params) +end + +function TipsManager:showRewardTips(id, type, tarPrefabObj, alignType, params) + if type == GConst.REWARD_TYPE.ITEM then + self:showItemTips(id, tarPrefabObj, alignType) + elseif type == GConst.REWARD_TYPE.EQUIP then + self:showEquipTips(nil, id, params) + elseif type == GConst.REWARD_TYPE.LEGACY then + self:showLegacyTips(id) + end +end + +function TipsManager:showRewardsBox(params) + UIManager:showUI("app/ui/tips/reward_box", params) +end + +function TipsManager:showItemTips(id, tarPrefabObj, alignType) + local params = { + id = id, + aniType = UIManager.ANI_TYPE.NONE, + } + if tarPrefabObj then + alignType = alignType or TipsManager.ALIGN_TYPE.TOP_CENTER + local tarCornerScreenPos, location = self:getCornerScreenPosition(tarPrefabObj, alignType) + params.tarCornerScreenPos = tarCornerScreenPos + params.location = location + end + UIManager:showUI("app/ui/tips/item_tips", params) +end + +function TipsManager:showRewardsTips(rewards, customTitleStr, tarPrefabObj, alignType) + local params = { + rewards = rewards, + customTitleStr = customTitleStr, + aniType = UIManager.ANI_TYPE.NONE, + } + if tarPrefabObj then + alignType = alignType or TipsManager.ALIGN_TYPE.TOP_CENTER + local tarCornerScreenPos, location = self:getCornerScreenPosition(tarPrefabObj, alignType) + params.tarCornerScreenPos = tarCornerScreenPos + params.location = location + end + UIManager:showUI("app/ui/tips/rewards_tips", params) +end + +---- entity id 传入一个即可 +function TipsManager:showEquipTips(entity, id, params) + local params = { + entity = entity, + id = id, + aniType = UIManager.ANI_TYPE.NONE, + purifyLv = params and params.purifyLv + } + UIManager:showUI("app/ui/tips/equip_tips", params) +end + +function TipsManager:showSkillTips(params) + params = params or {} + params.aniType = UIManager.ANI_TYPE.NONE + if params.tarPrefabObj then + local tarCornerScreenPos, location = self:getCornerScreenPosition(params.tarPrefabObj, TipsManager.ALIGN_TYPE.TOP_CENTER) + params.tarCornerScreenPos = tarCornerScreenPos + params.location = location + end + UIManager:showUI("app/ui/tips/skill_tips", params) +end + +function TipsManager:showLegacyUpTips(params) + params = params or {} + UIManager:showUI("app/ui/tips/legacy_up_tips", params) +end + +function TipsManager:showLegacyTips(id) + local params = {} + params.id = id + UIManager:showUI("app/ui/tips/legacy_tips", params) +end + +function TipsManager:showGetRuneTips(params) + params = params or {} + UIManager:showUI("app/ui/tips/get_rune_tips", params) +end + +function TipsManager:getCornerScreenPosition(tarPrefabObj, alignType) + local uiCamera = UIManager:getUICameraComponent() + local rectTransform = tarPrefabObj:getComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM) + local pivot = rectTransform.pivot + local rect = rectTransform.rect + local isTop + local isRight + local isCenter = false + local screenPoint + local location + if alignType == TipsManager.ALIGN_TYPE.ADAPTIVE then + local screenWidth, screenHeight = GFunc.getScreenSize() + local tarMid = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), rect.height*(0.5 - pivot.y), 0)) + local tarSp = uiCamera:WorldToScreenPoint(tarMid) + if tarSp.x < screenWidth*0.45 then + isRight = false + elseif tarSp.x > screenWidth*0.55 then + isRight = true + else + isCenter = true + end + if tarSp.y < screenHeight * 0.6 then + isTop = true + else + isTop = false + end + if isTop then + if isCenter then + location = TipsManager.ALIGN_TYPE.TOP_CENTER + else + if isRight then + location = TipsManager.ALIGN_TYPE.TOP_RIGHT + else + location = TipsManager.ALIGN_TYPE.TOP_LEFT + end + end + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), rect.height*(1 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + else + if isCenter then + location = TipsManager.ALIGN_TYPE.BOTTOM_CENTER + else + if isRight then + location = TipsManager.ALIGN_TYPE.BOTTOM_RIGHT + else + location = TipsManager.ALIGN_TYPE.BOTTOM_LEFT + end + end + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), -rect.height*pivot.y, 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + end + else + location = alignType + if alignType == TipsManager.ALIGN_TYPE.TOP_LEFT then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), rect.height*(1 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.TOP_CENTER then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), rect.height*(1 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.TOP_RIGHT then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), rect.height*(1 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.BOTTOM_LEFT then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), -rect.height*pivot.y, 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.BOTTOM_CENTER then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), -rect.height*pivot.y, 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.BOTTOM_RIGHT then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), -rect.height*pivot.y, 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.LEFT_BOTTOM then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(-rect.width*pivot.x, rect.height*(0.5 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.LEFT_CENTER then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(-rect.width*pivot.x, rect.height*(0.5 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.LEFT_TOP then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(-rect.width*pivot.x, rect.height*(0.5 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.RIGHT_TOP then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(1 - pivot.x), rect.height*(0.5 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.RIGHT_CENTER then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(1 - pivot.x), rect.height*(0.5 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + elseif alignType == TipsManager.ALIGN_TYPE.RIGHT_BOTTOM then + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(1 - pivot.x), rect.height*(0.5 - pivot.y), 0)) + screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + end + end + return BF.Vector2(screenPoint.x, screenPoint.y), location +end + +return TipsManager \ No newline at end of file diff --git a/lua/app/module/tips/tips_manager.lua.meta b/lua/app/module/tips/tips_manager.lua.meta new file mode 100644 index 00000000..ee352cd1 --- /dev/null +++ b/lua/app/module/tips/tips_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 71118557723d71e4bbc0c5cf0f6c88a1 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/tower.meta b/lua/app/module/tower.meta new file mode 100644 index 00000000..a42a06dd --- /dev/null +++ b/lua/app/module/tower.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: dbf3ba26ac998e14faf5c85cf4d7a4e0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/train.meta b/lua/app/module/train.meta new file mode 100644 index 00000000..709f5b34 --- /dev/null +++ b/lua/app/module/train.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e36ae8e88614c8a4b934a0cfbf5dd590 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/tutorial.meta b/lua/app/module/tutorial.meta new file mode 100644 index 00000000..4892655e --- /dev/null +++ b/lua/app/module/tutorial.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c4599dee9c07ee645821859b6c4aae71 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/tutorial/tutorial_action.lua b/lua/app/module/tutorial/tutorial_action.lua new file mode 100644 index 00000000..947cb9eb --- /dev/null +++ b/lua/app/module/tutorial/tutorial_action.lua @@ -0,0 +1,78 @@ +local TutorialConst = require "app/module/tutorial/tutorial_const" + +local TutorialAction = {} + +function TutorialAction:init() +end + +function TutorialAction:clear() +end + +function TutorialAction:doTutorial(tutorialId) + local tutorialType = DataManager.TutorialData:getTutorialTypeById(tutorialId) + local func = TutorialAction._doTutorial[tutorialType] + if func then + func(tutorialId) + else + ModuleManager.TutorialManager:stopTutorial() + end +end + +function TutorialAction:doStepOver(tutorialId) + local tutorialType = DataManager.TutorialData:getTutorialTypeById(tutorialId) + local func = TutorialAction._doStepOver[tutorialType] + if func then + func(tutorialId) + end +end + +-- 任意位置点击 +local function _tutorialClick(tutorialId) + ModuleManager.TutorialManager:showTalk() + + ModuleManager.TutorialManager:registerClickScreenListener(function() + ModuleManager.TutorialManager:checkAndNextTutorial(tutorialId) + end) +end + +-- 点击指定按钮 +local function _tutorialClickBtn(tutorialId) + local typeParameter = DataManager.TutorialData:getTypeParameter() + ModuleManager.TutorialManager:registerClickBtnListener(function() + ModuleManager.TutorialManager:checkAndNextTutorial(tutorialId) + end, nil, typeParameter) +end + +-- 剧情对话 +local function _tutorialTalk(tutorialId) + ModuleManager.TutorialManager:showTalk() + + local typeParameter = DataManager.TutorialData:getTypeParameter() + ModuleManager.TutorialManager:registerClickBtnListener(function() + ModuleManager.TutorialManager:checkAndNextTutorial(tutorialId) + end, nil, typeParameter) +end + +-- 空步骤,什么也不做,一般搭配完成条件使用 +local function _tutorialEmpty(tutorialId) + ModuleManager.TutorialManager:checkAndNextTutorial(tutorialId) +end + +local function _tutorialEmptyCancelBlock(tutorialId) + ModuleManager.TutorialManager:setBlockTouchEnabled(false) + ModuleManager.TutorialManager:checkAndNextTutorial(tutorialId) +end + +TutorialAction._doTutorial = { + [TutorialConst.TUTORIAL_TYPE.CLICK] = _tutorialClick, + [TutorialConst.TUTORIAL_TYPE.CLICK_BTN] = _tutorialClickBtn, + [TutorialConst.TUTORIAL_TYPE.TALK] = _tutorialTalk, + [TutorialConst.TUTORIAL_TYPE.DO_NOTHING] = _tutorialEmpty, + [TutorialConst.TUTORIAL_TYPE.EMPTY_CANCEL_BLOCK] = _tutorialEmptyCancelBlock, +} + +-- 此步引导结束的时候 +TutorialAction._doStepOver = { +} + +return TutorialAction \ No newline at end of file diff --git a/lua/app/module/tutorial/tutorial_action.lua.meta b/lua/app/module/tutorial/tutorial_action.lua.meta new file mode 100644 index 00000000..fb746cce --- /dev/null +++ b/lua/app/module/tutorial/tutorial_action.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 384978468ebd9244cb3d4738fb55ce2f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/tutorial/tutorial_const.lua b/lua/app/module/tutorial/tutorial_const.lua new file mode 100644 index 00000000..d4eb4213 --- /dev/null +++ b/lua/app/module/tutorial/tutorial_const.lua @@ -0,0 +1,41 @@ +local TutorialConst = {} + +TutorialConst.FINGER_MOVE_SPEED = 200 +TutorialConst.DEFAULT_RADIUS = 100 + +TutorialConst.TUTORIAL_TYPE = { + CLICK = 1, -- 点击任意区域 + CLICK_BTN = 2, -- 点击指定按钮 + TALK = 3, -- 文本对话 + DO_NOTHING = 4, -- 什么也不做,等待条件完成 + EMPTY_CANCEL_BLOCK = 5, -- 什么也不做, 解除屏蔽,等待条件完成 +} + +TutorialConst.FINISH_TYPE = { + ON_UI_SHOW = 1, -- 当XX界面显示 + ON_UI_CLOSE = 2, -- 当XX界面关闭 + ON_TASK_COMPLETE = 3, -- 当主线任务完成 + ON_ATK_LEVEL = 4, -- 当攻击力升至x级时 + ON_TO_ARENA = 5, -- 界面移动到竞技场位置 +} + +TutorialConst.UI_TYPE = { + WEAPON_SUMMON_UI = 1, + PROTECTIVE_SUMMON_UI = 2, + LEGACY_SUMMON_UI = 3, + HERO_ALL_UP_UI = 4, +} + +TutorialConst.UI_PATH = { + [TutorialConst.UI_TYPE.WEAPON_SUMMON_UI] = UIManager.UI_PATH.WEAPON_SUMMON_UI, + [TutorialConst.UI_TYPE.PROTECTIVE_SUMMON_UI] = UIManager.UI_PATH.PROTECTIVE_SUMMON_UI, + [TutorialConst.UI_TYPE.LEGACY_SUMMON_UI] = UIManager.UI_PATH.LEGACY_SUMMON_UI, + [TutorialConst.UI_TYPE.HERO_ALL_UP_UI] = UIManager.UI_PATH.HERO_ALL_UP_UI, +} + + +TutorialConst.FUNC_TUTORIAL_ID = { + BATTLE_AUTO = 4, -- 引导自动战斗 +} + +return TutorialConst \ No newline at end of file diff --git a/lua/app/module/tutorial/tutorial_const.lua.meta b/lua/app/module/tutorial/tutorial_const.lua.meta new file mode 100644 index 00000000..3f88aa86 --- /dev/null +++ b/lua/app/module/tutorial/tutorial_const.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6a0fb836220b86d4695a32d99835de09 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/tutorial/tutorial_finish_listener.lua b/lua/app/module/tutorial/tutorial_finish_listener.lua new file mode 100644 index 00000000..7d0f810a --- /dev/null +++ b/lua/app/module/tutorial/tutorial_finish_listener.lua @@ -0,0 +1,97 @@ +local TutorialConst = require "app/module/tutorial/tutorial_const" + +local TutorialFinishListener = {} + +function TutorialFinishListener:init() +end + +function TutorialFinishListener:clear() + ModuleManager.TutorialManager:removeAllEventListeners() +end + +-- 检查是否已经完成条件,没有的话如果有监听则添加监听 +function TutorialFinishListener:checkAndAddListener(tutorialId) + local finishType = DataManager.TutorialData:getFinishTypeById(tutorialId) + local func = TutorialFinishListener._addListener[finishType] + if func then + return func(tutorialId) + end + return false +end + +function TutorialFinishListener:getIsHaveListener(tutorialId) + local finishType = DataManager.TutorialData:getFinishTypeById(tutorialId) + local func = TutorialFinishListener._addListener[finishType] + if func then + return true + end + return false +end + +-- 当UI完全打开 +local function _listenerOnUIShow(tutorialId) + local params = DataManager.TutorialData:getFinishTypeParams() + if params == nil then -- 打开界面的完成条件必须要有参数 + return false + end + local uiPath = TutorialConst.UI_PATH[params] + local uiObj = UIManager:getUIByIndex(uiPath) + if uiObj and uiObj:getIsShowComplete() then + return true + end + ModuleManager.TutorialManager:addEventListener(EventManager.CUSTOM_EVENT.UI_SHOW_COMPLETE, function(index) + if index == uiPath then + ModuleManager.TutorialManager:finishAndNextTutorial(tutorialId) + end + end) + return false +end + +-- 当UI关闭 +local function _listenerOnUIClose(tutorialId) + local params = DataManager.TutorialData:getFinishTypeParams() + if params == nil then -- 打开界面的完成条件必须要有参数 + return false + end + local uiPath = TutorialConst.UI_PATH[params] + local uiObj = UIManager:getUIByIndex(uiPath) + if uiObj == nil or uiObj:isClosed() then + return true + end + ModuleManager.TutorialManager:addEventListener(EventManager.CUSTOM_EVENT.UI_CLOSE, function(index) + if index == uiPath then + ModuleManager.TutorialManager:finishAndNextTutorial(tutorialId) + end + end) + return false +end + +local function _listenerOnTaskCompete(tutorialId) + return false +end + +local function _listenerOnAtkLevel(tutorialId) + local params = DataManager.TutorialData:getFinishTypeParams() + if params == nil then -- 打开界面的完成条件必须要有参数 + return false + end + if DataManager.ChapterData:getTrainAtkLv() >= params then + return true + end + ModuleManager.TutorialManager:addEventListener(EventManager.CUSTOM_EVENT.ATK_TRAIN_LEVEL_UP, function(index) + if DataManager.ChapterData:getTrainAtkLv() >= params then + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.ATK_TRAIN_TUTORIAL_OVER) + ModuleManager.TutorialManager:finishAndNextTutorial(tutorialId) + end + end) + return false +end + +TutorialFinishListener._addListener = { + [TutorialConst.FINISH_TYPE.ON_UI_SHOW] = _listenerOnUIShow, + [TutorialConst.FINISH_TYPE.ON_UI_CLOSE] = _listenerOnUIClose, + [TutorialConst.FINISH_TYPE.ON_TASK_COMPLETE] = _listenerOnTaskCompete, + [TutorialConst.FINISH_TYPE.ON_ATK_LEVEL] = _listenerOnAtkLevel, +} + +return TutorialFinishListener \ No newline at end of file diff --git a/lua/app/module/tutorial/tutorial_finish_listener.lua.meta b/lua/app/module/tutorial/tutorial_finish_listener.lua.meta new file mode 100644 index 00000000..2b80777a --- /dev/null +++ b/lua/app/module/tutorial/tutorial_finish_listener.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 4559a1590ebefee4cb023ac94b7ca15b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/tutorial/tutorial_manager.lua b/lua/app/module/tutorial/tutorial_manager.lua new file mode 100644 index 00000000..020677bf --- /dev/null +++ b/lua/app/module/tutorial/tutorial_manager.lua @@ -0,0 +1,293 @@ +local TutorialConst = require "app/module/tutorial/tutorial_const" + +local TutorialManager = class("TutorialManager", BaseModule) + +TutorialManager.FUNC_TUTORIAL_ID = TutorialConst.FUNC_TUTORIAL_ID + +function TutorialManager:checkAndPlayForceTutorial() + if DataManager.TutorialData:getIsInTutorial() then + return + end + local haveTutorial = DataManager.TutorialData:getIsHaveTutorial() + if haveTutorial then + self:showTutorial() + return true + else + self:stopTutorial() + end +end + +-- 每一步引导都和服务器进行一次通信 +function TutorialManager:sendTutorialId(id, callback) + local args = { + id = id + } + self:sendMessage(ProtoMsgType.FromMsgEnum.MarkGuideReq, args, {}, self.sendTutorialIdFinish) + self.sendTutorialIdCallback = callback +end + +function TutorialManager:sendTutorialIdFinish(result) + if result.status == 0 then + if result.id then + BIReport:postTutorialStep(result.id) + -- DataManager.TutorialData:markFuncTutorialFinish(result.id) + end + + if self.sendTutorialIdCallback then + self.sendTutorialIdCallback(true) + end + else + if self.sendTutorialIdCallback then + self.sendTutorialIdCallback(false) + end + end +end + +-- 显示引导 +function TutorialManager:showTutorial() + if self.tutorialFinishListener == nil then + self.tutorialFinishListener = require "app/module/tutorial/tutorial_finish_listener" + end + self.tutorialFinishListener:init() + + if self.tutorialAction == nil then + self.tutorialAction = require "app/module/tutorial/tutorial_action" + end + self.tutorialAction:init() + + self:removeAllEventListeners() + DataManager.TutorialData:setInTutorial(true) + UIManager:showTutorial() + if self.tutorialUIComp then + self.tutorialUIComp:setVisible(true) + self:startTutorial() + else + UIManager:getTutorial(function(tutorialObj) + self.tutorialUIComp = tutorialObj:addLuaComponent(GConst.TYPEOF_LUA_CLASS.TUTORIAL_UI) + self:startTutorial() + end) + end +end + +-- 开始引导 +function TutorialManager:startTutorial() + local tutorialId = DataManager.TutorialData:getTutorialId() + -- 上报引导每一步 + BIReport:postTutorialStep(tutorialId) + Logger.log("开始引导:%s", tutorialId) + + DataManager.TutorialData:markFuncTutorialFinish(tutorialId) + if DataManager.TutorialData:getTutorialStopFight() then + ModuleManager.BattleManager:pauseFightByTutorial() + else + ModuleManager.BattleManager:resumeFightByTutorial() + end + + -- 如果这一步引导已经完成了就进入下一步,没有完成则如果有监听就添加监听 + local over = self.tutorialFinishListener:checkAndAddListener(tutorialId) + if over then + self:finishAndNextTutorial(tutorialId) + else + -- 开始当前步骤的引导 + self.tutorialUIComp:onTutorialStart() + self.tutorialAction:doTutorial(tutorialId) + end +end + +-- 结束引导 +function TutorialManager:stopTutorial() + if DataManager.TutorialData then + Logger.log("停止引导:%s", DataManager.TutorialData:getTutorialId()) + end + ModuleManager.BattleManager:resumeFightByTutorial() + + if self.tutorialFinishListener then + self.tutorialFinishListener:clear() + end + + if self.tutorialAction then + self.tutorialAction:clear() + end + + self:removeAllEventListeners() + self:unscheduleAll() + if DataManager.TutorialData then + DataManager.TutorialData:stopTutorial() + end + if self.tutorialUIComp then + self.tutorialUIComp:onTutorialStop() + end + UIManager:hideTutorial() + + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.TUTORIAL_TASK_STOP) +end + +-- 完成当前步并进入下一步 +function TutorialManager:finishAndNextTutorial(tutorialId) + -- 屏蔽点击 + self.tutorialUIComp:setBlockTouchEnabled(true) + self.tutorialUIComp:unregisterClickBtn() + -- 移除所有计时器 + self.tutorialUIComp:clearScheduler() + -- 移除所有的监听 + self.tutorialFinishListener:clear() + -- 此步引导完成时需要处理的东西 + self.tutorialAction:doStepOver(tutorialId) + + local haveNext, newStopId = DataManager.TutorialData:nextTutorial() + if haveNext then + local delay = DataManager.TutorialData:getDelayStartTime() + if newStopId then -- 中断步骤变了要跟服务器同步 + self:sendTutorialId(DataManager.TutorialData:getTutorialId(), function(success) + if success then + if delay > 0 then + self:performWithDelayGlobal(function() + self:startTutorial() + end, delay) + else + self:startTutorial() + end + else + self:stopTutorial() + end + end) + else + self:performWithDelayGlobal(function() + self:startTutorial() + end, delay) + end + else + self:performWithDelayGlobal(function() + self:stopTutorial() + end, 0) + end +end + +-- 检查完成条件并进入下一步 +function TutorialManager:checkAndNextTutorial(tutorialId) + local currTutorialId = DataManager.TutorialData:getTutorialId() + if currTutorialId ~= tutorialId then + return + end + + -- 没有完成条件就直接完成,有完成条件就等待完成条件通过再完成 + if not self.tutorialFinishListener:getIsHaveListener(tutorialId) then + self:finishAndNextTutorial(currTutorialId) + end +end + +-- 添加点击屏幕的监听 +function TutorialManager:registerClickScreenListener(callback) + self.tutorialUIComp:registerClickScreenListener(callback) +end + +-- 添加点击指定组件的监听 +function TutorialManager:registerClickBtnListener(callback, targetName, clickType) + self.tutorialUIComp:registerClickBtnListener(callback, targetName, clickType) +end + +-- 显示对话 +function TutorialManager:showTalk(callback) + self.tutorialUIComp:showTalk(callback) +end + +-- 设置引导时的触摸是否屏蔽 +function TutorialManager:setBlockTouchEnabled(enabled) + self.tutorialUIComp:setBlockTouchEnabled(enabled) +end + +function TutorialManager:getBlockTouchEnabled() + if self.tutorialUIComp == nil then + return false + end + return self.tutorialUIComp:getBlockTouchEnabled() +end + +-- 检查功能引导 +function TutorialManager:checkFuncTutorial(id, onlyCheck) + if DataManager.TutorialData:getIsInTutorial() or GFunc.isShenhe() then + return false + end + if CS.BF.BFMain.IsShenhe and not DataManager.TutorialData:getTutorialIdMap(id) then + return false + end + + local tutorialFuncStartInfo = ConfigManager:getConfig("tutorial_start")[id] + if tutorialFuncStartInfo == nil then + return false + end + local tutorialInfo = ConfigManager:getConfig("tutorial")[tutorialFuncStartInfo.start_id] + if tutorialInfo == nil then + return false + end + if tutorialFuncStartInfo.uires_path == nil or tutorialFuncStartInfo.uires_path == "" then -- 没有绑定界面的就需要额外检查一下开启条件 + return false + end + + local haveTutorial = DataManager.TutorialData:getIsHaveFuncTutorial(tutorialFuncStartInfo.start_id, tutorialInfo, tutorialFuncStartInfo) + if onlyCheck then + return haveTutorial + end + + if haveTutorial then + self:showFuncTutorial(DataManager.TutorialData:getTutorialId()) + return true + end + return false +end + +function TutorialManager:showFuncTutorial(id) + self:sendTutorialId(id, function(success) + if success then + if not DataManager.TutorialData:getIsFuncTutorialFinished(id) then + DataManager.TutorialData:markFuncTutorialFinish(id) + local uires = DataManager.TutorialData:getTutorialId2UIPath(id) + if uires == nil or uires == "" then + self:showTutorial() + else + local uiList = UIManager:getUIList() + for k, v in ipairs(uiList) do + if v:getPrefabPath() == uires then + return self:showTutorial() + end + end + self:addEventListener(EventManager.CUSTOM_EVENT.UI_SHOW_COMPLETE, function(uiIndex) + local uiObj = UIManager:getUIByIndex(uiIndex) + if uiObj:getPrefabPath() == uires then + self:removeEventListener(EventManager.CUSTOM_EVENT.UI_SHOW_COMPLETE) + self:showTutorial() + end + end) + end + else + self:stopTutorial() + end + else + DataManager.TutorialData:markFuncTutorialFinish(id) + self:stopTutorial() + end + end) +end + +-- gm用,跳过当前正在进行的引导 +function TutorialManager:gmSkipTutorial() + if Platform:getIsPublishChannel() then + return + end + + if not DataManager.TutorialData:getIsInTutorial() then + return + end + + -- 功能引导则直接退出即可 + if DataManager.TutorialData:getIsFuncTutorial() then + return self:stopTutorial() + end + + -- 强制引导则先跟服务器发送消息再退出 + -- NetManager:send(ProtoMsgType.FromMsgEnum.SkipGuideReq, {}, function(data) + self:stopTutorial() + -- end) +end + +return TutorialManager \ No newline at end of file diff --git a/lua/app/module/tutorial/tutorial_manager.lua.meta b/lua/app/module/tutorial/tutorial_manager.lua.meta new file mode 100644 index 00000000..56938d24 --- /dev/null +++ b/lua/app/module/tutorial/tutorial_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ce2b13c98e732e54a9df69d393405a66 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/module/tutorial/tutorial_task_manager.lua b/lua/app/module/tutorial/tutorial_task_manager.lua new file mode 100644 index 00000000..c925ee94 --- /dev/null +++ b/lua/app/module/tutorial/tutorial_task_manager.lua @@ -0,0 +1,29 @@ +local TutorialTaskManager = class("TutorialTaskManager", BaseModule) + +function TutorialTaskManager:claimTask() + if DataManager.TutorialTaskData:getTaskCollect() then + return + end + ModuleManager.TaskManager:dealTaskType(DataManager.TutorialTaskData:getTaskType(), function() + self:sendMessage(ProtoMsgType.FromMsgEnum.TaskTutorRewardReq, {}, {}, self.claimTaskFinish, BIReport.ITEM_GET_TYPE.TUTORIAL_TASK) + end) +end + +function TutorialTaskManager:claimTaskFinish(result) + if result.status == 0 then + local taskId = DataManager.TutorialTaskData:getCurTutorialId() + DataManager.TutorialTaskData:init(result.task) + + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.TUTORIAL_TASK_REWARD, result.rewards) + local tutorialId = DataManager.TutorialTaskData:getTaskTutorialId() + if not tutorialId then + tutorialId = DataManager.TutorialData:getTaskOpenTutorial(taskId) + end + + if tutorialId then + ModuleManager.TutorialManager:checkFuncTutorial(tutorialId) + end + end +end + +return TutorialTaskManager \ No newline at end of file diff --git a/lua/app/module/tutorial/tutorial_task_manager.lua.meta b/lua/app/module/tutorial/tutorial_task_manager.lua.meta new file mode 100644 index 00000000..a94aa478 --- /dev/null +++ b/lua/app/module/tutorial/tutorial_task_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1fa9da99f3507cd4688b77793381a636 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/net.meta b/lua/app/net.meta new file mode 100644 index 00000000..49c466d6 --- /dev/null +++ b/lua/app/net.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 245dec8ca0e86194fa5586d55def5218 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/net/net_manager.lua b/lua/app/net/net_manager.lua new file mode 100644 index 00000000..2633cd9a --- /dev/null +++ b/lua/app/net/net_manager.lua @@ -0,0 +1,1159 @@ +local NetManager = +{ + receiveCallbacks = {}, + msgCallbacks = {}, + isClosedMap = {}, + chatReconnectWaitTime = 1, + connectIPMap = {}, + receiveCallbackPool = {}, + alreadyConnected = {}, + mainReconnectWaitTime = 0, + sendQueue = {}, + tillBeforeOverCount = 0, + msgId = 0 +} + +local CSApplication = CS.UnityEngine.Application +local CSNotReachable = CS.UnityEngine.NetworkReachability.NotReachable + +local MAX_CHAT_WAIT_TIME = 16 +local MAX_MAIN_WAIT_TIME = 10 +local JOIN_CHAT_INTERVAL = 15 +local TILL_BEFORE_INTERVAL = 0.5 + +local NetErrorCode = CS.BF.NetErrorCode + +local pb = require "pb" +local ProtoMsgDispatch = require "app/proto/proto_msg_dispatch" + +local protoPaths = +{ + "assets/proto/protocol.bytes", +} + +NetManager.MAIN_SOCKET_NAME = 0 +NetManager.CHAT_SOCKET_NAME = 1 +NetManager.LOGIN_TYPE = { + TOKEN = "token", + ANONYMOUS = "anonymous", + GOOGLE = "google", + APPLE = "apple", + FACEBOOK = "facebook", +} + +function NetManager:getGate() + if EDITOR_MODE then + return "http://game.juzugame.com:3000" + else + return "https://d3ksek7t8d0wbt.cloudfront.net/" + end +end + +function NetManager:init(callback) + self.chatReconnectWaitTime = 1 + + CS.BF.BFMain.Instance.NetMgr:InitNetClientCount(1) -- 只有主链接,没有聊天,但是聊天逻辑先不删 + if self.initSucc then + if callback then + return callback() + end + end + self.initSucc = true + -- pb.option "int64_as_string" --如果需要uint64再加上 + + local loadCount = #protoPaths + for i, path in ipairs(protoPaths) do + ResourceManager:loadOriginAssetAsync(path, GConst.TYPEOF_UNITY_CLASS.TEXT_ASSET, function(_, textAsset) + pb.load(textAsset.bytes) + ResourceManager:unload(path) + loadCount = loadCount - 1 + if loadCount == 0 then + if callback then + return callback() + end + end + end) + end +end + +function NetManager:setChatUrl(url) + local arr = string.split(url, ":") + self.chatDomain = arr[1] + self.chatPort = arr[2] +end + +function NetManager:getChatDomain() + return self.chatDomain +end + +function NetManager:getChatPort() + return self.chatPort +end + +function NetManager:getIsBusy() + -- return self.lastMsgName ~= nil + return false +end + +function NetManager:isNotReachable() + return CSApplication.internetReachability == CSNotReachable +end + +function NetManager:connect(domain, port, callback, socketName) + socketName = socketName or NetManager.MAIN_SOCKET_NAME + if self:isAvailable(socketName) then + if callback then + callback() + end + return + end + + self.alreadyConnected[socketName] = false + self.isClosedMap[socketName] = false + + if socketName == NetManager.MAIN_SOCKET_NAME then + UIManager:showWaitNet(true) + end + + self.connectIPMap[socketName] = "" + + CS.BF.BFMain.Instance.NetMgr:AddLuaOnConnected(function(name) + self.alreadyConnected[name] = true + Logger.log("connect success:%s", name) + local connectIP = self:getConnectIP(name) + self.connectIPMap[socketName] = connectIP + if name == NetManager.MAIN_SOCKET_NAME then + if self.reconnectMainId then + SchedulerManager:unscheduleGlobal(self.reconnectMainId) + self.reconnectMainId = nil + end + self.mainReconnectWaitTime = 0 + UIManager:hideWaitNet() + else + self.chatReconnectWaitTime = 1 + if self.reconnectChatId then + SchedulerManager:unscheduleGlobal(self.reconnectChatId) + self.reconnectChatId = nil + end + if DataManager.ChatData then + DataManager.ChatData:onConnect() + end + self:joinChatChannel() + end + if callback then + callback() + end + end) + + CS.BF.BFMain.Instance.NetMgr:AddLuaOnDisconnected(function(name) + self:onDisconnect(name) + end) + + CS.BF.BFMain.Instance.NetMgr:AddLuaOnReceiveMessage(function(name, group, recvId, bytes) + if name == NetManager.MAIN_SOCKET_NAME then + self.recvId = recvId + if self.reconnectMainFlag then -- 如果是在重连状态下收到消息就设置下重连所需要的数据 + self:setReconnectData() + end + end + self:onReceive(group, bytes) + end) + + CS.BF.BFMain.Instance.NetMgr:AddLuaOnError(function(name, errorCode, errorMsg) + self:onError(name, errorCode, errorMsg) + end) + + CS.BF.BFMain.Instance.NetMgr:AddLuaOnReconnectSuccess(function(name) + Logger.log("reconnect succes:%s", name) + self:trySend() + if name == NetManager.MAIN_SOCKET_NAME then + if self.reconnectMainId then + SchedulerManager:unscheduleGlobal(self.reconnectMainId) + self.reconnectMainId = nil + end + self.mainReconnectWaitTime = 0 + if self.reconnectMainFlag then + self.reconnectMainFlag = false + end + if self.activeReconnectMainFlag then + self.activeReconnectMainFlag = false + UIManager:hideWaitNet() + if UIManager:getWaitNetCount() == 0 then + UIManager:hideMessageBoxByTag(GConst.GAME_OBJECT_TYPE.MESSAGEBOX_RECONNECT) + end + end + else + self.chatReconnectWaitTime = 1 + if self.reconnectChatId then + SchedulerManager:unscheduleGlobal(self.reconnectChatId) + self.reconnectChatId = nil + end + if self.joinChatId then + SchedulerManager:unscheduleGlobal(self.joinChatId) + self.joinChatId = nil + end + if DataManager.ChatData then + DataManager.ChatData:onConnect() + end + self:joinChatChannel() + end + end) + + CS.BF.BFMain.Instance.NetMgr:SetLuaOnDecodePbCallback(function(name, group, recvId, data) + local msgName = ProtoMsgDispatch:getReqMsgNameByMsgId(group) + if msgName == nil then + return + end + Logger.log("1===onReceive=== %s:%d", msgName, group) + + -- 这里保证即使协议有问题解不出来也不要卡住 + local ok, pbData = pcall(function() + local fullMsgName = ProtoMsgDispatch:getMsgFullNameByMsgName(msgName) + return pb.decode(fullMsgName, data) + end) + + if ok and pbData then + pbData.status = not pbData.err_code and 0 or ProtoMsgDispatch:getErrCodeEnum(pbData.err_code) + if pbData.status ~= 0 then + self:closeAndClear() + local lastLoginType = LocalData:getLastLoginType() + if lastLoginType == NetManager.LOGIN_TYPE.GOOGLE or lastLoginType == NetManager.LOGIN_TYPE.APPLE then + local loginType = SDKManager.BF_LOGIN_TYPE.GOOGLE + if lastLoginType == NetManager.LOGIN_TYPE.APPLE then + loginType = SDKManager.BF_LOGIN_TYPE.APPLE + end + SDKManager:login(function(params) + if not params.token then + return + end + LocalData:setLastLoginInfo(lastLoginType, params.id, params.token) + ModuleManager.LoginManager:saveAuthArgs() + ModuleManager.LoginManager:initSocket() + end, loginType) + else + LocalData:setLastLoginInfo() + ModuleManager.LoginManager:saveAuthArgs() + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.DISCONNECT_RELOGIN), + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + noShowClose = true, + okFunc = function() + ModuleManager.LoginManager:initSocket() + end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + top = true, + } + GFunc.showMessageBox(params) + end + else + LocalData:setLastLoginInfo(NetManager.LOGIN_TYPE.TOKEN, pbData.id, pbData.token) + LocalData:setAccountInfo(pbData) + BIReport:updateAccountId(pbData.id) + + pbData.send_id = pbData.send_id or 0 + pbData.err_code = nil + CS.BF.BFMain.Instance.NetMgr.decodePbStr = json.encode(pbData) + CS.BF.BFMain.Instance.NetMgr.rspGroup = group + CS.BF.BFMain.Instance.NetMgr.decodeFinish = true + end + end + end) + + CS.BF.BFMain.Instance.NetMgr:SetLuaAuthCallback(function(isSuccess) + if not isSuccess then + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.DISCONNECT_RELOGIN), + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + noShowClose = true, + okFunc = function() + ModuleManager.LoginManager:goToLoginScene() + end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + top = true, + } + GFunc.showMessageBox(params) + end + end) + + local configuration = CS.BF.NetConnectConfiguration(CS.BF.NetServiceType.TCPService, tostring(socketName)) + configuration:EnableMessageType(CS.BF.NetIncomingMessageType.DebugMessage) + configuration:EnableMessageType(CS.BF.NetIncomingMessageType.WarningMessage) + configuration:EnableMessageType(CS.BF.NetIncomingMessageType.ErrorMessage) + if socketName == NetManager.MAIN_SOCKET_NAME then + configuration.EnableSilenceReconnect = false -- game连接不用自动重连 + configuration.ReconnectTimeoutTime = GConst.WAIT_NET_RSP_TIME -- 每次重连超时时间 + configuration.AlreadySendMessageCacheCount = 3 + else + -- configuration.ReconnectTimeoutTime = 8 -- 每次重连超时时间 + -- configuration.ReconnectBaseInterval = 1 -- 每次重连间隔时间 + -- configuration.AutoReconnectCount = 5 -- 重连次数 + -- 自动重连可能有bug,先手动重连 + configuration.EnableSilenceReconnect = false -- chat连接不用自动重连 + configuration.ReconnectTimeoutTime = MAX_CHAT_WAIT_TIME -- 每次重连超时时间 + configuration.AlreadySendMessageCacheCount = 3 + end + CS.BF.BFMain.Instance.NetMgr:ConnectWithConfiguration(socketName, configuration, domain, tonumber(port)) +end + +function NetManager:isConnected(socketName) + if not self.initSucc then + return false + end + return CS.BF.BFMain.Instance.NetMgr:IsConnected(socketName) +end + +function NetManager:isAvailable(socketName) + if not self.initSucc then + return false + end + return CS.BF.BFMain.Instance.NetMgr:IsAvailable(socketName) +end + +function NetManager:isDisconnected(socketName) + if not self.initSucc then + return true + end + return CS.BF.BFMain.Instance.NetMgr:IsDisconnected(socketName) +end + +function NetManager:getConnectIP(socketName) + if not self.initSucc then + return "" + end + return CS.BF.BFMain.Instance.NetMgr:GetConnectIP(socketName) +end + +function NetManager:_sendBytes(clientName, bytes, group, cmd) + self.isSending = true + CS.BF.BFMain.Instance.NetMgr:Send(clientName, group, cmd, bytes) +end + +---- 后台发送协议,不锁定界面 +function NetManager:sendOnBackground(msgName, params, callback, socketName) + self:_send(msgName, params, callback, socketName, false) +end + +---- 后台发送协议,不锁定界面,且不会有回复 +function NetManager:sendOnBackgroundWithoutRsp(msgName, params, socketName) + self:_send(msgName, params, nil, socketName, false, true) +end + +function NetManager:saveAuthArgs(authArgs) + local msgFullName = ProtoMsgDispatch:getMsgFullNameByMsgName(ProtoMsgType.FromMsgEnum.AuthReq) + local bytes = pb.encode(msgFullName, authArgs) + CS.BF.BFMain.Instance.NetMgr.authReqData = bytes +end + +function NetManager:saveChatAuthArgs(token) + local msgFullName = ProtoMsgDispatch:getMsgFullNameByMsgName(ProtoMsgType.FromMsgEnum.ChatAuthReq) + local args = { + id = DataManager.PlayerData:getUid(), + token = token + } + CS.BF.BFMain.Instance.NetMgr.ChatAuthReqData = pb.encode(msgFullName, args) +end + +function NetManager:send(binder, msgName, params, responseData, callback, lockGame, noRsp, getType) + if responseData.rewards then + responseData.rewards = GFunc.formatRewardsToServerStruct(responseData.rewards) + end + if responseData.costs then + responseData.costs = GFunc.formatRewardsToServerStruct(responseData.costs) + end + responseData.err_code = GConst.ERROR_STR.SUCCESS + self:_send(binder, msgName, params, responseData, callback, lockGame, noRsp, getType) +end + +function NetManager:sendTillBeforeOver(binder, msgName, params, responseData, callback, lockGame, noRsp, getType) + if responseData.rewards then + responseData.rewards = GFunc.formatRewardsToServerStruct(responseData.rewards) + end + if responseData.costs then + responseData.costs = GFunc.formatRewardsToServerStruct(responseData.costs) + end + responseData.err_code = GConst.ERROR_STR.SUCCESS + self:_send(binder, msgName, params, responseData, callback, lockGame, noRsp, getType, true) +end + +function NetManager:_send(binder, msgName, params, responseData, callback, lockGame, noRsp, getType, beforeOver) + local socketName = NetManager.MAIN_SOCKET_NAME + if self:isDisconnected(socketName) then + if socketName == NetManager.MAIN_SOCKET_NAME then + if UIManager:getWaitNetCount() > 0 then + self:disconnect(socketName) + else + if self.reconnectMainId then + SchedulerManager:unscheduleGlobal(self.reconnectMainId) + self.reconnectMainId = nil + end + self:reconnectMain() + end + else + self:disconnect(socketName) + end + else + if beforeOver then + UIManager:showWaitNet() + self.tillBeforeOverCount = self.tillBeforeOverCount + 1 + end + local pipedMsgName, pipedParams = self:pipedMessage(msgName, params) + table.insert(self.sendQueue, { + binder = binder, + originMsgName = msgName, + msgName = pipedMsgName, + params = pipedParams, + responseData = responseData, + socketName = socketName, + callback = callback, + lockGame = lockGame, + noRsp = noRsp, + getType = getType, + beforeOver = beforeOver, + }) + if not self:isNotSave(msgName) then + self:saveSendQueue() + end + + self:trySend() + end +end + +function NetManager:trySend() + local binder + local originMsgName + local curMsgName + local curParams + local responseData + local getType + local curSocketName + local curCallback + local curLockGame + local noRsp + local beforeOver + if not self.isSending and self.sendQueue[1] then -- 没有正在发送的消息,并且有发送队列, 则继续发送 + local cache = self.sendQueue[1] + binder = cache.binder + originMsgName = cache.originMsgName + curMsgName = cache.msgName + curParams = GFunc.getTable(cache.params) + responseData = cache.responseData + getType = cache.getType + curSocketName = cache.socketName + curCallback = cache.callback + curLockGame = cache.lockGame + noRsp = cache.noRsp + beforeOver = cache.beforeOver + end + + if curMsgName then + if EDITOR_MODE then + local subName = curMsgName + local reqData + if curMsgName == ProtoMsgType.FromMsgEnum.PipedReq then + reqData = curParams.data + else + reqData = curParams + end + Logger.logHighlight("===onSend===:%s", subName) + print("reqData:" .. json.encode(reqData)) + end + + local msgFullName = ProtoMsgDispatch:getMsgFullNameByMsgName(curMsgName) + if curMsgName == ProtoMsgType.FromMsgEnum.PipedReq then + local msgName = ProtoMsgDispatch:getReqMsgNameByMsgId(curParams.msg_id) + local fullMsgName = ProtoMsgDispatch:getMsgFullNameByMsgName(msgName) + if curParams.data and type(curParams.data) == "table" then + curParams.data = pb.encode(fullMsgName, curParams.data) + end + end + + local bytes = pb.encode(msgFullName, curParams) + if bytes then + if curLockGame then + UIManager:showWaitNet() + end + local msgId = ProtoMsgDispatch:getMsgIdByMsgName(curMsgName) + + self:_sendBytes(curSocketName, bytes, msgId, 0) + + if noRsp then + return + end + local msg = ProtoMsgDispatch:getRspMsgByMsgName(originMsgName) + if not self.receiveCallbacks[msg] then + self.receiveCallbacks[msg] = {} + end + local receiveCallback = self:getReceiveCallback() + receiveCallback.binder = binder + receiveCallback.lockGame = curLockGame + receiveCallback.callback = curCallback + receiveCallback.responseData = responseData + receiveCallback.getType = getType + receiveCallback.beforeOver = beforeOver + table.insert(self.receiveCallbacks[msg], receiveCallback) + else + Logger.logError("NetManager send data error %s", curMsgName) + end + end +end + +-- 静默重连 +function NetManager:silentReconnectMain() + self.reconnectMainFlag = true + self:setReconnectData() + CS.BF.BFMain.Instance.NetMgr:Reconnect(NetManager.MAIN_SOCKET_NAME) +end + +-- 主动重连 +function NetManager:reconnectMain() + UIManager:showWaitNet(true) -- 强制重新计时 + if self.activeReconnectMainFlag then -- 说明之前已经在主动重连中,为了保证引用计数正确,这里减一 + UIManager:hideWaitNet() + else + self.activeReconnectMainFlag = true + end + self.reconnectMainFlag = true + self:setReconnectData() + CS.BF.BFMain.Instance.NetMgr:Reconnect(NetManager.MAIN_SOCKET_NAME) +end + +function NetManager:getReceiveCallback() + if #self.receiveCallbackPool > 0 then + return table.remove(self.receiveCallbackPool) + end + return {} +end + +function NetManager:recycleReceiveCallback(receiveCallback) + receiveCallback.callback = nil + receiveCallback.notLockGame = false + table.insert(self.receiveCallbackPool, receiveCallback) +end + +function NetManager:disconnectAll() + if self.alreadyConnected[NetManager.MAIN_SOCKET_NAME] then + self:showReconnectMain() + else + self:closeAll() + end +end + +function NetManager:showReconnectMain() + if self.reconnectMainId then + SchedulerManager:unscheduleGlobal(self.reconnectMainId) + self.reconnectMainId = nil + end + if UIManager:isDisconnectMsgBoxVisible() then + return + end + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.RECONNECT), + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + cancelText = I18N:getGlobalText(I18N.GlobalConst.RELOGIN), + noShowClose = true, + okFunc = function() + self:reconnectMain() + end, + cancelFunc = function() + ModuleManager.LoginManager:goToLoginScene() + end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK_CANCEL, + tag = GConst.GAME_OBJECT_TYPE.MESSAGEBOX_RECONNECT, + top = true, + } + GFunc.showMessageBox(params) +end + +function NetManager:disconnect(socketName) + if self.isClosedMap[socketName] then + return + end + if socketName == NetManager.CHAT_SOCKET_NAME then + self.isClosedMap[socketName] = true + CS.BF.BFMain.Instance.NetMgr:Close(socketName) + + if self.reconnectChatId then + return + end + + if DataManager.ChatData then + DataManager.ChatData:onDisconnect() + end + + self.reconnectChatId = self:performWithDelayGlobal(function () + self.reconnectChatId = nil + if not self:isConnected(NetManager.CHAT_SOCKET_NAME) then + ModuleManager.LoginManager:connectByChannel(nil, NetManager.CHAT_SOCKET_NAME) + end + end, self.chatReconnectWaitTime) + + self.chatReconnectWaitTime = self.chatReconnectWaitTime*2 + if self.chatReconnectWaitTime > MAX_CHAT_WAIT_TIME then + self.chatReconnectWaitTime = MAX_CHAT_WAIT_TIME + end + else + if self.alreadyConnected[socketName] then -- 如果是成功连接过 + if UIManager:getWaitNetCount() > 0 then -- 当前在等待服务器回消息 + if not self.activeReconnectMainFlag then + self:showReconnectMain() + end + else -- 否则就悄咪咪的重连 + if self.mainReconnectWaitTime > MAX_MAIN_WAIT_TIME then + self:showReconnectMain() + else + if self.reconnectMainId then + return + end + self.reconnectMainId = self:performWithDelayGlobal(function () + self.reconnectMainId = nil + self:silentReconnectMain() + end, self.mainReconnectWaitTime) + self.mainReconnectWaitTime = self.mainReconnectWaitTime + 1 + end + end + else -- 从来没有连上过 + self:closeAll() + end + end +end + +function NetManager:onDisconnect(socketName) + self:disconnect(socketName) +end + +function NetManager:performWithDelayGlobal(func, delay) + local sid = SchedulerManager:performWithDelayGlobal(func, delay) + return sid +end + +function NetManager:scheduleGlobal(func, delay) + local sid = SchedulerManager:scheduleGlobal(func, delay) + return sid +end + +function NetManager:closeAll(errorType) + if self.isClosedMap[NetManager.MAIN_SOCKET_NAME] then + return + end + self:closeAndClear() + UIManager:showDisconnect(errorType) +end + +function NetManager:onReceive(msgId, data) + self.isSending = false + --Logger.logHighlight("MSGID:"..msgId) + local msgName = ProtoMsgDispatch:getReqMsgNameByMsgId(msgId) + if msgName == nil then + return + end + if EDITOR_MODE then + Logger.logHighlight("===onReceive===%s:%d", msgName, msgId) + end + + -- 这里保证即使协议有问题解不出来也不要卡住 + + local ok, pbData = pcall(function() + local fullMsgName = ProtoMsgDispatch:getMsgFullNameByMsgName(msgName) + return pb.decode(fullMsgName, data) + end) + + local msg = ProtoMsgDispatch:getRspMsgByMsgName(msgName) + if ok and pbData then + if not pbData.err_code then + pbData.status = 0 + else + pbData.status = ProtoMsgDispatch:getErrCodeEnum(pbData.err_code) + end + if EDITOR_MODE then + print("rspData:" .. json.encode(pbData)) + end + + if NOT_PUBLISH then + Logger.printTable(pbData) + end + + self:dispatch(msgName, pbData) + else + if not ok then + local errorMsg = "NetManager:onReceive failed:" .. msgName + Logger.logError(errorMsg) + end + end + + local sendInfo + local sendMsgName + if self.sendQueue[1]then + sendMsgName = self.sendQueue[1].msgName + if sendMsgName == ProtoMsgType.FromMsgEnum.PipedReq then + sendMsgName = ProtoMsgDispatch:getReqMsgNameByMsgId(self.sendQueue[1].params.msg_id) + end + if ProtoMsgDispatch:getRspMsgByMsgName(sendMsgName) == msgName then + sendInfo = table.remove(self.sendQueue, 1) + self:saveSendQueue() + end + end + + local callbacks = self.receiveCallbacks[msg] + if callbacks and #callbacks > 0 then + local receiveCallback = table.remove(callbacks, 1) + local lockGame = false + local receiveFunc = nil + local responseData = nil + if receiveCallback then + lockGame = receiveCallback.lockGame + receiveFunc = receiveCallback.callback + responseData = receiveCallback.responseData + if NOT_PUBLISH then + Logger.printTable(responseData) + end + if pbData.rewards then + local getType = receiveCallback.getType + if sendMsgName == "MallPayReq" then + getType = PayManager:getItemGetType(pbData.mall_type, pbData.id) + elseif sendMsgName == "MallPaidResultReq" then -- 支付上报统一处理 + if pbData.gift then + for _, gift in ipairs(pbData.gift) do + getType = PayManager:getItemGetType(gift.mall_type, gift.id) + break + end + end + end + + if EDITOR_MODE and not getType then + Logger.logFatal("sendMessage server have rewards but not getType, check it! manager = ", receiveCallback.binder.__cname) + end + + GFunc.addRewards(pbData.rewards, getType) + end + if pbData.costs and not self:getNotAddCostsRsp(msgName) then + local getType = receiveCallback.getType + if sendMsgName == "MallPayReq" then + getType = PayManager:getItemGetType(pbData.mall_type, pbData.id) + elseif sendMsgName == "MallPaidResultReq" then -- 支付上报统一处理 + if pbData.gift then + for _, gift in ipairs(pbData.gift) do + getType = PayManager:getItemGetType(gift.mall_type, gift.id) + break + end + end + end + if EDITOR_MODE and not getType then + Logger.logFatal("sendMessage server have costs but not getType, check it! manager = ", receiveCallback.binder.__cname) + end + GFunc.addCosts(pbData.costs, getType) + end + if EDITOR_MODE and not self:getNotCheckResponse(ProtoMsgDispatch:getReqMsgByMsgName(msgName)) then -- 检查responseData + local fullMsgName = ProtoMsgDispatch:getMsgFullNameByMsgName(msgName) + local serverResult = pb.decode(fullMsgName, data) + self:checkCoin(responseData, serverResult) + if not GFunc.checkTableValueSame(responseData, serverResult, true) then + Logger.logWarningBox(msgName .. " : responseData not equate, please check it!") + Logger.logHighlight("------responseData not equate-------------") + Logger.printTable(responseData) + Logger.printTable(serverResult) + end + end + if receiveCallback.beforeOver then + UIManager:hideWaitNet() + self.tillBeforeOverCount = self.tillBeforeOverCount - 1 + if self.tillBeforeOverCount < 0 then + self.tillBeforeOverCount = 0 + end + end + self:recycleReceiveCallback(receiveCallback) + if lockGame then + UIManager:hideWaitNet() + end + if ok and pbData and receiveFunc then + if sendInfo then + if sendInfo.msgName == ProtoMsgType.FromMsgEnum.PipedReq then + pbData.reqData = sendInfo.params.data + else + pbData.reqData = sendInfo.params + end + end + receiveFunc(receiveCallback.binder, pbData) + end + end + end + + if sendInfo then + self:trySend() + end +end + +function NetManager:onError(socketName, errorType, errorMsg) + self.isSending = false + if socketName == NetManager.MAIN_SOCKET_NAME then + Logger.logHighlight("game net error:errorType = %d, errorMsg = %s", errorType, errorMsg) + if errorType == NetErrorCode.ConnectFailed or + errorType == NetErrorCode.ExceptionError or + errorType == NetErrorCode.ReceiveBufferError or + errorType == NetErrorCode.BeginSendError or + errorType == NetErrorCode.PeerDisconnect or + errorType == NetErrorCode.DataParseError then + self:disconnect(socketName) + elseif errorType == NetErrorCode.ServerRefuseReconnect or + errorType == NetErrorCode.ServerKickNtfClient or + errorType == NetErrorCode.OtherDeviceLogin then -- 服务器拒绝客户端的重连请求,需要关闭连接,重新登录 + self:closeAll(errorType) + elseif errorType == NetErrorCode.DNSParseDomainNameError then + self:closeAll() + else -- 未定义的error + self:disconnect(socketName) + end + elseif socketName == NetManager.CHAT_SOCKET_NAME then + Logger.logHighlight("chat net error:errorType = %d, errorMsg = %s", errorType, errorMsg) + self:disconnect(socketName) + end +end + +function NetManager:setReconnectData() + local msgFullName = ProtoMsgDispatch:getMsgFullNameByMsgName(ProtoMsgType.FromMsgEnum.ReconnectReq) + CS.BF.BFMain.Instance.NetMgr.loginReqData = pb.encode(msgFullName, { recv_id = self.recvId }) +end + +function NetManager:dispatch(msgName, data) + if self.msgCallbacks[msgName] then + for module, callback in pairs(self.msgCallbacks[msgName]) do + callback(module, data) + end + end +end + +function NetManager:getKickOutReasonEnum(enum) + return ProtoMsgDispatch:getKickOutReasonEnum(enum) +end + +function NetManager:joinChatChannel() + -- if self.joinChatId then + -- SchedulerManager:unscheduleGlobal(self.joinChatId) + -- self.joinChatId = nil + -- end + -- if DataManager.ChatData:getIsJoinWorldRoom() then + -- return + -- end + -- local wordChannelId = DataManager.ChatData:getChatWorld():getLocalChatWorldChannleId() + -- local args = { + -- id = wordChannelId, + -- adjust = true -- 登录时第一次进入房间必须能接受调整,手动切房间的时候为false + -- } + -- self:send(ProtoMsgType.FromMsgEnum.JoinWorldRoomReq, args, function(data) + -- if data.status == 0 then + -- DataManager.ChatData:initChat(data) + -- else + -- self.joinChatId = self:performWithDelayGlobal(function () + -- self.joinChatId = nil + -- self:joinChatChannel() + -- end, JOIN_CHAT_INTERVAL) + -- end + -- end, NetManager.CHAT_SOCKET_NAME, true) +end + +function NetManager:registerMsgCallback(msgName, module, callback) + if not self.msgCallbacks[msgName] then + self.msgCallbacks[msgName] = {} + end + self.msgCallbacks[msgName][module] = callback +end + +if NOT_PUBLISH then + NetManager._registerMsgCallback = NetManager.registerMsgCallback + function NetManager:registerMsgCallback(msgName, module, callback) + if debug.getinfo(2, "f").func ~= ServerPushManager.addServerPushListener then + Logger.logFatal("this method only called by ServerPushManager.addServerPushListener") + end + self:_registerMsgCallback(msgName, module, callback) + end +end + +function NetManager:unRegisterMsgCallback(msgName, module) + if self.msgCallbacks[msgName] then + self.msgCallbacks[msgName][module] = nil + end +end + +function NetManager:clearMsgCallbacks() + self.msgCallbacks = {} + self.receiveCallbacks = {} +end + +function NetManager:closeAndClear() + if not self.initSucc then + return + end + if self.tillBeforeOverSid then + SchedulerManager:unscheduleGlobal(self.tillBeforeOverSid) + self.tillBeforeOverSid = nil + end + if self.reconnectMainId then + SchedulerManager:unscheduleGlobal(self.reconnectMainId) + self.reconnectMainId = nil + end + if self.reconnectChatId then + SchedulerManager:unscheduleGlobal(self.reconnectChatId) + self.reconnectChatId = nil + end + if self.joinChatId then + SchedulerManager:unscheduleGlobal(self.joinChatId) + self.joinChatId = nil + end + + self.sendQueue = {} + self.tillBeforeOverCount = 0 + self.msgId = 0 + self.activeReconnectMainFlag = false + self.reconnectMainFlag = false + CS.BF.BFMain.Instance.NetMgr:RemoveAllLuaCallback() + local mainSocketName = NetManager.MAIN_SOCKET_NAME + local chatSocketName = NetManager.CHAT_SOCKET_NAME + + self.isClosedMap[mainSocketName] = true + self.isClosedMap[chatSocketName] = true + self.alreadyConnected[mainSocketName] = false + self.alreadyConnected[chatSocketName] = false + + CS.BF.BFMain.Instance.NetMgr:Close(mainSocketName) + -- CS.BF.BFMain.Instance.NetMgr:Close(chatSocketName) + + self:clearMsgCallbacks() + UIManager:hideWaitNet(true) +end + +function NetManager:saveSendQueue() + local list = {} + for _, info in ipairs(self.sendQueue) do + if not self:isNotSave(info.msgName) then + table.insert(list, { + msgName = info.msgName, + params = info.params, + socketName = info.socketName, + }) + end + end + LocalData:saveSendQueue(list) +end + +function NetManager:isNotSave(msgName) + if msgName == ProtoMsgType.FromMsgEnum.LoginReq or + msgName == ProtoMsgType.FromMsgEnum.SyncReq or + msgName == ProtoMsgType.FromMsgEnum.GMReq then + return true + end + return false +end + +function NetManager:getNotCheckResponse(msgName) + if not EDITOR_MODE then + return false + end + + if msgName == ProtoMsgType.FromMsgEnum.LoginReq or + msgName == ProtoMsgType.FromMsgEnum.SyncReq or + msgName == ProtoMsgType.FromMsgEnum.ArenaInfoReq or + msgName == ProtoMsgType.FromMsgEnum.SummonReq or + msgName == ProtoMsgType.FromMsgEnum.MineResearchADReq or + msgName == ProtoMsgType.FromMsgEnum.MineResearchResultReq or + msgName == ProtoMsgType.FromMsgEnum.IdleRewardReq or + msgName == ProtoMsgType.FromMsgEnum.IdleExtraRewardReq or + msgName == ProtoMsgType.FromMsgEnum.GMReq or + msgName == ProtoMsgType.FromMsgEnum.MallPayReq or + msgName == ProtoMsgType.FromMsgEnum.ChapterPassReq or + msgName == ProtoMsgType.FromMsgEnum.MallPaidResultReq or + msgName == ProtoMsgType.FromMsgEnum.MineDoReq or + msgName == ProtoMsgType.FromMsgEnum.TaskTutorRewardReq or + msgName == ProtoMsgType.FromMsgEnum.BlessingReq or + msgName == ProtoMsgType.FromMsgEnum.MarkGuideReq or + msgName == ProtoMsgType.FromMsgEnum.EnterDungeonReq or + msgName == ProtoMsgType.FromMsgEnum.FinishedArenaReq or + msgName == ProtoMsgType.FromMsgEnum.SettleArenaReq or + msgName == ProtoMsgType.FromMsgEnum.SevenDayRewardReq or + msgName == ProtoMsgType.FromMsgEnum.MonCardRewardReq or + msgName == ProtoMsgType.FromMsgEnum.ChapterStageRewardReq or + msgName == ProtoMsgType.FromMsgEnum.BattlePassRewardReq or + msgName == ProtoMsgType.FromMsgEnum.ChapterRebornReq or + msgName == ProtoMsgType.FromMsgEnum.MineReceiveAwardReq or + msgName == ProtoMsgType.FromMsgEnum.MailExtractReq or + msgName == ProtoMsgType.FromMsgEnum.MailListReq or + msgName == ProtoMsgType.FromMsgEnum.MailDeleteReq or + msgName == ProtoMsgType.FromMsgEnum.ExistReq or + msgName == ProtoMsgType.FromMsgEnum.BindReq or + msgName == ProtoMsgType.FromMsgEnum.DeleteReq + then + return true + end + return false +end + +function NetManager:getNotAddCostsRsp(msgName) + if msgName == ProtoMsgType.FromMsgEnum.ChapterTrainRsp then + return true + end + return false +end + +function NetManager:pipedMessage(msgName, params) + if msgName == ProtoMsgType.FromMsgEnum.LoginReq or + msgName == ProtoMsgType.FromMsgEnum.SyncReq or + msgName == ProtoMsgType.FromMsgEnum.IdleRewardReq or + msgName == ProtoMsgType.FromMsgEnum.IdleExtraRewardReq or + msgName == ProtoMsgType.FromMsgEnum.GMReq then + return msgName, params + end + local msgId = ProtoMsgDispatch:getMsgIdByMsgName(msgName) + self.msgId = self.msgId + 1 + local pipedStruct = { + id = self.msgId, + ts = Time:getServerTime() * 1000, + msg_id = msgId, + data = params, + } + return ProtoMsgType.FromMsgEnum.PipedReq, pipedStruct +end + +if EDITOR_MODE then + function NetManager:_checkDebugFuncMap() + if self._debugFuncMap == nil then + self._debugFuncMap = { + [BaseModule.sendMessage] = true, + [BaseModule.sendMessageTillBeforeOver] = true, + } + end + end + + NetManager._releaseSend = NetManager.send + function NetManager:send(obj, msgName, params, responseData, callback, lockGame, noRsp, getType) + -- 参数检查 + if (responseData.rewards or responseData.costs) and not getType and msgName ~= ProtoMsgType.FromMsgEnum.GMReq then + Logger.logFatal("sendMessage have rewards or have costs but not getType, check it! manager = ", self.__cname) + return + end + + if not params then + Logger.logFatal("NetManager send params is nil %s", msgName) + end + + if not responseData then + Logger.logFatal("NetManager send responseData is nil %s", msgName) + end + + local msgFullName = ProtoMsgDispatch:getMsgFullNameByMsgName(msgName) + local bytes = pb.encode(msgFullName, params) + if not bytes then + Logger.logFatal("NetManager send params error %s", msgName) + return + end + + if not self:getNotCheckResponse(msgName) then + local fullMsgName = ProtoMsgDispatch:getMsgFullNameByMsgName(ProtoMsgDispatch:getRspMsgByMsgName(msgName)) + for name, number, type in pb.fields(fullMsgName) do + if name ~= "err_code" and responseData[name] == nil then + Logger.logFatal("NetManager send responseData error %s not have %s", msgName, name) + return + end + end + end + -- end 参数检查 + + self:_checkDebugFuncMap() + local currFunc = debug.getinfo(2, "f").func + if obj ~= NetManager and self._debugFuncMap[currFunc] == nil then + Logger.logFatal("you can not call NetManager:send directly") + end + local findCallback = false + if obj ~= NetManager and obj.__cname ~= "PayManager" then + for _, fieldValue in pairs(obj.class) do + if fieldValue == callback then + findCallback = true + end + end + else + findCallback = true + end + + if not findCallback then + Logger.logFatal("callback of NetManager:send is not %s's function", obj.__cname) + end + self:_releaseSend(obj, msgName, params, responseData, callback, lockGame, noRsp, getType) + end + + NetManager._releaseSendTillBeforeOver = NetManager.sendTillBeforeOver + function NetManager:sendTillBeforeOver(obj, msgName, params, responseData, callback, ...) + self:_checkDebugFuncMap() + local currFunc = debug.getinfo(2, "f").func + if obj ~= NetManager and self._debugFuncMap[currFunc] == nil then + Logger.logFatal("you can not call NetManager:send directly") + end + self:_releaseSendTillBeforeOver(obj, msgName, params, responseData, callback, ...) + end +end + +function NetManager:checkCoin(responseData, serverResponseData) + --- 特殊处理金币 + if responseData.rewards and serverResponseData.rewards then + local coinCount = 0 + for i, info in ipairs(serverResponseData.rewards) do + if info.item and info.item.id == GConst.ItemConst.ITEM_ID_GOLD then + local serverGoldBigNum = BigNumOpt.cloneBigNum(info.item.count) + local rspGoldBigNum = BigNumOpt.cloneBigNum(responseData.rewards[i].item.count) + if serverGoldBigNum.unit > rspGoldBigNum.unit then + serverGoldBigNum.value, serverGoldBigNum.unit = BigNumOpt.numToTargetUnit(serverGoldBigNum.value, serverGoldBigNum.unit, rspGoldBigNum.unit) + elseif serverGoldBigNum.unit < rspGoldBigNum.unit then + rspGoldBigNum.value, rspGoldBigNum.unit = BigNumOpt.numToTargetUnit(rspGoldBigNum.value, rspGoldBigNum.unit, serverGoldBigNum.unit) + end + if serverGoldBigNum.unit == rspGoldBigNum.unit and serverGoldBigNum.value ~= rspGoldBigNum.value then + --- 百分之一的差距忽略不计 + local minCount = math.floor(serverGoldBigNum.value * 0.99 + 0.000001) + local maxCount = math.floor(serverGoldBigNum.value * 1.01 + 0.000001) + if minCount <= rspGoldBigNum.value and rspGoldBigNum.value <= maxCount then + responseData.rewards[i].item.count = info.item.count + if EDITOR_MODE then + Logger.logHighlight("------金币有误差,且在-1%%~1%%-------------") + else + if EDITOR_MODE then + Logger.logFatal("------金币有误差,不在-1%%~1%%-------------") + end + end + end + else + responseData.rewards[i].item.count = info.item.count + end + end + end + end + + if responseData.costs and serverResponseData.costs then + local coinCount = 0 + for i, info in ipairs(serverResponseData.costs) do + if info.item and info.item.id == GConst.ItemConst.ITEM_ID_GOLD then + local serverGoldBigNum = BigNumOpt.cloneBigNum(info.item.count) + local rspGoldBigNum = BigNumOpt.cloneBigNum(responseData.costs[i].item.count) + if serverGoldBigNum.unit > rspGoldBigNum.unit then + serverGoldBigNum.value, serverGoldBigNum.unit = BigNumOpt.numToTargetUnit(serverGoldBigNum.value, serverGoldBigNum.unit, rspGoldBigNum.unit) + elseif serverGoldBigNum.unit < rspGoldBigNum.unit then + rspGoldBigNum.value, rspGoldBigNum.unit = BigNumOpt.numToTargetUnit(rspGoldBigNum.value, rspGoldBigNum.unit, serverGoldBigNum.unit) + end + if serverGoldBigNum.unit == rspGoldBigNum.unit and serverGoldBigNum.value ~= rspGoldBigNum.value then + --- 百分之一的差距忽略不计 + local minCount = math.floor(serverGoldBigNum.value * 0.99 + 0.000001) + local maxCount = math.floor(serverGoldBigNum.value * 1.01 + 0.000001) + if minCount <= rspGoldBigNum.value and rspGoldBigNum.value <= maxCount then + responseData.costs[i].item.count = info.item.count + if EDITOR_MODE then + Logger.logHighlight("------金币有误差,且在-1%%~1%%-------------") + end + else + if EDITOR_MODE then + Logger.logFatal("------金币有误差,不在-1%%~1%%-------------") + end + end + else + responseData.costs[i].item.count = info.item.count + end + end + end + end + --- +end + +return NetManager \ No newline at end of file diff --git a/lua/app/net/net_manager.lua.meta b/lua/app/net/net_manager.lua.meta new file mode 100644 index 00000000..fee86fd5 --- /dev/null +++ b/lua/app/net/net_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: bc2318d7940bb8e41b78633f73e985e8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/proto.meta b/lua/app/proto.meta new file mode 100644 index 00000000..f5e9582d --- /dev/null +++ b/lua/app/proto.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7a331607004d1134c949fc3c7af260c8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/proto/proto_msg_dispatch.lua b/lua/app/proto/proto_msg_dispatch.lua new file mode 100644 index 00000000..3cdfd0f4 --- /dev/null +++ b/lua/app/proto/proto_msg_dispatch.lua @@ -0,0 +1,83 @@ +local pb = require "pb" + +local ProtoMsgDispatch = +{ + msgCallbacks = {} +} + +ProtoMsgDispatch.ERROR_CODE = +{ + SUCCESS = 0, +} + +function ProtoMsgDispatch:getMsgIdByMsgName(msgName) + local msgId = ProtoMsgType.FromMsgToId[msgName] + return msgId +end + +function ProtoMsgDispatch:getRspMsgByMsgName(msgName) + local str = string.gsub(msgName, "Req", "Rsp") + return str +end + +function ProtoMsgDispatch:getReqMsgByMsgName(msgName) + local str = string.gsub(msgName, "Rsp", "Req") + return str +end + +function ProtoMsgDispatch:getMsgFullNameByMsgName(msgName) + return "cspb." .. msgName +end + +function ProtoMsgDispatch:getReqMsgNameByMsgId(msgId) + local reqName = ProtoMsgType.FromMsgId[msgId] + return reqName +end + +function ProtoMsgDispatch:getErrCodeEnum(errCode) + local code = pb.enum("cspb.ErrCode", errCode) + return code +end + +function ProtoMsgDispatch:getKickOutReasonEnum(enum) + local code = pb.enum("cspb.KickOutReason", enum) + return code +end + +-- function ProtoMsgDispatch:getRspMsgNameByGrpCmd(grp, cmd) +-- local rspName = ProtoMsgType.FromMsgId[grp * 1000 + cmd] +-- if rspName == nil then +-- return +-- end +-- return 'rsp' .. rspName +-- end + +-- function ProtoMsgDispatch:getReqMsgName(id) +-- local reqName = ProtoMsgType.FromMsgId[id] +-- if reqName == nil then +-- return +-- end +-- return 'req' .. reqName +-- end + +-- function ProtoMsgDispatch:getRspMsgName(id) +-- local rspName = ProtoMsgType.FromMsgId[id] +-- if rspName == nil then +-- return +-- end +-- return 'rsp' .. rspName +-- end + +-- function ProtoMsgDispatch:dispatch(msgName, data) +-- if self.msgCallbacks[msgName] then +-- for module, callback in pairs(self.msgCallbacks[msgName]) do +-- callback(module, data) +-- end +-- end +-- end + +-- function ProtoMsgDispatch:rspHeroBuy(data) +-- HeroMgr:onReceiveHeroListExpaned(data) +-- end + +return ProtoMsgDispatch \ No newline at end of file diff --git a/lua/app/proto/proto_msg_dispatch.lua.meta b/lua/app/proto/proto_msg_dispatch.lua.meta new file mode 100644 index 00000000..0710f480 --- /dev/null +++ b/lua/app/proto/proto_msg_dispatch.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 47603fe697860294596e50ed60d5218d +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/proto/proto_msg_type.lua b/lua/app/proto/proto_msg_type.lua new file mode 100644 index 00000000..3c745530 --- /dev/null +++ b/lua/app/proto/proto_msg_type.lua @@ -0,0 +1,436 @@ +local ProtoMsgType = { + FromMsgId = { + [60275243] = "ADAddDungeonCountReq", + [60277076] = "ADAddDungeonCountRsp", + [361733825] = "SkipGuideReq", + [361735658] = "SkipGuideRsp", + [433064534] = "FinishedDungeonReq", + [433066367] = "FinishedDungeonRsp", + [438890979] = "LegacyTakeOffReq", + [438892812] = "LegacyTakeOffRsp", + [460862024] = "MineDoReq", + [460863857] = "MineDoRsp", + [519606937] = "FinishedArenaReq", + [519608770] = "FinishedArenaRsp", + [565621982] = "MallPayReq", + [565623815] = "MallPayRsp", + [613793796] = "WatchADReq", + [613795629] = "WatchADRsp", + [754471126] = "MineResearchImmediatelyReq", + [754472959] = "MineResearchImmediatelyRsp", + [965540816] = "CollectionUpgradeReq", + [965542649] = "CollectionUpgradeRsp", + [1008447203] = "DeleteReq", + [1008449036] = "DeleteRsp", + [1012183218] = "ChapterStageRewardReq", + [1012185051] = "ChapterStageRewardRsp", + [1051669139] = "ArenaRebornReq", + [1051670972] = "ArenaRebornRsp", + [1068769299] = "ReconnectReq", + [1068771132] = "ReconnectRsp", + [1070841461] = "LoginReq", + [1070843294] = "LoginRsp", + [1082535333] = "MineReceiveAwardReq", + [1082537166] = "MineReceiveAwardRsp", + [1099769191] = "LegacyUpgradeReq", + [1099771024] = "LegacyUpgradeRsp", + [1115038364] = "BattlePassBoughtNtf", + [1122994860] = "AdFreeDailyGiftReq", + [1122996693] = "AdFreeDailyGiftRsp", + [1245407193] = "SummonPoolLevelNtf", + [1304663451] = "MarkGuideReq", + [1304665284] = "MarkGuideRsp", + [1421619528] = "EnterDungeonReq", + [1421621361] = "EnterDungeonRsp", + [1445370527] = "BlessingReq", + [1445372360] = "BlessingRsp", + [1471116409] = "BindReq", + [1471118242] = "BindRsp", + [1473507638] = "TaskTutorRewardReq", + [1473509471] = "TaskTutorRewardRsp", + [1483439881] = "MasteryUpgradeReq", + [1483441714] = "MasteryUpgradeRsp", + [1500694701] = "ArenaInfoReq", + [1500696534] = "ArenaInfoRsp", + [1504803711] = "ChapterTrainReq", + [1504805544] = "ChapterTrainRsp", + [1531033914] = "BattlePassRewardReq", + [1531035747] = "BattlePassRewardRsp", + [1602788348] = "AccelerationStartReq", + [1602790181] = "AccelerationStartRsp", + [1666427920] = "MailDeleteReq", + [1666429753] = "MailDeleteRsp", + [1690297937] = "SummonReq", + [1690299770] = "SummonRsp", + [1901321540] = "PipedReq", + [1953314030] = "SettleArenaReq", + [1953315863] = "SettleArenaRsp", + [1961954268] = "ChapterPassReq", + [1961956101] = "ChapterPassRsp", + [2095612947] = "ChangeNameReq", + [2095614780] = "ChangeNameRsp", + [2241407571] = "MineAdAddReq", + [2241409404] = "MineAdAddRsp", + [2269355409] = "ChapterRebornReq", + [2269357242] = "ChapterRebornRsp", + [2546140283] = "EnterArenaReq", + [2546142116] = "EnterArenaRsp", + [2581180989] = "MailListReq", + [2581182822] = "MailListRsp", + [2620369240] = "SevenDayRewardReq", + [2620371073] = "SevenDayRewardRsp", + [2717079533] = "MallPaidResultReq", + [2717081366] = "MallPaidResultRsp", + [2731281392] = "MailExtractReq", + [2731283225] = "MailExtractRsp", + [2849800229] = "MailReadReq", + [2849802062] = "MailReadRsp", + [3062745642] = "FundAwardReq", + [3062747475] = "FundAwardRsp", + [3087688987] = "IdleRewardReq", + [3087690820] = "IdleRewardRsp", + [3190730044] = "KickOutNtf", + [3224230499] = "SevenDayTaskRewardReq", + [3224232332] = "SevenDayTaskRewardRsp", + [3345916700] = "MineResearchReq", + [3345918533] = "MineResearchRsp", + [3348087218] = "MasteryResetReq", + [3348089051] = "MasteryResetRsp", + [3367438761] = "MineResearchADReq", + [3367440594] = "MineResearchADRsp", + [3370485095] = "MonCardRewardReq", + [3370486928] = "MonCardRewardRsp", + [3418839756] = "RuneUnlockReq", + [3418841589] = "RuneUnlockRsp", + [3421843875] = "TaskDailyRewardReq", + [3421845708] = "TaskDailyRewardRsp", + [3450440933] = "BattlePassTaskRewardReq", + [3450442766] = "BattlePassTaskRewardRsp", + [3485443651] = "ChapterQuickPassUpgradeReq", + [3485445484] = "ChapterQuickPassUpgradeRsp", + [3537847552] = "RuneUpgradeReq", + [3537849385] = "RuneUpgradeRsp", + [3607879254] = "AuthReq", + [3607881087] = "AuthRsp", + [3624439233] = "NewMailNtf", + [3628799921] = "ChapterQuickPassReq", + [3628801754] = "ChapterQuickPassRsp", + [3750411183] = "EquipWearReq", + [3750413016] = "EquipWearRsp", + [3763117270] = "HeartbeatReq", + [3763119103] = "HeartbeatRsp", + [3805364358] = "EquipUpgradeReq", + [3805366191] = "EquipUpgradeRsp", + [3846223098] = "MallActTriggerGiftNtf", + [3857205886] = "UpProcessReq", + [3857207719] = "UpProcessRsp", + [3882429796] = "ADAddArenaCountReq", + [3882431629] = "ADAddArenaCountRsp", + [3899639947] = "AccelerationProcessReq", + [3899641780] = "AccelerationProcessRsp", + [3904148760] = "GMReq", + [3904150593] = "GMRsp", + [4031150628] = "SignInReq", + [4031152461] = "SignInRsp", + [4091878963] = "IdleExtraRewardReq", + [4091880796] = "IdleExtraRewardRsp", + [4102846690] = "LegacyWearReq", + [4102848523] = "LegacyWearRsp", + [4148669287] = "MineResearchResultReq", + [4148671120] = "MineResearchResultRsp", + [4222840253] = "RuneWearReq", + [4222842086] = "RuneWearRsp", + [4256333947] = "ExistReq", + [4256335780] = "ExistRsp", + }, + FromMsgToId = { + ADAddDungeonCountReq = 60275243, + ADAddDungeonCountRsp = 60277076, + SkipGuideReq = 361733825, + SkipGuideRsp = 361735658, + FinishedDungeonReq = 433064534, + FinishedDungeonRsp = 433066367, + LegacyTakeOffReq = 438890979, + LegacyTakeOffRsp = 438892812, + MineDoReq = 460862024, + MineDoRsp = 460863857, + FinishedArenaReq = 519606937, + FinishedArenaRsp = 519608770, + MallPayReq = 565621982, + MallPayRsp = 565623815, + WatchADReq = 613793796, + WatchADRsp = 613795629, + MineResearchImmediatelyReq = 754471126, + MineResearchImmediatelyRsp = 754472959, + CollectionUpgradeReq = 965540816, + CollectionUpgradeRsp = 965542649, + DeleteReq = 1008447203, + DeleteRsp = 1008449036, + ChapterStageRewardReq = 1012183218, + ChapterStageRewardRsp = 1012185051, + ArenaRebornReq = 1051669139, + ArenaRebornRsp = 1051670972, + ReconnectReq = 1068769299, + ReconnectRsp = 1068771132, + LoginReq = 1070841461, + LoginRsp = 1070843294, + MineReceiveAwardReq = 1082535333, + MineReceiveAwardRsp = 1082537166, + LegacyUpgradeReq = 1099769191, + LegacyUpgradeRsp = 1099771024, + BattlePassBoughtNtf = 1115038364, + AdFreeDailyGiftReq = 1122994860, + AdFreeDailyGiftRsp = 1122996693, + SummonPoolLevelNtf = 1245407193, + MarkGuideReq = 1304663451, + MarkGuideRsp = 1304665284, + EnterDungeonReq = 1421619528, + EnterDungeonRsp = 1421621361, + BlessingReq = 1445370527, + BlessingRsp = 1445372360, + BindReq = 1471116409, + BindRsp = 1471118242, + TaskTutorRewardReq = 1473507638, + TaskTutorRewardRsp = 1473509471, + MasteryUpgradeReq = 1483439881, + MasteryUpgradeRsp = 1483441714, + ArenaInfoReq = 1500694701, + ArenaInfoRsp = 1500696534, + ChapterTrainReq = 1504803711, + ChapterTrainRsp = 1504805544, + BattlePassRewardReq = 1531033914, + BattlePassRewardRsp = 1531035747, + AccelerationStartReq = 1602788348, + AccelerationStartRsp = 1602790181, + MailDeleteReq = 1666427920, + MailDeleteRsp = 1666429753, + SummonReq = 1690297937, + SummonRsp = 1690299770, + PipedReq = 1901321540, + SettleArenaReq = 1953314030, + SettleArenaRsp = 1953315863, + ChapterPassReq = 1961954268, + ChapterPassRsp = 1961956101, + ChangeNameReq = 2095612947, + ChangeNameRsp = 2095614780, + MineAdAddReq = 2241407571, + MineAdAddRsp = 2241409404, + ChapterRebornReq = 2269355409, + ChapterRebornRsp = 2269357242, + EnterArenaReq = 2546140283, + EnterArenaRsp = 2546142116, + MailListReq = 2581180989, + MailListRsp = 2581182822, + SevenDayRewardReq = 2620369240, + SevenDayRewardRsp = 2620371073, + MallPaidResultReq = 2717079533, + MallPaidResultRsp = 2717081366, + MailExtractReq = 2731281392, + MailExtractRsp = 2731283225, + MailReadReq = 2849800229, + MailReadRsp = 2849802062, + FundAwardReq = 3062745642, + FundAwardRsp = 3062747475, + IdleRewardReq = 3087688987, + IdleRewardRsp = 3087690820, + KickOutNtf = 3190730044, + SevenDayTaskRewardReq = 3224230499, + SevenDayTaskRewardRsp = 3224232332, + MineResearchReq = 3345916700, + MineResearchRsp = 3345918533, + MasteryResetReq = 3348087218, + MasteryResetRsp = 3348089051, + MineResearchADReq = 3367438761, + MineResearchADRsp = 3367440594, + MonCardRewardReq = 3370485095, + MonCardRewardRsp = 3370486928, + RuneUnlockReq = 3418839756, + RuneUnlockRsp = 3418841589, + TaskDailyRewardReq = 3421843875, + TaskDailyRewardRsp = 3421845708, + BattlePassTaskRewardReq = 3450440933, + BattlePassTaskRewardRsp = 3450442766, + ChapterQuickPassUpgradeReq = 3485443651, + ChapterQuickPassUpgradeRsp = 3485445484, + RuneUpgradeReq = 3537847552, + RuneUpgradeRsp = 3537849385, + AuthReq = 3607879254, + AuthRsp = 3607881087, + NewMailNtf = 3624439233, + ChapterQuickPassReq = 3628799921, + ChapterQuickPassRsp = 3628801754, + EquipWearReq = 3750411183, + EquipWearRsp = 3750413016, + HeartbeatReq = 3763117270, + HeartbeatRsp = 3763119103, + EquipUpgradeReq = 3805364358, + EquipUpgradeRsp = 3805366191, + MallActTriggerGiftNtf = 3846223098, + UpProcessReq = 3857205886, + UpProcessRsp = 3857207719, + ADAddArenaCountReq = 3882429796, + ADAddArenaCountRsp = 3882431629, + AccelerationProcessReq = 3899639947, + AccelerationProcessRsp = 3899641780, + GMReq = 3904148760, + GMRsp = 3904150593, + SignInReq = 4031150628, + SignInRsp = 4031152461, + IdleExtraRewardReq = 4091878963, + IdleExtraRewardRsp = 4091880796, + LegacyWearReq = 4102846690, + LegacyWearRsp = 4102848523, + MineResearchResultReq = 4148669287, + MineResearchResultRsp = 4148671120, + RuneWearReq = 4222840253, + RuneWearRsp = 4222842086, + ExistReq = 4256333947, + ExistRsp = 4256335780, + }, + FromMsgEnum = { + ADAddDungeonCountReq = "ADAddDungeonCountReq", + ADAddDungeonCountRsp = "ADAddDungeonCountRsp", + SkipGuideReq = "SkipGuideReq", + SkipGuideRsp = "SkipGuideRsp", + FinishedDungeonReq = "FinishedDungeonReq", + FinishedDungeonRsp = "FinishedDungeonRsp", + LegacyTakeOffReq = "LegacyTakeOffReq", + LegacyTakeOffRsp = "LegacyTakeOffRsp", + MineDoReq = "MineDoReq", + MineDoRsp = "MineDoRsp", + FinishedArenaReq = "FinishedArenaReq", + FinishedArenaRsp = "FinishedArenaRsp", + MallPayReq = "MallPayReq", + MallPayRsp = "MallPayRsp", + WatchADReq = "WatchADReq", + WatchADRsp = "WatchADRsp", + MineResearchImmediatelyReq = "MineResearchImmediatelyReq", + MineResearchImmediatelyRsp = "MineResearchImmediatelyRsp", + CollectionUpgradeReq = "CollectionUpgradeReq", + CollectionUpgradeRsp = "CollectionUpgradeRsp", + DeleteReq = "DeleteReq", + DeleteRsp = "DeleteRsp", + ChapterStageRewardReq = "ChapterStageRewardReq", + ChapterStageRewardRsp = "ChapterStageRewardRsp", + ArenaRebornReq = "ArenaRebornReq", + ArenaRebornRsp = "ArenaRebornRsp", + ReconnectReq = "ReconnectReq", + ReconnectRsp = "ReconnectRsp", + LoginReq = "LoginReq", + LoginRsp = "LoginRsp", + MineReceiveAwardReq = "MineReceiveAwardReq", + MineReceiveAwardRsp = "MineReceiveAwardRsp", + LegacyUpgradeReq = "LegacyUpgradeReq", + LegacyUpgradeRsp = "LegacyUpgradeRsp", + BattlePassBoughtNtf = "BattlePassBoughtNtf", + AdFreeDailyGiftReq = "AdFreeDailyGiftReq", + AdFreeDailyGiftRsp = "AdFreeDailyGiftRsp", + SummonPoolLevelNtf = "SummonPoolLevelNtf", + MarkGuideReq = "MarkGuideReq", + MarkGuideRsp = "MarkGuideRsp", + EnterDungeonReq = "EnterDungeonReq", + EnterDungeonRsp = "EnterDungeonRsp", + BlessingReq = "BlessingReq", + BlessingRsp = "BlessingRsp", + BindReq = "BindReq", + BindRsp = "BindRsp", + TaskTutorRewardReq = "TaskTutorRewardReq", + TaskTutorRewardRsp = "TaskTutorRewardRsp", + MasteryUpgradeReq = "MasteryUpgradeReq", + MasteryUpgradeRsp = "MasteryUpgradeRsp", + ArenaInfoReq = "ArenaInfoReq", + ArenaInfoRsp = "ArenaInfoRsp", + ChapterTrainReq = "ChapterTrainReq", + ChapterTrainRsp = "ChapterTrainRsp", + BattlePassRewardReq = "BattlePassRewardReq", + BattlePassRewardRsp = "BattlePassRewardRsp", + AccelerationStartReq = "AccelerationStartReq", + AccelerationStartRsp = "AccelerationStartRsp", + MailDeleteReq = "MailDeleteReq", + MailDeleteRsp = "MailDeleteRsp", + SummonReq = "SummonReq", + SummonRsp = "SummonRsp", + PipedReq = "PipedReq", + SettleArenaReq = "SettleArenaReq", + SettleArenaRsp = "SettleArenaRsp", + ChapterPassReq = "ChapterPassReq", + ChapterPassRsp = "ChapterPassRsp", + ChangeNameReq = "ChangeNameReq", + ChangeNameRsp = "ChangeNameRsp", + MineAdAddReq = "MineAdAddReq", + MineAdAddRsp = "MineAdAddRsp", + ChapterRebornReq = "ChapterRebornReq", + ChapterRebornRsp = "ChapterRebornRsp", + EnterArenaReq = "EnterArenaReq", + EnterArenaRsp = "EnterArenaRsp", + MailListReq = "MailListReq", + MailListRsp = "MailListRsp", + SevenDayRewardReq = "SevenDayRewardReq", + SevenDayRewardRsp = "SevenDayRewardRsp", + MallPaidResultReq = "MallPaidResultReq", + MallPaidResultRsp = "MallPaidResultRsp", + MailExtractReq = "MailExtractReq", + MailExtractRsp = "MailExtractRsp", + MailReadReq = "MailReadReq", + MailReadRsp = "MailReadRsp", + FundAwardReq = "FundAwardReq", + FundAwardRsp = "FundAwardRsp", + IdleRewardReq = "IdleRewardReq", + IdleRewardRsp = "IdleRewardRsp", + KickOutNtf = "KickOutNtf", + SevenDayTaskRewardReq = "SevenDayTaskRewardReq", + SevenDayTaskRewardRsp = "SevenDayTaskRewardRsp", + MineResearchReq = "MineResearchReq", + MineResearchRsp = "MineResearchRsp", + MasteryResetReq = "MasteryResetReq", + MasteryResetRsp = "MasteryResetRsp", + MineResearchADReq = "MineResearchADReq", + MineResearchADRsp = "MineResearchADRsp", + MonCardRewardReq = "MonCardRewardReq", + MonCardRewardRsp = "MonCardRewardRsp", + RuneUnlockReq = "RuneUnlockReq", + RuneUnlockRsp = "RuneUnlockRsp", + TaskDailyRewardReq = "TaskDailyRewardReq", + TaskDailyRewardRsp = "TaskDailyRewardRsp", + BattlePassTaskRewardReq = "BattlePassTaskRewardReq", + BattlePassTaskRewardRsp = "BattlePassTaskRewardRsp", + ChapterQuickPassUpgradeReq = "ChapterQuickPassUpgradeReq", + ChapterQuickPassUpgradeRsp = "ChapterQuickPassUpgradeRsp", + RuneUpgradeReq = "RuneUpgradeReq", + RuneUpgradeRsp = "RuneUpgradeRsp", + AuthReq = "AuthReq", + AuthRsp = "AuthRsp", + NewMailNtf = "NewMailNtf", + ChapterQuickPassReq = "ChapterQuickPassReq", + ChapterQuickPassRsp = "ChapterQuickPassRsp", + EquipWearReq = "EquipWearReq", + EquipWearRsp = "EquipWearRsp", + HeartbeatReq = "HeartbeatReq", + HeartbeatRsp = "HeartbeatRsp", + EquipUpgradeReq = "EquipUpgradeReq", + EquipUpgradeRsp = "EquipUpgradeRsp", + MallActTriggerGiftNtf = "MallActTriggerGiftNtf", + UpProcessReq = "UpProcessReq", + UpProcessRsp = "UpProcessRsp", + ADAddArenaCountReq = "ADAddArenaCountReq", + ADAddArenaCountRsp = "ADAddArenaCountRsp", + AccelerationProcessReq = "AccelerationProcessReq", + AccelerationProcessRsp = "AccelerationProcessRsp", + GMReq = "GMReq", + GMRsp = "GMRsp", + SignInReq = "SignInReq", + SignInRsp = "SignInRsp", + IdleExtraRewardReq = "IdleExtraRewardReq", + IdleExtraRewardRsp = "IdleExtraRewardRsp", + LegacyWearReq = "LegacyWearReq", + LegacyWearRsp = "LegacyWearRsp", + MineResearchResultReq = "MineResearchResultReq", + MineResearchResultRsp = "MineResearchResultRsp", + RuneWearReq = "RuneWearReq", + RuneWearRsp = "RuneWearRsp", + ExistReq = "ExistReq", + ExistRsp = "ExistRsp", + }, +} + +return ProtoMsgType \ No newline at end of file diff --git a/lua/app/proto/proto_msg_type.lua.meta b/lua/app/proto/proto_msg_type.lua.meta new file mode 100644 index 00000000..3e143124 --- /dev/null +++ b/lua/app/proto/proto_msg_type.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: bd91748f0f443924387c96694c60ad3f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/scene.meta b/lua/app/scene.meta new file mode 100644 index 00000000..e31a00e7 --- /dev/null +++ b/lua/app/scene.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 59d1ce8aadf7b8c45ac8fb24976a0ed3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/scene/base_scene.lua b/lua/app/scene/base_scene.lua new file mode 100644 index 00000000..d6a1d616 --- /dev/null +++ b/lua/app/scene/base_scene.lua @@ -0,0 +1,139 @@ +local BaseObject = require "app/bf/unity/base_object" + +local BaseScene = {} + +function BaseScene:ctor() +end + +function BaseScene:init() +end + +function BaseScene:onClose() +end + +function BaseScene:closeLoadingAuto() + return true +end + +function BaseScene:addCloseLoadingCallback(callback) + self.closeLoadingCallback = callback +end + +function BaseScene:closeLoading(callback) + local success = UIManager:closeLoading(function() + if callback then + callback() + end + if self.closeLoadingCallback then + self.closeLoadingCallback() + self.closeLoadingCallback = nil + end + end) + if success then -- 避免重复调用 + self:enableTouch() + end +end + +function BaseScene:getResPath() + return "assets/scenes/common_scene.unity" +end + +function BaseScene:isClosed() + return self._isAlreadyClosed +end + +function BaseScene:setRootActive(enable) + self.root:setActive(enable) +end + +function BaseScene:addEventListener(key, func, priority) + local tag = EventManager:addEventListener(key, func, priority) + self._baseEventListeners = self._baseEventListeners or {} + self._baseEventListeners[key] = tag +end + +function BaseScene:removeEventListener(key) + if self._baseEventListeners and self._baseEventListeners[key] then + EventManager:removeEventListener(key, self._baseEventListeners[key]) + self._baseEventListeners[key] = nil + end +end + +function BaseScene:scheduleGlobal(func, inter) + local sid = SchedulerManager:scheduleGlobal(func, inter) + if self._schedulerIds == nil then + self._schedulerIds = {} + end + table.insert(self._schedulerIds, sid) + return sid +end + +function BaseScene:performWithDelayGlobal(func, delay) + local sid = SchedulerManager:performWithDelayGlobal(func, delay) + if self._schedulerIds == nil then + self._schedulerIds = {} + end + table.insert(self._schedulerIds, sid) + return sid +end + +function BaseScene:unscheduleGlobal(sid) + if self._schedulerIds == nil then + return + end + for k, v in ipairs(self._schedulerIds) do + if v == sid then + table.remove(self._schedulerIds, k) + break + end + end + SchedulerManager:unscheduleGlobal(sid) +end + +function BaseScene:enableTouch() + UIManager:enableTouch() +end + +function BaseScene:disableTouch() + UIManager:disableTouch() +end + +function BaseScene:_init(initParams) + local gameObject = CS.UnityEngine.GameObject("scene_root") + self.root = BaseObject:create() + self.root:initWithGameObject(gameObject) + self.root:setPosition(0, 0, 0) + self:init(initParams) +end + +function BaseScene:_onClose() + self:onClose() + self._isAlreadyClosed = true + self:_baseClear() + self:_destroy() +end + +function BaseScene:_baseClear() + if self._baseEventListeners then + for key, tag in pairs(self._baseEventListeners) do + EventManager:removeEventListener(key, tag) + end + self._baseEventListeners = nil + end + + if self._schedulerIds then + for k, v in ipairs(self._schedulerIds) do + SchedulerManager:unscheduleGlobal(v) + end + self._schedulerIds = nil + end +end + +function BaseScene:_destroy() + if self.root then + self.root:destroy() + self.root = nil + end +end + +return BaseScene \ No newline at end of file diff --git a/lua/app/scene/base_scene.lua.meta b/lua/app/scene/base_scene.lua.meta new file mode 100644 index 00000000..bd4044a1 --- /dev/null +++ b/lua/app/scene/base_scene.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 83992666809d0eb49a875cdfe92eacd9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/scene/main.meta b/lua/app/scene/main.meta new file mode 100644 index 00000000..c962aa46 --- /dev/null +++ b/lua/app/scene/main.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 446d6e4c26420ad4fb6a78393ae70790 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/scene/main/main_scene.lua b/lua/app/scene/main/main_scene.lua new file mode 100644 index 00000000..e90a5c21 --- /dev/null +++ b/lua/app/scene/main/main_scene.lua @@ -0,0 +1,29 @@ +local MainScene = class("battle_scene") + +function MainScene:ctor() +end + +function MainScene:init() + if self.root == nil then + local gameObject = CS.UnityEngine.GameObject("scene_root") + self.root = BaseObject:create() + self.root:initWithGameObject(gameObject) + self.root:setPosition(0, 0, 0) + end + Game:showLoginUI() +end + +function MainScene:getRoot() + return self.root +end + +function MainScene:clearAllGameObjects() + if self.root then + self.root:removeAllChildren() + end +end + +function MainScene:clear() +end + +return MainScene \ No newline at end of file diff --git a/lua/app/scene/main/main_scene.lua.meta b/lua/app/scene/main/main_scene.lua.meta new file mode 100644 index 00000000..04eae4cf --- /dev/null +++ b/lua/app/scene/main/main_scene.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 74a2bf5d2aafc3a4495940112b350a9c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/scene/scene_manager.lua b/lua/app/scene/scene_manager.lua new file mode 100644 index 00000000..5998bff2 --- /dev/null +++ b/lua/app/scene/scene_manager.lua @@ -0,0 +1,229 @@ +local SceneManager = { + currentSceneName = "", + targetSceneName = "" +} + +local ASYNC_FINISH_PROGRESS = 0.899 + +local EMPTY_SCENE_PATH = "assets/scenes/empty_scene.unity" + +SceneManager.SCENE_NAME = { + MAIN_CITY = "app/scene/maincity/maincity_scene", + BATTLE = "app/scene/battle/battle_scene", +} + +-- sceneName:目标场景路径,这里是lua的路径,不是资源的路径 +-- showLoading:显示指定的加载界面 +-- callback:切换完成后的回调 +-- immediately:是否立即切换,是的话会直接切换到目标场景,否则的话会创建一个空场景并先切换到空场景,然后垃圾回收,然后再切换到目标场景 +-- keepUI:是否关闭所有UI界面 +-- preloadList:下一个场景加载完后需要预加载的资源列表 +-- closeLoadingCallback:关闭过场动画时的callback + +function SceneManager:_changeScene(params) + local sceneName = params.sceneName or "" + if sceneName == "" then + return false + end + -- 正在切换场景中 + if self.targetSceneName ~= "" then + return false + end + -- 当前场景就是目标场景 + if self.currentSceneName == sceneName then + if not params.reloadScene then + return false + end + params.immediately = false + end + self.params = params + self.targetSceneName = sceneName + return true +end + +function SceneManager:changeScene(params) + if not self:_changeScene(params) then + return false + end + UIManager:disableTouch() + UIManager:showLoading(self.params.showLoading, function() + self:loadScene() + end) + return true +end + +function SceneManager:loadScene() + if not self.params.keepUI then + UIManager:closeAllUI() + end + UIManager:hideToastAndMessageBox() + self.targetScene = require(self.targetSceneName):create(self.params.sceneParams) + if self.params.immediately then + self:loadSceneABAsync() + else + self:createEmptyScene(function() + self:loadSceneABAsync() + end) + end +end + +function SceneManager:createEmptyScene(nextStep) + local function loadEmptyScene() + local realPath = ResourceManager:getSceneLoadPath(EMPTY_SCENE_PATH) + local asyncOperation = CS.UnityEngine.SceneManagement.SceneManager.LoadSceneAsync(realPath, CS.LoadSceneMode.Additive) + asyncOperation.allowSceneActivation = false + self:scheduleGlobal(function() + if asyncOperation.progress >= ASYNC_FINISH_PROGRESS then + if not asyncOperation.allowSceneActivation then + if self.currentScene then + self.currentScene:_onClose() + end + asyncOperation.allowSceneActivation = true + end + end + if asyncOperation.isDone then + nextStep() + return true + end + end, 0.01) + end + if USE_AB then + ResourceManager:loadSceneAsync(EMPTY_SCENE_PATH, function() + loadEmptyScene() + end) + else + loadEmptyScene() + end +end + +function SceneManager:loadSceneABAsync() + if USE_AB then + local resPath = self.targetScene:getResPath() + ResourceManager:loadSceneAsync(resPath, function() + self:LoadSceneAsync() + end) + else + self:LoadSceneAsync() + end +end + +function SceneManager:LoadSceneAsync() + local resPath = self.targetScene:getResPath() + local realPath = ResourceManager:getSceneLoadPath(resPath) + local asyncOperation = CS.UnityEngine.SceneManagement.SceneManager.LoadSceneAsync(realPath, CS.LoadSceneMode.Additive) + asyncOperation.allowSceneActivation = false + self:scheduleGlobal(function() + if asyncOperation.progress >= ASYNC_FINISH_PROGRESS then + if not asyncOperation.allowSceneActivation then + if self.params.immediately and self.currentScene then + self.currentScene:_onClose() + end + asyncOperation.allowSceneActivation = true + end + end + if asyncOperation.isDone then + self:onLoadSceneFinished() + return true + end + end, 0.01) +end + +function SceneManager:onLoadSceneFinished() + local function nextStep() + if self.currentScene then + local resPath = self.currentScene:getResPath() + ResourceManager:unloadScene(resPath) + end + if not self.params.immediately then + ResourceManager:unloadScene(EMPTY_SCENE_PATH) + end + if self.params.preloadList then + local preloadCount = #self.params.preloadList + local loadedCount = 0 + local function loadCheck( asset ) + loadedCount = loadedCount + 1 + local ratio = loadedCount / preloadCount + if loadedCount >= preloadCount then + self:onFinished() + end + end + if preloadCount > 0 then + for i, resPath in ipairs(self.params.preloadList) do + ResourceManager:asyncLoad(resPath, loadCheck) + end + else + self:onFinished() + end + else + self:onFinished() + end + end + self:garbageCollect(nextStep) +end + +function SceneManager:onFinished() + LocalData:save() + self.targetScene:_init(self.params.init) + if self.targetScene:closeLoadingAuto() then + UIManager:closeLoading(self.params.closeLoadingCallback) + UIManager:enableTouch() + else + if self.params.closeLoadingCallback then + self.targetScene:addCloseLoadingCallback(self.params.closeLoadingCallback) + end + end + self.currentSceneName = self.targetSceneName + self.currentScene = self.targetScene + self.targetSceneName = "" + self.targetScene = nil + local finishCallback = self.params.callback + self.params = nil + if finishCallback then + finishCallback(self.currentScene) + end +end + +function SceneManager:getCurrentScene() + return self.currentScene +end + +function SceneManager:getCurrentSceneName() + return self.currentSceneName +end + +function SceneManager:getIsInMainCityScene() + return self.currentSceneName == SceneManager.SCENE_NAME.MAIN_CITY +end + +function SceneManager:garbageCollect(callback) + ResourceManager:unloadAllDelayAssets() + CS.BF.BFMain.Instance.LuaMgr:LuaEnvFullGC(30000) + collectgarbage("collect") + local asyncOperation = CS.UnityEngine.Resources.UnloadUnusedAssets() + local function onUnloadComplete(opration) + asyncOperation:completed("-", onUnloadComplete) + if callback then + callback() + end + end + + asyncOperation:completed("+", onUnloadComplete) +end + +function SceneManager:scheduleGlobal(func, inter) + SchedulerManager:scheduleGlobal(func, inter) +end + +function SceneManager:clear() +end + +-- 只有一个场景 +function SceneManager:enterMainScene() + local scene = "app/scene/main/main_scene" + self.mainScene = require(scene):create() + self.mainScene:init() + + self.currentScene = self.mainScene +end + +return SceneManager \ No newline at end of file diff --git a/lua/app/scene/scene_manager.lua.meta b/lua/app/scene/scene_manager.lua.meta new file mode 100644 index 00000000..f97c3133 --- /dev/null +++ b/lua/app/scene/scene_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5ba19049f6162c145b86a24992e2e0f8 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/tools.meta b/lua/app/tools.meta new file mode 100644 index 00000000..8862a7de --- /dev/null +++ b/lua/app/tools.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17d15153b4bc44a4dae0d4519816cabf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/tools/big_num_opt.lua b/lua/app/tools/big_num_opt.lua new file mode 100644 index 00000000..bd8c8b0f --- /dev/null +++ b/lua/app/tools/big_num_opt.lua @@ -0,0 +1,532 @@ +local BigNumOpt = {} + +local MAX_CHAR = 26 +local CHAR_NUM = 64 +local DIGIT_UNIT = 1000 +local DIGIT_ONE = 1000 +local DIGIT_TWO = 1000000 +local DIGIT_THREE = 1000000000 +local DIGIT_FOUR = 1000000000000 +-- local MAX_INTEGER = math.maxinteger +local MAX_INTEGER = 999999999999999 +local MIN_INTEGER = 1000000 + +function BigNumOpt.cloneBigNum(bigBum) + return {value = bigBum.value, unit = bigBum.unit} +end + +function BigNumOpt.getRemainder(unit) + return ((unit -1)%MAX_CHAR + 1) +end + +function BigNumOpt.getEmptyBigNum() + local data = {} + data.value = math.tointeger(0) + data.unit = math.tointeger(0) + return data +end + +function BigNumOpt.unitToNum(unit) + if unit == 1 then + return DIGIT_ONE + elseif unit == 2 then + return DIGIT_TWO + elseif unit == 3 then + return DIGIT_THREE + elseif unit == 4 then + return DIGIT_FOUR + else + return DIGIT_UNIT^unit + end +end + +function BigNumOpt.numToTargetUnit(value, unit, targetUnit) + while true do + if unit == targetUnit or value == 0 then + break + end + if unit > targetUnit then + value = value * DIGIT_UNIT + unit = unit - 1 + elseif unit < targetUnit then + if math.abs(value) < DIGIT_UNIT then + value = 0 + else + value = value // DIGIT_UNIT + end + unit = unit + 1 + end + end + return value, unit +end + +function BigNumOpt.adjustDisplayBigNum(data) + if not BigNumOpt.checkDisplayBigNumData(data) then + return data + end + while true do + if data.unit >= 0 then + break + end + data.value = data.value / DIGIT_UNIT + data.unit = data.unit + 1 + end + while true do + if data.unit <= 0 or data.value >= 1 then + break + end + data.value = data.value * DIGIT_UNIT + data.unit = data.unit - 1 + end + while true do + if data.value < DIGIT_UNIT then + break + end + data.value = data.value / DIGIT_UNIT + data.unit = data.unit + 1 + end + while true do + if data.value > -DIGIT_UNIT then + break + end + data.value = data.value / DIGIT_UNIT + data.unit = data.unit + 1 + end + if data.value == 0 then + data.unit = 0 + end + return data +end + +function BigNumOpt.adjustRealBigNum(data) + if data.value > 0 then + while true do + if data.value <= MAX_INTEGER then + break + end + data.value = data.value // DIGIT_UNIT + data.unit = data.unit + 1 + end + while true do + if data.value >= MIN_INTEGER then + break + end + data.value = data.value * DIGIT_UNIT + data.unit = data.unit - 1 + end + elseif data.value < 0 then + while true do + if data.value >= -MAX_INTEGER then + break + end + data.value = data.value // DIGIT_UNIT + data.unit = data.unit + 1 + end + while true do + if data.value <= -MIN_INTEGER then + break + end + data.value = data.value * DIGIT_UNIT + data.unit = data.unit - 1 + end + end + if data.value == 0 then + data.unit = 0 + end + return data +end + +function BigNumOpt.getValidValue4Power(value) + local finalValue = 0 + if value >= 100 then + finalValue = math.ceil(value) + elseif value >= 10 then + finalValue = math.ceil(value*10)/10 + elseif value >= 0 then + finalValue = math.ceil(value*100)/100 + elseif value >= -10 then + finalValue = math.floor(value*100)/100 + elseif value >= -100 then + finalValue = math.floor(value*10)/10 + else + finalValue = math.floor(value) + end + if finalValue == math.ceil(finalValue) then + return math.ceil(finalValue) + else + return finalValue + end +end + +function BigNumOpt.getValidValue(value) + local finalValue = 0 + if value >= 100 then + finalValue = math.floor(value) + elseif value >= 10 then + finalValue = math.floor(value*10)/10 + elseif value >= 0 then + finalValue = math.floor(value*100)/100 + elseif value >= -10 then + finalValue = math.ceil(value*100)/100 + elseif value >= -100 then + finalValue = math.ceil(value*10)/10 + else + finalValue = math.ceil(value) + end + if finalValue == math.floor(finalValue) then + return math.floor(finalValue) + else + return finalValue + end +end + +function BigNumOpt.bigNum2Str4Power(bigNum) + local data = BigNumOpt.cloneBigNum(bigNum) + local tmp = BigNumOpt.adjustDisplayBigNum(data) + return BigNumOpt.getValidValue4Power(tmp.value) .. BigNumOpt.getBigNumUnit(tmp.unit) +end + +-- 大数字转换 +function BigNumOpt.bigNum2Str(bigNum) + local data = BigNumOpt.cloneBigNum(bigNum) + local tmp = BigNumOpt.adjustDisplayBigNum(data) + return BigNumOpt.getValidValue(tmp.value) .. BigNumOpt.getBigNumUnit(tmp.unit) +end + +function BigNumOpt.bigNum2Num(bigNum) + --@TODO 2023-03-20 23:36:11 + return math.floor(bigNum.value * (BigNumOpt.unitToNum(bigNum.unit))) +end + +function BigNumOpt.num2BigNum(num) + local data = BigNumOpt.getEmptyBigNum() + data.value = num + BigNumOpt.adjustRealBigNum(data) + return data +end + +function BigNumOpt.checkDisplayBigNumData(data) + if not data or not data.value or not data.unit then + return false + end + if not data.value then + return false + end + return true +end + +function BigNumOpt.checkBigNumData(data) + if not data or not data.value or not data.unit then + return false + end + if math.type(data.value) ~= "integer" then + local value = math.floor(data.value) + data.value = math.tointeger(value) + end + if not data.value then + return false + end + return true +end + +function BigNumOpt.bigNumAdd(data1, data2) + local data = BigNumOpt.getEmptyBigNum() + if not BigNumOpt.checkBigNumData(data1) or not BigNumOpt.checkBigNumData(data2) then + return data + end + local value1 = data1.value + local value2 = data2.value + local unit1 = data1.unit + local unit2 = data2.unit + + if unit1 > unit2 then + -- data.value = value1*(BigNumOpt.unitToNum(unit1 - unit2)) + value2 + -- data.unit = unit2 + local value, unit = BigNumOpt.numToTargetUnit(value2, unit2, unit1) + data.value = value1 + value + data.unit = unit1 + elseif unit1 < unit2 then + -- data.value = value1 + value2*(BigNumOpt.unitToNum(unit2 - unit1)) + -- data.unit = unit1 + local value, unit = BigNumOpt.numToTargetUnit(value1, unit1, unit2) + data.value = value + value2 + data.unit = unit2 + else + data.value = value1 + value2 + data.unit = unit1 + end + BigNumOpt.adjustRealBigNum(data) + return data +end + +function BigNumOpt.bigNumSub(data1, data2) + local data = BigNumOpt.getEmptyBigNum() + if not BigNumOpt.checkBigNumData(data1) or not BigNumOpt.checkBigNumData(data2) then + return data + end + local value1 = data1.value + local value2 = data2.value + local unit1 = data1.unit + local unit2 = data2.unit + + if unit1 > unit2 then + -- data.value = value1*(BigNumOpt.unitToNum(unit1 - unit2)) - value2 + local value, unit = BigNumOpt.numToTargetUnit(value2, unit2, unit1) + data.value = value1 - value + data.unit = unit1 + elseif unit1 < unit2 then + -- data.value = value1 - value2*(BigNumOpt.unitToNum(unit2 - unit1)) + local value, unit = BigNumOpt.numToTargetUnit(value1, unit1, unit2) + data.value = value - value2 + data.unit = unit2 + else + data.value = value1 - value2 + data.unit = unit1 + end + BigNumOpt.adjustRealBigNum(data) + return data +end + +function BigNumOpt.bigNumMultBigNum(data1, data2) + local data = BigNumOpt.getEmptyBigNum() + if not BigNumOpt.checkBigNumData(data1) or not BigNumOpt.checkBigNumData(data2) then + return data + end + local value1 = data1.value + local value2 = data2.value + local unit1 = data1.unit + local unit2 = data2.unit + + if value1 > 0 then + while true do + if value1 <= MIN_INTEGER then + break + end + value1 = value1 // DIGIT_UNIT + unit1 = unit1 + 1 + end + elseif value1 < 0 then + while true do + if value1 >= -MIN_INTEGER then + break + end + value1 = value1 // DIGIT_UNIT + unit1 = unit1 + 1 + end + end + + if value2 > 0 then + while true do + if value2 <= MIN_INTEGER then + break + end + value2 = value2 // DIGIT_UNIT + unit2 = unit2 + 1 + end + elseif value2 < 0 then + while true do + if value2 >= -MIN_INTEGER then + break + end + value2 = value2 // DIGIT_UNIT + unit2 = unit2 + 1 + end + end + + data.value = value1*value2 + data.unit = unit1 + unit2 + + BigNumOpt.adjustRealBigNum(data) + return data +end + +function BigNumOpt.bigNumMultNum(bigNum, num) + local data = BigNumOpt.getEmptyBigNum() + if not BigNumOpt.checkBigNumData(bigNum) then + return data + end + local value = bigNum.value + data.unit = bigNum.unit + data.value = value*num + + BigNumOpt.adjustRealBigNum(data) + return data +end + +function BigNumOpt.bigNumDiv2Float(data1, data2) + if not BigNumOpt.checkBigNumData(data1) or not BigNumOpt.checkBigNumData(data2) then + return 0 + end + + local value1 = data1.value + local value2 = data2.value + local unit1 = data1.unit + local unit2 = data2.unit + + if unit1 > unit2 then + return value1*(BigNumOpt.unitToNum(unit1 - unit2)) / value2 + elseif unit1 < unit2 then + return value1 / (value2*(BigNumOpt.unitToNum(unit2 - unit1))) + else + return value1 / value2 + end +end + +-- 大数除以很小的数 用整除 +function BigNumOpt.bigNumDivExactly(data1, num) + local data = BigNumOpt.getEmptyBigNum() + data.value = data1.value // num + data.unit = data1.unit + return data +end + +function BigNumOpt.bigNumDiv(data1, data2) + local data = BigNumOpt.getEmptyBigNum() + if not BigNumOpt.checkBigNumData(data1) or not BigNumOpt.checkBigNumData(data2) then + return data + end + + local value1 = data1.value + local value2 = data2.value + local unit1 = data1.unit + local unit2 = data2.unit + + if value1 == 0 then + return data + end + local value = value1 / value2 + if value >= MIN_INTEGER then + local value = math.floor(value) + data.value = math.tointeger(value) + data.unit = unit1 - unit2 + else + local value = math.floor(value * DIGIT_TWO) + data.value = math.tointeger(value) + data.unit = unit1 - unit2 - 2 + end + -- if data.unit < 0 then + -- local value = BigNumOpt.numToTargetUnit(data.value, data.unit, 0) + -- data.value = math.tointeger(math.floor(value)) + -- data.unit = 0 + -- end + -- if unit1 > unit2 then + -- data.value = value1*(BigNumOpt.unitToNum(unit1 - unit2)) // value2 + -- data.unit = 0 + -- elseif unit1 < unit2 then + -- data.value = value1 // (value2*(BigNumOpt.unitToNum(unit2 - unit1))) + -- data.unit = 0 + -- else + -- data.value = value1 // value2 + -- data.unit = 0 + -- end + + if EDITOR_MODE then + if value1 > 0 and value2 > 0 and data.value < 0 then + Logger.logFatal("the value is out of range") + end + end + + BigNumOpt.adjustRealBigNum(data) + return data +end + +function BigNumOpt.bigNumDivNum(data1, num) + local value = data1.value / num + if math.floor(value) == value then + local data = BigNumOpt.getEmptyBigNum() + data.value = data1.value // num + data.unit = data1.unit + BigNumOpt.adjustRealBigNum(data) + return data + end + local data2 = BigNumOpt.num2BigNum(num) + return BigNumOpt.bigNumDiv(data1, data2) +end + +function BigNumOpt.bigNumCompare(data1, data2) + local data = BigNumOpt.getEmptyBigNum() + if not BigNumOpt.checkBigNumData(data1) or not BigNumOpt.checkBigNumData(data2) then + return + end + + local value1 = data1.value + local value2 = data2.value + local unit1 = data1.unit + local unit2 = data2.unit + + local data = BigNumOpt.bigNumSub(data1, data2) + if data.value > 0 then + return 1 + elseif data.value < 0 then + return -1 + else + return 0 + end +end + +function BigNumOpt.bigNumSqrt(data1) + if not BigNumOpt.checkBigNumData(data1) then + return data1 + end + local data = BigNumOpt.getEmptyBigNum() + local value = data1.value + local unit = data1.unit + + if value == 0 then + return data + end + if unit % 2 == 0 then + value = math.sqrt(value) + unit = unit / 2 + else + value = math.sqrt(value*DIGIT_ONE) + unit = (unit - 1) / 2 + end + if value >= MIN_INTEGER then + value = math.floor(value) + data.value = math.tointeger(value) + data.unit = unit + else + value = math.floor(value * DIGIT_TWO) + data.value = math.tointeger(value) + data.unit = unit - 2 + end + return data +end + +-- 单位转字符 +function BigNumOpt.getBigNumUnit(unit) + if unit <= 0 then + return "" + end + local curDigit = 0 + local unitStr = "" + while true do + local re = BigNumOpt.getRemainder(unit) + unitStr = string.char(re + CHAR_NUM) .. unitStr + if unit <= MAX_CHAR then + break + else + unit = (unit - re)/MAX_CHAR + end + end + return unitStr +end + +--attr转str +-- function BigNumOpt.bigNumCfgAttr2FinalStr(cfgAttr) +-- local finalValueStr = BigNumOpt.bigNumCfgAttr2FinalValueStr(cfgAttr) +-- return GFunc.getPerStr(GConst.ATTR_TYPE[cfgAttr.type], finalValueStr) +-- end + +function BigNumOpt.bigNumCfgAttr2FinalValueStr(cfgAttr) + local attrStr = GFunc.getPerStr(GConst.ATTR_TYPE[cfgAttr.type], BigNumOpt.bigNum2Str(GFunc.getFinalAttr(GConst.ATTR_TYPE[cfgAttr.type], cfgAttr.bignum))) + return attrStr +end + +function BigNumOpt.bigNumCfgAttr2FinalValueStr2(type, attrValue) + local attrStr = GFunc.getPerStr(type, BigNumOpt.bigNum2Str(GFunc.getFinalAttr(type, attrValue))) + return attrStr +end + +return BigNumOpt \ No newline at end of file diff --git a/lua/app/tools/big_num_opt.lua.meta b/lua/app/tools/big_num_opt.lua.meta new file mode 100644 index 00000000..5a3d5fe5 --- /dev/null +++ b/lua/app/tools/big_num_opt.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 11acdf377de3ae442bbe3d89ecc1a549 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/tools/file_opt.lua b/lua/app/tools/file_opt.lua new file mode 100644 index 00000000..0f50d4ee --- /dev/null +++ b/lua/app/tools/file_opt.lua @@ -0,0 +1,137 @@ +local FileOpt = {} + +local Directory = CS.System.IO.Directory +local File = CS.System.IO.File + +function FileOpt.split(str, delimiter) + if not delimiter then + return false + end + local pos, arr = 0, {} + for st, sp in function() return string.find(str, delimiter, pos, true) end do + table.insert(arr, string.sub(str, pos, st - 1)) + pos = sp + 1 + end + table.insert(arr, string.sub(str, pos)) + return arr +end + +function FileOpt.mkdir(fname) + if not Directory.Exists(fname) then + Directory.CreateDirectory(fname) + end +end + + +function FileOpt.readFile(fname) + local rfile = io.open(fname, "rb") + if not rfile then + print("open file failed:", fname) + return nil + end + local content = rfile:read("*all") + io.close(rfile) + return content +end + +function FileOpt.writeFile(data, fname) + local pos = #fname + while string.sub(fname, pos, pos) ~= "/" do + pos = pos -1 + if pos <= 1 then + print("path have no char / :", fname) + return false + end + end + local fpath = string.sub(fname, 1, pos) + FileOpt.mkdir(fpath) + local wfile = io.open(fname, "wb") + if not wfile then + print("create file failed:", fname) + return false + end + wfile:write(data) + wfile:flush() + io.close(wfile) + + return true +end + +function FileOpt.cpfile(srcfile, dstfile) + local content = FileOpt.readFile(srcfile) + if content then + local ret = FileOpt.writeFile(content, dstfile) + return ret + end + return false +end + +function FileOpt.rmfile(fname) + if Directory.Exists(fname) then + return FileOpt.rmdir(fname) + else + os.remove(fname) + return true + end + return false +end + +--ignore:如果dest_dir存在同名文件,是否忽略 +function FileOpt.cpdir(src_dir, dst_dir,ignore) + if not Directory.Exists(src_dir) then + print("cp src_dir is not existed!") + return + end + if not Directory.Exists(dst_dir) then + FileOpt.mkdir(dst_dir) + end + + local subFiles = Directory.GetFiles(src_dir) + local subDirs = Directory.GetDirectories(src_dir) + + --先复制文件 + if subFiles then + for i=0,subFiles.Length - 1 do + local path = subFiles:GetValue(i) + local name = string.sub(path, #src_dir+1) + local destPath = dst_dir .. name + if FileOpt.fileExists(destPath) then + if not ignore then + FileOpt.cpfile(path, destPath) + end + else + FileOpt.cpfile(path, destPath) + end + end + end + + --再复制目录 + if subDirs then + for i=0,subDirs.Length - 1 do + local path = subDirs:GetValue(i) + local name = string.sub(path, #src_dir+1) + if not (name == "." or name == "..") then + local destPath = dst_dir .. name + FileOpt.cpdir(path, destPath) + end + end + end +end + +function FileOpt.rmdir(fname) + if Directory.Exists(fname) then + Directory.Delete(fname, true) + return true + end + return false +end + +function FileOpt.fileExists(path) + return File.Exists(path) +end + +function FileOpt.dirctoryExists(path) + return Directory.Exists(path) +end + +return FileOpt diff --git a/lua/app/tools/file_opt.lua.meta b/lua/app/tools/file_opt.lua.meta new file mode 100644 index 00000000..6900fb2d --- /dev/null +++ b/lua/app/tools/file_opt.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: fcd3d19d8d124b34fb5e42ef85ad0370 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/tools/progress_bar.lua b/lua/app/tools/progress_bar.lua new file mode 100644 index 00000000..554704cf --- /dev/null +++ b/lua/app/tools/progress_bar.lua @@ -0,0 +1,80 @@ +local ProgressBar = class("ProgressBar") + +function ProgressBar:runBar(params) + local oldLv = params.oldLv + local newLv = params.newLv + local beginPer = params.beginPer + local endPer = params.endPer + local time = params.time or 0 + local endCallback = params.endCallback + local perStep = params.perStep or 0.1 + + if not params.ui then + return + end + + local function endSchedule(onlyClear) + if self.scheduleId then + params.ui:unscheduleGlobal(self.scheduleId) + self.scheduleId = nil + end + if not onlyClear and endCallback then + endCallback() + end + end + + local function runAddBar() + beginPer = beginPer + perStep + if beginPer > 1 then + oldLv = oldLv + 1 + beginPer = beginPer - 1 + end + if oldLv > newLv or (oldLv == newLv and beginPer >= endPer) then + if params.callback then + params.callback(newLv, endPer) + end + endSchedule() + return + else + if params.callback then + params.callback(oldLv, beginPer) + end + end + end + local function runSubBar() + beginPer = beginPer - perStep + if beginPer < 0 then + oldLv = oldLv - 1 + beginPer = beginPer + 1 + end + if oldLv < newLv or (oldLv == newLv and beginPer <= endPer) then + if params.callback then + params.callback(newLv, endPer) + end + endSchedule() + return + else + if params.callback then + params.callback(oldLv, beginPer) + end + end + end + local function runBar() + if newLv > oldLv or (newLv == oldLv and endPer >= beginPer) then + runAddBar() + elseif newLv < oldLv or (newLv == oldLv and endPer < beginPer) then + runSubBar() + else + self:endSchedule() + end + end + + endSchedule(true) + + self.scheduleId = params.ui:scheduleGlobal(function () + runBar() + end, time) + runBar() +end + +return ProgressBar \ No newline at end of file diff --git a/lua/app/tools/progress_bar.lua.meta b/lua/app/tools/progress_bar.lua.meta new file mode 100644 index 00000000..4a0488aa --- /dev/null +++ b/lua/app/tools/progress_bar.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: b125c0eec29932c429f234a7db02f7c2 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui.meta b/lua/app/ui.meta new file mode 100644 index 00000000..8b8ce69e --- /dev/null +++ b/lua/app/ui.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7659331f47b90e345a73843906fde895 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/activity.meta b/lua/app/ui/activity.meta new file mode 100644 index 00000000..45677ee4 --- /dev/null +++ b/lua/app/ui/activity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d6833db66ead2824881b703e2a4f61d3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/arena.meta b/lua/app/ui/arena.meta new file mode 100644 index 00000000..a2e77dee --- /dev/null +++ b/lua/app/ui/arena.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 38336606149b3fd42bc2bc5550b6b55d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/base_sub_ui.lua b/lua/app/ui/base_sub_ui.lua new file mode 100644 index 00000000..cf73d628 --- /dev/null +++ b/lua/app/ui/base_sub_ui.lua @@ -0,0 +1,197 @@ +local BaseSubUI = {} + +local BF_UI_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_UI_HELPER +---- 子对象的层级应该保持在父对象层级 +300 以内 ,300 -- 400 会放一些活动主界面的顶层元素 + +---- 私有方法供generalActivitymgr调用 +function BaseSubUI:_init(parentUI, root, subUIName) + self.parentUI = parentUI + self.root = root + self.subUIName = subUIName + self:onLoadPanelComplete() + if self._loadCompleteCallback then + self._loadCompleteCallback() + self._loadCompleteCallback = nil + end + + self:_setUIOrder(self.parentUI:getUIOrder()) +end + +function BaseSubUI:_addOnDestroyCallback() + if self._addOnDestroyFlag then + return + end + self._addOnDestroyFlag = true + self.root:addOnDestroyCallback(function() + self:unBindAll() + end) +end + +function BaseSubUI:_setUIOrder(order) + if not self.root then + return + end + if not self._baseRootCanvas then + self._baseRootCanvas = self.root:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS) + end + + self._baseRootCanvas.sortingOrder = order + 1 + local uiHelper = self.root:getGameObject():GetComponent(BF_UI_HELPER) + if not uiHelper then + return + end + + uiHelper:SetSortingOrder(self._baseRootCanvas.sortingOrder) +end + +function BaseSubUI:_reshow() + if not self.root then + return + end + self.root:setActive(true) + self:onReshow() +end + +function BaseSubUI:_hide() + if not self.root then + return + end + self.root:setActive(false) + self:onHide() +end + +function BaseSubUI:_close() + self:unBindAll() + self:onClose() +end + +function BaseSubUI:getRoot() + return self.root +end + +function BaseSubUI:setLoadCompleteCallback(func) + if self:getRoot() then + if func then + func() + end + else + self._loadCompleteCallback = func + end +end + +---- 公用方法为子类的生命周期 +function BaseSubUI:getPrefabPath() + return --"xxxx" +end + +function BaseSubUI:ctor(params) + +end + +---- after loadPanel +function BaseSubUI:onLoadPanelComplete() + +end + +---- setActive(true) +function BaseSubUI:onReshow() + +end + +---- setActive(false) +function BaseSubUI:onHide() + +end + +---- onclose +function BaseSubUI:onClose() + +end + +---- 绑定数据 +function BaseSubUI:bind(data, fieldName, bindFunc, immediately) + if not self.parentUI then + return + end + self.parentUI:bind(data, fieldName, bindFunc, immediately) +end + +---- 解绑数据 可以不用手动释放,主界面关闭时会全部unbind +function BaseSubUI:unBind(data, fieldName) + if not self.parentUI then + return + end + self.parentUI:unBind(data, fieldName) +end + + +function BaseSubUI:bind(data, fieldName, bindFunc, immediately) + self:_addOnDestroyCallback() + if not self._baseBindData then + self._baseBindData = {} + end + if not self._baseBindData[data] then + self._baseBindData[data] = {} + end + data:bind(fieldName, self, bindFunc, immediately) + table.insert(self._baseBindData[data], fieldName) +end + +function BaseSubUI:unBind(data, fieldName) + if self._baseBindData and self._baseBindData[data] then + for i, field in ipairs(self._baseBindData[data]) do + if field == fieldName then + data:unBind(field, self) + table.remove(self._baseBindData[data], i) + break + end + end + end +end + +function BaseSubUI:unBindAll() + if not self._baseBindData then + return + end + + for data, fields in pairs(self._baseBindData) do + for _, field in ipairs(fields) do + data:unBind(field, self) + end + end + self._baseBindData = nil +end + +---- 添加特效 +function BaseSubUI:addEffect(effect, parent, order) + if not self.parentUI then + return + end + self.parentUI:addEffect(effect, parent, order) +end + +---- 移除特效 +function BaseSubUI:removeEffect(effect, isNeedCleanUp) + if not self.parentUI then + return + end + self.parentUI:removeEffect(effect, isNeedCleanUp) +end + +-- 界面的自定义事件添加监听 +function BaseSubUI:addEventListener(key, func, priority) + if not self.parentUI then + return + end + self.parentUI:addEventListener(key, func, priority) +end + +-- 界面的自定义事件移除监听 +function BaseSubUI:removeEventListener(key) + if not self.parentUI then + return + end + self.parentUI:removeEventListener(key) +end + +return BaseSubUI \ No newline at end of file diff --git a/lua/app/ui/base_sub_ui.lua.meta b/lua/app/ui/base_sub_ui.lua.meta new file mode 100644 index 00000000..a8b1bc2d --- /dev/null +++ b/lua/app/ui/base_sub_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 76217c7c060f05647949ec53f08565b9 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/base_ui.lua b/lua/app/ui/base_ui.lua new file mode 100644 index 00000000..609db52c --- /dev/null +++ b/lua/app/ui/base_ui.lua @@ -0,0 +1,690 @@ +-- 部分函数和变量名前加了下划线主要是避免被子类不经意间重写,同时也不应该直接调用这些属性或者方法 + +local BF_UI_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_UI_HELPER +local BF_BASE_SORTING_ORDER_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_BASE_SORTING_ORDER_HELPER +---@class BaseUI +local BaseUI = { + _baseAlreadyClosed = false, + _baseUIOrder = 0 +} + +function BaseUI:ctor() +end + +-- 需要在打开界面之前预先加载的资源列表,例如 +-- { +-- [GConst.TYPEOF_UNITY_CLASS.GAME_OBJECT] = { +-- "xxx1", "xxx2" +-- } +-- } +function BaseUI:getPreLoadList() + return nil +end + +function BaseUI:showCommonBG() + return true +end + +-- 界面prefab路径 +function BaseUI:getPrefabPath() + return "" +end + +-- 关闭界面 +function BaseUI:closeUI() + UIManager:closeUI(self) +end + +function BaseUI:addLoadUICompleteListener(callback) + if self._baseLoadComplete then + if callback then + callback() + end + else + self._onLoadUICompleteCallback = callback + end +end + +function BaseUI:getIsLoadedComplete() + return self._baseLoadComplete +end + +function BaseUI:addEnterAniCompleteListener(callback) + self._onEnterAniCompleteCallback = callback +end + +function BaseUI:addExitAniCompleteListener(callback) + self._onExitAniCompleteCallback = callback +end + +-- 界面进入动画播放完 +function BaseUI:onEnterAnimationComplete() +end + +-- 界面退出动画播放完 +function BaseUI:onExitAnimationComplete() +end + +-- 界面的prefab加载完成后被调用 +function BaseUI:onLoadRootComplete() +end + +-- 当UI对象被创建时调用,注意此时还没加载好ui预制件 +function BaseUI:onCreate() +end + +-- 当此界面关闭时调用 +function BaseUI:onClose() +end + +-- 当此界面之上的其他界面都关闭,导致此界面处于最顶层时调用,第一次创建此界面的时候不会调用 +-- 与onCover配对 +function BaseUI:onReshow() +end + +-- 当此界面处于最顶层的时候打开一个新的界面添加到此界面之上时调用 +-- 与onReshow配对 +function BaseUI:onCover() +end + +-- 当此界面需要刷新时,界面刷新逻辑都在这里面处理 +function BaseUI:onRefresh() +end + +-- 当界面隐藏或从隐藏状态恢复显示时 +function BaseUI:onUIVisibleChanged() +end + +-- 当界面上的模型激活状态改变时 +function BaseUI:onUIModelActiveChanged(active) +end + +-- 当界面层级被重新设置时 +function BaseUI:onSetUIOrder() + +end + +-- 此界面是否已经关闭了 +function BaseUI:isClosed() + return self._baseAlreadyClosed +end + +-- 此界面是否被隐藏了,只有当被全屏界面挡住才会隐藏当前界面 +function BaseUI:isVisible() + return self._baseVisible ~= false +end + +-- 此界面是不是当前最上层的 +function BaseUI:isTopUI() + return UIManager:getTopUIObj() == self +end + +-- 响应安卓后退事件 +function BaseUI:onPressBackspace() +end + +-- 添加粒子之类的特效 +function BaseUI:addEffect(effect, parent, order) + if self:isClosed() then + return + end + if self._baseEffectList == nil then + self._baseEffectList = {} + end + self._baseEffectList[effect] = 1 + + if self._baseUIHelper == nil then + self._baseUIHelper = self.root:getGameObject():AddComponent(BF_UI_HELPER) + end + self._baseUIHelper:AddEffect(effect:getComponent(BF_BASE_SORTING_ORDER_HELPER), self._baseUIOrder, order) + if parent then + effect:setParent(parent, false) + end +end + +-- 对已经存在的子节点层级排序 +function BaseUI:sortChildOrder(childObj, order) + if self._baseUIHelper == nil then + self._baseUIHelper = self.root:getGameObject():AddComponent(BF_UI_HELPER) + end + self._baseUIHelper:AddEffect(childObj:getComponent(BF_BASE_SORTING_ORDER_HELPER), self._baseUIOrder, order) +end + +-- 移除粒子之类的特效 +function BaseUI:removeEffect(effect, isNeedCleanUp) + if self._baseEffectList then + local effectNode = self._baseEffectList[effect] + if effectNode then + self._baseEffectList[effect] = nil + if self._baseUIHelper then + self._baseUIHelper:RemoveEffect(effect:getComponent(BF_BASE_SORTING_ORDER_HELPER)) + end + effect:removeFromParent(isNeedCleanUp) + end + end +end + +-- 界面的自定义事件添加监听 +function BaseUI:addEventListener(key, func, priority) + if self:isClosed() then + return + end + local tag = EventManager:addEventListener(key, func, priority) + self._baseEventListeners = self._baseEventListeners or {} + self._baseEventListeners[key] = tag +end + +-- 界面的自定义事件移除监听 +function BaseUI:removeEventListener(key) + if self._baseEventListeners and self._baseEventListeners[key] then + EventManager:removeEventListener(key, self._baseEventListeners[key]) + self._baseEventListeners[key] = nil + end +end + +-- 请查看UIManager.UI_TYPE的说明 +function BaseUI:getUIType() + return UIManager.UI_TYPE.DEFAULT +end + +-- 获取界面索引,其实就是界面lua的路径 +function BaseUI:getUIIndex() + return self._baseUIIndex +end + +-- 此界面配套的BGM +function BaseUI:getBGMId() + return nil +end + +function BaseUI:setUIIndex(index) + self._baseUIIndex = index +end + +function BaseUI:setUIOrder(siblingIndex, order) + self._baseSiblingIndex = siblingIndex + self._baseUIOrder = order + if self.root then + self.root:getTransform():SetSiblingIndex(self._baseSiblingIndex) + self._baseRootCanvas.sortingOrder = order + if self._baseUIHelper then + self._baseUIHelper:SetSortingOrder(order) + self:onSetUIOrder() + end + end +end + +function BaseUI:getUIOrder() + return self._baseUIOrder +end + +function BaseUI:getSiblingIndex() + return self._baseSiblingIndex +end + +function BaseUI:getIsShowComplete() + return self._showComplete +end + +function BaseUI:isFullScreen() + return true +end + +function BaseUI:currencyParams() + return nil, false +end + +function BaseUI:updateCurrencyBar() + UIManager:showCurrencyBar(self) +end + +function BaseUI:swallowTouchBetweenUI() + return true +end + +-- 加载需要显示在UI上的模型,统一接口方便管理 +function BaseUI:loadUIModelRoot(path, callback) + ModelManager:loadModelAsync(path, nil, function(roleShowModel) + if self:isClosed() then + roleShowModel:destroy() + return + end + self._baseShowModelList = self._baseShowModelList or {} + table.insert(self._baseShowModelList, roleShowModel) + callback(roleShowModel) + if self._baseVisible == false then + roleShowModel:setActive(false) + self:onUIModelActiveChanged(false) + end + end) +end + +function BaseUI:bind(data, fieldName, bindFunc, immediately) + if self:isClosed() then + return + end + if not self._baseBindData then + self._baseBindData = {} + end + if not self._baseBindData[data] then + self._baseBindData[data] = {} + end + table.insert(self._baseBindData[data], fieldName) + data:bind(fieldName, self, bindFunc, immediately) +end + +function BaseUI:unBind(data, fieldName) + if self._baseBindData and self._baseBindData[data] then + for i, field in ipairs(self._baseBindData[data]) do + if field == fieldName then + data:unBind(field, self) + table.remove(self._baseBindData[data], i) + break + end + end + end +end + +function BaseUI:unBindAll() + if not self._baseBindData then + return + end + + for data, fields in pairs(self._baseBindData) do + for _, field in ipairs(fields) do + data:unBind(field, self) + end + end + self._baseBindData = nil +end + +function BaseUI:scheduleGlobal(func, inter) + if self:isClosed() then + return 0 + end + local sid = SchedulerManager:scheduleGlobal(func, inter) + if self._schedulerIds == nil then + self._schedulerIds = {} + end + table.insert(self._schedulerIds, sid) + return sid +end + +function BaseUI:performWithDelayGlobal(func, delay) + if self:isClosed() then + return 0 + end + local sid = SchedulerManager:performWithDelayGlobal(func, delay) + if self._schedulerIds == nil then + self._schedulerIds = {} + end + table.insert(self._schedulerIds, sid) + return sid +end + +function BaseUI:pauseScheduleGlobal(sid) + SchedulerManager:pause(sid) +end + +function BaseUI:resumeScheduleGlobal(sid) + SchedulerManager:resume(sid) +end + +function BaseUI:unscheduleGlobal(sid) + if self._schedulerIds == nil then + return + end + for k, v in ipairs(self._schedulerIds) do + if v == sid then + table.remove(self._schedulerIds, k) + break + end + end + SchedulerManager:unscheduleGlobal(sid) +end + +function BaseUI:unloadPreloadList() + if self._preloadListFinished then + if self._preloadList then + for objType, list in pairs(self._preloadList) do + for _, path in ipairs(list) do + ResourceManager:unload(path) + end + end + self._preloadList = nil + end + end +end + +function BaseUI:disableUITouch() + if not self._baseTouchDisabled and not self:isClosed() then + self._baseTouchDisabled = true + UIManager:disableTouch() + end +end + +function BaseUI:enableUITouch() + if self._baseTouchDisabled then + self._baseTouchDisabled = false + UIManager:enableTouch() + end +end + +-- 以下都是private function,不要在外部直接调用 +function BaseUI:_onCreate() + self:_loadRoot() + self:onCreate() +end + +-- 异步加载界面prefab文件,每个界面只能有一个root prefab +function BaseUI:_loadRoot() + if self.root then + return + end + + local totalCount = 0 + local function finishCallback() + totalCount = totalCount - 1 + if totalCount <= 0 then + self._preloadListFinished = true + if self:isClosed() then + self:unloadPreloadList() + self:_killAniTween() + return + end + UIManager:getUIPrefab(self:getPrefabPath(), function(root) + if self:isClosed() then + self:unloadPreloadList() + UIManager:putbackUIPrefab(root) + return + end + self._baseUIHelper = root:getComponent(BF_UI_HELPER) + self.root = root + self:_fitNotchScreen() + self:_onLoadRootComplete() + -- 个别特殊的界面可能会在init或者refresh的时候关闭自己 + if self:isClosed() then + self:_onEnterAnimationComplete() + return + end + self:_playEnterAnimation() + if self._baseUICovered then + self:onCover() + end + end) + end + end + + self._preloadList = self:getPreLoadList() + if self._preloadList then + for objType, list in pairs(self._preloadList) do + totalCount = totalCount + #list + end + for objType, list in pairs(self._preloadList) do + for _, path in ipairs(list) do + ResourceManager:loadOriginAssetAsync(path, objType, finishCallback) + end + end + else + totalCount = totalCount + 1 + finishCallback() + end +end + + +function BaseUI:_recordParams(params) + self._baseUIParams = params +end + +function BaseUI:_getRecordParams() + return self._baseUIParams +end + +-- 显示或者隐藏界面,只是给UIManager用来隐藏被遮挡的界面减少渲染压力用的 +function BaseUI:_setVisible(visible) + if self._baseVisible == visible then + return + end + self._baseVisible = visible + if self._baseRootCanvas then + local pos = visible and 0 or 10000000000 + self.root:setLocalPosition(0, 0, pos) + end + if self._baseShowModelList then + for k, v in ipairs(self._baseShowModelList) do + v:setActive(visible) + end + self:onUIModelActiveChanged(visible) + end + self:onUIVisibleChanged() +end + +function BaseUI:_getRootCanvas() + self._baseRootCanvas = self.root:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS) + if not self._baseRootCanvas then + Logger.logTodo("ui root canvas is not add on prefab:%s", self.root:getAssetPath()) + self._baseRootCanvas = self.root:addComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS) + end + return self._baseRootCanvas +end + +function BaseUI:_onLoadRootComplete() + self:_getRootCanvas() + self._baseRootCanvas.overrideSorting = true + if not self.root:getComponent(GConst.TYPEOF_UNITY_CLASS.GRAPHIC_RAYCASTER) then + Logger.logTodo("ui root GraphicRaycaster is not add on prefab:%s", self.root:getAssetPath()) + self.root:addComponent(GConst.TYPEOF_UNITY_CLASS.GRAPHIC_RAYCASTER) + end + if self._baseVisible == false then + self.root:setLocalPosition(0, 0, 10000000000) + else + self.root:setLocalPosition(0, 0, 0) + end + if self._baseSiblingIndex then + self.root:getTransform():SetSiblingIndex(self._baseSiblingIndex) + self._baseRootCanvas.sortingOrder = self._baseUIOrder + if self._baseUIHelper then + self._baseUIHelper:SetSortingOrder(self._baseUIOrder) + end + end + + UIManager:showCurrencyBar(self) + + self:onLoadRootComplete() + self:onRefresh() + self._baseLoadComplete = true + UIManager:onUILoadedComplete(self) + if self._onLoadUICompleteCallback then + self._onLoadUICompleteCallback() + self._onLoadUICompleteCallback = nil + end +end + +-- 适配异形屏 +function BaseUI:_fitNotchScreen() + -- 只有绑定了该组件的UI 才需要适配 + if self._baseUIHelper then + local notchScreenNodeCount = self._baseUIHelper:GetNotchScreenNodeCount() + if notchScreenNodeCount > 0 and not self._baseUIHelper:GetHasInitDefaultNotchScreenHeight() then + -- 获取偏移值 + local height = SafeAreaManager:getNotchScreenHeight() + if height < 1 then -- 没有刘海 + return + end + local index = 0 + for i = 1, notchScreenNodeCount do + index = i - 1 + local haveNode = self._baseUIHelper:GetIsHaveNotchScreenNodeGameObject(index) + local adjustHeight = self._baseUIHelper:GetNotchScreenNodeAdjustHeight(index) + if haveNode then + -- 获取anchor数据 根据情况处理位置 + self._baseUIHelper:CacheAnchorMin(index) + local anchorMinX = self._baseUIHelper.PositionX + local anchorMinY = self._baseUIHelper.PositionY + + self._baseUIHelper:CacheAnchorMax(index) + local anchorMaxX = self._baseUIHelper.PositionX + local anchorMaxY = self._baseUIHelper.PositionY + + if math.abs(anchorMinX - 0.5) < 0.00001 and math.abs(anchorMinY) < 0.00001 and math.abs(anchorMaxX - 0.5) < 0.00001 and math.abs(anchorMaxY - 1) < 0.00001 then -- 上下填充,仅调整高度 + self._baseUIHelper:CacheOffsetMax(index) + local offsetMaxX = self._baseUIHelper.PositionX + local offsetMaxY = self._baseUIHelper.PositionY + self._baseUIHelper:SetOffsetMax(index, offsetMaxX, offsetMaxY - height + adjustHeight) + + elseif math.abs(anchorMinX) < 0.00001 and math.abs(anchorMinY) < 0.00001 and math.abs(anchorMaxX - 1) < 0.00001 and math.abs(anchorMaxY - 1) < 0.00001 then -- 整体填充,仅调整高度 + self._baseUIHelper:CacheOffsetMax(index) + local offsetMaxX = self._baseUIHelper.PositionX + local offsetMaxY = self._baseUIHelper.PositionY + self._baseUIHelper:SetOffsetMax(index, offsetMaxX, offsetMaxY - height + adjustHeight) + else -- 直接下移 + self._baseUIHelper:CacheAnchoredPosition(index) + local notchScreenNodeOriginPosX = self._baseUIHelper.PositionX + local notchScreenNodeOriginPosY = self._baseUIHelper.PositionY + self._baseUIHelper:SetAnchoredPosition(index, notchScreenNodeOriginPosX, notchScreenNodeOriginPosY - height + adjustHeight) + end + end + end + self._baseUIHelper:SetInit(true) + end + end +end + +function BaseUI:_playEnterAnimation() + local aniType = UIManager:getAniType(self) + if aniType then + if aniType == UIManager.ANI_TYPE.POP then + self.root:setAnchoredPosition(0, 0) + self:_playPop() + else + UIManager:_updateUISwallowOrder() + self.root:setAnchoredPosition(0, 0) + self:_onEnterAnimationComplete() + end + else + self.root:setAnchoredPosition(0, 0) + self:_onEnterAnimationComplete() + end +end + +function BaseUI:_playExitAnimation() + self:_onExitAnimationComplete() +end + +function BaseUI:_onEnterAnimationComplete() + self._showComplete = true + if self:getUIType() == UIManager.UI_TYPE.MAIN then + UIManager:closeBehindUI(self) + end + + if self:isFullScreen() then + UIManager:hideBehindUI(self) + end + + if self._onEnterAniCompleteCallback then + self._onEnterAniCompleteCallback() + end + self:onEnterAnimationComplete() + + -- 部分ui会有动画,所以在这里算完成 + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.UI_SHOW_COMPLETE, self:getUIIndex()) +end + +function BaseUI:_onExitAnimationComplete() + self:onExitAnimationComplete() + if self._onExitAniCompleteCallback then + self._onExitAniCompleteCallback() + end + self:_destroy() + UIManager:onUIClosedComplete(self) +end + +function BaseUI:_playPop() + self.popSequence = self.root:createBindTweenSequence() + + local scaleTween1 = self.root:getTransform():DOScale(1.05, 0.15) + self.popSequence:Append(scaleTween1) + + local scaleTween2 = self.root:getTransform():DOScale(1, 0.2) + self.popSequence:Append(scaleTween2) + + self.popSequence:OnComplete(function() + UIManager:_updateUISwallowOrder() + self:_onEnterAnimationComplete() + self.popSequence = nil + end) +end + +function BaseUI:_killAniTween() + if self.popSequence then + self.popSequence:Kill(true) + self.popSequence = nil + end +end + +function BaseUI:_onCover() + self._baseUICovered = true + if self.root then + self:onCover() + end +end + +function BaseUI:_onReshow() + if self._baseVisible == false then + UIManager:updateBarsState(self) + if self:isFullScreen() then + UIManager:hideBehindUI(self) + else + UIManager:showBehindUI(self) + end + self:_setVisible(true) + end + self._baseUICovered = false + if self.root then + self:onReshow() + end +end + +function BaseUI:_onClose() + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.UI_CLOSE, self:getUIIndex()) + self._baseAlreadyClosed = true + self:onClose() + self:_baseClear() +end + +function BaseUI:_baseClear() + if self._baseEventListeners then + for key, tag in pairs(self._baseEventListeners) do + EventManager:removeEventListener(key, tag) + end + self._baseEventListeners = nil + end + self._baseEffectList = nil + + if self._schedulerIds then + for k, v in ipairs(self._schedulerIds) do + SchedulerManager:unscheduleGlobal(v) + end + self._schedulerIds = nil + end + self:unBindAll() + self:enableUITouch() +end + +function BaseUI:_destroy() + if self.root then + -- 干掉界面上的模型 + if self._baseShowModelList then + for i = 1, #self._baseShowModelList do + table.remove(self._baseShowModelList):destroy() + end + end + UIManager:putbackUIPrefab(self.root) + self:_killAniTween() + self.root = nil + self._baseRootCanvas = nil + end + self:unloadPreloadList() +end + +return BaseUI \ No newline at end of file diff --git a/lua/app/ui/base_ui.lua.meta b/lua/app/ui/base_ui.lua.meta new file mode 100644 index 00000000..a7bb8260 --- /dev/null +++ b/lua/app/ui/base_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0724674516be838448b37bd3ea431dc4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/battle.meta b/lua/app/ui/battle.meta new file mode 100644 index 00000000..f408a65c --- /dev/null +++ b/lua/app/ui/battle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: bd048a9a0bdc8bd49a3aef46bdfe1a1c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/blessing.meta b/lua/app/ui/blessing.meta new file mode 100644 index 00000000..05e42da8 --- /dev/null +++ b/lua/app/ui/blessing.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c7e80e28a8bd214b86fc43d962e9ad7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/bounty.meta b/lua/app/ui/bounty.meta new file mode 100644 index 00000000..1a01d60d --- /dev/null +++ b/lua/app/ui/bounty.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3bb47a02f3f435d4fa1258bcc55fa378 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/chapter.meta b/lua/app/ui/chapter.meta new file mode 100644 index 00000000..f9a7974d --- /dev/null +++ b/lua/app/ui/chapter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 17b83d5589ee5a14e8db7d4e773fcbfb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/collection.meta b/lua/app/ui/collection.meta new file mode 100644 index 00000000..3c52f31e --- /dev/null +++ b/lua/app/ui/collection.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df037f5d780e75640a04da123e60cd06 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common.meta b/lua/app/ui/common.meta new file mode 100644 index 00000000..0af6c253 --- /dev/null +++ b/lua/app/ui/common.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b300afe3fc976904187b3dc12045e8ce +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/cell.meta b/lua/app/ui/common/cell.meta new file mode 100644 index 00000000..13ea1080 --- /dev/null +++ b/lua/app/ui/common/cell.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a45796e10ae300845b5583fd762c94df +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/cell/base_cell.lua b/lua/app/ui/common/cell/base_cell.lua new file mode 100644 index 00000000..5507ad26 --- /dev/null +++ b/lua/app/ui/common/cell/base_cell.lua @@ -0,0 +1,29 @@ + +---@class BaseCell : LuaComponent +local BaseCell = class("BaseCell", LuaComponent) + +function BaseCell:init() +end + +function BaseCell:refresh(data) +end + +function BaseCell:setIndex(index) + self.index = index +end + +function BaseCell:getIndex() + return self.index +end + +function BaseCell:getUIMap() + return self.baseObject:genAllChildren() +end + +function BaseCell:addClickListener(callback) + if callback then + self.baseObject:addClickListener(callback) + end +end + +return BaseCell \ No newline at end of file diff --git a/lua/app/ui/common/cell/base_cell.lua.meta b/lua/app/ui/common/cell/base_cell.lua.meta new file mode 100644 index 00000000..c430a01f --- /dev/null +++ b/lua/app/ui/common/cell/base_cell.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c42e01a6f533a774085e3513f6c66ff9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/cell/equip_cell.lua b/lua/app/ui/common/cell/equip_cell.lua new file mode 100644 index 00000000..21af2237 --- /dev/null +++ b/lua/app/ui/common/cell/equip_cell.lua @@ -0,0 +1,93 @@ +local EquipCell = class("EquipCell", BaseCell) + +function EquipCell:refresh(entity, showMask, showLv) + local uiMap = self:getUIMap() + local bg = uiMap["equip_cell.frame_bg"] + local icon = uiMap["equip_cell.icon"] + local partBg = uiMap["equip_cell.part_bg"] + local mask = uiMap["equip_cell.mask"] + local partIcon = uiMap["equip_cell.part_bg.icon"] + local lvTx = uiMap["equip_cell.lv_tx"] + + bg:setSprite(entity:getFrameRes()) + icon:setSprite(entity:getIconRes()) + partBg:setSprite(entity:getPartBgRes()) + partIcon:setSprite(entity:getPartRes()) + lvTx:setText(I18N:getGlobalText(I18N.GlobalConst.LV_POINT, entity:getLv())) + + icon:setVisible(true) + partBg:setVisible(true) + mask:setVisible(showMask == true) + lvTx:setVisible(showLv) +end + +function EquipCell:refreshByCfg(id, showMask) + local cfg = ConfigManager:getConfig("equip")[id] + if not cfg then + return + end + local uiMap = self:getUIMap() + local bg = uiMap["equip_cell.frame_bg"] + local icon = uiMap["equip_cell.icon"] + local partBg = uiMap["equip_cell.part_bg"] + local partIcon = uiMap["equip_cell.part_bg.icon"] + local mask = uiMap["equip_cell.mask"] + local lvTx = uiMap["equip_cell.lv_tx"] + + bg:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, "frame_" .. cfg.qlt) + icon:setSprite(GFunc.getEquipIconRes(id)) + partBg:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, "type_" .. cfg.qlt) + partIcon:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, "e" .. cfg.part) + + icon:setVisible(true) + partBg:setVisible(true) + mask:setVisible(showMask == true) + lvTx:setVisible(false) +end + +function EquipCell:refreshByPart(part) + local uiMap = self:getUIMap() + local bg = uiMap["equip_cell.frame_bg"] + local icon = uiMap["equip_cell.icon"] + local partBg = uiMap["equip_cell.part_bg"] + local mask = uiMap["equip_cell.mask"] + local lvTx = uiMap["equip_cell.lv_tx"] + + bg:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, "frame_empty") + icon:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, "empty_" .. part) + + icon:setVisible(true) + partBg:setVisible(false) + mask:setVisible(false) + lvTx:setVisible(false) +end + +function EquipCell:setTouchEnable(enable) + self:getBaseObject():setTouchEnable(enable == true) +end + +function EquipCell:addClickListener(func) + self:getBaseObject():addClickListener(func) +end + +function EquipCell:getAnchoredPositionX() + return self:getBaseObject():getAnchoredPositionX() +end + +function EquipCell:setVisible(visible, scale) + self:getBaseObject():setVisible(visible, scale) +end + +function EquipCell:setActive(active) + self:getBaseObject():setActive(active) +end + +function EquipCell:addRedPoint(posX, posY, scale) + self:getBaseObject():addRedPoint(posX, posY, scale) +end + +function EquipCell:removeRedPoint() + self:getBaseObject():removeRedPoint() +end + +return EquipCell diff --git a/lua/app/ui/common/cell/equip_cell.lua.meta b/lua/app/ui/common/cell/equip_cell.lua.meta new file mode 100644 index 00000000..1915afd4 --- /dev/null +++ b/lua/app/ui/common/cell/equip_cell.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f5eae776f753ec3439ccc3632c53b366 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/cell/item_cell.lua b/lua/app/ui/common/cell/item_cell.lua new file mode 100644 index 00000000..976b0bf7 --- /dev/null +++ b/lua/app/ui/common/cell/item_cell.lua @@ -0,0 +1,83 @@ +local ItemCell = class("ItemCell", BaseCell) + +function ItemCell:refresh(entity) + local uiMap = self:getUIMap() + local icon = uiMap["item_cell.icon"] + local num = uiMap["item_cell.num"] + local bg = uiMap["item_cell.bg"] + local mask = uiMap["item_cell.mask"] + local check = uiMap["item_cell.check"] + local lock = uiMap["item_cell.lock"] + local rarityIcon = uiMap["item_cell.rarity_icon"] + + local rarity = entity:getRarity() + if rarity then + rarityIcon:setSprite(GConst.ATLAS_PATH.ICON_ITEM, "frame_ssr_" .. rarity) + end + rarityIcon:setVisible(rarity ~= nil) + icon:setSprite(entity:getIconRes()) + bg:setSprite(entity:getFrameRes()) + bg:setSprite(GConst.ATLAS_PATH.ICON_ITEM, "frame_" .. entity:getQuality()) + num:setText(GFunc.num2Str(entity:getCount())) + mask:setVisible(false) + check:setVisible(false) + lock:setVisible(false) +end + +function ItemCell:refreshByCfg(id, count) + local uiMap = self:getUIMap() + local icon = uiMap["item_cell.icon"] + local num = uiMap["item_cell.num"] + local bg = uiMap["item_cell.bg"] + local mask = uiMap["item_cell.mask"] + local check = uiMap["item_cell.check"] + local lock = uiMap["item_cell.lock"] + local rarityIcon = uiMap["item_cell.rarity_icon"] + + local cfg = ConfigManager:getConfig("item")[id] + local rarity = cfg.rarity + if rarity then + rarityIcon:setSprite(GConst.ATLAS_PATH.ICON_ITEM, "frame_ssr_" .. rarity) + end + rarityIcon:setVisible(rarity ~= nil) + icon:setSprite(GConst.ATLAS_PATH.ICON_ITEM, cfg.icon) + bg:setSprite(GConst.ATLAS_PATH.ICON_ITEM, "frame_" .. cfg.qlt) + num:setText(GFunc.num2Str(count)) + mask:setVisible(false) + check:setVisible(false) + lock:setVisible(false) +end + +function ItemCell:setTouchEnable(enable) + self:getBaseObject():setTouchEnable(enable == true) +end + +function ItemCell:addClickListener(func) + self:getBaseObject():addClickListener(func) +end + +function ItemCell:showMask(showMask) + local uiMap = self:getUIMap() + local mask = uiMap["item_cell.mask"] + mask:setVisible(showMask == true) +end + +function ItemCell:showCheck(showCheck) + local uiMap = self:getUIMap() + local check = uiMap["item_cell.check"] + check:setVisible(showCheck == true) +end + +function ItemCell:showLock(showLock) + local uiMap = self:getUIMap() + local lock = uiMap["item_cell.lock"] + lock:setVisible(showLock == true) +end + +function ItemCell:setNum(numStr) + local uiMap = self:getUIMap() + local num = uiMap["item_cell.num"] + num:setText(numStr) +end + +return ItemCell diff --git a/lua/app/ui/common/cell/item_cell.lua.meta b/lua/app/ui/common/cell/item_cell.lua.meta new file mode 100644 index 00000000..2fd14d35 --- /dev/null +++ b/lua/app/ui/common/cell/item_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: dfc3523ce1f227e42b65d78abb7312ae +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/common/cell/reward_cell.lua b/lua/app/ui/common/cell/reward_cell.lua new file mode 100644 index 00000000..51803321 --- /dev/null +++ b/lua/app/ui/common/cell/reward_cell.lua @@ -0,0 +1,183 @@ +---@class RewardCell : BaseCell +local RewardCell = class("RewardCell", BaseCell) + +function RewardCell:init() + local uiMap = self:getUIMap() + self.icon = uiMap["reward_cell.bg.icon"] + self.frameBg = uiMap["reward_cell.bg.frame_bg"] + self.partBg = uiMap["reward_cell.bg.part_bg"] + self.frame = uiMap["reward_cell.bg.frame"] + self.mask = uiMap["reward_cell.bg.mask"] + self.check = uiMap["reward_cell.bg.check"] + self.partIcon = uiMap["reward_cell.bg.part_bg.icon"] + self.numTx = uiMap["reward_cell.bg.num_tx"] + + self:hideFrameAnimation() +end + +function RewardCell:refresh(reward) + self:showMask(false, false) + -- self:showLock(false) + local id + if reward.type == GConst.REWARD_TYPE.ITEM then + self:_refreshItem(reward.item) + id = reward.item.id + elseif reward.type == GConst.REWARD_TYPE.EQUIP then + self:_refreshEquip(reward.equip) + id = reward.equip.id + elseif reward.type == GConst.REWARD_TYPE.LEGACY then + self:_refreshLegacy(reward.legacy) + id = reward.legacy.id + end + + if id then + self:addClickListener(function() + ModuleManager.TipsManager:showRewardTips(id, reward.type, self.baseObject) + end) + end +end + +function RewardCell:refreshByConfig(reward, mask, check) + self:showMask(mask, check) + -- self:showCheck(false) + -- self:showLock(false) + local id + if reward.type == GConst.REWARD_TYPE.ITEM then + self:_refreshItem(reward) + id = reward.id + elseif reward.type == GConst.REWARD_TYPE.EQUIP then + self:_refreshEquip(reward) + id = reward.id + elseif reward.type == GConst.REWARD_TYPE.LEGACY then + self:_refreshLegacy(reward) + id = reward.id + end + + if id then + self:addClickListener(function() + ModuleManager.TipsManager:showRewardTips(id, reward.type, self.baseObject) + end) + end +end + +function RewardCell:_refreshItem(item) + local info = ConfigManager:getConfig("item")[item.cfg_id or item.id] + if info == nil then + return + end + + self.partBg:setVisible(false) + self.numTx:setVisible(true) + self.frameBg:setSprite(GConst.ATLAS_PATH.ICON_ITEM, "frame_0") + self.icon:setSprite(GConst.ATLAS_PATH.ICON_ITEM, info.icon) + if info.type == 6 then + self.numTx:setText(BigNumOpt.bigNum2Num(item.count)) + else + self.numTx:setText(BigNumOpt.bigNum2Str(item.count)) + end +end + +function RewardCell:_refreshEquip(equip) + local info = ConfigManager:getConfig("equip")[equip.id] + if info == nil then + return + end + + self.partBg:setVisible(true) + self.numTx:setVisible(true) + self.frameBg:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, "frame_" .. info.qlt) + self.icon:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, tostring(info.icon)) + self.partBg:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, "type_" .. info.qlt) + self.partIcon:setSprite(GConst.ATLAS_PATH.ICON_EQUIP, "e" .. info.part) + if type(equip.count) == "table" then + self.numTx:setText(BigNumOpt.bigNum2Str(equip.count)) + else + self.numTx:setText(equip.count) + end +end + +function RewardCell:showNumTx(str) + self.numTx:setText(str) +end + +function RewardCell:_refreshLegacy(legacy) + local info = ConfigManager:getConfig("legacy")[legacy.id] + if info == nil then + return + end + + self.partBg:setVisible(false) + self.numTx:setVisible(true) + self.frameBg:setSprite(GConst.ATLAS_PATH.ICON_LEGACY, "frame_" .. info.qlt) + self.icon:setSprite(GConst.ATLAS_PATH.ICON_LEGACY, tostring(info.icon)) + if type(legacy.count) == "table" then + self.numTx:setText(BigNumOpt.bigNum2Str(legacy.count)) + else + self.numTx:setText(legacy.count) + end +end + +function RewardCell:showNumTx(value) + self.numTx:setText(value) +end + +function RewardCell:showMask(show, syncCheck) + self.mask:setVisible(show == true) + self:showCheck(syncCheck) +end + +function RewardCell:showFrameAnimation(rewardType) + self.frame:setVisible(true) + self.frame:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR).enabled = true + if rewardType == GConst.REWARD_TYPE.EQUIP then + if self.frameAniType ~= rewardType then + -- CS.UnityEngine.Animator.StringToHash("frame_reward_equip") 结果是-540830890 + -- self.frame:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play(-540830890, -1, 0) + self.frameAniType = rewardType + end + else + if self.frameAniType ~= GConst.REWARD_TYPE.ITEM then + -- CS.UnityEngine.Animator.StringToHash("frame_reward") 结果是997722489 + -- self.frame:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play(997722489, -1, 0) + self.frameAniType = GConst.REWARD_TYPE.ITEM + end + end +end + +function RewardCell:hideFrameAnimation() + self.frame:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR).enabled = false + self.frame:setVisible(false) +end + +function RewardCell:hideCountTx() +end + +function RewardCell:showCheck(show) + self.check:setVisible(show == true) +end + +function RewardCell:showLock(show) + self.lock:setVisible(show == true) +end + +function RewardCell:setVisible(visible) + self.baseObject:setActive(visible) +end + +function RewardCell:setAnchoredPositionX(x) + self.baseObject:setAnchoredPositionX(x) +end + +function RewardCell:setTouchEnable(enable) + self.baseObject:setTouchEnable(enable) +end + +function RewardCell:addClickListener(func) + self.baseObject:addClickListener(func) +end + +function RewardCell:setLocalScale(x, y, z) + self.baseObject:setLocalScale(x, y, z) +end + +return RewardCell \ No newline at end of file diff --git a/lua/app/ui/common/cell/reward_cell.lua.meta b/lua/app/ui/common/cell/reward_cell.lua.meta new file mode 100644 index 00000000..47ca6d14 --- /dev/null +++ b/lua/app/ui/common/cell/reward_cell.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 1b4216eff2ffd954e8ce8d350fc8b920 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/cheat_message_box.lua b/lua/app/ui/common/cheat_message_box.lua new file mode 100644 index 00000000..ec3f61a2 --- /dev/null +++ b/lua/app/ui/common/cheat_message_box.lua @@ -0,0 +1,83 @@ +local CheatMessageBox = {} + +function CheatMessageBox:showCheatMessageBox(params) + if params and params.noDeleteBtn then + CheatMessageBox.noDeleteBtn = true + end + UIManager:getCheatMessageBox(function(prefabObject) + local uiMap = prefabObject:genAllChildren() + uiMap["message_box.title_bg_img.title_text"]:setText(I18N:getGlobalText(I18N.GlobalConst.MESSAGE_BOX_TITLE)) + uiMap["cheating_ui.title_bg_img.desc_tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.CHEATING_DESC_1)) + uiMap["message_box.title_bg_img.ok_btn.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.SUPPORT_DESSC)) + uiMap["cheating_box.title_bg_img.delete_btn.text"]:setText(I18N:getGlobalText(I18N.GlobalConst.DELETE_ACCOUNT_DESC)) + uiMap["cheating_ui.title_bg_img.bg1.player_id_btn.desc"]:setText(I18N:getGlobalText(I18N.GlobalConst.COPY_ID)) + uiMap["cheating_ui.title_bg_img.bg2.player_id_btn.desc"]:setText(I18N:getGlobalText(I18N.GlobalConst.COPY_MAIL)) + + local ServerGameData = require "app/module/server/server_game_data" + local objectId = ServerGameData:getServerPlayerId() or "" + uiMap["cheating_ui.title_bg_img.bg1.player_id"]:setText("PlayerID:" .. objectId) + uiMap["cheating_ui.title_bg_img.bg2.player_id"]:setText("LonelySurvivorTech@cobbygame.com") + + uiMap["cheating_ui.title_bg_img.bg1.player_id_btn"]:addClickListener(function() + local ServerGameData = require "app/module/server/server_game_data" + local objectId = ServerGameData:getServerPlayerId() or "" + GFunc.copyStr(objectId) + end) + + uiMap["cheating_ui.title_bg_img.bg2.player_id_btn"]:addClickListener(function() + GFunc.copyStr("LonelySurvivorTech@cobbygame.com") + end) + + local okBtn = uiMap["message_box.title_bg_img.ok_btn"] + okBtn:addClickListener(function() + local subject = "Lonely Survivor(" .. Platform:getClientVersion() .. ")'s Feedback" + + local platform = "Android" + if Platform:isIosPlatform() then + platform = "IOS" + end + + local ServerGameData = require "app/module/server/server_game_data" + local objectId = ServerGameData:getServerPlayerId() or "" + + local body = "\nPlease don't delete the information below\n===========\nGameName: Lonely Survivor\n" + body = body .. "GameVersion: " .. Platform:getClientVersion() .. "\n" + body = body .. "Device Model: " .. DeviceHelper:getDeviceModel() .. "\n" + body = body .. "Platform: " .. platform .. "\n" + body = body .. "OSversion: " .. DeviceHelper:getOSVersion() .. "\n" + body = body .. "User ID: " .. objectId .. "\n" + body = body .. "===========\nPlease don't delete the information above" + + local uri = CS.System.Uri("mailto:LonelySurvivorTech@cobbygame.com?subject=" .. subject .. "&body=" .. body) + GFunc.openUrl(uri.AbsoluteUri) + end) + + local deleteBtn = uiMap["cheating_box.title_bg_img.delete_btn"] + + deleteBtn:addClickListener(function() + local sortingOrder = prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).sortingOrder + 1 + local obj = ModuleManager.AccountManager:showDeleteUI() + obj:setUIOrder(0, sortingOrder) + end) + + local showDeleteBtn = true + if CheatMessageBox.noDeleteBtn then + showDeleteBtn = false + end + + deleteBtn:setActive(showDeleteBtn) + if showDeleteBtn then + okBtn:setAnchoredPositionX(132) + else + okBtn:setAnchoredPositionX(0) + end + end) +end + +function CheatMessageBox:hideCheatMessageBox() + if not CheatMessageBox.noDeleteBtn then + UIManager:hideCheatMessageBox() + end +end + +return CheatMessageBox \ No newline at end of file diff --git a/lua/app/ui/common/cheat_message_box.lua.meta b/lua/app/ui/common/cheat_message_box.lua.meta new file mode 100644 index 00000000..fa77c80e --- /dev/null +++ b/lua/app/ui/common/cheat_message_box.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ed5cd4e2a31830e439ea9f1e38f55731 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/common/component.meta b/lua/app/ui/common/component.meta new file mode 100644 index 00000000..4230a5f6 --- /dev/null +++ b/lua/app/ui/common/component.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b7d638ac5edd7ab4295f69df4a9ad38c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/component/chat_btn_comp.lua b/lua/app/ui/common/component/chat_btn_comp.lua new file mode 100644 index 00000000..4b3e4318 --- /dev/null +++ b/lua/app/ui/common/component/chat_btn_comp.lua @@ -0,0 +1,154 @@ +local ChatBtnComp = class("ChatBtnComp", LuaComponent) + +function ChatBtnComp:init() + local x, y = self.baseObject:fastGetSizeDelta() + self.width = x + self.height = y + self.baseObject:addDragListener(function(eventType, x, y) + self:onGrag(eventType, x, y) + end) + self:adsorbent() + + local uiMap = self.baseObject:genAllChildren() + self.redPoint = uiMap["chat_btn.red_point"] + self.redPointTx = uiMap["chat_btn.red_point.text"] + self.isBindData = false + self.initPosition = false +end + +function ChatBtnComp:bindData() + self.isBindData = true + self:bind(DataManager.ChatData:getChatGuild(), "chatCount", function() + self:refreshRedPoint() + end) + + self:bind(DataManager.ChatData:getChatGuild(), "readMsgIndex", function() + self:refreshRedPoint() + end) + + self:bind(DataManager.ChatData:getChatWorld(), "chatCount", function() + self:refreshRedPoint() + end) + + self:bind(DataManager.ChatData:getChatWorld(), "readMsgIndex", function() + self:refreshRedPoint() + end) + + self:bind(DataManager.ChatData, "isBlockWorldRedPoint", function() + self:refreshRedPoint() + end) + + self:bind(DataManager.ChatData, "isBlockGuildRedPoint", function() + self:refreshRedPoint() + end) +end + +function ChatBtnComp:show(isFirstEnter) + if DataManager.TutorialData:getIsInTutorial() then -- 有新手引导的时候隐藏 + self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + return + end + if isFirstEnter or not self.initPosition then + self.initPosition = true + local width = GConst.UI_SCREEN_WIDTH + local height = GConst.UI_SCREEN_HEIGHT + self.baseObject:setAnchoredPosition(-width/2 + 60, -height/2 + 220) + self:bindData() + end + if not self.isBindData then + self:bindData() + end + self:refreshRedPoint() + self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = true +end + +function ChatBtnComp:hide() + if not self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled then + return + end + self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + self:unBindAll() + self.isBindData = false +end + +function ChatBtnComp:adsorbent() + local notchScreenHeight = SafeAreaManager:getNotchScreenHeight() + if notchScreenHeight < 1 then -- 没有刘海 + notchScreenHeight = 0 + end + local posX, posY = self.baseObject:fastGetAnchoredPosition() + local width = GConst.UI_SCREEN_WIDTH + local height = GConst.UI_SCREEN_HEIGHT + if posY < -height/2 + self.height/2 then + posY = -height/2 + self.height/2 + elseif posY > height/2 - self.height/2 - notchScreenHeight then + posY = height/2 - self.height/2 - notchScreenHeight + end + local distanceLeft = posX + width/2 + local distanceRight = width - distanceLeft + local min = math.min(distanceLeft, distanceRight) + local x, y = width/2 - self.width/2 - 20, posY-- 默认向右吸附 + if distanceLeft == min then -- 离左边最近 + x, y = -width/2 + self.width/2 + 20, posY + end + self.baseObject:setAnchoredPosition(x, y) +end + +function ChatBtnComp:onGrag(eventType, x, y) + if eventType == GConst.TOUCH_EVENT.DOWN then + elseif eventType == GConst.TOUCH_EVENT.DRAG then + local uiCamera = UIManager:getUICameraComponent() + local worldPosition = uiCamera:ScreenToWorldPoint(BF.Vector2(x, y)) + local convertPosition = UIManager:getMainCanvas():getTransform():InverseTransformPoint(worldPosition) + local x = convertPosition.x + local y = convertPosition.y + if x > GConst.UI_SCREEN_WIDTH/2 then + x = GConst.UI_SCREEN_WIDTH/2 + elseif x < -GConst.UI_SCREEN_WIDTH/2 then + x = -GConst.UI_SCREEN_WIDTH/2 + end + if y > GConst.UI_SCREEN_HEIGHT/2 then + y = GConst.UI_SCREEN_HEIGHT/2 + elseif y < -GConst.UI_SCREEN_HEIGHT/2 then + y = -GConst.UI_SCREEN_HEIGHT/2 + end + self.baseObject:setAnchoredPosition(x, y) + elseif eventType == GConst.TOUCH_EVENT.UP_INSIDE then + ModuleManager.ChatManager:showChatUI() + elseif eventType == GConst.TOUCH_EVENT.DRAG_CANCEL_UP then + self:adsorbent() + end +end + +function ChatBtnComp:refreshRedPoint() + local count = 0 + if not DataManager.ChatData:getIsBlockWorldRedPoint() then + local wordChat = DataManager.ChatData:getChatWorld() + local worldReadIndex = wordChat:getReadMsgIndex() + local chatWorldCount = wordChat:getChatCount() + if worldReadIndex < chatWorldCount then + count = count + chatWorldCount - worldReadIndex + end + end + if not DataManager.ChatData:getIsBlockGuildRedPoint() then + if DataManager.GuildData:checkInGuild() then + local chatGuild = DataManager.ChatData:getChatGuild() + local guildReadIndex = chatGuild:getReadMsgIndex() + local chatGuildCount = chatGuild:getChatCount() + if guildReadIndex < chatGuildCount then + count = count + chatGuildCount - guildReadIndex + end + end + end + if count > 99 then + self.redPoint:setLocalScale(1, 1, 1) + self.redPointTx:setText("99") + elseif count > 0 then + self.redPoint:setLocalScale(1, 1, 1) + self.redPointTx:setText(tostring(count)) + else + self.redPoint:setLocalScale(0, 0, 0) + end +end + +return ChatBtnComp \ No newline at end of file diff --git a/lua/app/ui/common/component/chat_btn_comp.lua.meta b/lua/app/ui/common/component/chat_btn_comp.lua.meta new file mode 100644 index 00000000..fc4b913c --- /dev/null +++ b/lua/app/ui/common/component/chat_btn_comp.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 04894dae0aa220d438a72869851681c5 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/message_box.lua b/lua/app/ui/common/message_box.lua new file mode 100644 index 00000000..5eddfde5 --- /dev/null +++ b/lua/app/ui/common/message_box.lua @@ -0,0 +1,145 @@ +local MessageBox = {} + +-- params参数: +-- content:正文 +-- okFunc:ok按钮的回调 +-- okText:ok按钮的文字 +-- cancelText:取消按钮的文字 +-- cancelFunc:取消按钮的回调 +-- boxType:messagebox的类型 +-- top:是否处于所有ui的最高层级,谨慎使用,目前只允许给掉线必须回登陆界面的情况下使用 +-- blankAreaClose:是否点击空白区域关闭,默认点击不关闭 +function MessageBox:showMessageBox(params) + params = params or {} + local content = params.content or "" + local okFunc = params.okFunc + local okText = params.okText + local cancelText = params.cancelText + local cancelFunc = params.cancelFunc + local boxType = params.boxType + local top = params.top + local showToday = params.showToday + local tag = params.tag + local blankAreaClose = params.blankAreaClose + local titleTx = params.titleTx or I18N:getGlobalText(I18N.GlobalConst.MESSAGE_BOX_TITLE) + + if showToday then -- 今天内不在提示 + local time = LocalData:getMessageBoxShowTodayTime(showToday) + local todayTime = Time:getBeginningOfServerToday() + if time > 0 and time == todayTime then + if okFunc then + return okFunc() + end + end + end + + UIManager:getMessageBox(top, function(prefabObject) + prefabObject._closeByAndroidBackspace = false + prefabObject:setTag(tag) + + local selected = false + local uiMap = prefabObject:genAllChildren() + uiMap["message_box.mask"]:addClickListener(function() + if blankAreaClose then + prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end + end) + + -- if boxType == GConst.MESSAGE_BOX_TYPE.MB_OK or params.noShowClose then -- 这种情况下不显示x按钮 + -- uiMap["message_box.title_bg_img.close_btn"]:setVisible(false) + -- else + -- uiMap["message_box.title_bg_img.close_btn"]:setVisible(true) + -- uiMap["message_box.title_bg_img.close_btn"]:removeClickListener() + -- uiMap["message_box.title_bg_img.close_btn"]:addClickListener(function() + -- prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + -- end) + -- end + + uiMap["message_box.title_bg_img.title_text"]:setText(titleTx) + uiMap["message_box.title_bg_img.bg.content_tx"]:setText(content) + -- local meshProComp = uiMap["message_box.title_bg_img.bg.content_tx"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + -- if meshProComp.preferredHeight > 30 then + -- meshProComp.alignment = CS.TMPro.TextAlignmentOptions.Left + -- else + -- meshProComp.alignment = CS.TMPro.TextAlignmentOptions.Center + -- end + + uiMap["message_box.title_bg_img.ok_btn.text"]:setText(okText or I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK)) + uiMap["message_box.title_bg_img.cancel_btn.text"]:setText(cancelText or I18N:getGlobalText(I18N.GlobalConst.CANCEL_1)) + + if boxType == GConst.MESSAGE_BOX_TYPE.MB_OK then + uiMap["message_box.title_bg_img.cancel_btn"]:setVisible(false) + uiMap["message_box.title_bg_img.ok_btn"]:setVisible(true) + uiMap["message_box.title_bg_img.ok_btn"]:setAnchoredPositionX(0) + elseif boxType == GConst.MESSAGE_BOX_TYPE.MB_OK_CANCEL then + if cancelFunc == nil then + prefabObject._closeByAndroidBackspace = true + end + uiMap["message_box.title_bg_img.ok_btn"]:setVisible(true) + uiMap["message_box.title_bg_img.ok_btn"]:setAnchoredPositionX(139) + uiMap["message_box.title_bg_img.cancel_btn"]:setVisible(true) + uiMap["message_box.title_bg_img.cancel_btn"]:addClickListener(function() + self:closeAndClear(prefabObject, uiMap) + if cancelFunc then + cancelFunc() + end + end) + end + + uiMap["message_box.title_bg_img.ok_btn"]:addClickListener(function() + if showToday and selected then + local todayTime = Time:getBeginningOfServerToday() + LocalData:setMessageBoxShowTodayTime(showToday, todayTime) + end + self:closeAndClear(prefabObject, uiMap) + if okFunc then + okFunc() + end + end) + + if showToday then -- 今天内不在提示 + uiMap["message_box.title_bg_img.bg"]:setSizeDeltaY(153) + uiMap["message_box.title_bg_img.today"]:setVisible(true) + uiMap["message_box.title_bg_img.today.check.select"]:setVisible(false) + + local checkUI = uiMap["message_box.title_bg_img.today.check"] + checkUI:addClickListener(function() + selected = not selected + Logger.logHighlight("%s", selected) + uiMap["message_box.title_bg_img.today.check.select"]:setVisible(selected) + end) + + local textUI = uiMap["message_box.title_bg_img.today.text"] + textUI:setText(I18N:getGlobalText(I18N.GlobalConst.CONFIRM_IGNORE)) + + GFunc.centerImgAndTx(checkUI, textUI, 5) + else + uiMap["message_box.title_bg_img.bg"]:setSizeDeltaY(210) + uiMap["message_box.title_bg_img.today"]:setVisible(false) + end + end) +end + +function MessageBox:refreshText(isTop) + local gameObject = UIManager:getMessageBoxGameObject(isTop) + if gameObject == nil then + return + end + if gameObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled then + return + end + local uiMap = gameObject:genAllChildren() + uiMap["message_box.title_bg_img.title_text"]:setText("") + uiMap["message_box.title_bg_img.bg.content_tx"]:setText("") + uiMap["message_box.title_bg_img.ok_btn.text"]:setText("") + uiMap["message_box.title_bg_img.cancel_btn.text"]:setText("") +end + +function MessageBox:closeAndClear(prefabObject, uiMap) + uiMap["message_box.title_bg_img.ok_btn"]:removeClickListener() + uiMap["message_box.title_bg_img.cancel_btn"]:removeClickListener() + uiMap["message_box.title_bg_img.today.check"]:removeClickListener() + prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false +end + +return MessageBox \ No newline at end of file diff --git a/lua/app/ui/common/message_box.lua.meta b/lua/app/ui/common/message_box.lua.meta new file mode 100644 index 00000000..df9327a8 --- /dev/null +++ b/lua/app/ui/common/message_box.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f56d5ff0701e68c4ba6082a71b1f3851 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/roll_toast_manager.lua b/lua/app/ui/common/roll_toast_manager.lua new file mode 100644 index 00000000..f734f572 --- /dev/null +++ b/lua/app/ui/common/roll_toast_manager.lua @@ -0,0 +1,290 @@ +local RollToastManager = class("RollToastManager", BaseModule) + +local HUNDRED_PIXEL_TIME = 0.4 +local MIN_SPACING = 100 +local SECONDS_PRE_MINUTE = 60 +local THREE_MINITE_SECOND = 180 +local FOUR_MINITE_SECOND = 240 +local FIVE_MINITE_SECOND = 300 +local TEN_MINITE_SECOND = 600 +local FIFTEEN_MINITE_SECOND = 900 + +function RollToastManager:ctor() + self.curIndex = 0 + self.toastList = {} +end + +function RollToastManager:clear(dontClearUpdateContent) + self.curIndex = 0 + self.toastList = {} + if not dontClearUpdateContent then + self.updateContent = nil + end + self:clearSeq() +end + +function RollToastManager:showToast(str) + if self.updateContent then + return + end + + local mainUIOn = false + local uiList = UIManager:getUIList() + for _, uiObj in ipairs(uiList) do + if uiObj:getUIIndex() == UIManager.UI_PATH.MAINCITY_UI then + mainUIOn = uiObj:isVisible() + break + end + end + + if not mainUIOn then + return + end + + if not self.curIndex or not self.toastList or self.curIndex >= #self.toastList then + self.toastList = {} + self.curIndex = 0 + end + + table.insert(self.toastList, str) + + self:tryShowToast(true) +end + +function RollToastManager:tryShowToast(ignoreMainUI) + if not ignoreMainUI then + local mainUIOn = false + local uiList = UIManager:getUIList() + for _, uiObj in ipairs(uiList) do + if uiObj:getUIIndex() == UIManager.UI_PATH.MAINCITY_UI then + mainUIOn = uiObj:isVisible() + break + end + end + + if not mainUIOn then + return + end + end + + if not self.curIndex or not self.toastList or self.curIndex >= #self.toastList then + self.toastList = {} + self.curIndex = 0 + end + + if self.updateContent then + self:_showToast(self.updateContent, true) + self.toastList = {} + self.curIndex = 0 + return -- 有维护更新时,强制显示更新,并且清除所有缓存 + end + + local index = self.curIndex + 1 + if self.toastList[index] then + self:_showToast(self.toastList[index]) + end +end + +function RollToastManager:_showToast(str, isUpdateConetnt) + UIManager:getRollToast(function(prefabObject) + prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = true + local seq, content = self:getIdleSeq(prefabObject) + if seq then + if not isUpdateConetnt then + self.curIndex = self.curIndex + 1 + end + content:setText(str) + content:setSizeDeltaX(content:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredWidth) + content:setAnchoredPositionX(0) + local targetPos = prefabObject:getSizeDeltaX() + content:getSizeDeltaX() + local tryShowNextPosX = content:getSizeDeltaX() + MIN_SPACING + + seq:Append(content:getTransform():DOAnchorPosX(-targetPos, (targetPos / 100) * HUNDRED_PIXEL_TIME):SetEase(CS.DG.Tweening.Ease.Linear)) + seq:InsertCallback((tryShowNextPosX / 100) * HUNDRED_PIXEL_TIME, function() + self:tryShowToast() + end) + end + end) +end + +function RollToastManager:getIdleSeq(rollToastObj) + local uiMap = rollToastObj:genAllChildren() + local content1 = uiMap["roll_toast.content_1"] + local content2 = uiMap["roll_toast.content_2"] + if not self.seq1 then + local canCreate = true + if self.seq2 and (content2:getAnchoredPosition().x + content2:getSizeDeltaX() > -MIN_SPACING) then + canCreate = false + end + if canCreate then + self.seq1 = content1:createBindTweenSequence() + self.seq1:OnComplete(function() + self.seq1 = nil + self:tryShowToast() + self:tryHide() + end) + if not self.seq2 then + content2:setText(GConst.EMPTY_STRING) + end + return self.seq1, content1 + end + end + + if not self.seq2 then + local canCreate = true + if self.seq1 and (content1:getAnchoredPosition().x + content1:getSizeDeltaX() > -MIN_SPACING) then + canCreate = false + end + if canCreate then + self.seq2 = content2:createBindTweenSequence() + self.seq2:OnComplete(function() + self.seq2 = nil + self:tryShowToast() + self:tryHide() + end) + if not self.seq1 then + content1:setText(GConst.EMPTY_STRING) + end + return self.seq2, content2 + end + end +end + +function RollToastManager:tryHide() + if self.curIndex >= #self.toastList and not self.updateContent and not self.seq1 and not self.seq2 then + UIManager:getRollToast(function(prefabObject) + prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end) + end +end + +function RollToastManager:clearSeq() + if self.seq1 then + self.seq1:Kill() + self.seq1 = nil + end + if self.seq2 then + self.seq2:Kill() + self.seq2 = nil + end +end + +function RollToastManager:showUpdateToast(cd) + UIManager:getRollToast(function(prefabObject) + prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + + if prefabObject._updateToastSequence then + prefabObject._updateToastSequence:Kill() + prefabObject._updateToastSequence = nil + end + + prefabObject._updateToastSequence = prefabObject:createBindTweenSequence() + prefabObject._updateToastSequence:SetUpdate(CS.DG.Tweening.UpdateType.Normal, true) + + self.updateContent = nil + if cd >= FIFTEEN_MINITE_SECOND - SECONDS_PRE_MINUTE then -- 大于等于14分钟 + local intervalTime = cd - FIFTEEN_MINITE_SECOND + SECONDS_PRE_MINUTE + if cd >= FIFTEEN_MINITE_SECOND then -- 大于等于15分钟 + prefabObject._updateToastSequence:AppendInterval(cd - FIFTEEN_MINITE_SECOND) + intervalTime = SECONDS_PRE_MINUTE + end + + -- 15分钟 + local minute = math.floor(FIFTEEN_MINITE_SECOND / SECONDS_PRE_MINUTE) + if cd < FIFTEEN_MINITE_SECOND then + self.updateContent = I18N:getGlobalText(I18N.GlobalConst.UPDATE_TOAST_TXT, minute) + end + prefabObject._updateToastSequence:AppendCallback(function() + self.updateContent = I18N:getGlobalText(I18N.GlobalConst.UPDATE_TOAST_TXT, minute) + self:tryShowToast() + DataManager.ChatData:getChatSystem():addMaintenanceMsg(minute) + end) + prefabObject._updateToastSequence:AppendInterval(intervalTime) + prefabObject._updateToastSequence:AppendCallback(function() + self.updateContent = nil + end) + prefabObject._updateToastSequence:AppendInterval(FOUR_MINITE_SECOND) + + cd = TEN_MINITE_SECOND + end + + if cd >= TEN_MINITE_SECOND - SECONDS_PRE_MINUTE then -- 大于等于9分钟 + local intervalTime = cd - TEN_MINITE_SECOND + SECONDS_PRE_MINUTE + if cd >= TEN_MINITE_SECOND then + prefabObject._updateToastSequence:AppendInterval(cd - TEN_MINITE_SECOND) + intervalTime = SECONDS_PRE_MINUTE + end + + -- 10分钟 + local minute = math.floor(TEN_MINITE_SECOND / SECONDS_PRE_MINUTE) + if cd < TEN_MINITE_SECOND then + self.updateContent = I18N:getGlobalText(I18N.GlobalConst.UPDATE_TOAST_TXT, minute) + end + prefabObject._updateToastSequence:AppendCallback(function() + self.updateContent = I18N:getGlobalText(I18N.GlobalConst.UPDATE_TOAST_TXT, minute) + self:tryShowToast() + DataManager.ChatData:getChatSystem():addMaintenanceMsg(minute) + end) + prefabObject._updateToastSequence:AppendInterval(intervalTime) + prefabObject._updateToastSequence:AppendCallback(function() + self.updateContent = nil + end) + prefabObject._updateToastSequence:AppendInterval(FOUR_MINITE_SECOND) + + cd = FIVE_MINITE_SECOND + end + + if cd >= FIVE_MINITE_SECOND - SECONDS_PRE_MINUTE then -- 大于等于4分钟 + local intervalTime = cd - FIVE_MINITE_SECOND + SECONDS_PRE_MINUTE + if cd >= FIVE_MINITE_SECOND then + prefabObject._updateToastSequence:AppendInterval(cd - FIVE_MINITE_SECOND) + intervalTime = SECONDS_PRE_MINUTE + end + + -- 5分钟 + local minute = math.floor(FIVE_MINITE_SECOND / SECONDS_PRE_MINUTE) + if cd < FIVE_MINITE_SECOND then + self.updateContent = I18N:getGlobalText(I18N.GlobalConst.UPDATE_TOAST_TXT, minute) + end + prefabObject._updateToastSequence:AppendCallback(function() + self.updateContent = I18N:getGlobalText(I18N.GlobalConst.UPDATE_TOAST_TXT, minute) + self:tryShowToast() + DataManager.ChatData:getChatSystem():addMaintenanceMsg(minute) + end) + prefabObject._updateToastSequence:AppendInterval(intervalTime) + prefabObject._updateToastSequence:AppendCallback(function() + self.updateContent = nil + end) + prefabObject._updateToastSequence:AppendInterval(THREE_MINITE_SECOND) + + cd = SECONDS_PRE_MINUTE + end + + if cd >= 0 then -- 最后几分钟 + local intervalTime = cd + if cd >= SECONDS_PRE_MINUTE then + prefabObject._updateToastSequence:AppendInterval(cd - SECONDS_PRE_MINUTE) + intervalTime = SECONDS_PRE_MINUTE + end + + -- 1分钟 + local minute = math.floor(SECONDS_PRE_MINUTE / SECONDS_PRE_MINUTE) + if cd < SECONDS_PRE_MINUTE then + self.updateContent = I18N:getGlobalText(I18N.GlobalConst.UPDATE_TOAST_TXT, minute) + end + prefabObject._updateToastSequence:AppendCallback(function() + self.updateContent = I18N:getGlobalText(I18N.GlobalConst.UPDATE_TOAST_TXT, minute) + self:tryShowToast() + DataManager.ChatData:getChatSystem():addMaintenanceMsg(minute) + end) + prefabObject._updateToastSequence:AppendInterval(intervalTime) + prefabObject._updateToastSequence:OnComplete(function() + self.updateContent = nil + end) + end + + self:tryShowToast() + end) +end + +return RollToastManager \ No newline at end of file diff --git a/lua/app/ui/common/roll_toast_manager.lua.meta b/lua/app/ui/common/roll_toast_manager.lua.meta new file mode 100644 index 00000000..980a12a2 --- /dev/null +++ b/lua/app/ui/common/roll_toast_manager.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 9b4c18e8d56bcc245aadc067e60edcd2 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/scrollrect.meta b/lua/app/ui/common/scrollrect.meta new file mode 100644 index 00000000..27bd7d86 --- /dev/null +++ b/lua/app/ui/common/scrollrect.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 51654399c1ecbd94f976f0a52829c75e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/scrollrect/scrollrect_base.lua b/lua/app/ui/common/scrollrect/scrollrect_base.lua new file mode 100644 index 00000000..97bebd36 --- /dev/null +++ b/lua/app/ui/common/scrollrect/scrollrect_base.lua @@ -0,0 +1,300 @@ +local UIPrefabObject = require "app/bf/unity/uiprefab_object" +---@class ScrollRectBase +local ScrollRectBase = class("ScrollRectBase", LuaComponent) + +function ScrollRectBase:init() + self:initBFScrollRect() + self.cellList = {} + + -- c#层实例化后调用 + self.bfScrollRect:SetOnInstantiateCellAction(function(gameObject) + if self:isDestroyed() then + ResourceManager:destroyPrefab(gameObject) + return + end + local prefabObject = UIPrefabObject:create() + prefabObject:initWithGameObject(gameObject) + prefabObject:initPrefabHelper() + prefabObject:genAllChildren() + self.baseObject:addChildList(prefabObject) + + if self.needFade then + local fadeTime = self.fadeTime or 0.3 + if fadeTime > 0 then + local canvasGroup = prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS_GROUP) + if not canvasGroup then + canvasGroup = prefabObject:addComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS_GROUP) + end + canvasGroup.alpha = 0 + local tween = canvasGroup:DOFade(1, fadeTime) + tween:SetEase(CS.DG.Tweening.Ease.InOutSine) + tween:SetLink(gameObject) + end + end + + local cell = prefabObject:addLuaComponent(self.initCallback()) + if self.initFinishCallback then + self.initFinishCallback(cell) + end + table.insert(self.cellList, cell) + end) + + self.bfScrollRect:SetRefreshAction(function(dataIndex, cellIndex) + if self:isDestroyed() then + return + end + local cell = self.cellList[cellIndex] + if self.refreshCallback and cell then + cell:setIndex(dataIndex) + self.refreshCallback(dataIndex, cell) + end + end) + + self.bfScrollRect:SetSelectedAction(function(isSelected, cellIndex) + if self:isDestroyed() then + return + end + local cell = self.cellList[cellIndex] + if self.selectedCallback and cell then + self.selectedCallback(isSelected, cell) + end + end) + self.bfScrollRect:SetAnchoredPositionChange(function(x, y) + if self:isDestroyed() then + return + end + if self.anchoredPositionChangeCallback then + self.anchoredPositionChangeCallback(x, y) + end + end) +end + +function ScrollRectBase:initBFScrollRect() + self.bfScrollRect = self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SCROLL_RECT) +end + +---- 淡入参数 initCellTime(多久加载一个cell,当为0时会一帧加载一个),fadeTime(渐显时长) +function ScrollRectBase:setFadeArgs(initCellTime, fadeTime) + self.initCellTime = initCellTime + self.fadeTime = fadeTime +end + +---- 添加init回调 +function ScrollRectBase:addInitCallback(callback) + self.initCallback = callback +end + +---- 添加loadCell完成回调 +function ScrollRectBase:addInitFinishCallback(callback) + if self.cellList then + for k, v in ipairs(self.cellList) do + callback(v) + end + end + self.initFinishCallback = callback +end + +---- 添加refresh回调 +function ScrollRectBase:addRefreshCallback(callback) + self.refreshCallback = callback +end + +---- 添加选中回调 +function ScrollRectBase:addSelectedCallback(callback) + self.selectedCallback = callback +end + +---- 添加滑动回调 +function ScrollRectBase:addAnchoredPositionChangeCallback(callback) + self.anchoredPositionChangeCallback = callback +end + +---- 设置scroll rect 总数量 +function ScrollRectBase:setTotalCount(count) + self.totalCount = count + self.bfScrollRect:SetTotalCount(count) +end + +function ScrollRectBase:getTotalCount() + return self.totalCount +end + +---- 设置选中的index +function ScrollRectBase:setSelected(selectIndex) + self.bfScrollRect:SetSelected(selectIndex) +end + +function ScrollRectBase:refreshAll() + if self.sid then + SchedulerManager:unscheduleGlobal(self.sid) + self.sid = nil + self.bfScrollRect:SetTotalCount(self.totalCount) + end + self.bfScrollRect:RefreshAll() +end + +function ScrollRectBase:refillCells(totalCount, needFade, targetIndex, fadeCount) + self.totalCount = totalCount or self.totalCount + self.needFade = needFade + + if targetIndex then + self.needFade = false + end + + if self.sid then + SchedulerManager:unscheduleGlobal(self.sid) + self.sid = nil + end + + -- 1个C#计算有个bug 不能直接用SetTotalCount + if totalCount == 1 then + self.bfScrollRect:RefillCells(totalCount) + return + end + if self.needFade then + -- self.bfScrollRect:RefillCells(0) + self.bfScrollRect:SetTotalCount(0) + local curCount = 0 + local delay = self.initCellTime or 0.1 + self.sid = SchedulerManager:scheduleGlobal(function() + if curCount == self.totalCount then + self.sid = nil + self.needFade = false + return true + else + if self.baseObject:isDestroyed() then + self.sid = nil + self.needFade = false + return true + end + if fadeCount and fadeCount == curCount then + self.needFade = false + if self.sid then + SchedulerManager:unscheduleGlobal(self.sid) + self.sid = nil + end + self.bfScrollRect:SetTotalCount(self.totalCount) + else + curCount = curCount + 1 + self.bfScrollRect:SetTotalCount(curCount) + end + end + end, delay) + else + self.bfScrollRect:RefillCells(self.totalCount, targetIndex or 0) + end +end + +function ScrollRectBase:updateAllCellByIdx(idx) + for i = 1, #self.cellList do + local cell = self.cellList[i] + if self.refreshCallback and cell and cell:getIndex() == idx then + local dataIndex = cell:getIndex() + self.refreshCallback(dataIndex, cell) + end + end +end + +function ScrollRectBase:updateAllCell() + for i = 1, #self.cellList do + local cell = self.cellList[i] + if self.refreshCallback and cell then + local dataIndex = cell:getIndex() + if dataIndex <= self.totalCount then + self.refreshCallback(dataIndex, cell) + end + end + end +end + +function ScrollRectBase:getAllCellAndIndex(callback) + for i = 1, #self.cellList do + local cell = self.cellList[i] + if cell then + local dataIndex = cell:getIndex() + if dataIndex <= self.totalCount and dataIndex > 0 then + callback(dataIndex, cell) + end + end + end +end + +function ScrollRectBase:moveToIndex(targetIndex) + targetIndex = targetIndex or 0 + self.bfScrollRect:MoveToIndex(targetIndex) +end + +---- 清除cell +function ScrollRectBase:clearCells() + self.bfScrollRect:ClearCells() +end + +function ScrollRectBase:removeCell(index) + self.bfScrollRect:RemoveCell(index) +end + +function ScrollRectBase:setTopRecoveryOffset(offset) + self.bfScrollRect:SetTopRecoveryOffset(offset) +end + +function ScrollRectBase:getTopRecoveryOffset() + return self.bfScrollRect:GetTopRecoveryOffset() +end + +function ScrollRectBase:setDownRecoveryOffset(offset) + self.bfScrollRect:SetDownRecoveryOffset(offset) +end + +function ScrollRectBase:getDownRecoveryOffset() + return self.bfScrollRect:GetDownRecoveryOffset() +end + +function ScrollRectBase:getBFScrollRect() + return self.bfScrollRect +end + +function ScrollRectBase:StopMovement() + self.bfScrollRect:StopMovement() +end + +function ScrollRectBase:onDestroy() + LuaComponent.onDestroy(self) + if self.sid then + SchedulerManager:unscheduleGlobal(self.sid) + self.sid = nil + end +end + +function ScrollRectBase:getListCellByIndex(index) + for _, value in ipairs(self.cellList) do + if value:getIndex() == index then + return value + end + end +end + +function ScrollRectBase:getListCell() + return self.cellList +end + +function ScrollRectBase:setCellHeight(height) + self.bfScrollRect:SetCellHeight(height) +end + +function ScrollRectBase:setCellWidth(width) + self.bfScrollRect:SetCellWidth(width) +end + +function ScrollRectBase:setPerLineNum(num) + self.bfScrollRect:SetPerLineNum(num) +end + +function ScrollRectBase:getCellWidth() + return self.bfScrollRect.CellWidth +end + +function ScrollRectBase:getCellHeight() + return self.bfScrollRect.CellHeight +end + +return ScrollRectBase \ No newline at end of file diff --git a/lua/app/ui/common/scrollrect/scrollrect_base.lua.meta b/lua/app/ui/common/scrollrect/scrollrect_base.lua.meta new file mode 100644 index 00000000..263e42d2 --- /dev/null +++ b/lua/app/ui/common/scrollrect/scrollrect_base.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6580113c7ed04cf4a89a35bd3b68e349 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/scrollrect/scrollrect_center.lua b/lua/app/ui/common/scrollrect/scrollrect_center.lua new file mode 100644 index 00000000..73781ea9 --- /dev/null +++ b/lua/app/ui/common/scrollrect/scrollrect_center.lua @@ -0,0 +1,196 @@ +local UIPrefabObject = require "app/bf/unity/uiprefab_object" +local ScrollRectCenter = class("ScrollRectCenter", LuaComponent) + +function ScrollRectCenter:init() + self.centerIndex = 0 + self.cellList = {} + self.scrollRectCenter = self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SCROLL_RECT_CENTER) + + -- c#层实例化后调用 + self.scrollRectCenter:AddOnInstantiateCellAction(function(gameObject) + self:_instantiateCell(gameObject) + end) + + self.scrollRectCenter:AddRefreshAction(function(index, objIndex) + self:_refreshFunc(index + 1, objIndex) + end) + + self.scrollRectCenter:AddSetSelectedAction(function(isSelected, index) + self:_setSelectedFunc(isSelected, index) + end) + + self.scrollRectCenter:AddOnCenterAction(function(index) + self:_onCenterFunc(index + 1) + end) + + self.scrollRectCenter:AddOnLeaveCenterAction(function(index) + self:_onLeaveCenterFunc(index + 1) + end) +end + +function ScrollRectCenter:_instantiateCell(gameObject) + if self:isDestroyed() then + ResourceManager:destroyPrefab(gameObject) + return + end + local prefabObject = UIPrefabObject:create() + prefabObject:initWithGameObject(gameObject) + prefabObject:initPrefabHelper() + prefabObject:genAllChildren() + self.baseObject:addChildList(prefabObject) + + local cell = prefabObject:addLuaComponent(self.initCallback()) + if self.initFinishCallback then + self.initFinishCallback(cell) + end + table.insert(self.cellList, cell) +end + +---- c#调用 cell刷新事件 +function ScrollRectCenter:_refreshFunc(index, cellIndex) + local cell = self.cellList[cellIndex] + if self.refreshCallback and cell then + cell:setIndex(index) + self.refreshCallback(index, cell) + end +end + +---- c#调用 cell选中事件 +function ScrollRectCenter:_setSelectedFunc(isSelected, cellIndex) + local cell = self.cellList[cellIndex] + if self.selectedCallback and cell then + self.selectedCallback(isSelected, cell) + end +end + +---- c#调用 cell处于中心事件 +function ScrollRectCenter:_onCenterFunc(index) + local cell = self.cellList[index] + if self.onCenterCallback and cell then + self.onCenterCallback(index, cell) + end + self.centerIndex = index +end + +---- c#调用 cell处于离开中心事件 +function ScrollRectCenter:_onLeaveCenterFunc(index) + local cell = self.cellList[index] + if self.onLeaveCenterCallback and cell then + self.onLeaveCenterCallback(index, cell) + end +end + +---- ********************************************************************* + +---- 添加init回调 (function(index) return cell end) +function ScrollRectCenter:addInitCallback(callback) + self.initCallback = callback +end + +function ScrollRectCenter:addInitFinishCallback(callback) + if self.cellList then + for k, v in ipairs(self.cellList) do + callback(v) + end + end + self.initFinishCallback = callback +end + +---- 添加refresh回调 (function(index, cell) end) +function ScrollRectCenter:addRefreshCallback(callback) + self.refreshCallback = callback +end + +---- 添加选中回调 (function(isSelected, cell) end) +function ScrollRectCenter:addSelectedCallback(callback) + self.selectedCallback = callback +end + +function ScrollRectCenter:addOnCenterCallback(callback) + self.onCenterCallback = callback +end + +function ScrollRectCenter:addOnLeaveCenterCallback(callback) + self.onLeaveCenterCallback = callback +end + +function ScrollRectCenter:addOnBeginDragCallback(callback) + self.scrollRectCenter:AddOnBeginDragAction(callback) +end + +function ScrollRectCenter:addOnEndDragCallback(callback) + self.scrollRectCenter:AddOnEndDragAction(callback) +end + +---- ********************************************************************* + +function ScrollRectCenter:setTotalCount(count) + self.totalCount = count + self.scrollRectCenter:SetTotalCount(count) +end + +function ScrollRectCenter:getTotalCount() + return self.totalCount or 0 +end + +---- 获取当前选中的index +function ScrollRectCenter:getSelectedIndex() + return self.scrollRectCenter:GetSelectedIndex() + 1 +end + +---- 设置当前选中的index +function ScrollRectCenter:setSelected(selectIndex) + self.scrollRectCenter:SetSelected(selectIndex - 1) +end + +---- 设置缩放的变化比率 该值越小缩放越大 +function ScrollRectCenter:setScaleRatio(ratio) + self.scrollRectCenter:SetScaleRatio(ratio) +end + +---- 重新装填scrollRect (center 当前居中的index) +function ScrollRectCenter:refillCells(center) + local center = center or 1 + self.scrollRectCenter:RefillCells(center - 1) +end + +---- 刷新全部cell +function ScrollRectCenter:refreshAll() + self.scrollRectCenter:RefreshAll() +end + +---- 朝左移动一个位置 +function ScrollRectCenter:moveLeft() + self.scrollRectCenter:MoveLeft() +end + +---- 朝右移动一个位置 +function ScrollRectCenter:moveRight() + self.scrollRectCenter:MoveRight() +end + +---- 移动到指定位置 +function ScrollRectCenter:moveTo(index, immediately) + if immediately == nil then + immediately = false + end + self.scrollRectCenter:MoveTo(index - 1, immediately) +end + +function ScrollRectCenter:getCenterIndex() + return self.centerIndex +end + +function ScrollRectCenter:getCell(index) + return self.cellList[index] +end + +function ScrollRectCenter:getCellCount() + return #self.cellList +end + +function ScrollRectCenter:ResetCenterIndex() + self.scrollRectCenter:ResetCenterIndex() +end + +return ScrollRectCenter diff --git a/lua/app/ui/common/scrollrect/scrollrect_center.lua.meta b/lua/app/ui/common/scrollrect/scrollrect_center.lua.meta new file mode 100644 index 00000000..b7b0cea4 --- /dev/null +++ b/lua/app/ui/common/scrollrect/scrollrect_center.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ad5b73a082138784b9df3803a6223f3c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/scrollrect/scrollrect_old.lua b/lua/app/ui/common/scrollrect/scrollrect_old.lua new file mode 100644 index 00000000..63439eb6 --- /dev/null +++ b/lua/app/ui/common/scrollrect/scrollrect_old.lua @@ -0,0 +1,176 @@ +local UIPrefabObject = require "app/bf/unity/uiprefab_object" +local ScrollRectOld = class("ScrollRect", LuaComponent) + +function ScrollRectOld:init() + self.cellList = {} --所有cell + + self.scrollRectOld = self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SCROLL_RECT_BASE_OLD) + self.scrollRectOld:AddOnInstantiateCellAction(function(gameObject) + self:_instantiateCell(gameObject) + end) + self.scrollRectOld:AddRefreshAction(function(index, cellIndex) self:_refreshFunc(index + 1, cellIndex) end) + self.scrollRectOld:AddSetSelectedAction(function(isSelected, index) self:_setSelectedFunc(isSelected, index) end) +end + +function ScrollRectOld:_instantiateCell(gameObject) + if self:isDestroyed() then + ResourceManager:destroyPrefab(gameObject) + return + end + local prefabObject = UIPrefabObject:create() + prefabObject:initWithGameObject(gameObject) + prefabObject:initPrefabHelper() + prefabObject:genAllChildren() + self.baseObject:addChildList(prefabObject) + + local cell = prefabObject:addLuaComponent(self.initCallback()) + if self.initFinishCallback then + self.initFinishCallback(cell) + end + table.insert(self.cellList, cell) +end + +---- c#调用 cell刷新事件 +function ScrollRectOld:_refreshFunc(index, cellIndex) + local cell = self.cellList[cellIndex] + if self.refreshCallback and cell then + cell:setIndex(index) + self.refreshCallback(index, cell) + end +end + +---- c#调用 cell选中事件 +function ScrollRectOld:_setSelectedFunc(isSelected, cellIndex) + local cell = self.cellList[cellIndex] + if self.selectedCallback and cell then + self.selectedCallback(isSelected, cell) + end +end + +---- 添加init回调 (function(index) return path, cellComp end) +function ScrollRectOld:addInitCallback(callback) + self.initCallback = callback +end + +---- 添加loadCell完成回调 +function ScrollRectOld:addInitFinishCallback(callback) + if self.cellList then + for k, v in ipairs(self.cellList) do + callback(v) + end + end + self.initFinishCallback = callback +end + +---- 添加refresh回调 (function(index, cell) end) +function ScrollRectOld:addRefreshCallback(callback) + self.refreshCallback = callback +end + +---- 添加选中回调 (function(isSelected, cell) end) +function ScrollRectOld:addSelectedCallback(callback) + self.selectedCallback = callback +end + +---- 设置scroll rect 总数量 +function ScrollRectOld:setTotalCount(count) + self.scrollRectOld:SetTotalCount(count) +end + +function ScrollRectOld:getTotalCount() + return self.scrollRectOld:GetTotalCount() +end + +---- 添加一个cell +function ScrollRectOld:addCell() + self.scrollRectOld:AddCell() +end + +---- 刷新所有 调用当前显示cells的refresh方法 +function ScrollRectOld:refreshAll() + self.scrollRectOld:RefreshAll() +end + +------- 立即 重新装填scrollRect (index为置顶cell的index即数据在数组中的index) +function ScrollRectOld:refillCells(index) + local index = index or 0 + self.scrollRectOld:RefillCells(index) +end +---- 立即 倒序重新装填scrollRect (offset = totalcount - 想要置底的cellindex) 只支持ContentConstraintCount == 1 +function ScrollRectOld:refillCellsFromEnd(index) + local index = index or 0 + self.scrollRectOld:RefillCellsFromEnd(index) +end + +---- 分帧 重新装填scrollRect (index为置顶cell的index即数据在数组中的index) +function ScrollRectOld:refillCellsForFrame(index, intervalFrame) + local index = index or 0 + local intervalFrame = intervalFrame or 3 + self.scrollRectOld:RefillCellsForFrame(intervalFrame, index) +end + +---- 分帧 倒序重新装填scrollRect (offset = totalcount - 想要置底的cellindex) 只支持ContentConstraintCount == 1 +function ScrollRectOld:refillCellsFromEndFrame(offset, intervalFrame) + local offset = offset or 0 + local intervalFrame = intervalFrame or 3 + self.scrollRectOld:RefiilCellsFromEndForFrame(intervalFrame, offset) +end + +---- 获取当前选中的index +function ScrollRectOld:getSelectedIndex() + return self.scrollRectOld:GetSelectedIndex() + 1 +end + +---- 设置当前选中的index +function ScrollRectOld:setSelected(selectIndex) + self.scrollRectOld:SetSelected(selectIndex - 1) +end + +---- remove 索引为index cell +function ScrollRectOld:removeCell(index, alignFlag) + if alignFlag == nil then + alignFlag = true + end + self.scrollRectOld:RemoveCell(index - 1, alignFlag) +end + +---- 插入一个cell +function ScrollRectOld:insertCell(index, alignFlag) + if alignFlag == nil then + alignFlag = true + end + self.scrollRectOld:InsertCell(index - 1, alignFlag) +end + +---- 滑动到索引为index的cell +function ScrollRectOld:scrollToCell(index, speed, alignFlag) + if alignFlag == nil then + alignFlag = true + end + self.scrollRectOld:ScrollToCell(index - 1, speed, alignFlag) +end + +---- 滑动到索引为index的cell 立即 可以在一开始直接调用也会refill +function ScrollRectOld:scrollToCellImmediately(index, alignFlag) + if alignFlag == nil then + alignFlag = true + end + self.scrollRectOld:ScrollToCellImmediately(index - 1, alignFlag) +end + +---- 清除scroll rect +function ScrollRectOld:clearCells() + self.scrollRectOld:ClearCells() +end + +function ScrollRectOld:getScrollRect() + return self.scrollRectOld +end + +function ScrollRectOld:isFullContent() + local scrollHeight = self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM).rect.height + local contentHeight = self.scrollRectOld.content.rect.height + return scrollHeight < contentHeight +end + +return ScrollRectOld \ No newline at end of file diff --git a/lua/app/ui/common/scrollrect/scrollrect_old.lua.meta b/lua/app/ui/common/scrollrect/scrollrect_old.lua.meta new file mode 100644 index 00000000..0bd9c3f2 --- /dev/null +++ b/lua/app/ui/common/scrollrect/scrollrect_old.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 6f686b27dbbcff841913716a5617808a +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/scrollrectcenter.meta b/lua/app/ui/common/scrollrectcenter.meta new file mode 100644 index 00000000..13528898 --- /dev/null +++ b/lua/app/ui/common/scrollrectcenter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: df9024c6309c8624d8eeb6523477baff +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/common/toast.lua b/lua/app/ui/common/toast.lua new file mode 100644 index 00000000..e254a227 --- /dev/null +++ b/lua/app/ui/common/toast.lua @@ -0,0 +1,150 @@ +local ToastManager = class("ToastManager", BaseModule) + +local TOAST_DURATION = 0.5 +local TOAST_DEFAULT_SIZE_Y = 54 +local TOAST_DEFAULT_FONT_SIZE = 30 +local TOAST_BATTLE_SIZE_Y = 124 +local TOAST_BATTLE_FONT_SIZE = 30 + +function ToastManager:ctor() + self.curIndex = 0 + self.toastList = {} +end + +function ToastManager:clear() + self.curIndex = 0 + self.toastList = {} +end + +function ToastManager:showToast(params) + if self.curIndex >= #self.toastList then + self.toastList = {} + self.curIndex = 0 + end + table.insert(self.toastList, params) + + if not self.toastSid then + self:_doImmediately() + self.toastSid = self:scheduleGlobal(function() + self:_doImmediately() + + if self.curIndex >= #self.toastList then + self:pauseScheduleGlobal(self.toastSid) + self.toastSidPaused = true + end + end, TOAST_DURATION) + else + if self.toastSidPaused then + self:_doImmediately() + end + self.toastSidPaused = false + self:resumeScheduleGlobal(self.toastSid) + end +end + +function ToastManager:_doImmediately() + local curIndex = self.curIndex + 1 + if not self.toastList[curIndex] then + return + end + self.curIndex = curIndex + local curParams = self.toastList[self.curIndex] + self:_showToast(curParams) +end + +function ToastManager:_showToast(params) + UIManager:getToast(function(prefabObject) + AudioManager:playEffect(AudioManager.EFFECT_ID.SFX_TOAST) + prefabObject._using = true + if prefabObject._toastSequence then + prefabObject._toastSequence:Kill() + prefabObject._toastSequence = nil + end + + local childMap = prefabObject:genAllChildren() + local content = childMap["toast.content"] + local icon = childMap["toast.icon"] + local gotTx = childMap["toast.got_tx"] + local numTx = childMap["toast.num_tx"] + local cellWidth = 46 + if type(params) == "table" and params.id then + content:setVisible(false) + gotTx:setVisible(true) + numTx:setVisible(true) + icon:setVisible(true) + + gotTx:setText(I18N:getGlobalText(I18N.GlobalConst.GET)) + local cfg = ConfigManager:getConfig("item")[params.id] + numTx:setText(params.str or "") + if params.type == GConst.REWARD_TYPE.ITEM then + icon:setSprite(GFunc.getIconRes(params.id)) + elseif params.type == GConst.REWARD_TYPE.EQUIP then + icon:setSprite(GFunc.getEquipIconRes(params.id)) + elseif params.type == GConst.REWARD_TYPE.JEWELRY then + icon:setSprite(GFunc.getJewelryIconRes(params.id)) + end + local meshProComp = numTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + local gotMeshProComp = gotTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + local contentWidth = meshProComp.preferredWidth + local gotWidth = gotMeshProComp.preferredWidth + gotTx:setAnchoredPositionX(-(contentWidth + cellWidth)*0.5) + icon:setAnchoredPositionX(-(contentWidth - gotWidth)*0.5) + numTx:setAnchoredPositionX((gotWidth + cellWidth)*0.5) + elseif type(params) == "table" and params.battleToast then + content:setVisible(true) + gotTx:setVisible(false) + numTx:setVisible(false) + icon:setVisible(false) + content:setText(params.content) + local meshProComp = content:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + meshProComp.fontSize = TOAST_BATTLE_FONT_SIZE + if meshProComp.preferredHeight > 100 then + prefabObject:setSizeDeltaY(meshProComp.preferredHeight + 22) + else + prefabObject:setSizeDeltaY(TOAST_BATTLE_SIZE_Y) + end + else + content:setVisible(true) + gotTx:setVisible(false) + numTx:setVisible(false) + icon:setVisible(false) + content:setText(params) + local meshProComp = content:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + meshProComp.fontSize = TOAST_DEFAULT_FONT_SIZE + if meshProComp.preferredHeight > 40 then + prefabObject:setSizeDeltaY(meshProComp.preferredHeight + 22) + else + prefabObject:setSizeDeltaY(TOAST_DEFAULT_SIZE_Y) + end + end + + prefabObject:setLocalPosition(0, 100, 0) + prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = true + local canvasGroup = prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS_GROUP) + canvasGroup.alpha = 1 + + prefabObject._toastSequence = prefabObject:createBindTweenSequence() + local moveTween = prefabObject:getTransform():DOLocalMove(CS.UnityEngine.Vector3(0, 180, 0), 0.6) + prefabObject._toastSequence:Append(moveTween) + local fadeOutTween = canvasGroup:DOFade(0, 0.5) + prefabObject._toastSequence:Append(fadeOutTween) + prefabObject._toastSequence:OnComplete(function() + prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + prefabObject._using = false + end) + end) +end + +function ToastManager:refreshText() + local list = UIManager:getAllToast() + if list == nil then + return + end + for _, toastObj in ipairs(list) do + local childMap = toastObj:genAllChildren() + childMap["toast.content"]:setText("") + childMap["toast.got_tx"]:setText("") + end +end + +return ToastManager \ No newline at end of file diff --git a/lua/app/ui/common/toast.lua.meta b/lua/app/ui/common/toast.lua.meta new file mode 100644 index 00000000..2b241317 --- /dev/null +++ b/lua/app/ui/common/toast.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 8e5c8500c4ea44d4fb4d287b6e7be708 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/currency_bar.meta b/lua/app/ui/currency_bar.meta new file mode 100644 index 00000000..1783e5bc --- /dev/null +++ b/lua/app/ui/currency_bar.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b318675aeb04a244fb3d0638d8dade28 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/currency_bar/cell.meta b/lua/app/ui/currency_bar/cell.meta new file mode 100644 index 00000000..a9e3f3d6 --- /dev/null +++ b/lua/app/ui/currency_bar/cell.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6469bc11023c9bc48be8d94ebd7b420f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/currency_bar/cell/currency_cell.lua b/lua/app/ui/currency_bar/cell/currency_cell.lua new file mode 100644 index 00000000..bd7f51a2 --- /dev/null +++ b/lua/app/ui/currency_bar/cell/currency_cell.lua @@ -0,0 +1,125 @@ +local BaseCell = require (GConst.TYPEOF_LUA_CLASS.BASE_CELL) +local ResourceCell = class("ResourceCell", BaseCell) + +function ResourceCell:ctor() + +end + +function ResourceCell:init() + local uiMap = self:getUIMap() + + self.resImg = uiMap['currency_cell.res_img'] + self.addImg = uiMap['currency_cell.add_img'] + self.numTx = uiMap['currency_cell.num_tx'] + self.timeTx = uiMap['currency_cell.time_tx'] + self.addTx = uiMap["currency_cell.add_tx"] +end + +function ResourceCell:show(itemId, hideAddImg) + hideAddImg = hideAddImg or false + self:hide() + if not itemId then + return + end + self.baseObject:setActive(true) + self.num = nil + + local obj = DataManager.BagData.ItemData:getItemById(itemId) + self.resImg:setSprite(obj:getIconRes()) + + self:unBindAll() + self:bind(obj, "isDirty", function(binder, value) + self:refreshTextRightNow() + end) + + self.baseObject:removeClickListener() + + self.timeTx:setVisible(false) + self.itemId = itemId + if itemId == GConst.ItemConst.ITEM_ID_GEM then + self.baseObject:addClickListener(function() + if ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SHOP, true) then + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = 5, storeIdx = 4}) + end + end) + self.addImg:setVisible(not hideAddImg) + elseif itemId == GConst.ItemConst.ITEM_ID_GOLD then + if ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SHOP, true) then + self.baseObject:addClickListener(function() + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = 5, storeIdx = 2}) + end) + end + self.addImg:setVisible(not hideAddImg) + else + self.addImg:setVisible(not hideAddImg) + end + self:refreshCurrencyAddTx(itemId, nil) +end + +function ResourceCell:refreshCurrencyAddTx(itemId, bigNum) + if self.itemId == itemId then + if bigNum then + local obj = DataManager.BagData.ItemData:getItemById(self.itemId) + if obj:getItemType() == 6 then + self.addTx:setText("+" .. tostring(BigNumOpt.bigNum2Num(bigNum))) + else + self.addTx:setText("+" .. BigNumOpt.bigNum2Str(bigNum)) + end + else + self.addTx:setText(nil) + end + end +end + +function ResourceCell:updateTime() + if self.itemId then + --local curTime = DataManager.BagData:getTimelyItemRecoveryTime(self.itemId) + --if curTime <= 0 then + -- self.timeTx:setText("") + --else + -- self.timeTx:setText(GFunc.getTimeStrWithMS(curTime)) + --end + end +end + +function ResourceCell:hide() + self.baseObject:setActive(false) +end + +function ResourceCell:setAnchoredPosition(x, y) + self.baseObject:setAnchoredPosition(x, y, 0) +end + +function ResourceCell:getAnchoredPosition() + return self.baseObject:getAnchoredPosition() +end + +function ResourceCell:refreshTextRightNow() + if not self.itemId then + return + end + local obj = DataManager.BagData.ItemData:getItemById(self.itemId) + local bigNum = obj:getBigNum() + if bigNum.value < 0 then + self.numTx:setText(0) + elseif obj:getItemType() == 6 then + self.numTx:setText(BigNumOpt.bigNum2Num(bigNum)) + else + self.numTx:setText(BigNumOpt.bigNum2Str(bigNum)) + end +end + +function ResourceCell:refreshText() + if self.numTx == nil then + return + end + local text = self.numTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).text + self.numTx:setText("") + self.numTx:setText(text) +end + +function ResourceCell:doScaleFlyImg() + GFunc.doScaleFlyImg(self.resImg) +end + +return ResourceCell \ No newline at end of file diff --git a/lua/app/ui/currency_bar/cell/currency_cell.lua.meta b/lua/app/ui/currency_bar/cell/currency_cell.lua.meta new file mode 100644 index 00000000..92d4b5f8 --- /dev/null +++ b/lua/app/ui/currency_bar/cell/currency_cell.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: dbdbc2381fdb43046bb874b87983dde8 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/currency_bar/currency_bar.lua b/lua/app/ui/currency_bar/currency_bar.lua new file mode 100644 index 00000000..b44781dc --- /dev/null +++ b/lua/app/ui/currency_bar/currency_bar.lua @@ -0,0 +1,178 @@ +local Component = require (GConst.TYPEOF_LUA_CLASS.LUA_COMPONENT) +local CurrencyBar = class("CurrencyBar", Component) + +CurrencyBar.cellWidth = 174 +CurrencyBar.cellHeight = 40 + +local OFFSET_X = 200 -- -27 +local OFFSET_Y = -22 + +function CurrencyBar:init() + self.currVisible = true + self.showType = nil + self.sid = nil + local uiMap = self.baseObject:genAllChildren() + self.currencyList = {} + for i = 1, 4 do + self.currencyList[i] = uiMap["currency_bar.currency_bg.cell_" .. i]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.CURRENCY_BAR_CELL) + self.currencyList[i].idx = i + end + + local titleBg = uiMap["currency_bar.currency_bg.title_bg"] + self.currencyBg = uiMap["currency_bar.currency_bg"] + + self.currencyFlyImgList = {} -- 表现用飞行imgs + + -- 刘海屏 + local notchHeight = SafeAreaManager:getNotchScreenHeight() + self.currencyBg:setAnchoredPositionY(-notchHeight - 36) + self.titleBg = titleBg + self:setVisible(false) +end + +function CurrencyBar:getFlyImgs() + if self.currencyFlyImgList and #self.currencyFlyImgList > 0 then + local obj = table.remove(self.currencyFlyImgList) + return obj + else + local uiMap = self.baseObject:genAllChildren() + local img = uiMap["currency_bar.fly_img"] + local gameObject = CS.UnityEngine.Object.Instantiate(img.gameObject) + local UIPrefabObject = require "app/bf/unity/uiprefab_object" + local obj = UIPrefabObject:create() + obj:initWithPrefab(nil, gameObject) + obj:initPrefabHelper() + obj:setParent(self.baseObject, false) + return obj + end +end + +function CurrencyBar:putbackImg(img) + if self.currencyFlyImgList then + table.insert(self.currencyFlyImgList, img) + end +end + +--------- param {UIManager.CURRENCY_TYPE.XXX, ...} ---------------------- +function CurrencyBar:show(params, showBg, hidAddImg) + self.params = params or {} + if not self.params.itemIds then + return + end + self.offsetX = params.offsetX or 0 + self.offsetY = params.offsetY or 0 + self:setVisible(true) + if showBg then + self.titleBg:setActive(true) + else + self.titleBg:setActive(false) + end + for i, cell in ipairs(self.currencyList) do + local itemId = self.params.itemIds[i] + if itemId then + cell:show(itemId, hidAddImg) + else + cell:hide() + end + end + self:showSort() + self:refreshTextRightNow() + + if not self.sid then + self:updateTime() + self.sid = self.baseObject:scheduleGlobal(function () + self:updateTime() + end, 1) + end +end + +function CurrencyBar:updateTime() + for i, cell in ipairs(self.currencyList) do + cell:updateTime() + end +end + +function CurrencyBar:showSort() + if self.showType and self.showType == self.params.showType then + return + end + local w, h = GFunc.getUIExpandScreenSize() + -- local offset = (w - 720) / 2 + local offset = 0 + if offset <= 0 then + offset = 0 + end + if self.params.showType == GConst.CURRENCY_TYPE.HORIZONTAL then + for i,v in ipairs(self.params.itemIds) do + self.currencyList[i]:setAnchoredPosition(OFFSET_X + (i - 1)*self.cellWidth + self.offsetX - offset, OFFSET_Y + self.offsetY) + end + else + for i,v in ipairs(self.params.itemIds) do + self.currencyList[i]:setAnchoredPosition(OFFSET_X + self.offsetX - offset, OFFSET_Y - (i - 1)*self.cellHeight + self.offsetY) + end + end +end + +function CurrencyBar:setVisible(visible) + if self.currVisible == visible then + return + end + self.currVisible = visible + if visible then + self.baseObject:setVisible(true) + else + self.baseObject:setVisible(false) + end +end + +function CurrencyBar:refreshText() + if self.currencyList == nil then + return + end + for i, cell in ipairs(self.currencyList) do + cell:refreshText() + end +end + +function CurrencyBar:refreshTextRightNow() + if self.currencyList == nil then + return + end + for i, cell in ipairs(self.currencyList) do + cell:refreshTextRightNow() + end +end + +function CurrencyBar:refreshCurrencyAddTx(itemId, bigNum) + if self.currencyList == nil then + return + end + for i, cell in ipairs(self.currencyList) do + cell:refreshCurrencyAddTx(itemId, bigNum) + end +end + +function CurrencyBar:showCurrencyAction(pos, imgNum) + imgNum = imgNum or 3 + + local rect = self.baseObject:getTransform().rect + for i = 1, 3 do + local id = self.params.itemIds[i] + if id and pos[id] then + for ii = 1, imgNum do + local img = self:getFlyImgs() + img:setSprite(GFunc.getIconRes(id)) + local endPos = self.currencyList[i]:getAnchoredPosition() + local posX = -rect.width*0.5 + endPos.x + local posY = rect.height*0.5 - 22 - 66 + GFunc.imgFly(img, pos[id][ii], {x = posX, y = posY}, function () + self.currencyList[i]:doScaleFlyImg() + self:putbackImg(img) + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CURRENCY_BAR_FLY_OVER) + end) + end + end + end +end + +return CurrencyBar \ No newline at end of file diff --git a/lua/app/ui/currency_bar/currency_bar.lua.meta b/lua/app/ui/currency_bar/currency_bar.lua.meta new file mode 100644 index 00000000..da9f2c2b --- /dev/null +++ b/lua/app/ui/currency_bar/currency_bar.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ecb3b3f8f97643447b66a107d339e85c +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/dungeon.meta b/lua/app/ui/dungeon.meta new file mode 100644 index 00000000..5cb822d9 --- /dev/null +++ b/lua/app/ui/dungeon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c6f2207298c099d44ad2591ab6026e59 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/fundchapter.meta b/lua/app/ui/fundchapter.meta new file mode 100644 index 00000000..38d9b181 --- /dev/null +++ b/lua/app/ui/fundchapter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a12e5138b57ce454c96d772e47fa97ae +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/game_setting.meta b/lua/app/ui/game_setting.meta new file mode 100644 index 00000000..ced8d6a8 --- /dev/null +++ b/lua/app/ui/game_setting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4a3d49199cf6aca4ab8153ca832e1bd8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm.meta b/lua/app/ui/gm.meta new file mode 100644 index 00000000..27a9b505 --- /dev/null +++ b/lua/app/ui/gm.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 525a0d6a133b3ec48b4bf01a9770e3e8 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/cell.meta b/lua/app/ui/gm/cell.meta new file mode 100644 index 00000000..68566394 --- /dev/null +++ b/lua/app/ui/gm/cell.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1bfe6e24837fc0c4aba1f9ebb5ac8d43 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/cell/dev_tool_cell.lua b/lua/app/ui/gm/cell/dev_tool_cell.lua new file mode 100644 index 00000000..92f93262 --- /dev/null +++ b/lua/app/ui/gm/cell/dev_tool_cell.lua @@ -0,0 +1,12 @@ +local DevToolCell = class("DevToolCell", BaseCell) + +function DevToolCell:refresh(data) + local uiMap = self:getUIMap() + if data.getTitle then + uiMap['cell_btn.text']:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = data.getTitle() + else + uiMap['cell_btn.text']:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = data.title or "" + end +end + +return DevToolCell diff --git a/lua/app/ui/gm/cell/dev_tool_cell.lua.meta b/lua/app/ui/gm/cell/dev_tool_cell.lua.meta new file mode 100644 index 00000000..27f8737b --- /dev/null +++ b/lua/app/ui/gm/cell/dev_tool_cell.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 5687931410280d94e8b06d3cb84fa4b9 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/cell/field_cell.lua b/lua/app/ui/gm/cell/field_cell.lua new file mode 100644 index 00000000..14a0b937 --- /dev/null +++ b/lua/app/ui/gm/cell/field_cell.lua @@ -0,0 +1,28 @@ +local FieldCell = class("FieldCell", BaseCell) + +function FieldCell:refresh(name, heroInfo, field, isString) + self.name = name + self.value = heroInfo[field] + self.field = field + self.isString = isString + + local uiMap = self:getUIMap() + + local inputField = uiMap["field_cell.InputField_1"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + inputField.text = self.value + + uiMap["field_cell.desc1"]:setText(name, uiMap["field_cell.desc1"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT)) + uiMap["field_cell.InputField_1"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD).text = self.value or GConst.EMPTY_STRING + uiMap["field_cell.InputField_1"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD).enabled = field ~= "ishero" +end + +function FieldCell:getKV() + local uiMap = self:getUIMap() + local value = uiMap["field_cell.InputField_1"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD).text + if not self.isString then + value = tonumber(value) + end + return self.field, value +end + +return FieldCell \ No newline at end of file diff --git a/lua/app/ui/gm/cell/field_cell.lua.meta b/lua/app/ui/gm/cell/field_cell.lua.meta new file mode 100644 index 00000000..42362e1c --- /dev/null +++ b/lua/app/ui/gm/cell/field_cell.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c35522befaeb44843a4f9596e3668f24 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/cell/hero_info_cell.lua b/lua/app/ui/gm/cell/hero_info_cell.lua new file mode 100644 index 00000000..12462baa --- /dev/null +++ b/lua/app/ui/gm/cell/hero_info_cell.lua @@ -0,0 +1,204 @@ +local HeroInfoCell = class("HeroInfoCell", BaseCell) + +local FIELD_CELL = "app/ui/gm/cell/field_cell" + +local HERO_INFO = { + -- as = 1, + heroid = 2, + level = 3, + ishero = 4, + collision_radius = 5, + group = 6, + atk = 7, + hp = 8, + def = 9, + spd = 10, + crit = 11, + crit_dmg = 12, + acc = 13, + resist = 14, + move = 15, + ultimate_skill_1 = 16, + ultimate_skill_2 = 17, + ultimate_skill_3 = 18, + passive_skill_1 = 19, + passive_skill_2 = 20, + move_factor = 21, + model_id = 22, + x = 23, + y = 24, + z = 25 +} + +local STRING_FIELD = { + [HERO_INFO.model_id] = true +} + +local HERO_DEFAULT_INFO_DESC = { + -- [HERO_INFO.as] = "觉醒等级", + [HERO_INFO.heroid] = "英雄id", + [HERO_INFO.ishero] = "是英雄", + [HERO_INFO.collision_radius] = "碰撞半径", + [HERO_INFO.group] = "属性阵营", + [HERO_INFO.atk] = "攻击", + [HERO_INFO.hp] = "血量", + [HERO_INFO.def] = "防御", + [HERO_INFO.spd] = "行动值", + [HERO_INFO.crit] = "暴击率", + [HERO_INFO.crit_dmg] = "暴击伤害", + [HERO_INFO.acc] = "减益命中", + [HERO_INFO.resist] = "减益抵抗", + [HERO_INFO.move] = "移动速度", + [HERO_INFO.ultimate_skill_1] = "主动技能1", + [HERO_INFO.ultimate_skill_2] = "主动技能2", + [HERO_INFO.ultimate_skill_3] = "主动技能3", + [HERO_INFO.passive_skill_1] = "被动技能1", + [HERO_INFO.passive_skill_2] = "被动技能2", + [HERO_INFO.move_factor] = "减速系数", + [HERO_INFO.level] = "等级", + [HERO_INFO.model_id] = "模型ID", + [HERO_INFO.x] = "初始坐标X", + [HERO_INFO.y] = "初始坐标Y", + [HERO_INFO.z] = "初始坐标Z" +} + +local HERO_FIELD_TRANS = { + ["ultimate_skill_1"] = "active_skill_1", + ["ultimate_skill_2"] = "active_skill_2", + ["ultimate_skill_3"] = "active_skill_3", +} + +function HeroInfoCell:refresh(heroInfo) + self.heroInfo = heroInfo or {} + self.filedList = {} + if not self.heroInfo.collision_radius and not self.heroInfo.hid then + local info = {} + for field, index in pairs(HERO_INFO) do + if heroInfo and heroInfo[field] then + info[field] = heroInfo[field] + else + if not STRING_FIELD[index] then + info[field] = 0 + else + info[field] = "" + end + end + end + self.heroInfo = info + end + + local uiMap = self:getUIMap() + uiMap["hero_info_cell.sync_btn.Text"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "配置表同步" + uiMap["hero_info_cell.clear_btn.Text"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "清除选定" + + uiMap["hero_info_cell.clear_btn"]:addClickListener(function() + self:refresh() + end) + + uiMap["hero_info_cell.sync_btn"]:addClickListener(function() + self:syncCfg() + end) + + if not self.heroCell then + self.heroCell = CellManager:addCellComp(uiMap["hero_info_cell.hero_cell"], GConst.TYPEOF_LUA_CLASS.HERO_CELL) + end + + if self.heroInfo.ishero == 1 then + self.heroCell:refreshWithHeroId(self.heroInfo.heroid, self.heroInfo.level, self.heroInfo.as or 0) + else + self.heroCell:refreshWithMonsterId(self.heroInfo.heroid) + end + if self.heroInfo.heroid <= 0 then + self.heroCell:refreshEmpty() + end + + uiMap["hero_info_cell.scrollrect"]:setActive(self.heroInfo.hid == nil) + uiMap["hero_info_cell.sync_btn"]:setActive(self.heroInfo.hid == nil) + if self.heroInfo.hid ~= nil then + return + end + + for k, v in pairs(self.heroInfo) do + table.insert(self.filedList, k) + end + table.sort(self.filedList, function(a, b) + return HERO_INFO[a] < HERO_INFO[b] + end) + + local y = math.min(50 * #self.filedList / 5) + uiMap["hero_info_cell.scrollrect"]:setSizeDeltaY(y) + if self.fieldScrollRect then + self.fieldScrollRect:updateAllCell() + return + end + + self.fieldScrollRect = uiMap["hero_info_cell.scrollrect"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) + self.fieldScrollRect:clearCells() + self.fieldScrollRect:setFadeArgs(0, 0.3) + self.fieldScrollRect:addInitCallback(function() + return FIELD_CELL + end) + self.fieldScrollRect:addRefreshCallback(function(index, cell) + local field = self.filedList[index] + cell:refresh(HERO_DEFAULT_INFO_DESC[HERO_INFO[field]], self.heroInfo, field, STRING_FIELD[HERO_INFO[field]]) + end) + self.fieldScrollRect:refillCells(#self.filedList) +end + +function HeroInfoCell:syncCfg() + self:getHeroInfo() + if self.heroInfo then + local cfg + if self.heroInfo.ishero == 1 then + cfg = ConfigManager:getConfig("hero")[self.heroInfo.heroid] + if cfg then + for k, value in pairs(self.heroInfo) do + local field = k + if HERO_FIELD_TRANS[field] then + field = HERO_FIELD_TRANS[field] + end + if cfg[field] then + self.heroInfo[k] = cfg[field] + end + end + end + else + cfg = ConfigManager:getConfig("monster")[self.heroInfo.heroid] + if cfg then + for k, value in pairs(self.heroInfo) do + local field = k + if field == "ultimate_skill_1" then + if cfg["act_skillid"] and cfg["act_skillid"][1] then + self.heroInfo[k] = cfg["act_skillid"][1] + end + elseif field == "ultimate_skill_2" then + if cfg["act_skillid"] and cfg["act_skillid"][2] then + self.heroInfo[k] = cfg["act_skillid"][3] + end + elseif field == "ultimate_skill_3" then + if cfg["act_skillid"] and cfg["act_skillid"][3] then + self.heroInfo[k] = cfg["act_skillid"][3] + end + else + if cfg[field] then + self.heroInfo[k] = cfg[field] + end + end + end + end + end + self:refresh(self.heroInfo) + end +end + +function HeroInfoCell:getHeroInfo() + if self.fieldScrollRect and not self.heroInfo.hid then + self.fieldScrollRect:getAllCellAndIndex(function(index, cell) + local k, v = cell:getKV() + self.heroInfo[k] = v + end) + end + return self.heroInfo +end + +return HeroInfoCell \ No newline at end of file diff --git a/lua/app/ui/gm/cell/hero_info_cell.lua.meta b/lua/app/ui/gm/cell/hero_info_cell.lua.meta new file mode 100644 index 00000000..3bada39a --- /dev/null +++ b/lua/app/ui/gm/cell/hero_info_cell.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: c4d5254039180fe49be36e5221262280 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/component.meta b/lua/app/ui/gm/component.meta new file mode 100644 index 00000000..6f802c63 --- /dev/null +++ b/lua/app/ui/gm/component.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ecd3b8c4f021b724f9d02419fb0ca2e3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/component/gm_floating_icon.lua b/lua/app/ui/gm/component/gm_floating_icon.lua new file mode 100644 index 00000000..64e62359 --- /dev/null +++ b/lua/app/ui/gm/component/gm_floating_icon.lua @@ -0,0 +1,90 @@ +local GMFloatingIcon = class("GMFloatingIcon", LuaComponent) + +function GMFloatingIcon:init() + self.baseObject:addDragListener(function(eventType, x, y) + self:onGrag(eventType, x, y) + end) + self:adsorbent(true) +end + +function GMFloatingIcon:show() + self.baseObject:setActive(true) + self:adsorbent(true) +end + +function GMFloatingIcon:hide() + if self.aniSequence then + self.aniSequence:Kill() + self.aniSequence = nil + end + self.baseObject:setActive(false) +end + +function GMFloatingIcon:adsorbent(immediately, delay) + local posX = self.baseObject:getTransform().anchoredPosition.x + local posY = self.baseObject:getTransform().anchoredPosition.y + local width = GConst.UI_SCREEN_WIDTH + local height = GConst.UI_SCREEN_HEIGHT + local distanceBottom = posY + height/2 + local distanceTop = height - distanceBottom + local distanceLeft = posX + width/2 + local distanceRight = width - distanceLeft + local min = math.min(distanceBottom, distanceTop, distanceLeft, distanceRight) + local x, y, duration = width/2, posY, min / 1000 -- 默认向右吸附 + if distanceLeft == min then -- 离左边最近 + x, y = -width/2, posY + elseif distanceTop == min then -- 离上边最近 + x, y = posX, height/2 + elseif distanceBottom == min then-- 离下边最近 + x, y = posX, -height/2 + end + if self.aniSequence then + self.aniSequence:Kill() + self.aniSequence = nil + end + if immediately then + self.baseObject:setAnchoredPosition(x, y) + else + self:playAdsorbentAni(x, y, duration, delay) + end +end + +function GMFloatingIcon:playAdsorbentAni(x, y, duration, delay) + self.aniSequence = DOTweenManager:createSeqWithIntId() + if delay then + self.aniSequence:AppendInterval(delay) + end + self.aniSequence:Append(self.baseObject:getTransform():DOAnchorPos(BF.Vector2(x, y), duration)) +end + +function GMFloatingIcon:onGrag(eventType, x, y) + if eventType == GConst.TOUCH_EVENT.DOWN then + if self.aniSequence then + self.aniSequence:Kill() + self.aniSequence = nil + end + elseif eventType == GConst.TOUCH_EVENT.DRAG then + local uiCamera = UIManager:getUICameraComponent() + local worldPosition = uiCamera:ScreenToWorldPoint(BF.Vector2(x, y)) + local convertPosition = UIManager:getMainCanvas():getTransform():InverseTransformPoint(worldPosition) + local x = convertPosition.x + local y = convertPosition.y + if x > GConst.UI_SCREEN_WIDTH/2 then + x = GConst.UI_SCREEN_WIDTH/2 + elseif x < -GConst.UI_SCREEN_WIDTH/2 then + x = -GConst.UI_SCREEN_WIDTH/2 + end + if y > GConst.UI_SCREEN_HEIGHT/2 then + y = GConst.UI_SCREEN_HEIGHT/2 + elseif y < -GConst.UI_SCREEN_HEIGHT/2 then + y = -GConst.UI_SCREEN_HEIGHT/2 + end + self.baseObject:setAnchoredPosition(x, y) + elseif eventType == GConst.TOUCH_EVENT.UP_INSIDE then + ModuleManager.DevToolManager:showDevListUI() + elseif eventType == GConst.TOUCH_EVENT.DRAG_CANCEL_UP then + self:adsorbent(false, 1) + end +end + +return GMFloatingIcon \ No newline at end of file diff --git a/lua/app/ui/gm/component/gm_floating_icon.lua.meta b/lua/app/ui/gm/component/gm_floating_icon.lua.meta new file mode 100644 index 00000000..5d25d9ff --- /dev/null +++ b/lua/app/ui/gm/component/gm_floating_icon.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: e1cf95f52035e3b48adb2a5ec301cbc0 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/demo_fight_setting_ui.lua b/lua/app/ui/gm/demo_fight_setting_ui.lua new file mode 100644 index 00000000..1286a8e7 --- /dev/null +++ b/lua/app/ui/gm/demo_fight_setting_ui.lua @@ -0,0 +1,114 @@ +local DemoFightSettingUI = class("DemoFightSettingUI", BaseUI) + +function DemoFightSettingUI:isFullScreen() + return false +end + +function DemoFightSettingUI:getPrefabPath() + return "assets/prefabs/ui/gm/demo_fight_setting_ui.prefab" +end + +function DemoFightSettingUI:onLoadRootComplete() + self._baseRootCanvas.sortingOrder = 30001 -- 比develop面板高一点 + + self.atkInfo, self.defInfo = ModuleManager.DevToolManager:getCacheDemoFightInfo() + self.atkInfo = self.atkInfo or {} + self.defInfo = self.defInfo or {} + self:_display() + self:_addListeners() +end + +function DemoFightSettingUI:_display() + local uiMap = self.root:genAllChildren() + uiMap["demo_fight_setting_ui.ok_btn.Text"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "开始战斗" + uiMap["demo_fight_setting_ui.def_hero_node.title"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "敌方阵容" + uiMap["demo_fight_setting_ui.atk_hero_node.title"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "我方阵容" + uiMap["demo_fight_setting_ui.ok_btn_2.Text"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "直接使用demofight配置战斗" + uiMap["demo_fight_setting_ui.clear_btn.Text"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "清除选定阵容" + + if not self.defCells then + self.defCells = {} + self.atkCells = {} + for i = 1, 5 do + self.defCells[i] = CellManager:addCellComp(uiMap["demo_fight_setting_ui.def_hero_node.Image_" .. i .. ".hero_cell"], GConst.TYPEOF_LUA_CLASS.HERO_CELL) + self.atkCells[i] = CellManager:addCellComp(uiMap["demo_fight_setting_ui.atk_hero_node.Image_" .. i .. ".hero_cell"], GConst.TYPEOF_LUA_CLASS.HERO_CELL) + end + end + + for i = 1, 5 do + if self.atkInfo[i] then + if self.atkInfo[i].ishero == 1 then + self.atkCells[i]:refreshWithHeroId(self.atkInfo[i].heroid, self.atkInfo[i].level, self.atkInfo[i].as or 0) + else + self.atkCells[i]:refreshWithMonsterId(self.atkInfo[i].heroid) + end + else + self.atkCells[i]:refreshEmpty() + end + + if self.defInfo[i] then + if self.defInfo[i].ishero == 1 then + self.defCells[i]:refreshWithHeroId(self.defInfo[i].heroid, self.defInfo[i].level, self.defInfo[i].as or 0) + else + self.defCells[i]:refreshWithMonsterId(self.defInfo[i].heroid) + end + else + self.defCells[i]:refreshEmpty() + end + end +end + +function DemoFightSettingUI:_addListeners() + local uiMap = self.root:genAllChildren() + uiMap["demo_fight_setting_ui.close_btn"]:addClickListener(function() self:closeUI() end) + uiMap["demo_fight_setting_ui.ok_btn"]:addClickListener(function() + ModuleManager.DevToolManager:cacheDemoFightInfo(self.atkInfo, self.defInfo) + if table.nums(self.atkInfo) <= 0 or table.nums(self.defInfo) <= 0 then + Logger.logError("对战双方阵容缺失") + return + end + ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.DEMO) + end) + + uiMap["demo_fight_setting_ui.ok_btn_2"]:addClickListener(function() + ModuleManager.DevToolManager:cacheDemoFightInfo(self.atkInfo, self.defInfo, true) + ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.DEMO) + end) + + uiMap["demo_fight_setting_ui.clear_btn"]:addClickListener(function() + self.atkInfo = {} + self.defInfo = {} + ModuleManager.DevToolManager:cacheDemoFightInfo(self.atkInfo, self.defInfo) + self:_display() + end) + + if self.defCells then + for i, cell in ipairs(self.defCells) do + cell:addClickListener(function() + UIManager:showUI("app/ui/gm/hero_choose_ui", {heroInfo = clone(self.defInfo[i]), callback = function(newInfo) + if newInfo.heroid <= 0 then + newInfo = nil + end + self.defInfo[i] = newInfo + self:_display() + end}) + end) + end + end + + if self.atkCells then + for i, cell in ipairs(self.atkCells) do + cell:addClickListener(function() + UIManager:showUI("app/ui/gm/hero_choose_ui", {heroInfo = clone(self.atkInfo[i]), callback = function(newInfo) + if newInfo.heroid <= 0 then + newInfo = nil + end + self.atkInfo[i] = newInfo + self:_display() + end}) + end) + end + end +end + +return DemoFightSettingUI \ No newline at end of file diff --git a/lua/app/ui/gm/demo_fight_setting_ui.lua.meta b/lua/app/ui/gm/demo_fight_setting_ui.lua.meta new file mode 100644 index 00000000..540e508e --- /dev/null +++ b/lua/app/ui/gm/demo_fight_setting_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3f9bf625a28cab649bba0be035eeba0b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/dev_tool_list_ui.lua b/lua/app/ui/gm/dev_tool_list_ui.lua new file mode 100644 index 00000000..bbec1f55 --- /dev/null +++ b/lua/app/ui/gm/dev_tool_list_ui.lua @@ -0,0 +1,171 @@ +local DevToolUI = class("DevToolUI", BaseUI) + +local TOOL_INFO_LIST = { + { + title = "GM工具", + func = function(self) + self:closeUI() + UIManager:showUI(UIManager.UI_PATH.GM_TOO_UI) + end + }, + { + title = "DEMO战斗", + func = function() + -- ModuleManager.BattleManager:playBattle(ModuleManager.BattleManager.BATTLE_TYPE.DEMO) + UIManager:showUI("app/ui/gm/demo_fight_setting_ui") + end + }, + { + title = "FPS", + func = function(self) + local comp = UIManager.uiRoot:getComponent(typeof(CS.BF.ShowFPS)) + if comp == nil then + comp = UIManager.uiRoot:addComponent(typeof(CS.BF.ShowFPS)) + else + comp.enabled = not comp.enabled + end + end + }, + { + getTitle = function() + return math.tointeger(CS.UnityEngine.Time.timeScale) .. "倍速" + end, + func = function(self) + local timeScale = CS.UnityEngine.Time.timeScale + if timeScale == 1 then + timeScale = 2 + elseif timeScale == 2 then + timeScale = 5 + elseif timeScale == 5 then + timeScale = 10 + else + timeScale = 1 + end + CS.UnityEngine.Time.timeScale = timeScale + self.scrollRect:refreshAll() + end + }, + { + title = "调整灯光", + func = function(self) + self:closeUI() + ModuleManager.DevToolManager:showLightSetting() + end + }, +} + +function DevToolUI:ctor() + +end + +function DevToolUI:isFullScreen() + return false +end + +function DevToolUI:getPrefabPath() + return "assets/prefabs/ui/gm/dev_tool.prefab" +end + +function DevToolUI:onLoadRootComplete() + self._baseRootCanvas.sortingOrder = 30000 + self.uiMap = self.root:genAllChildren() + self.uiMap["dev_tool.floating_btn"]:addClickListener(function() + local showFloatingIcon = LocalData:getGMShowFloatingIcon() + if showFloatingIcon then + LocalData:setGMShowFloatingIcon(0) + else + LocalData:setGMShowFloatingIcon(1) + end + ModuleManager.DevToolManager:showOrHideFloatingIcon() + self:refreshFloatingBtn() + end) + + self:scheduleGlobal(function() + self:updateTime() + end, 0) +end + +function DevToolUI:onRefresh() + self:initScrollRect() + self:initGameSetting() + self:refreshFloatingBtn() + self:updateTime() +end + +function DevToolUI:initScrollRect() + local scrollRect = self.uiMap['dev_tool.scroll_rect'] + self.scrollRect = scrollRect:getLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) + self.scrollRect:clearCells() + self.scrollRect:setFadeArgs(0, 0.3) + self.scrollRect:addInitCallback(function() + return "app/ui/gm/cell/dev_tool_cell" + end) + self.scrollRect:addRefreshCallback(function(index, cell) + self:initScrollRectCell(index, cell) + end) + self.scrollRect:refillCells(#TOOL_INFO_LIST) + + self.uiMap['dev_tool.close_btn']:addClickListener(function() self:closeUI() end) +end + +function DevToolUI:initScrollRectCell(index, cell) + local data = TOOL_INFO_LIST[index] + cell:addClickListener(function () + if data.func then + data.func(self) + end + end) + cell:refresh(data) +end + +function DevToolUI:initGameSetting() + self.uiMap["dev_tool.toggle_skip_tutorial.check_tx"]:setText("跳过引导", self.uiMap["dev_tool.toggle_skip_tutorial.check_tx"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT)) + self.skipTutorial = LocalData:getSkipTutorial() + if self.skipTutorial then + self.uiMap["dev_tool.toggle_skip_tutorial.check_img"]:setLocalScale(1, 1, 1) + else + self.uiMap["dev_tool.toggle_skip_tutorial.check_img"]:setLocalScale(0, 0, 0) + end + self.uiMap["dev_tool.toggle_skip_tutorial"]:addClickListener(function() + self.skipTutorial = not self.skipTutorial + local scale = self.skipTutorial and 1 or 0 + self.uiMap["dev_tool.toggle_skip_tutorial.check_img"]:setLocalScale(scale, scale, scale) + LocalData:setSkipTutorial(scale) + end) + + self.uiMap["dev_tool.toggle_skip_stage.check_tx"]:setText("跳过关卡战斗", self.uiMap["dev_tool.toggle_skip_stage.check_tx"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT)) + self.skipStageBattle = LocalData:getSkipStageBattle() + if self.skipStageBattle then + self.uiMap["dev_tool.toggle_skip_stage.check_img"]:setLocalScale(1, 1, 1) + else + self.uiMap["dev_tool.toggle_skip_stage.check_img"]:setLocalScale(0, 0, 0) + end + self.uiMap["dev_tool.toggle_skip_stage"]:addClickListener(function() + self.skipStageBattle = not self.skipStageBattle + local scale = self.skipStageBattle and 1 or 0 + self.uiMap["dev_tool.toggle_skip_stage.check_img"]:setLocalScale(scale, scale, scale) + LocalData:setSkipStageBattle(scale) + end) +end + +function DevToolUI:updateTime() + local time = Time:getServerTime() + if self.serverTime == time then + return + end + self.serverTime = time + local now = os.date('!*t', self.serverTime) + local str = string.format("%s-%s-%s %02d:%02d:%02d", now.year, now.month, now.day, now.hour, now.min, now.sec) + self.uiMap["dev_tool.time"]:setText("当前服务器时间:" .. str, self.uiMap["dev_tool.time"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT)) +end + +function DevToolUI:refreshFloatingBtn() + local showFloatingIcon = LocalData:getGMShowFloatingIcon() + if showFloatingIcon then + self.uiMap["dev_tool.floating_btn.text"]:setText("隐藏悬浮窗", self.uiMap["dev_tool.floating_btn.text"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT)) + else + self.uiMap["dev_tool.floating_btn.text"]:setText("显示悬浮窗", self.uiMap["dev_tool.floating_btn.text"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT)) + end +end + +return DevToolUI \ No newline at end of file diff --git a/lua/app/ui/gm/dev_tool_list_ui.lua.meta b/lua/app/ui/gm/dev_tool_list_ui.lua.meta new file mode 100644 index 00000000..323185c8 --- /dev/null +++ b/lua/app/ui/gm/dev_tool_list_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 80aa0dadbb94e9745bc71ac866fee501 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/gm_tool_ui.lua b/lua/app/ui/gm/gm_tool_ui.lua new file mode 100644 index 00000000..eb28a91c --- /dev/null +++ b/lua/app/ui/gm/gm_tool_ui.lua @@ -0,0 +1,193 @@ +local DevToolManager = require "app/module/gm/dev_tool_manager" +local GMConst = require "app/module/gm/gm_const" +-- local ItemConst = require "app/module/item/item_const" +local GMToolUI = class("GMToolUI",BaseUI) + +function GMToolUI:ctor() +end + +function GMToolUI:getPrefabPath() + return "assets/prefabs/ui/gm/gm_tool_ui.prefab" +end + +function GMToolUI:onLoadRootComplete() + self.sid = self:scheduleGlobal(function() + self:updateTime() + end, 1) + self:updateTime() +end + +function GMToolUI:onRefresh() + self.uiMap = self.root:genAllChildren() + + local titleTx = self.uiMap['gm_tool_ui.title'] + local okBtn = self.uiMap['gm_tool_ui.ok_btn'] + local okBtnText = self.uiMap['gm_tool_ui.ok_btn.text'] + local helpBtn = self.uiMap['gm_tool_ui.help_btn'] + local inputField = self.uiMap['gm_tool_ui.InputField'] + local inputFieldText = self.uiMap['gm_tool_ui.InputField.text'] + local scrollView = self.uiMap['gm_tool_ui.ScrollView'] + local textTip = self.uiMap['gm_tool_ui.text_tip'] + local speedUpBtn = self.uiMap["gm_tool_ui.speed_up_btn"] + local attrBtn = self.uiMap["gm_tool_ui.attr_btn"] + local attrBtnTx = self.uiMap["gm_tool_ui.attr_btn.text"] + local heroListNode = self.uiMap["gm_tool_ui.hero_list_node"] + self.heroListNode = heroListNode + + self.uiMap['gm_tool_ui.close_btn']:addClickListener(function() self:closeUI() end) + self.scrollRect = scrollView:getLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) + self.scrollRect:clearCells() + self.scrollRect:setFadeArgs(0, 0.3) + self.scrollRect:addInitCallback(function() + return "app/ui/gm/cell/dev_tool_cell" + end) + self.scrollRect:addRefreshCallback(function(index, cell) + self:initScrollRectCell(index, cell) + end) + self.scrollRect:refillCells(#GMConst.GM_INFO) + + self.textTip = textTip + self.inputField = inputField + titleTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "GM面板" + okBtnText:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "确定" + attrBtnTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "英雄属性" + + + okBtn:addClickListener(function() + local gmCommand = self.inputField:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD).text + self:sendMsg(gmCommand) + self.inputField:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD).text = "" + end) + + speedUpBtn:addClickListener(function() + local timeScale = CS.UnityEngine.Time.timeScale + if timeScale == 1 then + timeScale = 2 + elseif timeScale == 2 then + timeScale = 5 + elseif timeScale == 5 then + timeScale = 10 + else + timeScale = 1 + end + CS.UnityEngine.Time.timeScale = timeScale + end) + + attrBtn:addClickListener(function() + local allAttr = DataManager.HeroData:getMainHeroEntity():getAllAttr() + local allAttr1 = {} + local cfg = ConfigManager:getConfig("attr") + for i = 1, #cfg do + allAttr1[i] = {unit = allAttr[i].unit, value = allAttr[i].value} + end + Logger.logHighlight("============================ hero attr") + Logger.printTable(allAttr1) + Logger.logHighlight("============================ hero attr") + local str = json.encode(allAttr1) + ModuleManager.TipsManager:showHelpTips({desc = str}) + end) + + self.uiMap["gm_tool_ui.fps_btn"]:addClickListener(function() + local comp = UIManager.uiRoot:getComponent(typeof(CS.BF.ShowFPS)) + if comp == nil then + comp = UIManager.uiRoot:addComponent(typeof(CS.BF.ShowFPS)) + else + comp.enabled = not comp.enabled + end + end) + + heroListNode:addClickListener(function() + heroListNode:setActive(false) + end) +end + +function GMToolUI:initScrollRectCell(index, cell) + local data = GMConst.GM_INFO[index] + cell:addClickListener(function () + self.textTip:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = data.desc + self.inputField:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD).text = string.format("%s ", data.type) + end) + cell:refresh(data) +end + +function GMToolUI:sendMsg(gmCommand) + if gmCommand == "" then + GFunc.showToast("GM命令不能为空") + else + local args = {} + args.args = string.split(gmCommand, " ") + if args.args[1] == "time" then -- 特殊处理 + local args1 = {} + args1.args = {} + args1.args[1] = args.args[1] + args1.args[2] = args.args[2] .. " " .. args.args[3] + ModuleManager.DevToolManager:dealGM(args1) + else + ModuleManager.DevToolManager:dealGM(args) + end + end +end + +function GMToolUI:initHeroScrollRect(index, cell) + self.heroList = {} + -- local HeroConst = require "app/module/hero/hero_const" + for hid, entity in pairs(DataManager.HeroData:getAllHero()) do + local star = entity:getStar() + local qlt = entity:getQuality() + local group = entity:getGroup() + local lv = entity:getLv() + local heroId = entity:getId() + local sort = 0 + sort = heroId + group*10000000 + qlt*100000000 + star*1000000000 + lv*10000000000 + -- if self.filterType == HeroConst.FILTER_TYPE.ALL then + -- sort = heroId + group*10000000 + qlt*100000000 + star*1000000000 + lv*10000000000 + -- elseif self.filterType == HeroConst.FILTER_TYPE.STAR then + -- sort = heroId + group*10000000 + qlt*100000000 + lv*1000000000 + star*100000000000 + -- elseif self.filterType == HeroConst.FILTER_TYPE.LV then + -- sort = heroId + group*10000000 + qlt*100000000 + star*1000000000 + lv*10000000000 + -- elseif self.filterType == HeroConst.FILTER_TYPE.QLT then + -- sort = heroId + group*10000000 + star*100000000 + lv*1000000000 + qlt*100000000000 + -- elseif self.filterType == HeroConst.FILTER_TYPE.GROUP then + -- sort = heroId + qlt*10000000 + star*100000000 + lv*1000000000 + group*100000000000 + -- elseif self.filterType == HeroConst.FILTER_TYPE.USED then + -- end + table.insert(self.heroList, { + heroData = entity, + sort = sort + }) + end + table.sort(self.heroList, function (a, b) + return a.sort > b.sort + end) + if self.heroScrollRect then + self.heroScrollRect:refillCells(#self.heroList) + return + end + local uiMap = self.root:genAllChildren() + self.heroScrollRect = uiMap["gm_tool_ui.hero_list_node.ScrollView (1)"]:getLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) + self.heroScrollRect:clearCells() + self.heroScrollRect:setFadeArgs(0, 0.3) + self.heroScrollRect:addInitCallback(function() + return GConst.TYPEOF_LUA_CLASS.HERO_CELL + end) + self.heroScrollRect:addRefreshCallback(function(index, cell) + self:refreshHeroCell(cell, self.heroList[index].heroData) + end) + self.heroScrollRect:refillCells(#self.heroList) +end + +function GMToolUI:refreshHeroCell(cell, heroData) + cell:refresh(heroData) + cell:addClickListener(function() + self.textTip:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "英雄升级 (会清空当前经验) \n arg1:英雄唯一ID arg2 目标等级" + self.inputField:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD).text = string.format("%s %s ", "hero_upgrade", heroData:getHid()) + self.heroListNode:setActive(false) + end) +end + +function GMToolUI:updateTime() + local uiMap = self.root:genAllChildren() + uiMap["gm_tool_ui.time"]:setText(Time:formatTimeYMDHMS(Time:getServerTime())) +end + +return GMToolUI diff --git a/lua/app/ui/gm/gm_tool_ui.lua.meta b/lua/app/ui/gm/gm_tool_ui.lua.meta new file mode 100644 index 00000000..6e6ce2ad --- /dev/null +++ b/lua/app/ui/gm/gm_tool_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 3de890764345b7c48b83b6c876c83656 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/hero_choose_ui.lua b/lua/app/ui/gm/hero_choose_ui.lua new file mode 100644 index 00000000..39630b2c --- /dev/null +++ b/lua/app/ui/gm/hero_choose_ui.lua @@ -0,0 +1,204 @@ +local HeroChooseUI = class("HeroChooseUI", BaseUI) + +local HERO_INFO_CELL = "app/ui/gm/cell/hero_info_cell" + +local TYPE = { + HERO = 1, + MONSTER = 2, + HERO_BAG = 3 +} + +function HeroChooseUI:isFullScreen() + return false +end + +function HeroChooseUI:getPrefabPath() + return "assets/prefabs/ui/gm/hero_choose_ui.prefab" +end + +function HeroChooseUI:ctor(params) + self.heroInfo = params.heroInfo + self.callback = params.callback +end + +function HeroChooseUI:onLoadRootComplete() + self._baseRootCanvas.sortingOrder = 30002 -- 比develop面板高一点 + self:_display() + self:_addListeners() +end + +function HeroChooseUI:_display() + local uiMap = self.root:genAllChildren() + uiMap["hero_choose_ui.close_btn (1).Text"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "确认" + + self:refreshCurHero(self.heroInfo) + self:changeType(TYPE.HERO) +end + +function HeroChooseUI:_addListeners() + local uiMap = self.root:genAllChildren() + uiMap["hero_choose_ui.close_btn"]:addClickListener(function() + self:closeUI() + end) + + uiMap["hero_choose_ui.ok_btn"]:addClickListener(function() + self:closeUI() + if self.callback then + local heroInfo + if self.infoCell and self.infoCell:getHeroInfo() then + heroInfo = clone(self.infoCell:getHeroInfo()) + end + self.callback(heroInfo) + end + end) + + uiMap["hero_choose_ui.scroll_rect.hero"]:addClickListener(function() + self:changeType(TYPE.HERO) + end) + + uiMap["hero_choose_ui.scroll_rect.monster"]:addClickListener(function() + self:changeType(TYPE.MONSTER) + end) + + uiMap["hero_choose_ui.scroll_rect.hero_bag"]:addClickListener(function() + self:changeType(TYPE.HERO_BAG) + end) +end + +function HeroChooseUI:_refreshHeroScroll() + if not self.heroList then + self.heroList = {} + for id, info in pairs(ConfigManager:getConfig("hero")) do + table.insert(self.heroList, {id = id, cfg = info}) + end + table.sort(self.heroList, function(a, b) + if a.cfg.qlt == b.cfg.qlt then + return a.id > b.id + else + return a.cfg.qlt > b.cfg.qlt + end + end) + + self.monsterList = {} + for id, info in pairs(ConfigManager:getConfig("monster")) do + table.insert(self.monsterList, {id = id, cfg = info}) + end + table.sort(self.monsterList, function(a, b) + if a.cfg.qlt == b.cfg.qlt then + return a.id > b.id + else + return a.cfg.qlt > b.cfg.qlt + end + end) + + self.heroBagList = {} + for hid, entity in pairs(DataManager.HeroData:getAllHero()) do + table.insert(self.heroBagList, entity) + end + table.sort(self.heroBagList, function(a, b) + if a:getQuality() == b:getQuality() then + return a:getHid() > b:getHid() + else + return a:getQuality() > b:getQuality() + end + end) + end + + if self.curPage == TYPE.HERO then + self.curList = self.heroList + elseif self.curPage == TYPE.MONSTER then + self.curList = self.monsterList + else + self.curList = self.heroBagList + end + + if self.scrollRect then + self.scrollRect:clearCells() + self.scrollRect:refillCells(#self.curList) + return + end + + local uiMap = self.root:genAllChildren() + local scrollView = uiMap["hero_choose_ui.scroll_rect"] + self.scrollRect = scrollView:getLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) + self.scrollRect:clearCells() + self.scrollRect:setFadeArgs(0, 0.3) + self.scrollRect:addInitCallback(function() + return GConst.TYPEOF_LUA_CLASS.HERO_CELL + end) + self.scrollRect:addRefreshCallback(function(index, cell) + if self.curPage ~= TYPE.MONSTER then + if self.curPage == TYPE.HERO_BAG then + cell:refreshWithHeroId(self.curList[index]:getId(), self.curList[index]:getLv(), self.curList[index]:getAscended()) + else + cell:refreshWithHeroId(self.curList[index].id, 1, 0) + end + else + cell:refreshWithMonsterId(self.curList[index].id) + end + cell:addClickListener(function() + local params + + if self.curPage == TYPE.HERO_BAG then + params = {} + local entity = self.curList[index] + params.ishero = 1 + params.heroid = entity:getId() + params.level = entity:getLv() + params.as = entity:getAscended() + params.hid = entity:getHid() + else + if self.heroInfo and self.heroInfo.heroid == self.curList[index].id then + params = clone(self.heroInfo) + else + params = {heroid = self.curList[index].id, level= 1, as = 0} + end + + params.as = 0 + params.ishero = self.curPage == TYPE.MONSTER and 0 or 1 + params.hid = nil + end + self:refreshCurHero(params) + end) + end) + self.scrollRect:refillCells(#self.curList) +end + +function HeroChooseUI:refreshCurHero(heroInfo) + if not self.infoCell then + local uiMap = self.root:genAllChildren() + self.infoCell = CellManager:addCellComp(uiMap["hero_choose_ui.hero_node.hero_info_cell"], HERO_INFO_CELL) + end + self.infoCell:refresh(heroInfo) +end + +function HeroChooseUI:changeType(type) + if self.curPage == type then + return + end + self.curPage = type + local uiMap = self.root:genAllChildren() + local heroBtn = uiMap["hero_choose_ui.scroll_rect.hero"] + local heroBtnText = uiMap["hero_choose_ui.scroll_rect.hero.Text"] + + local monsterBtn = uiMap["hero_choose_ui.scroll_rect.monster"] + local monsterBtntext = uiMap["hero_choose_ui.scroll_rect.monster.Text"] + + local heroBagBtn = uiMap["hero_choose_ui.scroll_rect.hero_bag"] + local heroBagBtnText = uiMap["hero_choose_ui.scroll_rect.hero_bag.Text"] + + local normalSprite = "common_menu_3" + local highlightSprite = "common_menu_1" + + heroBtn:setSprite(GConst.ATLAS_PATH.COMMON, self.curPage == TYPE.HERO and highlightSprite or normalSprite) + monsterBtn:setSprite(GConst.ATLAS_PATH.COMMON, self.curPage == TYPE.MONSTER and highlightSprite or normalSprite) + heroBagBtn:setSprite(GConst.ATLAS_PATH.COMMON, self.curPage == TYPE.HERO_BAG and highlightSprite or normalSprite) + + heroBtnText:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "hero" + monsterBtntext:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "monster" + heroBagBtnText:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT).text = "英雄背包" + + self:_refreshHeroScroll() +end + +return HeroChooseUI \ No newline at end of file diff --git a/lua/app/ui/gm/hero_choose_ui.lua.meta b/lua/app/ui/gm/hero_choose_ui.lua.meta new file mode 100644 index 00000000..451c8e17 --- /dev/null +++ b/lua/app/ui/gm/hero_choose_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: ddff352fd40a0c042b251be91ca31e8f +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/gm/light_setting_ui.lua b/lua/app/ui/gm/light_setting_ui.lua new file mode 100644 index 00000000..1abbe192 --- /dev/null +++ b/lua/app/ui/gm/light_setting_ui.lua @@ -0,0 +1,411 @@ +local LightSettingUI = class("LightSettingUi", BaseUI) + +function LightSettingUI:ctor() +end + +function LightSettingUI:getPrefabPath() + return "assets/prefabs/ui/gm/gm_light_setting.prefab" +end + +function LightSettingUI:isFullScreen() + return false +end + +function LightSettingUI:onClose() + self.dropList.onValueChanged:RemoveAllListeners() + self.colorInputField.onEndEdit:RemoveAllListeners() + self.intensityInputField.onEndEdit:RemoveAllListeners() + self.shadowStrengthSlider.onValueChanged:RemoveAllListeners() + self.shadowStrengthInputField.onEndEdit:RemoveAllListeners() + self.shadowResolutionDropList.onValueChanged:RemoveAllListeners() + self.shadowBiasSlider.onValueChanged:RemoveAllListeners() + self.shadowBiasInputField.onEndEdit:RemoveAllListeners() + self.shadowNormalBiasSlider.onValueChanged:RemoveAllListeners() + self.shadowNormalBiasInputField.onEndEdit:RemoveAllListeners() + self.shadowNearPlaneSlider.onValueChanged:RemoveAllListeners() + self.shadowNearPlaneInputField.onEndEdit:RemoveAllListeners() + self.shadowProjectionDropList.onValueChanged:RemoveAllListeners() + self.shadowDistanceInputField.onEndEdit:RemoveAllListeners() + self.shadowNearPlaneOffsetInputField.onEndEdit:RemoveAllListeners() + self.shadowCascadesDropList.onValueChanged:RemoveAllListeners() + self.shadowmaskModeDropList.onValueChanged:RemoveAllListeners() + self.shadowsDropList.onValueChanged:RemoveAllListeners() +end + +function LightSettingUI:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + uiMap["gm_light_setting.close_btn"]:addClickListener(function() + self:closeUI() + end) + + self.dropList = uiMap["gm_light_setting.light_list"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_DROP_DOWN) + self.dropList.onValueChanged:AddListener(function(index) + if self.lights == nil then + return + end + self.currLight = self.lights[index] + self:refreshLight() + end) + self.dropList:ClearOptions() + + self.mask = uiMap["gm_light_setting.mask"] + + -- 颜色 + self.colorInputField = uiMap["gm_light_setting.input_field_1"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.colorImage = uiMap["gm_light_setting.image_1"] + self.colorAlphaSlider = uiMap["gm_light_setting.image_1.alpha_slider"] + self.colorInputField.onEndEdit:AddListener(function (value) + if self.currLight == nil then + return + end + if string.byte(value) ~= 35 then + value = "#" .. value + end + local color = CS.BF.Utils.ParseHtmlString(value) + if color == nil then + return + end + self.currLight.color = color + self:refreshLight() + end) + + -- 强度 + self.intensityInputField = uiMap["gm_light_setting.input_field_2"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.intensityInputField.onEndEdit:AddListener(function (value) + if self.currLight == nil then + return + end + local intensity = tonumber(value) + if intensity == nil then + return + end + self.currLight.intensity = intensity + self:refreshLight() + end) + + -- 阴影 + self.shadowStrengthSlider = uiMap["gm_light_setting.slider_5"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_SLIDER) + self.shadowStrengthSlider.onValueChanged:AddListener(function (value) + if self.currLight == nil then + return + end + self.currLight.shadowStrength = value + self:refreshLight() + end) + self.shadowStrengthInputField = uiMap["gm_light_setting.input_field_5"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.shadowStrengthInputField.onEndEdit:AddListener(function (value) + if self.currLight == nil then + return + end + local strength = tonumber(value) + if strength == nil then + return + end + self.currLight.shadowStrength = strength + self:refreshLight() + end) + + self.shadowResolutionDropList = uiMap["gm_light_setting.resolution_list_6"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_DROP_DOWN) + self.shadowResolutionDropList:ClearOptions() + local optionList = {} + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Use Quality Settings")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Low Resolution")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Medium Resolution")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("High Resolution")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Very High Resolution")) + self.shadowResolutionDropList:AddOptions(optionList) + self.shadowResolutionDropList.onValueChanged:AddListener(function(index) + if self.currLight == nil then + return + end + if index == 0 then + self.currLight.shadowResolution = CS.UnityEngine.Rendering.LightShadowResolution.FromQualitySettings + elseif index == 1 then + self.currLight.shadowResolution = CS.UnityEngine.Rendering.LightShadowResolution.Low + elseif index == 2 then + self.currLight.shadowResolution = CS.UnityEngine.Rendering.LightShadowResolution.Medium + elseif index == 3 then + self.currLight.shadowResolution = CS.UnityEngine.Rendering.LightShadowResolution.High + elseif index == 4 then + self.currLight.shadowResolution = CS.UnityEngine.Rendering.LightShadowResolution.VeryHigh + else + self.currLight.shadowResolution = CS.UnityEngine.Rendering.LightShadowResolution.FromQualitySettings + end + self:refreshLight() + end) + self.shadowResolutionDropList:SetValueWithoutNotify(0) + + self.shadowBiasSlider = uiMap["gm_light_setting.slider_7"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_SLIDER) + self.shadowBiasSlider.onValueChanged:AddListener(function (value) + if self.currLight == nil then + return + end + self.currLight.shadowBias = value + self:refreshLight() + end) + self.shadowBiasInputField = uiMap["gm_light_setting.input_field_7"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.shadowBiasInputField.onEndEdit:AddListener(function (value) + if self.currLight == nil then + return + end + local shadowBias = tonumber(value) + if shadowBias == nil then + return + end + self.currLight.shadowBias = shadowBias + self:refreshLight() + end) + + self.shadowNormalBiasSlider = uiMap["gm_light_setting.slider_8"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_SLIDER) + self.shadowNormalBiasSlider.onValueChanged:AddListener(function (value) + if self.currLight == nil then + return + end + self.currLight.shadowNormalBias = value + self:refreshLight() + end) + self.shadowNormalBiasInputField = uiMap["gm_light_setting.input_field_8"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.shadowNormalBiasInputField.onEndEdit:AddListener(function (value) + if self.currLight == nil then + return + end + local shadowNormalBias = tonumber(value) + if shadowNormalBias == nil then + return + end + self.currLight.shadowNormalBias = shadowNormalBias + self:refreshLight() + end) + + self.shadowNearPlaneSlider = uiMap["gm_light_setting.slider_9"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_SLIDER) + self.shadowNearPlaneSlider.onValueChanged:AddListener(function (value) + if self.currLight == nil then + return + end + self.currLight.shadowNearPlane = value + self:refreshLight() + end) + self.shadowNearPlaneInputField = uiMap["gm_light_setting.input_field_9"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.shadowNearPlaneInputField.onEndEdit:AddListener(function (value) + if self.currLight == nil then + return + end + local shadowNearPlane = tonumber(value) + if shadowNearPlane == nil then + return + end + self.currLight.shadowNearPlane = shadowNearPlane + self:refreshLight() + end) + + self.shadowProjectionDropList = uiMap["gm_light_setting.projection_list_11"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_DROP_DOWN) + self.shadowProjectionDropList:ClearOptions() + local optionList = {} + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Close Fit")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Stable Fit")) + self.shadowProjectionDropList:AddOptions(optionList) + self.shadowProjectionDropList.onValueChanged:AddListener(function(index) + if self.currLight == nil then + return + end + if index == 0 then + CS.UnityEngine.QualitySettings.shadowProjection = CS.UnityEngine.ShadowProjection.CloseFit + else + CS.UnityEngine.QualitySettings.shadowProjection = CS.UnityEngine.ShadowProjection.StableFit + end + self:refreshLight() + end) + self.shadowProjectionDropList:SetValueWithoutNotify(0) + + self.shadowDistanceInputField = uiMap["gm_light_setting.input_field_12"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.shadowDistanceInputField.onEndEdit:AddListener(function (value) + if self.currLight == nil then + return + end + local shadowDistance = tonumber(value) + if shadowDistance == nil then + return + end + CS.UnityEngine.QualitySettings.shadowDistance = shadowDistance + self:refreshLight() + end) + + self.shadowNearPlaneOffsetInputField = uiMap["gm_light_setting.input_field_13"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_INPUT_FIELD) + self.shadowNearPlaneOffsetInputField.onEndEdit:AddListener(function (value) + if self.currLight == nil then + return + end + local shadowNearPlaneOffset = tonumber(value) + if shadowNearPlaneOffset == nil then + return + end + CS.UnityEngine.QualitySettings.shadowNearPlaneOffset = shadowNearPlaneOffset + self:refreshLight() + end) + + self.shadowCascadesDropList = uiMap["gm_light_setting.cascades_list_14"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_DROP_DOWN) + self.shadowCascadesDropList:ClearOptions() + local optionList = {} + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("No Cascades")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Two Cascades")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Four Cascades")) + self.shadowCascadesDropList:AddOptions(optionList) + self.shadowCascadesDropList.onValueChanged:AddListener(function(index) + if self.currLight == nil then + return + end + if index == 0 then + CS.UnityEngine.QualitySettings.shadowCascades = 1 + elseif index == 1 then + CS.UnityEngine.QualitySettings.shadowCascades = 2 + elseif index == 2 then + CS.UnityEngine.QualitySettings.shadowCascades = 4 + else + CS.UnityEngine.QualitySettings.shadowCascades = 1 + end + self:refreshLight() + end) + self.shadowCascadesDropList:SetValueWithoutNotify(0) + + self.shadowmaskModeDropList = uiMap["gm_light_setting.mode_list_15"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_DROP_DOWN) + self.shadowmaskModeDropList:ClearOptions() + local optionList = {} + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Shadowmask")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Distance Shadowmask")) + self.shadowmaskModeDropList:AddOptions(optionList) + self.shadowmaskModeDropList.onValueChanged:AddListener(function(index) + if self.currLight == nil then + return + end + if index == 1 then + CS.UnityEngine.QualitySettings.shadowmaskMode = CS.UnityEngine.ShadowmaskMode.DistanceShadowmask + else + CS.UnityEngine.QualitySettings.shadowmaskMode = CS.UnityEngine.ShadowmaskMode.Shadowmask + end + self:refreshLight() + end) + self.shadowmaskModeDropList:SetValueWithoutNotify(0) + + self.shadowsDropList = uiMap["gm_light_setting.shadows_list_16"]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_DROP_DOWN) + self.shadowsDropList:ClearOptions() + local optionList = {} + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Disable Shadows")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Hard Shadows Only")) + table.insert(optionList, CS.UnityEngine.UI.Dropdown.OptionData("Hard And Soft Shadows")) + self.shadowsDropList:AddOptions(optionList) + self.shadowsDropList.onValueChanged:AddListener(function(index) + if self.currLight == nil then + return + end + if index == 1 then + CS.UnityEngine.QualitySettings.shadows = CS.UnityEngine.ShadowQuality.HardOnly + elseif index == 2 then + CS.UnityEngine.QualitySettings.shadows = CS.UnityEngine.ShadowQuality.All + else + CS.UnityEngine.QualitySettings.shadows = CS.UnityEngine.ShadowQuality.Disable + end + self:refreshLight() + end) + self.shadowsDropList:SetValueWithoutNotify(0) + + self.lights = CS.UnityEngine.GameObject.FindObjectsOfType(GConst.TYPEOF_UNITY_CLASS.LIGHT) + if self.lights == nil or self.lights.Length <= 0 then + self.lights = nil + self.currLight = nil + self.mask:setLocalScale(1, 1, 1) + else + self.mask:setLocalScale(0, 0, 0) + end +end + +function LightSettingUI:onRefresh() + self:refreshLightList() +end + +function LightSettingUI:refreshLightList() + self.dropList:ClearOptions() + if self.lights == nil then + return + end + if self.lights.Length <= 0 then + return + end + local optionList = {} + for i = 0, self.lights.Length - 1 do + local data = CS.UnityEngine.UI.Dropdown.OptionData(self.lights[i].transform.name) + table.insert(optionList, data) + end + self.dropList:AddOptions(optionList) + self.dropList:SetValueWithoutNotify(0) + self.currLight = self.lights[0] + self:refreshLight() +end + +function LightSettingUI:refreshLight() + local lightColor = self.currLight.color + self.colorImage:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE).color = BF.Color(lightColor.r, lightColor.g, lightColor.b, 1) + self.colorAlphaSlider:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER).value = 1 - lightColor.a + self.colorInputField.text = CS.UnityEngine.ColorUtility.ToHtmlStringRGBA(lightColor) + self.intensityInputField.text = tostring(self.currLight.intensity) + + self.shadowStrengthInputField.text = tostring(self.currLight.shadowStrength) + self.shadowStrengthSlider.value = self.currLight.shadowStrength + + local shadowResolution = self.currLight.shadowResolution + if shadowResolution == CS.UnityEngine.Rendering.LightShadowResolution.FromQualitySettings then + self.shadowResolutionDropList:SetValueWithoutNotify(0) + elseif shadowResolution == CS.UnityEngine.Rendering.LightShadowResolution.Low then + self.shadowResolutionDropList:SetValueWithoutNotify(1) + elseif shadowResolution == CS.UnityEngine.Rendering.LightShadowResolution.Medium then + self.shadowResolutionDropList:SetValueWithoutNotify(2) + elseif shadowResolution == CS.UnityEngine.Rendering.LightShadowResolution.High then + self.shadowResolutionDropList:SetValueWithoutNotify(3) + elseif shadowResolution == CS.UnityEngine.Rendering.LightShadowResolution.VeryHigh then + self.shadowResolutionDropList:SetValueWithoutNotify(4) + else + self.shadowResolutionDropList:SetValueWithoutNotify(0) + end + + self.shadowBiasSlider.value = self.currLight.shadowBias + self.shadowBiasInputField.text = tostring(self.currLight.shadowBias) + + self.shadowNormalBiasSlider.value = self.currLight.shadowNormalBias + self.shadowNormalBiasInputField.text = tostring(self.currLight.shadowNormalBias) + + self.shadowNearPlaneSlider.value = self.currLight.shadowNearPlane + self.shadowNearPlaneInputField.text = tostring(self.currLight.shadowNearPlane) + + if CS.UnityEngine.QualitySettings.shadowProjection == CS.UnityEngine.ShadowProjection.StableFit then + self.shadowProjectionDropList:SetValueWithoutNotify(1) + else + self.shadowProjectionDropList:SetValueWithoutNotify(0) + end + + self.shadowDistanceInputField.text = tostring(CS.UnityEngine.QualitySettings.shadowDistance) + + self.shadowNearPlaneOffsetInputField.text = tostring(CS.UnityEngine.QualitySettings.shadowNearPlaneOffset) + + if CS.UnityEngine.QualitySettings.shadowCascades == 2 then + self.shadowCascadesDropList:SetValueWithoutNotify(1) + elseif CS.UnityEngine.QualitySettings.shadowCascades == 4 then + self.shadowCascadesDropList:SetValueWithoutNotify(2) + else + self.shadowCascadesDropList:SetValueWithoutNotify(0) + end + + if CS.UnityEngine.QualitySettings.shadowmaskMode == CS.UnityEngine.ShadowmaskMode.DistanceShadowmask then + self.shadowmaskModeDropList:SetValueWithoutNotify(1) + else + self.shadowmaskModeDropList:SetValueWithoutNotify(0) + end + + if CS.UnityEngine.QualitySettings.shadows == CS.UnityEngine.ShadowQuality.HardOnly then + self.shadowsDropList:SetValueWithoutNotify(1) + elseif CS.UnityEngine.QualitySettings.shadows == CS.UnityEngine.ShadowQuality.All then + self.shadowsDropList:SetValueWithoutNotify(2) + else + self.shadowsDropList:SetValueWithoutNotify(0) + end +end + +return LightSettingUI diff --git a/lua/app/ui/gm/light_setting_ui.lua.meta b/lua/app/ui/gm/light_setting_ui.lua.meta new file mode 100644 index 00000000..86c16f29 --- /dev/null +++ b/lua/app/ui/gm/light_setting_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: fdef7351bc1a99f48b8d76ceec5c8b29 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/handbook.meta b/lua/app/ui/handbook.meta new file mode 100644 index 00000000..21398dfc --- /dev/null +++ b/lua/app/ui/handbook.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d15a8352e58c29b47addd9a8feda975a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/hero.meta b/lua/app/ui/hero.meta new file mode 100644 index 00000000..0a291b72 --- /dev/null +++ b/lua/app/ui/hero.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3562de86295bd0a4c91442225ebdfb06 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/idle.meta b/lua/app/ui/idle.meta new file mode 100644 index 00000000..8ceb8d22 --- /dev/null +++ b/lua/app/ui/idle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ceeadff01652a784292834fd959e62fe +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/loading.meta b/lua/app/ui/loading.meta new file mode 100644 index 00000000..f13e936a --- /dev/null +++ b/lua/app/ui/loading.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 530b45be8b5c2af42b571dfe329fafc2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/loading/loading_cloud_ui.lua b/lua/app/ui/loading/loading_cloud_ui.lua new file mode 100644 index 00000000..6f473abb --- /dev/null +++ b/lua/app/ui/loading/loading_cloud_ui.lua @@ -0,0 +1,42 @@ +local LoadingCloudUI = class("LoadingCloudUI", BaseUI) + +function LoadingCloudUI:init(parent, callback) + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/loading/loading_cloud_ui.prefab", parent, function(root) + self.root = root + self:showLoading(callback) + end) +end + +function LoadingCloudUI:showLoading(callback) + self.root:setActive(true) + local animator = self.root:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR) + animator:Play("loading_cloud_close") + + if self.scheduleShowId then + self:unscheduleGlobal(self.scheduleShowId) + end + if self.scheduleHideId then + self:unscheduleGlobal(self.scheduleHideId) + self.scheduleHideId = nil + end + self.scheduleShowId = self:performWithDelayGlobal(function() + self.scheduleShowId = nil + callback() + end, 0.3) +end + +function LoadingCloudUI:hideLoading(callback) + local animator = self.root:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR) + animator:Play("loading_cloud_open") + + if self.scheduleHideId then + self:unscheduleGlobal(self.scheduleHideId) + end + self.scheduleHideId = self:performWithDelayGlobal(function() + self.scheduleHideId = nil + self.root:setActive(false) + callback() + end, 0.3) +end + +return LoadingCloudUI \ No newline at end of file diff --git a/lua/app/ui/loading/loading_cloud_ui.lua.meta b/lua/app/ui/loading/loading_cloud_ui.lua.meta new file mode 100644 index 00000000..d9841c47 --- /dev/null +++ b/lua/app/ui/loading/loading_cloud_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: d55f77c9ca3be4041892ce8c5b1eecd5 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/mail.meta b/lua/app/ui/mail.meta new file mode 100644 index 00000000..a90a6d53 --- /dev/null +++ b/lua/app/ui/mail.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e83a8b9091de9064a9751667ccf0f7c3 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/main_city.meta b/lua/app/ui/main_city.meta new file mode 100644 index 00000000..4bb9f99a --- /dev/null +++ b/lua/app/ui/main_city.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 10a8469a49399ce4d8953963f7a26639 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/main_city/cell.meta b/lua/app/ui/main_city/cell.meta new file mode 100644 index 00000000..a5f432b5 --- /dev/null +++ b/lua/app/ui/main_city/cell.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 47ddae3e410283a4e81ebb411c042e2c +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/main_city/cell/bottom_btn_cell.lua b/lua/app/ui/main_city/cell/bottom_btn_cell.lua new file mode 100644 index 00000000..b6ebb141 --- /dev/null +++ b/lua/app/ui/main_city/cell/bottom_btn_cell.lua @@ -0,0 +1,34 @@ +local BottomBtnCell = class("BottomBtnCell", BaseCell) + +function BottomBtnCell:refresh(index, selected, iconName, iconCloseName, isOpen) + local uiMap = self:getUIMap() + + local bg = uiMap["bottom_btn_cell.bg"] + local icon = uiMap["bottom_btn_cell.icon_img"] + local descTx = uiMap["bottom_btn_cell.desc_tx"] + local leftLine = uiMap["bottom_btn_cell.l_line"] + local rightLing = uiMap["bottom_btn_cell.r_line"] + local selectBg = uiMap["bottom_btn_cell.select_bg"] + local closeIcon = uiMap["bottom_btn_cell.close_img"] + + icon:setSprite(GConst.ATLAS_PATH.MAIN, isOpen and iconName or iconCloseName) + bg:setVisible(not selected) + icon:setVisible(not selected) + selectBg:setVisible(selected) + closeIcon:setVisible(selected) + + leftLine:setVisible(index > 1) + rightLing:setVisible(index < GConst.MainCityConst.BOTTOM_COUNT) + + -- TODO 动画效果 +end + +function BottomBtnCell:addClickListener(func) + self:getBaseObject():addClickListener(func) +end + +function BottomBtnCell:getAnchoredPositionX() + return self:getBaseObject():getAnchoredPositionX() +end + +return BottomBtnCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/bottom_btn_cell.lua.meta b/lua/app/ui/main_city/cell/bottom_btn_cell.lua.meta new file mode 100644 index 00000000..f6e1a797 --- /dev/null +++ b/lua/app/ui/main_city/cell/bottom_btn_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 884b639f1ffc26d4db1dba28a5ab75a0 +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_activity_cell.lua b/lua/app/ui/main_city/cell/side_bar_activity_cell.lua new file mode 100644 index 00000000..05c10651 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_activity_cell.lua @@ -0,0 +1,9 @@ +local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" +local SideBarActivityCell = class("SideBarActivityCell", SideBarBaseCellComp) + +-- icon图标资源路径,为空时不显示 +function SideBarActivityCell:getIconRes() + return "main_btn_sevenday" +end + +return SideBarActivityCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_activity_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_activity_cell.lua.meta new file mode 100644 index 00000000..6085f7da --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_activity_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1eefb6a440fbc3c4b80c11d5a2196e6f +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_base_cell.lua b/lua/app/ui/main_city/cell/side_bar_base_cell.lua new file mode 100644 index 00000000..5cf2656a --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_base_cell.lua @@ -0,0 +1,148 @@ +local SideBarBaseCellComp = class("SideBarBaseCellComp", BaseCell) + +local DEFAULT_ICON_BG_NAME = "main_bg_1" +local DEFAULT_ICON_SIZE_X = 80 +local DEFAULT_ICON_SIZE_Y = 80 +local DEFAULT_ICON_POS_X = 0 +local DEFAULT_ICON_POS_Y = 0 +local DEFAULT_RED_POINT_POS_X = 30 +local DEFAULT_RED_POINT_POS_Y = 30 +local DEFAULT_RED_POINT_SCALE = 0.6 + +function SideBarBaseCellComp:initBase(parentUI) + if not self.initComp then + self.initComp = true + local uiMap = self:getUIMap() + self.iconBg = uiMap["side_bar_base_cell.bg"] + self.iconImg = uiMap["side_bar_base_cell.icon"] + self.infoTx = uiMap["side_bar_base_cell.info"] + self.rpRoot = uiMap["side_bar_base_cell.rpRoot"] + + -- 基础信息 + if self:getIconRes() then + self.iconBg:setSprite(GConst.ATLAS_PATH.MAIN, DEFAULT_ICON_BG_NAME) + self.iconBg:setAnchoredPosition(self:getIconAnchoredPosition()) + self.iconBg:setSizeDelta(self:getIconSize()) + + self.iconImg:setSprite(GConst.ATLAS_PATH.MAIN, self:getIconRes()) + self.iconImg:setAnchoredPosition(self:getIconAnchoredPosition()) + self.iconImg:setSizeDelta(self:getIconSize()) + end + else + self:refreshIcon() + end +end + +-- 需要继承重写的部分 *********************************************************** + +-- icon图标资源路径,为空时不显示 +function SideBarBaseCellComp:getIconRes() + return nil +end + +-- icon图标大小,默认为64x64 +function SideBarBaseCellComp:getIconSize() + return DEFAULT_ICON_SIZE_X, DEFAULT_ICON_SIZE_Y +end + +-- icon图标位置,默认为0x0 +function SideBarBaseCellComp:getIconAnchoredPosition() + return DEFAULT_ICON_POS_X, DEFAULT_ICON_POS_Y +end + +-- 特效资源路径,为空时不显示 +function SideBarBaseCellComp:getVfxRes() + return nil +end + +-- 是否有shake效果 +function SideBarBaseCellComp:getHasShake() + return false +end + +-- 是否有数据显示 +function SideBarBaseCellComp:getHasInfo() + return false +end + +-- 具体内容 +function SideBarBaseCellComp:getInfo() + return nil +end + +-- 红点偏移位置 +function SideBarBaseCellComp:getRedPointPosition() + return DEFAULT_RED_POINT_POS_X, DEFAULT_RED_POINT_POS_Y +end + +-- 红点大小 +function SideBarBaseCellComp:getRedPointScale() + return DEFAULT_RED_POINT_SCALE +end + +-- 广告红点偏移位置 +function SideBarBaseCellComp:getAdPointPosition() + return DEFAULT_RED_POINT_POS_X, DEFAULT_RED_POINT_POS_Y +end + +-- 广告红点大小 +function SideBarBaseCellComp:getAdPointScale() + return DEFAULT_RED_POINT_SCALE +end + +function SideBarBaseCellComp:refreshIcon() +end + +-- 常规逻辑 *********************************************************** + +function SideBarBaseCellComp:setText(text) + if self.infoTx then + self.infoTx:setText(text) + end +end + +function SideBarBaseCellComp:refresh(parentUI, isOpen, showShake, isRed, isAdPoint, x, y, forceDisVisible, clickCallback) + if not isOpen then + GFunc.getShakeSeq(self.baseObject, true) + self.baseObject:setVisible(false) + else + self:initBase(parentUI) + self:addClickListener(clickCallback) + -- 位置与表现 + if self:getHasShake() and showShake then + GFunc.getShakeSeq(self.baseObject, nil, 1, true) + else + GFunc.getShakeSeq(self.baseObject, true) + end + self.baseObject:setVisible(true) + if forceDisVisible then + self.baseObject:setVisible(false) + end + self.baseObject:setAnchoredPosition(x, y) + -- 信息 + if self:getHasInfo() then + self.infoTx:setText(self:getInfo()) + end + -- 红点 + if isRed then + local rpPosX, rpPosY = self:getRedPointPosition() + local rpScale = self:getRedPointScale() + self.rpRoot:addRedPoint(rpPosX, rpPosY, rpScale, nil, nil, true) + else + self.rpRoot:removeRedPoint() + end + + if not isRed then + -- 广告红点 + if isAdPoint then + local rpPosX, rpPosY = self:getAdPointPosition() + local rpScale = self:getAdPointScale() + self.rpRoot:addRedPoint(rpPosX, rpPosY, rpScale, GFunc.getAdSprite(), nil, true) + else + self.rpRoot:removeRedPoint() + end + end + end +end + +return SideBarBaseCellComp \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_base_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_base_cell.lua.meta new file mode 100644 index 00000000..df59ca27 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_base_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: b9cc4f07a6c570049b944a70dc646bfd +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_bounty_cell.lua b/lua/app/ui/main_city/cell/side_bar_bounty_cell.lua new file mode 100644 index 00000000..a52f07a6 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_bounty_cell.lua @@ -0,0 +1,19 @@ +local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" +local SideBarBountyCell = class("SideBarBountyCell", SideBarBaseCellComp) + +-- icon图标资源路径,为空时不显示 +function SideBarBountyCell:getIconRes() + return "main_btn_bounty" +end + +-- 是否有数据显示 +function SideBarBountyCell:getHasInfo() + return false +end + +-- 具体内容 +function SideBarBountyCell:getInfo() + return GConst.EMPTY_STRING +end + +return SideBarBountyCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_bounty_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_bounty_cell.lua.meta new file mode 100644 index 00000000..61e45393 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_bounty_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 20fd3c8dcaa786e4eb1fe8b97f35906c +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_handbook_cell.lua b/lua/app/ui/main_city/cell/side_bar_handbook_cell.lua new file mode 100644 index 00000000..3f5fd028 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_handbook_cell.lua @@ -0,0 +1,9 @@ +local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" +local SideBarHandbookCell = class("SideBarHandbookCell", SideBarBaseCellComp) + +-- icon图标资源路径,为空时不显示 +function SideBarHandbookCell:getIconRes() + return "main_btn_collection" +end + +return SideBarHandbookCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_handbook_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_handbook_cell.lua.meta new file mode 100644 index 00000000..23546e8d --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_handbook_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 709839b9a220e6c418ede26e1f7e95d1 +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_monthly_card_cell.lua b/lua/app/ui/main_city/cell/side_bar_monthly_card_cell.lua new file mode 100644 index 00000000..da4e10ab --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_monthly_card_cell.lua @@ -0,0 +1,13 @@ +local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" +local SideBarMonthlyCardCell = class("SideBarMonthlyCardCell", SideBarBaseCellComp) + +-- icon图标资源路径,为空时不显示 +function SideBarMonthlyCardCell:getIconRes() + return "main_btn_idle" +end +-- 是否有shake效果 +function SideBarMonthlyCardCell:getHasShake() + return true +end + +return SideBarMonthlyCardCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_monthly_card_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_monthly_card_cell.lua.meta new file mode 100644 index 00000000..1ddf3b78 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_monthly_card_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f76a9cd8a3bc37b489b8fa25d483e02e +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_speed_up_cell.lua b/lua/app/ui/main_city/cell/side_bar_speed_up_cell.lua new file mode 100644 index 00000000..53399002 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_speed_up_cell.lua @@ -0,0 +1,24 @@ +local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" +local SideBarSpeedUpCell = class("SideBarSpeedUpCell", SideBarBaseCellComp) + +-- icon图标资源路径,为空时不显示 +function SideBarSpeedUpCell:getIconRes() + return "main_btn_act_speed" +end + +-- 是否有数据显示 +function SideBarSpeedUpCell:getHasInfo() + return true +end + +-- 具体内容 +function SideBarSpeedUpCell:getInfo() + local remainCd = DataManager.AccelerationData:getRemainCd() + if remainCd > 0 and DataManager.AccelerationData:isActive() then + return I18N:getGlobalText(I18N.GlobalConst.ACCELERATION) .. "\n" .. Time:formatNumTimeMS(remainCd) + else + return I18N:getGlobalText(I18N.GlobalConst.BATTLE_SPEED_UP_DESC_2) + end +end + +return SideBarSpeedUpCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_speed_up_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_speed_up_cell.lua.meta new file mode 100644 index 00000000..a6d30f65 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_speed_up_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5ee1b9588f0fffc4b8f09a83d1952034 +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_strength_cell.lua b/lua/app/ui/main_city/cell/side_bar_strength_cell.lua new file mode 100644 index 00000000..c96f6307 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_strength_cell.lua @@ -0,0 +1,22 @@ +local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" +local SideBarStrengthCell = class("SideBarStrengthCell", SideBarBaseCellComp) + +local DEFAULT_RED_POINT_POS_X = 30 +local DEFAULT_RED_POINT_POS_Y = 18 + +-- icon图标资源路径,为空时不显示 +function SideBarStrengthCell:getIconRes() + local acticeStr = DataManager.BlessingData:getBlessingActive() + return "main_btn_blessing_" .. acticeStr +end + +function SideBarStrengthCell:refreshIcon() + self.iconImg:setSprite(GConst.ATLAS_PATH.MAIN, self:getIconRes()) +end + +-- 广告红点偏移位置 +function SideBarBaseCellComp:getAdPointPosition() + return DEFAULT_RED_POINT_POS_X, DEFAULT_RED_POINT_POS_Y +end + +return SideBarStrengthCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_strength_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_strength_cell.lua.meta new file mode 100644 index 00000000..ce15a9dc --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_strength_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 6d90e530df2fd5342a942fe00098dec0 +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_task_cell.lua b/lua/app/ui/main_city/cell/side_bar_task_cell.lua new file mode 100644 index 00000000..225d2cc6 --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_task_cell.lua @@ -0,0 +1,9 @@ +local SideBarBaseCellComp = require "app/ui/main_city/cell/side_bar_base_cell" +local SideBarTaskCell = class("SideBarTaskCell", SideBarBaseCellComp) + +-- icon图标资源路径,为空时不显示 +function SideBarTaskCell:getIconRes() + return "main_btn_task" +end + +return SideBarTaskCell \ No newline at end of file diff --git a/lua/app/ui/main_city/cell/side_bar_task_cell.lua.meta b/lua/app/ui/main_city/cell/side_bar_task_cell.lua.meta new file mode 100644 index 00000000..adb991cc --- /dev/null +++ b/lua/app/ui/main_city/cell/side_bar_task_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 87daf7c7b050cd3458f656f03917bf13 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/main_city/component.meta b/lua/app/ui/main_city/component.meta new file mode 100644 index 00000000..312a1163 --- /dev/null +++ b/lua/app/ui/main_city/component.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 51bd4477da526d74381806b56c95552e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/main_city/component/chapter_slider_comp.lua b/lua/app/ui/main_city/component/chapter_slider_comp.lua new file mode 100644 index 00000000..4d837584 --- /dev/null +++ b/lua/app/ui/main_city/component/chapter_slider_comp.lua @@ -0,0 +1,120 @@ +local ChapterSliderComp = class("ChapterSliderComp", LuaComponent) +local SLIDER_WIDTH = 266 +local DEFAULT_MONSTER_POINT_X = 0 -- 25 + +local NOT_SHOW_BEST_MAX_CUR_SLIDER_VALUE = 0.8 -- cur距离end的最近距离 +local SHOW_BEST_MAX_CUR_SLIDER_VALUE = 0.6 +local MIN_BEST_2_CUR_VALUE = 0.2 -- best距离cur的最近距离 +local MAX_BEST_SLIDER_VALUE = 0.8 -- best距离end的最近距离 + +function ChapterSliderComp:refresh() + local uiMap = self.baseObject:genAllChildren() + + if not self.heroPoint then + self.heroPoint = uiMap["chapter_slider_comp.hero_point"] + end + if not self.heroAvatarCell then + self.heroAvatarCell = CellManager:addCellComp(uiMap["chapter_slider_comp.hero_point.avatar_cell"], GConst.TYPEOF_LUA_CLASS.AVATAR_CELL) + end + if not self.heroInfoTx then + self.heroInfoTx = uiMap["chapter_slider_comp.hero_point.info_tx"] + end + if not self.bestPoint then + self.bestPoint = uiMap["chapter_slider_comp.best_point"] + end + if not self.bestInfoTx then + self.bestInfoTx = uiMap["chapter_slider_comp.best_point.info_tx"] + end + if not self.monsterPoint then + self.monsterPoint = uiMap["chapter_slider_comp.monster_point"] + end + if not self.monsterInfoTx then + self.monsterInfoTx = uiMap["chapter_slider_comp.monster_point.info_tx"] + end + if not self.monsterAvatarCell then + self.monsterAvatarCell = CellManager:addCellComp(uiMap["chapter_slider_comp.monster_point.avatar_cell"], GConst.TYPEOF_LUA_CLASS.AVATAR_CELL) + self.monsterAvatarCell:addClickListener(function() + -- ModuleManager.ChapterManager:showChapterRewardListUI() -- 屏蔽 + end) + end + if not self.sliderBest then + self.sliderBest = uiMap["chapter_slider_comp.slider_best"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + end + if not self.sliderCur then + self.sliderCur = uiMap["chapter_slider_comp.slider_cur"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + end + + if not self.leftMonsterTitleTx then + self.leftMonsterTitleTx = uiMap["chapter_slider_comp.hero_point.monster_bg.title_tx"] + self.leftMonsterTitleTx:setText(I18N:getGlobalText(I18N.GlobalConst.BATTLE_LEFT)) + end + if not self.leftMonsterTx then + self.leftMonsterTx = uiMap["chapter_slider_comp.hero_point.monster_bg.num_tx"] + end + + -- 固定内容 + local bestTx = uiMap["chapter_slider_comp.best_point.best_tx"] + bestTx:setText(I18N:getGlobalText(I18N.GlobalConst.BEST_DESC)) + + local curFlag = uiMap["chapter_slider_comp.hero_point.info_tx.flag"] + + -- 设置位置与内容 + local curChapterId = DataManager.ChapterData:getCurChapterId() + 1 + local historyChapterId = DataManager.ChapterData:getHistoryChapterId() + 1 + local nextRewardChapterId = DataManager.ChapterData:getNextFirstRewardChapter(math.max(historyChapterId, curChapterId)) + + local isReachMaxChapter = DataManager.ChapterData:isReachMaxChapter() + local showBest = curChapterId < historyChapterId + + if isReachMaxChapter or nextRewardChapterId == nil then + nextRewardChapterId = DataManager.ChapterData:getMaxChapterId() -- 容错按最后章来处理 + end + + local sliderValue = (curChapterId) / (nextRewardChapterId) + if showBest then + sliderValue = math.clamp(sliderValue, 0, SHOW_BEST_MAX_CUR_SLIDER_VALUE) + else + sliderValue = math.clamp(sliderValue, 0, NOT_SHOW_BEST_MAX_CUR_SLIDER_VALUE) + end + local sliderBestValue = (historyChapterId) / (nextRewardChapterId) + if showBest then + sliderBestValue = math.clamp(sliderBestValue, (sliderValue + MIN_BEST_2_CUR_VALUE), MAX_BEST_SLIDER_VALUE) + curFlag:setVisible(false) + else + sliderBestValue = math.clamp(sliderBestValue, sliderBestValue , math.min(sliderValue, sliderBestValue)) + curFlag:setVisible(true) + end + + self.sliderCur.value = sliderValue + self.heroPoint:setAnchoredPositionX(sliderValue * SLIDER_WIDTH) + self.heroAvatarCell:refresh() + self.heroInfoTx:setText(I18N:getGlobalText(I18N.GlobalConst.TRAIN_DESC_15, curChapterId)) + local txW = self.heroInfoTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredWidth + self.heroInfoTx:setSizeDeltaX(txW) + + self.bestPoint:setVisible(showBest) + self.sliderBest.value = sliderBestValue + self.bestPoint:setAnchoredPositionX(sliderBestValue * SLIDER_WIDTH) + self.bestInfoTx:setText(I18N:getGlobalText(I18N.GlobalConst.TRAIN_DESC_15, historyChapterId)) + + -- 找到怪物头像 + local monsterBaseId = DataManager.ChapterData:getFirstRewardMonsterBaseId(nextRewardChapterId) + if monsterBaseId then + self.monsterAvatarCell:refreshMonster(monsterBaseId) + else + self.monsterAvatarCell:refresh(2, 2) + end + self.monsterPoint:setAnchoredPositionX(DEFAULT_MONSTER_POINT_X) + self.monsterInfoTx:setText(I18N:getGlobalText(I18N.GlobalConst.TRAIN_DESC_15, nextRewardChapterId)) + + self:refreshLeftMonster() +end + +function ChapterSliderComp:refreshLeftMonster() + if not self.leftMonsterTx then + self.leftMonsterTx = self.uiMap["chapter_slider_comp.hero_point.monster_bg.num_tx"] + end + self.leftMonsterTx:setText(string.format("X %s", DataManager.ChapterData:getCacheStageLeftMonsterNum())) +end + +return ChapterSliderComp \ No newline at end of file diff --git a/lua/app/ui/main_city/component/chapter_slider_comp.lua.meta b/lua/app/ui/main_city/component/chapter_slider_comp.lua.meta new file mode 100644 index 00000000..df28e54b --- /dev/null +++ b/lua/app/ui/main_city/component/chapter_slider_comp.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f716e0ddf57b1b849b187b434b31f4dc +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/main_city/component/tutorial_task_comp.lua b/lua/app/ui/main_city/component/tutorial_task_comp.lua new file mode 100644 index 00000000..50ded775 --- /dev/null +++ b/lua/app/ui/main_city/component/tutorial_task_comp.lua @@ -0,0 +1,88 @@ +local TutorialTaskComp = class("TutorialTaskComp", LuaComponent) + +function TutorialTaskComp:refresh() + local uiMap = self.baseObject:genAllChildren() + + if not self.titleTx then + self.titleTx = uiMap["tutorial_task_comp.title_tx"] + end + if not self.infoTx then + self.infoTx = uiMap["tutorial_task_comp.info_tx"] + end + if not self.progressTx then + self.progressTx = uiMap["tutorial_task_comp.progress_tx"] + end + if not self.rewardIcon then + self.rewardIcon = uiMap["tutorial_task_comp.reward_icon"] + end + if not self.rewardTx then + self.rewardTx = uiMap["tutorial_task_comp.reward_tx"] + end + if not self.fingerObj then + self.fingerObj = uiMap["tutorial_task_comp.tutorial_finger"] + end + + self.titleTx:setText(string.format("%s", I18N:getGlobalText(I18N.GlobalConst.TASK_DESC) .. DataManager.TutorialTaskData:getCurTutorialId())) + self.infoTx:setText(string.format("%s", DataManager.TutorialTaskData:getTaskDesc())) + local reward = DataManager.TutorialTaskData:getTaskReward() + if reward then + self.rewardIcon:setSprite(ModuleManager.ItemManager:getItemIcon(reward.id)) + if ModuleManager.ItemManager:getItemType(reward.id) == GConst.ItemConst.NOT_2_BIGNUM_TYPE then + self.rewardTx:setText(BigNumOpt.bigNum2Num(reward.count)) + else + self.rewardTx:setText(BigNumOpt.bigNum2Str(reward.count)) + end + local numstr = GConst.EMPTY_STRING + if ModuleManager.ItemManager:getItemType(reward.id) == GConst.ItemConst.NOT_2_BIGNUM_TYPE then + numstr = BigNumOpt.bigNum2Num(reward.count) + else + numstr = BigNumOpt.bigNum2Str(reward.count) + end + self.rewardTx:setText(string.format("%s", numstr)) + end + + GFunc.centerImgAndTx(self.rewardIcon, self.rewardTx, 10) + + local bg = uiMap["tutorial_task_comp.chapter_task_bg"] + local light = uiMap["tutorial_task_comp.chapter_task_bg.light"] + if not self.animationtor then + self.animationtor = self.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR) + end + + local canClaimed = DataManager.TutorialTaskData:canClaimTask() + self.fingerObj:setVisible(false) + if canClaimed then + if not DataManager.TutorialData:getIsInTutorial() and not DataManager.TutorialTaskData:showMaskFinger() then + self.fingerObj:setVisible(true) + -- CS.UnityEngine.Animator.StringToHash("frame_reward_equip") 结果是50306902 + self.fingerObj:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play(50306902) + end + + self.titleTx:setText(I18N:getGlobalText(I18N.GlobalConst.GET_REWARDS_1)) + self.infoTx:setText(DataManager.TutorialTaskData:getTaskDesc(nil, true)) + local numstr = GConst.EMPTY_STRING + if ModuleManager.ItemManager:getItemType(reward.id) == GConst.ItemConst.NOT_2_BIGNUM_TYPE then + numstr = BigNumOpt.bigNum2Num(reward.count) + else + numstr = BigNumOpt.bigNum2Str(reward.count) + end + self.rewardTx:setText(numstr) + bg:addClickListener(function() + ModuleManager.TutorialTaskManager:claimTask() + end) + bg:addRedPoint(-123, 75, 0.6) + self.animationtor.enabled = true + self.animationtor:Play(767057000) + light:setVisible(true) + else + self.animationtor.enabled = false + self.fingerObj:setVisible(false) + bg:addClickListener(function() + ModuleManager.TaskManager:taskGoto(DataManager.TutorialTaskData:getTaskType()) + end) + bg:removeRedPoint() + light:setVisible(false) + end +end + +return TutorialTaskComp \ No newline at end of file diff --git a/lua/app/ui/main_city/component/tutorial_task_comp.lua.meta b/lua/app/ui/main_city/component/tutorial_task_comp.lua.meta new file mode 100644 index 00000000..d0b06458 --- /dev/null +++ b/lua/app/ui/main_city/component/tutorial_task_comp.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 921daa56364e033428a006b33acc2f0f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/main_city/main_city_ui.lua b/lua/app/ui/main_city/main_city_ui.lua new file mode 100644 index 00000000..dc770962 --- /dev/null +++ b/lua/app/ui/main_city/main_city_ui.lua @@ -0,0 +1,1123 @@ +---@class MainCityUI : BaseUI +local MainCityUI = class("MainCityUI", BaseUI) + +local BF_UI_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_UI_HELPER + +local HERO_MAIN_COMP = "app/ui/hero/hero_main_comp" -- 主角组件 +local SECT_MAIN_COMP = "" -- TODO 门派组件 +local TRAIN_MAIN_COMP = "app/ui/train/train_main_comp" -- 修炼组件 +local DUNGEON_MAIN_COMP = "app/ui/dungeon/dungeon_main_comp" -- 试炼组件 +local SHOP_MAIN_COMP = "app/ui/shop/shop_main_comp" -- 商店组件 +local MINE_MAIN_COMP = "app/ui/mining/mining_main_comp" --地下城(挖矿)组件 + +local BOTTOM_BTN_CELL = "app/ui/main_city/cell/bottom_btn_cell" +local BOTTOM_BTN_CELL_COUNT = 5 + +local CHAPTER_SLIDER_COMP = "app/ui/main_city/component/chapter_slider_comp" +local TUTORIAL_TASK_COMP = "app/ui/main_city/component/tutorial_task_comp" +local DELAY_RESUME_TIME = 0.5 + +local SIDE_BAR_DEFAULT_CELL_WIDTH = 80 +local SIDE_BAR_DEFAULT_CELL_WIDTH_SPACE = 10 +local SIDE_BAR_DEFAULT_CELL_HEIGHT = 80 +local SIDE_BAR_DEFAULT_CELL_HEIGHT_SPACE = 32 +local SIDE_BAR_COMP_TYPE = { + STRENGTH = 1001, -- 强化 + MONTHLY_CARD = 1011, -- 月卡 + SPEED_UP = 1021, -- 加速 + BOUNTY = 1031, -- 战令 + + TASK = 2001, -- 任务 + HANDBOOK = 2011, -- 图鉴 + ACTIVITY = 2021, -- 活动 +} +local SIDE_BAR_PREFAB_PATH = { + -- 左边 + [SIDE_BAR_COMP_TYPE.STRENGTH] = "assets/prefabs/ui/main_city/cell/side_bar_base_cell.prefab", + [SIDE_BAR_COMP_TYPE.MONTHLY_CARD] = "assets/prefabs/ui/main_city/cell/side_bar_base_cell.prefab", + [SIDE_BAR_COMP_TYPE.SPEED_UP] = "assets/prefabs/ui/main_city/cell/side_bar_base_cell.prefab", + [SIDE_BAR_COMP_TYPE.BOUNTY] = "assets/prefabs/ui/main_city/cell/side_bar_base_cell.prefab", + -- 右边 + [SIDE_BAR_COMP_TYPE.TASK] = "assets/prefabs/ui/main_city/cell/side_bar_base_cell.prefab", + [SIDE_BAR_COMP_TYPE.HANDBOOK] = "assets/prefabs/ui/main_city/cell/side_bar_base_cell.prefab", + [SIDE_BAR_COMP_TYPE.ACTIVITY] = "assets/prefabs/ui/main_city/cell/side_bar_base_cell.prefab", +} +local SIDE_BAR_COMP_PATH = { + -- 左边 + [SIDE_BAR_COMP_TYPE.STRENGTH] = "app/ui/main_city/cell/side_bar_strength_cell", + [SIDE_BAR_COMP_TYPE.MONTHLY_CARD] = "app/ui/main_city/cell/side_bar_monthly_card_cell", + [SIDE_BAR_COMP_TYPE.SPEED_UP] = "app/ui/main_city/cell/side_bar_speed_up_cell", + [SIDE_BAR_COMP_TYPE.BOUNTY] = "app/ui/main_city/cell/side_bar_bounty_cell", + -- 右边 + [SIDE_BAR_COMP_TYPE.TASK] = "app/ui/main_city/cell/side_bar_task_cell", + [SIDE_BAR_COMP_TYPE.HANDBOOK] = "app/ui/main_city/cell/side_bar_handbook_cell", + [SIDE_BAR_COMP_TYPE.ACTIVITY] = "app/ui/main_city/cell/side_bar_activity_cell", +} +local SIDE_BAR_NAME = { + [SIDE_BAR_COMP_TYPE.STRENGTH] = "strength_cell", + [SIDE_BAR_COMP_TYPE.MONTHLY_CARD] = "monthly_card_cell", + [SIDE_BAR_COMP_TYPE.SPEED_UP] = "speed_up_cell", + [SIDE_BAR_COMP_TYPE.BOUNTY] = "bounty_cell", + [SIDE_BAR_COMP_TYPE.TASK] = "task_cell", + [SIDE_BAR_COMP_TYPE.HANDBOOK] = "handbook_cell", + [SIDE_BAR_COMP_TYPE.ACTIVITY] = "activity_cell", +} + +local BLACK_FADE_TIME = 0.25 +local SAVE_POWER_MODE_TIME = 60 + +function MainCityUI:getUIType() + return UIManager.UI_TYPE.MAIN +end + +function MainCityUI:currencyParams() + self.targetIndex = self.targetIndex or 0 + local params = {} + local hidAddImg = false + params.showType = GConst.CURRENCY_TYPE.HORIZONTAL + if self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.STAGE then + if self.targetIndex == 0 then -- 默认状态 + params.itemIds = { + GConst.ItemConst.ITEM_ID_GOLD, + GConst.ItemConst.ITEM_ID_GEM, + } + elseif self.targetIndex == GConst.MainCityConst.BOTTOM_PAGE.HERO then -- 主角 + params.itemIds = { + GConst.ItemConst.ITEM_ID_GOLD, + GConst.ItemConst.ITEM_ID_GEM, + } + elseif self.targetIndex == GConst.MainCityConst.BOTTOM_PAGE.SECT then -- 门派 + params.itemIds = { + GConst.ItemConst.ITEM_ID_GOLD, + GConst.ItemConst.ITEM_ID_GEM, + } + elseif self.targetIndex == GConst.MainCityConst.BOTTOM_PAGE.TRAIN then -- 强化 + params.itemIds = { + GConst.ItemConst.ITEM_ID_GOLD, + GConst.ItemConst.ITEM_ID_GEM, + } + elseif self.targetIndex == GConst.MainCityConst.BOTTOM_PAGE.DUNGEON then -- 地下城 + params.itemIds = { + GConst.ItemConst.ITEM_ID_GOLD, + GConst.ItemConst.ITEM_ID_GEM, + } + elseif self.targetIndex == GConst.MainCityConst.BOTTOM_PAGE.SHOP then -- 商店 + params.itemIds = { + GConst.ItemConst.ITEM_ID_GOLD, + GConst.ItemConst.ITEM_ID_GEM, + } + end + else + hidAddImg = true + if self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.DUNGEON_GOLD then + params.itemIds = { + GConst.ItemConst.ITEM_ID_GOLD, + } + elseif self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.DUNGEON_GEM then + params.itemIds = { + GConst.ItemConst.ITEM_ID_GEM, + } + else + params.itemIds = GConst.EMPTY_TABLE + end + end + return params, true, hidAddImg +end + +function MainCityUI:updateCurrentBattleType(battleType) + if self.battleType ~= battleType then + self.battleType = battleType + self:updateCurrencyBar() + end +end + +function MainCityUI:getPrefabPath() + return "assets/prefabs/ui/main_city/main_ui.prefab" +end + +function MainCityUI:ctor(params) + self.isFirstEnter = params and params.isFirstEnter + self.targetIndex = params and params.targetIndex or 0 + self.battleType = params and params.battleType or ModuleManager.BattleManager.BATTLE_TYPE.STAGE + + self.savePowerModeTime = SAVE_POWER_MODE_TIME +end + +function MainCityUI:onReshow() + if self.mineComp then + self.mineComp:checkRedPoint() + end +end + +function MainCityUI:onLoadRootComplete() + if self:isClosed() then + return + end + self.uiMap = self.root:genAllChildren() + + self:_display() + self:_addListeners() + self:_bind() + + self:updateTime() + self:scheduleGlobal(function() + self:updateTime() + end, 1) + self:hideBlackUI() + DataManager.HeroData:getMainHeroEntity():getPassiveSkillIds() +end + +function MainCityUI:_display() + self:refreshRoleInfo() -- 刷新左上角角色信息 + self:initBattleNode() -- 初始化战斗节点 + self:initComp() -- 初始化页签界面 + self:initBottom() -- 初始化底部页签 + self:refreshBottom(nil, false) -- 刷新底部页签 + self:refreshChapterSlider() -- 刷新章节滑动条 + self:refreshPower() + -- 检查弹窗 + self:checkMainPop() +end + +function MainCityUI:_addListeners() + self:addEventListener(EventManager.CUSTOM_EVENT.MAIN_UI_CHECK_POP, function() + self:checkMainPop() + end) + self:addEventListener(EventManager.CUSTOM_EVENT.CURRENCY_BAR_FLY_OVER, function(params) + if self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.STAGE then + DataManager.ChapterData:addStageCoinToBagWhenFlyOver() -- 关卡怪物金币入包 + elseif self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.DUNGEON_GOLD then + UIManager:refreshCurrencyAddTx(GConst.ItemConst.ITEM_ID_GOLD, DataManager.DungeonData:getCacheDungeonDropBigNum()) + elseif self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.DUNGEON_GEM then + UIManager:refreshCurrencyAddTx(GConst.ItemConst.ITEM_ID_GEM, DataManager.DungeonData:getCacheDungeonDropBigNum()) + end + end) + + self:addEventListener(EventManager.CUSTOM_EVENT.TUTORIAL_TASK_REWARD, function(rewards) + if rewards and self.tutorialTaskComp then + GFunc.showCurrencyFlyAction(rewards, self.tutorialTaskComp:getBaseObject():getTransform().position) + end + end) + self:addEventListener(EventManager.CUSTOM_EVENT.CURRENCY_BAR_FLY, function(params) + local pos = params.pos + local imgNum = params.imgNum + local itemIds = params.itemIds + if self.targetIndex == 0 and self:isTopUI() then + if itemIds and #itemIds > 0 then + local allPos = {} + for i = 1, imgNum do + local posX, posY = GFunc.randomPos(i, {x = pos.x, y = pos.y}) + allPos[i] = {x = posX, y = posY} + end + local flyPos = {} + for _, id in ipairs(itemIds) do + flyPos[id] = allPos + end + UIManager:showCurrencyAction(flyPos) + end + else + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CURRENCY_BAR_FLY_OVER) + end + end) + self:addEventListener(EventManager.CUSTOM_EVENT.BATTLE_SHOW_CHAPTER_BLACK_UI, function(params) + self:showBlackUI(params.desc, params.time, params.isShowFail) + end) + + self:addEventListener(EventManager.CUSTOM_EVENT.BATTLE_SHOW_TOAST, function(params) + if self.targetIndex == 0 and self:isTopUI() then + GFunc.showToast(params) + end + end) + + self:addEventListener(EventManager.CUSTOM_EVENT.ATK_TRAIN_TUTORIAL_OVER, function() + if self.trainComp then + self.trainComp:clearTrainStatus() + end + end) + + self:addEventListener(EventManager.CUSTOM_EVENT.TUTORIAL_TASK_STOP, function() + self:checkTutorialTaskMask() + end) + + self:addEventListener(EventManager.CUSTOM_EVENT.GET_ANY_KEY_DOWN, function() + self:resetSavePowerTime() + end) +end + +function MainCityUI:_bind() + self:addEventListener(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, function(params) + params = params or {} + local oldPage = self.targetIndex + local page = params.page or self.targetIndex + if page == GConst.MainCityConst.BOTTOM_PAGE.SHOP then + self.showStoreIdx = params.storeIdx + self.storeOffsetY = params.storeOffsetY + end + self:refreshBottom(page, true) + if page == GConst.MainCityConst.BOTTOM_PAGE.SHOP then + self.shopComp:refresh(self, self.showStoreIdx) + end + end) + + self:bind(DataManager.ChapterData, "isDirty", function(binder, value) + self:refreshChapterSlider() + end) + + self:bind(DataManager.TutorialTaskData, "isDirty", function() + self:_refreshChapterTask() + self:checkTutorialTaskMask() + self:refreshBottomIconOnly() + if self.targetIndex == GConst.MainCityConst.BOTTOM_PAGE.TRAIN and self.trainComp then + self.trainComp:refreshTutorialTask() + end + end, true) + + self:bind(DataManager.DungeonData, "isDirty", function(binder, value) + self.dungeonComp:refresh() + end) + + self:bind(DataManager.BagData.ItemData, "dirty", function(binder, value) + self.dungeonComp:refresh() + self.mineComp:refresh() + end) + + self:bind(DataManager.ShopData, "isDirty", function(binder, value) + self.shopComp:refresh() + end) + + self:bind(DataManager.HeroData:getMainHeroEntity(), "powerDirty", function(binder, value) + self:refreshPower() + end) + + self:bind(DataManager.PlayerData, "level", function(binder, value) + self:refreshBottomIconOnly() + end) + self:bind(DataManager.ChapterData, "historyChapterId", function(binder, value) + self:refreshBottomIconOnly() + end) + + DataManager:registerCrossDayFunc("crossDay", function() + DataManager:resetSignInInfo() + DataManager.SummonData:resetDailyAdTimes() + -- 检查弹窗 + self:checkMainPop() + end) +end + +function MainCityUI:initBattleNode() + self.battleNode = self.uiMap["main_ui.battle_node"] +end + +function MainCityUI:getBattleNode() + return self.battleNode +end + +function MainCityUI:onSetUIOrder() + if self.subComps then + for index, comp in pairs(self.subComps) do + local order = self._baseRootCanvas.sortingOrder + local uiHelper = comp:getGameObject():GetComponent(BF_UI_HELPER) + if uiHelper then + uiHelper:SetSortingOrder(order + 1) + end + end + end +end + +-- 左上角头像与角色信息 +function MainCityUI:refreshRoleInfo() + if not self.avatarCell then + self.avatarCell = CellManager:addCellComp(self.uiMap["main_ui.role_node.avatar_cell"], GConst.TYPEOF_LUA_CLASS.AVATAR_CELL) + end + self.avatarCell:refresh() + self.avatarCell:addClickListener(function() + ModuleManager.GameSettingManager:showSettingUI() + end) + + self:refreshPower() +end + +-- 初始化底部页签栏 +function MainCityUI:initBottom() + if not self.bottomBtnCells then + self.bottomBtnCells = {} + for i = 1, BOTTOM_BTN_CELL_COUNT do + table.insert(self.bottomBtnCells, CellManager:addCellComp(self.uiMap["main_ui.bottom_node.bottom_btn_cell_" .. i], BOTTOM_BTN_CELL)) + end + end + for i = 1, BOTTOM_BTN_CELL_COUNT do + local icon = GConst.MainCityConst.BOTTOM_ICON[i] + local closeIcon = GConst.MainCityConst.BOTTOM_CLOSE_ICON[i] + local isOpen + if i == GConst.MainCityConst.BOTTOM_PAGE.DUNGEON then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_GOLD, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_DIAMOND, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_RUNE, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.ARENA, true) + elseif i == GConst.MainCityConst.BOTTOM_PAGE.SHOP then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SHOP, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SUMMON_WEAPON, true) + end + self.bottomBtnCells[i]:refresh(i, false, icon, closeIcon, isOpen) + self.bottomBtnCells[i]:addClickListener(function() + local isOpen + if i == GConst.MainCityConst.BOTTOM_PAGE.DUNGEON then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_GOLD, true) + if not isOpen then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_DIAMOND, true) + if not isOpen then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_RUNE, true) + if not isOpen then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.ARENA, true) + end + end + end + if not isOpen then -- 弹toast + local notShowToast = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_GOLD, false) + if notShowToast then + notShowToast = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_DIAMOND, false) + if notShowToast then + notShowToast = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_RUNE, false) + if notShowToast then + notShowToast = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.ARENA, false) + end + end + end + end + elseif i == GConst.MainCityConst.BOTTOM_PAGE.SHOP then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SHOP, true) + if not isOpen then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SUMMON_WEAPON, true) + end + if not isOpen then -- 弹toast + local notShowToast = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SHOP, false) + if notShowToast then + notShowToast = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SUMMON_WEAPON, false) + end + end + else + isOpen = ModuleManager:getIsOpen(GConst.MainCityConst.BOTTOM_MODULE_KEY[i], false) + end + if isOpen then + self:refreshBottom(i, true) + end + end) + end + self.tutorialTaskFinger = self.uiMap["main_ui.bottom_node.tutorial_finger"] +end + +-- 刷新底部页签栏 +function MainCityUI:refreshBottom(targetIndex, playAnim) + targetIndex = targetIndex or 0 + + -- 如果点击一样的 则是关闭效果 + if self.targetIndex == targetIndex then + targetIndex = 0 + end + + local oldIndex = self.targetIndex + self.targetIndex = targetIndex + + if playAnim then + -- 动画 TODOJ + for i = 1, BOTTOM_BTN_CELL_COUNT do + local icon = GConst.MainCityConst.BOTTOM_ICON[i] + local closeIcon = GConst.MainCityConst.BOTTOM_CLOSE_ICON[i] + local isOpen + if i == GConst.MainCityConst.BOTTOM_PAGE.DUNGEON then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_GOLD, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_DIAMOND, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_RUNE, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.ARENA, true) + elseif i == GConst.MainCityConst.BOTTOM_PAGE.SHOP then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SHOP, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SUMMON_WEAPON, true) + else + isOpen = ModuleManager:getIsOpen(GConst.MainCityConst.BOTTOM_MODULE_KEY[i], true) + end + self.bottomBtnCells[i]:refresh(i, targetIndex == i, icon, closeIcon, isOpen) + end + else + for i = 1, BOTTOM_BTN_CELL_COUNT do + local icon = GConst.MainCityConst.BOTTOM_ICON[i] + local closeIcon = GConst.MainCityConst.BOTTOM_CLOSE_ICON[i] + local isOpen + if i == GConst.MainCityConst.BOTTOM_PAGE.DUNGEON then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_GOLD, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_DIAMOND, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_RUNE, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.ARENA, true) + elseif i == GConst.MainCityConst.BOTTOM_PAGE.SHOP then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SHOP, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SUMMON_WEAPON, true) + else + isOpen = ModuleManager:getIsOpen(GConst.MainCityConst.BOTTOM_MODULE_KEY[i], true) + end + self.bottomBtnCells[i]:refresh(i, targetIndex == i, icon, closeIcon, isOpen) + end + end + + -- 展示页签内容 + if self.targetIndex == 0 or self.subComps[self.targetIndex] then + self:switchComp(self.targetIndex, oldIndex) + end + self:refreshBottomRedPoint() + + self:checkTutorialTaskMask() + + -- 战斗开启与暂停 + if self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.STAGE and oldIndex ~= self.targetIndex then + if self.targetIndex == 0 then + if self.resumeBattleId then + SchedulerManager:unscheduleGlobal(self.resumeBattleId) + end + self.resumeBattleId = self:performWithDelayGlobal(function() + self.resumeBattleId = nil + if self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.STAGE and oldIndex ~= self.targetIndex then + ModuleManager.BattleManager:resumeFight() + end + end, DELAY_RESUME_TIME) + else + if not DataManager.BattleData:getIsAutoFight() or self.targetIndex == GConst.MainCityConst.BOTTOM_PAGE.TRAIN then + ModuleManager.BattleManager:pauseFight() + end + end + end +end + +function MainCityUI:refreshBottomIconOnly() + for i = 1, BOTTOM_BTN_CELL_COUNT do + local icon = GConst.MainCityConst.BOTTOM_ICON[i] + local closeIcon = GConst.MainCityConst.BOTTOM_CLOSE_ICON[i] + local isOpen + if 1 == GConst.MainCityConst.BOTTOM_PAGE.DUNGEON then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_GOLD, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_DIAMOND, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.DUNGEON_RUNE, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.ARENA, true) + elseif i == GConst.MainCityConst.BOTTOM_PAGE.SHOP then + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SHOP, true) + or ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.SUMMON_WEAPON, true) + else + isOpen = ModuleManager:getIsOpen(GConst.MainCityConst.BOTTOM_MODULE_KEY[i], true) + end + self.bottomBtnCells[i]:refresh(i, self.targetIndex == i, icon, closeIcon, isOpen) + end +end + +-- 初始化页签界面 +function MainCityUI:initComp() + if not self.subComps then + local uiMap = self.root:genAllChildren() + self.subComps = {} + + -- 主角 + local heroComp = uiMap["main_ui.sub_ui_node.hero_main_comp"] + heroComp:initPrefabHelper() + heroComp:genAllChildren() + self.subComps[1] = heroComp:addLuaComponent(HERO_MAIN_COMP) + self.heroComp = self.subComps[1] + + -- 试炼副本 + local dungeonComp = uiMap["main_ui.sub_ui_node.dungeon_main_comp"] + dungeonComp:initPrefabHelper() + dungeonComp:genAllChildren() + self.subComps[2] = dungeonComp:addLuaComponent(DUNGEON_MAIN_COMP) + self.dungeonComp = self.subComps[2] + self.dungeonComp:setParentUI(self) + -- 强化 + local trainComp = uiMap["main_ui.sub_ui_node.train_main_comp"] + trainComp:initPrefabHelper() + trainComp:genAllChildren() + self.subComps[3] = trainComp:addLuaComponent(TRAIN_MAIN_COMP) + self.trainComp = self.subComps[3] + + -- 地下城 + local mineComp = uiMap["main_ui.sub_ui_node.mine_main_comp"] + mineComp:initPrefabHelper() + mineComp:genAllChildren() + self.subComps[4] = mineComp:addLuaComponent(MINE_MAIN_COMP) + self.mineComp = self.subComps[4] + self.mineComp:setParentUI(self) + + -- 商城 + local shopComp = uiMap["main_ui.sub_ui_node.shop_main_comp"] + shopComp:initPrefabHelper() + shopComp:genAllChildren() + self.subComps[5] = shopComp:addLuaComponent(SHOP_MAIN_COMP) + self.shopComp = self.subComps[5] + self.shopComp:setParentUI(self) + self:onSetUIOrder() + end +end + +-- 切换展示对应页签 +function MainCityUI:switchComp(index, oldIndex) + index = index or self.targetIndex + for i, comp in pairs(self.subComps) do + -- 页签被隐藏时调用 + if oldIndex and comp.onHide and i ~= index and oldIndex == GConst.MainCityConst.BOTTOM_PAGE.TRAIN then + comp:onHide() + end + comp:getBaseObject():setActive(i == index) + if i == index then + comp:refresh(self) + self:updateTime() + end + end + self:updateCurrencyBar() + self:checkMainPop() +end + +-- 定时器 +function MainCityUI:updateTime() + self:refreshSubComps() + self:refreshLeftNode() + self:refreshRightNode() + self:refreshBottomRedPoint() + self:updateSavePowerModeTime() + + DataManager.BlessingData:addTimeCount() +end + +-- 定时刷新子页签内容 +function MainCityUI:refreshSubComps() + -- TODO + self.shopComp:updateTime() +end + +-- 定时刷新左部分界面 +function MainCityUI:refreshLeftNode() + self:_refreshLeftSideBar() +end +-- 定时刷新左侧边栏 +function MainCityUI:_refreshLeftSideBar() + local leftNum = 0 + local offsetY = - SIDE_BAR_DEFAULT_CELL_HEIGHT / 2 + local x = 0 + local y = 0 + local rp = false -- 总红点 + + local leftSideBarNode = self.uiMap["main_ui.left_node.side_bar_bg"] + -- 祝福 ******************************************************************************************** + local isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.BLESSING, true) + if isOpen then + offsetY, leftNum, x, y = self:_getSideBtnPos(leftNum, offsetY) + end + local isShake = false + local isRed = false -- TODO 红点逻辑 + rp = rp or (isOpen and isRed) + local forceDisVisible = false + local isAdPoint = DataManager.BlessingData:showVideoPoint() + self:_refreshSideBar(SIDE_BAR_COMP_TYPE.STRENGTH, isOpen, isShake, isRed, isAdPoint, leftSideBarNode, x, y, forceDisVisible, function() + ModuleManager.BlessingManager:showBlessingMainUI() + end) + + -- 挂机 ******************************************************************************************** + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.IDLE, true) and ModuleManager.IdleManager:canGetIdleDrop() + if isOpen then + offsetY, leftNum, x, y = self:_getSideBtnPos(leftNum, offsetY) + end + isShake = true + isRed = false -- TODO 红点逻辑 + rp = rp or (isOpen and isRed) + forceDisVisible = false + local isAdPoint = false + self:_refreshSideBar(SIDE_BAR_COMP_TYPE.MONTHLY_CARD, isOpen, isShake, isRed, isAdPoint, leftSideBarNode, x, y, forceDisVisible, function() + ModuleManager.IdleManager:onBaseGetDrop() + end) + + -- 加速 ******************************************************************************************** + isOpen = DataManager.AccelerationData:getIsOpen() + if isOpen then + offsetY, leftNum, x, y = self:_getSideBtnPos(leftNum, offsetY) + end + isShake = false + isRed = false + rp = rp or (isOpen and isRed) + forceDisVisible = false + local isAdPoint = false + self:_refreshSideBar(SIDE_BAR_COMP_TYPE.SPEED_UP, isOpen, isShake, isRed, isAdPoint, leftSideBarNode, x, y, forceDisVisible, function() + ModuleManager.BattleManager:showBattleSpeedUpUI() + end) + + -- 战令/基金 ******************************************************************************************** + isOpen = ModuleManager.BountyManager:isOpen() + if isOpen then + offsetY, leftNum, x, y = self:_getSideBtnPos(leftNum, offsetY) + end + isShake = false + isRed = ModuleManager.BountyManager:showRp() + rp = rp or (isOpen and isRed) + forceDisVisible = false + local isAdPoint = false + self:_refreshSideBar(SIDE_BAR_COMP_TYPE.BOUNTY, isOpen, isShake, isRed, isAdPoint, leftSideBarNode, x, y, forceDisVisible, function() + ModuleManager.ActivityManager:showHallUI(ModuleManager.BountyManager:getAllActList()) + end) + + -- 处理总红点 + -- TODOJ +end + +-- 定时刷新章节进度 +function MainCityUI:refreshChapterSlider() + local sliderObj = self.uiMap["main_ui.chapter_slider_node.chapter_slider_comp"] + if not self.chapterSliderComp then + + sliderObj:initPrefabHelper() + sliderObj:genAllChildren() + self.chapterSliderComp = sliderObj:addLuaComponent(CHAPTER_SLIDER_COMP) + end + self.chapterSliderComp:refresh() + + -- boss章节隐藏 + if DataManager.ChapterData:checkIsFirstRewardChapter(DataManager.ChapterData:getCurChapterId() + 1) then + sliderObj:setVisible(false) + else + sliderObj:setVisible(true) + end +end + +-- 定时刷新右部分界面 +function MainCityUI:refreshRightNode() + self:_refreshEmailBtn() + self:_refreshChapterTask() + self:_refreshRightSideBar() +end +-- 定时刷新邮件 +function MainCityUI:_refreshEmailBtn() + local emailBtn = self.uiMap["main_ui.right_node.email_btn"] + emailBtn:addClickListener(function() + ModuleManager.MailManager:showUI() + end) + local mailIsOpen = DataManager.MailData:getIsOpen() + if self.mailIsOpen ~= mailIsOpen then + emailBtn:setActive(mailIsOpen) + self.mailIsOpen = mailIsOpen + end + + + local isRed, isAdRp = DataManager.MailData:getRedPoint() + if isRed then + local iconName + if isAdRp then + iconName = GFunc.getAdSprite() + end + emailBtn:addRedPoint(23, 14, 0.6, iconName, nil, true) + else + emailBtn:removeRedPoint() + end +end +-- 定时刷新任务 +function MainCityUI:_refreshChapterTask() + if not self.tutorialTaskComp then + local taskObj = self.uiMap["main_ui.right_node.tutorial_task_comp"] + taskObj:initPrefabHelper() + taskObj:genAllChildren() + self.tutorialTaskComp = self.uiMap["main_ui.right_node.tutorial_task_comp"]:addLuaComponent(TUTORIAL_TASK_COMP) + end + local over = DataManager.TutorialTaskData:getTaskCollect() + self.tutorialTaskComp:getBaseObject():setVisible(not over) + if not over then + self.tutorialTaskComp:refresh() + end +end +-- 定时刷新右侧边栏 +function MainCityUI:_refreshRightSideBar() + local rightNum = 0 + local offsetY = - SIDE_BAR_DEFAULT_CELL_HEIGHT / 2 + local x = 0 + local y = 0 + local rp = false + + local rightSideBarNode = self.uiMap["main_ui.right_node.side_bar_bg"] + -- 任务 ***************************************************************************************************** + local isOpen = true -- TODO 开启逻辑 + if isOpen then + offsetY, rightNum, x, y = self:_getSideBtnPos(rightNum, offsetY) + end + local isShake = false + local isRed = DataManager.DailyTaskData:showRedPoint() + rp = rp or (isOpen and isRed) + local forceDisVisible = false + local isAdPoint = DataManager.DailyTaskData:showAdPoint() + self:_refreshSideBar(SIDE_BAR_COMP_TYPE.TASK, isOpen, isShake, isRed, isAdPoint, rightSideBarNode, x, y, forceDisVisible, function() + ModuleManager.DailyTaskManager:showUI() + end) + + -- 图鉴 ***************************************************************************************************** + isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.COLLECTION, true) + if isOpen then + offsetY, rightNum, x, y = self:_getSideBtnPos(rightNum, offsetY) + end + isShake = false + isRed = DataManager.CollectionData:showRedPoint() + rp = rp or (isOpen and isRed) + forceDisVisible = false + local isAdPoint = false + self:_refreshSideBar(SIDE_BAR_COMP_TYPE.HANDBOOK, isOpen, isShake, isRed, isAdPoint, rightSideBarNode, x, y, forceDisVisible, function() + -- 打开图鉴界面 + ModuleManager.CollectionManager:showCollectionUI() + end) + + -- 活动 ***************************************************************************************************** + isOpen = DataManager.SevenDayData:getIsOpen() + if isOpen then + offsetY, rightNum, x, y = self:_getSideBtnPos(rightNum, offsetY) + end + isShake = false + -- isRed = ModuleManager.ActivityManager:showRp() + isRed = DataManager.SevenDayData:getRp() + rp = rp or (isOpen and isRed) + forceDisVisible = false + local isAdPoint = false + self:_refreshSideBar(SIDE_BAR_COMP_TYPE.ACTIVITY, isOpen, isShake, isRed, isAdPoint, rightSideBarNode, x, y, forceDisVisible, function() + -- ModuleManager.ActivityManager:showHallUI() + ModuleManager.SevenDayManager:showUI() + end) + + -- 处理总红点 + -- TODOJ +end + +-- 定时刷新底部红点 +function MainCityUI:refreshBottomRedPoint() + -- 英雄 + if DataManager.HeroData:showHeroRedPoint() and self.targetIndex ~= GConst.MainCityConst.BOTTOM_PAGE.HERO then + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.HERO].baseObject:addRedPoint(40, 40, 0.7) + else + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.HERO].baseObject:removeRedPoint() + end + + -- 修炼 + if DataManager.ChapterData:showTrainRedPoint() and self.targetIndex ~= GConst.MainCityConst.BOTTOM_PAGE.TRAIN then + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.TRAIN].baseObject:addRedPoint(40, 40, 0.7) + else + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.TRAIN].baseObject:removeRedPoint() + end + + -- 挖矿 + if DataManager.ResearchData:showRedPoint() and self.targetIndex ~= GConst.MainCityConst.BOTTOM_PAGE.DUNGEON then + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.DUNGEON].baseObject:addRedPoint(40, 40, 0.7) + else + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.DUNGEON].baseObject:removeRedPoint() + end + + -- 商城显示广告图标 + if DataManager.ShopData:showAdImg() and self.targetIndex ~= GConst.MainCityConst.BOTTOM_PAGE.SHOP then + local skip = DataManager.MallActData:skipAd() + local iconName = skip and "common_ad_4" or "common_ad_3" + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.SHOP].baseObject:addRedPoint(40, 40, 0.7, iconName, nil, true) + else + -- 商城 + if DataManager.ShopData:showRedPoint() and self.targetIndex ~= GConst.MainCityConst.BOTTOM_PAGE.SHOP then + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.SHOP].baseObject:addRedPoint(40, 40, 0.7, nil, nil, true) + else + self.bottomBtnCells[GConst.MainCityConst.BOTTOM_PAGE.SHOP].baseObject:removeRedPoint() + end + end + + if self.tutorialTaskFinger then + if DataManager.TutorialTaskData:showFinger() and (self.targetIndex == nil or self.targetIndex == 0) then + self.tutorialTaskFinger:setVisible(true) + self.tutorialTaskFinger:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play(50306902) + else + self.tutorialTaskFinger:setVisible(false) + end + end +end + +-- 检测弹窗 +function MainCityUI:checkMainPop() + local topUI = UIManager:getTopUIObj() + if topUI:getUIIndex() ~= self:getUIIndex() then + return + end + + -- 签到弹窗 + local signIsOpen = ModuleManager.SignInManager:getIsSignInOpen() + if signIsOpen and self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.STAGE then + local signCount, canSignIn, hasSigned = DataManager:getSignInfo() + if signCount < 7 and (not hasSigned) and canSignIn then + ModuleManager.SignInManager:showSignMainUI() + return + end + end + self:checkTutorial() +end + +-- 动态获取侧边栏按钮 +function MainCityUI:_refreshSideBar(type, isOpen, isShake, isRed, isAdPoint, parent, x, y, forceDisVisible, clickCallback) + if not self.sideBarCells then + self.sideBarCells = {} + end + if not self.sideBarCells[type] then + if not self.loadingSideBarCells then + self.loadingSideBarCells = {} + end + if not self.loadingSideBarCells[type] then -- 未加载中,加载对应模块侧边栏按钮 + self.loadingSideBarCells[type] = true + + CellManager:loadCellAsync(SIDE_BAR_PREFAB_PATH[type], SIDE_BAR_COMP_PATH[type], parent, function(cell) + self.loadingSideBarCells[type] = false + -- 如果已经加载了 则销毁新生成的 + if self.sideBarCells[type] then + self.sideBarCells[type]:refresh(self, isOpen, isShake, isRed, isAdPoint, x, y, forceDisVisible, clickCallback) + + cell.baseObject:destroy() + return + end + cell.baseObject:getGameObject().name = SIDE_BAR_NAME[type] + self.sideBarCells[type] = cell + self.sideBarCells[type]:refresh(self, isOpen, isShake, isRed, isAdPoint, x, y, forceDisVisible, clickCallback) + end) + end + else + self.sideBarCells[type]:refresh(self, isOpen, isShake, isRed, isAdPoint, x, y, forceDisVisible, clickCallback) + end +end + +-- 获取侧边栏按钮相对位置 +function MainCityUI:_getSideBtnPos(btnNum, offsetY, isRight) + local x = 0 + local y = offsetY + local maxColumnNum = self:_getMaxColumnNum() + btnNum = btnNum + 1 + if btnNum < maxColumnNum then + offsetY = offsetY - (SIDE_BAR_DEFAULT_CELL_HEIGHT + SIDE_BAR_DEFAULT_CELL_HEIGHT_SPACE) + else + local num = btnNum - maxColumnNum + if num > 0 then + if not isRight then + x = SIDE_BAR_DEFAULT_CELL_WIDTH + SIDE_BAR_DEFAULT_CELL_WIDTH_SPACE + else + x = - (SIDE_BAR_DEFAULT_CELL_WIDTH + SIDE_BAR_DEFAULT_CELL_WIDTH_SPACE) + end + end + offsetY = -(SIDE_BAR_DEFAULT_CELL_HEIGHT / 2) - num * (SIDE_BAR_DEFAULT_CELL_HEIGHT + SIDE_BAR_DEFAULT_CELL_HEIGHT_SPACE) + end + return offsetY, btnNum, x, y +end + +-- 侧边栏按钮可支持数量 +function MainCityUI:_getMaxColumnNum() + if not self.maxColumnNum then + local screenOffsetY = GFunc.calculateFitSizeY() + self.maxColumnNum = 5 + screenOffsetY // (SIDE_BAR_DEFAULT_CELL_HEIGHT + SIDE_BAR_DEFAULT_CELL_HEIGHT_SPACE) + end + return self.maxColumnNum +end + +function MainCityUI:checkTutorial() + if self.targetIndex == nil or self.targetIndex == 0 then + ModuleManager.TutorialManager:checkAndPlayForceTutorial() + end +end + +-- 提供给战斗使用 隐藏除战斗外的UI +function MainCityUI:hideMainUIExceptBattle() + if self.chapterSliderComp then + self.chapterSliderComp.baseObject:setVisible(false) + end + local leftNode = self.uiMap["main_ui.left_node"] + leftNode:setVisible(false) + local rightNode = self.uiMap["main_ui.right_node"] + rightNode:setVisible(false) + local bottomNode = self.uiMap["main_ui.bottom_node"] + bottomNode:setVisible(false) + + self:refreshBottom(nil, true) +end + +function MainCityUI:showMainUIExceptBattle() + if self.chapterSliderComp then + self.chapterSliderComp.baseObject:setVisible(true) + end + local leftNode = self.uiMap["main_ui.left_node"] + leftNode:setVisible(true) + local rightNode = self.uiMap["main_ui.right_node"] + rightNode:setVisible(true) + local bottomNode = self.uiMap["main_ui.bottom_node"] + bottomNode:setVisible(true) +end + +function MainCityUI:refreshPower() + local hero = DataManager.HeroData:getMainHeroEntity() + if hero then + local powerTx = self.uiMap["main_ui.role_node.power_node.power_tx"] + powerTx:setText(BigNumOpt.bigNum2Str4Power(hero:getPower())) + end +end + +function MainCityUI:showBlackUI(desc, time, isShowFail) + -- 自动关闭 + if self.scheduleId then + self:unscheduleGlobal(self.scheduleId) + end + self.scheduleId = self:performWithDelayGlobal(function() + self.scheduleId = nil + self:hideBlackUI() + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.BATTLE_CLOSE_CHAPTER_BLACK_UI) + end, + time) + + -- 表现 + local descTx = self.uiMap["main_ui.black_node.black_bg.desc_tx"] + descTx:setText(nil) + local mask = self.uiMap["main_ui.black_node.black_bg"] + mask:setVisible(true) + local canvasGroup = mask:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS_GROUP) + canvasGroup.alpha = 0 + + local sequence = mask:createBindTweenSequence() + local fadeTween = canvasGroup:DOFade(1, BLACK_FADE_TIME) + sequence:Append(fadeTween) + sequence:OnComplete(function() + descTx:setText(desc) + if not isShowFail then + Game:garbageCollect() + end + end) +end + +function MainCityUI:hideBlackUI() + local mask = self.uiMap["main_ui.black_node.black_bg"] + mask:setVisible(false) +end + +function MainCityUI:updateSavePowerModeTime() + local isOpen = ModuleManager:getIsOpen(ModuleManager.MODULE_KEY.POWER_SAVE_MODE, true) + local topUI = UIManager:getTopUIObj() + if isOpen and ModuleManager.GameSettingManager:getSavePowerMode() == 1 and topUI:getUIIndex() == self:getUIIndex() and self.battleType == ModuleManager.BattleManager.BATTLE_TYPE.STAGE then + self.savePowerModeTime = self.savePowerModeTime - 1 + if self.savePowerModeTime < 0 then + ModuleManager.GameSettingManager:showSavePowerUI() + + self:resetSavePowerTime() + end + end +end + +function MainCityUI:resetSavePowerTime() + self.savePowerModeTime = SAVE_POWER_MODE_TIME +end + +---- 引导任务强制领取 +function MainCityUI:checkTutorialTaskMask() + if not self.targetIndex or self.targetIndex == 0 then + if DataManager.TutorialTaskData:showMaskFinger() then + self:showTutorialTaskNode() + else + self:hideTutorialTaskNode() + end + end +end + +function MainCityUI:showTutorialTaskNode() + if not self.uiMap then + return + end + self.uiMap["main_ui.tutorial_task_node"]:setVisible(true) + + if not self.tutorialMaskMat then + self.tutorialMaskMat = CS.UnityEngine.Object.Instantiate(RenderManager:getUITutorialMat()) + self.tutorialMask = self.uiMap["main_ui.tutorial_task_node.mask"] + self.tutorialMask:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE).material = self.tutorialMaskMat + self.clickArea = self.uiMap["main_ui.tutorial_task_node.click_area"] + self.clickArea:addClickListener(function() + end) + + local taskComp = self.uiMap["main_ui.right_node.tutorial_task_comp"] + local rectTransform = taskComp:getComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM) + local rect = rectTransform.rect + local anchoredPosition = self:getTargetAnchoredPosition(taskComp) + + self.tutorialMaskMat:SetVector(self:getCenterPropertyID(), {x = anchoredPosition.x, y = anchoredPosition.y, z = 0, w = 0}) + self.tutorialMaskMat:SetFloat(self:getEllipsePropertyID(), 10) + + self.tutorialMaskMat:SetFloat(self:getRectXPropertyID(), rect.width / 2 + 20) + self.tutorialMaskMat:SetFloat(self:getRectYPropertyID(), rect.height / 2 + 20) + + self.tutorialFingerNode = self.uiMap["main_ui.tutorial_task_node.finger_node"] + self.tutorialBlockTouch = self.uiMap["main_ui.tutorial_task_node.block_touch"] + self.tutorialBlockTouch:addClickListener(function() + self.tutorialFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play("finger_click_prompt", -1, 0) + end) + + self.tutorialClickAreaCS = self.clickArea:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_TUTORIAL_CLICKAREA) + self.tutorialClickAreaCS:ClearTargetTransform() + self.tutorialClickAreaCS:SetTargetTransform(self.uiMap["main_ui.right_node.tutorial_task_comp.chapter_task_bg"]:getTransform()) + end + self.tutorialFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play("finger_click_prompt", -1, 0) + + self.showingTutorialTaskNode = true + ModuleManager.BattleManager:pauseFightByTutorial() +end + +function MainCityUI:getTargetAnchoredPosition(targetGo) + local rectTransform = targetGo:getComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM) + local rect = rectTransform.rect + local localToWorldMatrix = rectTransform.localToWorldMatrix + local tarCornerMid = localToWorldMatrix:MultiplyPoint3x4(BF.Vector3((rect.xMax + rect.x) / 2, (rect.yMax + rect.y) / 2, 0)) + local screenPos = UIManager:getUICameraComponent():WorldToScreenPoint(tarCornerMid) + local anchoredPosition = CS.BF.Utils.RectTransformScreenPointToLocalPointInRectangle(self.root:getTransform(), screenPos.x, screenPos.y, UIManager:getUICameraComponent()) + return anchoredPosition +end + +function MainCityUI:getCenterPropertyID() + if not self._tutorialMatCenterId then + self._tutorialMatCenterId = CS.UnityEngine.Shader.PropertyToID("_Center") + end + return self._tutorialMatCenterId +end + +function MainCityUI:getEllipsePropertyID() + if not self._tutorialMatEllipseId then + self._tutorialMatEllipseId = CS.UnityEngine.Shader.PropertyToID("_Ellipse") + end + return self._tutorialMatEllipseId +end + +function MainCityUI:getRectXPropertyID() + if not self._tutorialMatRectXId then + self._tutorialMatRectXId = CS.UnityEngine.Shader.PropertyToID("_Rect_X") + end + return self._tutorialMatRectXId +end + +function MainCityUI:getRectYPropertyID() + if not self._tutorialMatRectYId then + self._tutorialMatRectYId = CS.UnityEngine.Shader.PropertyToID("_Rect_Y") + end + return self._tutorialMatRectYId +end + +function MainCityUI:hideTutorialTaskNode() + if not self.uiMap then + return + end + self.uiMap["main_ui.tutorial_task_node"]:setVisible(false) + if self.showingTutorialTaskNode then + ModuleManager.BattleManager:resumeFightByTutorial() + end + self.showingTutorialTaskNode = false +end + +---- end 引导任务强制领取 + +function MainCityUI:onClose() + if self.sideBarCells then + for k, cell in pairs(self.sideBarCells) do + self.sideBarCells[k] = nil + cell.baseObject:destroy() + end + end + if self.loadingSideBarCells then + for k, _ in pairs(self.loadingSideBarCells) do + self.loadingSideBarCells[k] = false + end + end + DataManager:unregisterCrossDayFunc("crossDay") +end + +return MainCityUI \ No newline at end of file diff --git a/lua/app/ui/main_city/main_city_ui.lua.meta b/lua/app/ui/main_city/main_city_ui.lua.meta new file mode 100644 index 00000000..90acce00 --- /dev/null +++ b/lua/app/ui/main_city/main_city_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 1749595a157b86843a645fc0a0e733e1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/mining.meta b/lua/app/ui/mining.meta new file mode 100644 index 00000000..949fb89a --- /dev/null +++ b/lua/app/ui/mining.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 79ad94662b68c4a4e928efa98eaff097 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/research.meta b/lua/app/ui/research.meta new file mode 100644 index 00000000..e028fa7a --- /dev/null +++ b/lua/app/ui/research.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6de5c15e421575d43a8631dee02abdea +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/shop.meta b/lua/app/ui/shop.meta new file mode 100644 index 00000000..b08269cb --- /dev/null +++ b/lua/app/ui/shop.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: ef6c3d6d6879f8c43a44edea3d10add2 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/signin.meta b/lua/app/ui/signin.meta new file mode 100644 index 00000000..8b1a002e --- /dev/null +++ b/lua/app/ui/signin.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6c5aad18b7c407847b1774e6e7c40c6d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/summon_pop.meta b/lua/app/ui/summon_pop.meta new file mode 100644 index 00000000..c7c971c5 --- /dev/null +++ b/lua/app/ui/summon_pop.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: b4d1c7aadb8577c458291535ce7bff51 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/tips.meta b/lua/app/ui/tips.meta new file mode 100644 index 00000000..1133a8e0 --- /dev/null +++ b/lua/app/ui/tips.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d1f39accafc26674ca4b1eae0b54af71 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/tips/base_tips.lua b/lua/app/ui/tips/base_tips.lua new file mode 100644 index 00000000..eb59a1ac --- /dev/null +++ b/lua/app/ui/tips/base_tips.lua @@ -0,0 +1,131 @@ +local BaseTips = class("BaseTips", BaseUI) + + +function BaseTips:isFullScreen() + return false +end + +function BaseTips:showCommonBG() + return false +end + +function BaseTips:getOffsetX() + return 10 +end + +function BaseTips:getOffsetY() + return 10 +end + +function BaseTips:getPosPercentX() + return 0.25 +end + +function BaseTips:getPosPercentY() + return 0.15 +end + +function BaseTips:getFinalX() + return 0 +end + +function BaseTips:getFinalY() + return 0 +end + +function BaseTips:locate(location, originSizeDelta, node, tarCornerScreenPos) + local uiCamera = UIManager:getUICameraComponent() + local tarCornerLp = CS.BF.Utils.RectTransformScreenPointToLocalPointInRectangle(UIManager:getMainCanvasTransform(), tarCornerScreenPos.x, tarCornerScreenPos.y, uiCamera) + if location == ModuleManager.TipsManager.ALIGN_TYPE.TOP_CENTER then + node:getTransform().pivot = BF.Vector2(0.5, 0) + node:addLocalPosition(tarCornerLp.x, tarCornerLp.y + self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 0.5, 0) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.TOP_LEFT then + node:getTransform().pivot = BF.Vector2(0, 0) + node:addLocalPosition(tarCornerLp.x - node:getTransform().sizeDelta.x*self:getPosPercentX(), tarCornerLp.y + self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 0, 0) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.TOP_RIGHT then + node:getTransform().pivot = BF.Vector2(1, 0) + node:addLocalPosition(tarCornerLp.x + node:getTransform().sizeDelta.x*self:getPosPercentX(), tarCornerLp.y + self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 1, 0) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.BOTTOM_CENTER then + node:getTransform().pivot = BF.Vector2(0.5, 1) + node:addLocalPosition(tarCornerLp.x, tarCornerLp.y - self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 0.5, 1) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.BOTTOM_LEFT then + node:getTransform().pivot = BF.Vector2(0, 1) + node:addLocalPosition(tarCornerLp.x - node:getTransform().sizeDelta.x*self:getPosPercentX(), tarCornerLp.y - self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 0, 1) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.BOTTOM_RIGHT then + node:getTransform().pivot = BF.Vector2(1, 1) + node:addLocalPosition(tarCornerLp.x + node:getTransform().sizeDelta.x*self:getPosPercentX(), tarCornerLp.y - self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 1, 1) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.LEFT_TOP then + node:getTransform().pivot = BF.Vector2(1, 0.5) + local posy = node:getTransform().sizeDelta.y/2 - originSizeDelta.y*(0.5 - self:getPosPercentY()) + node:addLocalPosition(tarCornerLp.x - self:getOffsetX(), tarCornerLp.y - posy, 0) + self:adaptWhenOverScreen(node, 1, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.LEFT_CENTER then + node:getTransform().pivot = BF.Vector2(1, 0.5) + node:addLocalPosition(tarCornerLp.x - self:getOffsetX(), tarCornerLp.y, 0) + self:adaptWhenOverScreen(node, 1, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.LEFT_BOTTOM then + node:getTransform().pivot = BF.Vector2(1, 0.5) + local posy = node:getTransform().sizeDelta.y/2 - originSizeDelta.y*(0.5 - self:getPosPercentY()) + node:addLocalPosition(tarCornerLp.x - self:getOffsetX(), tarCornerLp.y + posy, 0) + self:adaptWhenOverScreen(node, 1, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.RIGHT_TOP then + node:getTransform().pivot = BF.Vector2(0, 0.5) + local posy = node:getTransform().sizeDelta.y/2 - originSizeDelta.y*(0.5 - self:getPosPercentY()) + node:addLocalPosition(tarCornerLp.x + self:getOffsetX(), tarCornerLp.y - posy, 0) + self:adaptWhenOverScreen(node, 0, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.RIGHT_CENTER then + node:getTransform().pivot = BF.Vector2(0, 0.5) + node:addLocalPosition(tarCornerLp.x + self:getOffsetX(), tarCornerLp.y, 0) + self:adaptWhenOverScreen(node, 0, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.RIGHT_BOTTOM then + node:getTransform().pivot = BF.Vector2(0, 0.5) + local posy = node:getTransform().sizeDelta.y/2 - originSizeDelta.y*(0.5 - self:getPosPercentY()) + node:addLocalPosition(tarCornerLp.x + self:getOffsetX(), tarCornerLp.y + posy, 0) + self:adaptWhenOverScreen(node, 0, 0.5) + end + + self:finalSetPos(node) +end + +function BaseTips:adaptWhenOverScreen(node, pivotX, pivotY) + local halfWidth = GConst.DESIGN_RESOLUTION_WIDTH / 2 + local halfHeight = GConst.DESIGN_RESOLUTION_HEIGHT / 2 + local anchoredPos = node:getAnchoredPosition() + local sizeDelta = node:getSizeDelta() + local leftX = anchoredPos.x - sizeDelta.x * (pivotX - 0) + local rightX = anchoredPos.x + sizeDelta.x * (1 - pivotX) + local topY = anchoredPos.y + sizeDelta.y * (1 - pivotY) + local bottomY = anchoredPos.y - sizeDelta.y * (pivotY - 0) + -- 左边超出屏幕 + if math.abs(leftX) > halfWidth then + node:addAnchoredPosition(math.abs(leftX) - halfWidth, 0) + end + -- 右边超出屏幕 + if math.abs(rightX) > halfWidth then + node:addAnchoredPosition(halfWidth - math.abs(rightX), 0) + end + -- 上边超出屏幕 + if math.abs(topY) > halfHeight then + node:addAnchoredPosition(0, halfHeight - math.abs(topY)) + end + -- 下边超出屏幕 + if math.abs(bottomY) > halfHeight then + node:addAnchoredPosition(0, math.abs(bottomY) - halfHeight) + end +end + +function BaseTips:finalSetPos(node) + node:addLocalPosition(self:getFinalX(), self:getFinalY(), 0) +end + +function BaseTips:showCurrencyAction(pos) + UIManager:showCurrencyAction(pos) +end + +return BaseTips \ No newline at end of file diff --git a/lua/app/ui/tips/base_tips.lua.meta b/lua/app/ui/tips/base_tips.lua.meta new file mode 100644 index 00000000..a5bc1dad --- /dev/null +++ b/lua/app/ui/tips/base_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 2624c46f3dfe01f439431733717296ee +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/base_tips_comp.lua b/lua/app/ui/tips/base_tips_comp.lua new file mode 100644 index 00000000..d0397b6b --- /dev/null +++ b/lua/app/ui/tips/base_tips_comp.lua @@ -0,0 +1,136 @@ +local BaseTipsComp = class("BaseTipsComp", LuaComponent) + +------------------------------------ override ------------------------------------ +---- 刷新时调用 +function BaseTipsComp:refresh(params) + +end + +---- 界面关闭时会主动调此方法 +function BaseTipsComp:onUIClose() + +end + +------------------------------------ end override ------------------------------------ + +---- pop ui相同的动画,需要主动调用 +function BaseTipsComp:showPopAni(callback) + GFunc.showPopAni(self:getBaseObject(), callback) +end + +function BaseTipsComp:getOffsetX() + return 10 +end + +function BaseTipsComp:getOffsetY() + return 10 +end + +function BaseTipsComp:getPosPercentX() + return 0.25 +end + +function BaseTipsComp:getPosPercentY() + return 0.15 +end + +function BaseTipsComp:getFinalX() + return 0 +end + +function BaseTipsComp:getFinalY() + return 0 +end + +function BaseTipsComp:locate(location, originSizeDelta, node, tarCornerScreenPos) + local uiCamera = UIManager:getUICameraComponent() + local tarCornerLp = CS.BF.Utils.RectTransformScreenPointToLocalPointInRectangle(UIManager:getMainCanvasTransform(), tarCornerScreenPos.x, tarCornerScreenPos.y, uiCamera) + if location == ModuleManager.TipsManager.ALIGN_TYPE.TOP_CENTER then + node:getTransform().pivot = BF.Vector2(0.5, 0) + node:addLocalPosition(tarCornerLp.x, tarCornerLp.y + self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 0.5, 0) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.TOP_LEFT then + node:getTransform().pivot = BF.Vector2(0, 0) + node:addLocalPosition(tarCornerLp.x - node:getTransform().sizeDelta.x*self:getPosPercentX(), tarCornerLp.y + self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 0, 0) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.TOP_RIGHT then + node:getTransform().pivot = BF.Vector2(1, 0) + node:addLocalPosition(tarCornerLp.x + node:getTransform().sizeDelta.x*self:getPosPercentX(), tarCornerLp.y + self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 1, 0) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.BOTTOM_CENTER then + node:getTransform().pivot = BF.Vector2(0.5, 1) + node:addLocalPosition(tarCornerLp.x, tarCornerLp.y - self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 0.5, 1) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.BOTTOM_LEFT then + node:getTransform().pivot = BF.Vector2(0, 1) + node:addLocalPosition(tarCornerLp.x - node:getTransform().sizeDelta.x*self:getPosPercentX(), tarCornerLp.y - self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 0, 1) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.BOTTOM_RIGHT then + node:getTransform().pivot = BF.Vector2(1, 1) + node:addLocalPosition(tarCornerLp.x + node:getTransform().sizeDelta.x*self:getPosPercentX(), tarCornerLp.y - self:getOffsetY(), 0) + self:adaptWhenOverScreen(node, 1, 1) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.LEFT_TOP then + node:getTransform().pivot = BF.Vector2(1, 0.5) + local posy = node:getTransform().sizeDelta.y/2 - originSizeDelta.y*(0.5 - self:getPosPercentY()) + node:addLocalPosition(tarCornerLp.x - self:getOffsetX(), tarCornerLp.y - posy, 0) + self:adaptWhenOverScreen(node, 1, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.LEFT_CENTER then + node:getTransform().pivot = BF.Vector2(1, 0.5) + node:addLocalPosition(tarCornerLp.x - self:getOffsetX(), tarCornerLp.y, 0) + self:adaptWhenOverScreen(node, 1, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.LEFT_BOTTOM then + node:getTransform().pivot = BF.Vector2(1, 0.5) + local posy = node:getTransform().sizeDelta.y/2 - originSizeDelta.y*(0.5 - self:getPosPercentY()) + node:addLocalPosition(tarCornerLp.x - self:getOffsetX(), tarCornerLp.y + posy, 0) + self:adaptWhenOverScreen(node, 1, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.RIGHT_TOP then + node:getTransform().pivot = BF.Vector2(0, 0.5) + local posy = node:getTransform().sizeDelta.y/2 - originSizeDelta.y*(0.5 - self:getPosPercentY()) + node:addLocalPosition(tarCornerLp.x + self:getOffsetX(), tarCornerLp.y - posy, 0) + self:adaptWhenOverScreen(node, 0, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.RIGHT_CENTER then + node:getTransform().pivot = BF.Vector2(0, 0.5) + node:addLocalPosition(tarCornerLp.x + self:getOffsetX(), tarCornerLp.y, 0) + self:adaptWhenOverScreen(node, 0, 0.5) + elseif location == ModuleManager.TipsManager.ALIGN_TYPE.RIGHT_BOTTOM then + node:getTransform().pivot = BF.Vector2(0, 0.5) + local posy = node:getTransform().sizeDelta.y/2 - originSizeDelta.y*(0.5 - self:getPosPercentY()) + node:addLocalPosition(tarCornerLp.x + self:getOffsetX(), tarCornerLp.y + posy, 0) + self:adaptWhenOverScreen(node, 0, 0.5) + end + + self:finalSetPos(node) +end + +function BaseTipsComp:adaptWhenOverScreen(node, pivotX, pivotY) + local halfWidth = GConst.DESIGN_RESOLUTION_WIDTH / 2 + local halfHeight = GConst.DESIGN_RESOLUTION_HEIGHT / 2 + local anchoredPos = node:getAnchoredPosition() + local sizeDelta = node:getSizeDelta() + local leftX = anchoredPos.x - sizeDelta.x * (pivotX - 0) + local rightX = anchoredPos.x + sizeDelta.x * (1 - pivotX) + local topY = anchoredPos.y + sizeDelta.y * (1 - pivotY) + local bottomY = anchoredPos.y - sizeDelta.y * (pivotY - 0) + -- 左边超出屏幕 + if math.abs(leftX) > halfWidth then + node:addAnchoredPosition(math.abs(leftX) - halfWidth, 0) + end + -- 右边超出屏幕 + if math.abs(rightX) > halfWidth then + node:addAnchoredPosition(halfWidth - math.abs(rightX), 0) + end + -- 上边超出屏幕 + if math.abs(topY) > halfHeight then + node:addAnchoredPosition(0, halfHeight - math.abs(topY)) + end + -- 下边超出屏幕 + if math.abs(bottomY) > halfHeight then + node:addAnchoredPosition(0, math.abs(bottomY) - halfHeight) + end +end + +function BaseTipsComp:finalSetPos(node) + node:addLocalPosition(self:getFinalX(), self:getFinalY(), 0) +end + +return BaseTipsComp \ No newline at end of file diff --git a/lua/app/ui/tips/base_tips_comp.lua.meta b/lua/app/ui/tips/base_tips_comp.lua.meta new file mode 100644 index 00000000..273ea999 --- /dev/null +++ b/lua/app/ui/tips/base_tips_comp.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 963b957e66998c6468f6d61374611649 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/base_tips_ui.lua b/lua/app/ui/tips/base_tips_ui.lua new file mode 100644 index 00000000..1f6312f6 --- /dev/null +++ b/lua/app/ui/tips/base_tips_ui.lua @@ -0,0 +1,63 @@ +local BaseTipsUI = class("BattleSkillTips", BaseUI) + +function BaseTipsUI:isFullScreen() + return false +end + +function BaseTipsUI:getType() + return UIManager.UI_TYPE.MULTI +end + +---- params = {tipsCompPrefabPath = ?, tipsCompLuaPath = ?, tipsCompParams = ?} +function BaseTipsUI:ctor(params) + self.curTipsCompPrefabPath = params.tipsCompPrefabPath + self.curTipsCompLuaPath = params.tipsCompLuaPath + self.curTipsCompParams = params.tipsCompParams +end + +function BaseTipsUI:getPrefabPath() + return "assets/prefabs/ui/tips/base_tips_ui.prefab" +end + +function BaseTipsUI:onLoadRootComplete() + self:clearSubComps() + if not self.root.__tipsComps then + self.root.__tipsComps = {} + end + if self.root.__tipsComps[self.curTipsCompLuaPath] then + self.root.__tipsComps[self.curTipsCompLuaPath]:getBaseObject():setActive(true) + self.root.__tipsComps[self.curTipsCompLuaPath]:refresh(self.curTipsCompParams) + else + UIPrefabManager:loadUIWidgetAsync(self.curTipsCompPrefabPath, self.root, function(prefabObject) + if prefabObject:getAssetPath() ~= self.curTipsCompPrefabPath then + prefabObject:destroy() + return + end + + prefabObject:initPrefabHelper() + prefabObject:genAllChildren() + self.root.__tipsComps[self.curTipsCompLuaPath] = prefabObject:addLuaComponent(self.curTipsCompLuaPath) + self.root.__tipsComps[self.curTipsCompLuaPath]:refresh(self.curTipsCompParams) + end) + end + + self.root:addClickListener(function() + self:closeUI() + end) +end + +function BaseTipsUI:clearSubComps() + if not self.root.__tipsComps then + return + end + for path, comp in pairs(self.root.__tipsComps) do + comp:onUIClose() + comp:getBaseObject():setActive(false) + end +end + +function BaseTipsUI:onClose() + self:clearSubComps() +end + +return BaseTipsUI \ No newline at end of file diff --git a/lua/app/ui/tips/base_tips_ui.lua.meta b/lua/app/ui/tips/base_tips_ui.lua.meta new file mode 100644 index 00000000..08cb2298 --- /dev/null +++ b/lua/app/ui/tips/base_tips_ui.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 5f5cfb483539483499fc2e9b0c983c30 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/cell.meta b/lua/app/ui/tips/cell.meta new file mode 100644 index 00000000..20f1a977 --- /dev/null +++ b/lua/app/ui/tips/cell.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c53f8b496e53fa542aef4f723475b724 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/tips/cell/attr_tips_cell.lua b/lua/app/ui/tips/cell/attr_tips_cell.lua new file mode 100644 index 00000000..483ee70a --- /dev/null +++ b/lua/app/ui/tips/cell/attr_tips_cell.lua @@ -0,0 +1,48 @@ +local AttrTipsCell = class("AttrTipsCell", BaseCell) + +function AttrTipsCell:init() + local uiMap = self:getUIMap() + + self.nameTxs = {} + self.descTxs = {} + self.lines = {} + for i = 1, 8 do + self.nameTxs[i] = uiMap['cell.name_tx_' .. i] + self.descTxs[i] = uiMap['cell.desc_tx_' .. i] + self.lines[i] = uiMap['cell.line_' .. i] + end +end + +function AttrTipsCell:refresh() + if self.height then + return + end + local offsetY = -12 - 10 + for i = 1, 8 do + self.nameTxs[i]:setText(I18N:getGlobalText(I18N.GlobalConst["ATTR_NAME_" .. i])) + self.descTxs[i]:setText(I18N:getGlobalText(I18N.GlobalConst["ATTR_DESC_" .. i])) + + self.nameTxs[i]:setAnchoredPositionY(offsetY) + local meshProComp = self.nameTxs[i]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + offsetY = offsetY - meshProComp.preferredHeight + + offsetY = offsetY - 11 + self.lines[i]:setAnchoredPositionY(offsetY) + offsetY = offsetY - 11 + + self.descTxs[i]:setAnchoredPositionY(offsetY) + local meshProComp = self.descTxs[i]:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + offsetY = offsetY - meshProComp.preferredHeight + offsetY = offsetY - 28 + end + + self.baseObject:setSizeDeltaY(-offsetY) + + self.height = -offsetY +end + +function AttrTipsCell:getMaxHeight() + return self.height +end + +return AttrTipsCell \ No newline at end of file diff --git a/lua/app/ui/tips/cell/attr_tips_cell.lua.meta b/lua/app/ui/tips/cell/attr_tips_cell.lua.meta new file mode 100644 index 00000000..8a0d9628 --- /dev/null +++ b/lua/app/ui/tips/cell/attr_tips_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e8bf1f473cebe05478742ed8455780a3 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/cell/boss_guide_hero_cell.lua b/lua/app/ui/tips/cell/boss_guide_hero_cell.lua new file mode 100644 index 00000000..401626e8 --- /dev/null +++ b/lua/app/ui/tips/cell/boss_guide_hero_cell.lua @@ -0,0 +1,28 @@ +local HeroConst = require "app/module/hero/hero_const" + +local BossGuideHeroCell = class("BossGuideHeroCell", BaseCell) + +function BossGuideHeroCell:init() + local uiMap = self:getUIMap() + self.heroCell = uiMap["hero_cell.hero_large_cell"]:addLuaComponent(GConst.TYPEOF_LUA_CLASS.HERO_LARGE_CELL) + self.heroCell:addClickListener(function() + if self.heroId then + ModuleManager.HeroManager:showSingleHeroShowUI(self.heroId) + end + end) + self.nameTx = uiMap["hero_cell.name_text"] + self.descTx = uiMap["hero_cell.desc_text"] +end + +function BossGuideHeroCell:refresh(heroId, suggestId) + self.heroId = heroId + self.heroCell:refreshByHeroInfo(heroId, GConst.EMPTY_STRING, 0) + + local heroTextInfo = I18N:getConfig("hero")[heroId] + if heroTextInfo then + self.nameTx:setText(heroTextInfo.name) + end + self.descTx:setText(I18N:getGlobalText(I18N.GlobalConst["HERO_SUGGEST_DESC_" .. suggestId])) +end + +return BossGuideHeroCell \ No newline at end of file diff --git a/lua/app/ui/tips/cell/boss_guide_hero_cell.lua.meta b/lua/app/ui/tips/cell/boss_guide_hero_cell.lua.meta new file mode 100644 index 00000000..5da45277 --- /dev/null +++ b/lua/app/ui/tips/cell/boss_guide_hero_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 429d8b244736e8d49a895ca468fec8f7 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/cell/boss_strategy_cell.lua b/lua/app/ui/tips/cell/boss_strategy_cell.lua new file mode 100644 index 00000000..8a74d314 --- /dev/null +++ b/lua/app/ui/tips/cell/boss_strategy_cell.lua @@ -0,0 +1,21 @@ +local BossStrategyCell = class("BossStrategyCell", BaseCell) + +function BossStrategyCell:init() + local uiMap = self:getUIMap() + + self.line = uiMap['cell.line'] + self.tx = uiMap['cell.difficulty_tx'] +end + +function BossStrategyCell:refresh(params) + self.line:setVisible(params.idx ~= 1) + local str = "" + if params.idx == params.curIdx then + str = "" .. I18N:getGlobalText(I18N.GlobalConst.ADVENTURE_STRATEGY_DESC, params.idx) .. "" + else + str = "" .. I18N:getGlobalText(I18N.GlobalConst.ADVENTURE_STRATEGY_DESC, params.idx) .. "" + end + self.tx:setText(str) +end + +return BossStrategyCell \ No newline at end of file diff --git a/lua/app/ui/tips/cell/boss_strategy_cell.lua.meta b/lua/app/ui/tips/cell/boss_strategy_cell.lua.meta new file mode 100644 index 00000000..2a40a83d --- /dev/null +++ b/lua/app/ui/tips/cell/boss_strategy_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0a4ef92ad772d8f43b212af71cd1fba5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/cell/equip_group_cell.lua b/lua/app/ui/tips/cell/equip_group_cell.lua new file mode 100644 index 00000000..68c8a3a2 --- /dev/null +++ b/lua/app/ui/tips/cell/equip_group_cell.lua @@ -0,0 +1,140 @@ +local EquipGroupCell = class("EquipGroupCell", BaseCell) + +local H = { + NORMAL = 112, + HAS_TITLE = 190, + FIRST = 180, +} + +local PROBABILITY_HEIGHT = 58 + +function EquipGroupCell:refresh(equipInfoList, type) + local uiMap = self:getUIMap() + if not self.equipCells then + self.equipCells = {} + for i = 1, 6 do + self.equipCells[i] = CellManager:addCellComp(uiMap["equil_group_cell.line.equip_cell_" .. i], GConst.TYPEOF_LUA_CLASS.EQUIP_CELL) + end + end + + local isProbability = equipInfoList.isProbability + + for i, cell in ipairs(self.equipCells) do + local equipId = nil + if not isProbability then + equipId = equipInfoList.equipList[i] + end + cell:getBaseObject():setActive(equipId ~= nil) + if equipId then + cell:refreshByCfg(equipId) + cell:addClickListener(function() + ModuleManager.TipsManager:showEquipTips(nil, equipId) + end) + else + cell:addClickListener(nil) + end + end + + local probabilityCount = 0 + if GFunc.showProbability() then + uiMap["equil_group_cell.probability"]:setVisible(isProbability) + if isProbability then + local y = -2 + + local img = uiMap["equil_group_cell.probability.line_img_desc"] + local tx = uiMap["equil_group_cell.probability.line_img_desc.tx"] + probabilityCount = probabilityCount + 1 + img:setAnchoredPositionY(y) + tx:setText(I18N:getGlobalText(I18N.GlobalConst.PROBABILITY_TIPS_DESC)) + y = y + PROBABILITY_HEIGHT + + local img = uiMap["equil_group_cell.probability.line_img_1"] + local tx = uiMap["equil_group_cell.probability.line_img_1.tx"] + local tx1 = uiMap["equil_group_cell.probability.line_img_1.tx_1"] + local probability = equipInfoList.normal.probability + img:setVisible(probability > 0) + if probability > 0 then + probabilityCount = probabilityCount + 1 + img:setAnchoredPositionY(y) + tx:setText(I18N:getGlobalText(I18N.GlobalConst.NORMAL_EQUIP_DESC)) + tx1:setText(probability .. "%") + y = y + PROBABILITY_HEIGHT + end + + img = uiMap["equil_group_cell.probability.line_img_2"] + tx = uiMap["equil_group_cell.probability.line_img_2.tx"] + tx1 = uiMap["equil_group_cell.probability.line_img_2.tx_1"] + probability = equipInfoList.excellent.probability + img:setVisible(probability > 0) + if probability > 0 then + probabilityCount = probabilityCount + 1 + img:setAnchoredPositionY(y) + tx:setText(I18N:getGlobalText(I18N.GlobalConst.RARE_EQUIP_DESC)) + tx1:setText(probability .. "%") + y = y + PROBABILITY_HEIGHT + end + + img = uiMap["equil_group_cell.probability.line_img_3"] + tx = uiMap["equil_group_cell.probability.line_img_3.tx"] + tx1 = uiMap["equil_group_cell.probability.line_img_3.tx_1"] + probability = equipInfoList.rare.probability + img:setVisible(probability > 0) + if probability > 0 then + probabilityCount = probabilityCount + 1 + img:setAnchoredPositionY(y) + tx:setText(I18N:getGlobalText(I18N.GlobalConst.EXCELLENT_EQUIP_DESC)) + tx1:setText(probability .. "%") + y = y + PROBABILITY_HEIGHT + end + + img = uiMap["equil_group_cell.probability.line_img_4"] + tx = uiMap["equil_group_cell.probability.line_img_4.tx"] + tx1 = uiMap["equil_group_cell.probability.line_img_4.tx_1"] + probability = equipInfoList.epic.probability + img:setVisible(probability > 0) + if probability > 0 then + probabilityCount = probabilityCount + 1 + img:setAnchoredPositionY(y) + tx:setText(I18N:getGlobalText(I18N.GlobalConst.EPIC_EQUIP_DESC)) + tx1:setText(probability .. "%") + y = y + PROBABILITY_HEIGHT + end + + img = uiMap["equil_group_cell.probability.line_img_ssr"] + tx = uiMap["equil_group_cell.probability.line_img_ssr.tx"] + tx1 = uiMap["equil_group_cell.probability.line_img_ssr.tx_1"] + probability = equipInfoList.ssr.probability + img:setVisible(probability > 0) + if probability > 0 then + probabilityCount = probabilityCount + 1 + img:setAnchoredPositionY(y) + tx:setText(I18N:getGlobalText(I18N.GlobalConst.SSR_EQUIP_DESC)) + tx1:setText(probability .. "%") + y = y + PROBABILITY_HEIGHT + end + end + else + uiMap["equil_group_cell.probability"]:setVisible(false) + end + + local h = H.NORMAL + if isProbability then + if probabilityCount <= 0 then + h = 0 + else + h = PROBABILITY_HEIGHT * probabilityCount + PROBABILITY_HEIGHT + end + else + if equipInfoList.isFirstLine then + h = H.HAS_TITLE + end + + if equipInfoList.isTop then + h = H.FIRST + end + end + + self.baseObject:setSizeDeltaY(h) +end + +return EquipGroupCell \ No newline at end of file diff --git a/lua/app/ui/tips/cell/equip_group_cell.lua.meta b/lua/app/ui/tips/cell/equip_group_cell.lua.meta new file mode 100644 index 00000000..c02bf3bb --- /dev/null +++ b/lua/app/ui/tips/cell/equip_group_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: a6f4d7eb75fa1414f98cc7ff019959a8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/cell/jewelry_tips_cell.lua b/lua/app/ui/tips/cell/jewelry_tips_cell.lua new file mode 100644 index 00000000..180ecc7b --- /dev/null +++ b/lua/app/ui/tips/cell/jewelry_tips_cell.lua @@ -0,0 +1,36 @@ +local JewelryTipsCell = class("JewelryTipsCell", BaseCell) + +function JewelryTipsCell:refresh(data) + local uiMap = self:getUIMap() + local icon = uiMap["qlt_skill_desc_cell.icon"] + local desc = uiMap["qlt_skill_desc_cell.desc"] + local lvTx = uiMap["qlt_skill_desc_cell.icon.lv_tx"] + + if data.isLegend then + desc:setAnchoredPositionX(54) + icon:setVisible(true) + + if data.qlt == GConst.JewelryConst.MAX_SKILL then + icon:setSprite(GConst.ATLAS_PATH.UI_EQUIP, "equip_activation_6") + else + icon:setSprite(GConst.ATLAS_PATH.UI_EQUIP, "equip_activation_5") + end + else + desc:setAnchoredPositionX(13) + icon:setVisible(false) + end + + data.desc = data.desc or "" + if data.unlock then + local str = string.format("%s", data.desc) + desc:setText(str) + else + local str = string.format("%s", data.desc) + desc:setText(str) + end + + lvTx:setText(data.qlt) + self:getBaseObject():setSizeDeltaY(desc:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredHeight + 4) +end + +return JewelryTipsCell \ No newline at end of file diff --git a/lua/app/ui/tips/cell/jewelry_tips_cell.lua.meta b/lua/app/ui/tips/cell/jewelry_tips_cell.lua.meta new file mode 100644 index 00000000..7bcab69e --- /dev/null +++ b/lua/app/ui/tips/cell/jewelry_tips_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ff1d1b0aec89b474ca2625456c0994f0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/cell/summon_wish_cell.lua b/lua/app/ui/tips/cell/summon_wish_cell.lua new file mode 100644 index 00000000..7b0ada3e --- /dev/null +++ b/lua/app/ui/tips/cell/summon_wish_cell.lua @@ -0,0 +1,33 @@ +local SummonWishCell = class("SummonWishCell", BaseCell) + +local LOCK_ICON = "equip_lock_" +local UNLOCK_ICON = "equip_activation_" +function SummonWishCell:refresh(data, type) + local uiMap = self:getUIMap() + local icon = uiMap["qlt_skill_desc_cell.icon"] + local desc = uiMap["qlt_skill_desc_cell.desc"] + + local iconName + local str + if data.unlock then + iconName = UNLOCK_ICON .. data.qlt + if type == GConst.TipsConst.SUMMON_PROBABILITY_TYPE.SUMMON_BLACK_FRIDAY then + str = string.format("%s", data.desc) + else + str = string.format("%s", data.desc) + end + else + iconName = LOCK_ICON .. data.qlt + if type == GConst.TipsConst.SUMMON_PROBABILITY_TYPE.SUMMON_BLACK_FRIDAY then + str = string.format("%s", data.desc) + else + str = string.format("%s", data.desc) + end + end + + desc:setText(str) + icon:setSprite(GConst.ATLAS_PATH.UI_EQUIP, iconName) + self:getBaseObject():setSizeDeltaY(desc:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredHeight + 4) +end + +return SummonWishCell \ No newline at end of file diff --git a/lua/app/ui/tips/cell/summon_wish_cell.lua.meta b/lua/app/ui/tips/cell/summon_wish_cell.lua.meta new file mode 100644 index 00000000..f4acb902 --- /dev/null +++ b/lua/app/ui/tips/cell/summon_wish_cell.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 80ed1f497fcae484eb806f194425fdc1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/equip_tips.lua b/lua/app/ui/tips/equip_tips.lua new file mode 100644 index 00000000..67534326 --- /dev/null +++ b/lua/app/ui/tips/equip_tips.lua @@ -0,0 +1,153 @@ +local EquipEntity = require "app/userdata/bag/equip_entity" +local BaseTips = require "app/ui/tips/base_tips" +local EquipTips = class("EquipTips", BaseTips) + +local QLT_SKILL_DESC_CELL = "app/ui/equip/cell/qlt_skill_desc_cell" +local QLT_REFINE_DESC_CELL = "app/ui/equip/cell/qlt_refine_desc_cell" + +function EquipTips:getPrefabPath() + return "assets/prefabs/ui/tips/equip_tips.prefab" +end + +function EquipTips:ctor(params) + self.equipEntity = params and params.entity + if not self.equipEntity then + local id = params and params.id + -- self.equipEntity = EquipEntity:create({id = id, lv = 1}) + self.equipEntity = DataManager.BagData.EquipData:getEquipByCfgId(id) + end +end + +function EquipTips:onLoadRootComplete() + self:_initObj() +end + +function EquipTips:_initObj() + local uiMap = self.root:genAllChildren() + + uiMap["equip_tips.bg.close_btn"]:addClickListener(function() + self:closeUI() + end) + + local uiMap = self.root:genAllChildren() + self.nameTx = uiMap["equip_tips.bg.name_tx"] + self.qltTx = uiMap["equip_tips.bg.qlt_tx"] + self.slider = uiMap["equip_tips.bg.slider_bg.slider"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + self.sliderTx = uiMap["equip_tips.bg.slider_bg.slider_tx"] + self.attrTx = uiMap["equip_tips.bg.attr_tx"] + self.arrowImg = uiMap["equip_tips.bg.arrow_img"] + self.diffTx = uiMap["equip_tips.bg.diff_tx"] + self.lvTx = uiMap["equip_tips.bg.lv_tx"] + self.equipCell = CellManager:addCellComp(uiMap["equip_tips.bg.equip_cell"], GConst.TYPEOF_LUA_CLASS.EQUIP_CELL) + self.descTx1 = uiMap["equip_tips.bg.desc_tx_1"] + self.attrTx1 = uiMap["equip_tips.bg.attr_tx_1"] + self.bg2 = uiMap["equip_tips.bg.bg2"] + self.bg = uiMap["equip_tips.bg"] + + self.skillCells = {} + self.skillTxs = {} + for i = 1, 3 do + self.skillCells[i] = CellManager:addCellComp(uiMap["equip_tips.bg.bg2.skill_cell_" .. i], GConst.TYPEOF_LUA_CLASS.SKILL_CELL) + self.skillTxs[i] = uiMap["equip_tips.bg.bg2.skill_desc_tx_" .. i] + end +end + +function EquipTips:onRefresh() + local attrs = self.equipEntity:getAllOwnAttr() + local attrStr + local valueStr + for k,v in pairs(attrs) do + if not attrStr then + attrStr = GFunc.getAttrName(k) + else + attrStr = attrStr .. "&" .. GFunc.getAttrName(k) + end + if not valueStr then + valueStr = string.format("%s", GConst.COLOR_CODE.GREEN, " +" .. GFunc.getFinalPerStr(k, v)) + end + end + attrStr = attrStr .. valueStr + self.descTx1:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_1)) + self.attrTx1:setText(attrStr) + + local selWearAttrBigNum + local attrs = self.equipEntity:getAllWearAttr() + local attrStr + local valueStr + for k,v in pairs(attrs) do + if not attrStr then + attrStr = GFunc.getAttrName(k) + else + attrStr = attrStr .. "&" .. GFunc.getAttrName(k) + end + if not valueStr then + selWearAttrBigNum = v + valueStr = string.format("%s", GConst.COLOR_CODE.GREEN, " +" .. GFunc.getFinalPerStr(k, v)) + end + end + attrStr = attrStr .. valueStr + self.attrTx:setText(attrStr) + + local wearEquip = DataManager.FightInfoData:getWearEquipByPart(self.equipEntity:getPart()) + if wearEquip then + local wearAttr = wearEquip:getAllWearAttr() + local wearWearAttrBigNum, wearWearAttrType + for k,v in pairs(wearAttr) do + wearWearAttrBigNum = v + wearWearAttrType = k + break + end + if BigNumOpt.bigNumCompare(selWearAttrBigNum, wearWearAttrBigNum) == 0 then + self.arrowImg:setVisible(false) + self.diffTx:setVisible(false) + else + local bigNum = BigNumOpt.bigNumSub(selWearAttrBigNum, wearWearAttrBigNum) + local attrStr = GFunc.getFinalPerStr(wearWearAttrType, bigNum) + if BigNumOpt.bigNumCompare(selWearAttrBigNum, wearWearAttrBigNum) > 0 then + self.arrowImg:setVisible(true) + self.diffTx:setVisible(true) + self.arrowImg:setSprite(GConst.ATLAS_PATH.COMMON, "common_arrow_1") + self.diffTx:setText(string.format("%s", GConst.COLOR_CODE.GREEN, attrStr)) + else + self.arrowImg:setVisible(true) + self.diffTx:setVisible(true) + self.arrowImg:setSprite(GConst.ATLAS_PATH.COMMON, "common_arrow_2") + self.diffTx:setText(string.format("%s", GConst.COLOR_CODE.RED, attrStr)) + end + local meshProComp = self.attrTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + self.arrowImg:setAnchoredPositionX(120 + meshProComp.preferredWidth) + self.diffTx:setAnchoredPositionX(135 + meshProComp.preferredWidth) + end + else + self.arrowImg:setVisible(false) + self.diffTx:setVisible(false) + end + + local num = self.equipEntity:getCount() + local needNum = self.equipEntity:getNeedNum() + self.sliderTx:setText(num .. "/" .. needNum) + self.slider.value = num / needNum + + local qlt = self.equipEntity:getQuality() + local str = string.format("%s", GConst.QUALITY_TYPE[qlt], I18N:getGlobalText("QLT_DESC_" .. qlt)) + self.qltTx:setText(str) + self.nameTx:setText(self.equipEntity:getName()) + self.lvTx:setText(I18N:getGlobalText(I18N.GlobalConst.LV_POINT, self.equipEntity:getLv())) + + if self.equipEntity:getPart() == 1 then + self.bg2:setVisible(true) + self.bg:setSizeDeltaY(720) + local skillIds, lvs = self.equipEntity:getSkillIds() + for i = 1, 3 do + self.skillTxs[i]:setText(GFunc.getSkillEffectStr(skillIds[i], lvs[i])) + self.skillCells[i]:refresh(skillIds[i], lvs[i]) + end + else + self.bg2:setVisible(false) + self.bg:setSizeDeltaY(388) + end + + self.equipCell:refresh(self.equipEntity) +end + +return EquipTips \ No newline at end of file diff --git a/lua/app/ui/tips/equip_tips.lua.meta b/lua/app/ui/tips/equip_tips.lua.meta new file mode 100644 index 00000000..05a07710 --- /dev/null +++ b/lua/app/ui/tips/equip_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 95e87f3e1e1ea664fae2e0d995b7979b +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/get_rune_tips.lua b/lua/app/ui/tips/get_rune_tips.lua new file mode 100644 index 00000000..945a0062 --- /dev/null +++ b/lua/app/ui/tips/get_rune_tips.lua @@ -0,0 +1,27 @@ +local BaseTips = require "app/ui/tips/base_tips" +local GetRuneTips = class("GetRuneTips", BaseTips) + +function GetRuneTips:ctor(params) + self.params = params +end + +function GetRuneTips:getPrefabPath() + return "assets/prefabs/ui/tips/get_rune_tips.prefab" +end + +function GetRuneTips:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + self.runeIcon = uiMap["get_rune_tips.rune_icon"] + uiMap["get_rune_tips.title_tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.CONGRATULATE_GET_DESC)) +end + +function GetRuneTips:onRefresh() + self.root:addClickListener(function () + self:closeUI() + end) + + local runeEntity = DataManager.BagData.RuneData:getRuneByCfgId(self.params.runeId) + self.runeIcon:setSprite(runeEntity:getIconRes()) +end + +return GetRuneTips \ No newline at end of file diff --git a/lua/app/ui/tips/get_rune_tips.lua.meta b/lua/app/ui/tips/get_rune_tips.lua.meta new file mode 100644 index 00000000..447c8aba --- /dev/null +++ b/lua/app/ui/tips/get_rune_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 7b5d017095dc90f4a9f342e9dd93a492 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/help_tips.lua b/lua/app/ui/tips/help_tips.lua new file mode 100644 index 00000000..0052e13e --- /dev/null +++ b/lua/app/ui/tips/help_tips.lua @@ -0,0 +1,144 @@ +local BaseTips = require "app/ui/tips/base_tips" +local HelpTips = class("HelpTips", BaseTips) + +local BG_COLOR = BF.Color(0, 0, 0, 0.94) +local BG_COLOR_A = BF.Color(0, 0, 0, 0) + +function HelpTips:showCommonBG() + return true +end + +function HelpTips:ctor(params) + self.params = params + self.params.type = self.params.type or GConst.TipsConst.HELP_TIPS_TYPE.NORMAL + self.targetObj = params.targetObj +end + +function HelpTips:getPrefabPath() + return "assets/prefabs/ui/tips/help_tips.prefab" +end + +function HelpTips:init() + local uiMap = self.root:genAllChildren() + self.desc = uiMap['help_tips.bg.ScrollView.Viewport.Content.desc'] + self.scrollView = uiMap['help_tips.bg.ScrollView'] + self.content = uiMap['help_tips.bg.ScrollView.Viewport.Content'] + self.bg = uiMap['help_tips.bg'] + + uiMap['help_tips.bg.title_tx']:setText(self.params.title or I18N:getGlobalText(I18N.GlobalConst.HELP_DESC)) + uiMap['help_tips.bg.close_btn']:addClickListener(function () + self:playCloseAni(function() + self:closeUI() + end) + end) +end + +function HelpTips:onClose() + self:clearAni() +end + +function HelpTips:onLoadRootComplete() + self:init() + + self:playOpenAni() +end + +function HelpTips:onRefresh() + self.root:addClickListener(function () + self:playCloseAni(function() + self:closeUI() + end) + end) + + self.desc:setText(self.params.desc) + local meshProComp = self.desc:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + local height = meshProComp.preferredHeight + + self.content:setSizeDeltaY(height + 32) + self.content:setAnchoredPosition(0, 0) +end + +function HelpTips:playOpenAni() + self:clearAni() + + self.bg:setLocalScale(1, 1, 1) + local bgImage = self.root:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE) + bgImage.color = BG_COLOR + if self.targetObj then + local uiCamera = UIManager:getUICameraComponent() + local rectTransform = self.targetObj:getComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM) + local pivot = rectTransform.pivot + local rect = rectTransform.rect + local tarCorner = rectTransform:TransformPoint(BF.Vector3(rect.width*(0.5 - pivot.x), rect.height*(0.5 - pivot.y), 0)) + + local screenPoint = uiCamera:WorldToScreenPoint(tarCorner) + self.tarCornerLp = CS.BF.Utils.RectTransformScreenPointToLocalPointInRectangle(UIManager:getMainCanvasTransform(), screenPoint.x, screenPoint.y, uiCamera) + + local sizeDelta = self.bg:getSizeDelta() + local targetX, targetY = sizeDelta.x / 2, sizeDelta.y / 2 + + local pivotX, pivotY + if self.tarCornerLp.x > targetX then + pivotX = 1 + elseif self.tarCornerLp.x < - targetX then + pivotX = 0 + else + pivotX = 0.5 * (1 + self.tarCornerLp.x / targetX) + end + + if self.tarCornerLp.y > targetY then + pivotY = 1 + elseif self.tarCornerLp.y < - targetY then + pivotY = 0 + else + pivotY = 0.5 * (1 + self.tarCornerLp.y / targetY) + end + + self.bg:getTransform().pivot = BF.Vector2(pivotX, pivotY) + self.bg:setAnchoredPosition(self.tarCornerLp.x, self.tarCornerLp.y) + self.bg:setLocalScale(0, 0, 0) + bgImage.color = BG_COLOR_A + self.scaleAniSe = self.bg:createBindTweenSequence() + targetX = (pivotX - 0.5) * sizeDelta.x + targetY = (pivotY - 0.5) * sizeDelta.y + self.scaleAniSe:Append(self.bg:getTransform():DOLocalMove(BF.Vector2(targetX, targetY), 0.1)) + self.scaleAniSe:Join(self.bg:getTransform():DOScale(1, 0.1)) + self.scaleAniSe:Join(bgImage:DOFade(BG_COLOR.a, 0.1)) + else + self.tarCornerLp = BF.Vector2(0, 0) + self.bg:getTransform().pivot = BF.Vector2(0.5, 0.5) + self.bg:setAnchoredPosition(self.tarCornerLp.x, self.tarCornerLp.y) + end +end + +function HelpTips:playCloseAni(callback) + self:clearAni() + + if self.targetObj then + local bgImage = self.root:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE) + self.scaleAniSe = self.bg:createBindTweenSequence() + self.scaleAniSe:Append(self.bg:getTransform():DOLocalMove(BF.Vector2(self.tarCornerLp.x, self.tarCornerLp.y), 0.1)) + self.scaleAniSe:Join(self.bg:getTransform():DOScale(0, 0.1)) + self.scaleAniSe:Join(bgImage:DOFade(0, 0.1)) + self.scaleAniSe:OnComplete(function() + if callback then + callback() + end + end) + else + self.bg:setLocalScale(1, 1, 1) + self.bg:setAnchoredPosition(self.tarCornerLp.x, self.tarCornerLp.y) + if callback then + callback() + end + end +end + +function HelpTips:clearAni() + if self.scaleAniSe then + self.scaleAniSe:Kill() + self.scaleAniSe = nil + end +end + +return HelpTips \ No newline at end of file diff --git a/lua/app/ui/tips/help_tips.lua.meta b/lua/app/ui/tips/help_tips.lua.meta new file mode 100644 index 00000000..7726b9b6 --- /dev/null +++ b/lua/app/ui/tips/help_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c271c12dec3f90d4c9c9409760c0b052 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/item_tips.lua b/lua/app/ui/tips/item_tips.lua new file mode 100644 index 00000000..593e1faf --- /dev/null +++ b/lua/app/ui/tips/item_tips.lua @@ -0,0 +1,57 @@ +local BaseTips = require "app/ui/tips/base_tips" +local ItemTips = class("ItemTips", BaseTips) + +function ItemTips:ctor(params) + self.params = params + self.tarCornerScreenPos = params.tarCornerScreenPos + self.location = params.location +end + +function ItemTips:getPrefabPath() + return "assets/prefabs/ui/tips/item_tips.prefab" +end + +function ItemTips:init() + local uiMap = self.root:genAllChildren() + self.bg = uiMap["item_tips.bg1.bg"] + self.bg1 = uiMap["item_tips.bg1"] + self.nameTx = uiMap["item_tips.bg1.bg.name_tx"] + self.descTx = uiMap["item_tips.bg1.bg.desc_tx"] + self.icon = uiMap["item_tips.bg1.bg.icon"] +end + +function ItemTips:onLoadRootComplete() + self:init() + local tipsBgTransform = self.bg:getTransform() + self.originSizeDelta = tipsBgTransform.sizeDelta + self.originPivot = tipsBgTransform.pivot + self.originAnchoredPosition = tipsBgTransform.anchoredPosition + self.originLocalPosition = tipsBgTransform.localPosition +end + +function ItemTips:onRefresh() + self.root:addClickListener(function () + self:closeUI() + end) + + local item = DataManager.BagData.ItemData:getItemById(self.params.id) + self.nameTx:setText(item:getName()) + self.descTx:setText(item:getDesc()) + self.icon:setSprite(item:getIconRes()) + self.bg:addSizeDelta(0, self.descTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredHeight) + if self.tarCornerScreenPos then + self:locate(self.location, self.originSizeDelta, self.bg, self.tarCornerScreenPos) + end +end + +function ItemTips:onClose() + if self.originSizeDelta then + local tipsBgTransform = self.bg:getTransform() + tipsBgTransform.sizeDelta = self.originSizeDelta + tipsBgTransform.pivot = self.originPivot + tipsBgTransform.anchoredPosition = self.originAnchoredPosition + tipsBgTransform.localPosition = self.originLocalPosition + end +end + +return ItemTips \ No newline at end of file diff --git a/lua/app/ui/tips/item_tips.lua.meta b/lua/app/ui/tips/item_tips.lua.meta new file mode 100644 index 00000000..9388fbfa --- /dev/null +++ b/lua/app/ui/tips/item_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c4e7d07cf00982d41a785c0fd466043d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/legacy_tips.lua b/lua/app/ui/tips/legacy_tips.lua new file mode 100644 index 00000000..a7a1b1b7 --- /dev/null +++ b/lua/app/ui/tips/legacy_tips.lua @@ -0,0 +1,81 @@ +local BaseTips = require "app/ui/tips/base_tips" +local LegacyTips = class("LegacyTips", BaseTips) + +function LegacyTips:ctor(params) + self.params = params or {} + self.entity = DataManager.BagData.LegacyData:getLegacyByCfgId(self.params.id) +end + +function LegacyTips:getPrefabPath() + return "assets/prefabs/ui/tips/legacy_tips.prefab" +end + +function LegacyTips:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + self.descTx = uiMap["legacy_tips.bg.desc_tx"] + self.legacyFrameBg = uiMap["legacy_tips.bg.frame_bg"] + self.legacyIcon = uiMap["legacy_tips.bg.icon"] + self.nameTx = uiMap["legacy_tips.bg.name_tx"] + self.lvTx = uiMap["legacy_tips.bg.lv_tx"] + self.slider = uiMap["legacy_tips.bg.slider_bg.slider"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + self.sliderTx = uiMap["legacy_tips.bg.slider_bg.slider_tx"] + self.qltTx = uiMap["legacy_tips.bg.qlt_tx"] + self.attrTx = uiMap["legacy_tips.bg.attr_tx"] + + uiMap["legacy_tips.bg.desc_tx_1"]:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_1)) + uiMap["legacy_tips.bg.close_btn"]:addClickListener(function () + self:closeUI() + end) +end + +function LegacyTips:onRefresh() + self.root:addClickListener(function () + self:closeUI() + end) + + local qlt = self.entity:getQuality() + local lv = self.entity:getLv() + self.nameTx:setText(self.entity:getName()) + self.legacyFrameBg:setSprite(self.entity:getFrameRes()) + self.legacyIcon:setSprite(self.entity:getIconRes()) + + local skillIds = self.entity:getSkills() + local str + for i,v in ipairs(skillIds) do + if not str then + str = GFunc.getSkillEffectStr(v, lv) + else + str = str .. "\n" .. GFunc.getSkillEffectStr(v, lv) + end + end + self.descTx:setText(str) + + local attrCfg = ConfigManager:getConfig("attr") + local attrs = self.entity:getAllOwnAttr() + local attrStr + local valueStr + for i = 1, #attrCfg do + if attrs[i] then + if not attrStr then + attrStr = GFunc.getAttrName(i) + else + attrStr = attrStr .. "&" .. GFunc.getAttrName(i) + end + if not valueStr then + valueStr = string.format("%s", GConst.COLOR_CODE.GREEN, " +" .. GFunc.getFinalPerStr(i, attrs[i])) + end + end + end + attrStr = attrStr .. valueStr + self.attrTx:setText(attrStr) + + local str = string.format("%s", GConst.QUALITY_TYPE[qlt], I18N:getGlobalText("QLT_DESC_" .. qlt)) + self.qltTx:setText(str) + self.lvTx:setText(I18N:getGlobalText(I18N.GlobalConst.LV_POINT, lv)) + local num = self.entity:getCount() + local needNum = self.entity:getNeedNum() + self.sliderTx:setText(num .. "/" .. needNum) + self.slider.value = num / needNum +end + +return LegacyTips \ No newline at end of file diff --git a/lua/app/ui/tips/legacy_tips.lua.meta b/lua/app/ui/tips/legacy_tips.lua.meta new file mode 100644 index 00000000..79a024f3 --- /dev/null +++ b/lua/app/ui/tips/legacy_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 144bacdff9e06d14e85767b1dcd78ca8 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/legacy_up_tips.lua b/lua/app/ui/tips/legacy_up_tips.lua new file mode 100644 index 00000000..106ef3c7 --- /dev/null +++ b/lua/app/ui/tips/legacy_up_tips.lua @@ -0,0 +1,129 @@ +local BaseTips = require "app/ui/tips/base_tips" +local LegacyTips = class("LegacyTips", BaseTips) + +function LegacyTips:ctor(params) + self.params = params +end + +function LegacyTips:getPrefabPath() + return "assets/prefabs/ui/tips/legacy_up_tips.prefab" +end + +function LegacyTips:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + self.descTx = uiMap["legacy_up_tips.bg.desc_tx"] + self.legacyFrameBg = uiMap["legacy_up_tips.bg.frame_bg"] + self.legacyIcon = uiMap["legacy_up_tips.bg.icon"] + self.nameTx = uiMap["legacy_up_tips.bg.name_tx"] + self.lvTx = uiMap["legacy_up_tips.bg.lv_tx"] + self.btn1 = uiMap["legacy_up_tips.bg.btn_1"] + self.btnTx1 = uiMap["legacy_up_tips.bg.btn_1.tx"] + self.btn2 = uiMap["legacy_up_tips.bg.btn_2"] + self.btnTx2 = uiMap["legacy_up_tips.bg.btn_2.tx"] + self.slider = uiMap["legacy_up_tips.bg.slider_bg.slider"]:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_SLIDER) + self.sliderTx = uiMap["legacy_up_tips.bg.slider_bg.slider_tx"] + self.qltTx = uiMap["legacy_up_tips.bg.qlt_tx"] + self.attrTx = uiMap["legacy_up_tips.bg.attr_tx"] + + self.btnTx2:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_4)) + uiMap["legacy_up_tips.bg.desc_tx_1"]:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_1)) + + uiMap["legacy_up_tips.bg.close_btn"]:addClickListener(function () + self:closeUI() + end) + + self.btn1:addClickListener(function () + if self.params.callback1 then + self.params.callback1() + end + self:closeUI() + end) + self.btn2:addClickListener(function () + if self.params.callback2 then + self.params.callback2() + end + end) + + self:_bindData() +end + +function LegacyTips:_bindData() + self:bind(DataManager.BagData.LegacyData, "isDirty", function(binder, value) + self:onRefresh() + end) +end + +function LegacyTips:onRefresh() + self.root:addClickListener(function () + self:closeUI() + end) + + local qlt = self.params.entity:getQuality() + local lv = self.params.entity:getLv() + self.nameTx:setText(self.params.entity:getName()) + self.legacyFrameBg:setSprite(self.params.entity:getFrameRes()) + self.legacyIcon:setSprite(self.params.entity:getIconRes()) + + local skillIds = self.params.entity:getSkills() + local str + for i,v in ipairs(skillIds) do + if not str then + str = GFunc.getSkillEffectStr(v, lv) + else + str = str .. "\n" .. GFunc.getSkillEffectStr(v, lv) + end + end + self.descTx:setText(str) + + local attrCfg = ConfigManager:getConfig("attr") + local attrs = self.params.entity:getAllOwnAttr() + local attrStr + local valueStr + for i = 1, #attrCfg do + if attrs[i] then + if not attrStr then + attrStr = GFunc.getAttrName(i) + else + attrStr = attrStr .. "&" .. GFunc.getAttrName(i) + end + if not valueStr then + valueStr = string.format("%s", GConst.COLOR_CODE.GREEN, " +" .. GFunc.getFinalPerStr(i, attrs[i])) + end + end + end + attrStr = attrStr .. valueStr + self.attrTx:setText(attrStr) + + local str = string.format("%s", GConst.QUALITY_TYPE[qlt], I18N:getGlobalText("QLT_DESC_" .. qlt)) + self.qltTx:setText(str) + self.lvTx:setText(I18N:getGlobalText(I18N.GlobalConst.LV_POINT, lv)) + local num = self.params.entity:getCount() + local needNum = self.params.entity:getNeedNum() + self.sliderTx:setText(num .. "/" .. needNum) + self.slider.value = num / needNum + + local equiped = DataManager.FightInfoData:isLegacyWeared(self.params.entity:getId()) + if equiped then + self.btnTx1:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_8)) + else + self.btnTx1:setText(I18N:getGlobalText(I18N.GlobalConst.EQUIP_DESC_3)) + end + + if self.params.entity:isLock() then + self.btn1:setTouchEnable(false) + self.btn1:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_grey") + else + self.btn1:setTouchEnable(true) + self.btn1:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_1") + end + + if self.params.entity:lvUpCostEnough() then + self.btn2:setTouchEnable(true) + self.btn2:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_2") + else + self.btn2:setTouchEnable(false) + self.btn2:setSprite(GConst.ATLAS_PATH.COMMON, "common_btn_grey") + end +end + +return LegacyTips \ No newline at end of file diff --git a/lua/app/ui/tips/legacy_up_tips.lua.meta b/lua/app/ui/tips/legacy_up_tips.lua.meta new file mode 100644 index 00000000..489f594c --- /dev/null +++ b/lua/app/ui/tips/legacy_up_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d3129afec4efa334caa85529ed430c5d +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/reward_box.lua b/lua/app/ui/tips/reward_box.lua new file mode 100644 index 00000000..e4314b28 --- /dev/null +++ b/lua/app/ui/tips/reward_box.lua @@ -0,0 +1,149 @@ +local BaseTips = require "app/ui/tips/base_tips" +local RewardBox = class("RewardBox", BaseTips) + +local CELL_WIDTH = 138 +local CELL_NUM = 5 +local MIN_SIZE_Y = 426 +local MAX_SIZE_Y = 966 +local MAX_SIZE_X = 690 + +local MIN_TITLE_POS_Y = 370 +local MAX_TITLE_POS_Y = 540 + +function RewardBox:ctor(params) + self.params = params or {} + self.params.rewards = params.rewards or {} + self.customTitleStr = params.customTitleStr + self.callback = params.callback + -- self.flyPos = {} + -- self.showFly = false + self.actionStatus = {} + if #self.params.rewards > 35 then + self.showAction = true + self.turnIdx = 7 + self.maxIdx = math.ceil(#self.params.rewards / CELL_NUM) + end +end + +function RewardBox:getPrefabPath() + return "assets/prefabs/ui/common/reward_box.prefab" +end + +function RewardBox:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + self.scrollView = uiMap["reward_box.scroll_rect"] + self.scrollRect = self.scrollView:addLuaComponent(GConst.TYPEOF_LUA_CLASS.SCROLL_RECT_BASE) + self.scrollRect:addInitCallback(function() + return GConst.TYPEOF_LUA_CLASS.REWARD_CELL + end) + self.scrollRect:addRefreshCallback(function(index, cell) + cell:refresh(self.params.rewards[index]) + self:playCellAction(cell, index) + end) + self.scrollRect:clearCells() + + self.root:addClickListener(function() + self:closeUI() + -- if self.showFly then + -- local pos = clone(self.flyPos) + -- self:showCurrencyAction(pos) + -- end + if self.callback then + self.callback() + end + end) + + self.titleTx = uiMap["reward_box.title_tx"] + self.titleTx:setText(self.customTitleStr or I18N:getGlobalText(I18N.GlobalConst.GET_REWARDS)) + uiMap["reward_box.continue_tx"]:setText(I18N:getGlobalText(I18N.GlobalConst.CLICK_CLOSE_DESC)) + AudioManager:playEffect(AudioManager.EFFECT_ID.REWARD) + + self:_refreshScrollRect() +end + +function RewardBox:_refreshScrollRect(onlyRefresh) + -- for i,v in ipairs(self.params.rewards) do + -- if self.params.rewards[i].type == GConst.REWARD_TYPE.ITEM then + -- if self.params.rewards[i].item.id == GConst.ItemConst.ITEM_ID_GOLD or + -- self.params.rewards[i].item.id == GConst.ItemConst.ITEM_ID_GEM or + -- self.params.rewards[i].item.id == GConst.ItemConst.ITEM_ID_VIT + -- then + -- self.showFly = true + -- local allPos = {} + -- for i = 1, 4 do + -- local posX, posY = GFunc.randomPos(i, {x = 0, y = 0}) + -- allPos[i] = {x = posX, y = posY} + -- end + -- self.flyPos[self.params.rewards[i].item.id] = allPos + -- end + -- end + -- end + + -- local offset = 0 + -- if #self.params.rewards < 4 then + -- offset = (4 - #self.params.rewards) * CELL_WIDTH / 2 + -- end + -- self.scrollView:setAnchoredPositionX(offset) + if #self.params.rewards <= 5 then + self.scrollView:setSizeDelta(#self.params.rewards*CELL_WIDTH, MIN_SIZE_Y) + self.scrollRect:setPerLineNum(#self.params.rewards) + self.scrollRect:refillCells(#self.params.rewards, true) + self.titleTx:setAnchoredPositionY(MIN_TITLE_POS_Y) + elseif #self.params.rewards <= 15 then + self.scrollView:setSizeDelta(MAX_SIZE_X, MIN_SIZE_Y) + self.scrollRect:setPerLineNum(CELL_NUM) + self.scrollRect:refillCells(#self.params.rewards, true) + self.titleTx:setAnchoredPositionY(MIN_TITLE_POS_Y) + else + self.scrollView:setSizeDelta(MAX_SIZE_X, MAX_SIZE_Y) + self.scrollRect:setPerLineNum(CELL_NUM) + self.scrollRect:refillCells(#self.params.rewards) + self.titleTx:setAnchoredPositionY(MAX_TITLE_POS_Y) + end +end + +function RewardBox:getCellDelayTime(idx) + if idx <= 35 then + return idx*0.05 + else + local re = (idx - 1)%5 + 1 + return re*0.025 + end +end + +function RewardBox:playCellAction(cell, idx) + if self.actionStatus[idx] then + return + end + local delayTime = self:getCellDelayTime(idx) + local canvasGroup = cell.baseObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS_GROUP) + if not canvasGroup then + canvasGroup = cell.baseObject:addComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS_GROUP) + end + canvasGroup.alpha = 0 + + local seq = cell.baseObject:createBindTweenSequence() + seq:AppendInterval(delayTime) + local tween = canvasGroup:DOFade(1, 0.1) + tween:SetEase(CS.DG.Tweening.Ease.InOutSine) + seq:Append(tween) + seq:AppendCallback(function() + self.actionStatus[idx] = true + self:turnToNext(idx) + end) +end + +function RewardBox:turnToNext(idx) + if not self.showAction or idx ~= self.turnIdx * CELL_NUM then + return + end + self:performWithDelayGlobal(function() + self.scrollRect:moveToIndex((self.turnIdx - 6)*CELL_NUM + 1) + self.turnIdx = self.turnIdx + 1 + if self.turnIdx >= self.maxIdx then + self.showAction = false + end + end, 0.025) +end + +return RewardBox \ No newline at end of file diff --git a/lua/app/ui/tips/reward_box.lua.meta b/lua/app/ui/tips/reward_box.lua.meta new file mode 100644 index 00000000..dd20e0f6 --- /dev/null +++ b/lua/app/ui/tips/reward_box.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 62e9026915602e144801ff7f2a068eb4 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/rewards_tips.lua b/lua/app/ui/tips/rewards_tips.lua new file mode 100644 index 00000000..1eebd42f --- /dev/null +++ b/lua/app/ui/tips/rewards_tips.lua @@ -0,0 +1,70 @@ +local BaseTips = require "app/ui/tips/base_tips" +local RewardsTips = class("RewardsTips", BaseTips) + +function RewardsTips:ctor(params) + self.params = params + self.tarCornerScreenPos = params.tarCornerScreenPos + self.location = params.location +end + +function RewardsTips:getPrefabPath() + return "assets/prefabs/ui/tips/rewards_tips.prefab" +end + +function RewardsTips:init() + local uiMap = self.root:genAllChildren() + self.bg = uiMap["rewards_tips.bg"] + self.descTx = uiMap["rewards_tips.reward_node.desc"] + self.rewardNode = uiMap["rewards_tips.reward_node.reward_layout"] + if not self.rewardCells then + self.rewardCells = {} + for i = 1, 3 do + self.rewardCells[i] = CellManager:addCellComp(uiMap["rewards_tips.reward_node.reward_layout.reward_cell_" .. i], GConst.TYPEOF_LUA_CLASS.REWARD_CELL) + end + end +end + +function RewardsTips:onLoadRootComplete() + self:init() + local tipsBgTransform = self.bg:getTransform() + self.originSizeDelta = tipsBgTransform.sizeDelta + self.originPivot = tipsBgTransform.pivot + self.originAnchoredPosition = tipsBgTransform.anchoredPosition + self.originLocalPosition = tipsBgTransform.localPosition +end + +function RewardsTips:onRefresh() + self.root:addClickListener(function () + self:closeUI() + end) + + self.descTx:setText(self.params.customTitleStr or I18N:getGlobalText(I18N.GlobalConst.BOUNTY_DESC_11)) + if self.params.rewards then + for i, cell in ipairs(self.rewardCells) do + if self.params.rewards[i] then + cell:refreshByConfig(self.params.rewards[i]) + -- cell:addClickListener(function() + -- ModuleManager.TipsManager:showRewardTips(self.params.rewards[i].id, self.params.rewards[i].type, cell:getBaseObject()) + -- end) + end + cell:getBaseObject():setActive(self.params.rewards[i] ~= nil) + end + end + self.rewardNode:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_HORIZONTAL_OR_VERTICAL_LAYOUT):RefreshLayout() + + if self.tarCornerScreenPos then + self:locate(self.location, self.originSizeDelta, self.bg, self.tarCornerScreenPos) + end +end + +function RewardsTips:onClose() + if self.originSizeDelta then + local tipsBgTransform = self.bg:getTransform() + tipsBgTransform.sizeDelta = self.originSizeDelta + tipsBgTransform.pivot = self.originPivot + tipsBgTransform.anchoredPosition = self.originAnchoredPosition + tipsBgTransform.localPosition = self.originLocalPosition + end +end + +return RewardsTips \ No newline at end of file diff --git a/lua/app/ui/tips/rewards_tips.lua.meta b/lua/app/ui/tips/rewards_tips.lua.meta new file mode 100644 index 00000000..d9f4c1da --- /dev/null +++ b/lua/app/ui/tips/rewards_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: ee0939dcb6a15f1429d67767d31f0abd +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/tips/skill_tips.lua b/lua/app/ui/tips/skill_tips.lua new file mode 100644 index 00000000..2692ebd1 --- /dev/null +++ b/lua/app/ui/tips/skill_tips.lua @@ -0,0 +1,63 @@ +local BaseTips = require "app/ui/tips/base_tips" +local SkillTips = class("SkillTips", BaseTips) + +local MIN_HEIGHT = 194 + +function SkillTips:ctor(params) + self.params = params + self.tarCornerScreenPos = params.tarCornerScreenPos + self.location = params.location +end + +function SkillTips:getPrefabPath() + return "assets/prefabs/ui/tips/skill_tips.prefab" +end + +function SkillTips:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + self.descTx = uiMap["skill_tips.bg.desc_tx"] + self.skillCell = CellManager:addCellComp(uiMap["skill_tips.bg.skill_cell"], GConst.TYPEOF_LUA_CLASS.SKILL_CELL) + self.nameTx = uiMap["skill_tips.bg.name_tx"] + self.lvTx = uiMap["skill_tips.bg.lv_tx"] + self.bg = uiMap["skill_tips.bg"] + + local tipsBgTransform = self.bg:getTransform() + self.originSizeDelta = tipsBgTransform.sizeDelta + self.originPivot = tipsBgTransform.pivot + self.originAnchoredPosition = tipsBgTransform.anchoredPosition + self.originLocalPosition = tipsBgTransform.localPosition +end + +function SkillTips:onRefresh() + self.root:addClickListener(function () + self:closeUI() + end) + + self.nameTx:setText(I18N:getText("skill", self.params.id, "name")) + self.descTx:setText(GFunc.getSkillEffectStr(self.params.id, self.params.lv)) + self.skillCell:refresh(self.params.id) + self.skillCell:setLvVisible(false) + self.lvTx:setText(I18N:getGlobalText(I18N.GlobalConst.LV_POINT, self.params.lv)) + + local meshProComp = self.descTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO) + local height = meshProComp.preferredHeight + + local maxHeight = math.max(height + 141, MIN_HEIGHT) + self.bg:setSizeDeltaY(maxHeight) + + if self.tarCornerScreenPos then + self:locate(self.location, self.originSizeDelta, self.bg, self.tarCornerScreenPos) + end +end + +function SkillTips:onClose() + if self.originSizeDelta then + local tipsBgTransform = self.bg:getTransform() + tipsBgTransform.sizeDelta = self.originSizeDelta + tipsBgTransform.pivot = self.originPivot + tipsBgTransform.anchoredPosition = self.originAnchoredPosition + tipsBgTransform.localPosition = self.originLocalPosition + end +end + +return SkillTips \ No newline at end of file diff --git a/lua/app/ui/tips/skill_tips.lua.meta b/lua/app/ui/tips/skill_tips.lua.meta new file mode 100644 index 00000000..df32d2f3 --- /dev/null +++ b/lua/app/ui/tips/skill_tips.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: cb50bcc708d53684eab0ae356c72be75 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/ui/train.meta b/lua/app/ui/train.meta new file mode 100644 index 00000000..08c45624 --- /dev/null +++ b/lua/app/ui/train.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 1c51403c23b2d7d498691bcf412da02a +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/tutorial.meta b/lua/app/ui/tutorial.meta new file mode 100644 index 00000000..64d1d897 --- /dev/null +++ b/lua/app/ui/tutorial.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: e811d482211d856428fcb44b0632a062 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/tutorial/tutorial_ui.lua b/lua/app/ui/tutorial/tutorial_ui.lua new file mode 100644 index 00000000..193d5f34 --- /dev/null +++ b/lua/app/ui/tutorial/tutorial_ui.lua @@ -0,0 +1,582 @@ +local TutorialConst = require "app/module/tutorial/tutorial_const" + +local TutorialUI = class("TutorialUI", LuaComponent) + +local MIN_DESC_HEIGHT = 100 +local DESC_OFFSET_HEIGHT = 70 + +function TutorialUI:init() + local uiMap = self.baseObject:genAllChildren() + self.uiMap = uiMap + self.mask = uiMap["tutorial_ui.mask"] + self.maskMat = CS.UnityEngine.Object.Instantiate(RenderManager:getUITutorialMat()) + self.mask:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE).material = self.maskMat + + self.clickArea = uiMap["tutorial_ui.click_area"] + self.clickArea:addClickListener(function() + self:onClickArea() + end) + self.clickAreaCallback = nil + self.showClickSound = false + self:setClickAreaEnable(false) + self.clickAreaCS = self.clickArea:getComponent(GConst.TYPEOF_UNITY_CLASS.BF_TUTORIAL_CLICKAREA) + self.clickAreaCS:ClearTargetTransform() + self.isHaveClickBtnTutorial = false + self:setClickAreaWithScreen() + self.clickArea:setAnchoredPosition(0.2, 0.3) + + self.blockTouch = uiMap["tutorial_ui.block_touch"] + self.blockTouch:addClickListener(function() + if not self.isHaveClickBtnTutorial then + return + end + local scale = self.guideFingerNode:fastGetLocalScale() + if scale > 0.01 and self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR).enabled then + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play("finger_click_prompt", -1, 0) + end + end) + self:initTalk() + self:initFinger() +end + +function TutorialUI:initTalk() + self.talkNode = self.uiMap["tutorial_ui.talk_node"] + self.textBg = self.uiMap["tutorial_ui.talk_node.text_bg"] + self.descTx = self.uiMap["tutorial_ui.talk_node.text_bg.desc_text"] + self.roleImg = self.uiMap["tutorial_ui.talk_node.text_bg.role"] +end + +function TutorialUI:initFinger() + self.guideFingerNode = self.uiMap["tutorial_ui.finger_node"] + self.guideFinger = self.uiMap["tutorial_ui.finger_node.finger"] + self.fingerParentNode = self.uiMap["tutorial_ui.finger_node.finger_node"] + self:hideGuideFinger() +end + +-- 开始引导, 先检查一些通用的设置是否要显示 +function TutorialUI:onTutorialStart() + -- 设置是否屏蔽点击 + self:setBlockTouch() + + -- 设置一些所有引导步骤都可能会用到的东西 + -- 灰色遮罩 + self:setMaskEnable(false) + -- 清理点击 + self:clearClickArea() + -- 隐藏手指 + self:hideGuideFinger() + -- 隐藏剧情文本 + self:hideTalk() + self:clearScheduler() +end + +-- 停止引导 +function TutorialUI:onTutorialStop() + self:clear() +end + +function TutorialUI:hideTalk() + self.talkNode:setLocalScale(0, 0, 0) +end + + +function TutorialUI:setBlockTouch() + local blockTouchEnabled = DataManager.TutorialData:getTouchEnabled() + self:setBlockTouchEnabled(blockTouchEnabled) +end + +function TutorialUI:setBlockTouchEnabled(enabled) + local scale = enabled and 1 or 0 + self.blockTouch:setLocalScale(scale, scale, scale) +end + +function TutorialUI:getBlockTouchEnabled() + local scale = self.blockTouch:fastGetLocalScale() + return scale == 1 +end + +function TutorialUI:setMaskEnable(enabled) + local scale = enabled and 1 or 0 + self.mask:setLocalScale(scale, scale, scale) +end + +function TutorialUI:setClickAreaEnable(enabled) + local scale = enabled and 1 or 0 + self.clickArea:setLocalScale(scale, scale, scale) +end + +function TutorialUI:setClickAreaWithScreen() + self.clickArea:setAnchorMin(0, 0) + self.clickArea:setAnchorMax(1, 1) + self.clickArea:setAnchoredPosition(0, 0) + self.clickArea:setSizeDelta(0, 0) +end + +---- 设定clickArea的区域 +function TutorialUI:setClickAreaWithTarget(anchoredPosition, width, height) + self.clickArea:setAnchorMin(0.5, 0.5) + self.clickArea:setAnchorMax(0.5, 0.5) + self.clickArea:setAnchoredPosition(anchoredPosition.x, anchoredPosition.y) + self.clickArea:setSizeDelta(width, height) +end + +function TutorialUI:showTutorialText() + self.talkNode:setLocalScale(1, 1, 1) + local text = DataManager.TutorialData:getTutorialText() + self.descTx:setText(text) + if DataManager.TutorialData:getTutorialDirLeft() then + self.roleImg:setAnchoredPositionX(-212) + self.roleImg:setLocalEulerAngles(0, 0, 0) + self.descTx:setAnchoredPositionX(232) + else + self.roleImg:setAnchoredPositionX(211) + self.roleImg:setLocalEulerAngles(0, 180, 0) + self.descTx:setAnchoredPositionX(60) + end + + local offset = DataManager.TutorialData:getTutorialOffset() or {0, 0} + + self.textBg:setAnchoredPosition(-5 + offset[1], 283.5 + offset[2]) + local preferredHeight = self.descTx:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_TEXT_MESH_PRO).preferredHeight + if preferredHeight > MIN_DESC_HEIGHT then + self.textBg:setSizeDeltaY(preferredHeight + DESC_OFFSET_HEIGHT) + else + self.textBg:setSizeDeltaY(MIN_DESC_HEIGHT + DESC_OFFSET_HEIGHT) + end + + local showMask = DataManager.TutorialData:getShowMask() + if showMask == 3 then -- 纯黑遮罩 + self:setMaskEnable(true) + self.maskMat:SetVector(self:getCenterPropertyID(), {x = 0, y = 0, z = 0, w = 0}) + self.maskMat:SetFloat(self:getEllipsePropertyID(), 0) + self.maskMat:SetFloat(self:getRectXPropertyID(), 0) + self.maskMat:SetFloat(self:getRectYPropertyID(), 0) + end + + local fingerOffset = DataManager.TutorialData:getFingerOffset() + local targetName = DataManager.TutorialData:getTargetName() + local fingerDir = DataManager.TutorialData:getFingerDir() + if fingerDir and self.fingerParentNode then + if fingerDir == 1 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 180) + elseif fingerDir == 2 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 0) + elseif fingerDir == 3 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 90) + elseif fingerDir == 4 then + self.fingerParentNode:setLocalEulerAngles(0, 0, -90) + end + else + self.fingerParentNode:setLocalEulerAngles(0, 0, 0) + end + + if fingerOffset then + self.guideFingerNode:setLocalScale(1, 1, 1) + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play("finger_click", -1, 0) + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Update(0) + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR).enabled = false + self.guideFinger:setLocalPosition(0, 0, 0) + else + fingerOffset = {0, 0} + end + self.fingerParentNode:setLocalPosition(fingerOffset[1], fingerOffset[2], 0) + + if targetName then + local targetGo = UIManager:getMainCanvasTransform():Find(targetName) + local anchoredPosition = nil + local setGuideFingerPosition = nil + setGuideFingerPosition = function(interval) + local rect = targetGo:GetComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM).rect + self:updateMask(anchoredPosition, rect) + self.guideFingerNode:setLocalPosition(anchoredPosition.x, anchoredPosition.y, 0) + -- 如果ui在动的话就跟随着更新下位置 + local time = 0 + if self._findTargetSid then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + end + self._findTargetSid = ModuleManager.TutorialManager:scheduleGlobal(function(dt) + if targetGo == nil or CS.BF.Utils.IsNull(targetGo) then -- 被干掉了 + if self._findTargetSid then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + self._findTargetSid = nil + end + return + end + local newAnchoredPosition = self:getTargetAnchoredPosition(targetGo) + if math.abs(newAnchoredPosition.x - anchoredPosition.x) < 0.00001 and math.abs(newAnchoredPosition.y - anchoredPosition.y) < 0.00001 then + time = time + dt + if time > 0.1 then -- 有0.1秒没动了,但是部分ui可能会有一段时间不动,然后再动的情况,所以这里也不能算ui不动了,这里把检测间隔变长点,继续保持寻找坐标 + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + self._findTargetSid = nil + setGuideFingerPosition(0.1) + end + else + time = 0 + anchoredPosition = newAnchoredPosition + self.guideFingerNode:setLocalPosition(anchoredPosition.x, anchoredPosition.y, 0) + local rect = targetGo:GetComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM).rect + self:updateMask(anchoredPosition, rect) + end + end, interval) + end + + if targetGo == nil then -- 没有找到说明需要找的ui还没打开 + -- 每隔一定时间在重新找一次 + if self._findTargetSid then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + end + self._findTargetSid = ModuleManager.TutorialManager:scheduleGlobal(function() + targetGo = UIManager:getMainCanvasTransform():Find(targetName) + if targetGo then + anchoredPosition = self:getTargetAnchoredPosition(targetGo) + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + self._findTargetSid = nil + setGuideFingerPosition(0) + end + end, 0.1) + else + anchoredPosition = self:getTargetAnchoredPosition(targetGo) + setGuideFingerPosition(0) + end + else + self.guideFingerNode:setLocalPosition(fingerOffset[1], fingerOffset[2], 0) + end +end + +function TutorialUI:onClickArea() + if self.clickAreaCallback == nil then + return + end + if self.showClickSound then + AudioManager:playEffect(AudioManager.EFFECT_ID.BUTTON) + end + self.clickAreaCallback() +end + +-- 点击屏幕事件 +function TutorialUI:registerClickScreenListener(callback) + self:setClickAreaWithScreen() + self:setClickAreaEnable(true) + self.clickAreaCS:ClearTargetTransform() + self.isHaveClickBtnTutorial = false + self.clickAreaCallback = callback + + local showMask = DataManager.TutorialData:getShowMask() + if showMask == 1 then -- 矩形遮罩 + self:setMaskEnable(true) + + local squareOffset = DataManager.TutorialData:getMaskSquareOffset() + local squareOffsetX = squareOffset and squareOffset[1] or 0 + local squareOffsetY = squareOffset and squareOffset[2] or 0 + + self.maskMat:SetVector(self:getCenterPropertyID(), {x = squareOffsetX, y = squareOffsetY, z = 0, w = 0}) + self.maskMat:SetFloat(self:getEllipsePropertyID(), 10) + + local squareSize = DataManager.TutorialData:getMaskSquareSize() + local squareSizeW = squareSize and squareSize[1] or 0 + local squareSizeH = squareSize and squareSize[2] or 0 + + self.maskMat:SetFloat(self:getRectXPropertyID(), squareSizeW) + self.maskMat:SetFloat(self:getRectYPropertyID(), squareSizeH) + elseif showMask == 2 then -- 圆形遮罩 + self:setMaskEnable(true) + + local circleOffset = DataManager.TutorialData:getMaskCircleOffset() + local squareOffsetX = circleOffset and circleOffset[1] or 0 + local squareOffsetY = circleOffset and circleOffset[2] or 0 + self.maskMat:SetVector(self:getCenterPropertyID(), {x = squareOffsetX, y = squareOffsetY, z = 0, w = 0}) + self.maskMat:SetFloat(self:getEllipsePropertyID(), 2) + local maskRadius = DataManager.TutorialData:getMaskRadius() or TutorialConst.DEFAULT_RADIUS + self.maskMat:SetFloat(self:getRectXPropertyID(), maskRadius) + self.maskMat:SetFloat(self:getRectYPropertyID(), maskRadius) + end + + local fingerOffset = DataManager.TutorialData:getFingerOffset() + if fingerOffset then + self.guideFingerNode:setLocalScale(1, 1, 1) + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR).enabled = true + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play("finger_click", -1, 0) + self.guideFingerNode:setLocalPosition(fingerOffset[1], fingerOffset[2], 0) + end + + local fingerDir = DataManager.TutorialData:getFingerDir() + if fingerDir and self.fingerParentNode then + if fingerDir == 1 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 180) + elseif fingerDir == 2 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 0) + elseif fingerDir == 3 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 90) + elseif fingerDir == 4 then + self.fingerParentNode:setLocalEulerAngles(0, 0, -90) + end + else + self.fingerParentNode:setLocalEulerAngles(0, 0, 0) + end +end + +-- 清理点击屏幕相关 +function TutorialUI:clearClickArea() + self:setClickAreaEnable(false) + self.clickAreaCallback = nil + self.showClickSound = false + self.clickAreaCS:ClearTargetTransform() + self.isHaveClickBtnTutorial = false +end + +function TutorialUI:hideGuideFinger() + self.guideFingerNode:setLocalScale(0, 0, 0) + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR).enabled = false +end + +function TutorialUI:registerClickBtnListener(callback, targetName, clickType) + if targetName == nil then + targetName = DataManager.TutorialData:getTargetName() + end + if targetName == nil then + ModuleManager.TutorialManager:stopTutorial() + return + end + local targetGo = UIManager:getMainCanvasTransform():Find(targetName) + if targetGo == nil then -- 没有找到说明需要找的ui还没打开 + -- 每隔一定时间在重新找一次 + if self._findTargetSid then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + end + self._findTargetSid = ModuleManager.TutorialManager:scheduleGlobal(function() + targetGo = UIManager:getMainCanvasTransform():Find(targetName) + if targetGo then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + self._findTargetSid = nil + self.clickAreaCallback = callback + self:setClickTarget(targetGo, clickType) + end + end, 0.1) + else + self.clickAreaCallback = callback + self:setClickTarget(targetGo, clickType) + end + + local fingerDir = DataManager.TutorialData:getFingerDir() + if fingerDir and self.fingerParentNode then + if fingerDir == 1 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 180) + elseif fingerDir == 2 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 0) + elseif fingerDir == 3 then + self.fingerParentNode:setLocalEulerAngles(0, 0, 90) + elseif fingerDir == 4 then + self.fingerParentNode:setLocalEulerAngles(0, 0, -90) + end + else + self.fingerParentNode:setLocalEulerAngles(0, 0, 0) + end +end + +function TutorialUI:setClickTarget(targetGo, clickType) + self:setClickAreaEnable(true) + if clickType == 1 then -- 点击指定区域就算完成事件 + self.clickAreaCS:ClearTargetTransform() + else + self.clickAreaCS:SetTargetTransform(targetGo) + end + self.isHaveClickBtnTutorial = true + local rectTransform = targetGo:GetComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM) + local setGuideFingerPosition = nil + local rect = rectTransform.rect + local anchoredPosition = self:getTargetAnchoredPosition(targetGo) + setGuideFingerPosition = function(interval) + -- 如果ui在动的话就跟随着更新下位置 + local time = 0 + if self._findTargetSid then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + end + self._findTargetSid = ModuleManager.TutorialManager:scheduleGlobal(function(dt) + if targetGo == nil or CS.BF.Utils.IsNull(targetGo) then -- 被干掉了 + if self._findTargetSid then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + self._findTargetSid = nil + end + return + end + local newAnchoredPosition = self:getTargetAnchoredPosition(targetGo) + if math.abs(newAnchoredPosition.x - anchoredPosition.x) < 0.00001 and math.abs(newAnchoredPosition.y - anchoredPosition.y) < 0.00001 then + time = time + dt + if time > 0.1 then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + self._findTargetSid = nil + setGuideFingerPosition(0.1) + end + else + time = 0 + anchoredPosition = newAnchoredPosition + self:updateClickFingerAndMask(anchoredPosition, rect) + end + end, interval) + end + setGuideFingerPosition(0) + self:updateClickFingerAndMask(anchoredPosition, rect) +end + +-- 更新点击区域表现 +function TutorialUI:updateClickFingerAndMask(anchoredPosition, rect) + self:setClickAreaWithTarget(anchoredPosition, rect.width, rect.height) + local showMask = DataManager.TutorialData:getShowMask() + if showMask == 1 then -- 矩形遮罩 + self:setMaskEnable(true) + + local squareOffset = DataManager.TutorialData:getMaskSquareOffset() + local addX = squareOffset and squareOffset[1] or 0 + local addY = squareOffset and squareOffset[2] or 0 + + self.maskMat:SetVector(self:getCenterPropertyID(), {x = anchoredPosition.x + addX, y = anchoredPosition.y + addY, z = 0, w = 0}) + self.maskMat:SetFloat(self:getEllipsePropertyID(), 10) + + local squareSize = DataManager.TutorialData:getMaskSquareSize() + local addW = squareSize and squareSize[1] or 0 + local addH = squareSize and squareSize[2] or 0 + + self.maskMat:SetFloat(self:getRectXPropertyID(), rect.width / 2 + addW) + self.maskMat:SetFloat(self:getRectYPropertyID(), rect.height / 2 + addH) + elseif showMask == 2 then -- 圆形遮罩 + self:setMaskEnable(true) + + local circleOffset = DataManager.TutorialData:getMaskCircleOffset() + local addX = circleOffset and circleOffset[1] or 0 + local addY = circleOffset and circleOffset[2] or 0 + self.maskMat:SetVector(self:getCenterPropertyID(), {x = anchoredPosition.x + addX, y = anchoredPosition.y + addY, z = 0, w = 0}) + self.maskMat:SetFloat(self:getEllipsePropertyID(), 2) + local maskRadius = DataManager.TutorialData:getMaskRadius() or TutorialConst.DEFAULT_RADIUS + self.maskMat:SetFloat(self:getRectXPropertyID(), maskRadius) + self.maskMat:SetFloat(self:getRectYPropertyID(), maskRadius) + end + + local fingerOffset = DataManager.TutorialData:getFingerOffset() + if fingerOffset then + self.guideFingerNode:setLocalScale(1, 1, 1) + if not self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR).enabled then + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR).enabled = true + self.guideFingerNode:getComponent(GConst.TYPEOF_UNITY_CLASS.ANIMATOR):Play("finger_click_prompt", -1, 0) + end + self.guideFingerNode:setLocalPosition(anchoredPosition.x, anchoredPosition.y, 0) + self.fingerParentNode:setLocalPosition(fingerOffset[1], fingerOffset[2], 0) + end +end + +-- 更新MASK +function TutorialUI:updateMask(anchoredPosition, rect) + local showMask = DataManager.TutorialData:getShowMask() + if showMask == 1 then -- 矩形遮罩 + self:setMaskEnable(true) + + local squareOffset = DataManager.TutorialData:getMaskSquareOffset() + local addX = squareOffset and squareOffset[1] or 0 + local addY = squareOffset and squareOffset[2] or 0 + + self.maskMat:SetVector(self:getCenterPropertyID(), {x = anchoredPosition.x + addX, y = anchoredPosition.y + addY, z = 0, w = 0}) + self.maskMat:SetFloat(self:getEllipsePropertyID(), 10) + + local squareSize = DataManager.TutorialData:getMaskSquareSize() + local addW = squareSize and squareSize[1] or 0 + local addH = squareSize and squareSize[2] or 0 + + self.maskMat:SetFloat(self:getRectXPropertyID(), rect.width / 2 + addW) + self.maskMat:SetFloat(self:getRectYPropertyID(), rect.height / 2 + addH) + elseif showMask == 2 then -- 圆形遮罩 + self:setMaskEnable(true) + + local circleOffset = DataManager.TutorialData:getMaskCircleOffset() + local addX = circleOffset and circleOffset[1] or 0 + local addY = circleOffset and circleOffset[2] or 0 + self.maskMat:SetVector(self:getCenterPropertyID(), {x = anchoredPosition.x + addX, y = anchoredPosition.y + addY, z = 0, w = 0}) + self.maskMat:SetFloat(self:getEllipsePropertyID(), 2) + local maskRadius = DataManager.TutorialData:getMaskRadius() or TutorialConst.DEFAULT_RADIUS + self.maskMat:SetFloat(self:getRectXPropertyID(), maskRadius) + self.maskMat:SetFloat(self:getRectYPropertyID(), maskRadius) + end +end + +-- 这里先不ClearTargetTransform,避免在执行ExecuteEvents.Execute前target就先被清理了 +function TutorialUI:unregisterClickBtn() + self:setClickAreaEnable(false) + self.clickAreaCallback = nil + self.showClickSound = false +end + +function TutorialUI:getCenterPropertyID() + if not self._matCenterId then + self._matCenterId = CS.UnityEngine.Shader.PropertyToID("_Center") + end + return self._matCenterId +end + +function TutorialUI:getEllipsePropertyID() + if not self._matEllipseId then + self._matEllipseId = CS.UnityEngine.Shader.PropertyToID("_Ellipse") + end + return self._matEllipseId +end + +function TutorialUI:getRectXPropertyID() + if not self._matRectXId then + self._matRectXId = CS.UnityEngine.Shader.PropertyToID("_Rect_X") + end + return self._matRectXId +end + +function TutorialUI:getRectYPropertyID() + if not self._matRectYId then + self._matRectYId = CS.UnityEngine.Shader.PropertyToID("_Rect_Y") + end + return self._matRectYId +end + +function TutorialUI:showTalk(callback) + self:setClickAreaWithScreen() + self:setClickAreaEnable(true) + self.clickAreaCS:ClearTargetTransform() + self.isHaveClickBtnTutorial = false + self.clickAreaCallback = callback + self.showClickSound = true + + local haveTutorialText = DataManager.TutorialData:getIsHaveTutorialText() + if haveTutorialText then + self:showTutorialText() + else + self:hideTalk() + end +end + +function TutorialUI:getTargetAnchoredPosition(targetGo) + -- 这里是用transform.Find找到的组件,不是lua对象,所以直接用unity的api:GetComponent 而不是封装好的getComponent + local rectTransform = targetGo:GetComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM) + local rect = rectTransform.rect + local localToWorldMatrix = rectTransform.localToWorldMatrix + local tarCornerMid = localToWorldMatrix:MultiplyPoint3x4(BF.Vector3((rect.xMax + rect.x) / 2, (rect.yMax + rect.y) / 2, 0)) + local screenPos = UIManager:getUICameraComponent():WorldToScreenPoint(tarCornerMid) + local anchoredPosition = CS.BF.Utils.RectTransformScreenPointToLocalPointInRectangle(self.baseObject:getTransform(), screenPos.x, screenPos.y, UIManager:getUICameraComponent()) + return anchoredPosition +end + +function TutorialUI:clear() + self:setBlockTouchEnabled(false) + self:setMaskEnable(false) + self:clearClickArea() + self:hideTalk() + self:hideGuideFinger() + self:clearScheduler() + self.baseObject:setActive(false) +end + +function TutorialUI:clearScheduler() + if self._findTargetSid then + ModuleManager.TutorialManager:unscheduleGlobal(self._findTargetSid) + self._findTargetSid = nil + end +end + +function TutorialUI:setVisible(visible) + self.baseObject:setActive(visible) +end + +return TutorialUI \ No newline at end of file diff --git a/lua/app/ui/tutorial/tutorial_ui.lua.meta b/lua/app/ui/tutorial/tutorial_ui.lua.meta new file mode 100644 index 00000000..2ac300e7 --- /dev/null +++ b/lua/app/ui/tutorial/tutorial_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: f6300c2e87b78914f9dd99a3ff93c5a3 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/tutorial/tutorial_white_ui.lua b/lua/app/ui/tutorial/tutorial_white_ui.lua new file mode 100644 index 00000000..2ebcc70b --- /dev/null +++ b/lua/app/ui/tutorial/tutorial_white_ui.lua @@ -0,0 +1,26 @@ +local TutorialWhiteUI = class("TutorialWhiteUI", BaseUI) + +function TutorialWhiteUI:getPrefabPath() + return "assets/prefabs/ui/tutorial/tutorial_white_ui.prefab" +end + +function TutorialWhiteUI:onLoadRootComplete() + local uiMap = self.root:genAllChildren() + local whiteImg = uiMap["battle_buff_tips.mask"] + whiteImg:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE).color = BF.ColorWhiteAlpha + + self.seq = DOTweenManager:createSeqWithIntId(id) + local fadeIn = whiteImg:getComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE):DOFade(1, 1.8) + self.seq:Append(fadeIn) + self.seq:AppendCallback(function() + self.seq = nil + end) +end + +function TutorialWhiteUI:onClose() + if self.seq then + self.seq:Kill() + end +end + +return TutorialWhiteUI \ No newline at end of file diff --git a/lua/app/ui/tutorial/tutorial_white_ui.lua.meta b/lua/app/ui/tutorial/tutorial_white_ui.lua.meta new file mode 100644 index 00000000..c24f13dc --- /dev/null +++ b/lua/app/ui/tutorial/tutorial_white_ui.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 0e83c490a843c714abe49a273684cbb4 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/ui/ui_manager.lua b/lua/app/ui/ui_manager.lua new file mode 100644 index 00000000..85168926 --- /dev/null +++ b/lua/app/ui/ui_manager.lua @@ -0,0 +1,1288 @@ +local UIManager = {} + +local MESSAGE_BOX_PATH = "assets/prefabs/ui/common/message_box.prefab" +local CHEATING_BOX_PATH = "assets/prefabs/ui/common/cheating_box.prefab" +local TUTORIAL_PATH = "assets/prefabs/ui/tutorial/tutorial_ui.prefab" +local BF_BASE_SORTING_ORDER_HELPER = GConst.TYPEOF_UNITY_CLASS.BF_BASE_SORTING_ORDER_HELPER + +UIManager.UI_TYPE = { + DEFAULT = 0, + MULTI = 1, -- 非唯一界面,此类型界面同一时间可以打开多个 + MAIN = 2, -- 主要的界面,打开此界面的时候会关闭所有其他界面 +} + +UIManager.MESSAGE_BOX_TAG = { + BATTLE_SKIP = 1, + LOGIN_FAIL = 2 +} + +-- 个别uipath不同模块需要使用,统一写到一个地方避免后期要改的话改漏了 +UIManager.UI_PATH = { + GM_TOO_UI = "app/ui/gm/gm_tool_ui", + MAINCITY_UI = "app/ui/main_city/main_city_ui", + WEAPON_SUMMON_UI = "app/ui/summon_pop/summon_rewards_ui", + PROTECTIVE_SUMMON_UI = "app/ui/summon_pop/summon_rewards_ui", + LEGACY_SUMMON_UI = "app/ui/summon_pop/summon_rewards_ui", + HERO_ALL_UP_UI = "app/ui/hero/hero_all_up_ui", + BATTLE_BLACK_UI = "app/ui/battle/battle_black_ui", +} + +-- 动画类型 +UIManager.ANI_TYPE = { + POP = 1, -- 弹出 + NONE = 2, -- 无动画 +} + +-- loading类型 +UIManager.LOADING_TYPE = { + BLACK = 1, + CLOUD = 2 +} + +local UI_CACHE_SIZE = 5 -- ui缓存上限 +local MAIN_CANVAS_HIERARCHY_CAPACITY = 20480 +local MAIN_CANVAS_ORDER = 1000 +local UI_INTERVAL_ORDER = 400 +local UI_MAX_ORDER = 28000 +local UI_BARS_UNDER_ORDER = 2 +local CLICK_EFFECT = 31000 + +local OTHER_CANVAS_INTERVAL_ORDER = { + TOAST = 1, + TUTORIAL = 2, + NET = 3, + LOADING = 4, + SWALLOW_TOUCH = 5, + MESSAGE_BOX_TOP = 6, + LOADING_TOP = 7, + -- 这里要注意一下不要超过sortingOrder的最大值32767,目前UI_MAX_ORDER + UI_INTERVAL_ORDER*LOADING_TOP = 30800 小于 32767 +} + +function UIManager:init(callback) + if self.uiRoot and CS.BF.Utils.IsNull(self.uiRoot:getGameObject()) then + return + end + self.uiList = {} + self.loadingUI = {} + self.uiCacheList = {} + self.uiLoadedListeners = {} + self.disableTouchCount = 0 + self.waitNetCount = 0 + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/ui_root.prefab", nil, function(uiRoot) + self.uiRoot = uiRoot + CS.UnityEngine.GameObject.DontDestroyOnLoad(uiRoot:getGameObject()) + local uiMap = uiRoot:genAllChildren() + self.uiCamera = uiMap["ui_root.ui_camera"] + self.mainCanvas = uiMap["ui_root.main_canvas"] + self.mainCanvas:getTransform().hierarchyCapacity = MAIN_CANVAS_HIERARCHY_CAPACITY + + self.currencyRoot = uiMap["ui_root.main_canvas.currency_root"] + self:_loadCurrencyBar() + self.currencyCanvas = self.currencyRoot:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS) + + self.swallowUITouches = uiMap["ui_root.main_canvas.swallow_ui_touches"] + self.swallowUITouchesCanvas = self.swallowUITouches:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS) + + self.toastCanvas = uiMap["ui_root.toast_canvas"] + self.toastCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).sortingOrder = UI_MAX_ORDER + UI_INTERVAL_ORDER*OTHER_CANVAS_INTERVAL_ORDER.TOAST + self.toastNode = uiMap["ui_root.toast_canvas.toast"] + self.messageBoxNode = uiMap["ui_root.toast_canvas.messagebox"] + + self.netCanvas = uiMap["ui_root.net_canvas"] + local netCanvasOrder = UI_MAX_ORDER + UI_INTERVAL_ORDER*OTHER_CANVAS_INTERVAL_ORDER.NET + self.netCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).sortingOrder = netCanvasOrder + self.netCanvas:setActive(false) + + self.tutorialCanvas = uiMap["ui_root.tutorial_canvas"] + self.tutorialCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).sortingOrder = UI_MAX_ORDER + UI_INTERVAL_ORDER*OTHER_CANVAS_INTERVAL_ORDER.TUTORIAL + + self.loadingCanvas = uiMap["ui_root.loading_canvas"] + self.blackLoadingImg = uiMap["ui_root.loading_canvas.black"] + self.swallowTouchesCanvas = uiMap["ui_root.swallow_touches_canvas"] + + self.swallowTouchesCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + self.swallowTouchesCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).sortingOrder = UI_MAX_ORDER + UI_INTERVAL_ORDER*OTHER_CANVAS_INTERVAL_ORDER.SWALLOW_TOUCH + + -- ui预制件pool节点 + self.uiPrefabPoolNode = uiMap["ui_root.ui_prefab_pool"] + + callback() + end) +end + +function UIManager:showUI(uiPath, params) + if self.uiRoot == nil then + return + end + local uiObj = self:checkOpen(uiPath) + if uiObj then + return uiObj + end + uiObj = require(uiPath):create(params) + uiObj:setUIIndex(uiPath) + uiObj:_recordParams(params) + local topUISiblingIndex + local topUI = self.uiList[#self.uiList] + if topUI then + topUISiblingIndex = topUI:getSiblingIndex() + 1 + topUI:_onCover() + else + topUISiblingIndex = 1 + end + table.insert(self.uiList, uiObj) + + self:setUIOrder(uiObj, topUISiblingIndex) + + local aniType = self:getAniType(uiObj) + if aniType then + self:_setUISwallowOrder(topUISiblingIndex + 1) + self.swallowUITouches:getGameObject():SetActive(true) + else + self:_updateUISwallowOrder() + end + + uiObj:_onCreate() + local bgm = uiObj:getBGMId() + if bgm then + self:playBGM(bgm) + end + Logger.logHighlight("Show UI:%s", uiPath) + -- 上报打开界面事件 + BIReport:postOpenUI(uiObj:getPrefabPath()) + return uiObj +end + +function UIManager:closeUI(uiObj) + local uiNum = #self.uiList + local removeIndex = 0 + for i = uiNum, 1, -1 do + if uiObj == self.uiList[i] then + removeIndex = i + break + end + end + if removeIndex <= 0 then + Logger.log(uiObj:getUIIndex(), " is not open") + return + end + + if removeIndex == uiNum then -- 需要关闭的界面在最上层 + uiNum = uiNum - 1 + if uiNum > 0 then + local topUI = self.uiList[uiNum] + topUI:_onReshow() + + local aniType = self:getAniType(uiObj) + if aniType and aniType ~= UIManager.ANI_TYPE.POP and + aniType ~= UIManager.ANI_TYPE.NONE then + if removeIndex > 0 then + table.remove(self.uiList, removeIndex) + end + self:_setUISwallowOrder(uiObj:getSiblingIndex() + 1) + self.swallowUITouches:getGameObject():SetActive(true) + uiObj:_playExitAnimation() + else + if removeIndex > 0 then + table.remove(self.uiList, removeIndex) + end + uiObj:_onExitAnimationComplete() + self:_updateUISwallowOrder() + end + + local bgm = topUI:getBGMId() + if bgm then + self:playBGM(bgm) + elseif uiObj:getBGMId() then + local openedUINum = uiNum + while openedUINum > 1 do + openedUINum = openedUINum - 1 + bgm = self.uiList[openedUINum]:getBGMId() + if bgm then + self:playBGM(bgm) + break + end + end + end + else + uiObj:_onExitAnimationComplete() + end + else + if removeIndex > 0 then + table.remove(self.uiList, removeIndex) + end + uiObj:_onExitAnimationComplete() + if uiObj:isFullScreen() and uiObj:isVisible() then + local curIndex = removeIndex - 1 + local currObj = nil + while curIndex >= 1 do + currObj = self.uiList[curIndex] + currObj:_setVisible(true) + self:setBarsVisible(currObj, true) + if currObj:isFullScreen() then + break + end + curIndex = curIndex - 1 + end + end + end + + uiObj:_onClose() +end + +function UIManager:checkOpen(uiPath) + local uiNum = #self.uiList + if uiNum > 0 then + for i = uiNum, 1, -1 do + if self.uiList[i]:getUIIndex() == uiPath then + -- 如果这个界面可以打开多个 + if self.uiList[i]:getUIType() == UIManager.UI_TYPE.MULTI then + return nil + end + if i < uiNum then -- 如果这个界面已经打开,并且不是最顶层 + local reshowUI + if self.uiList[i]:getUIType() == UIManager.UI_TYPE.MAIN then + -- 关闭此界面之上所有界面 + for j = uiNum, i + 1, -1 do + local closeUIObj = table.remove(self.uiList, j) + closeUIObj:_onClose() + closeUIObj:_onExitAnimationComplete() + end + reshowUI = self.uiList[i] + else + -- 将此界面放到所有界面的最顶层 + local topUI = self.uiList[uiNum] + local siblingIndex = topUI:getSiblingIndex() + 1 + topUI:_onCover() + reshowUI = table.remove(self.uiList, i) + table.insert(self.uiList, reshowUI) + self:setUIOrder(reshowUI, siblingIndex) + end + self:_updateUISwallowOrder() + reshowUI:_onReshow() + + local bgm = reshowUI:getBGMId() + if bgm then + self:playBGM(bgm) + end + return reshowUI + end + return self.uiList[i] + end + end + end + return nil +end + +function UIManager:getUIPrefab(path, callback) + for k, prefabObj in ipairs(self.uiCacheList) do + if prefabObj:getAssetPath() == path then + prefabObj:setParent(self.mainCanvas, false) + table.remove(self.uiCacheList, k) + return callback(prefabObj) + end + end + UIPrefabManager:loadUIWidgetAsync(path, self.mainCanvas, callback) +end + +function UIManager:clearUIPrefabCache() + for i = 1,#self.uiCacheList do + table.remove(self.uiCacheList):destroy() + end +end + +function UIManager:putbackUIPrefab(prefabObj) + prefabObj:setParent(self.uiPrefabPoolNode, false) + if #self.uiCacheList >= UI_CACHE_SIZE then -- 缓存的ui prefab已经超上限了 + local head = table.remove(self.uiCacheList, 1) + head:destroy() + end + table.insert(self.uiCacheList, prefabObj) +end + +function UIManager:setUIOrder(uiObj, siblingIndex) + local order = MAIN_CANVAS_ORDER + siblingIndex * UI_INTERVAL_ORDER + if order < UI_MAX_ORDER then + uiObj:setUIOrder(siblingIndex, order) + else -- 超过最大值了,全部界面重新设置一下order + for i, obj in ipairs(self.uiList) do + order = MAIN_CANVAS_ORDER + i * UI_INTERVAL_ORDER + obj:setUIOrder(i, order) + end + if self.currencyBarBindUI then + local sortingOrder = self.currencyBarBindUI:getUIOrder() + self.currencyCanvas.sortingOrder = sortingOrder + UI_INTERVAL_ORDER - UI_BARS_UNDER_ORDER + end + self:_updateUISwallowOrder() + end +end + +function UIManager:setBarsVisible(uiObj, visible) + if self.currencyBarBindUI == uiObj then + if self.currencyBar then + self.currencyBar:setVisible(visible) + end + end +end + +function UIManager:updateBarsState(uiObj) + if self.currencyBarBindUI == uiObj then + self:showCurrencyBar(uiObj) + end +end + +function UIManager:hideBehindUI(uiObj) + local findIndex = 0 + for i = #self.uiList, 1, -1 do + if uiObj == self.uiList[i] then + findIndex = i + break + end + end + local curIndex = findIndex - 1 + local currObj = nil + while curIndex >= 1 do + currObj = self.uiList[curIndex] + if currObj:isVisible() == false then + break + end + currObj:_setVisible(false) + self:setBarsVisible(currObj, false) + curIndex = curIndex - 1 + end +end + +function UIManager:showBehindUI(uiObj) + local findIndex = 0 + for i = #self.uiList, 1, -1 do + if uiObj == self.uiList[i] then + findIndex = i + break + end + end + local curIndex = findIndex - 1 + local currObj = nil + while curIndex >= 1 do + currObj = self.uiList[curIndex] + currObj:_setVisible(true) + self:setBarsVisible(currObj, true) + if currObj:isFullScreen() then + break + end + curIndex = curIndex - 1 + end +end + +function UIManager:getUIByIndex(index) + for k, v in ipairs(self.uiList) do + if v:getUIIndex() == index then + return v + end + end + return nil +end + +-- 获取引导UI +function UIManager:getTutorial(callback) + if self.tutorial == nil then + UIPrefabManager:loadUIWidgetAsync(TUTORIAL_PATH, self.tutorialCanvas, function (prefabObject) + if self.tutorial then + prefabObject:destroy() + return + end + self.tutorial = prefabObject + if callback then + callback(prefabObject) + end + end) + else + self.tutorial:setActive(true) + if callback then + callback(self.tutorial) + end + end +end + +-- 显示引导节点 +function UIManager:showTutorial() + self.tutorialCanvas:setActive(true) + self:hideChatBtn() +end + +-- 隐藏引导节点 +function UIManager:hideTutorial() + self.tutorialCanvas:setActive(false) +end + +function UIManager:getBlackLoadingImg() + return self.blackLoadingImg +end + +function UIManager:showLoading(loadingType, callback) + self:disableTouch() + self.loadingCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = true + self.loadingCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).sortingOrder = UI_MAX_ORDER + UI_INTERVAL_ORDER*OTHER_CANVAS_INTERVAL_ORDER.LOADING + loadingType = loadingType or UIManager.LOADING_TYPE.BLACK + if self.currLoadingType == nil then + self.currLoadingType = loadingType + end + ModuleManager.LoadingManager:showLoading(loadingType, self.loadingCanvas, callback) +end + +function UIManager:closeLoading(callback) + if self.currLoadingType == nil then + self.loadingCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + if callback then + callback() + end + return false + end + ModuleManager.LoadingManager:closeLoading(self.currLoadingType, function () + self:onLoadingUICompletelyClosed() + if callback then + callback() + end + end) + self.currLoadingType = nil + return true +end + +function UIManager:onLoadingUICompletelyClosed() + self:enableTouch() + self.loadingCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false +end + +function UIManager:closeAllUI() + local uiNum = #self.uiList + for i = uiNum, 1, -1 do + self.uiList[i]:_onClose() + self.uiList[i]:_onExitAnimationComplete() + end + self.uiList = {} + self.currencyBarBindUI = nil + if self.currencyBar then + self.currencyBar:setVisible(false) + end +end + +function UIManager:closeAllUIExceptMainUI(includeCurrencyBar) + local uiNum = #self.uiList + for i = uiNum, 1, -1 do + if self.uiList[i]:getUIIndex() ~= UIManager.UI_PATH.MAINCITY_UI then + self.uiList[i]:_onClose() + self.uiList[i]:_onExitAnimationComplete() + table.remove(self.uiList, i) + end + end + if includeCurrencyBar and self.currencyBar then + self.currencyBarBindUI = nil + self.currencyBar:setVisible(false) + end +end + +function UIManager:hideMainUIExceptBattle() + local uiObj = UIManager:getUIByIndex(UIManager.UI_PATH.MAINCITY_UI) + if uiObj and uiObj:getIsLoadedComplete() then + uiObj:hideMainUIExceptBattle() + end +end + +function UIManager:showMainUIExceptBattle() + local uiObj = UIManager:getUIByIndex(UIManager.UI_PATH.MAINCITY_UI) + if uiObj and uiObj:getIsLoadedComplete() then + uiObj:showMainUIExceptBattle() + end +end + +-- 测试专用,有隐患,正常逻辑不要直接使用 +function UIManager:reshowAllUI() + if DEBUG and EDITOR_MODE then + local reshowList = {} + for k, v in ipairs(self.uiList) do + reshowList[k] = v + end + self:closeAllUI() + for i = 1, #reshowList do + local params = reshowList[i]:_getRecordParams() + if params and type(params) == "table" then + params.aniType = nil + end + self:showUI(reshowList[i]:getUIIndex(), params) + end + end +end + +function UIManager:closeBehindUI(uiObj) + local closeFlag = false + for i = #self.uiList, 1, -1 do + local curUIObj = self.uiList[i] + if closeFlag then + table.remove(self.uiList, i) + curUIObj:_onClose() + curUIObj:_onExitAnimationComplete() + else + if curUIObj == uiObj then + closeFlag = true + end + end + end + if closeFlag then + self:_updateUISwallowOrder() + end +end + +function UIManager:closeUnderUI(uiObj) + local closeFlag = false + for i = 1, #self.uiList do + local curUIObj = self.uiList[i] + if curUIObj == uiObj then + for j = #self.uiList, i + 1, -1 do + curUIObj = self.uiList[j] + table.remove(self.uiList, j) + curUIObj:_onClose() + curUIObj:_onExitAnimationComplete() + closeFlag = true + end + + break + end + end + + if closeFlag then + uiObj:_onReshow() + self:_updateUISwallowOrder() + end +end + +function UIManager:onUILoadedComplete(uiObj) + local callback = self.uiLoadedListeners[uiObj:getUIIndex()] + if callback then + self.uiLoadedListeners[uiObj:getUIIndex()] = nil + callback() + end +end + +function UIManager:onUIClosedComplete(uiObj) + self:updateBarsWhenCloseUI(uiObj) + if self.uiLoadedListeners[uiObj:getUIIndex()] then + self.uiLoadedListeners[uiObj:getUIIndex()] = nil + end +end + +function UIManager:addLoadUICompleteListener(uiIndex, callback) + local uiObj = self:getUIByIndex(uiIndex) + if uiObj and uiObj._baseLoadComplete then + callback() + else + self.uiLoadedListeners[uiIndex] = callback + end +end + +function UIManager:getMessageBox(top, callback) + if self.cheatMsgBox and self.cheatMsgBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled then + return + end + if top then + if self.topMsgBox == nil then + UIPrefabManager:loadUIWidgetAsync(MESSAGE_BOX_PATH, self.messageBoxNode, function (prefabObject) + if self.topMsgBox then + prefabObject:destroy() + callback(self.topMsgBox) + return + end + prefabObject:initPrefabHelper() + prefabObject:getTransform():SetAsLastSibling() + + local messageBoxCanvas = prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS) + local messageBoxCanvasOrder = UI_MAX_ORDER + UI_INTERVAL_ORDER*OTHER_CANVAS_INTERVAL_ORDER.MESSAGE_BOX_TOP + messageBoxCanvas.overrideSorting = true + messageBoxCanvas.sortingOrder = messageBoxCanvasOrder + self.topMsgBox = prefabObject + callback(prefabObject) + end) + else + self.topMsgBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = true + callback(self.topMsgBox) + end + else + if self.messageBox == nil then + UIPrefabManager:loadUIWidgetAsync(MESSAGE_BOX_PATH, self.messageBoxNode, function (prefabObject) + if self.messageBox then + prefabObject:destroy() + callback(self.messageBox) + return + end + prefabObject:initPrefabHelper() + self.messageBox = prefabObject + callback(prefabObject) + end) + else + self.messageBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = true + callback(self.messageBox) + end + end +end + +function UIManager:getCheatMessageBox(callback) + if self.topMsgBox then + self.topMsgBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end + if self.messageBox then + self.messageBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end + if self.cheatMsgBox == nil then + UIPrefabManager:loadUIWidgetAsync(CHEATING_BOX_PATH, self.messageBoxNode, function (prefabObject) + if self.cheatMsgBox then + prefabObject:destroy() + callback(self.cheatMsgBox) + return + end + prefabObject:initPrefabHelper() + prefabObject:getTransform():SetAsLastSibling() + + local messageBoxCanvas = prefabObject:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS) + local messageBoxCanvasOrder = UI_MAX_ORDER + UI_INTERVAL_ORDER*OTHER_CANVAS_INTERVAL_ORDER.MESSAGE_BOX_TOP + 1 + messageBoxCanvas.overrideSorting = true + messageBoxCanvas.sortingOrder = messageBoxCanvasOrder + self.cheatMsgBox = prefabObject + callback(self.cheatMsgBox) + end) + else + self.cheatMsgBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = true + callback(self.cheatMsgBox) + end +end + +function UIManager:getMessageBoxGameObject(top) + if top then + return self.topMsgBox + else + return self.messageBox + end +end + +function UIManager:getMessageBoxCanvas() + return self.messageBoxNode:getTransform() +end + +function UIManager:hideMessageBox() + if self.messageBox then + self.messageBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end +end + +function UIManager:hideCheatMessageBox() + if self.cheatMsgBox then + self.cheatMsgBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end +end + +function UIManager:hideMessageBoxByTag(tag) + if self.messageBox then + if self.messageBox:getTag() == tag then + self.messageBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end + end + if self.topMsgBox then + if self.topMsgBox:getTag() == tag then + self.topMsgBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end + end +end + +function UIManager:getToast(callback) + if not self.toastPool then + self.toastPool = {} + end + local toast + for _, toastObj in ipairs(self.toastPool) do + if not toastObj._using then + toast = toastObj + end + end + + if toast == nil then + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/toast.prefab", self.toastNode, function (_prefabObject) + _prefabObject:initPrefabHelper() + table.insert(self.toastPool, _prefabObject) + callback(_prefabObject) + end) + else + callback(toast) + end +end + +function UIManager:getAllToast() + return self.toastPool +end + +function UIManager:hideToast() + if not self.toastPool then + return + end + + ModuleManager.ToastManager:clear() + for i, toastObj in ipairs(self.toastPool) do + if toastObj._toastSequence then + toastObj._toastSequence:Kill() + toastObj._toastSequence = nil + end + toastObj._using = false + toastObj:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end +end + +function UIManager:showUpdateToast(msgData) + local ts = msgData.ts // 1000 + GFunc.showUpdateToast(ts - Time:getServerTime()) +end + +function UIManager:getRollToast(callback) + if not self.rollToast then + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/roll_toast.prefab", self.toastNode, function (_prefabObject) + if self.rollToast then + _prefabObject:destroy() + return + end + _prefabObject:initPrefabHelper() + self.rollToast = _prefabObject + callback(_prefabObject) + end) + else + callback(self.rollToast) + end +end + +---- 回到登录界面时 killseq为true +function UIManager:hideRollToast(killSeq) + if not self.rollToast then + return + end + if killSeq and self.rollToast._toastSequence then + self.rollToast._toastSequence:Kill() + self.rollToast._toastSequence = nil + end + ModuleManager.RollToastManager:clear(not killSeq) + self.rollToast:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false +end + +function UIManager:hideToastAndMessageBox() + self:hideToast() + self:hideRollToast() +end + +function UIManager:getMainCanvasTransform() + return self.mainCanvas:getTransform() +end + +function UIManager:getMainCanvas() + return self.mainCanvas +end + +function UIManager:getUICameraComponent() + return self.uiCamera:getComponent(GConst.TYPEOF_UNITY_CLASS.CAMERA) +end + +function UIManager:showWaitNet(forceRestart) + if self.waitNetCount == 0 or forceRestart then + if self.waitNetSeq == nil then + local seq = DOTweenManager:createSeqWithIntId(GConst.DOTWEEN_IDS.WAIT_NET) + seq:SetAutoKill(false) + seq:AppendInterval(1) + seq:AppendCallback(function() + self.netCanvas:setActive(true) + end) + self.waitNetSeq = seq + elseif not self.waitNetSeq:IsPlaying() then + self.waitNetSeq:Restart() + end + end + self.waitNetCount = self.waitNetCount + 1 + self:disableTouch() +end + +function UIManager:hideWaitNet(hideAll) + if hideAll then + local count = self.waitNetCount + self.waitNetCount = 0 + if self.waitNetSeq then + self.waitNetSeq:Pause() + end + self.netCanvas:setActive(false) + for i = 1, count do + self:enableTouch() + end + else + if self.waitNetCount > 0 then + self:enableTouch() + end + self.waitNetCount = self.waitNetCount - 1 + if self.waitNetCount <= 0 then + self.waitNetCount = 0 + if self.waitNetSeq then + self.waitNetSeq:Pause() + end + self.netCanvas:setActive(false) + end + end +end + +function UIManager:getWaitNetCount() + return self.waitNetCount +end + +function UIManager:disableTouch() + if self.disableTouchCount == 0 then + self.swallowTouchesCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = true + end + self.disableTouchCount = self.disableTouchCount + 1 + if self.disableTouchCount <= 0 then + Logger.logError("UIManager:disableTouch count error:%d", self.disableTouchCount) + end +end + +function UIManager:enableTouch() + self.disableTouchCount = self.disableTouchCount - 1 + if self.disableTouchCount <= 0 then + self.swallowTouchesCanvas:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled = false + end +end + +function UIManager:_updateUISwallowOrder() + local topSwallowTouchIndex = 0 + for i = #self.uiList, 1, -1 do + if self.uiList[i]:swallowTouchBetweenUI() then + topSwallowTouchIndex = self.uiList[i]:getSiblingIndex() + self:_setUISwallowOrder(topSwallowTouchIndex) + break + end + end + self.swallowUITouches:getGameObject():SetActive(topSwallowTouchIndex > 0) +end + +function UIManager:_setUISwallowOrder(siblingIndex) + local order = MAIN_CANVAS_ORDER + siblingIndex * UI_INTERVAL_ORDER + self.swallowUITouches:getTransform():SetSiblingIndex(siblingIndex - 1) + self.swallowUITouchesCanvas.sortingOrder = order - 1 +end + +function UIManager:_getUpperUIObj(uiObj) + local uiNum = #self.uiList + for i = uiNum, 1, -1 do + if self.uiList[i] == uiObj then + return self.uiList[i - 1] + end + end + return nil +end + +function UIManager:getTopUIObj() + local uiNum = #self.uiList + return self.uiList[uiNum] +end + +function UIManager:getUIList() + return self.uiList +end + +function UIManager:getAniType(uiObj) + local params = uiObj:_getRecordParams() + if type(params) == "table" and params.aniType then + return params.aniType + end + if not uiObj:isFullScreen() then + return self.ANI_TYPE.POP + end + return nil +end + +function UIManager:playBGM(id) + if id ~= self.currBGMId then + self.currBGMId = id + AudioManager:playMusic(id, true) + end +end + +function UIManager:stopBGM(id) + if id == self.currBGMId then + self.currBGMId = nil + AudioManager:stopMusicById(id, true) + end +end + +function UIManager:stopCurrentBGM() + if self.currBGMId then + AudioManager:stopMusicById(self.currBGMId, true) + self.currBGMId = nil + end +end + +function UIManager:getCurrentBGM() + return self.currBGMId +end + +function UIManager:clear() + if self.waitNetSeq then + self.waitNetSeq:Kill() + self.waitNetSeq = nil + end +end + +function UIManager:destroyUIRoot() + if self.uiRoot then + self.uiRoot:destroy() + self.uiRoot = nil + end +end + +-- 显示刘海屏(模拟IphoneX) +function UIManager:showNotchScreen() + if self.notchScreen then + self.notchScreen:setActive(true) + else + -- 创建一个刘海屏 + local width, height = GFunc.getScreenSize() + local notchHeight = SafeAreaManager:getNotchScreenHeight() + Logger.log("模拟刘海屏高度:%s", notchHeight) + local notchScreen = CS.UnityEngine.GameObject("NotchScreen") + notchScreen:AddComponent(GConst.TYPEOF_UNITY_CLASS.RECTTRANSFORM) + self.notchScreen = BaseObject:create() + self.notchScreen:initWithGameObject(notchScreen) + self.notchScreen:getTransform():SetParent(self.toastCanvas:getTransform()) + self.notchScreen:getTransform().anchorMin = BF.Vector2(0, 1) + self.notchScreen:getTransform().anchorMax = BF.Vector2(1, 1) + self.notchScreen:getTransform().pivot = BF.Vector2(0.5, 1) + self.notchScreen:setAnchoredPosition(0, 0) + self.notchScreen:setSizeDelta(0, notchHeight) + self.notchScreen:setLocalScale(1, 1, 1) + local cacheLocalPos = self.notchScreen:getTransform().localPosition + self.notchScreen:getTransform().localPosition = BF.Vector3(cacheLocalPos.x, cacheLocalPos.y, 0) + local img = notchScreen:AddComponent(GConst.TYPEOF_UNITY_CLASS.UI_IMAGE) + img.color = BF.Color(0, 0, 0, 0.5) + end +end + +function UIManager:backToLogin(clearLoginType) + self:stopCurrentBGM() + + SDKManager:gameLogout(clearLoginType or false, function () + -- 移除 + -- SchedulerManager:removeCrossDaySId() + + -- 清除引导 + ModuleManager.TutorialManager:stopTutorial() + -- 触发断线回到Login界面事件 + -- EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.LOGOUT_BACK_TO_LOGIN) + + self:closeAllUI() + ModuleManager.BattleManager:clearOnExitScene() + self:hideChatBtn() + Game:showLoginUI() + end) +end + +function UIManager:backToLoginWithoutLogout() + self:stopCurrentBGM() + ModuleManager.TutorialManager:stopTutorial() + + self:closeAllUI() + ModuleManager.BattleManager:clearOnExitScene() + self:hideChatBtn() + Game:showLoginUI() +end + +-- 掉线提示处理 +function UIManager:showKickOut(msgData) + local content + local reason = NetManager:getKickOutReasonEnum(msgData.reason) + if reason == 0 then -- 服务器维护 + content = I18N:getGlobalText(I18N.GlobalConst.MAINTAIN) + elseif reason == 1 then -- 网络消息流控,也就是短时间内通信次数太多 + content = I18N:getGlobalText(I18N.GlobalConst.DISCONNECT_RELOGIN) + elseif reason == 2 then -- 封号 + content = I18N:getGlobalText(I18N.GlobalConst.FORBIDDEN) + elseif reason == 3 then -- 多点登录 + content = I18N:getGlobalText(I18N.GlobalConst.OTHER_LOGIN) + else + content = I18N:getGlobalText(I18N.GlobalConst.DISCONNECT_RELOGIN) + end + self.disconnectMsgBoxVisible = true + -- 被踢了的话就先断开连接再弹确认框 + NetManager:closeAndClear() + local params = { + content = content, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + okFunc = function() + self.disconnectMsgBoxVisible = false + ModuleManager.LoginManager:goToLoginScene() + end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + top = true, + } + GFunc.showMessageBox(params) +end + +-- 掉线提示处理 +function UIManager:showDisconnect() + self.disconnectMsgBoxVisible = true + local params = { + content = I18N:getGlobalText(I18N.GlobalConst.DISCONNECT_RELOGIN), + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + okFunc = function() + self.disconnectMsgBoxVisible = false + ModuleManager.LoginManager:goToLoginScene() + end, + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + top = true, + } + GFunc.showMessageBox(params) +end + +function UIManager:isDisconnectMsgBoxVisible() + return self.disconnectMsgBoxVisible +end + +function UIManager:_loadCurrencyBar(params, showBg, hidAddImg) + if self.currencyBar == nil then + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/common/currency_bar.prefab", self.currencyRoot, function (_prefabObject) + if self.currencyBar then + _prefabObject:destroy() + else + self.currencyBar = _prefabObject:addLuaComponent(GConst.TYPEOF_LUA_CLASS.CURRENCY_BAR) + end + self.currencyBar:show(params, showBg, hidAddImg) + end) + end +end + +function UIManager:showCurrencyBar(uiObj) + local params, showBg, hidAddImg = uiObj:currencyParams() + if params then + local currCurrencyBarOrder = 0 + if self.currencyBarBindUI then + currCurrencyBarOrder = self.currencyBarBindUI:getUIOrder() + end + local sortingOrder = uiObj:getUIOrder() + if sortingOrder >= currCurrencyBarOrder then + self.currencyBarBindUI = uiObj + -- 设置为比下一个界面的order低x点 + self.currencyCanvas.sortingOrder = sortingOrder + UI_INTERVAL_ORDER - UI_BARS_UNDER_ORDER + if self.currencyBar == nil then + self:_loadCurrencyBar(params, showBg, hidAddImg) + else + self.currencyBar:show(params, showBg, hidAddImg) + end + return true + elseif sortingOrder == currCurrencyBarOrder then -- 同界面 + if self.currencyBar then + self.currencyBar:show(params, showBg, hidAddImg) + else + -- self.currencyParam = params + self:_loadCurrencyBar(params, showBg, hidAddImg) + end + return true + end + end + return false +end + +function UIManager:updateCurrentBattleType(battleType) + local uiObj = UIManager:getUIByIndex(UIManager.UI_PATH.MAINCITY_UI) + if uiObj and uiObj:getIsLoadedComplete() then + uiObj:updateCurrentBattleType(battleType) + end +end + +function UIManager:updateBarsWhenCloseUI(uiObj) + if self.currencyBarBindUI == uiObj then -- 关闭的是跟顶部货币栏有关联的ui + self.currencyBarBindUI = nil + local updateFlag = false + for i = #self.uiList, 1, -1 do + if self:showCurrencyBar(self.uiList[i]) then + updateFlag = true + break + end + end + if not updateFlag then + if self.currencyBar then + self.currencyBar:setVisible(false) + end + end + end +end + +function UIManager:refreshCurrencyBar() + if self.currencyBar then + self.currencyBar:refreshTextRightNow() + end +end + +function UIManager:refreshCurrencyAddTx(itemId, bigNum) + local topUI = self.uiList[#self.uiList] + if self.currencyBar and self.currencyBarBindUI == topUI then + self.currencyBar:refreshCurrencyAddTx(itemId, bigNum) + end +end + +function UIManager:showCurrencyAction(pos, imgNum) + local topUI = self.uiList[#self.uiList] + if self.currencyBar and self.currencyBarBindUI == topUI then + self.currencyBar:showCurrencyAction(pos, imgNum) + end +end + +function UIManager:showChatBtn(isFirstEnter) + if self.uiRoot then + if self.chatBtn then + self.chatBtn:getLuaComponent(GConst.TYPEOF_LUA_CLASS.CHAT_BTN_COMP):show(isFirstEnter) + else + if self.isShowChat ~= nil then + return + end + self.isShowChat = true + UIPrefabManager:loadUIWidgetAsync("assets/prefabs/ui/chat/chat_btn.prefab", self.mainCanvas, function(prefab) + self.chatBtn = prefab + self.chatBtn:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).overrideSorting = true + self.chatBtn:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).sortingOrder = UI_MAX_ORDER + local comp = self.chatBtn:addLuaComponent(GConst.TYPEOF_LUA_CLASS.CHAT_BTN_COMP) + if self.isShowChat then + comp:show(isFirstEnter) + else + comp:hide() + end + self.isShowChat = nil + end) + end + end +end + +function UIManager:hideChatBtn() + if self.uiRoot then + if self.chatBtn then + self.chatBtn:getLuaComponent(GConst.TYPEOF_LUA_CLASS.CHAT_BTN_COMP):hide() + elseif self.isShowChat then + self.isShowChat = false + end + end +end + +-- 切换语言后刷新一些缓存的界面 +function UIManager:refreshOnChangeLanguage() + if self.currencyBar then + self.currencyBar:refreshText() + end + local MessageBox = require "app/ui/common/message_box" + if self.messageBox then + MessageBox:refreshText(false) + end + if self.topMsgBox then + MessageBox:refreshText(true) + end + ModuleManager.ToastManager:refreshText() +end + +if EDITOR_MODE then + UIManager._editorUpdateUISwallowOrder = UIManager._updateUISwallowOrder + function UIManager:_updateUISwallowOrder() + self:_editorUpdateUISwallowOrder() + if self.mainCanvas:getTransform().hierarchyCapacity > MAIN_CANVAS_HIERARCHY_CAPACITY then + Logger.logTodo("current main ui canvas hierarchyCount is:%d", self.mainCanvas:getTransform().hierarchyCapacity) + end + end +end + +if NOT_PUBLISH then + UIManager._releaseEnableTouch = UIManager.enableTouch + function UIManager:enableTouch() + if self._debugEnableTouchFuncMap == nil then + self._debugEnableTouchFuncMap = { + [SceneManager.onFinished] = true, + [BaseUI.enableUITouch] = true, + [BaseScene.enableTouch] = true, + [UIManager.onLoadingUICompletelyClosed] = true, + [UIManager.hideWaitNet] = true + } + end + local currFunc = debug.getinfo(2, "f").func + if self._debugEnableTouchFuncMap[currFunc] == nil then + Logger.logFatal("you can not call UIManager:enableTouch directly") + end + self:_releaseEnableTouch() + end + + UIManager._releaseDisableTouch = UIManager.disableTouch + function UIManager:disableTouch() + if self._debugDisableTouchFuncMap == nil then + self._debugDisableTouchFuncMap = { + [SceneManager.changeScene] = true, + [BaseUI.disableUITouch] = true, + [BaseScene.disableTouch] = true, + [UIManager.showLoading] = true, + [UIManager.showWaitNet] = true + } + end + local currFunc = debug.getinfo(2, "f").func + if self._debugDisableTouchFuncMap[currFunc] == nil then + Logger.logFatal("you can not call UIManager:disableTouch directly") + end + self:_releaseDisableTouch() + end +end + +function UIManager:onPressAndroidBackspace() + if true then + return + end + if self.uiRoot == nil then + return + end + if self.disableTouchCount > 0 then + return + end + if DataManager == nil then + return + end + if DataManager.TutorialData:getIsInTutorial() then + return + end + if DataManager.TutorialData:getIsFuncTutorial() then + return + end + if self.topMsgBox and self.topMsgBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled then + if self.topMsgBox._closeByAndroidBackspace then + local MessageBox = require "app/ui/common/message_box" + local uiMap = self.topMsgBox:genAllChildren() + MessageBox:closeAndClear(self.topMsgBox, uiMap) + end + return + end + if self.messageBox and self.messageBox:getComponent(GConst.TYPEOF_UNITY_CLASS.CANVAS).enabled then + if self.messageBox._closeByAndroidBackspace then + local MessageBox = require "app/ui/common/message_box" + local uiMap = self.messageBox:genAllChildren() + MessageBox:closeAndClear(self.messageBox, uiMap) + end + return + end + if #self.uiList <= 0 then + return + end + local topUI = self.uiList[#self.uiList] + if topUI:isClosed() then + return + end + if topUI.root == nil then + return + end + if topUI.root:isDestroyed() then + return + end + if not topUI:isVisible() then + return + end + if not topUI:getIsShowComplete() then + return + end + topUI:onPressBackspace() +end + +return UIManager \ No newline at end of file diff --git a/lua/app/ui/ui_manager.lua.meta b/lua/app/ui/ui_manager.lua.meta new file mode 100644 index 00000000..bf4aa62b --- /dev/null +++ b/lua/app/ui/ui_manager.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c79d50b44cc894f4c9ad62a1adcc7683 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata.meta b/lua/app/userdata.meta new file mode 100644 index 00000000..78bc5f7e --- /dev/null +++ b/lua/app/userdata.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 131c031169399434fb649d8037d245ba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/acceleration.meta b/lua/app/userdata/acceleration.meta new file mode 100644 index 00000000..e1f6a5d1 --- /dev/null +++ b/lua/app/userdata/acceleration.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 28cfda60d5df0b143a8fbd0347f13e1d +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/activity.meta b/lua/app/userdata/activity.meta new file mode 100644 index 00000000..8f81a960 --- /dev/null +++ b/lua/app/userdata/activity.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: c2a91c98a89c73e46b534d585de46e6e +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/arena.meta b/lua/app/userdata/arena.meta new file mode 100644 index 00000000..047810de --- /dev/null +++ b/lua/app/userdata/arena.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d75588bcefb20e644920b3a8c6b75d5f +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/bag.meta b/lua/app/userdata/bag.meta new file mode 100644 index 00000000..f09048a6 --- /dev/null +++ b/lua/app/userdata/bag.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0a282b8f416f5194fae088997d5e0c03 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/bag/bag_data.lua b/lua/app/userdata/bag/bag_data.lua new file mode 100644 index 00000000..a29865de --- /dev/null +++ b/lua/app/userdata/bag/bag_data.lua @@ -0,0 +1,206 @@ +---@class BagData : BaseData +local BagData = class("BagData", BaseData) + +local ItemConst = require "app/module/item/item_const" +local RecoveryCfg = ConfigManager:getConfig("recovery") + +local SECONDS_PRE_DAY = 86400 + +BagData.RECOVERY_TYPE = { + TIMELY = 1, + DAILY = 2, +} + +function BagData:ctor() + self.ItemData = require("app/userdata/bag/item_data"):create() + ---@type EquipData + self.EquipData = require("app/userdata/bag/equip_data"):create() + ---@type LegacyData + self.LegacyData = require("app/userdata/bag/legacy_data"):create() + self.RuneData = require("app/userdata/bag/rune_data"):create() +end + +function BagData:init(data) + self.ItemData:init(data.items) + self.EquipData:init(data.equips) + self.LegacyData:init(data.legacies) + self.RuneData:init(data.runes, data.runes_next) + + self.recoveries = data.recoveries or {} + -- ts在此处做转换:对每日回复来说,ts指下次回复时间;对时间回复来说,ts仍指上次回复时间 + for i,v in pairs(self.recoveries) do + self.recoveries[i].ts = self.recoveries[i].ts // 1000 + local cfg = RecoveryCfg[v.id] + if cfg.type == self.RECOVERY_TYPE.DAILY then + self.recoveries[i].ts = self.recoveries[i].ts + SECONDS_PRE_DAY + end + end + DataManager:registerDataCd("BagData") +end + +function BagData:clear() + self.ItemData:clear() + self.EquipData:clear() + self.LegacyData:clear() + self.RuneData:clear() + self.recoveries = {} + DataManager:unregisterDataCd("BagData") +end + +-- 重置为上次回复的时间 +function BagData:resetItemRecoveryTime(itemId) + for i,v in pairs(self.recoveries) do + if v.id == itemId and self.recoveries[i] then + self.recoveries[i].ts = Time:getServerTime() + end + end +end + +function BagData:getTimelyItemRecoveryTime(itemId) + local data = self.recoveries[itemId] + if not data then + return -1 + end + -- 计算当前值和最大值 + local cfg = RecoveryCfg[itemId] + local curBigNum = self.ItemData:getItemBigNumById(itemId) + local maxBigNum = BigNumOpt.getEmptyBigNum() + if itemId == ItemConst.ITEM_ID_MINING_PICK then + maxBigNum = DataManager.MiningData:getItemMineLimitNum() + else + maxBigNum = cfg.limit + end + -- 如果是最大,则重置上一次时间为当前时间 + if BigNumOpt.bigNumCompare(curBigNum, BigNumOpt.num2BigNum(maxBigNum)) == 0 then + data.ts = Time:getServerTime() + return 1000 -- 需要持续重置,保持时间更新 + end + + -- 计算时间 + local intervalTime = cfg.time + if itemId == GConst.ItemConst.ITEM_ID_MINING_PICK then + intervalTime = DataManager.MiningData:getRecoverIntervalTime() + end + local remainTime = data.ts + intervalTime - Time:getServerTime() + return remainTime +end + +function BagData:getDailyItemRecoveryMaxTime(itemId) + -- if itemId == ItemConst.ITEM_ID_PVP_KEY then + -- if self.ItemData:isPvPKeyMax() then + -- return -1 + -- end + -- elseif itemId == ItemConst.ITEM_ID_MOPPING_UP then + -- if self.ItemData:isMoppingUpMax() then + -- return -1 + -- end + -- end + + local data = self.recoveries[itemId] + if data then + return data.ts - Time:getServerTime() + end + + return -1 +end + +function BagData:getTimelyItemRecoveryMaxTime(itemId) + local maxVit = 0 + local vit = 0 + -- if itemId == ItemConst.ITEM_ID_VIT then + -- if self.ItemData:isVitMax() then + -- return -1 + -- end + -- vit = self.ItemData:getVit() + -- maxVit = DataManager.PlayerData:getMaxVit() + -- elseif itemId == ItemConst.ITEM_ID_GUILD_KEY then + -- if self.ItemData:isGuildBossKeyMax() then + -- return -1 + -- end + -- vit = self.ItemData:getGuildBossKey() + -- maxVit = self.ItemData:getMaxGuildBossKey() + -- end + local curTime = self:getTimelyItemRecoveryTime(itemId) + if curTime < 0 then + return -1 + end + + local cfg = RecoveryCfg[itemId] + if not cfg then + return -1 + end + curTime = curTime + (maxVit - vit - 1)*cfg.time + return curTime +end +-- 按时间回复的在此回复 +function BagData:recoveryItem(data, maxBigNum) + -- 计算已经达到上限 + local curBigNum = self.ItemData:getItemBigNumById(data.id) + if BigNumOpt.bigNumCompare(curBigNum, maxBigNum) >= 0 then + return + end + -- 计算恢复间隔 + local cfg = RecoveryCfg[data.id] + local nowTime = Time:getServerTime() + local diffTime = nowTime - data.ts -- 上次回复时间,此处计算离线总共回复多少个 + if diffTime <= 0 then + return + end + -- 计算增加数量 + local recoverTime = cfg.time + if data.id == GConst.ItemConst.ITEM_ID_MINING_PICK then -- 挖矿特殊处理,受研究属性影响 + recoverTime = DataManager.MiningData:getRecoverIntervalTime() + end + local addCount = math.floor(diffTime / recoverTime) + if addCount <= 0 then + return + end + local addBigNum = BigNumOpt.num2BigNum(addCount) + -- 计算此次实际增加数量 + local addAfterNum = BigNumOpt.bigNumAdd(curBigNum, addBigNum) + if BigNumOpt.bigNumCompare(addAfterNum, maxBigNum) > 0 then + addBigNum = BigNumOpt.bigNumSub(maxBigNum, curBigNum) + end + Logger.logHighlight("实际恢复数量:".. BigNumOpt.bigNum2Num(addBigNum) ) + -- 根据实际增加的数量,计算恢复时间 + data.ts = data.ts + recoverTime * BigNumOpt.bigNum2Num(addBigNum) + self.ItemData:addItemNumById(data.id, addBigNum, BIReport.ITEM_GET_TYPE.UPDATE_TIME) +end +-- 每日回复的在此回复 +function BagData:recoveryDailyItem(key, data) + local nowTime = Time:getServerTime() + if nowTime < self.recoveries[key].ts then + return + end + local itemId = data.id + local cfg = RecoveryCfg[data.id] + local curBigNum = self.ItemData:getItemBigNumById(itemId) + local maxBigNum = cfg.limit + + if BigNumOpt.bigNumCompare(curBigNum, maxBigNum) < 0 then + self.ItemData:addItemNumById(itemId, BigNumOpt.bigNumSub(maxBigNum, curBigNum), BIReport.ITEM_GET_TYPE.CROSS_DAY) + end + -- 计算下次回复的时间 + self.recoveries[key].ts = self.recoveries[key].ts + SECONDS_PRE_DAY +end + +function BagData:updateCd() + if not self.recoveries then + return + end + for i,v in pairs(self.recoveries) do + local cfg = RecoveryCfg[v.id] + if cfg.type == self.RECOVERY_TYPE.DAILY then + self:recoveryDailyItem(i, v) -- 每日的直接加满 + else + local limit = cfg.limit + if v.id == GConst.ItemConst.ITEM_ID_MINING_PICK then -- 挖矿的上限特殊处理,受属性影响 + limit = DataManager.MiningData:getItemMineLimitNum() + limit = BigNumOpt.num2BigNum(limit) + end + self:recoveryItem(v, limit) -- 根据间隔时间增加 + end + end +end + +return BagData \ No newline at end of file diff --git a/lua/app/userdata/bag/bag_data.lua.meta b/lua/app/userdata/bag/bag_data.lua.meta new file mode 100644 index 00000000..e6c1d6a6 --- /dev/null +++ b/lua/app/userdata/bag/bag_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 85ff8cd297d757741aa9960925855da3 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/bag/equip_data.lua b/lua/app/userdata/bag/equip_data.lua new file mode 100644 index 00000000..e53c2161 --- /dev/null +++ b/lua/app/userdata/bag/equip_data.lua @@ -0,0 +1,230 @@ +local EquipEntity = require "app/userdata/bag/equip_entity" +---@class EquipData +local EquipData = class("EquipData", BaseData) + +function EquipData:setDirty() + self.data.isDirty = not self.data.isDirty +end + +function EquipData:setAttrDirty() + self.isAttrDirty = true +end + +function EquipData:ctor() + self.equips = {} + self.data.isDirty = false + self.isAttrDirty = true +end + +function EquipData:init(data) + if not data then + return + end + + self.equips = {} + for _, equip in pairs(data) do + self:_add(equip) + end + + self.allWearAttr = {} + self.allOwnAttr = {} +end + +function EquipData:_add(equip) + self.equips[equip.id] = EquipEntity:create(equip) +end + +function EquipData:clear() + self.equips = {} +end + +function EquipData:addEquipCountById(id, count, equipGetType) + if EDITOR_MODE then + if not equipGetType then + local params = { + content = "EquipData addEquipCountById has no equipGetType", + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + Logger.log("EquipData addEquipCountById has no equipGetType") + end + end + + local data = {id = id, count = count} + local equipEntity = self:getEquipByCfgId(id) + equipEntity:addCount(count) + BIReport:postEquipGet(id, equipGetType) +end + +-- 是否有装备可以升级 +function EquipData:isEquipsCanUp(part) + for k,v in pairs(self.equips) do + if v:getPart() == part and v:lvUpCostEnough() then + return true + end + end + return false +end + +-- 获取所有可升级装备信息 +function EquipData:getAllEquipsCanUpByPart(part) + local reqEquips = {} + local rspEquips = {} + for k,v in pairs(self.equips) do + if v:getPart() == part then + local canUpLv, targetUpLv, targetNum = v:getCanUpLv() + if canUpLv then + -- table.insert(equipInfos, {id = k, targetUpLv = targetUpLv, costNum = costNum}) + table.insert(reqEquips, k) + table.insert(rspEquips, {id = k, level = targetUpLv, count = targetNum}) + end + end + end + return reqEquips, rspEquips +end + +-- 升级所有装备 +-- function EquipData:onAllEquipsUp(equipUpInfos) +-- for i,v in ipairs(equipUpInfos) do +-- local entity = self:getEquipByCfgId(v.id) +-- entity:setLv(v.targetUpLv) +-- entity:addCount(-v.costNum) +-- end +-- self:setDirty() +-- end + +-- 获取所有装备数据 +function EquipData:getAllEquips() + return self.equips +end + +function EquipData:updateAllAttr() + self.allWearAttr = {} + self.allOwnAttr = {} + local wearEquips = DataManager.FightInfoData:getWearEquips() + for part, equipEntity in pairs(wearEquips) do + if equipEntity then + local allAttr = equipEntity:getAllWearAttr() + for type, value in pairs(allAttr) do + if not self.allWearAttr[type] then + self.allWearAttr[type] = BigNumOpt.getEmptyBigNum() + end + self.allWearAttr[type] = BigNumOpt.bigNumAdd(self.allWearAttr[type], value) + end + end + end + + for k,v in pairs(self.equips) do + if v:getLv() > 0 then + local allAttr = v:getAllOwnAttr() + for type, value in pairs(allAttr) do + if not self.allOwnAttr[type] then + self.allOwnAttr[type] = BigNumOpt.getEmptyBigNum() + end + self.allOwnAttr[type] = BigNumOpt.bigNumAdd(self.allOwnAttr[type], value) + end + end + end +end + +-- 获取所有已穿戴装备属性 +function EquipData:getAllWearAttr() + if self.isAttrDirty then + self.isAttrDirty = false + self:updateAllAttr() + end + return self.allWearAttr +end + +-- 获取所有已拥有装备属性 +function EquipData:getAllOwnAttr() + if self.isAttrDirty then + self.isAttrDirty = false + self:updateAllAttr() + end + return self.allOwnAttr +end + +function EquipData:getEquipByCfgId(id) + if not self.equips[id] then + self.equips[id] = EquipEntity:create({id = id, count = 0, level = 0}) + end + return self.equips[id] +end + +function EquipData:getBestEquipByPart(part) + local equip + for k,v in pairs(self.equips) do + if v:getLv() > 0 and v:getPart() == part then + if not equip then + equip = v + else + local wearAttr1 = equip:getAllWearAttr() + local wearAttr2 = v:getAllWearAttr() + for k, vv in pairs(wearAttr1) do + if BigNumOpt.bigNumCompare(wearAttr2[k], vv) > 0 then + equip = v + break + end + end + end + end + end + local equips = {} + if equip then + for k,v in pairs(self.equips) do + if v:getLv() > 0 and v:getPart() == part then + local wearAttr1 = equip:getAllWearAttr() + local wearAttr2 = v:getAllWearAttr() + for k, vv in pairs(wearAttr1) do + if BigNumOpt.bigNumCompare(wearAttr2[k], vv) == 0 then + table.insert(equips, v) + break + end + end + end + end + end + return equips +end + +-- function EquipData:onEquipLvUp(id) +-- if not self.equips[id] then +-- return +-- end +-- self.equips[id]:onEquipLvUp() +-- self:setDirty() +-- end + +-- 读取配置 +function EquipData:getEquipCfgArrByPart(part) + local equipCfg = ConfigManager:getConfig("equip") + local tab = {} + for k,v in pairs(equipCfg) do + if part and v.part == part then + v.id = k + table.insert(tab, v) + end + end + table.sort(tab, function (a, b) + if a.qlt == b.qlt then + return a.id < b.id + end + return a.qlt < b.qlt + end) + return tab +end + +function EquipData:getEquipCfgArrByPartAndQlt(part, qlt) + local equipCfg = ConfigManager:getConfig("equip") + local tab = {} + for k,v in pairs(equipCfg) do + if part and v.part == part and v.qlt == qlt then + table.insert(tab, k) + end + end + return tab +end + +return EquipData \ No newline at end of file diff --git a/lua/app/userdata/bag/equip_data.lua.meta b/lua/app/userdata/bag/equip_data.lua.meta new file mode 100644 index 00000000..34b4cb7e --- /dev/null +++ b/lua/app/userdata/bag/equip_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: e202fd02d78948749809ede46846c300 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/bag/equip_entity.lua b/lua/app/userdata/bag/equip_entity.lua new file mode 100644 index 00000000..ab312d34 --- /dev/null +++ b/lua/app/userdata/bag/equip_entity.lua @@ -0,0 +1,347 @@ +local EquipEntity = class("EquipEntity", BaseData) + +function EquipEntity:ctor(equip) + self.config = nil + self:init(equip) +end + +function EquipEntity:init(equip) + self.id = equip.id + self.data.count = equip.count or 0 + self.data.lv = equip.level or 0 + + self.allOwnAttr = {} + self.allWearAttr = {} + self:_loadConfig(equip.id) +end + +function EquipEntity:getConfig(id) + local EquipCfg = ConfigManager:getConfig("equip") + local config = EquipCfg[id] + return config +end + +function EquipEntity:_loadConfig(id) + local config = self:getConfig(id) + if EDITOR_MODE then + if not config then + Logger.logError("装备初始化异常 配置表ID不存在 -- id:%s", self.id) + end + end + self.config = config + self:updateAttr() +end + +function EquipEntity:setLv(lv) + lv = lv or 1 + self.data.lv = lv + self:updateAttr() + DataManager.BagData.EquipData:setAttrDirty() +end + +function EquipEntity:getLv() + return self.data.lv +end + +function EquipEntity:getCount() + return self.data.count +end + +function EquipEntity:addCount(count) + if self.data.lv == 0 then + self.data.lv = 1 + self.data.isNew = true + DataManager.BagData.EquipData:setAttrDirty() + end + self.data.count = self.data.count + count +end + +function EquipEntity:getIsNew() + return self.data.isNew or false +end + +function EquipEntity:setIsNew(isNew) + self.data.isNew = isNew +end + +function EquipEntity:setCount(count) + self.data.count = count +end + +-- id +function EquipEntity:getId() + return self.id +end + +function EquipEntity:setId(id) + self.id = id + self:_loadConfig(self.id) +end + +function EquipEntity:getNextId() + return self.config.next_id +end + +function EquipEntity:isLock() + if self.data.lv > 0 or self.data.count > 0 then + return false + end + return true +end + +function EquipEntity:getSkillIds() + if self.data.lv == 0 then + return self.config.skill_id or {}, {1, 1, 1} + end + local lvs = {} + local re = (self.data.lv - 1)%3 + local baseLv = (self.data.lv - 1) // 3 + for i = 1, 3 do + if re >= i then + lvs[i] = baseLv + 2 + else + lvs[i] = baseLv + 1 + end + end + return self.config.skill_id or {}, lvs +end + +function EquipEntity:getAttackIds() + return self.config.attack_id or {} +end + +function EquipEntity:getAttackExtraIds() + return self.config.attack_extra_id or {} +end + +-- 品质 +function EquipEntity:getQuality() + return self.config.qlt +end + +function EquipEntity:getQltDesc() + return I18N:getGlobalText("QLT_DESC_" .. self.config.qlt) +end + +-- 装备图标 +function EquipEntity:getFrameRes() + return GConst.ATLAS_PATH.ICON_EQUIP, "frame_" .. self.config.qlt +end + +-- 装备图标 +function EquipEntity:getIconRes() + return GConst.ATLAS_PATH.ICON_EQUIP, tostring(self.config.icon) +end + +-- 部位 +function EquipEntity:getPart() + return self.config.part +end + +function EquipEntity:getWeaponPart() + return self.config.weapon_part +end + +function EquipEntity:getPartBgRes() + return GConst.ATLAS_PATH.ICON_EQUIP, "type_" .. self.config.qlt +end + +function EquipEntity:getPartRes() + return GConst.ATLAS_PATH.ICON_EQUIP, "e" .. self.config.part +end + +function EquipEntity:isMaxLv() + if self.data.lv >= self:getMaxLv() then + return true + end + return false +end + +function EquipEntity:getName() + return I18N:getText("equip", self.id, "name") +end + +function EquipEntity:getDesc() + return I18N:getText("equip", self.id, "desc") +end + +-- 拥有属性 +function EquipEntity:getBaseOwnAttr() + return self.config.base_own +end + +-- function EquipEntity:getBaseOwnAttrType() +-- return self.config.base_own.type +-- end + +-- function EquipEntity:getBaseOwnAttrTypeId() +-- return GConst.ATTR_TYPE[self.config.base_own.type] +-- end + +-- function EquipEntity:getBaseOwnAttrBignum() +-- return self.config.base_own.bignum +-- end + +-- function EquipEntity:getBaseOwnAttrStr() +-- return self.config.base_own.bignum.value .. BigNumOpt.getBigNumUnit(self.config.base_own.bignum.unit) +-- end + +function EquipEntity:getGrowOwnAttr() + return self.config.grow_own +end + +-- function EquipEntity:getGrowOwnAttrType() +-- return self.config.grow_own.type +-- end + +-- function EquipEntity:getGrowOwnAttrTypeId() +-- return GConst.ATTR_TYPE[self.config.grow_own.type] +-- end + +-- function EquipEntity:getGrowOwnAttrBigNum() +-- return self.config.grow_own.bignum +-- end + +-- 穿戴属性 +function EquipEntity:getBaseWearAttr() + return self.config.base_wear +end + +-- function EquipEntity:getBaseWearAttrType() +-- return self.config.base_wear.type +-- end + +-- function EquipEntity:getBaseWearAttrTypeId() +-- return GConst.ATTR_TYPE[self.config.base_wear.type] +-- end + +-- function EquipEntity:getBaseWearAttrBignum() +-- return self.config.base_wear.bignum +-- end + +-- function EquipEntity:getBaseWearAttrStr() +-- return self.config.base_wear.bignum.value .. BigNumOpt.getBigNumUnit(self.config.base_wear.bignum.unit) +-- end + +function EquipEntity:getGrowWearAttr() + return self.config.grow_wear +end + +-- function EquipEntity:getGrowWearAttrType() +-- return self.config.grow_wear.type +-- end + +function EquipEntity:getUpgradeCost() + return self.config.upgrade_cost or {} +end + +-- function EquipEntity:getGrowWearAttrTypeId() +-- return GConst.ATTR_TYPE[self.config.grow_wear.type] +-- end + +-- function EquipEntity:getWeaponModel() +-- return self.config.equip_model +-- end + +-- function EquipEntity:getWeaponAniName() +-- return self.config.act_type +-- end + +function EquipEntity:updateAttr() + self.allOwnAttr = {} + self.allWearAttr = {} + local baseOwnAttr = self:getBaseOwnAttr() + local growOwnAttr = self:getGrowOwnAttr() + local baseWearAttr = self:getBaseWearAttr() + local growWearAttr = self:getGrowWearAttr() + + for i,v in ipairs(baseOwnAttr) do + self.allOwnAttr[GConst.ATTR_TYPE[v.type]] = v.bignum + end + for i,v in ipairs(baseWearAttr) do + self.allWearAttr[GConst.ATTR_TYPE[v.type]] = v.bignum + end + -- self.allOwnAttr[baseOwnAttr.type] = baseOwnAttr.bignum + -- self.allWearAttr[baseWearAttr.type] = baseWearAttr.bignum + + if self.data.lv > 1 then + for i,v in ipairs(growOwnAttr) do + if not self.allOwnAttr[GConst.ATTR_TYPE[v.type]] then + self.allOwnAttr[GConst.ATTR_TYPE[v.type]] = BigNumOpt.getEmptyBigNum() + end + local growAttr = BigNumOpt.bigNumMultNum(v.bignum, self.data.lv - 1) + self.allOwnAttr[GConst.ATTR_TYPE[v.type]] = BigNumOpt.bigNumAdd(self.allOwnAttr[GConst.ATTR_TYPE[v.type]], growAttr) + end + for i,v in ipairs(growWearAttr) do + if not self.allWearAttr[GConst.ATTR_TYPE[v.type]] then + self.allWearAttr[GConst.ATTR_TYPE[v.type]] = BigNumOpt.getEmptyBigNum() + end + local growAttr = BigNumOpt.bigNumMultNum(v.bignum, self.data.lv - 1) + self.allWearAttr[GConst.ATTR_TYPE[v.type]] = BigNumOpt.bigNumAdd(self.allWearAttr[GConst.ATTR_TYPE[v.type]], growAttr) + end + end +end + +function EquipEntity:getAllOwnAttr() + return self.allOwnAttr +end + +function EquipEntity:getAllWearAttr() + return self.allWearAttr +end + +function EquipEntity:getNeedNum(lv) + lv = lv or self.data.lv + local costCount = 0 + local upgradeCost = self:getUpgradeCost() + if lv >= #upgradeCost then + costCount = upgradeCost[#upgradeCost] + elseif lv == 0 then + costCount = upgradeCost[1] + else + costCount = upgradeCost[lv] + end + return costCount +end + +function EquipEntity:lvUpCostEnough() + local costCount = self:getNeedNum() + if self.data.count >= costCount then + return true + end + return false +end + +-- function EquipEntity:onEquipLvUp() +-- if self:lvUpCostEnough() then +-- self.data.count = self.data.count - self:getNeedNum() +-- self:setLv(self.data.lv + 1) +-- end +-- end + +-- function EquipEntity:getPerEquipLvUpRsp() +-- local tab = {} +-- tab.id = self.id +-- tab.count = self.data.count - self:getNeedNum() +-- tab.level = self.data.lv + 1 +-- return tab +-- end + +function EquipEntity:getCanUpLv() + local hadNum = self.data.count + local costNum = 0 + local lv = self.data.lv + while true do + local needNum = self:getNeedNum(lv) + if hadNum >= needNum then + lv = lv + 1 + hadNum = hadNum - needNum + costNum = costNum + needNum + else + break + end + end + return costNum > 0, lv, hadNum +end + +return EquipEntity \ No newline at end of file diff --git a/lua/app/userdata/bag/equip_entity.lua.meta b/lua/app/userdata/bag/equip_entity.lua.meta new file mode 100644 index 00000000..5605f328 --- /dev/null +++ b/lua/app/userdata/bag/equip_entity.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 4b8e39bcbd3e7764cab23eeb28728ba0 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/bag/item_data.lua b/lua/app/userdata/bag/item_data.lua new file mode 100644 index 00000000..0a3d5007 --- /dev/null +++ b/lua/app/userdata/bag/item_data.lua @@ -0,0 +1,229 @@ +local ItemEntity = require "app/userdata/bag/item_entity" + +local ItemConst = require "app/module/item/item_const" +local ItemData = class("ItemData", BaseData) + +local CACHE_ITEM = { + id = 0, + count = { + value = 0, + unit = 0, + } +} + +function ItemData:ctor() + self.items = {} +end + +function ItemData:init(data) + self.items = {} + data = data or {} + for _, info in pairs(data) do + if info.id == GConst.ItemConst.ITEM_ID_GEM then + local parmas = {} + parmas.gem = BigNumOpt.bigNum2Num(info.count) + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(parmas) + elseif info.id == GConst.ItemConst.ITEM_ID_GOLD then + local parmas = {} + parmas.gold_value = info.count.value + parmas.gold_unit = info.count.unit + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(parmas) + end + self:_add(info.id, info.count) + end + + self.data.dirty = false +end + +function ItemData:_add(id, bigNum) + self.items[id] = ItemEntity:create(id, bigNum) +end + +function ItemData:clear() + self.items = {} +end + +-- 根据id获取道具 +function ItemData:getItemById(id) + if self.items[id] then + return self.items[id] + end + local item = ItemEntity:create(id, BigNumOpt.num2BigNum(0)) + self.items[id] = item + return self.items[id] +end + +-- 获取所有道具数据 +function ItemData:getAllItems() + return self.items +end + +function ItemData:getItemBigNumById(id) + local num + if self.items[id] then + num = self.items[id]:getBigNum() + else + num = BigNumOpt.num2BigNum(0) + end + return num +end + +function ItemData:getItemBigNumStrById(id) + local num = 0 + if self.items[id] then + num = self.items[id]:getBigNumStr() + end + return num +end + +function ItemData:addItemReward(item, itemGetType) + CACHE_ITEM.id = item.id + CACHE_ITEM.count.unit = item.count.unit + CACHE_ITEM.count.value = item.count.value + self:addItem(CACHE_ITEM, itemGetType) +end + +function ItemData:addItemCost(cost, itemGetType) + CACHE_ITEM.id = cost.id + CACHE_ITEM.count.unit = cost.count.unit + CACHE_ITEM.count.value = -cost.count.value + self:addItem(CACHE_ITEM, itemGetType) +end + +function ItemData:addItemCosts(costs, itemGetType) + if not costs then + return + end + for _, unitCost in ipairs(costs) do + self:addItemCost(unitCost, itemGetType) + end +end + +function ItemData:addItem(data, itemGetType) + if data == nil then + return + end + + if EDITOR_MODE then + if not itemGetType then + local params = { + content = "ItemData addItem has no itemGetType", + boxType = GConst.MESSAGE_BOX_TYPE.MB_OK, + okText = I18N:getGlobalText(I18N.GlobalConst.BTN_TEXT_OK), + } + GFunc.showMessageBox(params) + Logger.log("ItemData addItem has no itemGetType") + end + end + + local itemCfg = ConfigManager:getConfig("item")[data.id] + + self:_addItemNumById(data.id, data.count) + + if data.id == GConst.ItemConst.ITEM_ID_GEM or data.id == GConst.ItemConst.ITEM_ID_GOLD then + if data.count.value < 0 then + if data.id == GConst.ItemConst.ITEM_ID_GOLD and itemGetType == BIReport.ITEM_GET_TYPE.TRAIN_UP then + else + BIReport:postGemUse(data.count, itemGetType, data.id) + if data.id == GConst.ItemConst.ITEM_ID_GEM then + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserAdd("gem", BigNumOpt.bigNum2Num(data.count)) + elseif data.id == GConst.ItemConst.ITEM_ID_GOLD then + local goldBigNum = DataManager.BagData.ItemData:getItemBigNumById(GConst.ItemConst.ITEM_ID_GOLD) + local parmas = {} + parmas.gold_value = goldBigNum.value + parmas.gold_unit = goldBigNum.unit + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(parmas) + end + end + else + if data.id == GConst.ItemConst.ITEM_ID_GOLD and itemGetType == BIReport.ITEM_GET_TYPE.CHAPTER_DROP then + else + BIReport:postGemGet(data.count, itemGetType, data.id) + if data.id == GConst.ItemConst.ITEM_ID_GEM then + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserAdd("gem", BigNumOpt.bigNum2Num(data.count)) + elseif data.id == GConst.ItemConst.ITEM_ID_GOLD then + local goldBigNum = DataManager.BagData.ItemData:getItemBigNumById(GConst.ItemConst.ITEM_ID_GOLD) + local parmas = {} + parmas.gold_value = goldBigNum.value + parmas.gold_unit = goldBigNum.unit + CS.ThinkingAnalytics.ThinkingAnalyticsAPI.UserSet(parmas) + end + end + end + else + if data.count.value < 0 then + BIReport:postItemUse(data.count, data.id, itemGetType) + else + BIReport:postItemGet(data.count, data.id, itemGetType) + end + end + + if data.id == GConst.ItemConst.ITEM_ID_MINING_PICK then + local num = BigNumOpt.bigNum2Num(data.count) + if num < 0 then + num = -num + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_HOE_USE, {num = num}) + end + elseif data.id == GConst.ItemConst.ITEM_ID_DRILL then + local num = BigNumOpt.bigNum2Num(data.count) + if num < 0 then + num = -num + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_BORING_CROWN_USE, {num = num}) + end + elseif data.id == GConst.ItemConst.ITEM_ID_EXPLOSIVE then + local num = BigNumOpt.bigNum2Num(data.count) + if num < 0 then + num = -num + ModuleManager.TaskManager:addTaskProgress(GConst.TaskConst.TASK_TYPE.X_BOOM_USE, {num = num}) + end + end +end + +function ItemData:addItemNumById(id, num, itemGetType) + local data = {id = id, count = num} + self:addItem(data, itemGetType) +end + +function ItemData:_addItemNumById(id, bigNum) + if bigNum == nil then + return + end + -- local isFull = false + -- if id == ItemConst.ITEM_ID_VIT then + -- -- isFull = DataManager.BagData.ItemData:isVitMax() + -- local maxVit = DataManager.PlayerData:getMaxVit() + -- isFull = currentCount >= maxVit + -- end + if self.items[id] then + self.items[id]:addBigNum(bigNum) + else + self:_add(id, bigNum) + end + -- if id == ItemConst.ITEM_ID_VIT and isFull and not DataManager.BagData.ItemData:isVitMax() then + -- if id == ItemConst.ITEM_ID_VIT and isFull then + -- local maxVit = DataManager.PlayerData:getMaxVit() + -- local isNewFull = currentCount >= maxVit + -- if not isNewFull then + -- DataManager.BagData:resetItemRecoveryTime(ItemConst.ITEM_ID_VIT) + -- end + -- end + self:setDirty() +end + +function ItemData:setItemNumById(id, bigNum) + if bigNum == nil then + return + end + if self.items[id] then + self.items[id]:setNum(bigNum) + else + self:_add(id, bigNum) + end + self:setDirty() +end + +function ItemData:setDirty() + self.data.dirty = not self.data.dirty +end + +return ItemData \ No newline at end of file diff --git a/lua/app/userdata/bag/item_data.lua.meta b/lua/app/userdata/bag/item_data.lua.meta new file mode 100644 index 00000000..4b956928 --- /dev/null +++ b/lua/app/userdata/bag/item_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d9910091cf835694faec4e86adfdb420 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/bag/item_entity.lua b/lua/app/userdata/bag/item_entity.lua new file mode 100644 index 00000000..75c8483f --- /dev/null +++ b/lua/app/userdata/bag/item_entity.lua @@ -0,0 +1,100 @@ +local ItemEntity = class("ItemEntity", BaseData) + +function ItemEntity:ctor(id, bigNum) + self.data.id = id + self.data.bigNum = bigNum + self.data.isDirty = false + self.config = nil + + self:_loadConfig(id) +end + +function ItemEntity:getConfig(id) + local ItemCfg = ConfigManager:getConfig("item") + local config = ItemCfg[id] + return config +end + +function ItemEntity:_loadConfig(id) + local config = self:getConfig(id) + self.config = config +end + +function ItemEntity:setDirty() + self.data.isDirty = not self.data.isDirty +end + +-- id +function ItemEntity:getId() + return self.data.id +end + +-- 道具数量 +function ItemEntity:getBigNum() + return self.data.bigNum +end + +function ItemEntity:getBigNumStr() + return BigNumOpt.bigNum2Str(self.data.bigNum) +end + +-- 加减道具数量 +function ItemEntity:addBigNum(bigNum) + self.data.bigNum = BigNumOpt.bigNumAdd(self.data.bigNum, bigNum) + self:setDirty() +end + +-- 设置数量 +function ItemEntity:setNum(bigNum) + self.data.bigNum = bigNum + self:setDirty() +end + +-- 道具类型 +function ItemEntity:getItemType() + return self.config.type +end + +-- 品质 +function ItemEntity:getQuality() + return self.config.qlt +end + +-- 稀有度 +function ItemEntity:getRarity() + return self.config.rarity +end + +function ItemEntity:getFrameRes() + return GConst.ATLAS_PATH.ICON_ITEM, "frame_" .. self.config.qlt +end + +function ItemEntity:getIconRes() + return GConst.ATLAS_PATH.ICON_ITEM, tostring(self.config.icon) +end + +-- 类型 +function ItemEntity:getType() + return GConst.ENTITY_TYPE.ITEM +end + +-- 其他参数 +function ItemEntity:getParam() + return self.config.parameter +end + +-- 道具描述 +function ItemEntity:getName() + return I18N:getText("item", self.data.id, "name") +end + +-- 道具描述 +function ItemEntity:getDesc() + return I18N:getText("item", self.data.id, "desc") +end + +function ItemEntity:getEntityType() + return GConst.ENTITY_TYPE.ITEM_ENTITY +end + +return ItemEntity \ No newline at end of file diff --git a/lua/app/userdata/bag/item_entity.lua.meta b/lua/app/userdata/bag/item_entity.lua.meta new file mode 100644 index 00000000..c5f1e4d2 --- /dev/null +++ b/lua/app/userdata/bag/item_entity.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c126f06167f48f84fa2508b48281041f +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/bag/legacy_data.lua b/lua/app/userdata/bag/legacy_data.lua new file mode 100644 index 00000000..97542b4e --- /dev/null +++ b/lua/app/userdata/bag/legacy_data.lua @@ -0,0 +1,152 @@ +local LegacyEntity = require "app/userdata/bag/legacy_entity" +---@class LegacyData +local LegacyData = class("LegacyData", BaseData) + +function LegacyData:setDirty() + self.data.isDirty = not self.data.isDirty +end + +function LegacyData:setAttrDirty() + self.isAttrDirty = true +end + +function LegacyData:ctor() + self.legacies = {} + self.data.isDirty = false + self.isAttrDirty = true +end + +function LegacyData:init(data) + if not data then + return + end + + self.legacies = {} + for _, legacy in pairs(data) do + self:_add(legacy) + end + + self.allOwnAttr = {} +end + +function LegacyData:_add(legacy) + self.legacies[legacy.id] = LegacyEntity:create(legacy) +end + +function LegacyData:clear() + self.legacies = {} +end + +function LegacyData:addLegacyCountById(id, count, legacyGetType) + local data = {id = id, count = count} + local legacyEntity = self:getLegacyByCfgId(id) + legacyEntity:addCount(count) + BIReport:postLegacyGet(id, legacyGetType) +end + +-- 是否有装备可以升级 +function LegacyData:isLegaciesCanUp() + for k,v in pairs(self.legacies) do + if v:lvUpCostEnough() then + return true + end + end + return false +end + +-- 获取所有可升级装备信息 +function LegacyData:getAllLegaciesCanUp() + local reqLegacies = {} + local rspLegacies = {} + for k,v in pairs(self.legacies) do + local canUpLv, targetUpLv, targetNum = v:getCanUpLv() + if canUpLv then + -- table.insert(legacyInfos, {id = k, targetUpLv = targetUpLv, costNum = costNum}) + table.insert(reqLegacies, k) + table.insert(rspLegacies, {id = k, level = targetUpLv, count = targetNum}) + end + end + return reqLegacies, rspLegacies +end + +-- 升级所有装备 +-- function LegacyData:onAllLegaciesUp(legacyUpInfos) +-- for i,v in ipairs(legacyUpInfos) do +-- local entity = self:getLegacyByCfgId(v.id) +-- entity:setLv(v.targetUpLv) +-- entity:addCount(-v.costNum) +-- end +-- self:setDirty() +-- end + +-- 获取所有装备数据 +function LegacyData:getAllLegacies() + return self.legacies +end + +function LegacyData:updateAllAttr() + self.allOwnAttr = {} + for k,v in pairs(self.legacies) do + if v:getLv() > 0 then + local allAttr = v:getAllOwnAttr() + for type, value in pairs(allAttr) do + if not self.allOwnAttr[type] then + self.allOwnAttr[type] = BigNumOpt.getEmptyBigNum() + end + self.allOwnAttr[type] = BigNumOpt.bigNumAdd(self.allOwnAttr[type], value) + end + end + end +end + +-- 获取所有已拥有传家宝属性 +function LegacyData:getAllOwnAttr() + if self.isAttrDirty then + self.isAttrDirty = false + self:updateAllAttr() + end + return self.allOwnAttr +end + +function LegacyData:getLegacyByCfgId(id) + if not self.legacies[id] then + self.legacies[id] = LegacyEntity:create({id = id, count = 0, level = 0}) + end + return self.legacies[id] +end + +-- function LegacyData:onLegacyLvUp(id) +-- if not self.legacies[id] then +-- return +-- end +-- self.legacies[id]:onLegacyLvUp() +-- self:setDirty() +-- end + +-- 读取配置 +function LegacyData:getLegacyCfgArr() + local legacyCfg = ConfigManager:getConfig("legacy") + local tab = {} + for k,v in pairs(legacyCfg) do + v.id = k + table.insert(tab, v) + end + table.sort(tab, function (a, b) + if a.qlt == b.qlt then + return a.id < b.id + end + return a.qlt < b.qlt + end) + return tab +end + +function LegacyData:isLegacySlotOpen(idx) + if idx == 1 then + return true + end + local needStage = GFunc.getConstIntValue("legacy_grid_open_" .. (idx - 1)) + local isOpen = DataManager.ChapterData:getHistoryChapterId() >= needStage + return isOpen +end + +return LegacyData \ No newline at end of file diff --git a/lua/app/userdata/bag/legacy_data.lua.meta b/lua/app/userdata/bag/legacy_data.lua.meta new file mode 100644 index 00000000..9a14f049 --- /dev/null +++ b/lua/app/userdata/bag/legacy_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0b5d89ba86be395438328b2adccaaee1 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/bag/legacy_entity.lua b/lua/app/userdata/bag/legacy_entity.lua new file mode 100644 index 00000000..59fdc022 --- /dev/null +++ b/lua/app/userdata/bag/legacy_entity.lua @@ -0,0 +1,228 @@ +local LegacyEntity = class("LegacyEntity", BaseData) + +function LegacyEntity:ctor(equip) + self.config = nil + self:init(equip) +end + +function LegacyEntity:init(equip) + self.id = equip.id + self.data.count = equip.count or 0 + self.data.lv = equip.level or 0 + + self.allOwnAttr = {} + self:_loadConfig(equip.id) +end + +function LegacyEntity:getConfig(id) + local LegacyCfg = ConfigManager:getConfig("legacy") + local config = LegacyCfg[id] + return config +end + +function LegacyEntity:_loadConfig(id) + local config = self:getConfig(id) + if EDITOR_MODE then + if not config then + Logger.logError("传家宝初始化异常 配置表ID不存在 -- id:%s", self.id) + end + end + self.config = config + self:updateAttr() +end + +function LegacyEntity:setLv(lv) + lv = lv or 1 + self.data.lv = lv + self:updateAttr() + DataManager.BagData.LegacyData:setAttrDirty() +end + +function LegacyEntity:getLv() + return self.data.lv +end + +function LegacyEntity:getCount() + return self.data.count +end + +function LegacyEntity:addCount(count) + if self.data.lv == 0 then + self.data.lv = 1 + self.data.isNew = true + end + self.data.count = self.data.count + count +end + +function LegacyEntity:setCount(count) + self.data.count = count +end + +function LegacyEntity:getIsNew() + return self.data.isNew or false +end + +function LegacyEntity:setIsNew(isNew) + self.data.isNew = isNew +end + +-- id +function LegacyEntity:getId() + return self.id +end + +function LegacyEntity:setId(id) + self.id = id + self:_loadConfig(self.id) +end + +function LegacyEntity:isLock() + if self.data.lv > 0 or self.data.count > 0 then + return false + end + return true +end + +function LegacyEntity:getSkills() + return self.config.skill_id +end + +-- 品质 +function LegacyEntity:getQuality() + return self.config.qlt +end + +function LegacyEntity:getQltDesc() + return I18N:getGlobalText("QLT_DESC_" .. self.config.qlt) +end + +-- 装备图标 +function LegacyEntity:getFrameRes() + return GConst.ATLAS_PATH.ICON_LEGACY, "frame_" .. self.config.qlt +end + +-- 装备图标 +function LegacyEntity:getIconRes() + return GConst.ATLAS_PATH.ICON_LEGACY, tostring(self.config.icon) +end + +function LegacyEntity:getName() + return I18N:getText("legacy", self.id, "name") +end + +function LegacyEntity:getDesc() + return I18N:getText("legacy", self.id, "desc") +end + +-- 拥有属性 +function LegacyEntity:getBaseOwnAttr() + return self.config.base_own +end + +-- function LegacyEntity:getBaseOwnAttrType() +-- return self.config.base_own.type +-- end + +-- function LegacyEntity:getBaseOwnAttrTypeId() +-- return GConst.ATTR_TYPE[self.config.base_own.type] +-- end + +-- function LegacyEntity:getBaseOwnAttrBignum() +-- return self.config.base_own.bignum +-- end + +-- function LegacyEntity:getBaseOwnAttrStr() +-- return self.config.base_own.bignum.value .. BigNumOpt.getBigNumUnit(self.config.base_own.bignum.unit) +-- end + +function LegacyEntity:getGrowOwnAttr() + return self.config.grow_own +end + +-- function LegacyEntity:getGrowOwnAttrType() +-- return self.config.grow_own.type +-- end + +-- function LegacyEntity:getGrowOwnAttrTypeId() +-- return GConst.ATTR_TYPE[self.config.grow_own.type] +-- end + +function LegacyEntity:getUpgradeCost() + return self.config.upgrade_cost or {} +end + +-- function LegacyEntity:getGrowWearAttrTypeId() +-- return GConst.ATTR_TYPE[self.config.grow_wear.type] +-- end + +function LegacyEntity:updateAttr() + self.allOwnAttr = {} + local baseOwnAttr = self:getBaseOwnAttr() + local growOwnAttr = self:getGrowOwnAttr() + + for i,v in ipairs(baseOwnAttr) do + self.allOwnAttr[GConst.ATTR_TYPE[v.type]] = v.bignum + end + + if self.data.lv > 1 then + for i,v in ipairs(growOwnAttr) do + if not self.allOwnAttr[GConst.ATTR_TYPE[v.type]] then + self.allOwnAttr[GConst.ATTR_TYPE[v.type]] = BigNumOpt.getEmptyBigNum() + end + local growAttr = BigNumOpt.bigNumMultNum(v.bignum, self.data.lv - 1) + self.allOwnAttr[GConst.ATTR_TYPE[v.type]] = BigNumOpt.bigNumAdd(self.allOwnAttr[GConst.ATTR_TYPE[v.type]], growAttr) + end + end +end + +function LegacyEntity:getAllOwnAttr() + return self.allOwnAttr +end + +function LegacyEntity:getNeedNum(lv) + lv = lv or self.data.lv + local costCount = 0 + local upgradeCost = self:getUpgradeCost() + if lv >= #upgradeCost then + costCount = upgradeCost[#upgradeCost] + elseif lv == 0 then + costCount = upgradeCost[1] + else + costCount = upgradeCost[lv] + end + return costCount +end + +function LegacyEntity:lvUpCostEnough() + local costCount = self:getNeedNum() + if self.data.count >= costCount then + return true + end + return false +end + +-- function LegacyEntity:onLegacyLvUp() +-- if self:lvUpCostEnough() then +-- self.data.count = self.data.count - self:getNeedNum() +-- self:setLv(self.data.lv + 1) +-- end +-- end + +function LegacyEntity:getCanUpLv() + local hadNum = self.data.count + local costNum = 0 + local lv = self.data.lv + while true do + local needNum = self:getNeedNum(lv) + if hadNum >= needNum then + lv = lv + 1 + hadNum = hadNum - needNum + costNum = costNum + needNum + else + break + end + end + return costNum > 0, lv, hadNum +end + +return LegacyEntity \ No newline at end of file diff --git a/lua/app/userdata/bag/legacy_entity.lua.meta b/lua/app/userdata/bag/legacy_entity.lua.meta new file mode 100644 index 00000000..5e50b4dc --- /dev/null +++ b/lua/app/userdata/bag/legacy_entity.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: f070c225745b1a84d91ecf30fa6fd5ea +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/bag/rune_data.lua b/lua/app/userdata/bag/rune_data.lua new file mode 100644 index 00000000..6e3e2f1a --- /dev/null +++ b/lua/app/userdata/bag/rune_data.lua @@ -0,0 +1,161 @@ +local RuneEntity = require "app/userdata/bag/rune_entity" + +local RuneUnlockCfg = ConfigManager:getConfig("runes_unlock") + +local RuneData = class("RuneData", BaseData) + +function RuneData:setDirty() + self.data.isDirty = not self.data.isDirty +end + +function RuneData:ctor() + self.runes = {} + self.data.isDirty = false +end + +function RuneData:init(data, runeNext) + if not data then + return + end + + self.runes = {} + self.runeNext = runeNext or {} + for _, rune in pairs(data) do + self:_add(rune) + end +end + +function RuneData:addRune(data, itemGetType) + if data == nil then + return + end + self:_add(data) + BIReport:postRuneGet(data.id) + self:setDirty() +end + +function RuneData:_add(rune) + self.runes[rune.id] = RuneEntity:create(rune) +end + +function RuneData:clear() + self.runes = {} +end + +-- 获取所有装备数据 +function RuneData:getAllRunes() + return self.runes +end + +function RuneData:getRuneByCfgId(id) + if not self.runes[id] then + self.runes[id] = RuneEntity:create({id = id, count = 0, level = 0}) + end + return self.runes[id] +end + +function RuneData:onRuneLvUp(id) + if not self.runes[id] then + return + end + self.runes[id]:onRuneLvUp() + self:setDirty() +end + +function RuneData:getRuneSummonCost() + local runeNum = self:getRuneOpenNum() + local costBigNum = RuneUnlockCfg[runeNum + 1].mithril_cost + return costBigNum +end + +function RuneData:getRuneOpenNum() + local runeNum = 0 + for k,v in pairs(self.runes) do + if not v:isLock() then + runeNum = runeNum + 1 + end + end + return runeNum +end + +function RuneData:isRuneALlOpen() + if not self.runeNext or #self.runeNext <= 0 then + return true + end + local runeArr = self:getRuneCfgArr() + local runeNum = self:getRuneOpenNum() + return runeNum >= #runeArr +end + +function RuneData:onRuneSummon() + local nextId = self.runeNext[1] + table.remove(self.runeNext, 1) + return nextId +end + +-- 获取所有已穿戴符文属性 +function RuneData:getTotalNumAttr() + local runeAttr = {} + local runeNum = DataManager.BagData.RuneData:getRuneOpenNum() + + local cfg = RuneUnlockCfg[runeNum] + if cfg then + if not runeAttr[GConst.ATTR_TYPE[cfg.unlock_attr.type]] then + runeAttr[GConst.ATTR_TYPE[cfg.unlock_attr.type]] = BigNumOpt.getEmptyBigNum() + end + runeAttr[GConst.ATTR_TYPE[cfg.unlock_attr.type]] = BigNumOpt.bigNumAdd(runeAttr[GConst.ATTR_TYPE[cfg.unlock_attr.type]], cfg.unlock_attr.bignum) + end + return runeAttr +end + +-- 获取所有已拥有符文属性 +function RuneData:getAllOwnAttr() + local runeAttr = {} + for k,v in pairs(self.runes) do + if v:getLv() > 0 then + local allAttr = v:getAllOwnAttr() + for type, value in pairs(allAttr) do + if not runeAttr[type] then + runeAttr[type] = BigNumOpt.getEmptyBigNum() + end + runeAttr[type] = BigNumOpt.bigNumAdd(runeAttr[type], value) + end + end + end + return runeAttr +end + +-- 读取配置 +function RuneData:getRuneCfgArr(part) + local runeCfg = ConfigManager:getConfig("runes") + local tab = {} + for k,v in pairs(runeCfg) do + if not part or part == v.part then + v.id = k + table.insert(tab, v) + end + end + table.sort(tab, function (a, b) + if a.qlt == b.qlt then + return a.id < b.id + end + return a.qlt < b.qlt + end) + return tab +end + +function RuneData:isLockByPart(part) + local runeCfg = ConfigManager:getConfig("runes") + local tab = {} + for k,v in pairs(runeCfg) do + if v.part == part then + local runeEntity = self:getRuneByCfgId(k) + if not runeEntity:isLock() then + return false + end + end + end + return true +end + +return RuneData \ No newline at end of file diff --git a/lua/app/userdata/bag/rune_data.lua.meta b/lua/app/userdata/bag/rune_data.lua.meta new file mode 100644 index 00000000..c23b6097 --- /dev/null +++ b/lua/app/userdata/bag/rune_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: d4723de6c21e85045803b8e37ac151d5 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/bag/rune_entity.lua b/lua/app/userdata/bag/rune_entity.lua new file mode 100644 index 00000000..fa753ac8 --- /dev/null +++ b/lua/app/userdata/bag/rune_entity.lua @@ -0,0 +1,163 @@ +local RuneEntity = class("RuneEntity", BaseData) + +local RuneLevelCfg = ConfigManager:getConfig("runes_level") + +function RuneEntity:ctor(rune) + self.config = nil + self:init(rune) +end + +function RuneEntity:init(rune) + self.id = rune.id + self.data.lv = rune.level or 0 + + self.allOwnAttr = {} + self:_loadConfig(rune.id) +end + +function RuneEntity:getConfig(id) + local RuneCfg = ConfigManager:getConfig("runes") + local config = RuneCfg[id] + return config +end + +function RuneEntity:_loadConfig(id) + local config = self:getConfig(id) + if EDITOR_MODE then + if not config then + Logger.logError("符文初始化异常 配置表ID不存在 -- id:%s", self.id) + end + end + self.config = config + self:updateAttr() +end + +function RuneEntity:setLv(lv) + lv = lv or 1 + self.data.lv = lv + self:updateAttr() +end + +function RuneEntity:getLv() + return self.data.lv +end + +-- id +function RuneEntity:getId() + return self.id +end + +function RuneEntity:setId(id) + self.id = id + self:_loadConfig(self.id) +end + +function RuneEntity:isLock() + if self.data.lv > 0 then + return false + end + return true +end + +function RuneEntity:getSkills() + return self.config.skill_id +end + +-- 品质 +function RuneEntity:getQuality() + return self.config.qlt +end + +function RuneEntity:getQltDesc() + return I18N:getGlobalText("QLT_DESC_" .. self.config.qlt) +end + +-- 装备图标 +function RuneEntity:getFrameRes() + return GConst.ATLAS_PATH.ICON_RUNE, "frame_" .. self.config.qlt +end + +-- 装备图标 +function RuneEntity:getIconRes() + return GConst.ATLAS_PATH.ICON_RUNE, tostring(self.config.icon) +end + +function RuneEntity:getLockIconRes() + return GConst.ATLAS_PATH.ICON_RUNE, "lock_" .. self.config.part +end + +function RuneEntity:getMaskRes() + return GConst.ATLAS_PATH.ICON_RUNE, "frame_mask_" .. self.config.part +end + +function RuneEntity:getLightRes() + return GConst.ATLAS_PATH.ICON_RUNE, "frame_select_" .. self.config.part +end + +function RuneEntity:getPart() + return self.config.part +end + +function RuneEntity:getWeaponPart() + return self.config.weapon_part +end + +function RuneEntity:getName() + return I18N:getText("runes", self.id, "name") +end + +function RuneEntity:getDesc() + return I18N:getText("runes", self.id, "desc") +end + +-- 拥有属性 +function RuneEntity:getBaseOwnAttr() + if self.data.lv <= 0 then + return RuneLevelCfg[1].grow + end + local cfg = RuneLevelCfg[self.data.lv] + return cfg.grow +end + +function RuneEntity:updateAttr() + self.allOwnAttr = {} + local baseOwnAttrs = self:getBaseOwnAttr() + + for i,v in ipairs(baseOwnAttrs) do + self.allOwnAttr[GConst.ATTR_TYPE[v.type]] = v.bignum + end +end + +function RuneEntity:getAllOwnAttr() + return self.allOwnAttr +end + +function RuneEntity:getUpgradeCost() + if self.data.lv <= 0 then + return RuneLevelCfg[1].mithril_cost + end + local cfg = RuneLevelCfg[self.data.lv] + return cfg.mithril_cost +end + +function RuneEntity:isMaxLv() + if self.data.lv >= #RuneLevelCfg then + return true + end + return false +end + +function RuneEntity:lvUpCostEnough() + local upgradeCost = self:getUpgradeCost() + local hadBigNum = DataManager.BagData.ItemData:getItemBigNumById(GConst.ItemConst.ITEM_ID_RUNE) + if BigNumOpt.bigNumCompare(hadBigNum, upgradeCost) >= 0 then + return true + end + return false +end + +function RuneEntity:onRuneLvUp() + self:setLv(self.data.lv + 1) +end + +return RuneEntity \ No newline at end of file diff --git a/lua/app/userdata/bag/rune_entity.lua.meta b/lua/app/userdata/bag/rune_entity.lua.meta new file mode 100644 index 00000000..05e8639e --- /dev/null +++ b/lua/app/userdata/bag/rune_entity.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: c76cc361f1beab946bdb3cad15250347 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/base_data.lua b/lua/app/userdata/base_data.lua new file mode 100644 index 00000000..5d59aa3f --- /dev/null +++ b/lua/app/userdata/base_data.lua @@ -0,0 +1,142 @@ +---@class BaseData +local BaseData = class("BaseData") + +function BaseData:ctor(...) + self.data = {} + self.data.__parent = self + + local innerData = nil + innerData = { + __index = function (t, key) + return innerData[key] + end, + __newindex = function (t, key, value) + local preValue = innerData[key] + innerData[key] = value + t.__parent:invoke(key, preValue, value) + end + } + setmetatable(self.data, innerData) + + self.bindList = {} + self.forceList = {} + self._baseInvokeCount = 0 +end + +function BaseData:invoke(name, preValue, value) + self._baseInvokeCount = self._baseInvokeCount + 1 + if (self.forceList[name] or preValue ~= value) or type(preValue) == "table" then + self.forceList[name] = nil + if self.bindList[name] then + for _, info in ipairs(self.bindList[name]) do + info.bindFunc(info.binder, value) + end + end + end + self._baseInvokeCount = self._baseInvokeCount - 1 + if self._baseInvokeCount > 0 then -- 说明还在递归中 + return + end + if self._baseRemoveFlag then + self._baseRemoveFlag = false + if self._waitRemoveMap then + for key, v in pairs(self._waitRemoveMap) do + local list = self.bindList[key] + if list then + for i = #list, 1, -1 do + if list[i] and list[i].waitRemove then + table.remove(list, i) + end + end + end + self._waitRemoveMap[key] = nil + end + end + end +end + +function BaseData:bind(name, binder, bindFunc, immediately) + if not self.bindList[name] then + self.bindList[name] = {} + end + + local unique = true + for i, info in ipairs(self.bindList[name]) do + if info and binder and info.binder == binder then + self.bindList[name][i].bindFunc = bindFunc + unique = false + break + end + end + + if unique then + table.insert(self.bindList[name], {binder = binder, bindFunc = bindFunc}) + end + + if immediately then + self:invoke(name, nil, self.data[name]) + end +end + +function BaseData:unBind(name, binder) + if self.bindList[name] then + for i, info in ipairs(self.bindList[name]) do + if info.binder == binder then + if self._baseInvokeCount > 0 then -- 正在invoke过程中 + info.waitRemove = true + self._baseRemoveFlag = true + if self._waitRemoveMap == nil then + self._waitRemoveMap = {} + end + self._waitRemoveMap[name] = true + else + table.remove(self.bindList[name], i) + end + break + end + end + end +end + +function BaseData:setForceInvoke(name, value) + self.forceList[name] = true + self.data[name] = value +end + +function BaseData:clearBind(name) + if self.bindList[name] then + self.bindList[name] = nil + end +end + +function BaseData:clearBindAll() + self.bindList = {} +end + +function BaseData:clear() +end + +if NOT_PUBLISH then + function BaseData:_typeValid(name) + local value = self.data[name] + local vt = type(value) + if vt == "string" or + vt == "number" or + vt == "nil" or + vt == "boolean" or + vt == "table" then + return true + end + return false + end + + BaseData._releaseBind = BaseData.bind + function BaseData:bind(name, ...) + if not self:_typeValid(name) then + Logger.logFatal("%s:%s type is valid", self.__cname, name) + end + self:_releaseBind(name, ...) + end +end + +return BaseData \ No newline at end of file diff --git a/lua/app/userdata/base_data.lua.meta b/lua/app/userdata/base_data.lua.meta new file mode 100644 index 00000000..2ede37ea --- /dev/null +++ b/lua/app/userdata/base_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 52e7d8ddf3d7e4c459712b8253db058c +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/app/userdata/battle.meta b/lua/app/userdata/battle.meta new file mode 100644 index 00000000..6c7cbea4 --- /dev/null +++ b/lua/app/userdata/battle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 3d5b3c5130bdd414da8590c1ff8845d6 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/blessing.meta b/lua/app/userdata/blessing.meta new file mode 100644 index 00000000..c5bcdd1f --- /dev/null +++ b/lua/app/userdata/blessing.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 23e4bc8b94ae62a44a0935ac434a76cb +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/bounty.meta b/lua/app/userdata/bounty.meta new file mode 100644 index 00000000..f1990c31 --- /dev/null +++ b/lua/app/userdata/bounty.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 46124ce19f4fd6a49a249fb54b5f08a1 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/chapter.meta b/lua/app/userdata/chapter.meta new file mode 100644 index 00000000..5f7f0b55 --- /dev/null +++ b/lua/app/userdata/chapter.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d12fddde727de5d4ab755071dc546009 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/collection.meta b/lua/app/userdata/collection.meta new file mode 100644 index 00000000..6580bd27 --- /dev/null +++ b/lua/app/userdata/collection.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: f392d58484a40f74d9e6cea8fe7fa133 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/custom.meta b/lua/app/userdata/custom.meta new file mode 100644 index 00000000..f32eb7bf --- /dev/null +++ b/lua/app/userdata/custom.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 611d8d8c24b069b40adc151f25808171 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/dungeon.meta b/lua/app/userdata/dungeon.meta new file mode 100644 index 00000000..01379ba4 --- /dev/null +++ b/lua/app/userdata/dungeon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 4317cfebd540c7a4f89cafbbc1d37c35 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/fight_info.meta b/lua/app/userdata/fight_info.meta new file mode 100644 index 00000000..36da3d47 --- /dev/null +++ b/lua/app/userdata/fight_info.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 04b08530f649de94093dbccc6bac02bf +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/fund.meta b/lua/app/userdata/fund.meta new file mode 100644 index 00000000..ec249496 --- /dev/null +++ b/lua/app/userdata/fund.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 135c94b4361e44840abe13f1f193daa9 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/game_setting.meta b/lua/app/userdata/game_setting.meta new file mode 100644 index 00000000..956607dd --- /dev/null +++ b/lua/app/userdata/game_setting.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 7f6e4e0d65600e645a77f7a8e5a31507 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/hero.meta b/lua/app/userdata/hero.meta new file mode 100644 index 00000000..5909e67e --- /dev/null +++ b/lua/app/userdata/hero.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 6dfd1cb75725f8c41b9e97d11b0b29b0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/idle.meta b/lua/app/userdata/idle.meta new file mode 100644 index 00000000..9c103bb5 --- /dev/null +++ b/lua/app/userdata/idle.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 0246f6e43a613cc46a4473d41607f0ba +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/mail.meta b/lua/app/userdata/mail.meta new file mode 100644 index 00000000..6375d078 --- /dev/null +++ b/lua/app/userdata/mail.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 77fd485b68c4c0145bf9606f309940aa +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/mastery.meta b/lua/app/userdata/mastery.meta new file mode 100644 index 00000000..f5491c33 --- /dev/null +++ b/lua/app/userdata/mastery.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: fabcab895a2f08c48af68a6957993b63 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/mining.meta b/lua/app/userdata/mining.meta new file mode 100644 index 00000000..522d9429 --- /dev/null +++ b/lua/app/userdata/mining.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 9e1a8ff2abac63843a2405984496a414 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/player.meta b/lua/app/userdata/player.meta new file mode 100644 index 00000000..c93014c3 --- /dev/null +++ b/lua/app/userdata/player.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: d2d347e64d5a16d48aca37c6cebd33e7 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/research.meta b/lua/app/userdata/research.meta new file mode 100644 index 00000000..e241fc35 --- /dev/null +++ b/lua/app/userdata/research.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 21095fdec40bec04cb69b344afb2f4dd +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/shop.meta b/lua/app/userdata/shop.meta new file mode 100644 index 00000000..537823ca --- /dev/null +++ b/lua/app/userdata/shop.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: a017bc36b2047e141b0bd5f0d5c103a0 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/summon.meta b/lua/app/userdata/summon.meta new file mode 100644 index 00000000..8be1252b --- /dev/null +++ b/lua/app/userdata/summon.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 15cc60187e39f3a4c87428f6688e5895 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/tutorial.meta b/lua/app/userdata/tutorial.meta new file mode 100644 index 00000000..aba8b9e4 --- /dev/null +++ b/lua/app/userdata/tutorial.meta @@ -0,0 +1,8 @@ +fileFormatVersion: 2 +guid: 88ef1ddd5686ae04d8ed154086977145 +folderAsset: yes +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/tutorial/tutorial_data.lua b/lua/app/userdata/tutorial/tutorial_data.lua new file mode 100644 index 00000000..d0292b58 --- /dev/null +++ b/lua/app/userdata/tutorial/tutorial_data.lua @@ -0,0 +1,308 @@ +local TutorialConst = require "app/module/tutorial/tutorial_const" + +local TUTORIAL_CFG = ConfigManager:getConfig("tutorial") +local TUTORIAL_STARTCFG = ConfigManager:getConfig("tutorial_start") + +local TutorialData = class("TutorialData", BaseData) + +function TutorialData:ctor() + self.inTutorial = false + self.data.tutorialId = 0 -- 强制引导步骤 + self.data.stopId = 0 -- 中断步骤 + self.isFuncTutorial = false +end + +function TutorialData:clear() + self.inTutorial = false + self.data.tutorialId = 0 + self.data.stopId = 0 + self.isFuncTutorial = false +end + +function TutorialData:init(data) + data = data or {} + self.inTutorial = false + -- 强制引导步骤 + self.data.tutorialId = data.id or 0 + if self.data.tutorialId > 0 then + self.tutorialInfo = TUTORIAL_CFG[self.data.tutorialId] + end + -- 功能开启引导列表 + self.funcTutorialMap = {} + if data.func then + for k,v in pairs(data.func) do + self.funcTutorialMap[k] = v + end + end +end + +function TutorialData:getIsHaveTutorial() + if self.data.tutorialId > 0 and self.tutorialInfo ~= nil then + self.isFuncTutorial = false + return true + end + return false +end + +function TutorialData:getIsFuncTutorial() + return self.isFuncTutorial +end + +-- 是不是引导的第一步 +function TutorialData:getIsInFirstStep() + return self.data.tutorialId == 10010 +end + +-- 是否有下一步,中断步骤是否改变 +function TutorialData:nextTutorial() + local id = self.tutorialInfo.next_id + local tutorialInfo = TUTORIAL_CFG[id] + if tutorialInfo == nil then + return false, false + end + self.data.tutorialId = id + self.tutorialInfo = tutorialInfo + local stopId = self.tutorialInfo and self.tutorialInfo.stop_id or 0 + if stopId ~= self.data.stopId then -- 中断步骤发生了改变 + self.data.stopId = stopId + return true, true + end + return true, false +end + +function TutorialData:getStopId() + return self.data.stopId +end + +function TutorialData:stopTutorial() + self.inTutorial = false + self.data.tutorialId = 0 +end + +-- 当前是否处于引导中 +function TutorialData:getIsInTutorial() + return self.inTutorial +end + +-- 开启引导 +function TutorialData:setInTutorial(value) + self.inTutorial = value +end + +-- 获取当前引导的id +function TutorialData:getTutorialId() + return self.data.tutorialId +end + +-- 是否显示遮罩 +function TutorialData:getShowMask() + return self.tutorialInfo.show_mask +end + +-- 遮罩半径 +function TutorialData:getMaskRadius() + return self.tutorialInfo.circle_r +end + +-- 圆形遮罩偏移 +function TutorialData:getMaskCircleOffset() + return self.tutorialInfo.circle_offset +end + +-- 遮罩半径尺寸 +function TutorialData:getMaskSquareSize() + return self.tutorialInfo.square_size +end + +-- 遮罩坐标偏移 +function TutorialData:getMaskSquareOffset() + return self.tutorialInfo.square_offset +end + +-- 获取延迟开始的时间 +function TutorialData:getDelayStartTime() + return self.tutorialInfo.delay or 0 +end + +-- 是否需要屏蔽点击 +function TutorialData:getTouchEnabled() + return true +end + +function TutorialData:getTutorialType() + return self.tutorialInfo.type +end + +function TutorialData:getTutorialStopFight() + return self.tutorialInfo.stop_fight ~= nil +end + +function TutorialData:getTutorialTypeById(id) + local tutorialInfo = TUTORIAL_CFG[id] + if tutorialInfo == nil then + return nil + end + return tutorialInfo.type +end + +-- 完成条件 +function TutorialData:getFinishType() + return self.tutorialInfo.finish +end + +function TutorialData:getFinishTypeById(id) + local tutorialInfo = TUTORIAL_CFG[id] + if tutorialInfo == nil then + return nil + end + return tutorialInfo.finish +end + +-- 完成条件的参数 +function TutorialData:getFinishTypeParams() + return self.tutorialInfo.finish_parameter +end + +-- 引导参数 +function TutorialData:getTypeParameter() + return self.tutorialInfo.type_parameter +end + +function TutorialData:getIsHaveTutorialText() + if self.tutorialInfo.txt and self.tutorialInfo.txt ~= "" then + return true + end + return false +end + +function TutorialData:getTutorialText() + local tutorialInfoTx = I18N:getConfig("tutorial")[self.tutorialInfo.txt] + if tutorialInfoTx == nil then + return GConst.EMPTY_STRING + end + return tutorialInfoTx.value +end + +function TutorialData:getTutorialDirLeft() + return self.tutorialInfo.txt_direction == 1 +end + +function TutorialData:getTutorialOffset() + return self.tutorialInfo.txt_offset +end + +function TutorialData:getFingerDir() + return self.tutorialInfo.arrow_direction or 2 +end + +function TutorialData:getFingerOffset() + return self.tutorialInfo.arrow_offset +end + +function TutorialData:getTargetName() + return self.tutorialInfo.target_name +end + +function TutorialData:getTutorialTalkRoleId() + return self.tutorialInfo.head +end + +function TutorialData:getIsHaveFuncTutorial(tutorialId, tutorialInfo) + -- 说明已经完成了 + if self.funcTutorialMap[tutorialId] then + return false + end + + self.tutorialInfo = tutorialInfo + self.data.tutorialId = tutorialId + self.data.stopId = 0 + self.isFuncTutorial = true + return true +end + +function TutorialData:markFuncTutorialFinish(id) + self.funcTutorialMap[id] = true +end + +function TutorialData:getIsFuncTutorialFinished(id) + return self.funcTutorialMap[id] == true +end + +function TutorialData:getTutorialIdList() + if not self.tutorialIdlist then + self.tutorialIdlist = {} + self.tutorialIdMap = {} + self.funcTutorialUImap = {} + self.tutorialId2UIPath = {} + for id, info in ipairs(TUTORIAL_STARTCFG) do + table.insert(self.tutorialIdlist, id) + self.tutorialIdMap[id] = true + if info.uires_path then + if not self.funcTutorialUImap[info.uires_path] then + self.funcTutorialUImap[info.uires_path] = {} + end + table.insert(self.funcTutorialUImap[info.uires_path], id) + end + if info.start_id and info.uires_path then + self.tutorialId2UIPath[info.start_id] = info.uires_path + end + end + end + return self.tutorialIdlist +end + +function TutorialData:getTutorialIdMap(id) + self:getTutorialIdList() + return self.tutorialIdMap[id] +end + +function TutorialData:getTutorialId2UIPath(id) + self:getTutorialIdList() + return self.tutorialId2UIPath[id] +end + +function TutorialData:getFuncTutorialId(uiPath) + self:getTutorialIdList() + local list = self.funcTutorialUImap[uiPath] + if list then + for _, id in ipairs(list) do + local info = TUTORIAL_STARTCFG[id] + local tId = info.start_id + if tId then + if not self:getIsFuncTutorialFinished(tId) then + return id + end + end + end + end +end + +function TutorialData:getTaskOpenTutorial(taskId) + if not self.taskOpenTutorialMap then + self.taskOpenTutorialMap = {} + local cfg = ConfigManager:getConfig("func_open") + for id, info in pairs(cfg) do + if info.task and info.tutorial_id then + self.taskOpenTutorialMap[info.task] = info.tutorial_id + end + end + end + + return self.taskOpenTutorialMap[taskId] +end + +function TutorialData:getStageOpenTutorial(stageId) + if not self.stageOpenTutorialMap then + self.stageOpenTutorialMap = {} + local cfg = ConfigManager:getConfig("func_open") + for id, info in pairs(cfg) do + if info.stage and info.tutorial_id then + self.stageOpenTutorialMap[info.stage] = info.tutorial_id + end + end + end + + return self.stageOpenTutorialMap[stageId] +end + +return TutorialData \ No newline at end of file diff --git a/lua/app/userdata/tutorial/tutorial_data.lua.meta b/lua/app/userdata/tutorial/tutorial_data.lua.meta new file mode 100644 index 00000000..5a31ab2d --- /dev/null +++ b/lua/app/userdata/tutorial/tutorial_data.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 595e40022b4f13045a01e19cc0d2c90b +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: diff --git a/lua/app/userdata/tutorial/tutorial_task_data.lua b/lua/app/userdata/tutorial/tutorial_task_data.lua new file mode 100644 index 00000000..b70dbf22 --- /dev/null +++ b/lua/app/userdata/tutorial/tutorial_task_data.lua @@ -0,0 +1,280 @@ +local TutorialTaskData = class("TutorialTaskData", BaseData) + +local TUTORIAL_TASK_CFG = ConfigManager:getConfig("tutorialtask") + +function TutorialTaskData:ctor() + self:clear() +end + +function TutorialTaskData:clear() + self.data.isDirty = false + self.finished = false + self.progress = 0 + self.curTaskId = 1 + + ModuleManager.TaskManager:unRegisterAllModuleTask("TutorialTaskData") +end + +function TutorialTaskData:init(data, isInit) + data = data or {} + self.finished = data.finished or false + self.progress = data.progress or 0 + self.curTaskId = data.id or 1 + + if isInit then + self:initTaskListener() + end + self:setDirty() +end + +function TutorialTaskData:setDirty() + self.data.isDirty = not self.data.isDirty +end + +function TutorialTaskData:getCurTutorialId() + return self.curTaskId +end + +function TutorialTaskData:getTaskCollect(id) + if id then + return id < self.curTaskId + end + return self.finished +end + +function TutorialTaskData:getTaskDesc(taskId, noProgress) + taskId = taskId or self.curTaskId + if TUTORIAL_TASK_CFG[taskId] then + local progress = self:getTaskCount(taskId) + if noProgress then + progress = nil + end + return ModuleManager.TaskManager:getTaskTutorialDesc(TUTORIAL_TASK_CFG[taskId].type, progress, self:getTaskTotalCount(taskId)) + end + return GConst.EMPTY_STRING +end + +function TutorialTaskData:getTaskCount() + return self.progress +end + +function TutorialTaskData:getTaskTotalCount(taskId) + taskId = taskId or self.curTaskId + if TUTORIAL_TASK_CFG[taskId] then + return TUTORIAL_TASK_CFG[taskId].parameter + end + return 1 +end + +function TutorialTaskData:getTaskReward(taskId) + taskId = taskId or self.curTaskId + if TUTORIAL_TASK_CFG[taskId] then + return TUTORIAL_TASK_CFG[taskId].reward + end + return +end + +function TutorialTaskData:getTaskTutorialId(taskId) + taskId = taskId or self.curTaskId + if TUTORIAL_TASK_CFG[taskId] then + return TUTORIAL_TASK_CFG[taskId].tutorial_id + end + return +end + +function TutorialTaskData:getTaskType(taskId) + taskId = taskId or self.curTaskId + if TUTORIAL_TASK_CFG[taskId] then + return TUTORIAL_TASK_CFG[taskId].type + end + return 1 +end + +function TutorialTaskData:getTaskNext(taskId) + taskId = taskId or self.curTaskId + if TUTORIAL_TASK_CFG[taskId] then + return TUTORIAL_TASK_CFG[taskId].next + end + return +end + +function TutorialTaskData:canClaimTask() + if not TUTORIAL_TASK_CFG[self.curTaskId] or self:getTaskCollect() then + return false + end + return self:getTaskCount() >= self:getTaskTotalCount() +end + +function TutorialTaskData:getMaxShowFingerTask() + if not self.maxShowFingerTaskId then + self.maxShowFingerTaskId = GFunc.getConstIntValue("tutorialtask_tutorialmax") + end + return self.maxShowFingerTaskId +end + +---- 如果需要显示指引,则返回类型,nil为不指引 +function TutorialTaskData:showFinger(taskId) + if DataManager.TutorialData:getIsInTutorial() then -- 强引导 + return false + end + + taskId = taskId or self.curTaskId + if taskId > self:getMaxShowFingerTask() then + return false + end + if not TUTORIAL_TASK_CFG[taskId] then + return + end + if self:canClaimTask() then + return false + end + local taskType = TUTORIAL_TASK_CFG[taskId].type + if taskType == GConst.TaskConst.TASK_TYPE.X_TRAIN_ATK or + taskType == GConst.TaskConst.TASK_TYPE.X_TRAIN_HP then + return taskType + end + return +end + +function TutorialTaskData:showMaskFinger(taskId) + if DataManager.TutorialData:getIsInTutorial() then -- 强引导 + return false + end + + taskId = taskId or self.curTaskId + if not TUTORIAL_TASK_CFG[taskId] or not TUTORIAL_TASK_CFG[taskId].must_tutorial then + return false + end + + return self:canClaimTask() +end + +function TutorialTaskData:getIsThisTypeTask(taskType) + local cfg = TUTORIAL_TASK_CFG[self.curTaskId] + if cfg and cfg.type == taskType then + return true + end +end + +function TutorialTaskData:addTaskProgress(count) + if not count then + return + end + self.progress = self.progress + count + self:setDirty() + + if self:showMaskFinger() and not DataManager.TutorialData:getIsInTutorial() then + EventManager:dispatchEvent(EventManager.CUSTOM_EVENT.CHANGE_MAIN_CITY_PAGE, {page = 0}) + end +end + +function TutorialTaskData:setTaskProgress(count) + if not count then + return + end + if self.progress > count then + return + end + self.progress = count + self:setDirty() +end + +function TutorialTaskData:initTaskListener() + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_KILL_MONSTER, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_KILL_MONSTER) then + self:addTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.PASS_CHAPTER, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.PASS_CHAPTER) then + self:setTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_WEAPON_SUMMON, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_WEAPON_SUMMON) then + self:addTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_PROTECTIVE_SUMMON, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_PROTECTIVE_SUMMON) then + self:addTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_LEGACY_SUMMON, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_LEGACY_SUMMON) then + self:addTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.COMPLETED_JEWELRY_BATTLE, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.COMPLETED_JEWELRY_BATTLE) then + self:setTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.COMPLETED_GOLD_BATTLE, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.COMPLETED_GOLD_BATTLE) then + self:setTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.COMPLETED_MITHRIL_BATTLE, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.COMPLETED_MITHRIL_BATTLE) then + self:setTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.ARENA_TIER_ON, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.ARENA_TIER_ON) then + self:addTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_MINE_DISTANCE, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_MINE_DISTANCE) then + self:setTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_TRAIN_ATK, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_TRAIN_ATK) then + self:setTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_TRAIN_HP, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_TRAIN_HP) then + self:setTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_WATCH_AD, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_WATCH_AD) then + self:addTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_HOE_USE, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_HOE_USE) then + self:addTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_RESEARCH_USE, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_RESEARCH_USE) then + self:addTaskProgress(count) + end + end) + + ModuleManager.TaskManager:registerTask("TutorialTaskData", GConst.TaskConst.TASK_TYPE.X_MINE_GRID, function(count) + if self:getIsThisTypeTask(GConst.TaskConst.TASK_TYPE.X_MINE_GRID) then + self:addTaskProgress(count) + end + end) +end + +return TutorialTaskData \ No newline at end of file diff --git a/lua/app/userdata/tutorial/tutorial_task_data.lua.meta b/lua/app/userdata/tutorial/tutorial_task_data.lua.meta new file mode 100644 index 00000000..e459731b --- /dev/null +++ b/lua/app/userdata/tutorial/tutorial_task_data.lua.meta @@ -0,0 +1,10 @@ +fileFormatVersion: 2 +guid: 0dd4f32fe399df647a2e9d5375711196 +ScriptedImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 2 + userData: + assetBundleName: + assetBundleVariant: + script: {fileID: 11500000, guid: 3b8b241bab4a4ac9a22fcce9c64f1242, type: 3} diff --git a/lua/main.lua b/lua/main.lua new file mode 100644 index 00000000..281a7753 --- /dev/null +++ b/lua/main.lua @@ -0,0 +1,35 @@ +--[[ + _ooOoo_ + o8888888o + 88" . "88 + (| -_- |) + O\ = /O + ____/`---'\____ + .' \\| |// `. + / \\||| : |||// \ + / _||||| -:- |||||- \ + | | \\\ - /// | | + | \_| ''\---/'' | | + \ .-\__ `-` ___/-. / + ___`. .' /--.--\ `. . __ + ."" '< `.___\_<|>_/___.' >'"". + | | : `- \`.;`\ _ /`;.`/ - ` : | | + \ \ `-. \_ __\ /__ _/ .-` / / +======`-.____`-.___\_____/___.-`____.-'====== + `=---=' +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ + 佛祖保佑! 永无BUG! +]] + +local function main() + collectgarbage("setpause", 100) + collectgarbage("setstepmul", 5000) + + math.randomseed(tonumber(tostring(os.time()):reverse():sub(1,6))) + + Game = require "app/game" + Game:initBase() + Game:start() +end + +main() \ No newline at end of file diff --git a/lua/main.lua.meta b/lua/main.lua.meta new file mode 100644 index 00000000..0689cfa6 --- /dev/null +++ b/lua/main.lua.meta @@ -0,0 +1,7 @@ +fileFormatVersion: 2 +guid: 71be7b3910bb0594bb232232110d7aa6 +DefaultImporter: + externalObjects: {} + userData: + assetBundleName: + assetBundleVariant: